commit 4240bb889aaf8cf4e44d57f2ee29f1a14a9f9211 Author: chenshijue <24121145@bjtu.edu.cn> Date: Fri Aug 28 11:37:47 2026 +0800 初始提交:关节模组仿真平台 - 三接口契约:自包含 MJCF / 配置 schema / 报告计算规范 - Python 流水线:urdf_to_mjcf → generate_schema → simulate_report(validate_module 一键编排) - 输入案例 urdf + 生成产物 output(自包含 MJCF/schema/报告/网格副本) - 详细架构说明 docs/architecture.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1a839da --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# Python +__pycache__/ +*.pyc + +# 编辑器 +.vscode/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..4228b3c --- /dev/null +++ b/README.md @@ -0,0 +1,93 @@ +# 关节模组仿真平台 —— 快速上手 + +把「关节模组」(行星轮系)在本地用 MuJoCo 跑通,并留好三个接口给网页团队,最终让 +「平台内置的关节模组」和「用户上传的关节模组」都能在浏览器里跑仿真、出报告。 + +> 团队三模块分工:关节模组(本仓库)/ 机械臂 / 四足机器狗。网页用 MuJoCo WASM +> (`@mujoco/mujoco`)展示,引擎与本地 Python 是同一个 C++ 核心,**MJCF(.xml)是统一模型格式**。 + +**只花 30 秒,先看「目录地图」和「一条命令跑起来」两节就够。** + +--- + +## 1. 目录地图(先读哪个) + +``` +planetary_joint_split_motor_demo_urdf/ +├── README.md ★ 你正在看的这份:一页看懂 +├── docs/ ── 给「网页团队」的接口契约 + 详细架构说明 +│ ├── schema.md 接口② 配置 schema(观测接口:输入/输出/减速比/限位) +│ ├── report_spec.md 接口③ 报告计算规范(指标 → 公式) +│ └── architecture.md 详细版:脚本语义 / 网页接入 / 用户上传流程 / 占位参数 +├── scripts/ ── 给「后端」的 Python 流水线 +│ ├── validate_module.py 一键入口(编排下面三步) +│ ├── urdf_to_mjcf.py ① URDF → MJCF +│ ├── generate_schema.py ② URDF → schema +│ └── simulate_report.py ③ schema → 仿真报告 +├── urdf/ ── 输入案例(原始 URDF + 原始网格,不动) +│ └── planetary_joint_split_motor_demo.urdf +└── output/ ── 生成产物(每次重跑覆盖) + ├── planetary_joint_split_motor_demo.xml MJCF 模型 + ├── planetary_joint_split_motor_demo.json schema + ├── report.txt / timeseries.csv / report_curves.png + └── meshes/ 自包含网格副本 +``` + +| 你是谁 | 先读什么 | +|---|---| +| 刚接手、想整体了解 | 本 README 全文(一页) | +| 网页团队(对接三接口) | [docs/schema.md](docs/schema.md) → [docs/report_spec.md](docs/report_spec.md) | +| 后端 / 本地方(跑流水线、改脚本) | [docs/architecture.md](docs/architecture.md) + 各脚本头部注释 | +| 只想知道怎么跑 | 下一节「一条命令跑起来」 | + +--- + +## 2. 一条命令跑起来 + +```bash +cd scripts +python3 validate_module.py \ + --urdf ../urdf/planetary_joint_split_motor_demo.urdf \ + --input sun_input_joint --output carrier_output_joint \ + --work-dir ../output --plot +``` + +产出(都在 `../output/`):MJCF、schema、报告 `report.txt`、观测 `timeseries.csv`、曲线 `report_curves.png`。 + +依赖:`mujoco`、`numpy`(绘图另需 `matplotlib`,转换另需 `trimesh`)。 + +> 常用可调参数:`--load-torque`(输出端负载,默认 -3 N·m)、`--damping`(关节阻尼,默认 0.01)、 +> `--mode`(`normal` / `overload`)、`--torque-limit`(输入力矩限位,默认 ±10 N·m)。 + +--- + +## 3. 三接口契约(给网页团队) + +| 接口 | 文件 | 是什么 | +|---|---|---| +| ① 自包含 MJCF | `output/*.xml` + `output/meshes/` | 浏览器加载的模型,含网格/质量/惯量/齿轮约束/电机 | +| ② 配置 schema | [docs/schema.md](docs/schema.md) | 输入/输出关节名、减速比、限位、仿真参数 | +| ③ 报告规范 | [docs/report_spec.md](docs/report_spec.md) | 报告要测哪些值、怎么算 | + +一句话:**MJCF 管「怎么动」,schema 管「观测什么」,报告规范管「算出什么」。** + +--- + +## 4. 我要改 X,去哪找 + +| 想改什么 | 去这里 | +|---|---| +| 材料密度 / 力矩限位 / 阻尼等常数 | `scripts/urdf_to_mjcf.py` 顶部(`DENSITIES`、`TORQUE_LIMIT`、`JOINT_DAMPING`) | +| 减速比来源 / 仿真默认参数 | `scripts/generate_schema.py` 顶部 `DEFAULTS` | +| 报告指标怎么算 | `docs/report_spec.md`(规范)+ `scripts/simulate_report.py`(参考实现) | +| 流水线怎么编排 | `scripts/validate_module.py` | + +--- + +## 5. 待填的占位参数 + +1. **力矩限位**(默认 ±10 N·m,对应 URDF `effort="1"` 占位):填真实电机额定值。 +2. **关节阻尼**(`JOINT_DAMPING = 0.01`):报告里 ~98% 的「效率损失」来自这个阻尼,真实摩擦/效率需用实际参数建模。 +3. **材料密度**(`urdf_to_mjcf.py` 顶部):目前无真值。 + +详见 [docs/architecture.md](docs/architecture.md) 第 8 节。 diff --git a/docs/architecture.md b/docs/architecture.md new file mode 100644 index 0000000..64808af --- /dev/null +++ b/docs/architecture.md @@ -0,0 +1,201 @@ +# 关节模组仿真平台 —— 架构与开发说明(详细版) + +> 想快速上手,先看根目录 [README.md](../README.md)(一页看懂);本文件是**详细版**,讲脚本语义、网页接入、用户上传流程与占位参数。 + +本项目是「浏览器在线 MuJoCo 仿真平台」的**关节模组**部分:把关节模组(行星轮系)在本地用 +MuJoCo 跑通,并留好三个接口给网页团队,最终让「平台内置的关节模组」和「用户上传的关节模组」 +都能在浏览器里跑仿真、出报告。 + +> 团队三模块分工:关节模组(本目录)/ 机械臂 / 四足机器狗。团队用 MuJoCo WASM +> (`@mujoco/mujoco`)做网页展示,引擎与本地 Python 是同一个 C++ 核心,**MJCF(.xml)是统一模型格式**。 + +--- + +## 1. 文件清单(哪个文件是什么) + +| 文件 | 是什么 | 给谁用 | +|---|---|---| +| `../urdf/planetary_joint_split_motor_demo.urdf` | **原始 URDF**(本案例的输入,只有运动学+视觉,缺质量/惯量/电机) | 转换工具输入 | +| `../urdf/meshes/*.stl` | 原始网格(STL,单位 mm) | 转换工具读体积分 | +| `../output/planetary_joint_split_motor_demo.xml` | **MJCF 模型**(`urdf_to_mjcf.py` 生成,自包含,可直接仿真) | 网页端加载 / 仿真 | +| `../output/meshes/*.stl` | 自包含网格副本(MJCF 的 `meshdir` 指向这里) | 随 MJCF 一起交付 | +| `../output/*.json / report.txt / timeseries.csv / report_curves.png` | 生成的 schema / 报告 / 观测 / 曲线 | 交付与对照 | +| `../scripts/urdf_to_mjcf.py` | **URDF→MJCF 转换工具**(关节模组专用) | 后端转换 | +| `../scripts/generate_schema.py` | **URDF→schema 生成器**(读输入/输出关节、减速比、限位) | 后端生成 | +| `../scripts/simulate_report.py` | **通用仿真 + 报告脚本**(读 schema 跑仿真、采数据、出报告) | 本地验证 / 报告参考实现 | +| `../scripts/validate_module.py` | **一键验证入口**(编排上面三步:URDF→MJCF→schema→报告) | 本地验证 / 后端流水线 | +| `schema.md` | **接口 2:配置 schema**(观测接口:输入/输出/减速比/限位) | 网页团队 | +| `report_spec.md` | **接口 3:报告计算规范**(指标→公式) | 网页团队 | + +**一句话速记:** URDF 是「输入」,MJCF 是「引擎吃的模型」,schema/report_spec 是「网页团队要看的接口文档」。 +流水线是 `urdf_to_mjcf.py → generate_schema.py → simulate_report.py` 三步,`validate_module.py` 把三步打包成一条命令。 + +--- + +## 2. 三个接口(给网页团队) + +| 接口 | 文件 | 是什么 | 谁负责产出 | +|---|---|---|---| +| ① 自包含 MJCF | `*.xml` + `meshes/` | 浏览器加载的模型,含网格/质量/惯量/齿轮约束/电机 | 转换工具 | +| ② 配置 schema | [schema.md](schema.md) | 输入/输出关节名、减速比、限位、仿真参数 | 后端从 URDF 生成 | +| ③ 报告规范 | [report_spec.md](report_spec.md) | 报告要测哪些值、怎么算 | 固定逻辑,前端照实现 | + +关系:**MJCF 管「怎么动」,schema 管「观测什么」,报告规范管「算出什么」。** +schema 不描述内部构型(几级、几个行星轮都在 MJCF 里),只统一观测接口。 + +--- + +## 3. 本案例怎么跑起来 + +**一条命令跑完整条流水线(推荐):** + +```bash +cd scripts +python3 validate_module.py \ + --urdf ../urdf/planetary_joint_split_motor_demo.urdf \ + --input sun_input_joint --output carrier_output_joint \ + --work-dir ../output --plot +``` + +产出(都在 `../output/`):`planetary_joint_split_motor_demo.xml`(MJCF)+ `planetary_joint_split_motor_demo.json` +(schema)+ `timeseries.csv`(逐时间步)+ `report_curves.png`(曲线)。 + +**只想跑最后一步仿真/报告(已有 MJCF + schema 时):** + +```bash +cd scripts +python3 simulate_report.py --schema ../output/planetary_joint_split_motor_demo.json --plot # 读 schema 跑 +python3 simulate_report.py --schema ../output/planetary_joint_split_motor_demo.json --headless # 无显示器,只计算 +``` + +依赖:`mujoco`、`numpy`(绘图需 `matplotlib`;转换需 `trimesh`)。 + +--- + +## 4. 三个脚本各自怎么用(分步跑) + +流水线三步各自都能单独跑,`validate_module.py` 只是把它们按顺序调用。三步都**显式指定 +输入/输出关节**(`--input` / `--output`),因为自动识别在真实 URDF 上不可靠(多级级联有 +多个正 multiplier 的 mimic、fixed 关节也没有 mimic,程序分不清哪级是末端输出)。 + +```bash +cd scripts + +# ① URDF → MJCF(自包含: + 拷贝网格) +python3 urdf_to_mjcf.py \ + --urdf ../urdf/planetary_joint_split_motor_demo.urdf \ + --input sun_input_joint --output carrier_output_joint \ + --out ../output/planetary_joint_split_motor_demo.xml --meshdir ../output/meshes + +# ② URDF → schema(读输入/输出、减速比、限位、默认仿真参数) +python3 generate_schema.py \ + --urdf ../urdf/planetary_joint_split_motor_demo.urdf \ + --input sun_input_joint --output carrier_output_joint \ + --model planetary_joint_split_motor_demo.xml \ + --out ../output/planetary_joint_split_motor_demo.json + +# ③ schema → 仿真 + 报告 +python3 simulate_report.py --schema ../output/planetary_joint_split_motor_demo.json --plot +``` + +依赖:`numpy`、`trimesh`(`pip install trimesh`,仅转换步骤需要)。 + +工具做的事(详见脚本头注释): + +1. **照搬不改**:关节层级、``→子 ``、``→``、 + ``→``、``→`` polycoef、``→``。 +2. **补质量/惯量**:从每个 link 的 STL 做体积分,按脚本顶部的**密度常数**算出质量/重心/惯性张量, + 多网格用平行轴定理合成。 +3. **补作动器**:`input_motor`(输入端)+ `load_motor`(输出端负载)。 +4. **渲染网格覆盖**:个别 STL 面数超 MuJoCo 上限,渲染换降采样版(质量仍按原始网格算)。 + +**要改的常数都在脚本顶部**: + +| 常数 | 位置 | 说明 | +|---|---|---| +| 材料密度 `DENSITIES` / `DEFAULT_DENSITY` | 顶部 | kg/m³,换材料时改这里 | +| `TORQUE_LIMIT` | 顶部 | 力矩限位(占位,应填真实电机额定值) | +| `JOINT_DAMPING` / `JOINT_ARMATURE` | 顶部 | 数值稳定参数 | + +> ⚠️ **本工具是关节模组专用**。它假设「一个电机输入 + 一个模组输出 + 减速比关系」, +> 用「无 `` 的关节 = 输入、正 multiplier 跟随者 = 输出」自动识别。**所有类别 URDF 的 +> 通用转换器由团队后续开发**,本工具只覆盖关节模组。 + +--- + +## 5. 把「本案例」接入网页需要什么 + +1. **模型文件**:`planetary_joint_split_motor_demo.xml` + `meshes/`(自包含,一起上传)。 +2. **配置**:按 [schema.md](schema.md) 第 4 节填好这份 JSON,随模型一起给前端。 +3. **报告逻辑**:前端按 [report_spec.md](report_spec.md) 实现(或后端把本案例的 + `simulate_report.py` 逻辑翻译到 JS)。 + +前端只需:加载 MJCF → 读 schema 拿 `input_joint`/`output_joint`/`gear_ratio`/`limits` → +跑仿真 → 按报告规范输出。**不需要**理解行星轮系的内部构型。 + +--- + +## 6. 把「用户上传 URDF」接入网页需要什么 + +用户上传的是 **zip 包(URDF + mesh 文件)**,不是单个 .urdf(只有 urdf 没有 STL 加载不出模型)。 + +后端流水线(就是 `validate_module.py` 干的同一件事): + +1. **接收 + 校验**:解压 zip,检查 URDF 可解析、mesh 引用齐全、路径无穿越(`../` 之类)。 +2. **转换**:跑 `urdf_to_mjcf.py` → 产出自包含 MJCF + 网格。 +3. **生成 schema**:跑 `generate_schema.py`(输入/输出关节**显式指定**,减速比从 `` 取或手动给)→ 产出 schema JSON。 +4. **返回给前端**:`{ mjcf + meshes, schema }`。 + +前端拿到这两样后,与「本案例」走同一条路(见第 5 节)。**用户始终只传 URDF+mesh, +不传 schema**——schema 是后端算出来的。 + +### 6.1 内置模组 vs 用户上传,靠谁区分? + +**是的,全看前端在哪一步分叉。** 分叉点只有一个:**模型从哪来**。分叉之后,两条路立刻并回 +同一条流水线(跑仿真 → 出报告 → 出曲线),后面不再有任何区别: + +```text + ┌─ 内置模组:直接用预生成的 MJCF + schema(跳过①②) + 前端选择 ────────┤ + └─ 用户上传:上传 URDF+mesh → 后端 ①转MJCF ②生成schema + (此分支需要额外给「输入/输出关节」) + ↓ + 两条路都拿到 { MJCF + schema } + ↓ + ③ 跑仿真 → 出报告 → 出曲线(完全相同) +``` + +所以前端要做的「分割」只有两件事: + +1. **选哪个入口**:内置(有现成的 MJCF+schema)还是上传(现转)。 +2. **给输入/输出关节**:内置模组的输入/输出已经写死在它自带的 schema 里;上传模组则要 + 前端在用户上传时让用户选一下(或后端自动识别 + 用户确认),因为只有用户/构型才知道 + 哪两个关节是输入输出端——这一步程序猜不靠谱(见第 4 节)。 + +除这两点外,报告计算、曲线绘制、安全余量判定**零差别**,前端不需要写两套报告逻辑。 + +--- + +## 7. 各角色去哪个文件看什么 + +| 你想知道… | 去看… | +|---|---| +| 哪个是 URDF / MJCF / 仿真脚本 | 本文件第 1 节 | +| 转换工具怎么跑、改什么常数 | `../scripts/urdf_to_mjcf.py` 头部注释 + 本文件第 4 节 | +| schema 怎么从 URDF 生成 | [../scripts/generate_schema.py](../scripts/generate_schema.py) 头部注释 | +| 一键验证 / 用户上传流水线怎么编排 | [../scripts/validate_module.py](../scripts/validate_module.py) 头部注释 | +| schema 的字段和示例 | [schema.md](schema.md) | +| 报告测什么、怎么算 | [report_spec.md](report_spec.md) | +| URDF→MJCF 的关键语义(易错点) | `../scripts/urdf_to_mjcf.py` 头部注释(``→`` 等) | +| 通用仿真/报告参考实现 | [../scripts/simulate_report.py](../scripts/simulate_report.py) | + +--- + +## 8. 仍需填的占位参数 + +1. **力矩限位**(默认 ±10 N·m,对应 URDF `effort="1"` 占位):填真实电机额定值。有两处: + - MJCF 作动器 `ctrlrange`:`../scripts/urdf_to_mjcf.py` 顶部的 `TORQUE_LIMIT`; + - 报告安全余量用的限位:`../scripts/generate_schema.py` 的 `--torque-limit`(写进 schema.limits.torque)。 +2. **关节阻尼**(`JOINT_DAMPING = 0.01`):报告中 ~98% 的「效率损失」来自这个阻尼; + 真实摩擦/效率需用实际参数建模。 +3. **材料密度**(`../scripts/urdf_to_mjcf.py` 顶部 `DENSITIES` / `DEFAULT_DENSITY`):目前无真值,先不改。 diff --git a/docs/report_spec.md b/docs/report_spec.md new file mode 100644 index 0000000..eea1304 --- /dev/null +++ b/docs/report_spec.md @@ -0,0 +1,161 @@ +# 接口 3 —— 报告计算规范(指标接口) + +> 用途:定义「关节模组仿真报告」里**固定要测、要输出的值**,以及每个值**怎么从 MuJoCo 数据算出来**。 +> 前端(WASM)照着这份规范实现报告模块即可,**不需要后端再给脚本**。 + +**为什么报告逻辑是固定的?** 运动关系随上传的构型不同而不同(几级、几个行星轮都不一样),但 +「要测什么」是确定的:输入/输出的位置、速度、加速度、力矩,以及由它们导出的功率、效率、减速比、 +安全余量。唯一随构型变的是**哪个关节是输入、哪个是输出**——这由 [schema.md](schema.md) 提供。 + +--- + +## 1. 输入 + +报告模块需要的输入分三类: + +| 输入 | 来源 | 说明 | +|---|---|---| +| 模型 | MJCF(`schema.model`) | 含网格、质量/惯量、齿轮约束、作动器 | +| 观测配置 | schema | `input_joint` / `output_joint` / `gear_ratio` / `limits` | +| 场景参数 | schema 的 `simulation` | 步长、时长、PD 增益、参考轨迹、负载 | + +约定记号(下文统一用): + +| 记号 | 含义 | +|---|---| +| `q_in`, `qd_in`, `qacc_in` | 输入关节位置 / 速度 / 加速度 | +| `q_out`, `qd_out`, `qacc_out` | 输出关节位置 / 速度 / 加速度 | +| `τ_in`, `τ_out` | 输入力矩 / 输出力矩 | +| `N` | 减速比(`schema.gear_ratio`) | + +--- + +## 2. 仿真流程(固定) + +``` +加载 MJCF → mj_resetData +for k in 0..(duration/timestep)-1: + t = k · timestep + q_ref = amplitude · sin(2π · frequency · t) + qd_ref = amplitude · 2π·frequency · cos(2π · frequency · t) + + τ_in = kp·(q_ref − q_in) + kd·(qd_ref − qd_in) # PD 位置控制 + ctrl[input_motor] = τ_in # 输入电机力矩 + ctrl[load_motor] = load_torque # 输出端恒值负载 + mj_step() # 齿轮约束在步内解算 + 记录本步数据 +``` + +> 齿轮耦合是**软约束**(`` + `solref`),`mj_step` 内自动解算;输出力矩 +> `τ_out` 从约束反力读出(见下)。 + +--- + +## 3. 指标 → 数据源 → 公式(核心表) + +MuJoCo 数据源以 `d.*` 表示 `MjData` 的字段;`input_dof` / `output_dof` 是输入/输出关节 +的自由度下标(`m.jnt_dofadr[...]`)。 + +### 3.1 运动学(跟踪精度) + +| 指标 | 符号 | 数据源(逐时间步) | 单位 | +|---|---|---|---| +| 输入位置 | `q_in` | `d.qpos[input_dof]` | rad | +| 输入速度 | `qd_in` | `d.qvel[input_dof]` | rad/s | +| 输入加速度 | `qacc_in` | `d.qacc[input_dof]` | rad/s² | +| 输出位置 | `q_out` | `d.qpos[output_dof]` | rad | +| 输出速度 | `qd_out` | `d.qvel[output_dof]` | rad/s | +| 输出加速度 | `qacc_out` | `d.qacc[output_dof]` | rad/s² | + +**汇总(对整段轨迹统计):** + +| 指标 | 公式 | 说明 | +|---|---|---| +| 输入位置峰值 | `max |q_in|` | 参考幅值 `amplitude` | +| 位置跟踪误差 RMS | `√ mean((q_in − q_ref)²)` | 越小越准 | +| 速度跟踪误差 RMS | `√ mean((qd_in − qd_ref)²)` | 越小越准 | +| 输出位置峰值 | `max |q_out|` | 期望 ≈ `amplitude / N` | +| **传动比实测** | 带截距最小二乘斜率(`q_out` 对 `q_in` 拟合,取稳态后半段) | 期望 ≈ `1/N` | + +> 不要用逐点 `q_out/q_in` 再取均值:正弦参考下 `q_in` 每周期过零,软约束相位滞后会让 +> 过零处比值爆表甚至变号,把均值带偏(实测 0.112368 vs 真实 0.111111)。带截距的 +> 最小二乘斜率对相位滞后和负载静偏置(`q_out` 恒滞后一个常数角)都不敏感,能精确还原 `1/N`。 + +### 3.2 动力学(力矩 / 功率) + +| 指标 | 符号 | 数据源 / 公式 | 单位 | +|---|---|---|---| +| 输入力矩 | `τ_in` | `d.actuator_force[input_motor]` | N·m | +| 输出力矩 | `τ_out` | `d.qfrc_constraint[output_dof]` | N·m | +| 输出功率 | `P_out` | `τ_out · qd_out` | W | +| 理想输出力矩 | `τ_ideal` | `N · τ_in` | N·m | +| 力矩损失 | `Δτ` | `N·τ_in − τ_out` | N·m | +| **效率** | `η` | `τ_out / (N · τ_in) × 100%`(稳态均值) | % | + +> 稳态均值 = 取时间序列后半段(让瞬态衰减完)的 `mean(|·|)`。 + +### 3.3 安全性(安全余量) + +| 指标 | 公式 | 单位 | +|---|---|---| +| 位置余量 | `(‖limit_pos‖ − max|q_in|) / ‖limit_pos‖ × 100%` | % | +| 力矩余量 | `(‖limit_trq‖ − max|τ_in|) / ‖limit_trq‖ × 100%` | % | +| 过载判定 | 力矩余量 < 20% → 警告 | — | + +其中 `limit_pos = schema.limits.position[1]`,`limit_trq = schema.limits.torque[1]`。 + +### 3.4 可选:行星轮观测(仅行星构型) + +若模组有行星轮(本案例有 3 个),可额外记录某一行星轮的位置/速度 `q_p, qd_p`(`d.qpos[planet_dof]`)。 +这是**可选项**——报告必填的只有输入/输出端;行星轮数量/命名随构型变,不属于固定指标。 + +--- + +## 4. 输出格式 + +### 4.1 逐时间步数据(CSV) + +列名与关节名**解耦**(用固定的 `input_*` / `output_*`,不写死太阳轮/行星架), +前端按 `schema.input_joint` / `schema.output_joint` 填充即可: + +| 列 | 内容 | +|---|---| +| `time` | 时间 [s] | +| `input_q, input_qd, input_qacc` | 输入位置/速度/加速度(`schema.input_joint`) | +| `q_ref, qd_ref` | 参考轨迹位置/速度 | +| `output_q, output_qd, output_qacc` | 输出位置/速度/加速度(`schema.output_joint`) | +| `planet_q, planet_qd` | (可选)行星轮位置/速度,仅行星构型且有记录时才有 | +| `tau_in, tau_out, power_out` | 输入/输出力矩、输出功率 | + +> 本地 `simulate_report.py` 按固定顺序写出:`time, input_q, input_qd, input_qacc, q_ref, +> qd_ref, output_q, output_qd, output_qacc, [planet_q, planet_qd,] tau_in, tau_out, power_out`。 + +### 4.2 汇总报告(终端 / JSON) + +按第 3 节的三类汇总指标输出:运动学(峰值、跟踪误差、传动比实测)、动力学(力矩、 +功率、效率)、安全性(两类余量 + 过载判定)。 + +报告首行需注明**仿真模式**(`schema.simulation.mode`,`normal` / `overload`),并显示当前 +使用的负载力矩与阻尼。当 `mode = overload` 时,额外产出一份 **过载报告**(`overload_report.txt`): + +| 指标 | 公式 | 单位 | +|---|---|---| +| 额定力矩限位 | `limit_trq = schema.limits.torque[1]` | N·m | +| 施加负载力矩 | `schema.simulation.load_torque` | N·m | +| 输入力矩峰值 | `max |τ_in|` | N·m | +| 力矩余量 | `(limit_trq − max|τ_in|) / limit_trq × 100%` | % | +| 位置跟踪误差 | `√ mean((q_in − q_ref)²)` | rad | +| 过载判定 | 余量 ≤ 0 → 已过载;0 < 余量 < 20% → 接近过载;否则未过载 | — | + +--- + +## 5. 参考实现 + +本地参考实现见 [../scripts/simulate_report.py](../scripts/simulate_report.py),它就是这份规范的可执行版本。 +前端实现时应**以本规范为准**,脚本只作对照。 + +**两个易错点(实现时务必注意):** + +1. **输出力矩读约束反力,不读作动器力。** 齿轮耦合是 `` 约束,`τ_out` 取 + `d.qfrc_constraint[output_dof]`;若读 `load_motor` 的 `actuator_force` 只会得到常数负载。 +2. **稳态统计取后半段。** 参考轨迹从静止起跳会有初始瞬态尖峰,前半段不参与均值/效率计算。 diff --git a/docs/schema.md b/docs/schema.md new file mode 100644 index 0000000..3d3da95 --- /dev/null +++ b/docs/schema.md @@ -0,0 +1,159 @@ +# 接口 2 —— 关节模组配置 Schema + +> 用途:给「浏览器端 WASM 仿真」一个**统一观测接口**。无论用户上传的是什么构型的关节模组 +> (一级/多级、三个/四个行星轮、太阳轮+行星架、谐波、摆线…),后端把它归一化成这份 JSON, +> 前端只读这份 JSON 就能:找到输入端/输出端、知道减速比、拿到限位、按默认参数跑仿真。 + +--- + +## 1. Schema 是什么 / 不是什么 + +| | 说明 | +|---|---| +| ✅ 是什么 | 关节模组的**对外观测契约**:输入关节、输出关节、减速比、限位、默认仿真参数 | +| ❌ 不是什么 | **不描述内部构型**(几级传动、几个行星轮、齿数、几何)。这些全部已经编码在 MJCF 里,前端不需要知道 | +| ❌ 不是用户上传的 | 这份 JSON 是**后端从 URDF 生成**的,不是用户填写的。用户上传的始终是「URDF + mesh」的 zip | + +**为什么必须要有 schema?** +1. 报告里要测的输入/输出力矩,是「哪个关节」取决于构型。schema 告诉前端哪两个关节是输入/输出端。 +2. 减速比的标称值(`gear_ratio`)可能来自 URDF 的 ``,也可能是标定/手动填的,需要显式声明来源。 +3. 前端要做统一的限位检查、统一的安全余量,就需要统一格式的限位。 + +> 一句话:**MJCF 管「怎么动」,schema 管「观测什么」,报告规范管「算出什么」。** + +--- + +## 2. 字段定义(格式契约,定义一次) + +| 字段 | 类型 | 单位 | 必填 | 含义 | 取值来源 | +|---|---|---|---|---|---| +| `module_id` | string | — | ✅ | 模组唯一标识 | 后端生成(如模型名) | +| `name` | string | — | | 显示名 | 后端生成 | +| `model` | string | — | ✅ | 要加载的 MJCF 文件名(自包含,网格与它同目录) | 转换工具输出 | +| `input_joint` | string | — | ✅ | **输入关节名**(电机端) | URDF 里唯一没有 `` 的关节 | +| `output_joint` | string | — | ✅ | **输出关节名**(模组输出端) | URDF 里以正 multiplier 跟随输入的关节 | +| `gear_ratio` | number | — | ✅ | 标称减速比 = 输入 / 输出 = `1/multiplier` | 默认取 `` 倒数;可标定覆盖 | +| `gear_ratio_source` | enum | — | ✅ | `mimic` / `calibrated` / `manual` | 减速比来源 | +| `limits.position` | [number, number] | rad | ✅ | 输入关节位置限位 `[lower, upper]` | URDF `` | +| `limits.torque` | [number, number] | N·m | ✅ | 输入力矩限位 `[-T, +T]` | MJCF ``(占位,待填真实值) | +| `limits.velocity` | [number, number] | rad/s | | 速度限位 | URDF ``(若有) | +| `simulation.timestep` | number | s | ✅ | 仿真步长 | 默认 `0.001` | +| `simulation.duration` | number | s | ✅ | 仿真时长 | 默认 `4.0` | +| `simulation.kp` / `kd` | number | — | ✅ | 输入 PD 位置控制增益 | 默认 `20.0` / `0.3` | +| `simulation.amplitude` | number | rad | ✅ | 参考轨迹幅值 | 默认 `2π`(1 圈) | +| `simulation.frequency` | number | Hz | ✅ | 参考轨迹频率 | 默认 `0.25` | +| `simulation.load_torque` | number | N·m | ✅ | 输出端恒值负载(负 = 阻力) | 默认 `-3.0` | +| `simulation.damping` | number | N·m·s/rad | ✅ | 关节粘性阻尼 | 默认 `0.01` | +| `simulation.mode` | enum | — | ✅ | 仿真模式:`normal` / `overload` | 默认 `normal` | + +> 所有带默认值的字段,前端都可以覆盖(用户调参)。`input_joint` / `output_joint` / +> `limits` / `gear_ratio` 是后端算好的「事实」,前端只读。 + +--- + +## 3. 形式化 JSON Schema(供前端校验用,draft 2020-12) + +```json +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "joint-module.schema.json", + "title": "关节模组配置", + "type": "object", + "required": ["module_id", "model", "input_joint", "output_joint", + "gear_ratio", "gear_ratio_source", "limits", "simulation"], + "additionalProperties": false, + "properties": { + "module_id": { "type": "string" }, + "name": { "type": "string" }, + "model": { "type": "string" }, + "input_joint": { "type": "string" }, + "output_joint": { "type": "string" }, + "gear_ratio": { "type": "number", "exclusiveMinimum": 0 }, + "gear_ratio_source": { "type": "string", "enum": ["mimic", "calibrated", "manual"] }, + "limits": { + "type": "object", + "required": ["position", "torque"], + "properties": { + "position": { "type": "array", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 }, + "torque": { "type": "array", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 }, + "velocity": { "type": "array", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 } + } + }, + "simulation": { + "type": "object", + "properties": { + "timestep": { "type": "number", "default": 0.001 }, + "duration": { "type": "number", "default": 4.0 }, + "kp": { "type": "number", "default": 20.0 }, + "kd": { "type": "number", "default": 0.3 }, + "amplitude": { "type": "number", "default": 6.283185307179586 }, + "frequency": { "type": "number", "default": 0.25 }, + "load_torque": { "type": "number", "default": -3.0 }, + "damping": { "type": "number", "default": 0.01 }, + "mode": { "type": "string", "enum": ["normal", "overload"], "default": "normal" } + } + } + } +} +``` + +--- + +## 4. 本案例的实例 + +```json +{ + "module_id": "planetary_joint_split_motor_demo", + "name": "行星轮系分体电机关节模组", + "model": "planetary_joint_split_motor_demo.xml", + + "input_joint": "sun_input_joint", + "output_joint": "carrier_output_joint", + + "gear_ratio": 6.0, + "gear_ratio_source": "mimic", + + "limits": { + "position": [-37.6991118431, 37.6991118431], + "torque": [-10.0, 10.0], + "velocity": [-6.28318530718, 6.28318530718] + }, + + "simulation": { + "timestep": 0.001, + "duration": 4.0, + "kp": 20.0, + "kd": 0.3, + "amplitude": 6.283185307179586, + "frequency": 0.25, + "load_torque": -3.0, + "damping": 0.01, + "mode": "normal" + } +} +``` + +对照说明: + +| 实例值 | 怎么来的 | +|---|---| +| `input_joint = sun_input_joint` | URDF 里 5 个关节中,唯一没有 `` 的是 `sun_input_joint`(独立驱动源) | +| `output_joint = carrier_output_joint` | ``,正 multiplier → 减速输出端 | +| `gear_ratio = 6.0` | `1 / 0.166666666666667 = 6`(1 级行星轮系,齿圈固定,太阳轮:行星架 = 6:1) | +| `limits.position = ±37.6991` | URDF ``(±6 圈 = ±12π) | +| `limits.torque = ±10` | MJCF ``(**占位**,待填真实电机额定值) | +| `limits.velocity = ±6.2832` | URDF ``(1 圈/秒) | +| `simulation.*` | 报告规范的默认场景参数,见 [report_spec.md](report_spec.md) | + +--- + +## 5. 减速比来源的优先级(多来源怎么取) + +后端生成 schema 时,`gear_ratio` 按下面顺序确定,并在 `gear_ratio_source` 里记录用的是哪个: + +1. **`mimic`** —— URDF `` 的倒数(最优先,本案例)。 +2. **`calibrated`** —— 跑一次仿真,`mean(q_out / q_in)` 标定得到(无 `` 或传动力不可靠时)。 +3. **`manual`** —— 前端手动填(都没有时兜底)。 + +> 减速比只进 schema 与报告,**不进 MJCF**——MJCF 里的传动关系由 `` 精确表达, +> schema 里的 `gear_ratio` 只是「标称参考值」,用于报告的效率/理想力矩计算。 diff --git a/output/meshes/carrier_link.stl b/output/meshes/carrier_link.stl new file mode 100644 index 0000000..22d49f1 Binary files /dev/null and b/output/meshes/carrier_link.stl differ diff --git a/output/meshes/fixed_structure.stl b/output/meshes/fixed_structure.stl new file mode 100644 index 0000000..4562d64 Binary files /dev/null and b/output/meshes/fixed_structure.stl differ diff --git a/output/meshes/motor_rotor.stl b/output/meshes/motor_rotor.stl new file mode 100644 index 0000000..1d394e1 Binary files /dev/null and b/output/meshes/motor_rotor.stl differ diff --git a/output/meshes/motor_stator.stl b/output/meshes/motor_stator.stl new file mode 100644 index 0000000..550d795 Binary files /dev/null and b/output/meshes/motor_stator.stl differ diff --git a/output/meshes/motor_stator_decimated.stl b/output/meshes/motor_stator_decimated.stl new file mode 100644 index 0000000..4882f79 Binary files /dev/null and b/output/meshes/motor_stator_decimated.stl differ diff --git a/output/meshes/planet_0_link.stl b/output/meshes/planet_0_link.stl new file mode 100644 index 0000000..cd70a9f Binary files /dev/null and b/output/meshes/planet_0_link.stl differ diff --git a/output/meshes/planet_1_link.stl b/output/meshes/planet_1_link.stl new file mode 100644 index 0000000..54d8961 Binary files /dev/null and b/output/meshes/planet_1_link.stl differ diff --git a/output/meshes/planet_2_link.stl b/output/meshes/planet_2_link.stl new file mode 100644 index 0000000..e0852d6 Binary files /dev/null and b/output/meshes/planet_2_link.stl differ diff --git a/output/meshes/sun_drive.stl b/output/meshes/sun_drive.stl new file mode 100644 index 0000000..fbc085a Binary files /dev/null and b/output/meshes/sun_drive.stl differ diff --git a/output/planetary_joint_split_motor_demo.json b/output/planetary_joint_split_motor_demo.json new file mode 100644 index 0000000..ac0eba6 --- /dev/null +++ b/output/planetary_joint_split_motor_demo.json @@ -0,0 +1,34 @@ +{ + "module_id": "planetary_joint_split_motor_demo", + "name": "planetary_joint_split_motor_demo", + "model": "planetary_joint_split_motor_demo.xml", + "input_joint": "sun_input_joint", + "output_joint": "carrier_output_joint", + "gear_ratio": 5.9999999999999885, + "gear_ratio_source": "mimic", + "limits": { + "position": [ + -37.6991118431, + 37.6991118431 + ], + "torque": [ + -10.0, + 10.0 + ], + "velocity": [ + -6.28318530718, + 6.28318530718 + ] + }, + "simulation": { + "timestep": 0.001, + "duration": 4.0, + "kp": 20.0, + "kd": 0.3, + "amplitude": 6.283185307179586, + "frequency": 0.25, + "load_torque": -3.0, + "damping": 0.01, + "mode": "normal" + } +} diff --git a/output/planetary_joint_split_motor_demo.xml b/output/planetary_joint_split_motor_demo.xml new file mode 100644 index 0000000..7a0c336 --- /dev/null +++ b/output/planetary_joint_split_motor_demo.xml @@ -0,0 +1,68 @@ + + + + + diff --git a/output/report.txt b/output/report.txt new file mode 100644 index 0000000..b3bfaf5 --- /dev/null +++ b/output/report.txt @@ -0,0 +1,33 @@ +================================================================ +关节模组仿真报告 +================================================================ +模型 : planetary_joint_split_motor_demo.xml +输入端 : sun_input_joint 输出端: carrier_output_joint +标称减速比 1 : 6.0000(输出 = 输入/6.0000) +仿真模式 : normal +负载力矩 : -3.0000 N·m 阻尼: 0.01 + +[1] 运动学(跟踪精度) + 输入位置峰值 : 6.3087 rad (参考 6.2832) + 位置跟踪误差 (RMS) : 0.0251 rad + 速度跟踪误差 (RMS) : 0.0727 rad/s + 输出位置峰值 : 1.0532 rad (应为 1.0472) + 传动比实测 : 0.166667 (期望 0.166667) + +[2] 动力学(力矩与功率) + 输入力矩 (稳态均值) : 0.5102 N·m + 输出力矩 (稳态均值) : 3.0010 N·m + 理想输出 = 输入×6.0000 : 3.0611 N·m + 力矩损失 : 0.0601 N·m + 效率 η = 输出/(输入×6.0000) : 98.04 % + 输入力矩峰值 (瞬态) : 0.7543 N·m + 输出功率峰值 : 7.5876 W + +[3] 安全性(安全余量) + 位置余量 (限位 ±37.6991 rad) : 83.27 % + 力矩余量 (限位 ±10.0000 N·m) : 92.46 % + 过载判定 : ✓ 余量充足 + +================================================================ +已写出 /home/csj/planetary_joint_split_motor_demo_urdf/output/timeseries.csv +================================================================ diff --git a/output/report_curves.png b/output/report_curves.png new file mode 100644 index 0000000..14dec6e Binary files /dev/null and b/output/report_curves.png differ diff --git a/output/timeseries.csv b/output/timeseries.csv new file mode 100644 index 0000000..ba6e685 --- /dev/null +++ b/output/timeseries.csv @@ -0,0 +1,4001 @@ +time,input_q,input_qd,input_qacc,q_ref,qd_ref,output_q,output_qd,output_qacc,tau_in,tau_out,power_out +0.00000000,-0.00041257,-0.41257278,-417.95689520,0.00000000,0.00000000,-0.00085329,-0.85328735,-867.05545456,0.00000000,2.46235469,-2.10109610 +0.00100000,-0.00121275,-0.80018118,-392.66672071,0.00000010,0.00029223,-0.00125031,-0.39701985,463.57163240,0.13211291,3.28076289,-1.30252801 +0.00200000,-0.00221959,-1.00683377,-209.34942987,0.00000078,0.00116888,-0.00159449,-0.34418142,53.66368203,0.26467568,3.03017541,-1.04293007 +0.00300000,-0.00335602,-1.13643512,-131.29265964,0.00000263,0.00262990,-0.00191502,-0.32053609,24.01152714,0.34728345,3.01193531,-0.96543396 +0.00400000,-0.00456271,-1.20668700,-71.16866977,0.00000623,0.00467517,-0.00221471,-0.29968377,21.18044308,0.40957822,3.01019342,-0.90210611 +0.00500000,-0.00579517,-1.23246005,-26.10939367,0.00001218,0.00730456,-0.00249429,-0.27958585,20.41864240,0.45569516,3.00977792,-0.84149131 +0.00600000,-0.00702122,-1.22605462,6.48902173,0.00002104,0.01051785,-0.00275445,-0.26015503,19.74413683,0.48921752,3.00945349,-0.78292446 +0.00700000,-0.00821817,-1.19694304,29.49149002,0.00003341,0.01431481,-0.00299592,-0.24146943,18.98927096,0.51320342,3.00910408,-0.72660664 +0.00800000,-0.00937040,-1.15222749,45.29908691,0.00004986,0.01869516,-0.00321951,-0.22359485,18.16680949,0.53005204,3.00872850,-0.67273620 +0.00900000,-0.01046756,-1.09716859,55.77742795,0.00007099,0.02365858,-0.00342608,-0.20656760,17.30691749,0.54159352,3.00833882,-0.62142532 +0.01000000,-0.01150319,-1.03562966,62.34201978,0.00009737,0.02920471,-0.00361648,-0.19039842,16.43570228,0.54921072,3.00794645,-0.57270825 +0.01100000,-0.01247362,-0.97042544,66.05513859,0.00012959,0.03533312,-0.00379156,-0.17507918,15.57246079,0.55394457,3.00755990,-0.52656111 +0.01200000,-0.01337721,-0.90358814,67.70953632,0.00016823,0.04204336,-0.00395215,-0.16058873,14.73047807,0.55657768,3.00718493,-0.48292002 +0.01300000,-0.01421377,-0.83656701,67.89575704,0.00021387,0.04933494,-0.00409904,-0.14689734,13.91856728,0.55769854,3.00682525,-0.44169464 +0.01400000,-0.01498415,-0.77037676,67.05404005,0.00026710,0.05720733,-0.00423301,-0.13396962,13.14250644,0.55774971,3.00648324,-0.40277742 +0.01500000,-0.01568986,-0.70570769,65.51300549,0.00032848,0.06565992,-0.00435478,-0.12176649,12.40608160,0.55706366,3.00616048,-0.36604960 +0.01600000,-0.01633287,-0.64300807,63.51786317,0.00039861,0.07469211,-0.00446503,-0.11024650,11.71172060,0.55588930,3.00585802,-0.33138532 +0.01700000,-0.01691541,-0.58254621,61.25089222,0.00047806,0.08430322,-0.00456439,-0.09936685,11.06083289,0.55441190,3.00557653,-0.29865468 +0.01800000,-0.01743987,-0.52445777,58.84649387,0.00056741,0.09449254,-0.00465348,-0.08908418,10.45399173,0.55276805,3.00531635,-0.26772615 +0.01900000,-0.01790865,-0.46878186,56.40248933,0.00066724,0.10525931,-0.00473283,-0.07935528,9.89105649,0.55105727,3.00507751,-0.23846877 +0.02000000,-0.01832414,-0.41548857,53.98876786,0.00077812,0.11660274,-0.00480297,-0.07013767,9.37128412,0.54935082,3.00485978,-0.21075387 +0.02100000,-0.01868864,-0.36449999,51.65398860,0.00090063,0.12852199,-0.00486436,-0.06139010,8.89344379,0.54769867,3.00466266,-0.18445654 +0.02200000,-0.01900435,-0.31570596,49.43079558,0.00103536,0.14101617,-0.00491743,-0.05307289,8.45593180,0.54613477,3.00448549,-0.15945672 +0.02300000,-0.01927332,-0.26897593,47.33986765,0.00118286,0.15408436,-0.00496258,-0.04514820,8.05687962,0.54468119,3.00432744,-0.13563997 +0.02400000,-0.01949749,-0.22416763,45.39304609,0.00134372,0.16772559,-0.00500016,-0.03758020,7.69424879,0.54335121,3.00418760,-0.11289798 +0.02500000,-0.01967862,-0.18113350,43.59573233,0.00151850,0.18193886,-0.00503050,-0.03033517,7.36591000,0.54215175,3.00406499,-0.09112882 +0.02600000,-0.01981835,-0.13972517,41.94871177,0.00170778,0.19672310,-0.00505388,-0.02338148,7.06970575,0.54108512,3.00395863,-0.07023701 +0.02700000,-0.01991815,-0.09979671,40.44952996,0.00191214,0.21207722,-0.00507057,-0.01668964,6.80349798,0.54015041,3.00386750,-0.05013348 +0.02800000,-0.01997935,-0.06120679,39.09352272,0.00213213,0.22800008,-0.00508080,-0.01023219,6.56520277,0.53934450,3.00379063,-0.03073537 +0.02900000,-0.02000317,-0.02382011,37.87458059,0.00236833,0.24449051,-0.00508479,-0.00398365,6.35281435,0.53866275,3.00372707,-0.01196579 +0.03000000,-0.01999068,0.01249173,36.78571107,0.00262130,0.26154728,-0.00508271,0.00207959,6.16442087,0.53809961,3.00367592,0.00624642 +0.03100000,-0.01994283,0.04784975,35.81944767,0.00289161,0.27916913,-0.00507473,0.00797935,5.99821365,0.53764900,3.00363630,0.02396708 +0.03200000,-0.01986046,0.08236744,34.96814369,0.00317982,0.29735475,-0.00506099,0.01373578,5.85249163,0.53730459,3.00360741,0.04125690 +0.03300000,-0.01974431,0.11615074,34.22417974,0.00348651,0.31610280,-0.00504162,0.01936746,5.72566238,0.53705998,3.00358849,0.05817189 +0.03400000,-0.01959501,0.14929827,33.58010705,0.00381222,0.33541187,-0.00501673,0.02489152,5.61624058,0.53690891,3.00357883,0.07476363 +0.03500000,-0.01941311,0.18190154,33.02874329,0.00415752,0.35528055,-0.00498641,0.03032371,5.52284476,0.53684529,3.00357775,0.09107961 +0.03600000,-0.01919907,0.21404529,32.56323356,0.00452296,0.37570736,-0.00495073,0.03567854,5.44419298,0.53686327,3.00358465,0.10716350 +0.03700000,-0.01895326,0.24580787,32.17708589,0.00490912,0.39669078,-0.00490976,0.04096934,5.37909778,0.53695732,3.00359894,0.12305546 +0.03800000,-0.01867600,0.27726159,31.86418848,0.00531653,0.41822926,-0.00486355,0.04620837,5.32646074,0.53712221,3.00362011,0.13879238 +0.03900000,-0.01836753,0.30847309,31.61881397,0.00574576,0.44032119,-0.00481214,0.05140688,5.28526693,0.53735302,3.00364766,0.15440815 +0.04000000,-0.01802802,0.33950375,31.43561456,0.00619736,0.46296495,-0.00475557,0.05657520,5.25457939,0.53764518,3.00368114,0.16993387 +0.04100000,-0.01765761,0.37041003,31.30961096,0.00667187,0.48615885,-0.00469385,0.06172283,5.23353364,0.53799440,3.00372013,0.18539811 +0.04200000,-0.01725637,0.40124382,31.23617737,0.00716986,0.50990117,-0.00462699,0.06685845,5.22133254,0.53839670,3.00376425,0.20082704 +0.04300000,-0.01682431,0.43205279,31.21102391,0.00769186,0.53419014,-0.00455500,0.07199006,5.21724126,0.53884838,3.00381313,0.21624467 +0.04400000,-0.01636143,0.46288066,31.23017772,0.00823842,0.55902397,-0.00447787,0.07712494,5.22058261,0.53934602,3.00386645,0.23167303 +0.04500000,-0.01586767,0.49376755,31.28996356,0.00881009,0.58440081,-0.00439560,0.08226981,5.23073264,0.53988644,3.00392392,0.24713226 +0.04600000,-0.01534292,0.52475020,31.38698433,0.00940740,0.61031877,-0.00430817,0.08743080,5.24711649,0.54046671,3.00398524,0.26264083 +0.04700000,-0.01478705,0.55586229,31.51810215,0.01003090,0.63677594,-0.00421556,0.09261351,5.26920458,0.54108411,3.00405015,0.27821562 +0.04800000,-0.01419992,0.58713460,31.68041996,0.01068113,0.66377035,-0.00411774,0.09782307,5.29650905,0.54173613,3.00411843,0.29387210 +0.04900000,-0.01358132,0.61859530,31.87126407,0.01135862,0.69129999,-0.00401467,0.10306419,5.32858042,0.54242044,3.00418986,0.30962438 +0.05000000,-0.01293105,0.65027011,32.08816758,0.01206391,0.71936281,-0.00390633,0.10834112,5.36500463,0.54313492,3.00426422,0.32548536 +0.05100000,-0.01224887,0.68218251,32.32885484,0.01279752,0.74795674,-0.00379267,0.11365779,5.40540013,0.54387756,3.00434133,0.34146681 +0.05200000,-0.01153452,0.71435389,32.59122684,0.01356000,0.77707964,-0.00367365,0.11901776,5.44941535,0.54464655,3.00442103,0.35757945 +0.05300000,-0.01078771,0.74680377,32.87334762,0.01435186,0.80672936,-0.00354923,0.12442425,5.49672628,0.54544018,3.00450314,0.37383306 +0.05400000,-0.01000816,0.77954986,33.17343162,0.01517363,0.83690369,-0.00341935,0.12988023,5.54703429,0.54625690,3.00458752,0.39023652 +0.05500000,-0.00919556,0.81260828,33.48983195,0.01602584,0.86760038,-0.00328396,0.13538837,5.60006405,0.54709526,3.00467404,0.40679792 +0.05600000,-0.00834956,0.84599362,33.82102953,0.01690901,0.89881716,-0.00314301,0.14095109,5.65556176,0.54795391,3.00476257,0.42352457 +0.05700000,-0.00746984,0.87971913,34.16562301,0.01782365,0.93055169,-0.00299644,0.14657060,5.71329332,0.54883162,3.00485299,0.44042311 +0.05800000,-0.00655605,0.91379673,34.52231951,0.01877028,0.96280163,-0.00284419,0.15224888,5.77304285,0.54972725,3.00494520,0.45749954 +0.05900000,-0.00560781,0.94823720,34.88992604,0.01974942,0.99556457,-0.00268620,0.15798771,5.83461117,0.55063972,3.00503909,0.47475925 +0.06000000,-0.00462476,0.98305023,35.26734157,0.02076158,1.02883807,-0.00252242,0.16378871,5.89781450,0.55156806,3.00513457,0.49220712 +0.06100000,-0.00360651,1.01824449,35.65354979,0.02180727,1.06261966,-0.00235276,0.16965332,5.96248323,0.55251136,3.00523156,0.50984751 +0.06200000,-0.00255269,1.05382774,36.04761236,0.02288699,1.09690683,-0.00217718,0.17558282,6.02846077,0.55346877,3.00532997,0.52768432 +0.06300000,-0.00146288,1.08980687,36.44866273,0.02400125,1.13169701,-0.00199560,0.18157836,6.09560253,0.55443949,3.00542973,0.54572101 +0.06400000,-0.00033669,1.12618800,36.85590043,0.02515055,1.16698762,-0.00180796,0.18764096,6.16377495,0.55542281,3.00553078,0.56396068 +0.06500000,0.00082628,1.16297649,37.26858586,0.02633539,1.20277603,-0.00161419,0.19377150,6.23285464,0.55641805,3.00563304,0.58240602 +0.06600000,0.00202646,1.20017705,37.68603543,0.02755627,1.23905958,-0.00141422,0.19997077,6.30272755,0.55742457,3.00573646,0.60105942 +0.06700000,0.00326426,1.23779377,38.10761712,0.02881367,1.27583556,-0.00120798,0.20623943,6.37328826,0.55844179,3.00584098,0.61992294 +0.06800000,0.00454009,1.27583014,38.53274639,0.03010810,1.31310122,-0.00099540,0.21257809,6.44443924,0.55946915,3.00594655,0.63899836 +0.06900000,0.00585437,1.31428913,38.96088241,0.03144004,1.35085380,-0.00077641,0.21898721,6.51609028,0.56050615,3.00605312,0.65828719 +0.07000000,0.00720755,1.35317321,39.39152463,0.03280997,1.38909048,-0.00055095,0.22546722,6.58815788,0.56155231,3.00616065,0.67779069 +0.07100000,0.00860003,1.39248440,39.82420953,0.03421838,1.42780840,-0.00031893,0.23201845,6.66056472,0.56260719,3.00626909,0.69750990 +0.07200000,0.01003226,1.43222430,40.25850773,0.03566575,1.46700468,-0.00008029,0.23864116,6.73323916,0.56367036,3.00637840,0.71744564 +0.07300000,0.01150465,1.47239410,40.69402127,0.03715255,1.50667639,0.00016505,0.24533555,6.80611481,0.56474144,3.00648855,0.73759853 +0.07400000,0.01301765,1.51299464,41.13038112,0.03867926,1.54682057,0.00041715,0.25210176,6.87913013,0.56582006,3.00659951,0.75796903 +0.07500000,0.01457167,1.55402642,41.56724492,0.04024634,1.58743423,0.00067609,0.25893987,6.95222800,0.56690587,3.00671123,0.77855740 +0.07600000,0.01616716,1.59548962,42.00429485,0.04185428,1.62851433,0.00094194,0.26584990,7.02535538,0.56799855,3.00682368,0.79936377 +0.07700000,0.01780455,1.63738413,42.44123569,0.04350353,1.67005781,0.00121477,0.27283184,7.09846304,0.56909779,3.00693685,0.82038810 +0.07800000,0.01948426,1.67970957,42.87779307,0.04519455,1.71206155,0.00149466,0.27988562,7.17150520,0.57020331,3.00705069,0.84163024 +0.07900000,0.02120672,1.72246531,43.31371178,0.04692780,1.75452243,0.00178167,0.28701114,7.24443928,0.57131483,3.00716519,0.86308990 +0.08000000,0.02297237,1.76565050,43.74875430,0.04870375,1.79743727,0.00207588,0.29420825,7.31722566,0.57243209,3.00728031,0.88476667 +0.08100000,0.02478163,1.80926403,44.18269941,0.05052283,1.84080286,0.00237735,0.30147677,7.38982742,0.57355486,3.00739604,0.90666004 +0.08200000,0.02663494,1.85330464,44.61534088,0.05238550,1.88461596,0.00268617,0.30881648,7.46221015,0.57468289,3.00751236,0.92876939 +0.08300000,0.02853271,1.89777084,45.04648632,0.05429221,1.92887329,0.00300240,0.31622715,7.53434175,0.57581597,3.00762923,0.95109401 +0.08400000,0.03047537,1.94266098,45.47595611,0.05624339,1.97357155,0.00332611,0.32370848,7.60619226,0.57695389,3.00774664,0.97363309 +0.08500000,0.03246334,1.98797323,45.90358237,0.05823950,2.01870737,0.00365737,0.33126018,7.67773365,0.57809644,3.00786457,0.99638576 +0.08600000,0.03449705,2.03370562,46.32920805,0.06028095,2.06427739,0.00399625,0.33888192,7.74893972,0.57924343,3.00798301,1.01935105 +0.08700000,0.03657691,2.07985604,46.75268613,0.06236820,2.11027820,0.00434282,0.34657334,7.81978594,0.58039468,3.00810193,1.04252793 +0.08800000,0.03870333,2.12642223,47.17387877,0.06450165,2.15670634,0.00469716,0.35433407,7.89024930,0.58155001,3.00822131,1.06591530 +0.08900000,0.04087673,2.17340180,47.59265666,0.06668175,2.20355834,0.00505932,0.36216370,7.96030821,0.58270926,3.00834115,1.08951197 +0.09000000,0.04309752,2.22079225,48.00889835,0.06890891,2.25083069,0.00542938,0.37006183,8.02994242,0.58387225,3.00846141,1.11331674 +0.09100000,0.04536611,2.26859096,48.42248961,0.07118355,2.29851984,0.00580741,0.37802801,8.09913285,0.58503883,3.00858210,1.13732832 +0.09200000,0.04768291,2.31679521,48.83332292,0.07350609,2.34662222,0.00619347,0.38606180,8.16786155,0.58620884,3.00870318,1.16154536 +0.09300000,0.05004831,2.36540218,49.24129692,0.07587693,2.39513422,0.00658763,0.39416271,8.23611161,0.58738215,3.00882466,1.18596648 +0.09400000,0.05246272,2.41440896,49.64631596,0.07829649,2.44405219,0.00698996,0.40233027,8.30386705,0.58855859,3.00894651,1.21059025 +0.09500000,0.05492653,2.46381252,50.04828967,0.08076517,2.49337247,0.00740053,0.41056396,8.37111280,0.58973805,3.00906871,1.23541518 +0.09600000,0.05744014,2.51360980,50.44713257,0.08328337,2.54309136,0.00781939,0.41886329,8.43783457,0.59092037,3.00919126,1.26043975 +0.09700000,0.06000394,2.56379761,50.84276364,0.08585148,2.59320511,0.00824662,0.42722771,8.50401885,0.59210543,3.00931415,1.28566239 +0.09800000,0.06261831,2.61437270,51.23510609,0.08846991,2.64370997,0.00868228,0.43565669,8.56965281,0.59329309,3.00943735,1.31108151 +0.09900000,0.06528364,2.66533177,51.62408694,0.09113903,2.69460214,0.00912643,0.44414967,8.63472426,0.59448324,3.00956086,1.33669547 +0.10000000,0.06800032,2.71667142,52.00963682,0.09385924,2.74587778,0.00957913,0.45270609,8.69922163,0.59567574,3.00968467,1.36250258 +0.10100000,0.07076870,2.76838820,52.39168966,0.09663091,2.79753305,0.01004046,0.46132537,8.76313386,0.59687047,3.00980875,1.38850115 +0.10200000,0.07358918,2.82047860,52.77018244,0.09945443,2.84956406,0.01051046,0.47000694,8.82645045,0.59806733,3.00993311,1.41468944 +0.10300000,0.07646212,2.87293904,53.14505503,0.10233017,2.90196688,0.01098921,0.47875018,8.88916135,0.59926618,3.01005772,1.44106567 +0.10400000,0.07938789,2.92576589,53.51624992,0.10525849,2.95473759,0.01147677,0.48755450,8.95125695,0.60046691,3.01018258,1.46762805 +0.10500000,0.08236684,2.97895548,53.88371205,0.10823976,3.00787219,0.01197319,0.49641928,9.01272805,0.60166941,3.01030767,1.49437476 +0.10600000,0.08539935,3.03250405,54.24738866,0.11127435,3.06136669,0.01247853,0.50534390,9.07356585,0.60287357,3.01043299,1.52130394 +0.10700000,0.08848575,3.08640783,54.60722910,0.11436262,3.11521705,0.01299286,0.51432772,9.13376187,0.60407927,3.01055852,1.54841371 +0.10800000,0.09162642,3.14066298,54.96318472,0.11750490,3.16941922,0.01351623,0.52337012,9.19330800,0.60528641,3.01068425,1.57570218 +0.10900000,0.09482168,3.19526562,55.31520869,0.12070157,3.22396911,0.01404870,0.53247044,9.25219640,0.60649488,3.01081017,1.60316741 +0.11000000,0.09807190,3.25021182,55.66325592,0.12395296,3.27886259,0.01459033,0.54162802,9.31041955,0.60770457,3.01093626,1.63080746 +0.11100000,0.10137739,3.30549762,56.00728291,0.12725941,3.33409553,0.01514117,0.55084221,9.36797017,0.60891537,3.01106253,1.65862035 +0.11200000,0.10473851,3.36111900,56.34724768,0.13062126,3.38966375,0.01570128,0.56011234,9.42484125,0.61012718,3.01118895,1.68660410 +0.11300000,0.10815558,3.41707192,56.68310965,0.13403885,3.44556305,0.01627072,0.56943773,9.48102601,0.61133990,3.01131551,1.71475668 +0.11400000,0.11162894,3.47335229,57.01482954,0.13751250,3.50178922,0.01684954,0.57881771,9.53651788,0.61255342,3.01144221,1.74307607 +0.11500000,0.11515889,3.52995597,57.34236935,0.14104253,3.55833799,0.01743779,0.58825157,9.59131052,0.61376763,3.01156904,1.77156022 +0.11600000,0.11874577,3.58687882,57.66569220,0.14462928,3.61520509,0.01803553,0.59773864,9.64539776,0.61498244,3.01169598,1.80020705 +0.11700000,0.12238989,3.64411662,57.98476232,0.14827305,3.67238622,0.01864281,0.60727820,9.69877361,0.61619774,3.01182302,1.82901446 +0.11800000,0.12609155,3.70166515,58.29954500,0.15197415,3.72987705,0.01925968,0.61686956,9.75143229,0.61741344,3.01195015,1.85798036 +0.11900000,0.12985107,3.75952015,58.61000646,0.15573290,3.78767322,0.01988619,0.62651200,9.80336813,0.61862942,3.01207737,1.88710262 +0.12000000,0.13366875,3.81767730,58.91611386,0.15954960,3.84577035,0.02052239,0.63620481,9.85457566,0.61984560,3.01220466,1.91637909 +0.12100000,0.13754488,3.87613229,59.21783524,0.16342454,3.90416404,0.02116834,0.64594726,9.90504953,0.62106187,3.01233201,1.94580762 +0.12200000,0.14147976,3.93488076,59.51513947,0.16735803,3.96284986,0.02182408,0.65573864,9.95478453,0.62227812,3.01245941,1.97538603 +0.12300000,0.14547368,3.99391831,59.80799618,0.17135034,4.02182336,0.02248966,0.66557820,10.00377559,0.62349428,3.01258685,2.00511212 +0.12400000,0.14952692,4.05324053,60.09637578,0.17540177,4.08108005,0.02316512,0.67546521,10.05201776,0.62471022,3.01271433,2.03498370 +0.12500000,0.15363976,4.11284296,60.38024937,0.17951259,4.14061545,0.02385052,0.68539893,10.09950621,0.62592586,3.01284182,2.06499854 +0.12600000,0.15781249,4.17272113,60.65958877,0.18368309,4.20042502,0.02454590,0.69537861,10.14623623,0.62714109,3.01296932,2.09515441 +0.12700000,0.16204536,4.23287054,60.93436641,0.18791353,4.26050421,0.02525130,0.70540350,10.19220320,0.62835582,3.01309682,2.12544905 +0.12800000,0.16633864,4.29328666,61.20455537,0.19220419,4.32084846,0.02596678,0.71547285,10.23740263,0.62956995,3.01322432,2.15588020 +0.12900000,0.17069261,4.35396493,61.47012934,0.19655531,4.38145318,0.02669236,0.72558590,10.28183012,0.63078338,3.01335179,2.18644558 +0.13000000,0.17510751,4.41490078,61.73106257,0.20096718,4.44231375,0.02742810,0.73574189,10.32548135,0.63199602,3.01347923,2.21714289 +0.13100000,0.17958360,4.47608959,61.98732989,0.20544003,4.50342554,0.02817404,0.74594004,10.36835213,0.63320776,3.01360663,2.24796984 +0.13200000,0.18412113,4.53752673,62.23890666,0.20997411,4.56478388,0.02893022,0.75617959,10.41043833,0.63441852,3.01373398,2.27892411 +0.13300000,0.18872033,4.59920756,62.48576877,0.21456967,4.62638410,0.02969668,0.76645975,10.45173592,0.63562819,3.01386126,2.31000336 +0.13400000,0.19338146,4.66112740,62.72789262,0.21922696,4.68822150,0.03047346,0.77677976,10.49224095,0.63683667,3.01398848,2.34120524 +0.13500000,0.19810474,4.72328153,62.96525510,0.22394619,4.75029136,0.03126060,0.78713882,10.53194956,0.63804388,3.01411561,2.37252741 +0.13600000,0.20289041,4.78566525,63.19783357,0.22872762,4.81258894,0.03205814,0.79753615,10.57085796,0.63924971,3.01424266,2.40396750 +0.13700000,0.20773868,4.84827381,63.42560590,0.23357145,4.87510948,0.03286611,0.80797097,10.60896245,0.64045406,3.01436960,2.43552312 +0.13800000,0.21264978,4.91110244,63.64855036,0.23847791,4.93784819,0.03368455,0.81844246,10.64625940,0.64165685,3.01449642,2.46719188 +0.13900000,0.21762393,4.97414636,63.86664572,0.24344721,5.00080028,0.03451350,0.82894985,10.68274525,0.64285797,3.01462313,2.49897138 +0.14000000,0.22266133,5.03740076,64.07987116,0.24847958,5.06396093,0.03535299,0.83949232,10.71841653,0.64405734,3.01474970,2.53085922 +0.14100000,0.22776219,5.10086080,64.28820631,0.25357520,5.12732531,0.03620306,0.85006907,10.75326982,0.64525484,3.01487614,2.56285295 +0.14200000,0.23292671,5.16452165,64.49163120,0.25873429,5.19088855,0.03706374,0.86067929,10.78730179,0.64645039,3.01500242,2.59495014 +0.14300000,0.23815509,5.22837844,64.69012630,0.26395705,5.25464578,0.03793506,0.87132218,10.82050916,0.64764390,3.01512853,2.62714836 +0.14400000,0.24344752,5.29242628,64.88367248,0.26924365,5.31859211,0.03881706,0.88199691,10.85288875,0.64883526,3.01525448,2.65944514 +0.14500000,0.24880418,5.35666028,65.07225101,0.27459429,5.38272264,0.03970976,0.89270268,10.88443742,0.65002439,3.01538024,2.69183802 +0.14600000,0.25422525,5.42107549,65.25584358,0.28000915,5.44703243,0.04061320,0.90343865,10.91515210,0.65121118,3.01550581,2.72432451 +0.14700000,0.25971092,5.48566700,65.43443225,0.28548841,5.51151655,0.04152741,0.91420402,10.94502979,0.65239554,3.01563118,2.75690214 +0.14800000,0.26526135,5.55042984,65.60799948,0.29103224,5.57617003,0.04245240,0.92499794,10.97406756,0.65357738,3.01575634,2.78956840 +0.14900000,0.27087671,5.61535904,65.77652813,0.29664081,5.64098790,0.04338822,0.93581960,11.00226255,0.65475660,3.01588127,2.82232079 +0.15000000,0.27655716,5.68044960,65.94000142,0.30231427,5.70596516,0.04433489,0.94666815,11.02961194,0.65593311,3.01600597,2.85515680 +0.15100000,0.28230286,5.74569652,66.09840298,0.30805279,5.77109682,0.04529244,0.95754277,11.05611301,0.65710681,3.01613043,2.88807390 +0.15200000,0.28811395,5.81109479,66.25171679,0.31385652,5.83637784,0.04626088,0.96844263,11.08176306,0.65827761,3.01625464,2.92106956 +0.15300000,0.29399059,5.87663935,66.39992722,0.31972559,5.90180320,0.04724024,0.97936687,11.10655948,0.65944542,3.01637858,2.95414124 +0.15400000,0.29993291,5.94232516,66.54301902,0.32566017,5.96736784,0.04823056,0.99031466,11.13049973,0.66061014,3.01650225,2.98728639 +0.15500000,0.30594106,6.00814716,66.68097729,0.33166038,6.03306669,0.04923184,1.00128515,11.15358130,0.66177167,3.01662564,3.02050245 +0.15600000,0.31201516,6.07410025,66.81378753,0.33772635,6.09889468,0.05024412,1.01227749,11.17580178,0.66292993,3.01674874,3.05378685 +0.15700000,0.31815534,6.14017935,66.94143557,0.34385821,6.16484671,0.05126741,1.02329085,11.19715880,0.66408482,3.01687154,3.08713703 +0.15800000,0.32436172,6.20637934,67.06390763,0.35005608,6.23091768,0.05230174,1.03432435,11.21765005,0.66523624,3.01699402,3.12055039 +0.15900000,0.33063442,6.27269510,67.18119030,0.35632008,6.29710246,0.05334711,1.04537716,11.23727328,0.66638411,3.01711619,3.15402436 +0.16000000,0.33697354,6.33912150,67.29327053,0.36265032,6.36339594,0.05440356,1.05644842,11.25602631,0.66752833,3.01723802,3.18755633 +0.16100000,0.34337919,6.40565339,67.40013562,0.36904691,6.42979295,0.05547110,1.06753726,11.27390703,0.66866880,3.01735951,3.22114370 +0.16200000,0.34985148,6.47228561,67.50177324,0.37550994,6.49628836,0.05654974,1.07864283,11.29091336,0.66980544,3.01748065,3.25478386 +0.16300000,0.35639049,6.53901298,67.59817144,0.38203951,6.56287699,0.05763951,1.08976426,11.30704330,0.67093816,3.01760142,3.28847419 +0.16400000,0.36299632,6.60583033,67.68931861,0.38863572,6.62955366,0.05874041,1.10090070,11.32229492,0.67206685,3.01772183,3.32221207 +0.16500000,0.36966905,6.67273245,67.77520350,0.39529865,6.69631318,0.05985246,1.11205127,11.33666633,0.67319143,3.01784186,3.35599486 +0.16600000,0.37640877,6.73971415,67.85581523,0.40202837,6.76315037,0.06097567,1.12321511,11.35015572,0.67431181,3.01796149,3.38981994 +0.16700000,0.38321554,6.80677021,67.93114328,0.40882497,6.83006000,0.06211007,1.13439134,11.36276132,0.67542790,3.01808073,3.42368465 +0.16800000,0.39008943,6.87389539,68.00117749,0.41568852,6.89703686,0.06325564,1.14557911,11.37448143,0.67653959,3.01819956,3.45758636 +0.16900000,0.39703052,6.94108448,68.06590806,0.42261907,6.96407571,0.06441242,1.15677753,11.38531441,0.67764681,3.01831797,3.49152240 +0.17000000,0.40403885,7.00833221,68.12532553,0.42961669,7.03117133,0.06558041,1.16798573,11.39525868,0.67874946,3.01843594,3.52549011 +0.17100000,0.41111448,7.07563335,68.17942084,0.43668143,7.09831847,0.06675961,1.17920284,11.40431273,0.67984746,3.01855348,3.55948683 +0.17200000,0.41825746,7.14298262,68.22818524,0.44381334,7.16551187,0.06795004,1.19042797,11.41247509,0.68094070,3.01867057,3.59350989 +0.17300000,0.42546784,7.21037476,68.27161038,0.45101246,7.23274626,0.06915170,1.20166026,11.41974436,0.68202910,3.01878721,3.62755661 +0.17400000,0.43274564,7.27780448,68.30968826,0.45827884,7.30001639,0.07036460,1.21289881,11.42611921,0.68311257,3.01890337,3.66162431 +0.17500000,0.44009091,7.34526650,68.34241121,0.46561251,7.36731696,0.07158874,1.22414276,11.43159835,0.68419103,3.01901906,3.69571031 +0.17600000,0.44750367,7.41275554,68.36977197,0.47301349,7.43464270,0.07282413,1.23539121,11.43618057,0.68526437,3.01913426,3.72981192 +0.17700000,0.45498393,7.48026628,68.39176359,0.48048180,7.50198832,0.07407078,1.24664328,11.43986470,0.68633252,3.01924897,3.76392644 +0.17800000,0.46253173,7.54779342,68.40837951,0.48801747,7.56934851,0.07532867,1.25789810,11.44264965,0.68739537,3.01936317,3.79805118 +0.17900000,0.47014706,7.61533166,68.41961352,0.49562050,7.63671798,0.07659783,1.26915476,11.44453438,0.68845286,3.01947685,3.83218343 +0.18000000,0.47782993,7.68287566,68.42545977,0.50329090,7.70409141,0.07787824,1.28041240,11.44551790,0.68950487,3.01959001,3.86632049 +0.18100000,0.48558035,7.75042011,68.42591277,0.51102868,7.77146349,0.07916991,1.29167011,11.44559931,0.69055134,3.01970264,3.90045965 +0.18200000,0.49339831,7.81795968,68.42096740,0.51883383,7.83882890,0.08047284,1.30292702,11.44477774,0.69159216,3.01981472,3.93459820 +0.18300000,0.50128380,7.88548904,68.41061887,0.52670634,7.90618232,0.08178702,1.31418223,11.44305239,0.69262726,3.01992625,3.96873342 +0.18400000,0.50923680,7.95300284,68.39486279,0.53464619,7.97351842,0.08311245,1.32543486,11.44042253,0.69365654,3.02003722,4.00286259 +0.18500000,0.51725730,8.02049575,68.37369510,0.54265337,8.04083186,0.08444914,1.33668400,11.43688748,0.69467993,3.02014761,4.03698300 +0.18600000,0.52534526,8.08796241,68.34711212,0.55072784,8.10811731,0.08579707,1.34792878,11.43244662,0.69569732,3.02025743,4.07109191 +0.18700000,0.53350066,8.15539752,68.31514033,0.55886959,8.17536944,0.08715624,1.35916831,11.42710389,0.69670864,3.02036666,4.10518663 +0.18800000,0.54172346,8.22279577,68.27780975,0.56707857,8.24258290,0.08852664,1.37040169,11.42086432,0.69771378,3.02047529,4.13926445 +0.18900000,0.55001361,8.29015176,68.23499209,0.57535474,8.30975234,0.08990827,1.38162804,11.41370911,0.69871265,3.02058331,4.17332261 +0.19000000,0.55837107,8.35746009,68.18670674,0.58369806,8.37687243,0.09130111,1.39284645,11.40563885,0.69970518,3.02069071,4.20735834 +0.19100000,0.56679578,8.42471538,68.13297623,0.59210847,8.44393781,0.09270517,1.40405603,11.39665723,0.70069130,3.02079748,4.24136892 +0.19200000,0.57528770,8.49191226,68.07381212,0.60058591,8.51094314,0.09412042,1.41525588,11.38676647,0.70167091,3.02090362,4.27535160 +0.19300000,0.58384674,8.55904539,68.00921933,0.60913033,8.57788306,0.09554687,1.42644510,11.37596757,0.70264395,3.02100911,4.30930365 +0.19400000,0.59247285,8.62610940,67.93919936,0.61774165,8.64475223,0.09698449,1.43762282,11.36426088,0.70361033,3.02111395,4.34322234 +0.19500000,0.60116595,8.69309893,67.86375224,0.62641981,8.71154529,0.09843328,1.44878812,11.35164642,0.70456997,3.02121812,4.37710493 +0.19600000,0.60992596,8.76000863,67.78287753,0.63516472,8.77825689,0.09989322,1.45994013,11.33812414,0.70552277,3.02132162,4.41094867 +0.19700000,0.61875279,8.82683314,67.69657482,0.64397630,8.84488168,0.10136430,1.47107794,11.32369395,0.70646866,3.02142445,4.44475084 +0.19800000,0.62764636,8.89356710,67.60484398,0.65285445,8.91141432,0.10284650,1.48220066,11.30835583,0.70740756,3.02152658,4.47850870 +0.19900000,0.63660656,8.96020515,67.50768533,0.66179909,8.97784945,0.10433981,1.49330741,11.29210982,0.70833937,3.02162801,4.51221950 +0.20000000,0.64563331,9.02674194,67.40509962,0.67081012,9.04418172,0.10584420,1.50439728,11.27495605,0.70926402,3.02172874,4.54588051 +0.20100000,0.65472648,9.09317211,67.29708809,0.67988742,9.11040580,0.10735967,1.51546939,11.25689471,0.71018143,3.02182876,4.57948898 +0.20200000,0.66388597,9.15949030,67.18365242,0.68903089,9.17651634,0.10888620,1.52652284,11.23792609,0.71109151,3.02192804,4.61304219 +0.20300000,0.67311166,9.22569117,67.06479476,0.69824041,9.24250799,0.11042375,1.53755674,11.21805053,0.71199419,3.02202660,4.64653738 +0.20400000,0.68240343,9.29176936,66.94051767,0.70751586,9.30837542,0.11197232,1.54857021,11.19726847,0.71288938,3.02212441,4.67997182 +0.20500000,0.69176115,9.35771953,66.81082415,0.71685712,9.37411330,0.11353188,1.55956234,11.17558040,0.71377701,3.02222147,4.71334278 +0.20600000,0.70118468,9.42353633,66.67571757,0.72626405,9.43971629,0.11510242,1.57053224,11.15298689,0.71465699,3.02231778,4.74664752 +0.20700000,0.71067390,9.48921443,66.53520174,0.73573651,9.50517907,0.11668390,1.58147904,11.12948857,0.71552925,3.02241331,4.77988329 +0.20800000,0.72022865,9.55474848,66.38928083,0.74527436,9.57049631,0.11827630,1.59240183,11.10508614,0.71639370,3.02250807,4.81304738 +0.20900000,0.72984878,9.62013316,66.23795939,0.75487745,9.63566270,0.11987960,1.60329973,11.07978037,0.71725028,3.02260205,4.84613705 +0.21000000,0.73953414,9.68536315,66.08124234,0.76454563,9.70067292,0.12149377,1.61417185,11.05357207,0.71809890,3.02269523,4.87914957 +0.21100000,0.74928458,9.75043312,65.91913499,0.77427874,9.76552167,0.12311879,1.62501731,11.02646213,0.71893948,3.02278761,4.91208220 +0.21200000,0.75909991,9.81533775,65.75164301,0.78407662,9.83020364,0.12475462,1.63583522,10.99845150,0.71977196,3.02287919,4.94493224 +0.21300000,0.76897999,9.88007173,65.57877243,0.79393909,9.89471354,0.12640125,1.64662469,10.96954119,0.72059625,3.02296994,4.97769695 +0.21400000,0.77892462,9.94462978,65.40052964,0.80386598,9.95904608,0.12805863,1.65738485,10.93973227,0.72141227,3.02305987,5.01037361 +0.21500000,0.78893362,10.00900657,65.21692140,0.81385712,10.02319597,0.12972675,1.66811480,10.90902587,0.72221996,3.02314896,5.04295951 +0.21600000,0.79900682,10.07319684,65.02795484,0.82391231,10.08715794,0.13140556,1.67881366,10.87742317,0.72301924,3.02323721,5.07545194 +0.21700000,0.80914401,10.13719529,64.83363741,0.83403137,10.15092673,0.13309504,1.68948056,10.84492544,0.72381003,3.02332461,5.10784818 +0.21800000,0.81934501,10.20099665,64.63397697,0.84421410,10.21449706,0.13479516,1.70011462,10.81153397,0.72459227,3.02341116,5.14014552 +0.21900000,0.82960961,10.26459566,64.42898171,0.85446030,10.27786370,0.13650587,1.71071496,10.77725014,0.72536587,3.02349683,5.17234127 +0.22000000,0.83993759,10.32798706,64.21866016,0.86476976,10.34102139,0.13822715,1.72128070,10.74207539,0.72613076,3.02358164,5.20443272 +0.22100000,0.85032876,10.39116559,64.00302124,0.87514227,10.40396491,0.13995896,1.73181097,10.70601118,0.72688688,3.02366556,5.23641718 +0.22200000,0.86078289,10.45412603,63.78207421,0.88557762,10.46668902,0.14170127,1.74230489,10.66905909,0.72763415,3.02374859,5.26829196 +0.22300000,0.87129975,10.51686313,63.55582867,0.89607557,10.52918851,0.14345403,1.75276160,10.63122071,0.72837250,3.02383072,5.30005436 +0.22400000,0.88187912,10.57937169,63.32429461,0.90663592,10.59145817,0.14521721,1.76318022,10.59249771,0.72910186,3.02391195,5.33170172 +0.22500000,0.89252077,10.64164648,63.08748234,0.91725841,10.65349281,0.14699077,1.77355988,10.55289182,0.72982216,3.02399226,5.36323135 +0.22600000,0.90322445,10.70368230,62.84540254,0.92794282,10.71528725,0.14877467,1.78389972,10.51240482,0.73053333,3.02407166,5.39464058 +0.22700000,0.91398992,10.76547398,62.59806623,0.93868890,10.77683630,0.15056887,1.79419887,10.47103856,0.73123530,3.02415012,5.42592673 +0.22800000,0.92481694,10.82701634,62.34548479,0.94949641,10.83813481,0.15237332,1.80445647,10.42879494,0.73192800,3.02422765,5.45708716 +0.22900000,0.93570524,10.88830419,62.08766995,0.96036509,10.89917763,0.15418800,1.81467166,10.38567592,0.73261137,3.02430424,5.48811921 +0.23000000,0.94665458,10.94933240,61.82463380,0.97129468,10.95995962,0.15601284,1.82484359,10.34168353,0.73328533,3.02437988,5.51902022 +0.23100000,0.95766467,11.01009582,61.55638876,0.98228492,11.02047564,0.15784781,1.83497138,10.29681983,0.73394983,3.02445455,5.54978755 +0.23200000,0.96873526,11.07058932,61.28294762,0.99333554,11.08072059,0.15969286,1.84505419,10.25108697,0.73460479,3.02452827,5.58041856 +0.23300000,0.97986607,11.13080779,61.00432349,1.00444627,11.14068936,0.16154796,1.85509117,10.20448715,0.73525015,3.02460101,5.61091062 +0.23400000,0.99105681,11.19074612,60.72052985,1.01561682,11.20037687,0.16341304,1.86508146,10.15702261,0.73588584,3.02467277,5.64126111 +0.23500000,1.00230721,11.25039922,60.43158052,1.02684693,11.25977805,0.16528806,1.87502422,10.10869567,0.73651181,3.02474355,5.67146740 +0.23600000,1.01361698,11.30976202,60.13748968,1.03813628,11.31888783,0.16717298,1.88491860,10.05950870,0.73712797,3.02481333,5.70152689 +0.23700000,1.02498581,11.36882946,59.83827183,1.04948460,11.37770116,0.16906774,1.89476375,10.00946412,0.73773428,3.02488211,5.73143697 +0.23800000,1.03641340,11.42759648,59.53394183,1.06089159,11.43621302,0.17097230,1.90455884,9.95856442,0.73833067,3.02494988,5.76119504 +0.23900000,1.04789946,11.48605807,59.22451488,1.07235693,11.49441840,0.17288661,1.91430303,9.90681215,0.73891707,3.02501664,5.79079852 +0.24000000,1.05944367,11.54420920,58.91000653,1.08388032,11.55231229,0.17481060,1.92399548,9.85420990,0.73949343,3.02508237,5.82024482 +0.24100000,1.07104571,11.60204487,58.59043265,1.09546145,11.60988970,0.17674424,1.93363536,9.80076032,0.74005968,3.02514708,5.84953136 +0.24200000,1.08270527,11.65956010,58.26580947,1.10709999,11.66714567,0.17868746,1.94322183,9.74646613,0.74061577,3.02521076,5.87865559 +0.24300000,1.09442202,11.71674992,57.93615356,1.11879563,11.72407525,0.18064021,1.95275408,9.69133011,0.74116163,3.02527339,5.90761494 +0.24400000,1.10619563,11.77360938,57.60148182,1.13054803,11.78067350,0.18260244,1.96223126,9.63535508,0.74169720,3.02533497,5.93640687 +0.24500000,1.11802577,11.83013355,57.26181149,1.14235686,11.83693550,0.18457410,1.97165257,9.57854392,0.74222243,3.02539550,5.96502883 +0.24600000,1.12991208,11.88631750,56.91716016,1.15422179,11.89285636,0.18655511,1.98101718,9.52089957,0.74273726,3.02545497,5.99347829 +0.24700000,1.14185424,11.94215635,56.56754574,1.16614246,11.94843118,0.18854544,1.99032428,9.46242503,0.74324163,3.02551338,6.02175273 +0.24800000,1.15385189,11.99764520,56.21298647,1.17811853,12.00365512,0.19054501,1.99957305,9.40312335,0.74373548,3.02557070,6.04984963 +0.24900000,1.16590467,12.05277920,55.85350094,1.19014965,12.05852331,0.19255377,2.00876268,9.34299765,0.74421876,3.02562695,6.07776649 +0.25000000,1.17801222,12.10755349,55.48910807,1.20223546,12.11303093,0.19457167,2.01789236,9.28205107,0.74469141,3.02568211,6.10550082 +0.25100000,1.19017418,12.16196327,55.11982711,1.21437559,12.16717317,0.19659863,2.02696129,9.22028685,0.74515338,3.02573618,6.13305012 +0.25200000,1.20239019,12.21600371,54.74567764,1.22656968,12.22094525,0.19863460,2.03596867,9.15770826,0.74560461,3.02578915,6.16041193 +0.25300000,1.21465986,12.26967004,54.36667955,1.23881736,12.27434239,0.20067951,2.04491370,9.09431862,0.74604505,3.02584102,6.18758377 +0.25400000,1.22698281,12.32295749,53.98285309,1.25111824,12.32735984,0.20273330,2.05379559,9.03012133,0.74647464,3.02589178,6.21456320 +0.25500000,1.23935867,12.37586131,53.59421883,1.26347195,12.37999288,0.20479592,2.06261355,8.96511982,0.74689334,3.02594142,6.24134776 +0.25600000,1.25178705,12.42837677,53.20079765,1.27587810,12.43223679,0.20686729,2.07136678,8.89931758,0.74730109,3.02598994,6.26793503 +0.25700000,1.26426755,12.48049918,52.80261076,1.28833629,12.48408690,0.20894734,2.08005451,8.83271816,0.74769785,3.02603733,6.29432258 +0.25800000,1.27679977,12.53222385,52.39967971,1.30084614,12.53553852,0.21103602,2.08867594,8.76532517,0.74808355,3.02608359,6.32050799 +0.25900000,1.28938332,12.58354612,51.99202635,1.31340723,12.58658703,0.21313325,2.09723032,8.69714226,0.74845816,3.02612870,6.34648887 +0.26000000,1.30201778,12.63446134,51.57967285,1.32601918,12.63722779,0.21523896,2.10571686,8.62817314,0.74882161,3.02617268,6.37226283 +0.26100000,1.31470275,12.68496491,51.16264173,1.33868155,12.68745621,0.21735310,2.11413479,8.55842157,0.74917388,3.02621550,6.39782748 +0.26200000,1.32743780,12.73505222,50.74095580,1.35139395,12.73726770,0.21947558,2.12248335,8.48789138,0.74951489,3.02625717,6.42318046 +0.26300000,1.34022252,12.78471870,50.31463819,1.36415595,12.78665772,0.22160634,2.13076178,8.41658642,0.74984462,3.02629768,6.44831942 +0.26400000,1.35305648,12.83395981,49.88371235,1.37696712,12.83562173,0.22374531,2.13896931,8.34451063,0.75016301,3.02633702,6.47324200 +0.26500000,1.36593925,12.88277103,49.44820204,1.38982705,12.88415522,0.22589242,2.14710519,8.27166797,0.75047002,3.02637519,6.49794589 +0.26600000,1.37887040,12.93114784,49.00813135,1.40273529,12.93225371,0.22804759,2.15516868,8.19806247,0.75076560,3.02641219,6.52242876 +0.26700000,1.39184948,12.97908577,48.56352465,1.41569141,12.97991274,0.23021074,2.16315903,8.12369822,0.75104971,3.02644800,6.54668831 +0.26800000,1.40487606,13.02658036,48.11440665,1.42869497,13.02712787,0.23238182,2.17107549,8.04857934,0.75132231,3.02648263,6.57072224 +0.26900000,1.41794969,13.07362720,47.66080235,1.44174551,13.07389470,0.23456074,2.17891732,7.97271001,0.75158335,3.02651606,6.59452827 +0.27000000,1.43106991,13.12022187,47.20273706,1.45484260,13.12020883,0.23674742,2.18668380,7.89609447,0.75183278,3.02654830,6.61810414 +0.27100000,1.44423627,13.16636000,46.74023641,1.46798578,13.16606590,0.23894180,2.19437419,7.81873701,0.75207058,3.02657934,6.64144759 +0.27200000,1.45744831,13.21203724,46.27332630,1.48117458,13.21146159,0.24114378,2.20198777,7.74064195,0.75229669,3.02660917,6.66455637 +0.27300000,1.47070556,13.25724925,45.80203296,1.49440855,13.25639158,0.24335331,2.20952381,7.66181369,0.75251109,3.02663780,6.68742827 +0.27400000,1.48400755,13.30199174,45.32638292,1.50768721,13.30085158,0.24557029,2.21698160,7.58225666,0.75271372,3.02666521,6.71006107 +0.27500000,1.49735381,13.34626043,44.84640300,1.52101009,13.34483735,0.24779465,2.22436043,7.50197534,0.75290455,3.02669140,6.73245257 +0.27600000,1.51074386,13.39005108,44.36212032,1.53437672,13.38834465,0.25002631,2.23165958,7.42097428,0.75308354,3.02671636,6.75460058 +0.27700000,1.52417722,13.43335946,43.87356229,1.54778662,13.43136927,0.25226519,2.23887837,7.33925806,0.75325066,3.02674010,6.77650293 +0.27800000,1.53765340,13.47618139,43.38075662,1.56123930,13.47390706,0.25451120,2.24601607,7.25683131,0.75340587,3.02676261,6.79815747 +0.27900000,1.55117191,13.51851269,42.88373132,1.57473427,13.51595385,0.25676428,2.25307201,7.17369871,0.75354913,3.02678388,6.81956205 +0.28000000,1.56473226,13.56034924,42.38251467,1.58827104,13.55750552,0.25902432,2.26004550,7.08986501,0.75368041,3.02680391,6.84071454 +0.28100000,1.57833395,13.60168691,41.87713526,1.60184912,13.59855800,0.26129126,2.26693584,7.00533497,0.75379968,3.02682269,6.86161283 +0.28200000,1.59197647,13.64252163,41.36762196,1.61546799,13.63910721,0.26356500,2.27374235,6.92011343,0.75390689,3.02684023,6.88225483 +0.28300000,1.60565932,13.68284936,40.85400391,1.62912716,13.67914911,0.26584546,2.28046437,6.83420526,0.75400203,3.02685652,6.90263845 +0.28400000,1.61938199,13.72266606,40.33631057,1.64282612,13.71867972,0.26813256,2.28710122,6.74761540,0.75408505,3.02687155,6.92276162 +0.28500000,1.63314396,13.76196774,39.81457165,1.65656435,13.75769504,0.27042622,2.29365224,6.66034880,0.75415592,3.02688532,6.94262229 +0.28600000,1.64694471,13.80075044,39.28881714,1.67034134,13.79619113,0.27272633,2.30011676,6.57241048,0.75421462,3.02689782,6.96221842 +0.28700000,1.66078372,13.83901022,38.75907733,1.68415656,13.83416409,0.27503283,2.30649413,6.48380552,0.75426112,3.02690907,6.98154800 +0.28800000,1.67466046,13.87674319,38.22538277,1.69800949,13.87161001,0.27734561,2.31278370,6.39453902,0.75429538,3.02691904,7.00060902 +0.28900000,1.68857441,13.91394546,37.68776430,1.71189960,13.90852505,0.27966460,2.31898483,6.30461614,0.75431738,3.02692773,7.01939948 +0.29000000,1.70252502,13.95061319,37.14625300,1.72582636,13.94490539,0.28198969,2.32509686,6.21404208,0.75432709,3.02693515,7.03791743 +0.29100000,1.71651176,13.98674258,36.60088027,1.73978923,13.98074722,0.28432081,2.33111918,6.12282208,0.75432448,3.02694129,7.05616089 +0.29200000,1.73053409,14.02232984,36.05167774,1.75378767,14.01604679,0.28665786,2.33705114,6.03096145,0.75430953,3.02694615,7.07412794 +0.29300000,1.74459146,14.05737122,35.49867731,1.76782114,14.05080037,0.28900076,2.34289212,5.93846551,0.75428221,3.02694972,7.09181665 +0.29400000,1.75868332,14.09186301,34.94191117,1.78188909,14.08500425,0.29134940,2.34864151,5.84533965,0.75424250,3.02695200,7.10922510 +0.29500000,1.77280913,14.12580153,34.38141175,1.79599097,14.11865478,0.29370370,2.35429868,5.75158930,0.75419038,3.02695298,7.12635143 +0.29600000,1.78696831,14.15918310,33.81721175,1.81012622,14.15174830,0.29606356,2.35986304,5.65721992,0.75412581,3.02695268,7.14319374 +0.29700000,1.80116031,14.19200413,33.24934414,1.82429428,14.18428123,0.29842889,2.36533397,5.56223702,0.75404879,3.02695107,7.15975019 +0.29800000,1.81538457,14.22426102,32.67784211,1.83849459,14.21625000,0.30079960,2.37071088,5.46664617,0.75395929,3.02694816,7.17601894 +0.29900000,1.82964052,14.25595021,32.10273916,1.85272659,14.24765106,0.30317560,2.37599317,5.37045296,0.75385728,3.02694395,7.19199817 +0.30000000,1.84392759,14.28706819,31.52406899,1.86698970,14.27848092,0.30555678,2.38118027,5.27366303,0.75374275,3.02693844,7.20768608 +0.30100000,1.85824520,14.31761146,30.94186559,1.88128336,14.30873610,0.30794305,2.38627158,5.17628207,0.75361568,3.02693161,7.22308089 +0.30200000,1.87259278,14.34757658,30.35616318,1.89560698,14.33841317,0.31033432,2.39126653,5.07831579,0.75347605,3.02692348,7.23818082 +0.30300000,1.88696974,14.37696011,29.76699623,1.90995999,14.36750873,0.31273048,2.39616456,4.97976997,0.75332384,3.02691403,7.25298413 +0.30400000,1.90137550,14.40575869,29.17439946,1.92434180,14.39601941,0.31513144,2.40096509,4.88065041,0.75315904,3.02690327,7.26748909 +0.30500000,1.91580947,14.43396895,28.57840782,1.93875183,14.42394188,0.31753711,2.40566757,4.78096295,0.75298163,3.02689119,7.28169399 +0.30600000,1.93027106,14.46158758,27.97905652,1.95318949,14.45127284,0.31994738,2.41027145,4.68071350,0.75279159,3.02687779,7.29559713 +0.30700000,1.94475967,14.48861130,27.37638099,1.96765418,14.47800902,0.32236216,2.41477618,4.57990796,0.75258892,3.02686307,7.30919685 +0.30800000,1.95927470,14.51503686,26.77041691,1.98214531,14.50414721,0.32478134,2.41918121,4.47855232,0.75237360,3.02684703,7.32249147 +0.30900000,1.97381557,14.54086105,26.16120018,1.99666227,14.52968420,0.32720483,2.42348602,4.37665257,0.75214561,3.02682966,7.33547938 +0.31000000,1.98838165,14.56608070,25.54876696,2.01120448,14.55461684,0.32963252,2.42769008,4.27421476,0.75190494,3.02681097,7.34815895 +0.31100000,2.00297234,14.59069267,24.93315359,2.02577131,14.57894201,0.33206431,2.43179285,4.17124498,0.75165159,3.02679094,7.36052857 +0.31200000,2.01758703,14.61469385,24.31439670,2.04036216,14.60265662,0.33450010,2.43579382,4.06774935,0.75138553,3.02676959,7.37258668 +0.31300000,2.03222511,14.63808117,23.69253308,2.05497641,14.62575763,0.33693980,2.43969249,3.96373401,0.75110677,3.02674691,7.38433171 +0.31400000,2.04688597,14.66085161,23.06759981,2.06961347,14.64824202,0.33938328,2.44348835,3.85920518,0.75081529,3.02672289,7.39576212 +0.31500000,2.06156897,14.68300218,22.43963412,2.08427269,14.67010682,0.34183047,2.44718089,3.75416909,0.75051109,3.02669754,7.40687639 +0.31600000,2.07627350,14.70452992,21.80867353,2.09895347,14.69134909,0.34428124,2.45076963,3.64863200,0.75019416,3.02667086,7.41767301 +0.31700000,2.09099893,14.72543190,21.17475572,2.11365518,14.71196593,0.34673549,2.45425408,3.54260022,0.74986449,3.02664284,7.42815052 +0.31800000,2.10574463,14.74570525,20.53791861,2.12837719,14.73195448,0.34919312,2.45763375,3.43608009,0.74952207,3.02661348,7.43830743 +0.31900000,2.12050998,14.76534712,19.89820032,2.14311888,14.75131191,0.35165403,2.46090818,3.32907799,0.74916691,3.02658278,7.44814233 +0.32000000,2.13529434,14.78435471,19.25563920,2.15787961,14.77003543,0.35411811,2.46407690,3.22160034,0.74879900,3.02655074,7.45765377 +0.32100000,2.15009706,14.80272525,18.61027378,2.17265874,14.78812230,0.35658525,2.46713944,3.11365357,0.74841833,3.02651737,7.46684037 +0.32200000,2.16491752,14.82045600,17.96214282,2.18745564,14.80556980,0.35905534,2.47009535,3.00524417,0.74802490,3.02648265,7.47570073 +0.32300000,2.17975506,14.83754428,17.31128525,2.20226966,14.82237525,0.36152829,2.47294419,2.89637866,0.74761871,3.02644660,7.48423351 +0.32400000,2.19460905,14.85398744,16.65774024,2.21710017,14.83853603,0.36400397,2.47568550,2.78706358,0.74719976,3.02640920,7.49243736 +0.32500000,2.20947883,14.86978285,16.00154711,2.23194652,14.85404953,0.36648229,2.47831886,2.67730551,0.74676806,3.02637045,7.50031096 +0.32600000,2.22436376,14.88492795,15.34274543,2.24680806,14.86891321,0.36896314,2.48084383,2.56711107,0.74632359,3.02633037,7.50785302 +0.32700000,2.23926318,14.89942020,14.68137492,2.26168413,14.88312454,0.37144640,2.48325999,2.45648690,0.74586637,3.02628894,7.51506225 +0.32800000,2.25417644,14.91325711,14.01747549,2.27657409,14.89668104,0.37393196,2.48556693,2.34543968,0.74539639,3.02624617,7.52193740 +0.32900000,2.26910287,14.92643620,13.35108727,2.29147727,14.90958029,0.37641973,2.48776423,2.23397613,0.74491366,3.02620206,7.52847724 +0.33000000,2.28404183,14.93895508,12.68225055,2.30639303,14.92181986,0.37890958,2.48985150,2.12210297,0.74441818,3.02615660,7.53468056 +0.33100000,2.29899264,14.95081136,12.01100581,2.32132069,14.93339742,0.38140141,2.49182834,2.00982698,0.74390996,3.02610980,7.54054616 +0.33200000,2.31395464,14.96200271,11.33739371,2.33625960,14.94431064,0.38389510,2.49369435,1.89715497,0.74338900,3.02606166,7.54607286 +0.33300000,2.32892717,14.97252682,10.66145508,2.35120909,14.95455723,0.38639055,2.49544916,1.78409376,0.74285532,3.02601218,7.55125953 +0.33400000,2.34390955,14.98238145,9.98323093,2.36616849,14.96413497,0.38888764,2.49709238,1.67065021,0.74230891,3.02596135,7.55610503 +0.33500000,2.35890112,14.99156437,9.30276244,2.38113714,14.97304166,0.39138627,2.49862366,1.55683121,0.74174978,3.02590918,7.56060825 +0.33600000,2.37390119,15.00007342,8.62009098,2.39611435,14.98127513,0.39388631,2.50004262,1.44264367,0.74117795,3.02585567,7.56476812 +0.33700000,2.38890910,15.00790646,7.93525807,2.41109946,14.98883328,0.39638766,2.50134891,1.32809455,0.74059342,3.02580081,7.56858357 +0.33800000,2.40392416,15.01506139,7.24830538,2.42609179,14.99571402,0.39889020,2.50254219,1.21319082,0.73999621,3.02574462,7.57205356 +0.33900000,2.41894569,15.02153617,6.55927476,2.44109066,15.00191533,0.40139382,2.50362210,1.09793947,0.73938632,3.02568709,7.57517707 +0.34000000,2.43397302,15.02732878,5.86820824,2.45609540,15.00743522,0.40389841,2.50458833,0.98234753,0.73876377,3.02562821,7.57795311 +0.34100000,2.44900546,15.03243726,5.17514796,2.47110531,15.01227172,0.40640385,2.50544053,0.86642205,0.73812858,3.02556800,7.58038070 +0.34200000,2.46404232,15.03685969,4.48013625,2.48611971,15.01642294,0.40891003,2.50617838,0.75017012,0.73748074,3.02550646,7.58245888 +0.34300000,2.47908291,15.04059417,3.78321559,2.50113792,15.01988701,0.41141683,2.50680158,0.63359883,0.73682029,3.02544358,7.58418674 +0.34400000,2.49412655,15.04363886,3.08442859,2.51615926,15.02266210,0.41392414,2.50730981,0.51671532,0.73614723,3.02537936,7.58556335 +0.34500000,2.50917254,15.04599197,2.38381801,2.53118302,15.02474643,0.41643184,2.50770278,0.39952674,0.73546158,3.02531381,7.58658785 +0.34600000,2.52422020,15.04765174,1.68142679,2.54620852,15.02613826,0.41893982,2.50798019,0.28204027,0.73476336,3.02524692,7.58725936 +0.34700000,2.53926881,15.04861645,0.97729795,2.56123506,15.02683589,0.42144797,2.50814176,0.16426310,0.73405258,3.02517871,7.58757705 +0.34800000,2.55431770,15.04888443,0.27147471,2.57626196,15.02683767,0.42395615,2.50818720,0.04620247,0.73332927,3.02510917,7.58754010 +0.34900000,2.56936615,15.04845404,-0.43599962,2.59128851,15.02614198,0.42646427,2.50811625,-0.07213439,0.73259344,3.02503830,7.58714772 +0.35000000,2.58441347,15.04732371,-1.14508157,2.60631401,15.02474726,0.42897220,2.50792864,-0.19074019,0.73184512,3.02496610,7.58639913 +0.35100000,2.59945897,15.04549189,-1.85572755,2.62133777,15.02265197,0.43147982,2.50762412,-0.30960765,0.73108432,3.02489258,7.58529358 +0.35200000,2.61450192,15.04295708,-2.56789384,2.63635908,15.01985465,0.43398702,2.50720243,-0.42872946,0.73031107,3.02481773,7.58383036 +0.35300000,2.62954164,15.03971781,-3.28153660,2.65137724,15.01635383,0.43649369,2.50666333,-0.54809828,0.72952539,3.02474157,7.58200876 +0.35400000,2.64457741,15.03577268,-3.99661186,2.66639155,15.01214814,0.43899969,2.50600658,-0.66770675,0.72872730,3.02466409,7.57982810 +0.35500000,2.65960853,15.03112032,-4.71307553,2.68140130,15.00723621,0.44150493,2.50523196,-0.78754752,0.72791682,3.02458529,7.57728773 +0.35600000,2.67463429,15.02575940,-5.43088340,2.69640579,15.00161673,0.44400927,2.50433925,-0.90761317,0.72709399,3.02450517,7.57438701 +0.35700000,2.68965398,15.01968863,-6.14999115,2.71140430,14.99528844,0.44651259,2.50332822,-1.02789629,0.72625883,3.02442375,7.57112533 +0.35800000,2.70466689,15.01290678,-6.87035437,2.72639613,14.98825012,0.44901479,2.50219869,-1.14838946,0.72541136,3.02434101,7.56750210 +0.35900000,2.71967230,15.00541265,-7.59192850,2.74138056,14.98050058,0.45151574,2.50095043,-1.26908523,0.72455161,3.02425697,7.56351678 +0.36000000,2.73466951,14.99720509,-8.31466890,2.75635689,14.97203870,0.45401533,2.49958327,-1.38997612,0.72367961,3.02417162,7.55916880 +0.36100000,2.74965779,14.98828300,-9.03853082,2.77132440,14.96286338,0.45651342,2.49809702,-1.51105465,0.72279540,3.02408497,7.55445767 +0.36200000,2.76463644,14.97864530,-9.76346941,2.78628238,14.95297358,0.45900991,2.49649150,-1.63231333,0.72189899,3.02399702,7.54938288 +0.36300000,2.77960473,14.96829099,-10.48943972,2.80123011,14.94236830,0.46150468,2.49476655,-1.75374462,0.72099041,3.02390778,7.54394397 +0.36400000,2.79456195,14.95721908,-11.21639672,2.81616688,14.93104657,0.46399760,2.49292199,-1.87534100,0.72006971,3.02381724,7.53814049 +0.36500000,2.80950737,14.94542865,-11.94429526,2.83109196,14.91900748,0.46648856,2.49095768,-1.99709492,0.71913692,3.02372541,7.53197203 +0.36600000,2.82444029,14.93291881,-12.67309013,2.84600465,14.90625018,0.46897743,2.48887347,-2.11899882,0.71819205,3.02363229,7.52543817 +0.36700000,2.83935998,14.91968873,-13.40273601,2.86090423,14.89277382,0.47146410,2.48666921,-2.24104511,0.71723516,3.02353789,7.51853856 +0.36800000,2.85426572,14.90573761,-14.13318751,2.87578996,14.87857764,0.47394845,2.48434477,-2.36322620,0.71626627,3.02344220,7.51127283 +0.36900000,2.86915678,14.89106469,-14.86439915,2.89066114,14.86366090,0.47643035,2.48190004,-2.48553448,0.71528542,3.02334524,7.50364067 +0.37000000,2.88403245,14.87566928,-15.59632538,2.90551704,14.84802291,0.47890968,2.47933489,-2.60796234,0.71429265,3.02324700,7.49564176 +0.37100000,2.89889200,14.85955071,-16.32892057,2.92035695,14.83166303,0.48138633,2.47664921,-2.73050215,0.71328798,3.02314749,7.48727584 +0.37200000,2.91373471,14.84270836,-17.06213903,2.93518013,14.81458065,0.48386017,2.47384290,-2.85314625,0.71227147,3.02304671,7.47854264 +0.37300000,2.92855985,14.82514167,-17.79593497,2.94998587,14.79677523,0.48633109,2.47091586,-2.97588700,0.71124314,3.02294467,7.46944193 +0.37400000,2.94336670,14.80685012,-18.53026256,2.96477344,14.77824625,0.48879896,2.46786801,-3.09871672,0.71020304,3.02284136,7.45997350 +0.37500000,2.95815454,14.78783321,-19.26507591,2.97954212,14.75899325,0.49126366,2.46469927,-3.22162774,0.70915121,3.02273680,7.45013718 +0.37600000,2.97292263,14.76809053,-20.00032904,2.99429118,14.73901581,0.49372507,2.46140956,-3.34461237,0.70808768,3.02263099,7.43993281 +0.37700000,2.98767025,14.74762167,-20.73597594,3.00901991,14.71831356,0.49618307,2.45799882,-3.46766292,0.70701251,3.02252392,7.42936024 +0.37800000,3.00239668,14.72642630,-21.47197053,3.02372757,14.69688618,0.49863753,2.45446699,-3.59077166,0.70592572,3.02241562,7.41841936 +0.37900000,3.01710118,14.70450412,-22.20826669,3.03841344,14.67473337,0.50108835,2.45081403,-3.71393090,0.70482737,3.02230606,7.40711009 +0.38000000,3.03178303,14.68185488,-22.94481823,3.05307679,14.65185491,0.50353539,2.44703988,-3.83713291,0.70371749,3.02219528,7.39543237 +0.38100000,3.04644151,14.65847837,-23.68157893,3.06771691,14.62825060,0.50597853,2.44314452,-3.96036994,0.70259614,3.02208326,7.38338615 +0.38200000,3.06107589,14.63437442,-24.41850253,3.08233305,14.60392029,0.50841766,2.43912792,-4.08363428,0.70146335,3.02197001,7.37097142 +0.38300000,3.07568543,14.60954293,-25.15554270,3.09692450,14.57886389,0.51085265,2.43499006,-4.20691816,0.70031918,3.02185553,7.35818819 +0.38400000,3.09026941,14.58398383,-25.89265312,3.11149054,14.55308135,0.51328338,2.43073093,-4.33021383,0.69916367,3.02173984,7.34503649 +0.38500000,3.10482711,14.55769709,-26.62978738,3.12603042,14.52657264,0.51570973,2.42635052,-4.45351354,0.69799686,3.02162293,7.33151638 +0.38600000,3.11935779,14.53068273,-27.36689909,3.14054344,14.49933782,0.51813158,2.42184884,-4.57680953,0.69681881,3.02150481,7.31762794 +0.38700000,3.13386073,14.50294082,-28.10394179,3.15502886,14.47137697,0.52054881,2.41722590,-4.70009402,0.69562956,3.02138549,7.30337127 +0.38800000,3.14833521,14.47447148,-28.84086901,3.16948595,14.44269020,0.52296129,2.41248172,-4.82335925,0.69442917,3.02126497,7.28874650 +0.38900000,3.16278048,14.44527486,-29.57763426,3.18391400,14.41327770,0.52536890,2.40761632,-4.94659743,0.69321768,3.02114324,7.27375378 +0.39000000,3.17719583,14.41535118,-30.31419102,3.19831227,14.38313970,0.52777153,2.40262974,-5.06980078,0.69199515,3.02102033,7.25839330 +0.39100000,3.19158053,14.38470068,-31.05049277,3.21268003,14.35227644,0.53016906,2.39752203,-5.19296152,0.69076163,3.02089623,7.24266526 +0.39200000,3.20593386,14.35332366,-31.78649295,3.22701658,14.32068825,0.53256135,2.39229322,-5.31607187,0.68951716,3.02077095,7.22656987 +0.39300000,3.22025508,14.32122046,-32.52214501,3.24132117,14.28837549,0.53494829,2.38694338,-5.43912404,0.68826181,3.02064450,7.21010739 +0.39400000,3.23454347,14.28839148,-33.25740237,3.25559309,14.25533855,0.53732976,2.38147257,-5.56211023,0.68699563,3.02051687,7.19327809 +0.39500000,3.24879831,14.25483715,-33.99221846,3.26983161,14.22157789,0.53970565,2.37588087,-5.68502267,0.68571866,3.02038808,7.17608227 +0.39600000,3.26301886,14.22055795,-34.72654671,3.28403600,14.18709401,0.54207581,2.37016836,-5.80785354,0.68443098,3.02025813,7.15852025 +0.39700000,3.27720442,14.18555441,-35.46034053,3.29820555,14.15188744,0.54444015,2.36433512,-5.93059508,0.68313263,3.02012702,7.14059237 +0.39800000,3.29135425,14.14982710,-36.19355335,3.31233954,14.11595878,0.54679853,2.35838124,-6.05323947,0.68182367,3.01999477,7.12229901 +0.39900000,3.30546762,14.11337664,-36.92613860,3.32643723,14.07930864,0.54915084,2.35230684,-6.17577895,0.68050416,3.01986137,7.10364056 +0.40000000,3.31954383,14.07620370,-37.65804972,3.34049791,14.04193773,0.55149695,2.34611202,-6.29820570,0.67917415,3.01972684,7.08461743 +0.40100000,3.33358213,14.03830899,-38.38924015,3.35452087,14.00384675,0.55383675,2.33979690,-6.42051196,0.67783371,3.01959117,7.06523007 +0.40200000,3.34758183,13.99969327,-39.11966337,3.36850537,13.96503649,0.55617011,2.33336162,-6.54268994,0.67648289,3.01945438,7.04547894 +0.40300000,3.36154218,13.96035733,-39.84927285,3.38245070,13.92550775,0.55849691,2.32680629,-6.66473185,0.67512176,3.01931647,7.02536454 +0.40400000,3.37546249,13.92030204,-40.57802210,3.39635614,13.88526141,0.56081705,2.32013106,-6.78662991,0.67375038,3.01917744,7.00488736 +0.40500000,3.38934202,13.87952827,-41.30586463,3.41022098,13.84429836,0.56313038,2.31333609,-6.90837636,0.67236881,3.01903731,6.98404796 +0.40600000,3.40318005,13.83803699,-42.03275401,3.42404450,13.80261957,0.56543680,2.30642152,-7.02996342,0.67097710,3.01889607,6.96284689 +0.40700000,3.41697588,13.79582916,-42.75864380,3.43782598,13.76022602,0.56773619,2.29938753,-7.15138333,0.66957533,3.01875374,6.94128473 +0.40800000,3.43072879,13.75290582,-43.48348762,3.45156472,13.71711878,0.57002842,2.29223429,-7.27262833,0.66816356,3.01861033,6.91936209 +0.40900000,3.44443806,13.70926806,-44.20723912,3.46525998,13.67329892,0.57231339,2.28496197,-7.39369067,0.66674185,3.01846583,6.89707961 +0.41000000,3.45810297,13.66491699,-44.92985197,3.47891108,13.62876759,0.57459096,2.27757076,-7.51456259,0.66531027,3.01832025,6.87443794 +0.41100000,3.47172283,13.61985372,-45.65135225,3.49251728,13.58352596,0.57686102,2.27006085,-7.63524728,0.66386888,3.01817359,6.85143771 +0.41200000,3.48529691,13.57407941,-46.37167060,3.50607789,13.53757527,0.57912345,2.26243242,-7.75573482,0.66241777,3.01802587,6.82807959 +0.41300000,3.49882450,13.52759541,-47.09062440,3.51959220,13.49091679,0.58137814,2.25468572,-7.87599651,0.66095703,3.01787710,6.80436439 +0.41400000,3.51230490,13.48040306,-47.80820676,3.53305949,13.44355184,0.58362496,2.24682094,-7.99602800,0.65948670,3.01772729,6.78029287 +0.41500000,3.52573741,13.43250375,-48.52440055,3.54647907,13.39548178,0.58586380,2.23883834,-8.11582660,0.65800684,3.01757643,6.75586581 +0.41600000,3.53912131,13.38389888,-49.23917454,3.55985022,13.34670802,0.58809453,2.23073814,-8.23538747,0.65651750,3.01742454,6.73108401 +0.41700000,3.55245590,13.33458988,-49.95248950,3.57317225,13.29723202,0.59031705,2.22252058,-8.35470425,0.65501875,3.01727162,6.70594828 +0.41800000,3.56574047,13.28457823,-50.66430205,3.58644445,13.24705527,0.59253124,2.21418591,-8.47376977,0.65351067,3.01711768,6.68045946 +0.41900000,3.57897434,13.23386547,-51.37456687,3.59966612,13.19617932,0.59473697,2.20573438,-8.59257650,0.65199332,3.01696273,6.65461842 +0.42000000,3.59215679,13.18245317,-52.08323779,3.61283658,13.14460576,0.59693414,2.19716626,-8.71111670,0.65046679,3.01680676,6.62842604 +0.42100000,3.60528714,13.13034294,-52.79026834,3.62595510,13.09233623,0.59912262,2.18848182,-8.82938262,0.64893113,3.01664980,6.60188323 +0.42200000,3.61836467,13.07753646,-53.49561207,3.63902102,13.03937240,0.60130230,2.17968132,-8.94736646,0.64738643,3.01649184,6.57499093 +0.42300000,3.63138871,13.02403543,-54.19922267,3.65203362,12.98571600,0.60347307,2.17076507,-9.06506047,0.64583277,3.01633290,6.54775009 +0.42400000,3.64435855,12.96984161,-54.90105399,3.66499222,12.93136881,0.60563480,2.16173335,-9.18245693,0.64427021,3.01617298,6.52016170 +0.42500000,3.65727351,12.91495680,-55.60106010,3.67789613,12.87633263,0.60778739,2.15258645,-9.29954815,0.64269883,3.01601208,6.49222675 +0.42600000,3.67013289,12.85938285,-56.29919525,3.69074465,12.82060932,0.60993071,2.14332470,-9.41632646,0.64111871,3.01585023,6.46394628 +0.42700000,3.68293601,12.80312165,-56.99541386,3.70353712,12.76420079,0.61206466,2.13394840,-9.53278424,0.63952992,3.01568742,6.43532133 +0.42800000,3.69568219,12.74617514,-57.68967052,3.71627283,12.70710899,0.61418912,2.12445787,-9.64891390,0.63793254,3.01552366,6.40635298 +0.42900000,3.70837073,12.68854530,-58.38191997,3.72895111,12.64933590,0.61630397,2.11485346,-9.76470787,0.63632665,3.01535896,6.37704232 +0.43000000,3.72100097,12.63023414,-59.07211711,3.74157127,12.59088357,0.61840911,2.10513548,-9.88015859,0.63471232,3.01519333,6.34739047 +0.43100000,3.73357221,12.57124376,-59.76021696,3.75413265,12.53175408,0.62050441,2.09530430,-9.99525854,0.63308964,3.01502678,6.31739857 +0.43200000,3.74608379,12.51157625,-60.44617467,3.76663456,12.47194954,0.62258977,2.08536026,-10.11000023,0.63145868,3.01485930,6.28706778 +0.43300000,3.75853502,12.45123378,-61.12994551,3.77907632,12.41147214,0.62466508,2.07530372,-10.22437616,0.62981952,3.01469093,6.25639929 +0.43400000,3.77092524,12.39021855,-61.81148489,3.79145728,12.35032408,0.62673021,2.06513505,-10.33837888,0.62817224,3.01452165,6.22539430 +0.43500000,3.78325377,12.32853280,-62.49074833,3.80377675,12.28850761,0.62878507,2.05485462,-10.45200096,0.62651693,3.01435148,6.19405405 +0.43600000,3.79551995,12.26617884,-63.16769148,3.81603407,12.22602504,0.63082953,2.04446281,-10.56523496,0.62485366,3.01418042,6.16237979 +0.43700000,3.80772311,12.20315898,-63.84227010,3.82822858,12.16287872,0.63286349,2.03396002,-10.67807350,0.62318252,3.01400849,6.13037279 +0.43800000,3.81986258,12.13947562,-64.51444008,3.84035961,12.09907102,0.63488684,2.02334665,-10.79050919,0.62150359,3.01383569,6.09803434 +0.43900000,3.83193772,12.07513116,-65.18415743,3.85242650,12.03460439,0.63689946,2.01262308,-10.90253468,0.61981694,3.01366204,6.06536577 +0.44000000,3.84394784,12.01012808,-65.85137830,3.86442860,11.96948128,0.63890125,2.00178974,-11.01414263,0.61812267,3.01348753,6.03236841 +0.44100000,3.85589231,11.94446888,-66.51605895,3.87636524,11.90370423,0.64089210,1.99084704,-11.12532572,0.61642086,3.01331219,5.99904363 +0.44200000,3.86777047,11.87815611,-67.17815579,3.88823579,11.83727578,0.64287189,1.97979540,-11.23607667,0.61471160,3.01313600,5.96539281 +0.44300000,3.87958166,11.81119237,-67.83762533,3.90003958,11.77019855,0.64484053,1.96863527,-11.34638819,0.61299496,3.01295900,5.93141735 +0.44400000,3.89132524,11.74358029,-68.49442424,3.91177597,11.70247517,0.64679789,1.95736707,-11.45625305,0.61127103,3.01278118,5.89711868 +0.44500000,3.90300056,11.67532255,-69.14850933,3.92344432,11.63410833,0.64874389,1.94599126,-11.56566401,0.60953990,3.01260255,5.86249824 +0.44600000,3.91460699,11.60642187,-69.79983754,3.93504397,11.56510077,0.65067839,1.93450829,-11.67461387,0.60780166,3.01242312,5.82755751 +0.44700000,3.92614387,11.53688102,-70.44836595,3.94657430,11.49545525,0.65260131,1.92291862,-11.78309546,0.60605639,3.01224291,5.79229797 +0.44800000,3.93761057,11.46670280,-71.09405179,3.95803467,11.42517459,0.65451253,1.91122271,-11.89110162,0.60430418,3.01206191,5.75672114 +0.44900000,3.94900646,11.39589006,-71.73685244,3.96942444,11.35426164,0.65641196,1.89942105,-11.99862522,0.60254512,3.01188015,5.72082854 +0.45000000,3.96033091,11.32444569,-72.37672542,3.98074299,11.28271931,0.65829947,1.88751411,-12.10565915,0.60077930,3.01169762,5.68462173 +0.45100000,3.97158328,11.25237262,-73.01362841,3.99198967,11.21055052,0.66017497,1.87550238,-12.21219634,0.59900680,3.01151433,5.64810229 +0.45200000,3.98276295,11.17967383,-73.64751926,4.00316388,11.13775827,0.66203836,1.86338635,-12.31822974,0.59722772,3.01133030,5.61127180 +0.45300000,3.99386930,11.10635233,-74.27835595,4.01426498,11.06434558,0.66388953,1.85116654,-12.42375231,0.59544214,3.01114554,5.57413188 +0.45400000,4.00490172,11.03241117,-74.90609663,4.02529236,10.99031550,0.66572837,1.83884345,-12.52875706,0.59365016,3.01096005,5.53668416 +0.45500000,4.01585957,10.95785345,-75.53069963,4.03624541,10.91567115,0.66755479,1.82641759,-12.63323701,0.59185187,3.01077385,5.49893031 +0.45600000,4.02674225,10.88268232,-76.15212342,4.04712350,10.84041566,0.66936868,1.81388949,-12.73718523,0.59004735,3.01058694,5.46087199 +0.45700000,4.03754915,10.80690095,-76.77032667,4.05792604,10.76455223,0.67116994,1.80125967,-12.84059479,0.58823670,3.01039933,5.42251091 +0.45800000,4.04827966,10.73051256,-77.38526819,4.06865241,10.68808407,0.67295846,1.78852869,-12.94345881,0.58642002,3.01021103,5.38384878 +0.45900000,4.05893318,10.65352040,-77.99690699,4.07930200,10.61101447,0.67473416,1.77569707,-13.04577043,0.58459739,3.01002205,5.34488732 +0.46000000,4.06950911,10.57592779,-78.60520223,4.08987424,10.53334671,0.67649693,1.76276536,-13.14752281,0.58276890,3.00983240,5.30562831 +0.46100000,4.08000685,10.49773806,-79.21011328,4.10036850,10.45508416,0.67824666,1.74973413,-13.24870917,0.58093466,3.00964210,5.26607351 +0.46200000,4.09042581,10.41895460,-79.81159966,4.11078421,10.37623019,0.67998326,1.73660394,-13.34932273,0.57909476,3.00945114,5.22622473 +0.46300000,4.10076539,10.33958081,-80.40962110,4.12112076,10.29678824,0.68170664,1.72337536,-13.44935675,0.57724928,3.00925955,5.18608376 +0.46400000,4.11102501,10.25962017,-81.00413750,4.13137759,10.21676177,0.68341669,1.71004897,-13.54880453,0.57539833,3.00906732,5.14565246 +0.46500000,4.12120408,10.17907616,-81.59510897,4.14155409,10.13615428,0.68511331,1.69662534,-13.64765939,0.57354200,3.00887447,5.10493266 +0.46600000,4.13130203,10.09795234,-82.18249578,4.15164970,10.05496931,0.68679642,1.68310506,-13.74591469,0.57168038,3.00868101,5.06392625 +0.46700000,4.14131829,10.01625228,-82.76625843,4.16166384,9.97321046,0.68846591,1.66948875,-13.84356383,0.56981358,3.00848695,5.02263511 +0.46800000,4.15125227,9.93397959,-83.34635759,4.17159593,9.89088134,0.69012169,1.65577698,-13.94060021,0.56794168,3.00829230,4.98106116 +0.46900000,4.16110340,9.85113792,-83.92275414,4.18144542,9.80798562,0.69176366,1.64197039,-14.03701731,0.56606479,3.00809707,4.93920632 +0.47000000,4.17087114,9.76773098,-84.49540916,4.19121172,9.72452698,0.69339173,1.62806957,-14.13280860,0.56418300,3.00790127,4.89707254 +0.47100000,4.18055490,9.68376249,-85.06428395,4.20089428,9.64050917,0.69500580,1.61407516,-14.22796762,0.56229641,3.00770491,4.85466178 +0.47200000,4.19015413,9.59923623,-85.62934000,4.21049255,9.55593596,0.69660579,1.59998778,-14.32248792,0.56040512,3.00750799,4.81197604 +0.47300000,4.19966829,9.51415600,-86.19053900,4.22000597,9.47081116,0.69819160,1.58580807,-14.41636310,0.55850922,3.00731053,4.76901730 +0.47400000,4.20909682,9.42852564,-86.74784289,4.22943399,9.38513863,0.69976313,1.57153666,-14.50958679,0.55660882,3.00711255,4.72578761 +0.47500000,4.21843916,9.34234904,-87.30121378,4.23877607,9.29892224,0.70132031,1.55717420,-14.60215264,0.55470401,3.00691404,4.68228898 +0.47600000,4.22769479,9.25563011,-87.85061402,4.24803166,9.21216593,0.70286303,1.54272136,-14.69405437,0.55279489,3.00671502,4.63852348 +0.47700000,4.23686317,9.16837282,-88.39600619,4.25720022,9.12487364,0.70439121,1.52817878,-14.78528572,0.55088157,3.00651551,4.59449318 +0.47800000,4.24594375,9.08058116,-88.93735307,4.26628123,9.03704939,0.70590475,1.51354713,-14.87584045,0.54896413,3.00631550,4.55020018 +0.47900000,4.25493601,8.99225915,-89.47461769,4.27527414,8.94869720,0.70740358,1.49882708,-14.96571238,0.54704270,3.00611501,4.50564659 +0.48000000,4.26383942,8.90341087,-90.00776327,4.28417845,8.85982114,0.70888760,1.48401931,-15.05489537,0.54511735,3.00591406,4.46083452 +0.48100000,4.27265346,8.81404041,-90.53675330,4.29299361,8.77042531,0.71035673,1.46912451,-15.14338330,0.54318820,3.00571265,4.41576613 +0.48200000,4.28137761,8.72415191,-91.06155147,4.30171912,8.68051386,0.71181087,1.45414337,-15.23117010,0.54125534,3.00551079,4.37044358 +0.48300000,4.29001136,8.63374955,-91.58212174,4.31035447,8.59009097,0.71324995,1.43907657,-15.31824974,0.53931888,3.00530849,4.32486903 +0.48400000,4.29855420,8.54283753,-92.09842826,4.31889914,8.49916084,0.71467387,1.42392482,-15.40461622,0.53737892,3.00510577,4.27904470 +0.48500000,4.30700562,8.45142010,-92.61043547,4.32735262,8.40772773,0.71608256,1.40868884,-15.49026361,0.53543556,3.00490263,4.23297279 +0.48600000,4.31536512,8.35950154,-93.11810801,4.33571443,8.31579590,0.71747593,1.39336932,-15.57518597,0.53348890,3.00469908,4.18665552 +0.48700000,4.32363221,8.26708616,-93.62141078,4.34398405,8.22336969,0.71885390,1.37796700,-15.65937745,0.53153905,3.00449514,4.14009515 +0.48800000,4.33180638,8.17417830,-94.12030895,4.35216100,8.13045343,0.72021638,1.36248259,-15.74283221,0.52958611,3.00429082,4.09329393 +0.48900000,4.33988717,8.08078236,-94.61476790,4.36024480,8.03705152,0.72156329,1.34691682,-15.82554446,0.52763018,3.00408612,4.04625413 +0.49000000,4.34787407,7.98690275,-95.10475330,4.36823495,7.94316837,0.72289456,1.33127044,-15.90750847,0.52567137,3.00388106,3.99897806 +0.49100000,4.35576661,7.89254391,-95.59023103,4.37613097,7.84880843,0.72421011,1.31554418,-15.98871852,0.52370978,3.00367565,3.95146802 +0.49200000,4.36356432,7.79771033,-96.07116727,4.38393240,7.75397618,0.72550985,1.29973879,-16.06916895,0.52174551,3.00346990,3.90372634 +0.49300000,4.37126673,7.70240652,-96.54752844,4.39163877,7.65867615,0.72679370,1.28385503,-16.14885416,0.51977866,3.00326381,3.85575534 +0.49400000,4.37887337,7.60663704,-97.01928123,4.39924960,7.56291288,0.72806160,1.26789364,-16.22776856,0.51780935,3.00305741,3.80755739 +0.49500000,4.38638377,7.51040647,-97.48639257,4.40676444,7.46669096,0.72931345,1.25185540,-16.30590662,0.51583768,3.00285070,3.75913487 +0.49600000,4.39379749,7.41371941,-97.94882969,4.41418283,7.37001500,0.73054919,1.23574107,-16.38326288,0.51386375,3.00264369,3.71049014 +0.49700000,4.40111407,7.31658052,-98.40656007,4.42150432,7.27288965,0.73176874,1.21955143,-16.45983187,0.51188766,3.00243640,3.66162562 +0.49800000,4.40833307,7.21899448,-98.85955147,4.42872846,7.17531959,0.73297203,1.20328726,-16.53560821,0.50990953,3.00222883,3.61254371 +0.49900000,4.41545403,7.12096599,-99.30777191,4.43585482,7.07730953,0.73415898,1.18694934,-16.61058656,0.50792945,3.00202100,3.56324685 +0.50000000,4.42247653,7.02249979,-99.75118969,4.44288294,6.97886420,0.73532952,1.17053847,-16.68476161,0.50594754,3.00181291,3.51373748 +0.50100000,4.42942695,6.95041973,-73.02070892,4.44985632,6.96789322,0.73648765,1.15813170,-12.61401107,0.53121372,3.00410831,3.47915307 +0.50200000,4.43632346,6.89650558,-54.61774257,4.45681872,6.95690505,0.73763659,1.14894094,-9.34428098,0.54978090,3.00595342,3.45366295 +0.50300000,4.44317965,6.85619099,-40.84069271,4.46377012,6.94589971,0.73877873,1.14213776,-6.91678456,0.56375151,3.00732226,3.43477629 +0.50400000,4.45000575,6.82609953,-30.48416130,4.47071051,6.93487723,0.73991584,1.13711077,-5.11088680,0.57422312,3.00834098,3.42081693 +0.50500000,4.45680939,6.80364093,-22.75168852,4.47763987,6.92383765,0.74104924,1.13339792,-3.77479072,0.58200387,3.00909499,3.41050200 +0.50600000,4.46359621,6.78682385,-17.03653851,4.48455818,6.91278098,0.74217989,1.13064765,-2.79612244,0.58771784,3.00964723,3.40285057 +0.50700000,4.47037033,6.77412033,-12.86930143,4.49146543,6.90170725,0.74330848,1.12859271,-2.08919318,0.59184928,3.01004567,3.39711559 +0.50800000,4.47713470,6.76436155,-9.88613645,4.49836159,6.89061649,0.74443551,1.12703044,-1.58829794,0.59477397,3.01032711,3.39273028 +0.50900000,4.48389135,6.75665754,-7.80455100,4.50524666,6.87950873,0.74556132,1.12580787,-1.24293784,0.59678333,3.01051984,3.38926692 +0.51000000,4.49064169,6.75033506,-6.40498033,4.51212060,6.86838400,0.74668613,1.12481024,-1.01424304,0.59810292,3.01064570,3.38640511 +0.51100000,4.49738658,6.74488920,-5.51693749,4.51898342,6.85724232,0.74781008,1.12395223,-0.87230600,0.59890674,3.01072151,3.38390715 +0.51200000,4.50412652,6.73994522,-5.00849785,4.52583508,6.84608372,0.74893325,1.12317107,-0.79418006,0.59932843,3.01076022,3.38159877 +0.51300000,4.51086175,6.73522864,-4.77813423,4.53267558,6.83490823,0.75005567,1.12242122,-0.76234816,0.59947002,3.01077176,3.37935412 +0.51400000,4.51759229,6.73054156,-4.74824398,4.53950489,6.82371587,0.75117734,1.12167022,-0.76352693,0.59940898,3.01076368,3.37708396 +0.51500000,4.52431804,6.72574420,-4.85995966,4.54632301,6.81250668,0.75229824,1.12089543,-0.78772085,0.59920377,3.01074168,3.37472658 +0.51600000,4.53103878,6.72074052,-5.06898492,4.55312990,6.80128068,0.75341832,1.12008153,-0.82747140,0.59889819,3.01071004,3.37224072 +0.51700000,4.53775425,6.71546707,-5.34227172,4.55992556,6.79003789,0.75453754,1.11921867,-0.87726367,0.59852487,3.01067194,3.36960024 +0.51800000,4.54446413,6.70988453,-5.65539231,4.56670997,6.77877835,0.75565584,1.11830092,-0.93306070,0.59810789,3.01062971,3.36678999 +0.51900000,4.55116810,6.70397121,-5.99048039,4.57348311,6.76750209,0.75677316,1.11732527,-0.99194156,0.59766491,3.01058506,3.36380275 +0.52000000,4.55786582,6.69771818,-6.33463238,4.58024497,6.75620913,0.75788945,1.11629071,-1.05182235,0.59720873,3.01053923,3.36063697 +0.52100000,4.56455694,6.69112554,-6.67867571,4.58699552,6.74489950,0.75900465,1.11519771,-1.11124293,0.59674850,3.01049307,3.35729498 +0.52200000,4.57124114,6.68419970,-7.01622611,4.59373476,6.73357322,0.76011870,1.11404770,-1.16920500,0.59629066,3.01044721,3.35378178 +0.52300000,4.57791810,6.67695132,-7.34297018,4.60046267,6.72223033,0.76123154,1.11284276,-1.22504984,0.59583961,3.01040205,3.35010412 +0.52400000,4.58458749,6.66939383,-7.65612196,4.60717922,6.71087086,0.76234313,1.11158538,-1.27836654,0.59539830,3.01035787,3.34626978 +0.52500000,4.59124903,6.66154228,-7.95401311,4.61388440,6.69949483,0.76345341,1.11027827,-1.32892335,0.59496854,3.01031482,3.34228713 +0.52600000,4.59790244,6.65341258,-8.23578508,4.62057820,6.68810226,0.76456233,1.10892425,-1.37661666,0.59455139,3.01027300,3.33816473 +0.52700000,4.60454747,6.64502094,-8.50115870,4.62726060,6.67669320,0.76566986,1.10752615,-1.42143312,0.59414731,3.01023245,3.33391115 +0.52800000,4.61118385,6.63638340,-8.75026258,4.63393158,6.66526766,0.76677594,1.10608675,-1.46342175,0.59375636,3.01019316,3.32953477 +0.52900000,4.61781136,6.62751562,-8.98350574,4.64059113,6.65382567,0.76788055,1.10460874,-1.50267341,0.59337832,3.01015511,3.32504365 +0.53000000,4.62442980,6.61843267,-9.20148361,4.64723923,6.64236727,0.76898365,1.10309471,-1.53930593,0.59301278,3.01011825,3.32044550 +0.53100000,4.63103895,6.60914891,-9.40490917,4.65387586,6.63089247,0.77008519,1.10154708,-1.57345321,0.59265920,3.01008252,3.31574762 +0.53200000,4.63763862,6.59967794,-9.59456279,4.66050101,6.61940132,0.77118516,1.09996818,-1.60525747,0.59231696,3.01004788,3.31095687 +0.53300000,4.64422866,6.59003256,-9.77125615,4.66711466,6.60789383,0.77228352,1.09836015,-1.63486379,0.59198543,3.01001424,3.30607969 +0.53400000,4.65080888,6.58022475,-9.93580661,4.67371679,6.59637004,0.77338025,1.09672502,-1.66241623,0.59166392,3.00998155,3.30112209 +0.53500000,4.65737915,6.57026570,-10.08901931,4.68030739,6.58482997,0.77447531,1.09506468,-1.68805522,0.59135177,3.00994975,3.29608965 +0.53600000,4.66393931,6.56016582,-10.23167500,4.68688644,6.57327366,0.77556869,1.09338086,-1.71191586,0.59104835,3.00991876,3.29098758 +0.53700000,4.67048925,6.54993482,-10.36452215,4.69345393,6.56170112,0.77666037,1.09167520,-1.73412683,0.59075301,3.00988854,3.28582068 +0.53800000,4.67702883,6.53958166,-10.48827207,4.70000984,6.55011240,0.77775032,1.08994920,-1.75480981,0.59046516,3.00985901,3.28059342 +0.53900000,4.68355794,6.52911465,-10.60359627,4.70655415,6.53850752,0.77883852,1.08820424,-1.77407917,0.59018423,3.00983014,3.27530993 +0.54000000,4.69007649,6.51854151,-10.71112545,4.71308685,6.52688650,0.77992496,1.08644162,-1.79204198,0.58990970,3.00980186,3.26997400 +0.54100000,4.69658435,6.50786933,-10.81144957,4.71960792,6.51524937,0.78100963,1.08466251,-1.80879809,0.58964106,3.00977414,3.26458917 +0.54200000,4.70308146,6.49710469,-10.90511874,4.72611734,6.50359617,0.78209249,1.08286802,-1.82444039,0.58937785,3.00974692,3.25915869 +0.54300000,4.70956771,6.48625366,-10.99264462,4.73261511,6.49192693,0.78317355,1.08105915,-1.83905511,0.58911963,3.00972016,3.25368553 +0.54400000,4.71604304,6.47532182,-11.07450210,4.73910119,6.48024166,0.78425279,1.07923684,-1.85272213,0.58886600,3.00969384,3.24817248 +0.54500000,4.72250735,6.46431433,-11.15113128,4.74557559,6.46854041,0.78533019,1.07740195,-1.86551540,0.58861659,3.00966790,3.24262208 +0.54600000,4.72896059,6.45323597,-11.22293946,4.75203827,6.45682320,0.78640575,1.07555527,-1.87750326,0.58837105,3.00964233,3.23703666 +0.54700000,4.73540268,6.44209111,-11.29030317,4.75848923,6.44509005,0.78747944,1.07369752,-1.88874883,0.58812905,3.00961708,3.23141841 +0.54800000,4.74183356,6.43088379,-11.35357023,4.76492844,6.43334100,0.78855127,1.07182939,-1.89931036,0.58789031,3.00959214,3.22576932 +0.54900000,4.74825318,6.41961775,-11.41306170,4.77135590,6.42157608,0.78962123,1.06995149,-1.90924160,0.58765455,3.00956747,3.22009121 +0.55000000,4.75466147,6.40829642,-11.46907378,4.77777159,6.40979532,0.79068929,1.06806439,-1.91859208,0.58742152,3.00954306,3.21438578 +0.55100000,4.76105840,6.39692297,-11.52187960,4.78417549,6.39799873,0.79175546,1.06616863,-1.92740747,0.58719098,3.00951888,3.20865460 +0.55200000,4.76744390,6.38550030,-11.57173094,4.79056758,6.38618637,0.79281972,1.06426467,-1.93572986,0.58696273,3.00949490,3.20289910 +0.55300000,4.77381793,6.37403112,-11.61885982,4.79694786,6.37435824,0.79388208,1.06235298,-1.94359800,0.58673655,3.00947112,3.19712061 +0.55400000,4.78018045,6.36251789,-11.66347999,4.80331629,6.36251439,0.79494251,1.06043396,-1.95104758,0.58651228,3.00944751,3.19132034 +0.55500000,4.78653141,6.35096289,-11.70578835,4.80967288,6.35065483,0.79600102,1.05850799,-1.95811150,0.58628975,3.00942406,3.18549942 +0.55600000,4.79287078,6.33936824,-11.74596625,4.81601760,6.33877961,0.79705759,1.05657542,-1.96482002,0.58606879,3.00940076,3.17965888 +0.55700000,4.79919851,6.32773586,-11.78418067,4.82235043,6.32688875,0.79811223,1.05463658,-1.97120101,0.58584927,3.00937759,3.17379969 +0.55800000,4.80551458,6.31606755,-11.82058537,4.82867137,6.31498228,0.79916492,1.05269176,-1.97728013,0.58563106,3.00935454,3.16792272 +0.55900000,4.81181895,6.30436495,-11.85532190,4.83498039,6.30306022,0.80021566,1.05074123,-1.98308100,0.58541404,3.00933159,3.16202878 +0.56000000,4.81811158,6.29262957,-11.88852059,4.84127749,6.29112261,0.80126445,1.04878525,-1.98862537,0.58519810,3.00930875,3.15611862 +0.56100000,4.82439244,6.28086283,-11.92030140,4.84756263,6.27916948,0.80231127,1.04682405,-1.99393324,0.58498312,3.00928599,3.15019293 +0.56200000,4.83066150,6.26906600,-11.95077477,4.85383582,6.26720086,0.80335613,1.04485784,-1.99902305,0.58476903,3.00926331,3.14425235 +0.56300000,4.83691874,6.25724029,-11.98004234,4.86009703,6.25521677,0.80439902,1.04288682,-2.00391175,0.58455574,3.00924070,3.13829746 +0.56400000,4.84316413,6.24538678,-12.00819769,4.86634625,6.24321725,0.80543993,1.04091118,-2.00861494,0.58434316,3.00921815,3.13232881 +0.56500000,4.84939764,6.23350649,-12.03532693,4.87258346,6.23120233,0.80647886,1.03893108,-2.01314699,0.58413122,3.00919567,3.12634689 +0.56600000,4.85561924,6.22160036,-12.06150933,4.87880865,6.21917203,0.80751581,1.03694667,-2.01752112,0.58391985,3.00917323,3.12035217 +0.56700000,4.86182891,6.20966924,-12.08681784,4.88502180,6.20712638,0.80855076,1.03495811,-2.02174950,0.58370900,3.00915084,3.11434507 +0.56800000,4.86802662,6.19771394,-12.11131961,4.89122290,6.19506542,0.80958373,1.03296552,-2.02584333,0.58349861,3.00912848,3.10832598 +0.56900000,4.87421236,6.18573519,-12.13507643,4.89741192,6.18298918,0.81061470,1.03096903,-2.02981291,0.58328861,3.00910616,3.10229527 +0.57000000,4.88038609,6.17373366,-12.15814520,4.90358887,6.17089767,0.81164367,1.02896875,-2.03366773,0.58307898,3.00908388,3.09625327 +0.57100000,4.88654780,6.16171000,-12.18057824,4.90975371,6.15879094,0.81267063,1.02696478,-2.03741652,0.58286966,3.00906161,3.09020028 +0.57200000,4.89269747,6.14966476,-12.20242374,4.91590645,6.14666902,0.81369559,1.02495721,-2.04106731,0.58266060,3.00903937,3.08413661 +0.57300000,4.89883506,6.13759850,-12.22372604,4.92204705,6.13453193,0.81471854,1.02294615,-2.04462750,0.58245179,3.00901715,3.07806251 +0.57400000,4.90496058,6.12551171,-12.24452593,4.92817550,6.12237970,0.81573947,1.02093166,-2.04810389,0.58224317,3.00899495,3.07197822 +0.57500000,4.91107398,6.11340485,-12.26486097,4.93429180,6.11021237,0.81675838,1.01891384,-2.05150275,0.58203472,3.00897275,3.06588398 +0.57600000,4.91717526,6.10127833,-12.28476572,4.94039592,6.09802996,0.81777527,1.01689274,-2.05482983,0.58182641,3.00895057,3.05977999 +0.57700000,4.92326439,6.08913256,-12.30427198,4.94648786,6.08583250,0.81879014,1.01486843,-2.05809045,0.58161821,3.00892839,3.05366644 +0.57800000,4.92934136,6.07696791,-12.32340902,4.95256758,6.07362003,0.81980298,1.01284098,-2.06128948,0.58141009,3.00890622,3.04754353 +0.57900000,4.93540614,6.06478469,-12.34220379,4.95863509,6.06139257,0.82081379,1.01081044,-2.06443141,0.58120205,3.00888406,3.04141141 +0.58000000,4.94145873,6.05258324,-12.36068106,4.96469036,6.04915015,0.82182257,1.00877686,-2.06752038,0.58099404,3.00886189,3.03527023 +0.58100000,4.94749909,6.04036384,-12.37886365,4.97073339,6.03689281,0.82282931,1.00674028,-2.07056020,0.58078607,3.00883972,3.02912016 +0.58200000,4.95352722,6.02812677,-12.39677254,4.97676414,6.02462058,0.82383401,1.00470077,-2.07355436,0.58057810,3.00881755,3.02296130 +0.58300000,4.95954309,6.01587226,-12.41442707,4.98278262,6.01233348,0.82483667,1.00265835,-2.07650608,0.58037012,3.00879538,3.01679380 +0.58400000,4.96554669,6.00360056,-12.43184500,4.98878881,6.00003154,0.82583728,1.00061306,-2.07941833,0.58016212,3.00877320,3.01061777 +0.58500000,4.97153800,5.99131189,-12.44904268,4.99478268,5.98771480,0.82683585,0.99856495,-2.08229384,0.57995408,3.00875101,3.00443331 +0.58600000,4.97751701,5.97900644,-12.46603519,5.00076423,5.97538329,0.82783236,0.99651405,-2.08513512,0.57974600,3.00872882,2.99824053 +0.58700000,4.98348369,5.96668441,-12.48283635,5.00673344,5.96303703,0.82882682,0.99446038,-2.08794447,0.57953786,3.00870661,2.99203951 +0.58800000,4.98943804,5.95434597,-12.49945893,5.01269030,5.95067606,0.82981923,0.99240397,-2.09072402,0.57932964,3.00868440,2.98583035 +0.58900000,4.99538003,5.94199128,-12.51591465,5.01863479,5.93830040,0.83080957,0.99034486,-2.09347574,0.57912135,3.00866218,2.97961313 +0.59000000,5.00130965,5.92962051,-12.53221429,5.02456690,5.92591010,0.83179785,0.98828307,-2.09620141,0.57891297,3.00863995,2.97338792 +0.59100000,5.00722688,5.91723379,-12.54836779,5.03048661,5.91350517,0.83278407,0.98621862,-2.09890269,0.57870449,3.00861770,2.96715480 +0.59200000,5.01313172,5.90483126,-12.56438427,5.03639390,5.90108565,0.83376822,0.98415154,-2.10158111,0.57849590,3.00859544,2.96091383 +0.59300000,5.01902413,5.89241304,-12.58027216,5.04228877,5.88865157,0.83475031,0.98208184,-2.10423807,0.57828721,3.00857317,2.95466508 +0.59400000,5.02490411,5.87997927,-12.59603918,5.04817120,5.87620296,0.83573032,0.98000955,-2.10687486,0.57807840,3.00855088,2.94840860 +0.59500000,5.03077164,5.86753004,-12.61169244,5.05404117,5.86373986,0.83670825,0.97793469,-2.10949266,0.57786947,3.00852858,2.94214446 +0.59600000,5.03662670,5.85506546,-12.62723848,5.05989868,5.85126228,0.83768411,0.97585727,-2.11209256,0.57766041,3.00850627,2.93587270 +0.59700000,5.04246929,5.84258564,-12.64268334,5.06574369,5.83877027,0.83865789,0.97377730,-2.11467558,0.57745122,3.00848394,2.92959337 +0.59800000,5.04829938,5.83009067,-12.65803254,5.07157621,5.82626385,0.83962958,0.97169482,-2.11724263,0.57724189,3.00846159,2.92330653 +0.59900000,5.05411696,5.81758064,-12.67329119,5.07739622,5.81374305,0.84059919,0.96960982,-2.11979456,0.57703242,3.00843923,2.91701221 +0.60000000,5.05992202,5.80505563,-12.68846397,5.08320369,5.80120791,0.84156671,0.96752232,-2.12233215,0.57682281,3.00841685,2.91071046 +0.60100000,5.06571453,5.79251572,-12.70355518,5.08899863,5.78865846,0.84253214,0.96543235,-2.12485613,0.57661305,3.00839445,2.90440132 +0.60200000,5.07149449,5.77996099,-12.71856880,5.09478100,5.77609472,0.84349548,0.96333990,-2.12736716,0.57640315,3.00837204,2.89808483 +0.60300000,5.07726188,5.76739151,-12.73350847,5.10055081,5.76351673,0.84445673,0.96124500,-2.12986583,0.57619309,3.00834961,2.89176102 +0.60400000,5.08301669,5.75480736,-12.74837754,5.10630803,5.75092452,0.84541588,0.95914765,-2.13235272,0.57598287,3.00832716,2.88542993 +0.60500000,5.08875890,5.74220860,-12.76317909,5.11205266,5.73831812,0.84637292,0.95704787,-2.13482833,0.57577250,3.00830469,2.87909159 +0.60600000,5.09448850,5.72959529,-12.77791597,5.11778466,5.72569756,0.84732787,0.95494566,-2.13729314,0.57556197,3.00828221,2.87274603 +0.60700000,5.10020546,5.71696749,-12.79259077,5.12350405,5.71306288,0.84828071,0.95284103,-2.13974758,0.57535128,3.00825971,2.86639329 +0.60800000,5.10590979,5.70432526,-12.80720590,5.12921079,5.70041410,0.84923145,0.95073401,-2.14219205,0.57514043,3.00823719,2.86003340 +0.60900000,5.11160146,5.69166867,-12.82176355,5.13490487,5.68775125,0.85018007,0.94862459,-2.14462693,0.57492941,3.00821465,2.85366638 +0.61000000,5.11728046,5.67899776,-12.83626575,5.14058628,5.67507437,0.85112658,0.94651278,-2.14705254,0.57471823,3.00819210,2.84729226 +0.61100000,5.12294677,5.66631259,-12.85071436,5.14625501,5.66238348,0.85207098,0.94439859,-2.14946919,0.57450689,3.00816952,2.84091106 +0.61200000,5.12860038,5.65361321,-12.86511108,5.15191105,5.64967863,0.85301326,0.94228204,-2.15187718,0.57429537,3.00814693,2.83452282 +0.61300000,5.13424128,5.64089966,-12.87945750,5.15755437,5.63695983,0.85395343,0.94016313,-2.15427677,0.57408369,3.00812432,2.82812756 +0.61400000,5.13986945,5.62817200,-12.89375506,5.16318496,5.62422713,0.85489147,0.93804186,-2.15666819,0.57387185,3.00810169,2.82172530 +0.61500000,5.14548488,5.61543028,-12.90800507,5.16880282,5.61148054,0.85582739,0.93591825,-2.15905166,0.57365983,3.00807904,2.81531607 +0.61600000,5.15108756,5.60267454,-12.92220876,5.17440792,5.59872012,0.85676118,0.93379230,-2.16142740,0.57344764,3.00805637,2.80889988 +0.61700000,5.15667746,5.58990481,-12.93636724,5.18000025,5.58594588,0.85769284,0.93166403,-2.16379558,0.57323528,3.00803368,2.80247677 +0.61800000,5.16225458,5.57712116,-12.95048154,5.18557980,5.57315785,0.85862238,0.92953343,-2.16615637,0.57302276,3.00801098,2.79604676 +0.61900000,5.16781891,5.56432362,-12.96455260,5.19114656,5.56035608,0.85954978,0.92740052,-2.16850994,0.57281006,3.00798825,2.78960986 +0.62000000,5.17337042,5.55151223,-12.97858129,5.19670051,5.54754058,0.86047504,0.92526529,-2.17085643,0.57259719,3.00796551,2.78316609 +0.62100000,5.17890911,5.53868703,-12.99256839,5.20224164,5.53471140,0.86139817,0.92312777,-2.17319596,0.57238415,3.00794275,2.77671549 +0.62200000,5.18443495,5.52584806,-13.00651464,5.20776993,5.52186856,0.86231916,0.92098796,-2.17552867,0.57217094,3.00791997,2.77025806 +0.62300000,5.18994795,5.51299537,-13.02042069,5.21328537,5.50901209,0.86323800,0.91884585,-2.17785466,0.57195756,3.00789717,2.76379383 +0.62400000,5.19544808,5.50012899,-13.03428717,5.21878795,5.49614204,0.86415471,0.91670147,-2.18017403,0.57174401,3.00787435,2.75732282 +0.62500000,5.20093533,5.48724896,-13.04811463,5.22427765,5.48325842,0.86506926,0.91455480,-2.18248688,0.57153028,3.00785151,2.75084505 +0.62600000,5.20640968,5.47435532,-13.06190358,5.22975446,5.47036127,0.86598167,0.91240588,-2.18479329,0.57131639,3.00782865,2.74436054 +0.62700000,5.21187113,5.46144811,-13.07565449,5.23521837,5.45745062,0.86689192,0.91025468,-2.18709334,0.57110232,3.00780578,2.73786930 +0.62800000,5.21731966,5.44852736,-13.08936779,5.24066936,5.44452651,0.86780002,0.90810124,-2.18938710,0.57088808,3.00778288,2.73137136 +0.62900000,5.22275525,5.43559311,-13.10304387,5.24610742,5.43158897,0.86870597,0.90594554,-2.19167464,0.57067367,3.00775997,2.72486673 +0.63000000,5.22817790,5.42264539,-13.11668308,5.25153253,5.41863802,0.86960976,0.90378760,-2.19395602,0.57045910,3.00773704,2.71835543 +0.63100000,5.23358758,5.40968425,-13.13028577,5.25694469,5.40567370,0.87051138,0.90162742,-2.19623129,0.57024435,3.00771409,2.71183749 +0.63200000,5.23898429,5.39670972,-13.14385222,5.26234388,5.39269605,0.87141085,0.89946501,-2.19850050,0.57002943,3.00769112,2.70531291 +0.63300000,5.24436801,5.38372183,-13.15738271,5.26773008,5.37970509,0.87230815,0.89730037,-2.20076369,0.56981434,3.00766813,2.69878172 +0.63400000,5.24973873,5.37072062,-13.17087748,5.27310328,5.36670085,0.87320328,0.89513351,-2.20302091,0.56959908,3.00764512,2.69224394 +0.63500000,5.25509644,5.35770612,-13.18433676,5.27846347,5.35368338,0.87409625,0.89296444,-2.20527220,0.56938365,3.00762210,2.68569958 +0.63600000,5.26044112,5.34467837,-13.19776076,5.28381064,5.34065269,0.87498704,0.89079316,-2.20751759,0.56916805,3.00759905,2.67914866 +0.63700000,5.26577276,5.33163741,-13.21114966,5.28914478,5.32760883,0.87587566,0.88861968,-2.20975711,0.56895229,3.00757599,2.67259120 +0.63800000,5.27109134,5.31858326,-13.22450363,5.29446586,5.31455182,0.87676210,0.88644400,-2.21199079,0.56873636,3.00755291,2.66602722 +0.63900000,5.27639685,5.30551597,-13.23782282,5.29977387,5.30148170,0.87764637,0.88426612,-2.21421865,0.56852026,3.00752981,2.65945673 +0.64000000,5.28168929,5.29243556,-13.25110738,5.30506882,5.28839849,0.87852845,0.88208607,-2.21644072,0.56830399,3.00750669,2.65287975 +0.64100000,5.28696863,5.27934208,-13.26435741,5.31035067,5.27530224,0.87940836,0.87990383,-2.21865701,0.56808755,3.00748356,2.64629630 +0.64200000,5.29223487,5.26623554,-13.27757305,5.31561942,5.26219297,0.88028608,0.87771942,-2.22086755,0.56787095,3.00746040,2.63970640 +0.64300000,5.29748798,5.25311600,-13.29075439,5.32087505,5.24907072,0.88116161,0.87553284,-2.22307236,0.56765418,3.00743723,2.63311006 +0.64400000,5.30272797,5.23998348,-13.30390151,5.32611755,5.23593552,0.88203496,0.87334410,-2.22527145,0.56743725,3.00741404,2.62650730 +0.64500000,5.30795481,5.22683802,-13.31701450,5.33134692,5.22278740,0.88290611,0.87115320,-2.22746482,0.56722015,3.00739083,2.61989813 +0.64600000,5.31316848,5.21367964,-13.33009344,5.33656312,5.20962639,0.88377507,0.86896014,-2.22965250,0.56700288,3.00736760,2.61328258 +0.64700000,5.31836899,5.20050839,-13.34313837,5.34176616,5.19645252,0.88464183,0.86676495,-2.23183449,0.56678545,3.00734436,2.60666067 +0.64800000,5.32355632,5.18732429,-13.35614937,5.34695602,5.18326584,0.88550640,0.86456761,-2.23401081,0.56656786,3.00732109,2.60003240 +0.64900000,5.32873044,5.17412739,-13.36912647,5.35213269,5.17006636,0.88636877,0.86236813,-2.23618146,0.56635011,3.00729781,2.59339780 +0.65000000,5.33389136,5.16091770,-13.38206973,5.35729615,5.15685413,0.88722894,0.86016653,-2.23834645,0.56613219,3.00727451,2.58675688 +0.65100000,5.33903906,5.14769528,-13.39497917,5.36244640,5.14362918,0.88808690,0.85796280,-2.24050578,0.56591410,3.00725119,2.58010966 +0.65200000,5.34417352,5.13446014,-13.40785484,5.36758341,5.13039153,0.88894266,0.85575696,-2.24265946,0.56569586,3.00722786,2.57345616 +0.65300000,5.34929473,5.12121233,-13.42069674,5.37270717,5.11714123,0.88979620,0.85354900,-2.24480750,0.56547746,3.00720451,2.56679640 +0.65400000,5.35440268,5.10795188,-13.43350492,5.37781769,5.10387830,0.89064754,0.85133893,-2.24694990,0.56525889,3.00718113,2.56013038 +0.65500000,5.35949736,5.09467881,-13.44627938,5.38291493,5.09060277,0.89149667,0.84912677,-2.24908665,0.56504016,3.00715775,2.55345813 +0.65600000,5.36457875,5.08139317,-13.45902014,5.38799889,5.07731469,0.89234358,0.84691250,-2.25121777,0.56482128,3.00713434,2.54677967 +0.65700000,5.36964685,5.06809499,-13.47172721,5.39306955,5.06401407,0.89318828,0.84469615,-2.25334326,0.56460223,3.00711092,2.54009501 +0.65800000,5.37470163,5.05478429,-13.48440059,5.39812691,5.05070097,0.89403076,0.84247771,-2.25546311,0.56438302,3.00708748,2.53340417 +0.65900000,5.37974309,5.04146112,-13.49704029,5.40317095,5.03737540,0.89487101,0.84025719,-2.25757732,0.56416366,3.00706402,2.52670717 +0.66000000,5.38477122,5.02812551,-13.50964632,5.40820166,5.02403740,0.89570905,0.83803460,-2.25968591,0.56394414,3.00704054,2.52000402 +0.66100000,5.38978600,5.01477748,-13.52221866,5.41321902,5.01068700,0.89654486,0.83580994,-2.26178886,0.56372446,3.00701705,2.51329474 +0.66200000,5.39478741,5.00141708,-13.53475732,5.41822303,4.99732424,0.89737844,0.83358322,-2.26388617,0.56350462,3.00699354,2.50657934 +0.66300000,5.39977546,4.98804433,-13.54726230,5.42321366,4.98394915,0.89820980,0.83135443,-2.26597785,0.56328463,3.00697001,2.49985785 +0.66400000,5.40475012,4.97465927,-13.55973357,5.42819092,4.97056177,0.89903892,0.82912360,-2.26806390,0.56306448,3.00694646,2.49313028 +0.66500000,5.40971138,4.96126194,-13.57217114,5.43315478,4.95716212,0.89986581,0.82689072,-2.27014431,0.56284418,3.00692290,2.48639665 +0.66600000,5.41465923,4.94785236,-13.58457500,5.43810524,4.94375023,0.90069047,0.82465580,-2.27221908,0.56262372,3.00689932,2.47965697 +0.66700000,5.41959366,4.93443057,-13.59694512,5.44304228,4.93032615,0.90151288,0.82241885,-2.27428820,0.56240310,3.00687573,2.47291127 +0.66800000,5.42451466,4.92099660,-13.60928151,5.44796589,4.91688991,0.90233306,0.82017986,-2.27635169,0.56218234,3.00685211,2.46615955 +0.66900000,5.42942221,4.90755049,-13.62158413,5.45287606,4.90344153,0.90315100,0.81793885,-2.27840952,0.56196141,3.00682848,2.45940185 +0.67000000,5.43431630,4.89409227,-13.63385298,5.45777277,4.88998105,0.90396670,0.81569583,-2.28046171,0.56174034,3.00680484,2.45263816 +0.67100000,5.43919692,4.88062197,-13.64608804,5.46265601,4.87650851,0.90478015,0.81345079,-2.28250825,0.56151912,3.00678117,2.44586851 +0.67200000,5.44406406,4.86713963,-13.65828929,5.46752578,4.86302394,0.90559135,0.81120374,-2.28454913,0.56129774,3.00675749,2.43909292 +0.67300000,5.44891771,4.85364527,-13.67045671,5.47238206,4.84952737,0.90640031,0.80895469,-2.28658435,0.56107621,3.00673380,2.43231141 +0.67400000,5.45375785,4.84013894,-13.68259028,5.47722483,4.83601883,0.90720701,0.80670364,-2.28861391,0.56085453,3.00671008,2.42552398 +0.67500000,5.45858447,4.82662067,-13.69468998,5.48205409,4.82249836,0.90801146,0.80445061,-2.29063781,0.56063270,3.00668635,2.41873067 +0.67600000,5.46339756,4.81309048,-13.70675580,5.48686983,4.80896599,0.90881366,0.80219559,-2.29265603,0.56041072,3.00666260,2.41193147 +0.67700000,5.46819711,4.79954842,-13.71878770,5.49167202,4.79542175,0.90961360,0.79993859,-2.29466859,0.56018860,3.00663884,2.40512643 +0.67800000,5.47298310,4.78599451,-13.73078567,5.49646066,4.78186568,0.91041128,0.79767961,-2.29667547,0.55996632,3.00661506,2.39831554 +0.67900000,5.47775553,4.77242880,-13.74274968,5.50123575,4.76829781,0.91120670,0.79541867,-2.29867667,0.55974390,3.00659127,2.39149882 +0.68000000,5.48251438,4.75885131,-13.75467970,5.50599726,4.75471818,0.91199985,0.79315576,-2.30067218,0.55952132,3.00656745,2.38467630 +0.68100000,5.48725964,4.74526207,-13.76657573,5.51074518,4.74112682,0.91279074,0.79089090,-2.30266201,0.55929861,3.00654363,2.37784799 +0.68200000,5.49199131,4.73166113,-13.77843773,5.51547951,4.72752376,0.91357937,0.78862409,-2.30464614,0.55907574,3.00651978,2.37101391 +0.68300000,5.49670935,4.71804851,-13.79026567,5.52020022,4.71390903,0.91436572,0.78635532,-2.30662459,0.55885273,3.00649592,2.36417408 +0.68400000,5.50141378,4.70442424,-13.80205953,5.52490732,4.70028267,0.91514981,0.78408462,-2.30859733,0.55862958,3.00647204,2.35732850 +0.68500000,5.50610457,4.69078837,-13.81381930,5.52960079,4.68664472,0.91593162,0.78181199,-2.31056436,0.55840628,3.00644815,2.35047721 +0.68600000,5.51078171,4.67714093,-13.82554493,5.53428061,4.67299520,0.91671116,0.77953742,-2.31252569,0.55818283,3.00642424,2.34362021 +0.68700000,5.51544519,4.66348194,-13.83723641,5.53894677,4.65933415,0.91748842,0.77726094,-2.31448130,0.55795924,3.00640032,2.33675752 +0.68800000,5.52009500,4.64981145,-13.84889372,5.54359927,4.64566160,0.91826340,0.77498253,-2.31643120,0.55773551,3.00637638,2.32988917 +0.68900000,5.52473113,4.63612949,-13.86051681,5.54823809,4.63197759,0.91903610,0.77270221,-2.31837538,0.55751164,3.00635242,2.32301516 +0.69000000,5.52935357,4.62243608,-13.87210568,5.55286322,4.61828215,0.91980652,0.77041999,-2.32031383,0.55728763,3.00632845,2.31613552 +0.69100000,5.53396230,4.60873127,-13.88366029,5.55747465,4.60457532,0.92057466,0.76813586,-2.32224655,0.55706347,3.00630446,2.30925026 +0.69200000,5.53855731,4.59501509,-13.89518062,5.56207237,4.59085713,0.92134051,0.76584984,-2.32417354,0.55683917,3.00628046,2.30235940 +0.69300000,5.54313860,4.58128757,-13.90666663,5.56665636,4.57712761,0.92210407,0.76356193,-2.32609479,0.55661474,3.00625644,2.29546296 +0.69400000,5.54770615,4.56754874,-13.91811831,5.57122662,4.56338679,0.92286534,0.76127213,-2.32801029,0.55639016,3.00623241,2.28856096 +0.69500000,5.55225995,4.55379864,-13.92953563,5.57578313,4.54963472,0.92362432,0.75898046,-2.32992005,0.55616544,3.00620836,2.28165340 +0.69600000,5.55679999,4.54003731,-13.94091856,5.58032589,4.53587142,0.92438101,0.75668691,-2.33182405,0.55594059,3.00618430,2.27474031 +0.69700000,5.56132625,4.52626478,-13.95226708,5.58485487,4.52209692,0.92513540,0.75439150,-2.33372230,0.55571560,3.00616022,2.26782171 +0.69800000,5.56583873,4.51248108,-13.96358115,5.58937008,4.50831127,0.92588749,0.75209422,-2.33561479,0.55549047,3.00613612,2.26089761 +0.69900000,5.57033742,4.49868624,-13.97486075,5.59387149,4.49451450,0.92663729,0.74979509,-2.33750151,0.55526520,3.00611201,2.25396804 +0.70000000,5.57482230,4.48488030,-13.98610586,5.59835910,4.48070663,0.92738478,0.74749411,-2.33938246,0.55503980,3.00608789,2.24703300 +0.70100000,5.57929336,4.47106330,-13.99731644,5.60283290,4.46688771,0.92812997,0.74519129,-2.34125764,0.55481426,3.00606375,2.24009251 +0.70200000,5.58375060,4.45723526,-14.00849248,5.60729287,4.45305777,0.92887286,0.74288662,-2.34312704,0.55458858,3.00603959,2.23314660 +0.70300000,5.58819399,4.44339623,-14.01963394,5.61173901,4.43921684,0.92961344,0.74058013,-2.34499066,0.55436278,3.00601542,2.22619528 +0.70400000,5.59262354,4.42954623,-14.03074080,5.61617130,4.42536496,0.93035171,0.73827180,-2.34684849,0.55413683,3.00599124,2.21923857 +0.70500000,5.59703922,4.41568531,-14.04181303,5.62058974,4.41150216,0.93108767,0.73596166,-2.34870052,0.55391076,3.00596704,2.21227648 +0.70600000,5.60144104,4.40181348,-14.05285061,5.62499430,4.39762848,0.93182132,0.73364969,-2.35054676,0.55368455,3.00594283,2.20530904 +0.70700000,5.60582897,4.38793080,-14.06385350,5.62938499,4.38374394,0.93255266,0.73133592,-2.35238720,0.55345820,3.00591860,2.19833625 +0.70800000,5.61020301,4.37403729,-14.07482169,5.63376179,4.36984859,0.93328168,0.72902035,-2.35422183,0.55323173,3.00589435,2.19135814 +0.70900000,5.61456314,4.36013299,-14.08575514,5.63812468,4.35594245,0.93400838,0.72670297,-2.35605066,0.55300513,3.00587010,2.18437473 +0.71000000,5.61890936,4.34621793,-14.09665382,5.64247367,4.34202557,0.93473277,0.72438380,-2.35787367,0.55277839,3.00584582,2.17738603 +0.71100000,5.62324165,4.33229214,-14.10751772,5.64680873,4.32809797,0.93545483,0.72206285,-2.35969086,0.55255152,3.00582154,2.17039206 +0.71200000,5.62756000,4.31835567,-14.11834681,5.65112986,4.31415969,0.93617457,0.71974011,-2.36150222,0.55232453,3.00579723,2.16339283 +0.71300000,5.63186441,4.30440854,-14.12914106,5.65543705,4.30021077,0.93689199,0.71741560,-2.36330776,0.55209740,3.00577292,2.15638837 +0.71400000,5.63615486,4.29045079,-14.13990044,5.65973028,4.28625124,0.93760708,0.71508931,-2.36510747,0.55187015,3.00574859,2.14937869 +0.71500000,5.64043135,4.27648245,-14.15062492,5.66400955,4.27228114,0.93831984,0.71276126,-2.36690134,0.55164277,3.00572425,2.14236382 +0.71600000,5.64469385,4.26250356,-14.16131449,5.66827484,4.25830049,0.93903027,0.71043146,-2.36868937,0.55141526,3.00569989,2.13534375 +0.71700000,5.64894236,4.24851416,-14.17196911,5.67252614,4.24430933,0.93973837,0.70809990,-2.37047156,0.55118762,3.00567552,2.12831853 +0.71800000,5.65317688,4.23451427,-14.18258876,5.67676345,4.23030770,0.94044413,0.70576659,-2.37224789,0.55095986,3.00565113,2.12128816 +0.71900000,5.65739738,4.22050393,-14.19317342,5.68098676,4.21629564,0.94114757,0.70343154,-2.37401837,0.55073198,3.00562673,2.11425265 +0.72000000,5.66160387,4.20648318,-14.20372305,5.68519604,4.20227317,0.94184866,0.70109476,-2.37578300,0.55050396,3.00560232,2.10721204 +0.72100000,5.66579632,4.19245205,-14.21423763,5.68939130,4.18824033,0.94254742,0.69875625,-2.37754176,0.55027583,3.00557789,2.10016632 +0.72200000,5.66997473,4.17841057,-14.22471713,5.69357252,4.17419716,0.94324383,0.69641601,-2.37929465,0.55004756,3.00555345,2.09311554 +0.72300000,5.67413909,4.16435879,-14.23516154,5.69773969,4.16014369,0.94393791,0.69407405,-2.38104168,0.54981918,3.00552899,2.08605969 +0.72400000,5.67828938,4.15029673,-14.24557082,5.70189280,4.14607995,0.94462964,0.69173038,-2.38278282,0.54959067,3.00550452,2.07899880 +0.72500000,5.68242561,4.13622443,-14.25594495,5.70603185,4.13200599,0.94531902,0.68938501,-2.38451809,0.54936204,3.00548004,2.07193288 +0.72600000,5.68654775,4.12214192,-14.26628390,5.71015681,4.11792183,0.94600606,0.68703793,-2.38624748,0.54913329,3.00545554,2.06486196 +0.72700000,5.69065580,4.10804925,-14.27658765,5.71426769,4.10382751,0.94669075,0.68468916,-2.38797097,0.54890442,3.00543103,2.05778605 +0.72800000,5.69474975,4.09394643,-14.28685617,5.71836446,4.08972306,0.94737309,0.68233870,-2.38968858,0.54867542,3.00540651,2.05070517 +0.72900000,5.69882958,4.07983352,-14.29708944,5.72244713,4.07560852,0.94805307,0.67998656,-2.39140029,0.54844631,3.00538197,2.04361934 +0.73000000,5.70289529,4.06571054,-14.30728743,5.72651568,4.06148392,0.94873071,0.67763273,-2.39310609,0.54821708,3.00535743,2.03652857 +0.73100000,5.70694687,4.05157753,-14.31745012,5.73057009,4.04734931,0.94940598,0.67527724,-2.39480599,0.54798772,3.00533286,2.02943288 +0.73200000,5.71098430,4.03743452,-14.32757748,5.73461037,4.03320471,0.95007890,0.67292008,-2.39649999,0.54775825,3.00530829,2.02233229 +0.73300000,5.71500758,4.02328154,-14.33766949,5.73863650,4.01905015,0.95074947,0.67056126,-2.39818807,0.54752866,3.00528370,2.01522681 +0.73400000,5.71901670,4.00911865,-14.34772612,5.74264847,4.00488568,0.95141767,0.66820078,-2.39987023,0.54729896,3.00525910,2.00811648 +0.73500000,5.72301165,3.99494585,-14.35774734,5.74664627,3.99071133,0.95208351,0.66583866,-2.40154647,0.54706914,3.00523448,2.00100129 +0.73600000,5.72699241,3.98076321,-14.36773314,5.75062989,3.97652713,0.95274698,0.66347489,-2.40321678,0.54683920,3.00520985,1.99388128 +0.73700000,5.73095898,3.96657074,-14.37768349,5.75459932,3.96233312,0.95340809,0.66110949,-2.40488117,0.54660914,3.00518521,1.98675645 +0.73800000,5.73491135,3.95236848,-14.38759836,5.75855455,3.94812933,0.95406683,0.65874245,-2.40653962,0.54637898,3.00516056,1.97962683 +0.73900000,5.73884951,3.93815647,-14.39747773,5.76249557,3.93391580,0.95472321,0.65637379,-2.40819213,0.54614869,3.00513589,1.97249243 +0.74000000,5.74277344,3.92393474,-14.40732158,5.76642238,3.91969257,0.95537721,0.65400351,-2.40983870,0.54591829,3.00511121,1.96535328 +0.74100000,5.74668314,3.90970333,-14.41712987,5.77033496,3.90545966,0.95602884,0.65163162,-2.41147933,0.54568778,3.00508652,1.95820938 +0.74200000,5.75057861,3.89546228,-14.42690260,5.77423330,3.89121712,0.95667810,0.64925811,-2.41311400,0.54545716,3.00506182,1.95106077 +0.74300000,5.75445982,3.88121161,-14.43663972,5.77811739,3.87696498,0.95732498,0.64688301,-2.41474272,0.54522643,3.00503710,1.94390744 +0.74400000,5.75832677,3.86695137,-14.44634122,5.78198722,3.86270326,0.95796949,0.64450631,-2.41636548,0.54499558,3.00501237,1.93674943 +0.74500000,5.76217945,3.85268158,-14.45600708,5.78584279,3.84843202,0.95861162,0.64212802,-2.41798228,0.54476462,3.00498763,1.92958675 +0.74600000,5.76601785,3.83840229,-14.46563727,5.78968408,3.83415129,0.95925136,0.63974814,-2.41959312,0.54453355,3.00496288,1.92241942 +0.74700000,5.76984197,3.82411353,-14.47523176,5.79351109,3.81986109,0.95988873,0.63736669,-2.42119798,0.54430237,3.00493811,1.91524746 +0.74800000,5.77365178,3.80981533,-14.48479054,5.79732380,3.80556147,0.96052372,0.63498367,-2.42279687,0.54407109,3.00491333,1.90807088 +0.74900000,5.77744729,3.79550773,-14.49431358,5.80112221,3.79125246,0.96115631,0.63259907,-2.42438978,0.54383969,3.00488854,1.90088971 +0.75000000,5.78122848,3.78119077,-14.50380086,5.80490630,3.77693409,0.96178653,0.63021292,-2.42597671,0.54360819,3.00486374,1.89370395 +0.75100000,5.78499535,3.76686448,-14.51325234,5.80867608,3.76260640,0.96241435,0.62782521,-2.42755765,0.54337658,3.00483893,1.88651363 +0.75200000,5.78874787,3.75252889,-14.52266802,5.81243151,3.74826943,0.96303979,0.62543595,-2.42913261,0.54314486,3.00481410,1.87931877 +0.75300000,5.79248606,3.73818404,-14.53204786,5.81617261,3.73392321,0.96366283,0.62304515,-2.43070156,0.54291303,3.00478926,1.87211938 +0.75400000,5.79620989,3.72382997,-14.54139185,5.81989936,3.71956778,0.96428349,0.62065281,-2.43226453,0.54268110,3.00476441,1.86491549 +0.75500000,5.79991936,3.70946671,-14.55069996,5.82361174,3.70520317,0.96490175,0.61825894,-2.43382149,0.54244906,3.00473955,1.85770710 +0.75600000,5.80361445,3.69509430,-14.55997216,5.82730976,3.69082942,0.96551761,0.61586355,-2.43537244,0.54221692,3.00471468,1.85049425 +0.75700000,5.80729516,3.68071278,-14.56920844,5.83099340,3.67644656,0.96613108,0.61346664,-2.43691739,0.54198468,3.00468979,1.84327694 +0.75800000,5.81096148,3.66632217,-14.57840877,5.83466265,3.66205464,0.96674214,0.61106821,-2.43845632,0.54175233,3.00466489,1.83605519 +0.75900000,5.81461341,3.65192251,-14.58757313,5.83831751,3.64765367,0.96735081,0.60866827,-2.43998924,0.54151988,3.00463999,1.82882903 +0.76000000,5.81825092,3.63751384,-14.59670149,5.84195796,3.63324371,0.96795708,0.60626683,-2.44151613,0.54128732,3.00461507,1.82159846 +0.76100000,5.82187402,3.62309620,-14.60579384,5.84558399,3.61882478,0.96856094,0.60386390,-2.44303701,0.54105467,3.00459014,1.81436352 +0.76200000,5.82548269,3.60866962,-14.61485015,5.84919560,3.60439692,0.96916240,0.60145948,-2.44455185,0.54082191,3.00456519,1.80712421 +0.76300000,5.82907692,3.59423413,-14.62387040,5.85279278,3.58996016,0.96976146,0.59905357,-2.44606066,0.54058905,3.00454024,1.79988055 +0.76400000,5.83265671,3.57978978,-14.63285457,5.85637552,3.57551455,0.97035810,0.59664618,-2.44756344,0.54035609,3.00451528,1.79263257 +0.76500000,5.83622205,3.56533659,-14.64180263,5.85994381,3.56106012,0.97095234,0.59423732,-2.44906018,0.54012304,3.00449030,1.78538028 +0.76600000,5.83977292,3.55087461,-14.65071456,5.86349764,3.54659690,0.97154417,0.59182700,-2.45055087,0.53988988,3.00446531,1.77812369 +0.76700000,5.84330933,3.53640386,-14.65959035,5.86703700,3.53212493,0.97213358,0.58941522,-2.45203552,0.53965662,3.00444031,1.77086284 +0.76800000,5.84683125,3.52192439,-14.66842996,5.87056188,3.51764425,0.97272058,0.58700198,-2.45351412,0.53942327,3.00441531,1.76359772 +0.76900000,5.85033869,3.50743623,-14.67723338,5.87407228,3.50315488,0.97330517,0.58458729,-2.45498666,0.53918982,3.00439029,1.75632837 +0.77000000,5.85383163,3.49293941,-14.68600058,5.87756819,3.48865687,0.97388734,0.58217116,-2.45645315,0.53895628,3.00436525,1.74905481 +0.77100000,5.85731006,3.47843398,-14.69473155,5.88104959,3.47415026,0.97446710,0.57975359,-2.45791357,0.53872263,3.00434021,1.74177704 +0.77200000,5.86077398,3.46391996,-14.70342626,5.88451649,3.45963507,0.97504443,0.57733460,-2.45936793,0.53848889,3.00431516,1.73449508 +0.77300000,5.86422338,3.44939740,-14.71208469,5.88796886,3.44511134,0.97561934,0.57491418,-2.46081623,0.53825506,3.00429010,1.72720897 +0.77400000,5.86765824,3.43486632,-14.72070682,5.89140671,3.43057912,0.97619184,0.57249234,-2.46225845,0.53802113,3.00426502,1.71991870 +0.77500000,5.87107857,3.42032677,-14.72929263,5.89483002,3.41603843,0.97676191,0.57006908,-2.46369459,0.53778711,3.00423994,1.71262431 +0.77600000,5.87448435,3.40577878,-14.73784209,5.89823878,3.40148931,0.97732955,0.56764443,-2.46512466,0.53755300,3.00421485,1.70532581 +0.77700000,5.87787557,3.39122239,-14.74635519,5.90163299,3.38693180,0.97789477,0.56521837,-2.46654864,0.53731879,3.00418974,1.69802322 +0.77800000,5.88125223,3.37665763,-14.75483190,5.90501264,3.37236593,0.97845756,0.56279091,-2.46796654,0.53708449,3.00416463,1.69071655 +0.77900000,5.88461431,3.36208454,-14.76327221,5.90837772,3.35779174,0.97901792,0.56036207,-2.46937835,0.53685010,3.00413950,1.68340583 +0.78000000,5.88796182,3.34750315,-14.77167609,5.91172822,3.34320927,0.97957585,0.55793184,-2.47078406,0.53661562,3.00411437,1.67609107 +0.78100000,5.89129473,3.33291350,-14.78004353,5.91506414,3.32861855,0.98013135,0.55550024,-2.47218368,0.53638105,3.00408922,1.66877229 +0.78200000,5.89461305,3.31831563,-14.78837449,5.91838546,3.31401961,0.98068442,0.55306727,-2.47357720,0.53614639,3.00406406,1.66144951 +0.78300000,5.89791676,3.30370957,-14.79666896,5.92169217,3.29941250,0.98123505,0.55063293,-2.47496461,0.53591164,3.00403890,1.65412275 +0.78400000,5.90120585,3.28909536,-14.80492693,5.92498428,3.28479724,0.98178325,0.54819724,-2.47634592,0.53567680,3.00401372,1.64679202 +0.78500000,5.90448032,3.27447304,-14.81314837,5.92826177,3.27017388,0.98232901,0.54576019,-2.47772112,0.53544187,3.00398854,1.63945735 +0.78600000,5.90774017,3.25984263,-14.82133325,5.93152463,3.25554245,0.98287233,0.54332179,-2.47909021,0.53520685,3.00396334,1.63211875 +0.78700000,5.91098537,3.24520418,-14.82948157,5.93477285,3.24090299,0.98341321,0.54088206,-2.48045317,0.53497175,3.00393814,1.62477624 +0.78800000,5.91421593,3.23055773,-14.83759329,5.93800643,3.22625554,0.98395166,0.53844099,-2.48181002,0.53473656,3.00391292,1.61742984 +0.78900000,5.91743183,3.21590330,-14.84566841,5.94122536,3.21160012,0.98448765,0.53599859,-2.48316075,0.53450129,3.00388770,1.61007956 +0.79000000,5.92063307,3.20124094,-14.85370689,5.94442963,3.19693678,0.98502121,0.53355487,-2.48450534,0.53426593,3.00386246,1.60272544 +0.79100000,5.92381964,3.18657068,-14.86170872,5.94761923,3.18226555,0.98555232,0.53110983,-2.48584381,0.53403049,3.00383722,1.59536747 +0.79200000,5.92699154,3.17189256,-14.86967389,5.95079415,3.16758646,0.98608098,0.52866348,-2.48717614,0.53379496,3.00381196,1.58800569 +0.79300000,5.93014874,3.15720661,-14.87760236,5.95395440,3.15289957,0.98660720,0.52621583,-2.48850234,0.53355935,3.00378670,1.58064011 +0.79400000,5.93329126,3.14251287,-14.88549413,5.95709995,3.13820489,0.98713097,0.52376688,-2.48982240,0.53332366,3.00376143,1.57327074 +0.79500000,5.93641907,3.12781137,-14.89334916,5.96023081,3.12350247,0.98765228,0.52131663,-2.49113631,0.53308788,3.00373615,1.56589762 +0.79600000,5.93953217,3.11310216,-14.90116745,5.96334695,3.10879234,0.98817115,0.51886510,-2.49244408,0.53285203,3.00371086,1.55852075 +0.79700000,5.94263055,3.09838527,-14.90894897,5.96644839,3.09407454,0.98868756,0.51641229,-2.49374569,0.53261609,3.00368556,1.55114015 +0.79800000,5.94571421,3.08366073,-14.91669371,5.96953510,3.07934911,0.98920152,0.51395821,-2.49504115,0.53238007,3.00366025,1.54375584 +0.79900000,5.94878314,3.06892859,-14.92440163,5.97260708,3.06461608,0.98971302,0.51150286,-2.49633046,0.53214397,3.00363493,1.53636785 +0.80000000,5.95183733,3.05418887,-14.93207274,5.97566433,3.04987549,0.99022207,0.50904624,-2.49761361,0.53190780,3.00360960,1.52897618 +0.80100000,5.95487677,3.03944162,-14.93970700,5.97870683,3.03512737,0.99072866,0.50658837,-2.49889059,0.53167154,3.00358427,1.52158087 +0.80200000,5.95790146,3.02468686,-14.94730440,5.98173458,3.02037176,0.99123278,0.50412925,-2.50016141,0.53143521,3.00355892,1.51418191 +0.80300000,5.96091139,3.00992465,-14.95486491,5.98474757,3.00560871,0.99173445,0.50166889,-2.50142606,0.53119879,3.00353357,1.50677935 +0.80400000,5.96390654,2.99515500,-14.96238853,5.98774580,2.99083823,0.99223366,0.49920729,-2.50268454,0.53096230,3.00350821,1.49937318 +0.80500000,5.96688692,2.98037797,-14.96987523,5.99072925,2.97606038,0.99273041,0.49674445,-2.50393684,0.53072574,3.00348284,1.49196344 +0.80600000,5.96985251,2.96559358,-14.97732499,5.99369791,2.96127518,0.99322469,0.49428039,-2.50518297,0.53048910,3.00345746,1.48455013 +0.80700000,5.97280331,2.95080188,-14.98473780,5.99665179,2.94648268,0.99371650,0.49181511,-2.50642291,0.53025238,3.00343207,1.47713328 +0.80800000,5.97573932,2.93600289,-14.99211363,5.99959088,2.93168290,0.99420585,0.48934862,-2.50765667,0.53001559,3.00340667,1.46971291 +0.80900000,5.97866051,2.92119666,-14.99945247,6.00251516,2.91687589,0.99469273,0.48688092,-2.50888424,0.52977873,3.00338127,1.46228904 +0.81000000,5.98156690,2.90638322,-15.00675430,6.00542463,2.90206169,0.99517714,0.48441202,-2.51010562,0.52954179,3.00335586,1.45486168 +0.81100000,5.98445846,2.89156262,-15.01401911,6.00831928,2.88724032,0.99565908,0.48194192,-2.51132081,0.52930478,3.00333043,1.44743084 +0.81200000,5.98733519,2.87673487,-15.02124687,6.01119911,2.87241183,0.99613855,0.47947064,-2.51252980,0.52906770,3.00330501,1.43999656 +0.81300000,5.99019709,2.86190003,-15.02843756,6.01406410,2.85757626,0.99661555,0.47699817,-2.51373259,0.52883054,3.00327957,1.43255885 +0.81400000,5.99304415,2.84705813,-15.03559117,6.01691426,2.84273363,0.99709008,0.47452452,-2.51492918,0.52859332,3.00325412,1.42511773 +0.81500000,5.99587636,2.83220920,-15.04270769,6.01974957,2.82788399,0.99756213,0.47204971,-2.51611956,0.52835602,3.00322867,1.41767321 +0.81600000,5.99869371,2.81735328,-15.04978708,6.02257002,2.81302737,0.99803170,0.46957372,-2.51730374,0.52811865,3.00320321,1.41022531 +0.81700000,6.00149620,2.80249042,-15.05682935,6.02537562,2.79816381,0.99849880,0.46709658,-2.51848170,0.52788122,3.00317774,1.40277406 +0.81800000,6.00428383,2.78762063,-15.06383446,6.02816635,2.78329334,0.99896342,0.46461829,-2.51965345,0.52764371,3.00315226,1.39531947 +0.81900000,6.00705657,2.77274397,-15.07080240,6.03094220,2.76841601,0.99942555,0.46213885,-2.52081899,0.52740614,3.00312677,1.38786156 +0.82000000,6.00981443,2.75786047,-15.07773316,6.03370318,2.75353185,0.99988521,0.45965827,-2.52197830,0.52716850,3.00310128,1.38040035 +0.82100000,6.01255740,2.74297016,-15.08462671,6.03644926,2.73864089,1.00034239,0.45717656,-2.52313139,0.52693079,3.00307578,1.37293586 +0.82200000,6.01528547,2.72807309,-15.09148305,6.03918046,2.72374318,1.00079708,0.45469372,-2.52427826,0.52669302,3.00305027,1.36546810 +0.82300000,6.01799864,2.71316928,-15.09830215,6.04189675,2.70883874,1.00124929,0.45220976,-2.52541889,0.52645518,3.00302476,1.35799709 +0.82400000,6.02069690,2.69825878,-15.10508399,6.04459813,2.69392762,1.00169902,0.44972468,-2.52655330,0.52621727,3.00299923,1.35052286 +0.82500000,6.02338024,2.68334163,-15.11182857,6.04728460,2.67900986,1.00214626,0.44723849,-2.52768147,0.52597931,3.00297370,1.34304542 +0.82600000,6.02604866,2.66841785,-15.11853585,6.04995615,2.66408548,1.00259101,0.44475120,-2.52880340,0.52574127,3.00294816,1.33556479 +0.82700000,6.02870215,2.65348748,-15.12520583,6.05261277,2.64915453,1.00303327,0.44226281,-2.52991910,0.52550318,3.00292262,1.32808098 +0.82800000,6.03134070,2.63855057,-15.13183850,6.05525446,2.63421705,1.00347304,0.43977333,-2.53102855,0.52526502,3.00289707,1.32059403 +0.82900000,6.03396431,2.62360715,-15.13843382,6.05788120,2.61927306,1.00391033,0.43728276,-2.53213176,0.52502679,3.00287151,1.31310394 +0.83000000,6.03657296,2.60865726,-15.14499180,6.06049300,2.60432262,1.00434512,0.43479111,-2.53322872,0.52478851,3.00284594,1.30561073 +0.83100000,6.03916666,2.59370093,-15.15151240,6.06308984,2.58936574,1.00477742,0.43229840,-2.53431943,0.52455017,3.00282036,1.29811443 +0.83200000,6.04174540,2.57873820,-15.15799562,6.06567173,2.57440248,1.00520722,0.42980461,-2.53540388,0.52431176,3.00279478,1.29061505 +0.83300000,6.04430917,2.56376910,-15.16444144,6.06823865,2.55943286,1.00563453,0.42730977,-2.53648208,0.52407329,3.00276920,1.28311261 +0.83400000,6.04685797,2.54879368,-15.17084984,6.07079059,2.54445693,1.00605934,0.42481387,-2.53755402,0.52383477,3.00274360,1.27560713 +0.83500000,6.04939178,2.53381198,-15.17722081,6.07332756,2.52947473,1.00648166,0.42231692,-2.53861970,0.52359619,3.00271800,1.26809862 +0.83600000,6.05191060,2.51882402,-15.18355433,6.07584954,2.51448628,1.00690148,0.41981893,-2.53967912,0.52335755,3.00269239,1.26058711 +0.83700000,6.05441443,2.50382984,-15.18985039,6.07835653,2.49949162,1.00731880,0.41731991,-2.54073227,0.52311885,3.00266678,1.25307262 +0.83800000,6.05690326,2.48882949,-15.19610897,6.08084852,2.48449080,1.00773362,0.41481985,-2.54177915,0.52288009,3.00264116,1.24555516 +0.83900000,6.05937708,2.47382299,-15.20233005,6.08332551,2.46948385,1.00814594,0.41231877,-2.54281976,0.52264128,3.00261553,1.23803475 +0.84000000,6.06183589,2.45881040,-15.20851362,6.08578749,2.45447080,1.00855575,0.40981668,-2.54385410,0.52240241,3.00258990,1.23051141 +0.84100000,6.06427969,2.44379173,-15.21465967,6.08823445,2.43945170,1.00896307,0.40731357,-2.54488215,0.52216349,3.00256425,1.22298517 +0.84200000,6.06670845,2.42876704,-15.22076817,6.09066639,2.42442658,1.00936788,0.40480946,-2.54590393,0.52192451,3.00253861,1.21545603 +0.84300000,6.06912219,2.41373635,-15.22683912,6.09308330,2.40939548,1.00977018,0.40230435,-2.54691943,0.52168548,3.00251295,1.20792402 +0.84400000,6.07152089,2.39869971,-15.23287250,6.09548518,2.39435844,1.01016998,0.39979824,-2.54792864,0.52144639,3.00248730,1.20038915 +0.84500000,6.07390455,2.38365714,-15.23886830,6.09787201,2.37931548,1.01056727,0.39729115,-2.54893157,0.52120725,3.00246163,1.19285145 +0.84600000,6.07627315,2.36860870,-15.24482649,6.10024381,2.36426666,1.01096205,0.39478308,-2.54992821,0.52096806,3.00243596,1.18531093 +0.84700000,6.07862671,2.35355441,-15.25074707,6.10260055,2.34921200,1.01135433,0.39227404,-2.55091855,0.52072882,3.00241028,1.17776761 +0.84800000,6.08096520,2.33849432,-15.25663001,6.10494223,2.33415154,1.01174409,0.38976403,-2.55190260,0.52048952,3.00238460,1.17022151 +0.84900000,6.08328863,2.32342846,-15.26247532,6.10726885,2.31908533,1.01213135,0.38725305,-2.55288036,0.52025018,3.00235891,1.16267265 +0.85000000,6.08559699,2.30835686,-15.26828296,6.10958040,2.30401339,1.01251609,0.38474112,-2.55385181,0.52001079,3.00233321,1.15512105 +0.85100000,6.08789027,2.29327957,-15.27405293,6.11187687,2.28893577,1.01289832,0.38222825,-2.55481697,0.51977134,3.00230751,1.14756673 +0.85200000,6.09016846,2.27819661,-15.27978522,6.11415827,2.27385250,1.01327803,0.37971442,-2.55577582,0.51953185,3.00228181,1.14000970 +0.85300000,6.09243157,2.26310804,-15.28547980,6.11642458,2.25876362,1.01365523,0.37719966,-2.55672836,0.51929231,3.00225609,1.13244999 +0.85400000,6.09467959,2.24801389,-15.29113667,6.11867579,2.24366917,1.01402991,0.37468397,-2.55767460,0.51905272,3.00223037,1.12488761 +0.85500000,6.09691250,2.23291418,-15.29675581,6.12091191,2.22856918,1.01440208,0.37216736,-2.55861452,0.51881309,3.00220465,1.11732258 +0.85600000,6.09913031,2.21780897,-15.30233720,6.12313293,2.21346369,1.01477173,0.36964983,-2.55954814,0.51857340,3.00217892,1.10975492 +0.85700000,6.10133301,2.20269828,-15.30788084,6.12533884,2.19835274,1.01513886,0.36713138,-2.56047543,0.51833368,3.00215319,1.10218466 +0.85800000,6.10352059,2.18758216,-15.31338671,6.12752963,2.18323637,1.01550347,0.36461203,-2.56139641,0.51809391,3.00212745,1.09461180 +0.85900000,6.10569305,2.17246065,-15.31885479,6.12970531,2.16811461,1.01586557,0.36209178,-2.56231107,0.51785409,3.00210170,1.08703636 +0.86000000,6.10785038,2.15733377,-15.32428507,6.13186586,2.15298750,1.01622514,0.35957064,-2.56321941,0.51761423,3.00207595,1.07945838 +0.86100000,6.10999259,2.14220157,-15.32967755,6.13401128,2.13785507,1.01658218,0.35704861,-2.56412142,0.51737432,3.00205020,1.07187785 +0.86200000,6.11211965,2.12706408,-15.33503220,6.13614157,2.12271738,1.01693671,0.35452570,-2.56501710,0.51713438,3.00202444,1.06429481 +0.86300000,6.11423157,2.11192135,-15.34034901,6.13825671,2.10757444,1.01728871,0.35200191,-2.56590646,0.51689439,3.00199867,1.05670928 +0.86400000,6.11632835,2.09677340,-15.34562797,6.14035672,2.09242631,1.01763819,0.34947726,-2.56678949,0.51665436,3.00197290,1.04912126 +0.86500000,6.11840997,2.08162028,-15.35086906,6.14244157,2.07727301,1.01798514,0.34695174,-2.56766618,0.51641428,3.00194713,1.04153078 +0.86600000,6.12047643,2.06646203,-15.35607228,6.14451126,2.06211458,1.01832957,0.34442537,-2.56853653,0.51617417,3.00192135,1.03393787 +0.86700000,6.12252773,2.05129867,-15.36123761,6.14656579,2.04695107,1.01867147,0.34189815,-2.56940055,0.51593402,3.00189557,1.02634253 +0.86800000,6.12456386,2.03613026,-15.36636504,6.14860516,2.03178251,1.01901084,0.33937008,-2.57025823,0.51569383,3.00186978,1.01874478 +0.86900000,6.12658481,2.02095682,-15.37145455,6.15062936,2.01660893,1.01934768,0.33684117,-2.57110957,0.51545360,3.00184398,1.01114465 +0.87000000,6.12859059,2.00577839,-15.37650614,6.15263838,2.00143038,1.01968199,0.33431144,-2.57195456,0.51521333,3.00181818,1.00354216 +0.87100000,6.13058119,1.99059501,-15.38151978,6.15463222,1.98624689,1.02001377,0.33178088,-2.57279321,0.51497302,3.00179238,0.99593732 +0.87200000,6.13255659,1.97540673,-15.38649548,6.15661087,1.97105850,1.02034302,0.32924950,-2.57362551,0.51473268,3.00176657,0.98833015 +0.87300000,6.13451681,1.96021357,-15.39143321,6.15857433,1.95586525,1.02066974,0.32671731,-2.57445146,0.51449230,3.00174076,0.98072067 +0.87400000,6.13646182,1.94501557,-15.39633296,6.16052260,1.94066717,1.02099392,0.32418431,-2.57527105,0.51425189,3.00171495,0.97310890 +0.87500000,6.13839164,1.92981277,-15.40119472,6.16245566,1.92546430,1.02131557,0.32165052,-2.57608430,0.51401144,3.00168913,0.96549486 +0.87600000,6.14030624,1.91460521,-15.40601848,6.16437352,1.91025668,1.02163469,0.31911593,-2.57689118,0.51377095,3.00166330,0.95787856 +0.87700000,6.14220563,1.89939293,-15.41080423,6.16627618,1.89504435,1.02195127,0.31658055,-2.57769171,0.51353043,3.00163747,0.95026004 +0.87800000,6.14408981,1.88417596,-15.41555195,6.16816361,1.87982734,1.02226531,0.31404439,-2.57848588,0.51328988,3.00161164,0.94263929 +0.87900000,6.14595876,1.86895434,-15.42026164,6.17003583,1.86460569,1.02257682,0.31150745,-2.57927368,0.51304930,3.00158581,0.93501635 +0.88000000,6.14781249,1.85372811,-15.42493328,6.17189282,1.84937945,1.02288579,0.30896975,-2.58005513,0.51280868,3.00155996,0.92739124 +0.88100000,6.14965099,1.83849731,-15.42956686,6.17373459,1.83414864,1.02319222,0.30643129,-2.58083020,0.51256803,3.00153412,0.91976396 +0.88200000,6.15147425,1.82326197,-15.43416236,6.17556112,1.81891330,1.02349611,0.30389207,-2.58159891,0.51232735,3.00150827,0.91213455 +0.88300000,6.15328227,1.80802213,-15.43871979,6.17737241,1.80367348,1.02379746,0.30135209,-2.58236125,0.51208664,3.00148242,0.90450302 +0.88400000,6.15507505,1.79277783,-15.44323912,6.17916846,1.78842920,1.02409628,0.29881138,-2.58311721,0.51184591,3.00145657,0.89686938 +0.88500000,6.15685258,1.77752911,-15.44772035,6.18094927,1.77318052,1.02439255,0.29626993,-2.58386680,0.51160514,3.00143071,0.88923366 +0.88600000,6.15861486,1.76227600,-15.45216346,6.18271482,1.75792745,1.02468627,0.29372775,-2.58461002,0.51136434,3.00140484,0.88159588 +0.88700000,6.16036187,1.74701854,-15.45656845,6.18446512,1.74267005,1.02497746,0.29118484,-2.58534686,0.51112352,3.00137898,0.87395605 +0.88800000,6.16209363,1.73175678,-15.46093530,6.18620016,1.72740835,1.02526610,0.28864121,-2.58607732,0.51088266,3.00135311,0.86631420 +0.88900000,6.16381012,1.71649074,-15.46526400,6.18791994,1.71214239,1.02555220,0.28609687,-2.58680140,0.51064178,3.00132724,0.85867034 +0.89000000,6.16551134,1.70122046,-15.46955454,6.18962444,1.69687220,1.02583575,0.28355183,-2.58751910,0.51040088,3.00130136,0.85102449 +0.89100000,6.16719729,1.68594599,-15.47380691,6.19131368,1.68159783,1.02611675,0.28100609,-2.58823041,0.51015995,3.00127548,0.84337668 +0.89200000,6.16886796,1.67066735,-15.47802110,6.19298764,1.66631931,1.02639521,0.27845965,-2.58893534,0.50991899,3.00124960,0.83572691 +0.89300000,6.17052334,1.65538460,-15.48219710,6.19464632,1.65103668,1.02667113,0.27591253,-2.58963387,0.50967801,3.00122371,0.82807521 +0.89400000,6.17216344,1.64009776,-15.48633490,6.19628971,1.63574997,1.02694449,0.27336472,-2.59032602,0.50943701,3.00119783,0.82042160 +0.89500000,6.17378825,1.62480687,-15.49043449,6.19791782,1.62045922,1.02721531,0.27081624,-2.59101178,0.50919598,3.00117193,0.81276610 +0.89600000,6.17539776,1.60951197,-15.49449586,6.19953063,1.60516448,1.02748357,0.26826709,-2.59169114,0.50895493,3.00114604,0.80510873 +0.89700000,6.17699197,1.59421311,-15.49851899,6.20112814,1.58986578,1.02774929,0.26571728,-2.59236411,0.50871386,3.00112014,0.79744949 +0.89800000,6.17857088,1.57891031,-15.50250389,6.20271036,1.57456315,1.02801246,0.26316682,-2.59303069,0.50847276,3.00109424,0.78978842 +0.89900000,6.18013448,1.56360361,-15.50645053,6.20427727,1.55925664,1.02827307,0.26061570,-2.59369086,0.50823165,3.00106834,0.78212554 +0.90000000,6.18168278,1.54829305,-15.51035891,6.20582887,1.54394628,1.02853114,0.25806395,-2.59434464,0.50799051,3.00104244,0.77446085 +0.90100000,6.18321576,1.53297868,-15.51422903,6.20736516,1.52863212,1.02878665,0.25551155,-2.59499201,0.50774936,3.00101653,0.76679439 +0.90200000,6.18473342,1.51766052,-15.51806086,6.20888613,1.51331418,1.02903961,0.25295853,-2.59563298,0.50750818,3.00099062,0.75912617 +0.90300000,6.18623576,1.50233862,-15.52185441,6.21039179,1.49799250,1.02929001,0.25040488,-2.59626755,0.50726699,3.00096470,0.75145620 +0.90400000,6.18772277,1.48701301,-15.52560965,6.21188212,1.48266714,1.02953786,0.24785061,-2.59689571,0.50702578,3.00093879,0.74378452 +0.90500000,6.18919445,1.47168373,-15.52932659,6.21335712,1.46733811,1.02978316,0.24529573,-2.59751746,0.50678455,3.00091287,0.73611112 +0.90600000,6.19065080,1.45635082,-15.53300521,6.21481679,1.45200546,1.03002590,0.24274025,-2.59813281,0.50654331,3.00088695,0.72843605 +0.90700000,6.19209182,1.44101432,-15.53664550,6.21626113,1.43666923,1.03026608,0.24018417,-2.59874174,0.50630205,3.00086103,0.72075931 +0.90800000,6.19351749,1.42567426,-15.54024746,6.21769013,1.42132945,1.03050371,0.23762749,-2.59934426,0.50606078,3.00083511,0.71308092 +0.90900000,6.19492782,1.41033069,-15.54381108,6.21910379,1.40598617,1.03073878,0.23507023,-2.59994037,0.50581948,3.00080918,0.70540091 +0.91000000,6.19632281,1.39498363,-15.54733634,6.22050210,1.39063942,1.03097129,0.23251239,-2.60053006,0.50557818,3.00078325,0.69771928 +0.91100000,6.19770244,1.37963313,-15.55082324,6.22188506,1.37528924,1.03120125,0.22995397,-2.60111334,0.50533686,3.00075732,0.69003607 +0.91200000,6.19906672,1.36427923,-15.55427177,6.22325268,1.35993566,1.03142864,0.22739499,-2.60169020,0.50509553,3.00073139,0.68235129 +0.91300000,6.20041564,1.34892196,-15.55768193,6.22460493,1.34457873,1.03165348,0.22483545,-2.60226063,0.50485419,3.00070546,0.67466496 +0.91400000,6.20174920,1.33356137,-15.56105369,6.22594183,1.32921848,1.03187575,0.22227535,-2.60282465,0.50461283,3.00067952,0.66697709 +0.91500000,6.20306740,1.31819748,-15.56438706,6.22726337,1.31385495,1.03209547,0.21971470,-2.60338225,0.50437146,3.00065359,0.65928771 +0.91600000,6.20437023,1.30283034,-15.56768203,6.22856954,1.29848818,1.03231262,0.21715351,-2.60393342,0.50413008,3.00062765,0.65159684 +0.91700000,6.20565769,1.28745999,-15.57093858,6.22986035,1.28311820,1.03252721,0.21459179,-2.60447817,0.50388870,3.00060171,0.64390449 +0.91800000,6.20692978,1.27208645,-15.57415672,6.23113578,1.26774506,1.03273924,0.21202954,-2.60501649,0.50364730,3.00057576,0.63621068 +0.91900000,6.20818649,1.25670979,-15.57733642,6.23239583,1.25236879,1.03294871,0.20946676,-2.60554838,0.50340589,3.00054982,0.62851544 +0.92000000,6.20942782,1.24133001,-15.58047769,6.23364051,1.23698943,1.03315561,0.20690346,-2.60607384,0.50316448,3.00052388,0.62081878 +0.92100000,6.21065376,1.22594718,-15.58358052,6.23486981,1.22160702,1.03335995,0.20433966,-2.60659288,0.50292305,3.00049793,0.61312072 +0.92200000,6.21186432,1.21056132,-15.58664490,6.23608373,1.20622160,1.03356173,0.20177535,-2.60710548,0.50268162,3.00047198,0.60542128 +0.92300000,6.21305950,1.19517248,-15.58967082,6.23728226,1.19083320,1.03376094,0.19921054,-2.60761165,0.50244019,3.00044604,0.59772048 +0.92400000,6.21423928,1.17978069,-15.59265827,6.23846539,1.17544186,1.03395758,0.19664524,-2.60811139,0.50219874,3.00042009,0.59001834 +0.92500000,6.21540366,1.16438598,-15.59560725,6.23963314,1.16004762,1.03415166,0.19407946,-2.60860469,0.50195729,3.00039414,0.58231488 +0.92600000,6.21655265,1.14898840,-15.59851775,6.24078549,1.14465051,1.03434318,0.19151320,-2.60909155,0.50171584,3.00036819,0.57461011 +0.92700000,6.21768624,1.13358799,-15.60138976,6.24192244,1.12925059,1.03453212,0.18894646,-2.60957198,0.50147439,3.00034223,0.56690406 +0.92800000,6.21880442,1.11818478,-15.60422328,6.24304399,1.11384787,1.03471850,0.18637926,-2.61004596,0.50123292,3.00031628,0.55919674 +0.92900000,6.21990720,1.10277881,-15.60701829,6.24415013,1.09844241,1.03490231,0.18381160,-2.61051351,0.50099146,3.00029033,0.55148817 +0.93000000,6.22099457,1.08737012,-15.60977480,6.24524087,1.08303424,1.03508356,0.18124349,-2.61097462,0.50074999,3.00026437,0.54377838 +0.93100000,6.22206653,1.07195875,-15.61249279,6.24631620,1.06762340,1.03526223,0.17867493,-2.61142928,0.50050853,3.00023842,0.53606738 +0.93200000,6.22312308,1.05654473,-15.61517226,6.24737612,1.05220992,1.03543834,0.17610592,-2.61187750,0.50026706,3.00021246,0.52835518 +0.93300000,6.22416420,1.04112810,-15.61781320,6.24842062,1.03679384,1.03561187,0.17353649,-2.61231928,0.50002559,3.00018650,0.52064182 +0.93400000,6.22518991,1.02570891,-15.62041560,6.24944970,1.02137521,1.03578284,0.17096662,-2.61275461,0.49978412,3.00016055,0.51292731 +0.93500000,6.22620020,1.01028719,-15.62297946,6.25046337,1.00595406,1.03595124,0.16839633,-2.61318349,0.49954265,3.00013459,0.50521166 +0.93600000,6.22719506,0.99486297,-15.62550478,6.25146161,0.99053042,1.03611706,0.16582563,-2.61360593,0.49930118,3.00010863,0.49749491 +0.93700000,6.22817450,0.97943630,-15.62799154,6.25244443,0.97510434,1.03628032,0.16325452,-2.61402191,0.49905972,3.00008268,0.48977705 +0.93800000,6.22913851,0.96400721,-15.63043973,6.25341182,0.95967586,1.03644100,0.16068300,-2.61443145,0.49881825,3.00005672,0.48205813 +0.93900000,6.23008708,0.94857574,-15.63284937,6.25436378,0.94424501,1.03659911,0.15811109,-2.61483454,0.49857679,3.00003076,0.47433814 +0.94000000,6.23102022,0.93314193,-15.63522043,6.25530031,0.92881182,1.03675465,0.15553879,-2.61523117,0.49833533,3.00000480,0.46661712 +0.94100000,6.23193793,0.91770582,-15.63755291,6.25622140,0.91337635,1.03690762,0.15296611,-2.61562135,0.49809388,2.99997884,0.45889508 +0.94200000,6.23284020,0.90226745,-15.63984681,6.25712706,0.89793862,1.03705801,0.15039304,-2.61600508,0.49785243,2.99995289,0.45117205 +0.94300000,6.23372703,0.88682685,-15.64210211,6.25801728,0.88249868,1.03720583,0.14781961,-2.61638235,0.49761099,2.99992693,0.44344803 +0.94400000,6.23459841,0.87138406,-15.64431883,6.25889206,0.86705656,1.03735108,0.14524581,-2.61675317,0.49736955,2.99990097,0.43572305 +0.94500000,6.23545435,0.85593912,-15.64649694,6.25975139,0.85161230,1.03749375,0.14267166,-2.61711753,0.49712812,2.99987501,0.42799714 +0.94600000,6.23629484,0.84049207,-15.64863644,6.26059528,0.83616593,1.03763384,0.14009715,-2.61747544,0.49688670,2.99984905,0.42027030 +0.94700000,6.23711988,0.82504294,-15.65073734,6.26142372,0.82071751,1.03777137,0.13752229,-2.61782688,0.49664528,2.99982310,0.41254255 +0.94800000,6.23792947,0.80959178,-15.65279961,6.26223672,0.80526706,1.03790631,0.13494710,-2.61817187,0.49640387,2.99979714,0.40481392 +0.94900000,6.23872361,0.79413863,-15.65482327,6.26303426,0.78981462,1.03803868,0.13237157,-2.61851039,0.49616248,2.99977119,0.39708443 +0.95000000,6.23950230,0.77868351,-15.65680830,6.26381634,0.77436024,1.03816848,0.12979572,-2.61884246,0.49592109,2.99974523,0.38935409 +0.95100000,6.24026552,0.76322647,-15.65875470,6.26458298,0.75890394,1.03829570,0.12721955,-2.61916806,0.49567971,2.99971928,0.38162292 +0.95200000,6.24101329,0.74776755,-15.66066246,6.26533415,0.74344577,1.03842034,0.12464306,-2.61948720,0.49543834,2.99969332,0.37389095 +0.95300000,6.24174560,0.73230678,-15.66253158,6.26606987,0.72798577,1.03854241,0.12206626,-2.61979988,0.49519698,2.99966737,0.36615819 +0.95400000,6.24246244,0.71684421,-15.66436205,6.26679012,0.71252397,1.03866190,0.11948917,-2.62010609,0.49495564,2.99964142,0.35842466 +0.95500000,6.24316382,0.70137986,-15.66615388,6.26749491,0.69706041,1.03877881,0.11691178,-2.62040584,0.49471431,2.99961546,0.35069037 +0.95600000,6.24384974,0.68591379,-15.66790705,6.26818424,0.68159513,1.03889314,0.11433410,-2.62069912,0.49447299,2.99958951,0.34295536 +0.95700000,6.24452018,0.67044602,-15.66962156,6.26885810,0.66612817,1.03900490,0.11175614,-2.62098594,0.49423168,2.99956356,0.33521963 +0.95800000,6.24517516,0.65497660,-15.67129740,6.26951650,0.65065957,1.03911408,0.10917790,-2.62126629,0.49399039,2.99953761,0.32748321 +0.95900000,6.24581466,0.63950557,-15.67293458,6.27015942,0.63518936,1.03922068,0.10659939,-2.62154017,0.49374911,2.99951167,0.31974612 +0.96000000,6.24643870,0.62403295,-15.67453309,6.27078688,0.61971759,1.03932470,0.10402062,-2.62180758,0.49350785,2.99948572,0.31200837 +0.96100000,6.24704726,0.60855880,-15.67609293,6.27139886,0.60424428,1.03942614,0.10144160,-2.62206853,0.49326661,2.99945978,0.30426999 +0.96200000,6.24764034,0.59308314,-15.67761408,6.27199536,0.58876949,1.03952500,0.09886232,-2.62232300,0.49302538,2.99943383,0.29653098 +0.96300000,6.24821794,0.57760603,-15.67909655,6.27257640,0.57329324,1.03962129,0.09628280,-2.62257101,0.49278417,2.99940789,0.28879139 +0.96400000,6.24878007,0.56212748,-15.68054034,6.27314195,0.55781558,1.03971499,0.09370304,-2.62281254,0.49254297,2.99938195,0.28105121 +0.96500000,6.24932672,0.54664755,-15.68194543,6.27369203,0.54233654,1.03980611,0.09112305,-2.62304760,0.49230180,2.99935601,0.27331047 +0.96600000,6.24985789,0.53116627,-15.68331183,6.27422662,0.52685616,1.03989465,0.08854284,-2.62327619,0.49206064,2.99933007,0.26556919 +0.96700000,6.25037357,0.51568368,-15.68463953,6.27474574,0.51137448,1.03998062,0.08596240,-2.62349831,0.49181951,2.99930414,0.25782739 +0.96800000,6.25087377,0.50019982,-15.68592854,6.27524937,0.49589154,1.04006400,0.08338176,-2.62371395,0.49157839,2.99927820,0.25008509 +0.96900000,6.25135848,0.48471472,-15.68717884,6.27573752,0.48040738,1.04014480,0.08080091,-2.62392312,0.49133730,2.99925227,0.24234231 +0.97000000,6.25182771,0.46922843,-15.68839043,6.27621019,0.46492203,1.04022302,0.07821986,-2.62412582,0.49109622,2.99922634,0.23459906 +0.97100000,6.25228145,0.45374098,-15.68956332,6.27666736,0.44943554,1.04029866,0.07563862,-2.62432204,0.49085517,2.99920041,0.22685537 +0.97200000,6.25271971,0.43825241,-15.69069749,6.27710906,0.43394793,1.04037172,0.07305719,-2.62451178,0.49061414,2.99917448,0.21911125 +0.97300000,6.25314247,0.42276276,-15.69179294,6.27753526,0.41845926,1.04044219,0.07047558,-2.62469506,0.49037314,2.99914856,0.21136673 +0.97400000,6.25354974,0.40727206,-15.69284968,6.27794597,0.40296955,1.04051008,0.06789379,-2.62487185,0.49013215,2.99912264,0.20362181 +0.97500000,6.25394152,0.39178036,-15.69386770,6.27834120,0.38747885,1.04057540,0.06531184,-2.62504217,0.48989120,2.99909672,0.19587653 +0.97600000,6.25431781,0.37628770,-15.69484700,6.27872093,0.37198719,1.04063813,0.06272973,-2.62520601,0.48965026,2.99907080,0.18813090 +0.97700000,6.25467860,0.36079410,-15.69578757,6.27908517,0.35649462,1.04069827,0.06014746,-2.62536337,0.48940936,2.99904488,0.18038494 +0.97800000,6.25502390,0.34529962,-15.69668941,6.27943392,0.34100116,1.04075584,0.05756505,-2.62551425,0.48916848,2.99901897,0.17263867 +0.97900000,6.25535371,0.32980428,-15.69755252,6.27976718,0.32550687,1.04081082,0.05498249,-2.62565866,0.48892762,2.99899306,0.16489211 +0.98000000,6.25566802,0.31430813,-15.69837690,6.28008493,0.31001177,1.04086322,0.05239980,-2.62579659,0.48868679,2.99896715,0.15714527 +0.98100000,6.25596683,0.29881120,-15.69916255,6.28038720,0.29451590,1.04091304,0.04981697,-2.62592804,0.48844600,2.99894124,0.14939818 +0.98200000,6.25625014,0.28331354,-15.69990946,6.28067397,0.27901931,1.04096027,0.04723403,-2.62605301,0.48820522,2.99891534,0.14165085 +0.98300000,6.25651796,0.26781518,-15.70061763,6.28094524,0.26352203,1.04100492,0.04465097,-2.62617150,0.48796448,2.99888944,0.13390331 +0.98400000,6.25677027,0.25231615,-15.70128706,6.28120101,0.24802410,1.04104699,0.04206779,-2.62628351,0.48772377,2.99886354,0.12615558 +0.98500000,6.25700709,0.23681651,-15.70191775,6.28144128,0.23252556,1.04108648,0.03948452,-2.62638904,0.48748309,2.99883764,0.11840766 +0.98600000,6.25722840,0.22131628,-15.70250970,6.28166606,0.21702644,1.04112338,0.03690115,-2.62648809,0.48724244,2.99881175,0.11065959 +0.98700000,6.25743422,0.20581550,-15.70306290,6.28187534,0.20152679,1.04115769,0.03431768,-2.62658066,0.48700182,2.99878586,0.10291138 +0.98800000,6.25762453,0.19031422,-15.70357736,6.28206911,0.18602664,1.04118943,0.03173413,-2.62666675,0.48676124,2.99875998,0.09516304 +0.98900000,6.25779935,0.17481246,-15.70405307,6.28224739,0.17052604,1.04121858,0.02915050,-2.62674636,0.48652068,2.99873409,0.08741461 +0.99000000,6.25795866,0.15931028,-15.70449003,6.28241017,0.15502501,1.04124515,0.02656681,-2.62681949,0.48628016,2.99870821,0.07966610 +0.99100000,6.25810246,0.14380770,-15.70488825,6.28255744,0.13952360,1.04126913,0.02398304,-2.62688613,0.48603968,2.99868233,0.07191752 +0.99200000,6.25823077,0.12830477,-15.70524771,6.28268921,0.12402184,1.04129053,0.02139922,-2.62694629,0.48579922,2.99865646,0.06416890 +0.99300000,6.25834357,0.11280152,-15.70556842,6.28280548,0.10851978,1.04130934,0.01881534,-2.62699998,0.48555881,2.99863059,0.05642025 +0.99400000,6.25844087,0.09729799,-15.70585038,6.28290625,0.09301745,1.04132557,0.01623142,-2.62704718,0.48531842,2.99860472,0.04867160 +0.99500000,6.25852266,0.08179422,-15.70609359,6.28299152,0.07751489,1.04133922,0.01364745,-2.62708790,0.48507808,2.99857886,0.04092296 +0.99600000,6.25858895,0.06629025,-15.70629804,6.28306128,0.06201215,1.04135029,0.01106346,-2.62712213,0.48483777,2.99855300,0.03317436 +0.99700000,6.25863974,0.05078612,-15.70646374,6.28311554,0.04650924,1.04135876,0.00847943,-2.62714989,0.48459750,2.99852714,0.02542581 +0.99800000,6.25867502,0.03528186,-15.70659069,6.28315430,0.03100623,1.04136466,0.00589539,-2.62717116,0.48435727,2.99850129,0.01767732 +0.99900000,6.25869480,0.01977751,-15.70667888,6.28317756,0.01550313,1.04136797,0.00331133,-2.62718595,0.48411707,2.99847544,0.00992893 +1.00000000,6.25869907,0.00427312,-15.70672832,6.28318531,0.00000000,1.04136870,0.00072726,-2.62719425,0.48387692,2.99844959,0.00218065 +1.00100000,6.25868784,-0.01123129,-15.70673900,6.28317756,-0.01550313,1.04136684,-0.00185681,-2.62719608,0.48363680,2.99842375,-0.00556751 +1.00200000,6.25866110,-0.02673566,-15.70671093,6.28315430,-0.03100623,1.04136240,-0.00444088,-2.62719142,0.48339673,2.99839791,-0.01331551 +1.00300000,6.25861886,-0.04223997,-15.70664410,6.28311554,-0.04650924,1.04135538,-0.00702493,-2.62718028,0.48315670,2.99837208,-0.02106336 +1.00400000,6.25856112,-0.05774418,-15.70653852,6.28306128,-0.06201215,1.04134577,-0.00960897,-2.62716266,0.48291670,2.99834625,-0.02881101 +1.00500000,6.25848787,-0.07324825,-15.70639419,6.28299152,-0.07751489,1.04133357,-0.01219298,-2.62713855,0.48267675,2.99832043,-0.03655846 +1.00600000,6.25839912,-0.08875213,-15.70621110,6.28290625,-0.09301745,1.04131880,-0.01477696,-2.62710797,0.48243685,2.99829460,-0.04430569 +1.00700000,6.25829486,-0.10425579,-15.70598926,6.28280548,-0.10851978,1.04130144,-0.01736091,-2.62707090,0.48219698,2.99826879,-0.05205267 +1.00800000,6.25817511,-0.11975920,-15.70572866,6.28268921,-0.12402184,1.04128149,-0.01994481,-2.62702735,0.48195716,2.99824297,-0.05979940 +1.00900000,6.25803984,-0.13526231,-15.70542931,6.28255744,-0.13952360,1.04125896,-0.02252867,-2.62697732,0.48171739,2.99821716,-0.06754584 +1.01000000,6.25788908,-0.15076509,-15.70509121,6.28241017,-0.15502501,1.04123385,-0.02511247,-2.62692080,0.48147766,2.99819136,-0.07529198 +1.01100000,6.25772281,-0.16626750,-15.70471436,6.28224739,-0.17052604,1.04120615,-0.02769620,-2.62685781,0.48123798,2.99816556,-0.08303781 +1.01200000,6.25754104,-0.18176950,-15.70429876,6.28206911,-0.18602664,1.04117587,-0.03027987,-2.62678833,0.48099834,2.99813976,-0.09078329 +1.01300000,6.25734377,-0.19727104,-15.70384441,6.28187534,-0.20152679,1.04114301,-0.03286347,-2.62671237,0.48075875,2.99811397,-0.09852842 +1.01400000,6.25713100,-0.21277210,-15.70335132,6.28166606,-0.21702644,1.04110756,-0.03544698,-2.62662993,0.48051920,2.99808819,-0.10627317 +1.01500000,6.25690272,-0.22827264,-15.70281947,6.28144128,-0.23252556,1.04106953,-0.03803041,-2.62654101,0.48027971,2.99806241,-0.11401753 +1.01600000,6.25665895,-0.24377261,-15.70224889,6.28120101,-0.24802410,1.04102892,-0.04061374,-2.62644561,0.48004026,2.99803663,-0.12176147 +1.01700000,6.25639968,-0.25927199,-15.70163955,6.28094524,-0.26352203,1.04098572,-0.04319697,-2.62634372,0.47980086,2.99801086,-0.12950498 +1.01800000,6.25612491,-0.27477072,-15.70099148,6.28067397,-0.27901931,1.04093994,-0.04578009,-2.62623536,0.47956152,2.99798509,-0.13724804 +1.01900000,6.25583464,-0.29026877,-15.70030467,6.28038720,-0.29451590,1.04089158,-0.04836310,-2.62612052,0.47932222,2.99795933,-0.14499062 +1.02000000,6.25552887,-0.30576611,-15.69957911,6.28008493,-0.31001177,1.04084063,-0.05094600,-2.62599920,0.47908297,2.99793357,-0.15273271 +1.02100000,6.25520761,-0.32126269,-15.69881482,6.27976718,-0.32550687,1.04078710,-0.05352876,-2.62587140,0.47884378,2.99790782,-0.16047430 +1.02200000,6.25487085,-0.33675848,-15.69801180,6.27943392,-0.34100116,1.04073099,-0.05611140,-2.62573712,0.47860464,2.99788207,-0.16821536 +1.02300000,6.25451860,-0.35225344,-15.69717004,6.27908517,-0.35649462,1.04067230,-0.05869389,-2.62559636,0.47836555,2.99785633,-0.17595586 +1.02400000,6.25415085,-0.36774753,-15.69628955,6.27872093,-0.37198719,1.04061102,-0.06127625,-2.62544912,0.47812651,2.99783059,-0.18369581 +1.02500000,6.25376761,-0.38324071,-15.69537033,6.27834120,-0.38747885,1.04054716,-0.06385845,-2.62529540,0.47788753,2.99780486,-0.19143516 +1.02600000,6.25336888,-0.39873295,-15.69441238,6.27794597,-0.40296955,1.04048072,-0.06644049,-2.62513521,0.47764861,2.99777914,-0.19917391 +1.02700000,6.25295465,-0.41422420,-15.69341571,6.27753526,-0.41845926,1.04041170,-0.06902237,-2.62496854,0.47740973,2.99775342,-0.20691204 +1.02800000,6.25252494,-0.42971444,-15.69238032,6.27710906,-0.43394793,1.04034010,-0.07160408,-2.62479539,0.47717092,2.99772770,-0.21464952 +1.02900000,6.25207974,-0.44520361,-15.69130621,6.27666736,-0.44943554,1.04026591,-0.07418561,-2.62461577,0.47693216,2.99770199,-0.22238635 +1.03000000,6.25161905,-0.46069168,-15.69019338,6.27621019,-0.46492203,1.04018915,-0.07676696,-2.62442967,0.47669345,2.99767629,-0.23012249 +1.03100000,6.25114287,-0.47617861,-15.68904184,6.27573752,-0.48040738,1.04010980,-0.07934812,-2.62423709,0.47645481,2.99765059,-0.23785793 +1.03200000,6.25065120,-0.49166438,-15.68785158,6.27524937,-0.49589154,1.04002787,-0.08192908,-2.62403804,0.47621622,2.99762490,-0.24559265 +1.03300000,6.25014405,-0.50714892,-15.68662262,6.27474574,-0.51137448,1.03994336,-0.08450984,-2.62383252,0.47597769,2.99759922,-0.25332663 +1.03400000,6.24962142,-0.52263222,-15.68535496,6.27422662,-0.52685616,1.03985627,-0.08709039,-2.62362052,0.47573923,2.99757354,-0.26105986 +1.03500000,6.24908331,-0.53811423,-15.68404859,6.27369203,-0.54233654,1.03976660,-0.08967073,-2.62340204,0.47550082,2.99754786,-0.26879231 +1.03600000,6.24852971,-0.55359491,-15.68270352,6.27314195,-0.55781558,1.03967435,-0.09225085,-2.62317710,0.47526247,2.99752220,-0.27652397 +1.03700000,6.24796064,-0.56907422,-15.68131976,6.27257640,-0.57329324,1.03957952,-0.09483074,-2.62294568,0.47502418,2.99749653,-0.28425481 +1.03800000,6.24737609,-0.58455213,-15.67989730,6.27199536,-0.58876949,1.03948211,-0.09741039,-2.62270779,0.47478595,2.99747088,-0.29198482 +1.03900000,6.24677606,-0.60002860,-15.67843616,6.27139886,-0.60424428,1.03938212,-0.09998981,-2.62246343,0.47454779,2.99744523,-0.29971397 +1.04000000,6.24616055,-0.61550358,-15.67693633,6.27078688,-0.61971759,1.03927955,-0.10256898,-2.62221260,0.47430969,2.99741959,-0.30744226 +1.04100000,6.24552958,-0.63097705,-15.67539782,6.27015942,-0.63518936,1.03917440,-0.10514789,-2.62195530,0.47407165,2.99739395,-0.31516965 +1.04200000,6.24488313,-0.64644896,-15.67382063,6.26951650,-0.65065957,1.03906667,-0.10772655,-2.62169153,0.47383368,2.99736832,-0.32289614 +1.04300000,6.24422121,-0.66191928,-15.67220477,6.26885810,-0.66612817,1.03895637,-0.11030494,-2.62142129,0.47359577,2.99734270,-0.33062169 +1.04400000,6.24354382,-0.67738796,-15.67055024,6.26818424,-0.68159513,1.03884348,-0.11288305,-2.62114458,0.47335793,2.99731708,-0.33834630 +1.04500000,6.24285097,-0.69285497,-15.66885704,6.26749491,-0.69706041,1.03872802,-0.11546089,-2.62086140,0.47312015,2.99729147,-0.34606995 +1.04600000,6.24214264,-0.70832027,-15.66712519,6.26679012,-0.71252397,1.03860998,-0.11803845,-2.62057176,0.47288244,2.99726586,-0.35379261 +1.04700000,6.24141886,-0.72378382,-15.66535467,6.26606987,-0.72798577,1.03848937,-0.12061571,-2.62027565,0.47264480,2.99724027,-0.36151426 +1.04800000,6.24067962,-0.73924559,-15.66354551,6.26533415,-0.74344577,1.03836618,-0.12319267,-2.61997308,0.47240722,2.99721468,-0.36923489 +1.04900000,6.23992491,-0.75470554,-15.66169769,6.26458298,-0.75890394,1.03824041,-0.12576934,-2.61966404,0.47216971,2.99718909,-0.37695448 +1.05000000,6.23915475,-0.77016362,-15.65981123,6.26381634,-0.77436024,1.03811206,-0.12834569,-2.61934854,0.47193227,2.99716352,-0.38467301 +1.05100000,6.23836913,-0.78561980,-15.65788613,6.26303426,-0.78981462,1.03798114,-0.13092172,-2.61902657,0.47169490,2.99713795,-0.39239046 +1.05200000,6.23756805,-0.80107404,-15.65592240,6.26223672,-0.80526706,1.03784764,-0.13349743,-2.61869815,0.47145760,2.99711238,-0.40010681 +1.05300000,6.23675153,-0.81652631,-15.65392004,6.26142372,-0.82071751,1.03771157,-0.13607281,-2.61836326,0.47122037,2.99708683,-0.40782204 +1.05400000,6.23591955,-0.83197656,-15.65187905,6.26059528,-0.83616593,1.03757292,-0.13864786,-2.61802191,0.47098321,2.99706128,-0.41553613 +1.05500000,6.23507212,-0.84742476,-15.64979945,6.25975139,-0.85161230,1.03743170,-0.14122256,-2.61767410,0.47074612,2.99703574,-0.42324907 +1.05600000,6.23420925,-0.86287087,-15.64768123,6.25889206,-0.86705656,1.03728790,-0.14379692,-2.61731983,0.47050911,2.99701021,-0.43096084 +1.05700000,6.23333094,-0.87831485,-15.64552440,6.25801728,-0.88249868,1.03714153,-0.14637092,-2.61695911,0.47027216,2.99698468,-0.43867141 +1.05800000,6.23243718,-0.89375666,-15.64332897,6.25712706,-0.89793862,1.03699259,-0.14894456,-2.61659193,0.47003529,2.99695916,-0.44638076 +1.05900000,6.23152799,-0.90919627,-15.64109493,6.25622140,-0.91337635,1.03684107,-0.15151783,-2.61621829,0.46979850,2.99693365,-0.45408889 +1.06000000,6.23060335,-0.92463363,-15.63882231,6.25530031,-0.92881182,1.03668698,-0.15409073,-2.61583819,0.46956178,2.99690815,-0.46179577 +1.06100000,6.22966328,-0.94006871,-15.63651110,6.25436378,-0.94424501,1.03653031,-0.15666325,-2.61545165,0.46932513,2.99688265,-0.46950137 +1.06200000,6.22870778,-0.95550147,-15.63416131,6.25341182,-0.95967586,1.03637108,-0.15923538,-2.61505864,0.46908856,2.99685716,-0.47720569 +1.06300000,6.22773685,-0.97093188,-15.63177294,6.25244443,-0.97510434,1.03620927,-0.16180712,-2.61465919,0.46885207,2.99683168,-0.48490870 +1.06400000,6.22675049,-0.98635989,-15.62934600,6.25146161,-0.99053042,1.03604489,-0.16437846,-2.61425328,0.46861565,2.99680621,-0.49261038 +1.06500000,6.22574871,-1.00178546,-15.62688050,6.25046337,-1.00595406,1.03587794,-0.16694939,-2.61384093,0.46837932,2.99678074,-0.50031072 +1.06600000,6.22473150,-1.01720857,-15.62437644,6.24944970,-1.02137521,1.03570842,-0.16951991,-2.61342212,0.46814305,2.99675529,-0.50800970 +1.06700000,6.22369887,-1.03262916,-15.62183383,6.24842062,-1.03679384,1.03553633,-0.17209002,-2.61299687,0.46790687,2.99672984,-0.51570729 +1.06800000,6.22265082,-1.04804721,-15.61925267,6.24737612,-1.05220992,1.03536167,-0.17465970,-2.61256517,0.46767077,2.99670440,-0.52340348 +1.06900000,6.22158736,-1.06346266,-15.61663298,6.24631620,-1.06762340,1.03518445,-0.17722894,-2.61212702,0.46743475,2.99667897,-0.53109825 +1.07000000,6.22050848,-1.07887550,-15.61397475,6.24524087,-1.08303424,1.03500465,-0.17979776,-2.61168243,0.46719880,2.99665354,-0.53879158 +1.07100000,6.21941420,-1.09428567,-15.61127799,6.24415013,-1.09844241,1.03482228,-0.18236612,-2.61123139,0.46696294,2.99662812,-0.54648345 +1.07200000,6.21830450,-1.10969315,-15.60854272,6.24304399,-1.11384787,1.03463735,-0.18493404,-2.61077391,0.46672716,2.99660272,-0.55417384 +1.07300000,6.21717941,-1.12509788,-15.60576893,6.24192244,-1.12925059,1.03444985,-0.18750150,-2.61030999,0.46649146,2.99657732,-0.56186274 +1.07400000,6.21603891,-1.14049984,-15.60295664,6.24078549,-1.14465051,1.03425978,-0.19006850,-2.60983963,0.46625585,2.99655193,-0.56955012 +1.07500000,6.21488301,-1.15589899,-15.60010585,6.23963314,-1.16004762,1.03406714,-0.19263503,-2.60936283,0.46602032,2.99652654,-0.57723597 +1.07600000,6.21371171,-1.17129528,-15.59721657,6.23846539,-1.17544186,1.03387194,-0.19520108,-2.60887959,0.46578487,2.99650117,-0.58492027 +1.07700000,6.21252502,-1.18668869,-15.59428880,6.23728226,-1.19083320,1.03367417,-0.19776665,-2.60838991,0.46554950,2.99647580,-0.59260299 +1.07800000,6.21132294,-1.20207916,-15.59132256,6.23608373,-1.20622160,1.03347384,-0.20033174,-2.60789380,0.46531423,2.99645045,-0.60028413 +1.07900000,6.21010548,-1.21746667,-15.58831785,6.23486981,-1.22160702,1.03327095,-0.20289633,-2.60739125,0.46507903,2.99642510,-0.60796365 +1.08000000,6.20887263,-1.23285118,-15.58527467,6.23364051,-1.23698943,1.03306549,-0.20546042,-2.60688227,0.46484393,2.99639976,-0.61564155 +1.08100000,6.20762439,-1.24823264,-15.58219304,6.23239583,-1.25236879,1.03285746,-0.20802400,-2.60636686,0.46460891,2.99637443,-0.62331779 +1.08200000,6.20636078,-1.26361102,-15.57907296,6.23113578,-1.26774506,1.03264688,-0.21058707,-2.60584502,0.46437397,2.99634911,-0.63099238 +1.08300000,6.20508180,-1.27898629,-15.57591444,6.22986035,-1.28311820,1.03243373,-0.21314962,-2.60531674,0.46413913,2.99632380,-0.63866527 +1.08400000,6.20378744,-1.29435840,-15.57271749,6.22856954,-1.29848818,1.03221801,-0.21571164,-2.60478204,0.46390437,2.99629849,-0.64633647 +1.08500000,6.20247771,-1.30972732,-15.56948211,6.22726337,-1.31385495,1.03199974,-0.21827313,-2.60424091,0.46366971,2.99627320,-0.65400594 +1.08600000,6.20115262,-1.32509300,-15.56620832,6.22594183,-1.32921848,1.03177891,-0.22083409,-2.60369336,0.46343513,2.99624791,-0.66167367 +1.08700000,6.19981216,-1.34045542,-15.56289612,6.22460493,-1.34457873,1.03155551,-0.22339449,-2.60313938,0.46320064,2.99622264,-0.66933964 +1.08800000,6.19845635,-1.35581452,-15.55954552,6.22325268,-1.35993566,1.03132956,-0.22595435,-2.60257897,0.46296625,2.99619737,-0.67700383 +1.08900000,6.19708518,-1.37117029,-15.55615653,6.22188506,-1.37528924,1.03110104,-0.22851365,-2.60201215,0.46273194,2.99617211,-0.68466623 +1.09000000,6.19569865,-1.38652266,-15.55272916,6.22050210,-1.39063942,1.03086997,-0.23107239,-2.60143891,0.46249773,2.99614687,-0.69232680 +1.09100000,6.19429678,-1.40187162,-15.54926341,6.21910379,-1.40598617,1.03063634,-0.23363055,-2.60085924,0.46226361,2.99612163,-0.69998555 +1.09200000,6.19287957,-1.41721712,-15.54575929,6.21769013,-1.42132945,1.03040015,-0.23618814,-2.60027316,0.46202958,2.99609640,-0.70764243 +1.09300000,6.19144701,-1.43255912,-15.54221682,6.21626113,-1.43666923,1.03016141,-0.23874515,-2.59968067,0.46179565,2.99607118,-0.71529745 +1.09400000,6.18999911,-1.44789759,-15.53863600,6.21481679,-1.45200546,1.02992011,-0.24130156,-2.59908176,0.46156181,2.99604597,-0.72295057 +1.09500000,6.18853588,-1.46323249,-15.53501684,6.21335712,-1.46733811,1.02967625,-0.24385738,-2.59847643,0.46132806,2.99602077,-0.73060179 +1.09600000,6.18705731,-1.47856377,-15.53135934,6.21188212,-1.48266714,1.02942984,-0.24641260,-2.59786470,0.46109442,2.99599558,-0.73825107 +1.09700000,6.18556342,-1.49389141,-15.52766353,6.21039179,-1.49799250,1.02918087,-0.24896722,-2.59724655,0.46086086,2.99597040,-0.74589841 +1.09800000,6.18405421,-1.50921536,-15.52392940,6.20888613,-1.51331418,1.02892935,-0.25152121,-2.59662200,0.46062741,2.99594523,-0.75354378 +1.09900000,6.18252967,-1.52453558,-15.52015697,6.20736516,-1.52863212,1.02867527,-0.25407459,-2.59599104,0.46039405,2.99592007,-0.76118716 +1.10000000,6.18098982,-1.53985205,-15.51634624,6.20582887,-1.54394628,1.02841865,-0.25662734,-2.59535367,0.46016079,2.99589493,-0.76882854 +1.10100000,6.17943465,-1.55516471,-15.51249723,6.20427727,-1.55925664,1.02815947,-0.25917946,-2.59470990,0.45992763,2.99586979,-0.77646790 +1.10200000,6.17786418,-1.57047354,-15.50860994,6.20271036,-1.57456315,1.02789774,-0.26173093,-2.59405973,0.45969456,2.99584466,-0.78410522 +1.10300000,6.17627840,-1.58577850,-15.50468439,6.20112814,-1.58986578,1.02763345,-0.26428177,-2.59340316,0.45946160,2.99581954,-0.79174048 +1.10400000,6.17467732,-1.60107954,-15.50072058,6.19953063,-1.60516448,1.02736662,-0.26683194,-2.59274019,0.45922873,2.99579443,-0.79937365 +1.10500000,6.17306094,-1.61637663,-15.49671852,6.19791782,-1.62045922,1.02709724,-0.26938147,-2.59207082,0.45899597,2.99576933,-0.80700473 +1.10600000,6.17142928,-1.63166973,-15.49267823,6.19628971,-1.63574997,1.02682531,-0.27193032,-2.59139506,0.45876331,2.99574424,-0.81463370 +1.10700000,6.16978232,-1.64695880,-15.48859971,6.19464632,-1.65103668,1.02655083,-0.27447851,-2.59071290,0.45853075,2.99571916,-0.82226053 +1.10800000,6.16812007,-1.66224382,-15.48448298,6.19298764,-1.66631931,1.02627381,-0.27702602,-2.59002435,0.45829829,2.99569410,-0.82988520 +1.10900000,6.16644255,-1.67752473,-15.48032803,6.19131368,-1.68159783,1.02599423,-0.27957284,-2.58932941,0.45806593,2.99566904,-0.83750770 +1.11000000,6.16474975,-1.69280150,-15.47613490,6.18962444,-1.69687220,1.02571211,-0.28211898,-2.58862808,0.45783368,2.99564400,-0.84512801 +1.11100000,6.16304167,-1.70807409,-15.47190357,6.18791994,-1.71214239,1.02542745,-0.28466441,-2.58792036,0.45760154,2.99561896,-0.85274612 +1.11200000,6.16131833,-1.72334247,-15.46763407,6.18620016,-1.72740835,1.02514024,-0.28720915,-2.58720626,0.45736949,2.99559394,-0.86036199 +1.11300000,6.15957972,-1.73860660,-15.46332641,6.18446512,-1.74267005,1.02485049,-0.28975318,-2.58648577,0.45713756,2.99556892,-0.86797561 +1.11400000,6.15782586,-1.75386644,-15.45898059,6.18271482,-1.75792745,1.02455819,-0.29229649,-2.58575890,0.45690572,2.99554392,-0.87558698 +1.11500000,6.15605673,-1.76912195,-15.45459663,6.18094927,-1.77318052,1.02426335,-0.29483908,-2.58502565,0.45667400,2.99551893,-0.88319605 +1.11600000,6.15427236,-1.78437310,-15.45017453,6.17916846,-1.78842920,1.02396597,-0.29738095,-2.58428602,0.45644238,2.99549395,-0.89080282 +1.11700000,6.15247274,-1.79961984,-15.44571431,6.17737241,-1.80367348,1.02366605,-0.29992208,-2.58354002,0.45621087,2.99546898,-0.89840728 +1.11800000,6.15065788,-1.81486214,-15.44121599,6.17556112,-1.81891330,1.02336359,-0.30246247,-2.58278764,0.45597947,2.99544402,-0.90600939 +1.11900000,6.14882778,-1.83009997,-15.43667956,6.17373459,-1.83414864,1.02305858,-0.30500211,-2.58202889,0.45574817,2.99541908,-0.91360914 +1.12000000,6.14698245,-1.84533328,-15.43210504,6.17189282,-1.84937945,1.02275104,-0.30754100,-2.58126377,0.45551699,2.99539414,-0.92120652 +1.12100000,6.14512188,-1.86056203,-15.42749245,6.17003583,-1.86460569,1.02244096,-0.31007913,-2.58049228,0.45528591,2.99536922,-0.92880149 +1.12200000,6.14324610,-1.87578620,-15.42284179,6.16816361,-1.87982734,1.02212835,-0.31261650,-2.57971442,0.45505495,2.99534431,-0.93639406 +1.12300000,6.14135509,-1.89100573,-15.41815308,6.16627618,-1.89504435,1.02181319,-0.31515310,-2.57893020,0.45482409,2.99531940,-0.94398419 +1.12400000,6.13944887,-1.90622060,-15.41342632,6.16437352,-1.91025668,1.02149551,-0.31768892,-2.57813961,0.45459335,2.99529451,-0.95157187 +1.12500000,6.13752744,-1.92143077,-15.40866153,6.16245566,-1.92546430,1.02117528,-0.32022395,-2.57734267,0.45436272,2.99526964,-0.95915708 +1.12600000,6.13559080,-1.93663620,-15.40385873,6.16052260,-1.94066717,1.02085252,-0.32275820,-2.57653936,0.45413220,2.99524477,-0.96673980 +1.12700000,6.13363897,-1.95183685,-15.39901791,6.15857433,-1.95586525,1.02052723,-0.32529164,-2.57572970,0.45390180,2.99521992,-0.97432001 +1.12800000,6.13167194,-1.96703268,-15.39413910,6.15661087,-1.97105850,1.02019941,-0.32782429,-2.57491368,0.45367151,2.99519507,-0.98189770 +1.12900000,6.12968971,-1.98222366,-15.38922231,6.15463222,-1.98624689,1.01986905,-0.33035613,-2.57409130,0.45344133,2.99517024,-0.98947284 +1.13000000,6.12769230,-1.99740974,-15.38426754,6.15263838,-2.00143038,1.01953616,-0.33288715,-2.57326258,0.45321127,2.99514542,-0.99704542 +1.13100000,6.12567971,-2.01259090,-15.37927482,6.15062936,-2.01660893,1.01920075,-0.33541735,-2.57242750,0.45298133,2.99512062,-1.00461541 +1.13200000,6.12365194,-2.02776710,-15.37424415,6.14860516,-2.03178251,1.01886280,-0.33794672,-2.57158608,0.45275150,2.99509582,-1.01218281 +1.13300000,6.12160901,-2.04293829,-15.36917554,6.14656579,-2.04695107,1.01852232,-0.34047526,-2.57073832,0.45252178,2.99507104,-1.01974759 +1.13400000,6.11955090,-2.05810444,-15.36406902,6.14451126,-2.06211458,1.01817932,-0.34300296,-2.56988421,0.45229219,2.99504627,-1.02730973 +1.13500000,6.11747764,-2.07326551,-15.35892458,6.14244157,-2.07727301,1.01783379,-0.34552981,-2.56902376,0.45206271,2.99502151,-1.03486921 +1.13600000,6.11538921,-2.08842146,-15.35374225,6.14035672,-2.09242631,1.01748574,-0.34805581,-2.56815697,0.45183335,2.99499676,-1.04242602 +1.13700000,6.11328564,-2.10357227,-15.34852203,6.13825671,-2.10757444,1.01713516,-0.35058095,-2.56728385,0.45160411,2.99497203,-1.04998014 +1.13800000,6.11116692,-2.11871788,-15.34326394,6.13614157,-2.12271738,1.01678205,-0.35310523,-2.56640439,0.45137499,2.99494731,-1.05753155 +1.13900000,6.10903307,-2.13385826,-15.33796799,6.13401128,-2.13785507,1.01642642,-0.35562863,-2.56551859,0.45114599,2.99492260,-1.06508022 +1.14000000,6.10688407,-2.14899338,-15.33263420,6.13186586,-2.15298750,1.01606827,-0.35815116,-2.56462647,0.45091711,2.99489790,-1.07262615 +1.14100000,6.10471995,-2.16412320,-15.32726258,6.12970531,-2.16811461,1.01570760,-0.36067280,-2.56372802,0.45068835,2.99487322,-1.08016932 +1.14200000,6.10254070,-2.17924768,-15.32185314,6.12752963,-2.18323637,1.01534440,-0.36319356,-2.56282324,0.45045971,2.99484855,-1.08770969 +1.14300000,6.10034633,-2.19436678,-15.31640589,6.12533884,-2.19835274,1.01497869,-0.36571341,-2.56191214,0.45023119,2.99482389,-1.09524727 +1.14400000,6.09813685,-2.20948046,-15.31092085,6.12313293,-2.21346369,1.01461046,-0.36823237,-2.56099472,0.45000280,2.99479924,-1.10278202 +1.14500000,6.09591227,-2.22458870,-15.30539803,6.12091191,-2.22856918,1.01423971,-0.37075041,-2.56007098,0.44977453,2.99477461,-1.11031393 +1.14600000,6.09367257,-2.23969144,-15.29983745,6.11867579,-2.24366917,1.01386644,-0.37326755,-2.55914093,0.44954639,2.99474999,-1.11784298 +1.14700000,6.09141779,-2.25478866,-15.29423912,6.11642458,-2.25876362,1.01349066,-0.37578376,-2.55820455,0.44931837,2.99472538,-1.12536916 +1.14800000,6.08914791,-2.26988032,-15.28860305,6.11415827,-2.27385250,1.01311236,-0.37829904,-2.55726187,0.44909047,2.99470079,-1.13289244 +1.14900000,6.08686294,-2.28496637,-15.28292926,6.11187687,-2.28893577,1.01273154,-0.38081339,-2.55631288,0.44886270,2.99467621,-1.14041280 +1.15000000,6.08456289,-2.30004679,-15.27721776,6.10958040,-2.30401339,1.01234822,-0.38332680,-2.55535758,0.44863506,2.99465164,-1.14793023 +1.15100000,6.08224777,-2.31512153,-15.27146856,6.10726885,-2.31908533,1.01196238,-0.38583927,-2.55439597,0.44840754,2.99462709,-1.15544472 +1.15200000,6.07991758,-2.33019056,-15.26568168,6.10494223,-2.33415154,1.01157403,-0.38835078,-2.55342806,0.44818015,2.99460255,-1.16295623 +1.15300000,6.07757233,-2.34525384,-15.25985714,6.10260055,-2.34921200,1.01118317,-0.39086133,-2.55245385,0.44795289,2.99457802,-1.17046475 +1.15400000,6.07521201,-2.36031133,-15.25399494,6.10024381,-2.36426666,1.01078979,-0.39337092,-2.55147335,0.44772576,2.99455350,-1.17797027 +1.15500000,6.07283665,-2.37536300,-15.24809510,6.09787201,-2.37931548,1.01039392,-0.39587954,-2.55048655,0.44749875,2.99452900,-1.18547277 +1.15600000,6.07044624,-2.39040881,-15.24215765,6.09548518,-2.39435844,1.00999553,-0.39838718,-2.54949345,0.44727188,2.99450451,-1.19297222 +1.15700000,6.06804079,-2.40544872,-15.23618258,6.09308330,-2.40939548,1.00959463,-0.40089384,-2.54849406,0.44704513,2.99448004,-1.20046861 +1.15800000,6.06562031,-2.42048270,-15.23016992,6.09066639,-2.42442658,1.00919123,-0.40339951,-2.54748839,0.44681852,2.99445558,-1.20796193 +1.15900000,6.06318480,-2.43551070,-15.22411968,6.08823445,-2.43945170,1.00878533,-0.40590419,-2.54647643,0.44659204,2.99443113,-1.21545214 +1.16000000,6.06073427,-2.45053269,-15.21803188,6.08578749,-2.45447080,1.00837692,-0.40840786,-2.54545819,0.44636569,2.99440670,-1.22293924 +1.16100000,6.05826872,-2.46554864,-15.21190652,6.08332551,-2.46948385,1.00796601,-0.41091053,-2.54443366,0.44613947,2.99438228,-1.23042321 +1.16200000,6.05578816,-2.48055850,-15.20574364,6.08084852,-2.48449080,1.00755260,-0.41341218,-2.54340286,0.44591338,2.99435788,-1.23790402 +1.16300000,6.05329260,-2.49556225,-15.19954323,6.07835653,-2.49949162,1.00713669,-0.41591281,-2.54236578,0.44568743,2.99433348,-1.24538166 +1.16400000,6.05078204,-2.51055983,-15.19330532,6.07584954,-2.51448628,1.00671827,-0.41841242,-2.54132243,0.44546161,2.99430911,-1.25285612 +1.16500000,6.04825649,-2.52555122,-15.18702993,6.07332756,-2.52947473,1.00629736,-0.42091099,-2.54027281,0.44523593,2.99428474,-1.26032736 +1.16600000,6.04571595,-2.54053638,-15.18071706,6.07079059,-2.54445693,1.00587396,-0.42340853,-2.53921692,0.44501038,2.99426039,-1.26779538 +1.16700000,6.04316044,-2.55551527,-15.17436673,6.06823865,-2.55943286,1.00544805,-0.42590502,-2.53815477,0.44478497,2.99423606,-1.27526016 +1.16800000,6.04058995,-2.57048786,-15.16797896,6.06567173,-2.57440248,1.00501965,-0.42840046,-2.53708635,0.44455970,2.99421174,-1.28272167 +1.16900000,6.03800449,-2.58545410,-15.16155377,6.06308984,-2.58936574,1.00458875,-0.43089484,-2.53601168,0.44433456,2.99418743,-1.29017991 +1.17000000,6.03540408,-2.60041396,-15.15509117,6.06049300,-2.60432262,1.00415537,-0.43338816,-2.53493074,0.44410956,2.99416314,-1.29763484 +1.17100000,6.03278871,-2.61536741,-15.14859117,6.05788120,-2.61927306,1.00371949,-0.43588041,-2.53384355,0.44388469,2.99413886,-1.30508646 +1.17200000,6.03015840,-2.63031441,-15.14205379,6.05525446,-2.63421705,1.00328111,-0.43837158,-2.53275011,0.44365997,2.99411460,-1.31253475 +1.17300000,6.02751314,-2.64525491,-15.13547906,6.05261277,-2.64915453,1.00284025,-0.44086167,-2.53165042,0.44343538,2.99409035,-1.31997968 +1.17400000,6.02485295,-2.66018889,-15.12886698,6.04995615,-2.66408548,1.00239690,-0.44335068,-2.53054448,0.44321093,2.99406611,-1.32742124 +1.17500000,6.02217784,-2.67511630,-15.12221757,6.04728460,-2.67900986,1.00195106,-0.44583859,-2.52943230,0.44298663,2.99404189,-1.33485941 +1.17600000,6.01948780,-2.69003711,-15.11553084,6.04459813,-2.69392762,1.00150274,-0.44832540,-2.52831388,0.44276246,2.99401769,-1.34229418 +1.17700000,6.01678285,-2.70495129,-15.10880682,6.04189675,-2.70883874,1.00105193,-0.45081110,-2.52718922,0.44253844,2.99399350,-1.34972551 +1.17800000,6.01406299,-2.71985879,-15.10204552,6.03918046,-2.72374318,1.00059863,-0.45329570,-2.52605833,0.44231456,2.99396932,-1.35715341 +1.17900000,6.01132823,-2.73475958,-15.09524696,6.03644926,-2.73864089,1.00014285,-0.45577917,-2.52492120,0.44209082,2.99394516,-1.36457784 +1.18000000,6.00857858,-2.74965362,-15.08841115,6.03370318,-2.75353185,0.99968459,-0.45826152,-2.52377784,0.44186722,2.99392102,-1.37199879 +1.18100000,6.00581404,-2.76454088,-15.08153812,6.03094220,-2.76841601,0.99922385,-0.46074274,-2.52262825,0.44164377,2.99389689,-1.37941625 +1.18200000,6.00303462,-2.77942132,-15.07462787,6.02816635,-2.78329334,0.99876063,-0.46322282,-2.52147244,0.44142046,2.99387277,-1.38683018 +1.18300000,6.00024032,-2.79429490,-15.06768042,6.02537562,-2.79816381,0.99829492,-0.46570176,-2.52031041,0.44119729,2.99384867,-1.39424059 +1.18400000,5.99743116,-2.80916158,-15.06069580,6.02257002,-2.81302737,0.99782674,-0.46817955,-2.51914216,0.44097427,2.99382458,-1.40164744 +1.18500000,5.99460714,-2.82402133,-15.05367401,6.01974957,-2.82788399,0.99735609,-0.47065618,-2.51796769,0.44075140,2.99380051,-1.40905072 +1.18600000,5.99176826,-2.83887412,-15.04661509,6.01691426,-2.84273363,0.99688296,-0.47313165,-2.51678701,0.44052867,2.99377646,-1.41645041 +1.18700000,5.98891454,-2.85371990,-15.03951903,6.01406410,-2.85757626,0.99640735,-0.47560596,-2.51560013,0.44030609,2.99375242,-1.42384649 +1.18800000,5.98604599,-2.86855864,-15.03238587,6.01119911,-2.87241183,0.99592927,-0.47807909,-2.51440703,0.44008365,2.99372840,-1.43123895 +1.18900000,5.98316259,-2.88339030,-15.02521562,6.00831928,-2.88724032,0.99544872,-0.48055104,-2.51320773,0.43986137,2.99370439,-1.43862777 +1.19000000,5.98026438,-2.89821484,-15.01800829,6.00542463,-2.90206169,0.99496570,-0.48302181,-2.51200223,0.43963923,2.99368039,-1.44601293 +1.19100000,5.97735135,-2.91303224,-15.01076391,6.00251516,-2.91687589,0.99448021,-0.48549139,-2.51079053,0.43941724,2.99365642,-1.45339440 +1.19200000,5.97442351,-2.92784245,-15.00348249,5.99959088,-2.93168290,0.99399225,-0.48795976,-2.50957263,0.43919540,2.99363246,-1.46077218 +1.19300000,5.97148086,-2.94264543,-14.99616405,5.99665179,-2.94648268,0.99350182,-0.49042694,-2.50834855,0.43897372,2.99360851,-1.46814625 +1.19400000,5.96852342,-2.95744115,-14.98880860,5.99369791,-2.96127518,0.99300893,-0.49289290,-2.50711827,0.43875218,2.99358458,-1.47551658 +1.19500000,5.96555119,-2.97222958,-14.98141618,5.99072925,-2.97606038,0.99251357,-0.49535765,-2.50588181,0.43853079,2.99356066,-1.48288316 +1.19600000,5.96256418,-2.98701067,-14.97398679,5.98774580,-2.99083823,0.99201575,-0.49782117,-2.50463917,0.43830955,2.99353677,-1.49024598 +1.19700000,5.95956239,-3.00178439,-14.96652045,5.98474757,-3.00560871,0.99151547,-0.50028347,-2.50339034,0.43808847,2.99351288,-1.49760500 +1.19800000,5.95654584,-3.01655071,-14.95901719,5.98173458,-3.02037176,0.99101272,-0.50274453,-2.50213534,0.43786754,2.99348902,-1.50496023 +1.19900000,5.95351453,-3.03130958,-14.95147701,5.97870683,-3.03512737,0.99050752,-0.50520435,-2.50087416,0.43764676,2.99346517,-1.51231162 +1.20000000,5.95046847,-3.04606097,-14.94389994,5.97566433,-3.04987549,0.98999985,-0.50766293,-2.49960682,0.43742614,2.99344133,-1.51965918 +1.20100000,5.94740767,-3.06080485,-14.93628600,5.97260708,-3.06461608,0.98948973,-0.51012025,-2.49833330,0.43720567,2.99341751,-1.52700288 +1.20200000,5.94433213,-3.07554118,-14.92863521,5.96953510,-3.07934911,0.98897716,-0.51257631,-2.49705363,0.43698536,2.99339371,-1.53434271 +1.20300000,5.94124186,-3.09026991,-14.92094758,5.96644839,-3.09407454,0.98846213,-0.51503111,-2.49576779,0.43676520,2.99336993,-1.54167864 +1.20400000,5.93813687,-3.10499102,-14.91322313,5.96334695,-3.10879234,0.98794464,-0.51748464,-2.49447579,0.43654520,2.99334616,-1.54901065 +1.20500000,5.93501716,-3.11970447,-14.90546189,5.96023081,-3.12350247,0.98742470,-0.51993689,-2.49317764,0.43632535,2.99332240,-1.55633874 +1.20600000,5.93188275,-3.13441023,-14.89766387,5.95709995,-3.13820489,0.98690232,-0.52238786,-2.49187333,0.43610567,2.99329867,-1.56366288 +1.20700000,5.92873364,-3.14910825,-14.88982909,5.95395440,-3.15289957,0.98637748,-0.52483754,-2.49056288,0.43588614,2.99327495,-1.57098305 +1.20800000,5.92556984,-3.16379849,-14.88195757,5.95079415,-3.16758646,0.98585019,-0.52728592,-2.48924628,0.43566676,2.99325124,-1.57829924 +1.20900000,5.92239136,-3.17848094,-14.87404934,5.94761923,-3.18226555,0.98532046,-0.52973300,-2.48792354,0.43544755,2.99322756,-1.58561143 +1.21000000,5.91919821,-3.19315554,-14.86610440,5.94442963,-3.19693678,0.98478828,-0.53217878,-2.48659466,0.43522850,2.99320389,-1.59291960 +1.21100000,5.91599039,-3.20782226,-14.85812278,5.94122536,-3.21160012,0.98425366,-0.53462324,-2.48525965,0.43500960,2.99318023,-1.60022373 +1.21200000,5.91276790,-3.22248106,-14.85010450,5.93800643,-3.22625554,0.98371659,-0.53706639,-2.48391850,0.43479087,2.99315660,-1.60752380 +1.21300000,5.90953077,-3.23713192,-14.84204958,5.93477285,-3.24090299,0.98317708,-0.53950821,-2.48257123,0.43457230,2.99313298,-1.61481981 +1.21400000,5.90627900,-3.25177478,-14.83395803,5.93152463,-3.25554245,0.98263513,-0.54194869,-2.48121783,0.43435388,2.99310938,-1.62211172 +1.21500000,5.90301259,-3.26640963,-14.82582989,5.92826177,-3.27017388,0.98209075,-0.54438785,-2.47985830,0.43413563,2.99308579,-1.62939952 +1.21600000,5.89973155,-3.28103641,-14.81766516,5.92498428,-3.28479724,0.98154392,-0.54682565,-2.47849266,0.43391755,2.99306222,-1.63668320 +1.21700000,5.89643590,-3.29565510,-14.80946388,5.92169217,-3.29941250,0.98099466,-0.54926211,-2.47712091,0.43369962,2.99303867,-1.64396274 +1.21800000,5.89312563,-3.31026566,-14.80122605,5.91838546,-3.31401961,0.98044296,-0.55169721,-2.47574304,0.43348186,2.99301514,-1.65123811 +1.21900000,5.88980076,-3.32486805,-14.79295170,5.91506414,-3.32861855,0.97988883,-0.55413096,-2.47435906,0.43326427,2.99299162,-1.65850930 +1.22000000,5.88646130,-3.33946223,-14.78464085,5.91172822,-3.34320927,0.97933227,-0.55656333,-2.47296898,0.43304684,2.99296812,-1.66577630 +1.22100000,5.88310725,-3.35404818,-14.77629352,5.90837772,-3.35779174,0.97877327,-0.55899433,-2.47157279,0.43282957,2.99294464,-1.67303908 +1.22200000,5.87973863,-3.36862585,-14.76790973,5.90501264,-3.37236593,0.97821185,-0.56142395,-2.47017051,0.43261247,2.99292117,-1.68029763 +1.22300000,5.87635543,-3.38319520,-14.75948950,5.90163299,-3.38693180,0.97764800,-0.56385219,-2.46876213,0.43239554,2.99289773,-1.68755193 +1.22400000,5.87295768,-3.39775622,-14.75103286,5.89823878,-3.40148931,0.97708172,-0.56627903,-2.46734766,0.43217877,2.99287430,-1.69480196 +1.22500000,5.86954537,-3.41230884,-14.74253982,5.89483002,-3.41603843,0.97651301,-0.56870448,-2.46592710,0.43196217,2.99285088,-1.70204771 +1.22600000,5.86611851,-3.42685305,-14.73401040,5.89140671,-3.43057912,0.97594188,-0.57112853,-2.46450046,0.43174574,2.99282749,-1.70928915 +1.22700000,5.86267712,-3.44138880,-14.72544463,5.88796886,-3.44511134,0.97536833,-0.57355116,-2.46306774,0.43152948,2.99280411,-1.71652628 +1.22800000,5.85922121,-3.45591606,-14.71684252,5.88451649,-3.45963507,0.97479236,-0.57597238,-2.46162894,0.43131338,2.99278075,-1.72375906 +1.22900000,5.85575077,-3.47043479,-14.70820410,5.88104959,-3.47415026,0.97421397,-0.57839218,-2.46018406,0.43109746,2.99275741,-1.73098749 +1.23000000,5.85226583,-3.48494496,-14.69952939,5.87756819,-3.48865687,0.97363316,-0.58081055,-2.45873312,0.43088170,2.99273409,-1.73821154 +1.23100000,5.84876638,-3.49944654,-14.69081841,5.87407228,-3.50315488,0.97304993,-0.58322749,-2.45727611,0.43066612,2.99271078,-1.74543121 +1.23200000,5.84525244,-3.51393947,-14.68207118,5.87056188,-3.51764425,0.97246429,-0.58564299,-2.45581303,0.43045071,2.99268749,-1.75264646 +1.23300000,5.84172402,-3.52842374,-14.67328773,5.86703700,-3.53212493,0.97187623,-0.58805705,-2.45434390,0.43023546,2.99266422,-1.75985729 +1.23400000,5.83818112,-3.54289930,-14.66446807,5.86349764,-3.54659690,0.97128576,-0.59046965,-2.45286871,0.43002040,2.99264097,-1.76706367 +1.23500000,5.83462375,-3.55736612,-14.65561223,5.85994381,-3.56106012,0.97069288,-0.59288080,-2.45138747,0.42980550,2.99261774,-1.77426560 +1.23600000,5.83105193,-3.57182416,-14.64672022,5.85637552,-3.57551455,0.97009759,-0.59529048,-2.44990018,0.42959078,2.99259452,-1.78146304 +1.23700000,5.82746566,-3.58627339,-14.63779208,5.85279278,-3.58996016,0.96949989,-0.59769870,-2.44840684,0.42937623,2.99257133,-1.78865599 +1.23800000,5.82386494,-3.60071377,-14.62882782,5.84919560,-3.60439692,0.96889979,-0.60010544,-2.44690746,0.42916185,2.99254815,-1.79584442 +1.23900000,5.82024980,-3.61514526,-14.61982746,5.84558399,-3.61882478,0.96829728,-0.60251070,-2.44540205,0.42894765,2.99252499,-1.80302832 +1.24000000,5.81662023,-3.62956784,-14.61079103,5.84195796,-3.63324371,0.96769236,-0.60491447,-2.44389060,0.42873363,2.99250185,-1.81020768 +1.24100000,5.81297625,-3.64398146,-14.60171855,5.83831751,-3.64765367,0.96708504,-0.60731675,-2.44237312,0.42851978,2.99247872,-1.81738246 +1.24200000,5.80931786,-3.65838609,-14.59261004,5.83466265,-3.66205464,0.96647533,-0.60971753,-2.44084962,0.42830610,2.99245562,-1.82455266 +1.24300000,5.80564508,-3.67278169,-14.58346552,5.83099340,-3.67644656,0.96586321,-0.61211681,-2.43932009,0.42809261,2.99243253,-1.83171826 +1.24400000,5.80195791,-3.68716823,-14.57428502,5.82730976,-3.69082942,0.96524870,-0.61451458,-2.43778454,0.42787929,2.99240947,-1.83887925 +1.24500000,5.79825637,-3.70154567,-14.56506856,5.82361174,-3.70520317,0.96463178,-0.61691083,-2.43624298,0.42766615,2.99238642,-1.84603559 +1.24600000,5.79454045,-3.71591398,-14.55581617,5.81989936,-3.71956778,0.96401248,-0.61930556,-2.43469541,0.42745319,2.99236339,-1.85318728 +1.24700000,5.79081018,-3.73027312,-14.54652785,5.81617261,-3.73392321,0.96339078,-0.62169876,-2.43314183,0.42724041,2.99234038,-1.86033431 +1.24800000,5.78706556,-3.74462305,-14.53720365,5.81243151,-3.74826943,0.96276669,-0.62409043,-2.43158225,0.42702780,2.99231738,-1.86747664 +1.24900000,5.78330659,-3.75896375,-14.52784357,5.80867608,-3.76260640,0.96214021,-0.62648056,-2.43001667,0.42681538,2.99229441,-1.87461426 +1.25000000,5.77953330,-3.77329517,-14.51844765,5.80490630,-3.77693409,0.96151134,-0.62886914,-2.42844509,0.42660314,2.99227146,-1.88174717 +1.25100000,5.77574568,-3.78761728,-14.50901591,5.80112221,-3.79125246,0.96088008,-0.63125617,-2.42686752,0.42639108,2.99224852,-1.88887533 +1.25200000,5.77194375,-3.80193005,-14.49954836,5.79732380,-3.80556147,0.96024644,-0.63364164,-2.42528396,0.42617920,2.99222561,-1.89599874 +1.25300000,5.76812752,-3.81623343,-14.49004504,5.79351109,-3.81986109,0.95961042,-0.63602555,-2.42369441,0.42596750,2.99220271,-1.90311736 +1.25400000,5.76429699,-3.83052740,-14.48050597,5.78968408,-3.83415129,0.95897201,-0.63840789,-2.42209889,0.42575598,2.99217983,-1.91023120 +1.25500000,5.76045218,-3.84481192,-14.47093117,5.78584279,-3.84843202,0.95833122,-0.64078865,-2.42049739,0.42554465,2.99215697,-1.91734023 +1.25600000,5.75659309,-3.85908695,-14.46132066,5.78198722,-3.86270326,0.95768805,-0.64316783,-2.41888992,0.42533351,2.99213414,-1.92444443 +1.25700000,5.75271974,-3.87335245,-14.45167447,5.77811739,-3.87696498,0.95704251,-0.64554543,-2.41727648,0.42512254,2.99211132,-1.93154378 +1.25800000,5.74883213,-3.88760841,-14.44199262,5.77423330,-3.89121712,0.95639459,-0.64792143,-2.41565707,0.42491176,2.99208852,-1.93863828 +1.25900000,5.74493027,-3.90185476,-14.43227514,5.77033496,-3.90545966,0.95574429,-0.65029584,-2.41403171,0.42470117,2.99206574,-1.94572789 +1.26000000,5.74101418,-3.91609150,-14.42252204,5.76642238,-3.91969257,0.95509162,-0.65266864,-2.41240039,0.42449076,2.99204297,-1.95281261 +1.26100000,5.73708386,-3.93031856,-14.41273336,5.76249557,-3.93391580,0.95443658,-0.65503983,-2.41076311,0.42428054,2.99202023,-1.95989241 +1.26200000,5.73313933,-3.94453594,-14.40290912,5.75855455,-3.94812933,0.95377917,-0.65740940,-2.40911989,0.42407051,2.99199751,-1.96696729 +1.26300000,5.72918058,-3.95874357,-14.39304934,5.75459932,-3.96233312,0.95311939,-0.65977735,-2.40747072,0.42386066,2.99197481,-1.97403721 +1.26400000,5.72520764,-3.97294144,-14.38315405,5.75062989,-3.97652713,0.95245725,-0.66214367,-2.40581562,0.42365100,2.99195213,-1.98110217 +1.26500000,5.72122051,-3.98712951,-14.37322326,5.74664627,-3.99071133,0.95179274,-0.66450836,-2.40415457,0.42344153,2.99192947,-1.98816215 +1.26600000,5.71721921,-4.00130774,-14.36325702,5.74264847,-4.00488568,0.95112587,-0.66687141,-2.40248760,0.42323225,2.99190682,-1.99521713 +1.26700000,5.71320373,-4.01547610,-14.35325533,5.73863650,-4.01905015,0.95045664,-0.66923282,-2.40081469,0.42302316,2.99188420,-2.00226709 +1.26800000,5.70917410,-4.02963455,-14.34321822,5.73461037,-4.03320471,0.94978505,-0.67159257,-2.39913587,0.42281425,2.99186160,-2.00931202 +1.26900000,5.70513031,-4.04378305,-14.33314573,5.73057009,-4.04734931,0.94911109,-0.67395067,-2.39745112,0.42260554,2.99183902,-2.01635190 +1.27000000,5.70107239,-4.05792158,-14.32303787,5.72651568,-4.06148392,0.94843479,-0.67630710,-2.39576046,0.42239702,2.99181645,-2.02338671 +1.27100000,5.69700034,-4.07205010,-14.31289467,5.72244713,-4.07560852,0.94775613,-0.67866186,-2.39406389,0.42218869,2.99179391,-2.03041644 +1.27200000,5.69291417,-4.08616857,-14.30271615,5.71836446,-4.08972306,0.94707511,-0.68101495,-2.39236141,0.42198056,2.99177139,-2.03744106 +1.27300000,5.68881390,-4.10027695,-14.29250235,5.71426769,-4.10382751,0.94639174,-0.68336636,-2.39065302,0.42177261,2.99174889,-2.04446056 +1.27400000,5.68469952,-4.11437522,-14.28225327,5.71015681,-4.11792183,0.94570603,-0.68571609,-2.38893874,0.42156486,2.99172641,-2.05147493 +1.27500000,5.68057106,-4.12846334,-14.27196896,5.70603185,-4.13200599,0.94501796,-0.68806412,-2.38721856,0.42135730,2.99170395,-2.05848414 +1.27600000,5.67642852,-4.14254127,-14.26164943,5.70189280,-4.14607995,0.94432755,-0.69041045,-2.38549250,0.42114994,2.99168151,-2.06548819 +1.27700000,5.67227191,-4.15660898,-14.25129471,5.69773969,-4.16014369,0.94363480,-0.69275508,-2.38376054,0.42094277,2.99165909,-2.07248704 +1.27800000,5.66810124,-4.17066644,-14.24090483,5.69357252,-4.17419716,0.94293970,-0.69509800,-2.38202271,0.42073579,2.99163669,-2.07948069 +1.27900000,5.66391653,-4.18471360,-14.23047981,5.68939130,-4.18824033,0.94224226,-0.69743921,-2.38027900,0.42052901,2.99161431,-2.08646912 +1.28000000,5.65971778,-4.19875044,-14.22001968,5.68519604,-4.20227317,0.94154248,-0.69977869,-2.37852941,0.42032243,2.99159195,-2.09345231 +1.28100000,5.65550500,-4.21277691,-14.20952446,5.68098676,-4.21629564,0.94084037,-0.70211645,-2.37677396,0.42011605,2.99156962,-2.10043025 +1.28200000,5.65127821,-4.22679300,-14.19899418,5.67676345,-4.23030770,0.94013591,-0.70445248,-2.37501264,0.41990986,2.99154730,-2.10740291 +1.28300000,5.64703741,-4.24079865,-14.18842887,5.67252614,-4.24430933,0.93942913,-0.70678677,-2.37324546,0.41970387,2.99152501,-2.11437029 +1.28400000,5.64278261,-4.25479384,-14.17782854,5.66827484,-4.25830049,0.93872001,-0.70911931,-2.37147242,0.41949807,2.99150273,-2.12133236 +1.28500000,5.63851384,-4.26877853,-14.16719324,5.66400955,-4.27228114,0.93800856,-0.71145010,-2.36969354,0.41929248,2.99148048,-2.12828910 +1.28600000,5.63423108,-4.28275269,-14.15652297,5.65973028,-4.28625124,0.93729478,-0.71377914,-2.36790880,0.41908708,2.99145825,-2.13524051 +1.28700000,5.62993437,-4.29671628,-14.14581778,5.65543705,-4.30021077,0.93657867,-0.71610642,-2.36611823,0.41888189,2.99143603,-2.14218655 +1.28800000,5.62562370,-4.31066927,-14.13507768,5.65112986,-4.31415969,0.93586024,-0.71843193,-2.36432181,0.41867689,2.99141384,-2.14912723 +1.28900000,5.62129909,-4.32461163,-14.12430271,5.64680873,-4.32809797,0.93513948,-0.72075567,-2.36251957,0.41847210,2.99139168,-2.15606251 +1.29000000,5.61696054,-4.33854331,-14.11349289,5.64247367,-4.34202557,0.93441641,-0.72307763,-2.36071149,0.41826750,2.99136953,-2.16299239 +1.29100000,5.61260808,-4.35246429,-14.10264824,5.63812468,-4.35594245,0.93369101,-0.72539780,-2.35889759,0.41806311,2.99134740,-2.16991684 +1.29200000,5.60824170,-4.36637453,-14.09176879,5.63376179,-4.36984859,0.93296329,-0.72771619,-2.35707787,0.41785892,2.99132530,-2.17683585 +1.29300000,5.60386143,-4.38027399,-14.08085458,5.62938499,-4.38374394,0.93223326,-0.73003278,-2.35525233,0.41765493,2.99130321,-2.18374940 +1.29400000,5.59946727,-4.39416265,-14.06990562,5.62499430,-4.39762848,0.93150091,-0.73234757,-2.35342098,0.41745115,2.99128115,-2.19065748 +1.29500000,5.59505923,-4.40804047,-14.05892195,5.62058974,-4.41150216,0.93076625,-0.73466055,-2.35158382,0.41724757,2.99125911,-2.19756007 +1.29600000,5.59063732,-4.42190740,-14.04790358,5.61617130,-4.42536496,0.93002928,-0.73697172,-2.34974086,0.41704420,2.99123709,-2.20445714 +1.29700000,5.58620156,-4.43576343,-14.03685055,5.61173901,-4.43921684,0.92929000,-0.73928107,-2.34789211,0.41684102,2.99121509,-2.21134870 +1.29800000,5.58175195,-4.44960852,-14.02576289,5.60729287,-4.45305777,0.92854841,-0.74158860,-2.34603756,0.41663806,2.99119312,-2.21823471 +1.29900000,5.57728850,-4.46344262,-14.01464063,5.60283290,-4.46688771,0.92780452,-0.74389429,-2.34417722,0.41643530,2.99117116,-2.22511516 +1.30000000,5.57281124,-4.47726571,-14.00348378,5.59835910,-4.48070663,0.92705832,-0.74619815,-2.34231110,0.41623274,2.99114923,-2.23199004 +1.30100000,5.56832016,-4.49107775,-13.99229238,5.59387149,-4.49451450,0.92630982,-0.74850017,-2.34043919,0.41603040,2.99112732,-2.23885932 +1.30200000,5.56381528,-4.50487872,-13.98106645,5.58937008,-4.50831127,0.92555902,-0.75080035,-2.33856152,0.41582826,2.99110543,-2.24572300 +1.30300000,5.55929661,-4.51866856,-13.96980603,5.58485487,-4.52209692,0.92480592,-0.75309867,-2.33667807,0.41562632,2.99108357,-2.25258105 +1.30400000,5.55476417,-4.53244726,-13.95851113,5.58032589,-4.53587142,0.92405052,-0.75539513,-2.33478886,0.41542460,2.99106172,-2.25943346 +1.30500000,5.55021795,-4.54621478,-13.94718180,5.57578313,-4.54963472,0.92329283,-0.75768973,-2.33289388,0.41522308,2.99103990,-2.26628021 +1.30600000,5.54565798,-4.55997107,-13.93581805,5.57122662,-4.56338679,0.92253285,-0.75998246,-2.33099315,0.41502178,2.99101810,-2.27312129 +1.30700000,5.54108426,-4.57371612,-13.92441992,5.56665636,-4.57712761,0.92177058,-0.76227331,-2.32908667,0.41482068,2.99099632,-2.27995667 +1.30800000,5.53649681,-4.58744988,-13.91298743,5.56207237,-4.59085713,0.92100602,-0.76456229,-2.32717444,0.41461979,2.99097456,-2.28678635 +1.30900000,5.53189564,-4.60117232,-13.90152061,5.55747465,-4.60457532,0.92023917,-0.76684937,-2.32525647,0.41441912,2.99095283,-2.29361030 +1.31000000,5.52728076,-4.61488341,-13.89001949,5.55286322,-4.61828215,0.91947003,-0.76913457,-2.32333277,0.41421865,2.99093112,-2.30042851 +1.31100000,5.52265218,-4.62858311,-13.87848410,5.54823809,-4.63197759,0.91869861,-0.77141786,-2.32140333,0.41401840,2.99090943,-2.30724096 +1.31200000,5.51800990,-4.64227139,-13.86691446,5.54359927,-4.64566160,0.91792491,-0.77369926,-2.31946816,0.41381836,2.99088776,-2.31404764 +1.31300000,5.51335396,-4.65594822,-13.85531061,5.53894677,-4.65933415,0.91714894,-0.77597874,-2.31752727,0.41361853,2.99086612,-2.32084852 +1.31400000,5.50868434,-4.66961356,-13.84367257,5.53428061,-4.67299520,0.91637068,-0.77825631,-2.31558066,0.41341892,2.99084450,-2.32764360 +1.31500000,5.50400107,-4.68326738,-13.83200037,5.52960079,-4.68664472,0.91559015,-0.78053196,-2.31362833,0.41321951,2.99082290,-2.33443286 +1.31600000,5.49930417,-4.69690964,-13.82029405,5.52490732,-4.70028267,0.91480734,-0.78280568,-2.31167030,0.41302033,2.99080132,-2.34121627 +1.31700000,5.49459362,-4.71054031,-13.80855362,5.52020022,-4.71390903,0.91402226,-0.78507747,-2.30970657,0.41282135,2.99077977,-2.34799383 +1.31800000,5.48986947,-4.72415936,-13.79677912,5.51547951,-4.72752376,0.91323492,-0.78734733,-2.30773713,0.41262260,2.99075824,-2.35476551 +1.31900000,5.48513170,-4.73776675,-13.78497058,5.51074518,-4.74112682,0.91244530,-0.78961524,-2.30576200,0.41242406,2.99073673,-2.36153130 +1.32000000,5.48038034,-4.75136245,-13.77312802,5.50599726,-4.75471818,0.91165342,-0.79188121,-2.30378119,0.41222573,2.99071524,-2.36829119 +1.32100000,5.47561539,-4.76494643,-13.76125149,5.50123575,-4.76829781,0.91085928,-0.79414522,-2.30179468,0.41202762,2.99069378,-2.37504516 +1.32200000,5.47083687,-4.77851865,-13.74934099,5.49646066,-4.78186568,0.91006287,-0.79640727,-2.29980250,0.41182973,2.99067234,-2.38179318 +1.32300000,5.46604479,-4.79207909,-13.73739657,5.49167202,-4.79542175,0.90926420,-0.79866735,-2.29780464,0.41163205,2.99065092,-2.38853525 +1.32400000,5.46123916,-4.80562769,-13.72541826,5.48686983,-4.80896599,0.90846328,-0.80092547,-2.29580112,0.41143460,2.99062953,-2.39527135 +1.32500000,5.45642000,-4.81916444,-13.71340608,5.48205409,-4.82249836,0.90766009,-0.80318160,-2.29379193,0.41123736,2.99060816,-2.40200146 +1.32600000,5.45158731,-4.83268930,-13.70136006,5.47722483,-4.83601883,0.90685466,-0.80543576,-2.29177708,0.41104034,2.99058681,-2.40872557 +1.32700000,5.44674111,-4.84620224,-13.68928024,5.47238206,-4.84952737,0.90604697,-0.80768793,-2.28975657,0.41084354,2.99056549,-2.41544365 +1.32800000,5.44188141,-4.85970322,-13.67716663,5.46752578,-4.86302394,0.90523703,-0.80993811,-2.28773042,0.41064696,2.99054419,-2.42215570 +1.32900000,5.43700821,-4.87319220,-13.66501928,5.46265601,-4.87650851,0.90442485,-0.81218628,-2.28569862,0.41045060,2.99052291,-2.42886169 +1.33000000,5.43212154,-4.88666917,-13.65283822,5.45777277,-4.88998105,0.90361041,-0.81443246,-2.28366118,0.41025446,2.99050166,-2.43556162 +1.33100000,5.42722141,-4.90013407,-13.64062346,5.45287606,-4.90344153,0.90279374,-0.81667662,-2.28161810,0.41005855,2.99048043,-2.44225546 +1.33200000,5.42230782,-4.91358689,-13.62837505,5.44796589,-4.91688991,0.90197482,-0.81891877,-2.27956940,0.40986285,2.99045922,-2.44894320 +1.33300000,5.41738080,-4.92702758,-13.61609302,5.44304228,-4.93032615,0.90115366,-0.82115890,-2.27751507,0.40966738,2.99043804,-2.45562481 +1.33400000,5.41244034,-4.94045611,-13.60377738,5.43810524,-4.94375023,0.90033026,-0.82339700,-2.27545512,0.40947213,2.99041688,-2.46230030 +1.33500000,5.40748647,-4.95387245,-13.59142818,5.43315478,-4.95716212,0.89950463,-0.82563308,-2.27338956,0.40927710,2.99039574,-2.46896963 +1.33600000,5.40251919,-4.96727657,-13.57904544,5.42819092,-4.97056177,0.89867676,-0.82786711,-2.27131839,0.40908230,2.99037463,-2.47563280 +1.33700000,5.39753852,-4.98066844,-13.56662920,5.42321366,-4.98394915,0.89784666,-0.83009910,-2.26924161,0.40888772,2.99035354,-2.48228978 +1.33800000,5.39254447,-4.99404801,-13.55417949,5.41822303,-4.99732424,0.89701433,-0.83232904,-2.26715923,0.40869337,2.99033248,-2.48894057 +1.33900000,5.38753706,-5.00741527,-13.54169633,5.41321902,-5.01068700,0.89617978,-0.83455693,-2.26507126,0.40849924,2.99031143,-2.49558514 +1.34000000,5.38251629,-5.02077016,-13.52917975,5.40820166,-5.02403740,0.89534299,-0.83678276,-2.26297770,0.40830534,2.99029042,-2.50222348 +1.34100000,5.37748218,-5.03411267,-13.51662980,5.40317095,-5.03737540,0.89450399,-0.83900653,-2.26087856,0.40811166,2.99026942,-2.50885557 +1.34200000,5.37243473,-5.04744276,-13.50404649,5.39812691,-5.05070097,0.89366276,-0.84122822,-2.25877384,0.40791821,2.99024845,-2.51548140 +1.34300000,5.36737397,-5.06076039,-13.49142987,5.39306955,-5.06401407,0.89281931,-0.84344784,-2.25666355,0.40772499,2.99022751,-2.52210094 +1.34400000,5.36229991,-5.07406554,-13.47877995,5.38799889,-5.07731469,0.89197365,-0.84566538,-2.25454768,0.40753200,2.99020659,-2.52871420 +1.34500000,5.35721255,-5.08735817,-13.46609678,5.38291493,-5.09060277,0.89112577,-0.84788083,-2.25242626,0.40733923,2.99018569,-2.53532114 +1.34600000,5.35211191,-5.10063824,-13.45338038,5.37781769,-5.10387830,0.89027567,-0.85009419,-2.25029928,0.40714669,2.99016482,-2.54192175 +1.34700000,5.34699800,-5.11390573,-13.44063078,5.37270717,-5.11714123,0.88942337,-0.85230546,-2.24816674,0.40695439,2.99014397,-2.54851602 +1.34800000,5.34187084,-5.12716060,-13.42784802,5.36758341,-5.13039153,0.88856885,-0.85451461,-2.24602866,0.40676231,2.99012315,-2.55510393 +1.34900000,5.33673044,-5.14040282,-13.41503213,5.36244640,-5.14362918,0.88771213,-0.85672167,-2.24388503,0.40657046,2.99010235,-2.56168546 +1.35000000,5.33157681,-5.15363236,-13.40218314,5.35729615,-5.15685413,0.88685320,-0.85892660,-2.24173587,0.40637884,2.99008157,-2.56826061 +1.35100000,5.32640996,-5.16684918,-13.38930108,5.35213269,-5.17006636,0.88599207,-0.86112942,-2.23958118,0.40618745,2.99006082,-2.57482934 +1.35200000,5.32122991,-5.18005325,-13.37638598,5.34695602,-5.18326584,0.88512874,-0.86333011,-2.23742096,0.40599630,2.99004009,-2.58139165 +1.35300000,5.31603666,-5.19324454,-13.36343788,5.34176616,-5.19645252,0.88426321,-0.86552868,-2.23525522,0.40580537,2.99001939,-2.58794753 +1.35400000,5.31083024,-5.20642301,-13.35045681,5.33656312,-5.20962639,0.88339549,-0.86772510,-2.23308397,0.40561468,2.98999872,-2.59449694 +1.35500000,5.30561065,-5.21958864,-13.33744279,5.33134692,-5.22278740,0.88252557,-0.86991939,-2.23090720,0.40542422,2.98997806,-2.60103989 +1.35600000,5.30037791,-5.23274140,-13.32439586,5.32611755,-5.23593552,0.88165346,-0.87211153,-2.22872493,0.40523400,2.98995744,-2.60757635 +1.35700000,5.29513203,-5.24588124,-13.31131606,5.32087505,-5.24907072,0.88077916,-0.87430152,-2.22653717,0.40504400,2.98993683,-2.61410631 +1.35800000,5.28987302,-5.25900813,-13.29820341,5.31561942,-5.26219297,0.87990267,-0.87648935,-2.22434390,0.40485425,2.98991626,-2.62062975 +1.35900000,5.28460090,-5.27212205,-13.28505795,5.31035067,-5.27530224,0.87902399,-0.87867501,-2.22214515,0.40466472,2.98989570,-2.62714665 +1.36000000,5.27931567,-5.28522296,-13.27187972,5.30506882,-5.28839849,0.87814313,-0.88085851,-2.21994092,0.40447544,2.98987517,-2.63365700 +1.36100000,5.27401736,-5.29831083,-13.25866873,5.29977387,-5.30148170,0.87726009,-0.88303984,-2.21773121,0.40428638,2.98985467,-2.64016079 +1.36200000,5.26870598,-5.31138563,-13.24542503,5.29446586,-5.31455182,0.87637488,-0.88521899,-2.21551603,0.40409757,2.98983419,-2.64665800 +1.36300000,5.26338153,-5.32444732,-13.23214864,5.28914478,-5.32760883,0.87548748,-0.88739595,-2.21329538,0.40390899,2.98981374,-2.65314861 +1.36400000,5.25804403,-5.33749588,-13.21883961,5.28381064,-5.34065269,0.87459791,-0.88957073,-2.21106927,0.40372065,2.98979331,-2.65963260 +1.36500000,5.25269350,-5.35053126,-13.20549796,5.27846347,-5.35368338,0.87370617,-0.89174330,-2.20883770,0.40353254,2.98977291,-2.66610997 +1.36600000,5.24732995,-5.36355345,-13.19212373,5.27310328,-5.36670085,0.87281225,-0.89391368,-2.20660068,0.40334468,2.98975253,-2.67258070 +1.36700000,5.24195339,-5.37656240,-13.17871695,5.26773008,-5.37970509,0.87191617,-0.89608186,-2.20435822,0.40315705,2.98973218,-2.67904476 +1.36800000,5.23656383,-5.38955808,-13.16527765,5.26234388,-5.39269605,0.87101792,-0.89824782,-2.20211032,0.40296966,2.98971185,-2.68550215 +1.36900000,5.23116129,-5.40254046,-13.15180586,5.25694469,-5.40567370,0.87011751,-0.90041156,-2.19985699,0.40278251,2.98969155,-2.69195284 +1.37000000,5.22574578,-5.41550952,-13.13830163,5.25153253,-5.41863802,0.86921494,-0.90257309,-2.19759823,0.40259560,2.98967127,-2.69839683 +1.37100000,5.22031731,-5.42846521,-13.12476498,5.24610742,-5.43158897,0.86831021,-0.90473238,-2.19533404,0.40240893,2.98965102,-2.70483410 +1.37200000,5.21487591,-5.44140751,-13.11119594,5.24066936,-5.44452651,0.86740332,-0.90688945,-2.19306444,0.40222250,2.98963080,-2.71126462 +1.37300000,5.20942157,-5.45433638,-13.09759455,5.23521837,-5.45745062,0.86649427,-0.90904427,-2.19078943,0.40203631,2.98961060,-2.71768840 +1.37400000,5.20395432,-5.46725179,-13.08396085,5.22975446,-5.47036127,0.86558307,-0.91119686,-2.18850901,0.40185037,2.98959042,-2.72410540 +1.37500000,5.19847417,-5.48015372,-13.07029486,5.22427765,-5.48325842,0.86466973,-0.91334719,-2.18622320,0.40166466,2.98957028,-2.73051562 +1.37600000,5.19298112,-5.49304212,-13.05659662,5.21878795,-5.49614204,0.86375423,-0.91549528,-2.18393199,0.40147920,2.98955015,-2.73691904 +1.37700000,5.18747521,-5.50591697,-13.04286616,5.21328537,-5.50901209,0.86283659,-0.91764110,-2.18163538,0.40129398,2.98953006,-2.74331565 +1.37800000,5.18195643,-5.51877823,-13.02910353,5.20776993,-5.52186856,0.86191681,-0.91978466,-2.17933340,0.40110901,2.98950999,-2.74970542 +1.37900000,5.17642480,-5.53162587,-13.01530874,5.20224164,-5.53471140,0.86099488,-0.92192595,-2.17702604,0.40092428,2.98948994,-2.75608835 +1.38000000,5.17088034,-5.54445987,-13.00148184,5.19670051,-5.54754058,0.86007082,-0.92406496,-2.17471331,0.40073979,2.98946992,-2.76246441 +1.38100000,5.16532306,-5.55728019,-12.98762286,5.19114656,-5.56035608,0.85914461,-0.92620170,-2.17239521,0.40055555,2.98944993,-2.76883360 +1.38200000,5.15975298,-5.57008679,-12.97373184,5.18557980,-5.57315785,0.85821628,-0.92833615,-2.17007175,0.40037155,2.98942996,-2.77519589 +1.38300000,5.15417010,-5.58287965,-12.95980880,5.18000025,-5.58594588,0.85728581,-0.93046830,-2.16774294,0.40018780,2.98941002,-2.78155127 +1.38400000,5.14857444,-5.59565874,-12.94585379,5.17440792,-5.59872012,0.85635321,-0.93259817,-2.16540878,0.40000430,2.98939011,-2.78789973 +1.38500000,5.14296601,-5.60842402,-12.93186683,5.16880282,-5.61148054,0.85541849,-0.93472573,-2.16306927,0.39982104,2.98937022,-2.79424126 +1.38600000,5.13734484,-5.62117546,-12.91784796,5.16318496,-5.62422713,0.85448163,-0.93685098,-2.16072443,0.39963803,2.98935036,-2.80057582 +1.38700000,5.13171092,-5.63391303,-12.90379723,5.15755437,-5.63695983,0.85354266,-0.93897393,-2.15837426,0.39945527,2.98933052,-2.80690342 +1.38800000,5.12606429,-5.64663670,-12.88971465,5.15191105,-5.64967863,0.85260157,-0.94109456,-2.15601876,0.39927275,2.98931071,-2.81322403 +1.38900000,5.12040494,-5.65934643,-12.87560027,5.14625501,-5.66238348,0.85165835,-0.94321286,-2.15365794,0.39909049,2.98929093,-2.81953764 +1.39000000,5.11473290,-5.67204221,-12.86145411,5.14058628,-5.67507437,0.85071302,-0.94532884,-2.15129181,0.39890847,2.98927117,-2.82584424 +1.39100000,5.10904817,-5.68472399,-12.84727623,5.13490487,-5.68775125,0.84976558,-0.94744248,-2.14892037,0.39872670,2.98925144,-2.83214380 +1.39200000,5.10335078,-5.69739174,-12.83306664,5.12921079,-5.70041410,0.84881603,-0.94955379,-2.14654362,0.39854519,2.98923173,-2.83843632 +1.39300000,5.09764074,-5.71004543,-12.81882539,5.12350405,-5.71306288,0.84786437,-0.95166275,-2.14416158,0.39836392,2.98921206,-2.84472178 +1.39400000,5.09191805,-5.72268504,-12.80455251,5.11778466,-5.72569756,0.84691060,-0.95376937,-2.14177425,0.39818290,2.98919241,-2.85100016 +1.39500000,5.08618274,-5.73531052,-12.79024804,5.11205266,-5.73831812,0.84595472,-0.95587363,-2.13938164,0.39800213,2.98917278,-2.85727145 +1.39600000,5.08043482,-5.74792185,-12.77591201,5.10630803,-5.75092452,0.84499675,-0.95797554,-2.13698375,0.39782162,2.98915318,-2.86353563 +1.39700000,5.07467430,-5.76051900,-12.76154445,5.10055081,-5.76351673,0.84403667,-0.96007508,-2.13458058,0.39764136,2.98913361,-2.86979269 +1.39800000,5.06890120,-5.77310194,-12.74714541,5.09478100,-5.77609472,0.84307450,-0.96217225,-2.13217215,0.39746135,2.98911407,-2.87604261 +1.39900000,5.06311553,-5.78567063,-12.73271491,5.08899863,-5.78865846,0.84211023,-0.96426705,-2.12975845,0.39728159,2.98909455,-2.88228538 +1.40000000,5.05731730,-5.79822505,-12.71825300,5.08320369,-5.80120791,0.84114387,-0.96635947,-2.12733950,0.39710209,2.98907506,-2.88852098 +1.40100000,5.05150654,-5.81076516,-12.70375970,5.07739622,-5.81374305,0.84017542,-0.96844950,-2.12491530,0.39692284,2.98905560,-2.89474940 +1.40200000,5.04568325,-5.82329093,-12.68923506,5.07157621,-5.82626385,0.83920489,-0.97053715,-2.12248586,0.39674384,2.98903616,-2.90097062 +1.40300000,5.03984745,-5.83580234,-12.67467911,5.06574369,-5.83877027,0.83823226,-0.97262239,-2.12005119,0.39656510,2.98901675,-2.90718463 +1.40400000,5.03399915,-5.84829934,-12.66009189,5.05989868,-5.85126228,0.83725756,-0.97470524,-2.11761128,0.39638662,2.98899737,-2.91339141 +1.40500000,5.02813836,-5.86078191,-12.64547343,5.05404117,-5.86373986,0.83628077,-0.97678569,-2.11516614,0.39620839,2.98897802,-2.91959095 +1.40600000,5.02226511,-5.87325003,-12.63082377,5.04817120,-5.87620296,0.83530191,-0.97886372,-2.11271579,0.39603041,2.98895869,-2.92578323 +1.40700000,5.01637941,-5.88570365,-12.61614294,5.04228877,-5.88865157,0.83432097,-0.98093934,-2.11026022,0.39585269,2.98893939,-2.93196824 +1.40800000,5.01048127,-5.89814275,-12.60143098,5.03639390,-5.90108565,0.83333796,-0.98301254,-2.10779945,0.39567523,2.98892012,-2.93814596 +1.40900000,5.00457070,-5.91056730,-12.58668793,5.03048661,-5.91350517,0.83235287,-0.98508332,-2.10533348,0.39549803,2.98890087,-2.94431638 +1.41000000,4.99864772,-5.92297726,-12.57191383,5.02456690,-5.92591010,0.83136572,-0.98715166,-2.10286231,0.39532109,2.98888165,-2.95047948 +1.41100000,4.99271235,-5.93537261,-12.55710870,5.01863479,-5.93830040,0.83037650,-0.98921757,-2.10038595,0.39514440,2.98886246,-2.95663525 +1.41200000,4.98676460,-5.94775331,-12.54227259,5.01269030,-5.95067606,0.82938522,-0.99128103,-2.09790441,0.39496797,2.98884330,-2.96278367 +1.41300000,4.98080448,-5.96011934,-12.52740554,5.00673344,-5.96303703,0.82839188,-0.99334205,-2.09541769,0.39479180,2.98882416,-2.96892473 +1.41400000,4.97483201,-5.97247066,-12.51250757,5.00076423,-5.97538329,0.82739648,-0.99540062,-2.09292581,0.39461589,2.98880505,-2.97505841 +1.41500000,4.96884720,-5.98480725,-12.49757873,4.99478268,-5.98771480,0.82639902,-0.99745674,-2.09042876,0.39444024,2.98878597,-2.98118470 +1.41600000,4.96285007,-5.99712906,-12.48261905,4.98878881,-6.00003154,0.82539951,-0.99951039,-2.08792655,0.39426485,2.98876692,-2.98730359 +1.41700000,4.95684063,-6.00943608,-12.46762857,4.98278262,-6.01233348,0.82439795,-1.00156158,-2.08541919,0.39408972,2.98874789,-2.99341505 +1.41800000,4.95081891,-6.02172828,-12.45260733,4.97676414,-6.02462058,0.82339434,-1.00361029,-2.08290668,0.39391485,2.98872890,-2.99951908 +1.41900000,4.94478490,-6.03400561,-12.43755537,4.97073339,-6.03689281,0.82238869,-1.00565653,-2.08038904,0.39374025,2.98870993,-3.00561565 +1.42000000,4.93873863,-6.04626806,-12.42247272,4.96469036,-6.04915015,0.82138099,-1.00770029,-2.07786626,0.39356590,2.98869098,-3.01170476 +1.42100000,4.93268012,-6.05851559,-12.40735941,4.95863509,-6.06139257,0.82037124,-1.00974156,-2.07533836,0.39339182,2.98867207,-3.01778639 +1.42200000,4.92660937,-6.07074817,-12.39221549,4.95256758,-6.07362003,0.81935946,-1.01178034,-2.07280533,0.39321800,2.98865318,-3.02386053 +1.42300000,4.92052640,-6.08296577,-12.37704100,4.94648786,-6.08583250,0.81834565,-1.01381662,-2.07026719,0.39304445,2.98863433,-3.02992715 +1.42400000,4.91443123,-6.09516836,-12.36183596,4.94039592,-6.09802996,0.81732980,-1.01585040,-2.06772394,0.39287116,2.98861550,-3.03598625 +1.42500000,4.90832388,-6.10735591,-12.34660043,4.93429180,-6.11021237,0.81631191,-1.01788168,-2.06517559,0.39269813,2.98859669,-3.04203782 +1.42600000,4.90220435,-6.11952839,-12.33133443,4.92817550,-6.12237970,0.81529200,-1.01991044,-2.06262214,0.39252537,2.98857792,-3.04808182 +1.42700000,4.89607266,-6.13168577,-12.31603800,4.92204705,-6.13453193,0.81427007,-1.02193669,-2.06006361,0.39235287,2.98855917,-3.05411826 +1.42800000,4.88992884,-6.14382803,-12.30071118,4.91590645,-6.14666902,0.81324611,-1.02396041,-2.05749999,0.39218064,2.98854046,-3.06014712 +1.42900000,4.88377288,-6.15595512,-12.28535402,4.90975371,-6.15879094,0.81222013,-1.02598161,-2.05493130,0.39200867,2.98852177,-3.06616838 +1.43000000,4.87760481,-6.16806703,-12.26996654,4.90358887,-6.17089767,0.81119213,-1.02800028,-2.05235753,0.39183697,2.98850311,-3.07218203 +1.43100000,4.87142465,-6.18016371,-12.25454878,4.89741192,-6.18298918,0.81016211,-1.03001641,-2.04977870,0.39166554,2.98848447,-3.07818805 +1.43200000,4.86523241,-6.19224515,-12.23910079,4.89122290,-6.19506542,0.80913008,-1.03203000,-2.04719481,0.39149438,2.98846587,-3.08418643 +1.43300000,4.85902809,-6.20431131,-12.22362260,4.88502180,-6.20712638,0.80809604,-1.03404104,-2.04460588,0.39132348,2.98844729,-3.09017716 +1.43400000,4.85281173,-6.21636216,-12.20811425,4.87880865,-6.21917203,0.80705999,-1.03604953,-2.04201189,0.39115285,2.98842875,-3.09616021 +1.43500000,4.84658333,-6.22839767,-12.19257578,4.87258346,-6.23120233,0.80602193,-1.03805547,-2.03941287,0.39098249,2.98841023,-3.10213558 +1.43600000,4.84034292,-6.24041781,-12.17700722,4.86634625,-6.24321725,0.80498187,-1.04005884,-2.03680882,0.39081240,2.98839174,-3.10810325 +1.43700000,4.83409049,-6.25242256,-12.16140862,4.86009703,-6.25521677,0.80393981,-1.04205965,-2.03419974,0.39064257,2.98837328,-3.11406321 +1.43800000,4.82782608,-6.26441188,-12.14578001,4.85383582,-6.26720086,0.80289576,-1.04405789,-2.03158564,0.39047302,2.98835484,-3.12001545 +1.43900000,4.82154970,-6.27638574,-12.13012143,4.84756263,-6.27916948,0.80184970,-1.04605355,-2.02896653,0.39030374,2.98833644,-3.12595993 +1.44000000,4.81526135,-6.28834411,-12.11443293,4.84127749,-6.29112261,0.80080166,-1.04804663,-2.02634241,0.39013472,2.98831807,-3.13189667 +1.44100000,4.80896107,-6.30028697,-12.09871453,4.83498039,-6.30306022,0.79975162,-1.05003712,-2.02371329,0.38996598,2.98829972,-3.13782563 +1.44200000,4.80264885,-6.31221429,-12.08296628,4.82867137,-6.31498228,0.79869959,-1.05202502,-2.02107918,0.38979751,2.98828140,-3.14374681 +1.44300000,4.79632473,-6.32412602,-12.06718821,4.82235043,-6.32688875,0.79764558,-1.05401033,-2.01844009,0.38962931,2.98826311,-3.14966019 +1.44400000,4.78998870,-6.33602216,-12.05138037,4.81601760,-6.33877961,0.79658959,-1.05599303,-2.01579601,0.38946139,2.98824485,-3.15556575 +1.44500000,4.78364080,-6.34790266,-12.03554280,4.80967288,-6.35065483,0.79553162,-1.05797314,-2.01314696,0.38929373,2.98822662,-3.16146349 +1.44600000,4.77728103,-6.35976750,-12.01967553,4.80331629,-6.36251439,0.79447167,-1.05995063,-2.01049294,0.38912635,2.98820842,-3.16735339 +1.44700000,4.77090942,-6.37161664,-12.00377860,4.79694786,-6.37435824,0.79340974,-1.06192550,-2.00783396,0.38895925,2.98819025,-3.17323543 +1.44800000,4.76452597,-6.38345007,-11.98785205,4.79056758,-6.38618637,0.79234584,-1.06389775,-2.00517002,0.38879241,2.98817211,-3.17910959 +1.44900000,4.75813070,-6.39526774,-11.97189592,4.78417549,-6.39799873,0.79127998,-1.06586738,-2.00250114,0.38862585,2.98815399,-3.18497588 +1.45000000,4.75172363,-6.40706964,-11.95591026,4.77777159,-6.40979532,0.79021214,-1.06783438,-1.99982732,0.38845957,2.98813591,-3.19083426 +1.45100000,4.74530477,-6.41885572,-11.93989510,4.77135590,-6.42157608,0.78914234,-1.06979875,-1.99714857,0.38829356,2.98811785,-3.19668474 +1.45200000,4.73887415,-6.43062597,-11.92385047,4.76492844,-6.43334100,0.78807058,-1.07176047,-1.99446488,0.38812783,2.98809983,-3.20252728 +1.45300000,4.73243177,-6.44238035,-11.90777642,4.75848923,-6.44509005,0.78699686,-1.07371955,-1.99177628,0.38796237,2.98808183,-3.20836189 +1.45400000,4.72597765,-6.45411884,-11.89167300,4.75203827,-6.45682320,0.78592119,-1.07567598,-1.98908276,0.38779719,2.98806386,-3.21418854 +1.45500000,4.71951181,-6.46584140,-11.87554023,4.74557559,-6.46854041,0.78484356,-1.07762976,-1.98638433,0.38763228,2.98804592,-3.22000722 +1.45600000,4.71303426,-6.47754800,-11.85937816,4.73910119,-6.48024166,0.78376398,-1.07958088,-1.98368100,0.38746766,2.98802801,-3.22581791 +1.45700000,4.70654502,-6.48923862,-11.84318683,4.73261511,-6.49192693,0.78268245,-1.08152933,-1.98097278,0.38730331,2.98801014,-3.23162061 +1.45800000,4.70004411,-6.50091324,-11.82696627,4.72611734,-6.50359617,0.78159897,-1.08347512,-1.97825967,0.38713923,2.98799229,-3.23741530 +1.45900000,4.69353153,-6.51257181,-11.81071654,4.71960792,-6.51524937,0.78051355,-1.08541823,-1.97554167,0.38697544,2.98797447,-3.24320196 +1.46000000,4.68700732,-6.52421431,-11.79443766,4.71308685,-6.52688650,0.77942619,-1.08735867,-1.97281881,0.38681192,2.98795668,-3.24898059 +1.46100000,4.68047148,-6.53584071,-11.77812968,4.70655415,-6.53850752,0.77833690,-1.08929642,-1.97009107,0.38664869,2.98793892,-3.25475116 +1.46200000,4.67392403,-6.54745099,-11.76179264,4.70000984,-6.55011240,0.77724567,-1.09123148,-1.96735848,0.38648573,2.98792119,-3.26051366 +1.46300000,4.66736498,-6.55904511,-11.74542658,4.69345393,-6.56170112,0.77615250,-1.09316385,-1.96462103,0.38632306,2.98790348,-3.26626809 +1.46400000,4.66079436,-6.57062305,-11.72903154,4.68688644,-6.57327366,0.77505741,-1.09509353,-1.96187873,0.38616066,2.98788581,-3.27201441 +1.46500000,4.65421218,-6.58218478,-11.71260756,4.68030739,-6.58482997,0.77396039,-1.09702050,-1.95913159,0.38599854,2.98786817,-3.27775263 +1.46600000,4.64761845,-6.59373026,-11.69615468,4.67371679,-6.59637004,0.77286144,-1.09894476,-1.95637962,0.38583671,2.98785056,-3.28348273 +1.46700000,4.64101319,-6.60525948,-11.67967294,4.66711466,-6.60789383,0.77176058,-1.10086632,-1.95362282,0.38567516,2.98783298,-3.28920469 +1.46800000,4.63439641,-6.61677240,-11.66316238,4.66050101,-6.61940132,0.77065779,-1.10278515,-1.95086120,0.38551389,2.98781543,-3.29491850 +1.46900000,4.62776814,-6.62826899,-11.64662304,4.65387586,-6.63089247,0.76955309,-1.10470127,-1.94809477,0.38535290,2.98779791,-3.30062414 +1.47000000,4.62112840,-6.63974922,-11.63005497,4.64723923,-6.64236727,0.76844648,-1.10661466,-1.94532353,0.38519219,2.98778042,-3.30632161 +1.47100000,4.61447718,-6.65121308,-11.61345820,4.64059113,-6.65382567,0.76733795,-1.10852532,-1.94254749,0.38503177,2.98776296,-3.31201089 +1.47200000,4.60781452,-6.66266052,-11.59683278,4.63393158,-6.66526766,0.76622752,-1.11043324,-1.93976666,0.38487163,2.98774553,-3.31769196 +1.47300000,4.60114043,-6.67409152,-11.58017874,4.62726060,-6.67669320,0.76511518,-1.11233843,-1.93698104,0.38471178,2.98772813,-3.32336481 +1.47400000,4.59445492,-6.68550606,-11.56349613,4.62057820,-6.68810226,0.76400094,-1.11424087,-1.93419064,0.38455221,2.98771076,-3.32902943 +1.47500000,4.58775802,-6.69690410,-11.54678499,4.61388440,-6.69949483,0.76288480,-1.11614056,-1.93139547,0.38439292,2.98769342,-3.33468580 +1.47600000,4.58104973,-6.70828561,-11.53004536,4.60717922,-6.71087086,0.76176676,-1.11803750,-1.92859554,0.38423392,2.98767611,-3.34033392 +1.47700000,4.57433008,-6.71965058,-11.51327728,4.60046267,-6.72223033,0.76064683,-1.11993168,-1.92579084,0.38407521,2.98765883,-3.34597376 +1.47800000,4.56759909,-6.73099896,-11.49648079,4.59373476,-6.73357322,0.75952501,-1.12182309,-1.92298140,0.38391678,2.98764158,-3.35160531 +1.47900000,4.56085675,-6.74233074,-11.47965593,4.58699552,-6.74489950,0.75840129,-1.12371174,-1.92016720,0.38375863,2.98762436,-3.35722856 +1.48000000,4.55410311,-6.75364587,-11.46280275,4.58024497,-6.75620913,0.75727570,-1.12559761,-1.91734828,0.38360078,2.98760717,-3.36284350 +1.48100000,4.54733816,-6.76494435,-11.44592129,4.57348311,-6.76750209,0.75614822,-1.12748071,-1.91452462,0.38344321,2.98759002,-3.36845011 +1.48200000,4.54056194,-6.77622613,-11.42901159,4.56670997,-6.77877835,0.75501886,-1.12936102,-1.91169623,0.38328593,2.98757289,-3.37404838 +1.48300000,4.53377445,-6.78749120,-11.41207369,4.55992556,-6.79003789,0.75388762,-1.13123855,-1.90886313,0.38312893,2.98755579,-3.37963829 +1.48400000,4.52697571,-6.79873951,-11.39510762,4.55312990,-6.80128068,0.75275450,-1.13311329,-1.90602532,0.38297223,2.98753873,-3.38521984 +1.48500000,4.52016574,-6.80997105,-11.37811345,4.54632301,-6.81250668,0.75161952,-1.13498523,-1.90318281,0.38281581,2.98752169,-3.39079300 +1.48600000,4.51334455,-6.82118579,-11.36109119,4.53950489,-6.82371587,0.75048266,-1.13685437,-1.90033560,0.38265968,2.98750469,-3.39635777 +1.48700000,4.50651217,-6.83238370,-11.34404091,4.53267558,-6.83490823,0.74934394,-1.13872071,-1.89748371,0.38250384,2.98748772,-3.40191413 +1.48800000,4.49966860,-6.84356475,-11.32696264,4.52583508,-6.84608372,0.74820336,-1.14058423,-1.89462713,0.38234829,2.98747078,-3.40746207 +1.48900000,4.49281387,-6.85472891,-11.30985642,4.51898342,-6.85724232,0.74706091,-1.14244495,-1.89176587,0.38219303,2.98745387,-3.41300157 +1.49000000,4.48594800,-6.86587616,-11.29272229,4.51212060,-6.86838400,0.74591661,-1.14430284,-1.88889995,0.38203807,2.98743699,-3.41853262 +1.49100000,4.47907099,-6.87700647,-11.27556030,4.50524666,-6.87950873,0.74477045,-1.14615791,-1.88602937,0.38188339,2.98742014,-3.42405522 +1.49200000,4.47218287,-6.88811981,-11.25837049,4.49836159,-6.89061649,0.74362244,-1.14801015,-1.88315413,0.38172900,2.98740332,-3.42956933 +1.49300000,4.46528365,-6.89921615,-11.24115290,4.49146543,-6.90170725,0.74247258,-1.14985956,-1.88027425,0.38157491,2.98738653,-3.43507496 +1.49400000,4.45837336,-6.91029548,-11.22390757,4.48455818,-6.91278098,0.74132088,-1.15170613,-1.87738973,0.38142111,2.98736978,-3.44057209 +1.49500000,4.45145200,-6.92135775,-11.20663455,4.47763987,-6.92383765,0.74016733,-1.15354986,-1.87450057,0.38126760,2.98735305,-3.44606070 +1.49600000,4.44451960,-6.93240294,-11.18933388,4.47071051,-6.93487723,0.73901194,-1.15539074,-1.87160679,0.38111438,2.98733636,-3.45154078 +1.49700000,4.43757617,-6.94343103,-11.17200560,4.46377012,-6.94589971,0.73785471,-1.15722878,-1.86870840,0.38096145,2.98731970,-3.45701232 +1.49800000,4.43062173,-6.95444198,-11.15464976,4.45681872,-6.95690505,0.73669564,-1.15906395,-1.86580539,0.38080882,2.98730307,-3.46247531 +1.49900000,4.42365629,-6.96543578,-11.13726639,4.44985632,-6.96789322,0.73553475,-1.16089627,-1.86289778,0.38065649,2.98728647,-3.46792972 +1.50000000,4.41667988,-6.97641239,-11.11985554,4.44288294,-6.97886420,0.73437202,-1.16272573,-1.85998557,0.38050444,2.98726990,-3.47337556 +1.50100000,4.40969251,-6.98737179,-11.10241726,4.43589860,-6.98981796,0.73320747,-1.16455231,-1.85706877,0.38035270,2.98725336,-3.47881280 +1.50200000,4.40269419,-6.99831394,-11.08495158,4.42890331,-7.00075447,0.73204109,-1.16637602,-1.85414739,0.38020124,2.98723686,-3.48424144 +1.50300000,4.39568495,-7.00923883,-11.06745856,4.42189709,-7.01167371,0.73087290,-1.16819685,-1.85122144,0.38005009,2.98722038,-3.48966145 +1.50400000,4.38866481,-7.02014642,-11.04993822,4.41487997,-7.02257565,0.72970288,-1.17001480,-1.84829092,0.37989923,2.98720394,-3.49507283 +1.50500000,4.38163377,-7.03103669,-11.03239062,4.40785195,-7.03346026,0.72853105,-1.17182987,-1.84535584,0.37974866,2.98718753,-3.50047557 +1.50600000,4.37459186,-7.04190962,-11.01481580,4.40081305,-7.04432752,0.72735741,-1.17364204,-1.84241620,0.37959839,2.98717115,-3.50586964 +1.50700000,4.36753909,-7.05276516,-10.99721380,4.39376330,-7.05517740,0.72618196,-1.17545132,-1.83947202,0.37944842,2.98715480,-3.51125505 +1.50800000,4.36047549,-7.06360331,-10.97958467,4.38670270,-7.06600986,0.72500470,-1.17725769,-1.83652330,0.37929875,2.98713849,-3.51663176 +1.50900000,4.35340107,-7.07442403,-10.96192845,4.37963128,-7.07682490,0.72382564,-1.17906116,-1.83357005,0.37914937,2.98712220,-3.52199978 +1.51000000,4.34631584,-7.08522729,-10.94424518,4.37254906,-7.08762247,0.72264478,-1.18086173,-1.83061227,0.37900029,2.98710595,-3.52735909 +1.51100000,4.33921983,-7.09601307,-10.92653490,4.36545604,-7.09840255,0.72146212,-1.18265937,-1.82764998,0.37885151,2.98708973,-3.53270967 +1.51200000,4.33211305,-7.10678134,-10.90879767,4.35835226,-7.10916512,0.72027766,-1.18445410,-1.82468318,0.37870303,2.98707354,-3.53805152 +1.51300000,4.32499551,-7.11753207,-10.89103352,4.35123772,-7.11991015,0.71909142,-1.18624591,-1.82171188,0.37855485,2.98705739,-3.54338462 +1.51400000,4.31786725,-7.12826525,-10.87324250,4.34411244,-7.13063761,0.71790338,-1.18803479,-1.81873608,0.37840696,2.98704126,-3.54870895 +1.51500000,4.31072827,-7.13898083,-10.85542465,4.33697645,-7.14134748,0.71671356,-1.18982074,-1.81575579,0.37825938,2.98702517,-3.55402451 +1.51600000,4.30357859,-7.14967880,-10.83758002,4.32982976,-7.15203972,0.71552196,-1.19160376,-1.81277103,0.37811210,2.98700911,-3.55933128 +1.51700000,4.29641823,-7.16035913,-10.81970864,4.32267238,-7.16271432,0.71432858,-1.19338383,-1.80978179,0.37796512,2.98699308,-3.56462924 +1.51800000,4.28924721,-7.17102179,-10.80181057,4.31550433,-7.17337125,0.71313341,-1.19516096,-1.80678808,0.37781843,2.98697708,-3.56991840 +1.51900000,4.28206554,-7.18166676,-10.78388585,4.30832564,-7.18401047,0.71193648,-1.19693514,-1.80378992,0.37767205,2.98696112,-3.57519872 +1.52000000,4.27487325,-7.19229401,-10.76593452,4.30113632,-7.19463197,0.71073777,-1.19870637,-1.80078731,0.37752598,2.98694519,-3.58047021 +1.52100000,4.26767034,-7.20290351,-10.74795663,4.29393638,-7.20523572,0.70953730,-1.20047464,-1.79778025,0.37738020,2.98692929,-3.58573285 +1.52200000,4.26045685,-7.21349524,-10.72995222,4.28672585,-7.21582169,0.70833506,-1.20223994,-1.79476876,0.37723473,2.98691342,-3.59098662 +1.52300000,4.25323278,-7.22406917,-10.71192133,4.27950475,-7.22638986,0.70713106,-1.20400228,-1.79175284,0.37708955,2.98689758,-3.59623151 +1.52400000,4.24599815,-7.23462528,-10.69386402,4.27227308,-7.23694019,0.70592529,-1.20576165,-1.78873250,0.37694469,2.98688178,-3.60146751 +1.52500000,4.23875299,-7.24516353,-10.67578032,4.26503087,-7.24747267,0.70471778,-1.20751805,-1.78570775,0.37680012,2.98686601,-3.60669461 +1.52600000,4.23149731,-7.25568391,-10.65767027,4.25777814,-7.25798727,0.70350851,-1.20927146,-1.78267859,0.37665586,2.98685027,-3.61191280 +1.52700000,4.22423112,-7.26618639,-10.63953393,4.25051490,-7.26848396,0.70229748,-1.21102189,-1.77964503,0.37651190,2.98683457,-3.61712205 +1.52800000,4.21695445,-7.27667093,-10.62137134,4.24324118,-7.27896271,0.70108471,-1.21276934,-1.77660708,0.37636825,2.98681889,-3.62232237 +1.52900000,4.20966731,-7.28713753,-10.60318255,4.23595698,-7.28942350,0.69987020,-1.21451379,-1.77356474,0.37622490,2.98680325,-3.62751373 +1.53000000,4.20236973,-7.29758614,-10.58496759,4.22866234,-7.29986631,0.69865394,-1.21625524,-1.77051803,0.37608186,2.98678764,-3.63269613 +1.53100000,4.19506171,-7.30801674,-10.56672651,4.22135726,-7.31029111,0.69743595,-1.21799370,-1.76746696,0.37593912,2.98677207,-3.63786955 +1.53200000,4.18774328,-7.31842932,-10.54845937,4.21404176,-7.32069786,0.69621622,-1.21972914,-1.76441152,0.37579669,2.98675653,-3.64303398 +1.53300000,4.18041446,-7.32882384,-10.53016619,4.20671587,-7.33108656,0.69499476,-1.22146158,-1.76135173,0.37565457,2.98674101,-3.64818941 +1.53400000,4.17307526,-7.33920027,-10.51184704,4.19937959,-7.34145717,0.69377157,-1.22319101,-1.75828759,0.37551275,2.98672554,-3.65333582 +1.53500000,4.16572570,-7.34955859,-10.49350194,4.19203296,-7.35180966,0.69254665,-1.22491741,-1.75521911,0.37537124,2.98671009,-3.65847320 +1.53600000,4.15836580,-7.35989878,-10.47513096,4.18467598,-7.36214401,0.69132001,-1.22664080,-1.75214630,0.37523004,2.98669468,-3.66360155 +1.53700000,4.15099558,-7.37022082,-10.45673413,4.17730868,-7.37246020,0.69009165,-1.22836116,-1.74906917,0.37508914,2.98667930,-3.66872084 +1.53800000,4.14361505,-7.38052466,-10.43831150,4.16993107,-7.38275820,0.68886157,-1.23007848,-1.74598773,0.37494855,2.98666395,-3.67383106 +1.53900000,4.13622424,-7.39081030,-10.41986312,4.16254317,-7.39303798,0.68762978,-1.23179277,-1.74290198,0.37480828,2.98664864,-3.67893221 +1.54000000,4.12882316,-7.40107769,-10.40138903,4.15514500,-7.40329951,0.68639627,-1.23350403,-1.73981192,0.37466830,2.98663336,-3.68402427 +1.54100000,4.12141184,-7.41132683,-10.38288927,4.14773657,-7.41354279,0.68516106,-1.23521224,-1.73671757,0.37452864,2.98661811,-3.68910723 +1.54200000,4.11399028,-7.42155768,-10.36436389,4.14031792,-7.42376777,0.68392415,-1.23691740,-1.73361894,0.37438929,2.98660290,-3.69418108 +1.54300000,4.10655851,-7.43177022,-10.34581295,4.13288904,-7.43397443,0.68268553,-1.23861950,-1.73051603,0.37425025,2.98658772,-3.69924580 +1.54400000,4.09911655,-7.44196442,-10.32723647,4.12544997,-7.44416275,0.68144521,-1.24031856,-1.72740885,0.37411152,2.98657257,-3.70430138 +1.54500000,4.09166441,-7.45214026,-10.30863452,4.11800072,-7.45433270,0.68020319,-1.24201455,-1.72429741,0.37397309,2.98655745,-3.70934781 +1.54600000,4.08420211,-7.46229771,-10.29000713,4.11054131,-7.46448426,0.67895949,-1.24370748,-1.72118172,0.37383498,2.98654237,-3.71438508 +1.54700000,4.07672967,-7.47243675,-10.27135435,4.10307176,-7.47461740,0.67771409,-1.24539734,-1.71806178,0.37369718,2.98652732,-3.71941317 +1.54800000,4.06924711,-7.48255735,-10.25267623,4.09559209,-7.48473210,0.67646700,-1.24708412,-1.71493759,0.37355970,2.98651231,-3.72443208 +1.54900000,4.06175445,-7.49265949,-10.23397281,4.08810230,-7.49482833,0.67521824,-1.24876783,-1.71180918,0.37342252,2.98649732,-3.72944179 +1.55000000,4.05425171,-7.50274314,-10.21524414,4.08060244,-7.50490606,0.67396779,-1.25044846,-1.70867655,0.37328565,2.98648237,-3.73444229 +1.55100000,4.04673890,-7.51280828,-10.19649027,4.07309250,-7.51496528,0.67271566,-1.25212600,-1.70553969,0.37314910,2.98646746,-3.73943356 +1.55200000,4.03921605,-7.52285488,-10.17771124,4.06557251,-7.52500596,0.67146186,-1.25380046,-1.70239863,0.37301286,2.98645258,-3.74441560 +1.55300000,4.03168316,-7.53288292,-10.15890709,4.05804249,-7.53502807,0.67020639,-1.25547182,-1.69925337,0.37287694,2.98643773,-3.74938840 +1.55400000,4.02414027,-7.54289238,-10.14007788,4.05050246,-7.54503159,0.66894925,-1.25714008,-1.69610392,0.37274132,2.98642291,-3.75435193 +1.55500000,4.01658739,-7.55288322,-10.12122366,4.04295244,-7.55501649,0.66769044,-1.25880524,-1.69295028,0.37260602,2.98640813,-3.75930620 +1.55600000,4.00902453,-7.56285543,-10.10234446,4.03539243,-7.56498275,0.66642998,-1.26046729,-1.68979247,0.37247104,2.98639338,-3.76425118 +1.55700000,4.00145172,-7.57280897,-10.08344033,4.02782248,-7.57493035,0.66516785,-1.26212624,-1.68663048,0.37233637,2.98637867,-3.76918686 +1.55800000,3.99386898,-7.58274383,-10.06451133,4.02024258,-7.58485925,0.66390407,-1.26378207,-1.68346434,0.37220201,2.98636399,-3.77411324 +1.55900000,3.98627632,-7.59265998,-10.04555749,4.01265276,-7.59476944,0.66263863,-1.26543478,-1.68029404,0.37206797,2.98634934,-3.77903031 +1.56000000,3.97867376,-7.60255740,-10.02657887,4.00505305,-7.60466089,0.66137155,-1.26708437,-1.67711959,0.37193425,2.98633472,-3.78393804 +1.56100000,3.97106133,-7.61243606,-10.00757550,3.99744345,-7.61453358,0.66010282,-1.26873083,-1.67394101,0.37180084,2.98632014,-3.78883643 +1.56200000,3.96343903,-7.62229593,-9.98854745,3.98982399,-7.62438748,0.65883244,-1.27037416,-1.67075829,0.37166775,2.98630560,-3.79372547 +1.56300000,3.95580689,-7.63213700,-9.96949475,3.98219468,-7.63422256,0.65756043,-1.27201436,-1.66757146,0.37153497,2.98629108,-3.79860514 +1.56400000,3.94816494,-7.64195924,-9.95041745,3.97455555,-7.64403881,0.65628678,-1.27365142,-1.66438051,0.37140251,2.98627661,-3.80347543 +1.56500000,3.94051317,-7.65176262,-9.93131561,3.96690661,-7.65383620,0.65501149,-1.27528533,-1.66118545,0.37127037,2.98626216,-3.80833634 +1.56600000,3.93285163,-7.66154712,-9.91218925,3.95924788,-7.66361470,0.65373458,-1.27691610,-1.65798630,0.37113854,2.98624775,-3.81318784 +1.56700000,3.92518031,-7.67131271,-9.89303845,3.95157938,-7.67337430,0.65245603,-1.27854372,-1.65478305,0.37100704,2.98623337,-3.81802993 +1.56800000,3.91749925,-7.68105938,-9.87386323,3.94390114,-7.68311496,0.65117586,-1.28016819,-1.65157572,0.37087585,2.98621903,-3.82286260 +1.56900000,3.90980847,-7.69078710,-9.85466365,3.93621316,-7.69283666,0.64989408,-1.28178949,-1.64836432,0.37074498,2.98620472,-3.82768583 +1.57000000,3.90210797,-7.70049584,-9.83543976,3.92851547,-7.70253938,0.64861067,-1.28340764,-1.64514884,0.37061443,2.98619044,-3.83249962 +1.57100000,3.89439778,-7.71018558,-9.81619160,3.92080809,-7.71222310,0.64732565,-1.28502261,-1.64192931,0.37048419,2.98617620,-3.83730395 +1.57200000,3.88667793,-7.71985629,-9.79691921,3.91309103,-7.72188779,0.64603901,-1.28663442,-1.63870573,0.37035428,2.98616200,-3.84209880 +1.57300000,3.87894842,-7.72950796,-9.77762266,3.90536432,-7.73153342,0.64475077,-1.28824305,-1.63547811,0.37022469,2.98614782,-3.84688418 +1.57400000,3.87120928,-7.73914056,-9.75830198,3.89762797,-7.74115998,0.64346092,-1.28984850,-1.63224645,0.37009541,2.98613369,-3.85166006 +1.57500000,3.86346053,-7.74875406,-9.73895723,3.88988201,-7.75076744,0.64216947,-1.29145077,-1.62901076,0.36996646,2.98611958,-3.85642644 +1.57600000,3.85570218,-7.75834844,-9.71958845,3.88212644,-7.76035577,0.64087642,-1.29304986,-1.62577105,0.36983783,2.98610551,-3.86118330 +1.57700000,3.84793425,-7.76792368,-9.70019568,3.87436130,-7.76992496,0.63958177,-1.29464575,-1.62252734,0.36970951,2.98609147,-3.86593063 +1.57800000,3.84015677,-7.77747975,-9.68077898,3.86658660,-7.77947497,0.63828553,-1.29623845,-1.61927962,0.36958152,2.98607747,-3.87066843 +1.57900000,3.83236976,-7.78701663,-9.66133840,3.85880236,-7.78900579,0.63698771,-1.29782795,-1.61602790,0.36945386,2.98606351,-3.87539667 +1.58000000,3.82457322,-7.79653430,-9.64187398,3.85100859,-7.79851739,0.63568829,-1.29941425,-1.61277220,0.36932651,2.98604957,-3.88011535 +1.58100000,3.81676719,-7.80603273,-9.62238577,3.84320533,-7.80800975,0.63438729,-1.30099734,-1.60951251,0.36919948,2.98603567,-3.88482446 +1.58200000,3.80895168,-7.81551190,-9.60287382,3.83539258,-7.81748284,0.63308472,-1.30257722,-1.60624886,0.36907278,2.98602181,-3.88952399 +1.58300000,3.80112671,-7.82497178,-9.58333817,3.82757037,-7.82693664,0.63178056,-1.30415389,-1.60298124,0.36894640,2.98600798,-3.89421391 +1.58400000,3.79329229,-7.83441236,-9.56377888,3.81973871,-7.83637113,0.63047484,-1.30572734,-1.59970967,0.36882035,2.98599419,-3.89889423 +1.58500000,3.78544846,-7.84383361,-9.54419599,3.81189763,-7.84578629,0.62916754,-1.30729756,-1.59643415,0.36869461,2.98598043,-3.90356494 +1.58600000,3.77759523,-7.85323550,-9.52458956,3.80404715,-7.85518209,0.62785867,-1.30886457,-1.59315469,0.36856921,2.98596670,-3.90822601 +1.58700000,3.76973261,-7.86261802,-9.50495962,3.79618728,-7.86455850,0.62654825,-1.31042834,-1.58987130,0.36844412,2.98595301,-3.91287744 +1.58800000,3.76186063,-7.87198114,-9.48530624,3.78831804,-7.87391551,0.62523626,-1.31198888,-1.58658399,0.36831936,2.98593935,-3.91751923 +1.58900000,3.75397930,-7.88132483,-9.46562944,3.78043945,-7.88325309,0.62392271,-1.31354618,-1.58329277,0.36819493,2.98592573,-3.92215134 +1.59000000,3.74608865,-7.89064908,-9.44592930,3.77255154,-7.89257122,0.62260761,-1.31510024,-1.57999763,0.36807081,2.98591214,-3.92677379 +1.59100000,3.73818870,-7.89995385,-9.42620585,3.76465432,-7.90186988,0.62129096,-1.31665106,-1.57669860,0.36794703,2.98589859,-3.93138654 +1.59200000,3.73027946,-7.90923914,-9.40645914,3.75674780,-7.91114904,0.61997276,-1.31819863,-1.57339568,0.36782357,2.98588507,-3.93598961 +1.59300000,3.72236095,-7.91850491,-9.38668922,3.74883202,-7.92040868,0.61865302,-1.31974294,-1.57008888,0.36770044,2.98587159,-3.94058296 +1.59400000,3.71443320,-7.92775114,-9.36689615,3.74090699,-7.92964878,0.61733173,-1.32128400,-1.56677820,0.36757763,2.98585814,-3.94516660 +1.59500000,3.70649623,-7.93697781,-9.34707996,3.73297273,-7.93886931,0.61600891,-1.32282180,-1.56346366,0.36745515,2.98584473,-3.94974050 +1.59600000,3.69855004,-7.94618490,-9.32724071,3.72502926,-7.94807025,0.61468456,-1.32435634,-1.56014526,0.36733300,2.98583135,-3.95430467 +1.59700000,3.69059467,-7.95537238,-9.30737844,3.71707660,-7.95725159,0.61335867,-1.32588760,-1.55682301,0.36721117,2.98581801,-3.95885908 +1.59800000,3.68263013,-7.96454023,-9.28749322,3.70911477,-7.96641328,0.61203125,-1.32741560,-1.55349692,0.36708967,2.98580470,-3.96340373 +1.59900000,3.67465644,-7.97368843,-9.26758507,3.70114378,-7.97555533,0.61070231,-1.32894032,-1.55016699,0.36696850,2.98579143,-3.96793861 +1.60000000,3.66667362,-7.98281696,-9.24765407,3.69316366,-7.98467769,0.60937185,-1.33046176,-1.54683325,0.36684766,2.98577819,-3.97246371 +1.60100000,3.65868170,-7.99192579,-9.22770024,3.68517443,-7.99378035,0.60803987,-1.33197992,-1.54349568,0.36672714,2.98576499,-3.97697901 +1.60200000,3.65068068,-8.00101490,-9.20772365,3.67717611,-8.00286329,0.60670638,-1.33349479,-1.54015431,0.36660695,2.98575182,-3.98148450 +1.60300000,3.64267060,-8.01008427,-9.18772434,3.66916871,-8.01192648,0.60537137,-1.33500637,-1.53680913,0.36648710,2.98573869,-3.98598017 +1.60400000,3.63465146,-8.01913387,-9.16770236,3.66115226,-8.02096990,0.60403485,-1.33651466,-1.53346017,0.36636757,2.98572559,-3.99046602 +1.60500000,3.62662330,-8.02816369,-9.14765776,3.65312678,-8.02999353,0.60269684,-1.33801965,-1.53010742,0.36624837,2.98571253,-3.99494203 +1.60600000,3.61858613,-8.03717370,-9.12759059,3.64509228,-8.03899735,0.60135731,-1.33952134,-1.52675090,0.36612950,2.98569950,-3.99940819 +1.60700000,3.61053996,-8.04616387,-9.10750090,3.63704879,-8.04798134,0.60001629,-1.34101972,-1.52339061,0.36601096,2.98568651,-4.00386450 +1.60800000,3.60248483,-8.05513420,-9.08738874,3.62899632,-8.05694546,0.59867378,-1.34251480,-1.52002656,0.36589276,2.98567355,-4.00831093 +1.60900000,3.59442074,-8.06408465,-9.06725416,3.62093490,-8.06588971,0.59732977,-1.34400656,-1.51665876,0.36577488,2.98566063,-4.01274747 +1.61000000,3.58634773,-8.07301520,-9.04709720,3.61286455,-8.07481405,0.59598428,-1.34549501,-1.51328722,0.36565733,2.98564774,-4.01717413 +1.61100000,3.57826580,-8.08192584,-9.02691793,3.60478528,-8.08371847,0.59463730,-1.34698013,-1.50991194,0.36554012,2.98563489,-4.02159089 +1.61200000,3.57017499,-8.09081653,-9.00671638,3.59669712,-8.09260295,0.59328884,-1.34846194,-1.50653294,0.36542324,2.98562208,-4.02599773 +1.61300000,3.56207530,-8.09968726,-8.98649261,3.58860008,-8.10146745,0.59193890,-1.34994041,-1.50315022,0.36530668,2.98560930,-4.03039465 +1.61400000,3.55396676,-8.10853800,-8.96624667,3.58049419,-8.11031197,0.59058748,-1.35141556,-1.49976379,0.36519047,2.98559656,-4.03478163 +1.61500000,3.54584939,-8.11736874,-8.94597861,3.57237947,-8.11913648,0.58923459,-1.35288737,-1.49637367,0.36507458,2.98558385,-4.03915867 +1.61600000,3.53772321,-8.12617944,-8.92568847,3.56425593,-8.12794095,0.58788024,-1.35435584,-1.49297985,0.36495903,2.98557118,-4.04352575 +1.61700000,3.52958824,-8.13497010,-8.90537631,3.55612359,-8.13672537,0.58652442,-1.35582097,-1.48958235,0.36484380,2.98555854,-4.04788287 +1.61800000,3.52144450,-8.14374069,-8.88504218,3.54798248,-8.14548971,0.58516713,-1.35728275,-1.48618117,0.36472892,2.98554594,-4.05223001 +1.61900000,3.51329201,-8.15249118,-8.86468613,3.53983262,-8.15423395,0.58380839,-1.35874119,-1.48277632,0.36461436,2.98553337,-4.05656716 +1.62000000,3.50513079,-8.16122155,-8.84430820,3.53167402,-8.16295808,0.58244820,-1.36019627,-1.47936782,0.36450014,2.98552084,-4.06089432 +1.62100000,3.49696086,-8.16993179,-8.82390845,3.52350671,-8.17166206,0.58108655,-1.36164800,-1.47595567,0.36438626,2.98550835,-4.06521147 +1.62200000,3.48878224,-8.17862187,-8.80348694,3.51533070,-8.18034588,0.57972345,-1.36309637,-1.47253987,0.36427271,2.98549589,-4.06951860 +1.62300000,3.48059494,-8.18729177,-8.78304370,3.50714602,-8.18900951,0.57835891,-1.36454137,-1.46912044,0.36415949,2.98548347,-4.07381570 +1.62400000,3.47239900,-8.19594147,-8.76257879,3.49895269,-8.19765294,0.57699293,-1.36598301,-1.46569739,0.36404661,2.98547108,-4.07810277 +1.62500000,3.46419443,-8.20457095,-8.74209226,3.49075073,-8.20627614,0.57562551,-1.36742128,-1.46227072,0.36393406,2.98545873,-4.08237978 +1.62600000,3.45598125,-8.21318018,-8.72158416,3.48254015,-8.21487910,0.57425665,-1.36885617,-1.45884044,0.36382185,2.98544641,-4.08664674 +1.62700000,3.44775948,-8.22176915,-8.70105455,3.47432097,-8.22346178,0.57288636,-1.37028768,-1.45540657,0.36370998,2.98543413,-4.09090363 +1.62800000,3.43952914,-8.23033783,-8.68050346,3.46609323,-8.23202418,0.57151465,-1.37171582,-1.45196910,0.36359844,2.98542189,-4.09515043 +1.62900000,3.43129026,-8.23888621,-8.65993096,3.45785693,-8.24056626,0.57014151,-1.37314057,-1.44852805,0.36348724,2.98540968,-4.09938715 +1.63000000,3.42304284,-8.24741425,-8.63933709,3.44961210,-8.24908801,0.56876694,-1.37456193,-1.44508343,0.36337637,2.98539751,-4.10361377 +1.63100000,3.41478692,-8.25592195,-8.61872191,3.44135876,-8.25758941,0.56739096,-1.37597990,-1.44163524,0.36326584,2.98538537,-4.10783027 +1.63200000,3.40652251,-8.26440927,-8.59808546,3.43309693,-8.26607043,0.56601357,-1.37739448,-1.43818349,0.36315565,2.98537328,-4.11203666 +1.63300000,3.39824964,-8.27287621,-8.57742779,3.42482663,-8.27453106,0.56463476,-1.37880565,-1.43472820,0.36304580,2.98536121,-4.11623292 +1.63400000,3.38996831,-8.28132273,-8.55674897,3.41654788,-8.28297127,0.56325455,-1.38021343,-1.43126936,0.36293628,2.98534918,-4.12041903 +1.63500000,3.38167856,-8.28974882,-8.53604903,3.40826069,-8.29139104,0.56187293,-1.38161780,-1.42780700,0.36282710,2.98533719,-4.12459500 +1.63600000,3.37338041,-8.29815445,-8.51532803,3.39996510,-8.29979035,0.56048991,-1.38301876,-1.42434111,0.36271827,2.98532524,-4.12876080 +1.63700000,3.36507387,-8.30653961,-8.49458602,3.39166112,-8.30816919,0.55910550,-1.38441630,-1.42087171,0.36260976,2.98531332,-4.13291643 +1.63800000,3.35675897,-8.31490427,-8.47382306,3.38334877,-8.31652752,0.55771969,-1.38581044,-1.41739880,0.36250160,2.98530144,-4.13706189 +1.63900000,3.34843572,-8.32324842,-8.45303918,3.37502807,-8.32486534,0.55633249,-1.38720115,-1.41392239,0.36239378,2.98528959,-4.14119715 +1.64000000,3.34010415,-8.33157203,-8.43223445,3.36669905,-8.33318261,0.55494390,-1.38858844,-1.41044250,0.36228630,2.98527778,-4.14532221 +1.64100000,3.33176427,-8.33987508,-8.41140891,3.35836171,-8.34147932,0.55355392,-1.38997230,-1.40695913,0.36217915,2.98526601,-4.14943706 +1.64200000,3.32341611,-8.34815756,-8.39056263,3.35001609,-8.34975545,0.55216257,-1.39135274,-1.40347228,0.36207235,2.98525427,-4.15354170 +1.64300000,3.31505969,-8.35641944,-8.36969563,3.34166221,-8.35801098,0.55076984,-1.39272974,-1.39998197,0.36196589,2.98524257,-4.15763610 +1.64400000,3.30669503,-8.36466069,-8.34880799,3.33330008,-8.36624589,0.54937574,-1.39410330,-1.39648821,0.36185976,2.98523091,-4.16172026 +1.64500000,3.29832215,-8.37288131,-8.32789975,3.32492972,-8.37446015,0.54798027,-1.39547342,-1.39299100,0.36175398,2.98521928,-4.16579417 +1.64600000,3.28994107,-8.38108127,-8.30697097,3.31655117,-8.38265375,0.54658343,-1.39684011,-1.38949036,0.36164854,2.98520769,-4.16985782 +1.64700000,3.28155181,-8.38926056,-8.28602168,3.30816442,-8.39082667,0.54518522,-1.39820334,-1.38598628,0.36154344,2.98519613,-4.17391121 +1.64800000,3.27315439,-8.39741914,-8.26505195,3.29976952,-8.39897888,0.54378566,-1.39956313,-1.38247879,0.36143868,2.98518461,-4.17795431 +1.64900000,3.26474883,-8.40555700,-8.24406184,3.29136647,-8.40711037,0.54238474,-1.40091946,-1.37896789,0.36133426,2.98517313,-4.18198712 +1.65000000,3.25633516,-8.41367412,-8.22305137,3.28295530,-8.41522112,0.54098247,-1.40227233,-1.37545358,0.36123019,2.98516169,-4.18600964 +1.65100000,3.24791339,-8.42177048,-8.20202063,3.27453604,-8.42331110,0.53957885,-1.40362175,-1.37193588,0.36112646,2.98515028,-4.19002185 +1.65200000,3.23948354,-8.42984607,-8.18096964,3.26610869,-8.43138030,0.53817388,-1.40496770,-1.36841480,0.36102307,2.98513891,-4.19402374 +1.65300000,3.23104564,-8.43790085,-8.15989847,3.25767328,-8.43942869,0.53676757,-1.40631018,-1.36489034,0.36092002,2.98512757,-4.19801530 +1.65400000,3.22259971,-8.44593481,-8.13880717,3.24922984,-8.44745627,0.53535992,-1.40764920,-1.36136251,0.36081731,2.98511627,-4.20199653 +1.65500000,3.21414576,-8.45394794,-8.11769578,3.24077838,-8.45546299,0.53395093,-1.40898474,-1.35783132,0.36071495,2.98510501,-4.20596741 +1.65600000,3.20568382,-8.46194020,-8.09656437,3.23231892,-8.46344886,0.53254062,-1.41031681,-1.35429678,0.36061294,2.98509378,-4.20992794 +1.65700000,3.19721391,-8.46991159,-8.07541298,3.22385149,-8.47141384,0.53112897,-1.41164539,-1.35075890,0.36051126,2.98508260,-4.21387809 +1.65800000,3.18873605,-8.47786207,-8.05424167,3.21537610,-8.47935792,0.52971600,-1.41297050,-1.34721769,0.36040993,2.98507144,-4.21781788 +1.65900000,3.18025025,-8.48579164,-8.03305048,3.20689278,-8.48728108,0.52830171,-1.41429211,-1.34367316,0.36030895,2.98506033,-4.22174728 +1.66000000,3.17175655,-8.49370027,-8.01183948,3.19840154,-8.49518330,0.52688610,-1.41561024,-1.34012531,0.36020831,2.98504925,-4.22566628 +1.66100000,3.16325497,-8.50158795,-7.99060870,3.18990242,-8.50306455,0.52546917,-1.41692487,-1.33657415,0.36010801,2.98503821,-4.22957489 +1.66200000,3.15474551,-8.50945464,-7.96935822,3.18139542,-8.51092483,0.52405094,-1.41823601,-1.33301969,0.36000806,2.98502721,-4.23347308 +1.66300000,3.14622821,-8.51730035,-7.94808806,3.17288058,-8.51876410,0.52263139,-1.41954365,-1.32946195,0.35990846,2.98501624,-4.23736084 +1.66400000,3.13770309,-8.52512503,-7.92679830,3.16435790,-8.52658236,0.52121055,-1.42084778,-1.32590093,0.35980920,2.98500531,-4.24123818 +1.66500000,3.12917016,-8.53292868,-7.90548898,3.15582742,-8.53437958,0.51978840,-1.42214841,-1.32233663,0.35971029,2.98499442,-4.24510508 +1.66600000,3.12062945,-8.54071128,-7.88416016,3.14728915,-8.54215574,0.51836495,-1.42344554,-1.31876907,0.35961172,2.98498356,-4.24896152 +1.66700000,3.11208097,-8.54847280,-7.86281188,3.13874311,-8.54991082,0.51694021,-1.42473914,-1.31519826,0.35951350,2.98497274,-4.25280751 +1.66800000,3.10352476,-8.55621323,-7.84144421,3.13018933,-8.55764481,0.51551418,-1.42602924,-1.31162420,0.35941562,2.98496196,-4.25664303 +1.66900000,3.09496083,-8.56393255,-7.82005718,3.12162783,-8.56535768,0.51408687,-1.42731581,-1.30804691,0.35931810,2.98495121,-4.26046807 +1.67000000,3.08638920,-8.57163074,-7.79865086,3.11305863,-8.57304942,0.51265827,-1.42859887,-1.30446639,0.35922091,2.98494051,-4.26428262 +1.67100000,3.07780989,-8.57930778,-7.77722530,3.10448174,-8.58072000,0.51122839,-1.42987839,-1.30088265,0.35912408,2.98492984,-4.26808668 +1.67200000,3.06922292,-8.58696365,-7.75578056,3.09589719,-8.58836941,0.50979724,-1.43115439,-1.29729570,0.35902760,2.98491920,-4.27188023 +1.67300000,3.06062833,-8.59459833,-7.73431667,3.08730501,-8.59599764,0.50836481,-1.43242686,-1.29370555,0.35893146,2.98490861,-4.27566327 +1.67400000,3.05202611,-8.60221181,-7.71283371,3.07870520,-8.60360465,0.50693111,-1.43369580,-1.29011221,0.35883567,2.98489805,-4.27943578 +1.67500000,3.04341631,-8.60980406,-7.69133171,3.07009781,-8.61119043,0.50549615,-1.43496119,-1.28651569,0.35874023,2.98488752,-4.28319777 +1.67600000,3.03479894,-8.61737507,-7.66981073,3.06148283,-8.61875497,0.50405993,-1.43622305,-1.28291599,0.35864513,2.98487704,-4.28694921 +1.67700000,3.02617401,-8.62492482,-7.64827084,3.05286030,-8.62629824,0.50262245,-1.43748136,-1.27931312,0.35855039,2.98486659,-4.29069010 +1.67800000,3.01754156,-8.63245328,-7.62671207,3.04423024,-8.63382022,0.50118371,-1.43873613,-1.27570710,0.35845599,2.98485618,-4.29442043 +1.67900000,3.00890160,-8.63996045,-7.60513448,3.03559267,-8.64132091,0.49974372,-1.43998735,-1.27209794,0.35836195,2.98484581,-4.29814020 +1.68000000,3.00025415,-8.64744629,-7.58353813,3.02694761,-8.64880027,0.49830249,-1.44123501,-1.26848563,0.35826825,2.98483548,-4.30184938 +1.68100000,2.99159924,-8.65491080,-7.56192307,3.01829508,-8.65625829,0.49686001,-1.44247912,-1.26487019,0.35817490,2.98482518,-4.30554798 +1.68200000,2.98293689,-8.66235396,-7.54028936,3.00963510,-8.66369495,0.49541629,-1.44371966,-1.26125163,0.35808190,2.98481492,-4.30923599 +1.68300000,2.97426711,-8.66977574,-7.51863703,3.00096769,-8.67111023,0.49397133,-1.44495665,-1.25762997,0.35798926,2.98480469,-4.31291339 +1.68400000,2.96558993,-8.67717613,-7.49696616,2.99229288,-8.67850413,0.49252514,-1.44619007,-1.25400519,0.35789696,2.98479451,-4.31658018 +1.68500000,2.95690538,-8.68455511,-7.47527679,2.98361069,-8.68587660,0.49107772,-1.44741992,-1.25037733,0.35780501,2.98478436,-4.32023634 +1.68600000,2.94821347,-8.69191267,-7.45356898,2.97492114,-8.69322765,0.48962908,-1.44864620,-1.24674638,0.35771342,2.98477425,-4.32388188 +1.68700000,2.93951422,-8.69924877,-7.43184277,2.96622424,-8.70055724,0.48817921,-1.44986891,-1.24311235,0.35762217,2.98476418,-4.32751678 +1.68800000,2.93080765,-8.70656341,-7.41009823,2.95752003,-8.70786537,0.48672812,-1.45108804,-1.23947526,0.35753128,2.98475414,-4.33114103 +1.68900000,2.92209380,-8.71385657,-7.38833541,2.94880852,-8.71515201,0.48527582,-1.45230358,-1.23583510,0.35744074,2.98474415,-4.33475462 +1.69000000,2.91337267,-8.72112823,-7.36655436,2.94008973,-8.72241715,0.48382230,-1.45351555,-1.23219190,0.35735055,2.98473419,-4.33835755 +1.69100000,2.90464429,-8.72837837,-7.34475513,2.93136369,-8.72966077,0.48236758,-1.45472393,-1.22854566,0.35726071,2.98472426,-4.34194981 +1.69200000,2.89590868,-8.73560697,-7.32293778,2.92263042,-8.73688285,0.48091165,-1.45592872,-1.22489639,0.35717122,2.98471438,-4.34553138 +1.69300000,2.88716587,-8.74281402,-7.30110236,2.91388993,-8.74408337,0.47945452,-1.45712991,-1.22124409,0.35708209,2.98470453,-4.34910226 +1.69400000,2.87841587,-8.74999950,-7.27924893,2.90514226,-8.75126231,0.47799619,-1.45832752,-1.21758878,0.35699331,2.98469472,-4.35266245 +1.69500000,2.86965871,-8.75716339,-7.25737753,2.89638742,-8.75841966,0.47653667,-1.45952152,-1.21393047,0.35690488,2.98468495,-4.35621192 +1.69600000,2.86089440,-8.76430567,-7.23548824,2.88762543,-8.76555540,0.47507596,-1.46071192,-1.21026916,0.35681681,2.98467522,-4.35975068 +1.69700000,2.85212298,-8.77142633,-7.21358109,2.87885631,-8.77266952,0.47361406,-1.46189872,-1.20660487,0.35672909,2.98466552,-4.36327871 +1.69800000,2.84334445,-8.77852534,-7.19165614,2.87008010,-8.77976198,0.47215098,-1.46308191,-1.20293760,0.35664172,2.98465587,-4.36679601 +1.69900000,2.83455885,-8.78560269,-7.16971344,2.86129680,-8.78683279,0.47068672,-1.46426149,-1.19926736,0.35655470,2.98464625,-4.37030257 +1.70000000,2.82576619,-8.79265837,-7.14775306,2.85250644,-8.79388191,0.46922128,-1.46543746,-1.19559416,0.35646804,2.98463666,-4.37379837 +1.70100000,2.81696650,-8.79969235,-7.12577504,2.84370904,-8.80090934,0.46775467,-1.46660981,-1.19191801,0.35638174,2.98462712,-4.37728342 +1.70200000,2.80815979,-8.80670462,-7.10377944,2.83490463,-8.80791505,0.46628689,-1.46777855,-1.18823892,0.35629579,2.98461761,-4.38075770 +1.70300000,2.79934610,-8.81369516,-7.08176631,2.82609322,-8.81489903,0.46481795,-1.46894366,-1.18455690,0.35621019,2.98460815,-4.38422121 +1.70400000,2.79052543,-8.82066395,-7.05973571,2.81727484,-8.82186125,0.46334784,-1.47010515,-1.18087196,0.35612495,2.98459872,-4.38767393 +1.70500000,2.78169782,-8.82761098,-7.03768769,2.80844950,-8.82880171,0.46187658,-1.47126301,-1.17718410,0.35604006,2.98458932,-4.39111586 +1.70600000,2.77286329,-8.83453623,-7.01562231,2.79961724,-8.83572039,0.46040416,-1.47241724,-1.17349334,0.35595553,2.98457997,-4.39454699 +1.70700000,2.76402185,-8.84143967,-6.99353962,2.79077807,-8.84261727,0.45893059,-1.47356783,-1.16979969,0.35587135,2.98457065,-4.39796731 +1.70800000,2.75517352,-8.84832131,-6.97143967,2.78193201,-8.84949232,0.45745588,-1.47471479,-1.16610314,0.35578753,2.98456138,-4.40137681 +1.70900000,2.74631834,-8.85518111,-6.94932252,2.77307909,-8.85634554,0.45598002,-1.47585812,-1.16240372,0.35570406,2.98455214,-4.40477549 +1.71000000,2.73745632,-8.86201906,-6.92718822,2.76421933,-8.86317691,0.45450302,-1.47699780,-1.15870143,0.35562095,2.98454293,-4.40816334 +1.71100000,2.72858749,-8.86883515,-6.90503683,2.75535274,-8.86998641,0.45302489,-1.47813383,-1.15499629,0.35553820,2.98453377,-4.41154034 +1.71200000,2.71971186,-8.87562935,-6.88286841,2.74647936,-8.87677403,0.45154562,-1.47926622,-1.15128829,0.35545580,2.98452464,-4.41490650 +1.71300000,2.71082946,-8.88240166,-6.86068300,2.73759920,-8.88353974,0.45006523,-1.48039496,-1.14757745,0.35537376,2.98451556,-4.41826180 +1.71400000,2.70194031,-8.88915204,-6.83848067,2.72871229,-8.89028353,0.44858371,-1.48152005,-1.14386378,0.35529208,2.98450651,-4.42160623 +1.71500000,2.69304443,-8.89588050,-6.81626146,2.71981864,-8.89700539,0.44710107,-1.48264148,-1.14014729,0.35521076,2.98449750,-4.42493979 +1.71600000,2.68414184,-8.90258700,-6.79402544,2.71091829,-8.90370530,0.44561731,-1.48375925,-1.13642799,0.35512979,2.98448852,-4.42826247 +1.71700000,2.67523257,-8.90927154,-6.77177265,2.70201124,-8.91038323,0.44413243,-1.48487337,-1.13270588,0.35504918,2.98447959,-4.43157425 +1.71800000,2.66631663,-8.91593410,-6.74950315,2.69309753,-8.91703918,0.44264645,-1.48598381,-1.12898098,0.35496892,2.98447069,-4.43487514 +1.71900000,2.65739406,-8.92257465,-6.72721700,2.68417717,-8.92367313,0.44115936,-1.48709060,-1.12525329,0.35488903,2.98446184,-4.43816513 +1.72000000,2.64846487,-8.92919320,-6.70491425,2.67525019,-8.93028506,0.43967117,-1.48819371,-1.12152282,0.35480949,2.98445302,-4.44144420 +1.72100000,2.63952908,-8.93578971,-6.68259496,2.66631661,-8.93687495,0.43818187,-1.48929315,-1.11778959,0.35473031,2.98444423,-4.44471235 +1.72200000,2.63058671,-8.94236417,-6.66025918,2.65737645,-8.94344280,0.43669148,-1.49038892,-1.11405360,0.35465149,2.98443549,-4.44796958 +1.72300000,2.62163779,-8.94891657,-6.63790697,2.64842973,-8.94998858,0.43520000,-1.49148100,-1.11031486,0.35457303,2.98442679,-4.45121586 +1.72400000,2.61268235,-8.95544688,-6.61553838,2.63947648,-8.95651227,0.43370743,-1.49256941,-1.10657338,0.35449493,2.98441812,-4.45445120 +1.72500000,2.60372039,-8.96195510,-6.59315346,2.63051671,-8.96301387,0.43221378,-1.49365414,-1.10282918,0.35441718,2.98440949,-4.45767559 +1.72600000,2.59475195,-8.96844121,-6.57075228,2.62155046,-8.96949334,0.43071904,-1.49473518,-1.09908225,0.35433980,2.98440091,-4.46088902 +1.72700000,2.58577705,-8.97490519,-6.54833489,2.61257773,-8.97595069,0.42922323,-1.49581253,-1.09533260,0.35426277,2.98439235,-4.46409148 +1.72800000,2.57679570,-8.98134703,-6.52590133,2.60359856,-8.98238589,0.42772634,-1.49688619,-1.09158026,0.35418611,2.98438384,-4.46728297 +1.72900000,2.56780793,-8.98776670,-6.50345168,2.59461297,-8.98879893,0.42622839,-1.49795616,-1.08782522,0.35410980,2.98437537,-4.47046347 +1.73000000,2.55881377,-8.99416420,-6.48098598,2.58562097,-8.99518979,0.42472937,-1.49902243,-1.08406750,0.35403385,2.98436693,-4.47363298 +1.73100000,2.54981323,-9.00053950,-6.45850429,2.57662260,-9.00155845,0.42322928,-1.50008501,-1.08030710,0.35395827,2.98435854,-4.47679150 +1.73200000,2.54080634,-9.00689260,-6.43600667,2.56761786,-9.00790491,0.42172814,-1.50114388,-1.07654404,0.35388304,2.98435018,-4.47993901 +1.73300000,2.53179311,-9.01322348,-6.41349316,2.55860679,-9.01422914,0.42022594,-1.50219905,-1.07277832,0.35380818,2.98434186,-4.48307550 +1.73400000,2.52277358,-9.01953211,-6.39096383,2.54958941,-9.02053112,0.41872269,-1.50325051,-1.06900996,0.35373368,2.98433358,-4.48620097 +1.73500000,2.51374776,-9.02581849,-6.36841873,2.54056574,-9.02681085,0.41721839,-1.50429826,-1.06523896,0.35365953,2.98432534,-4.48931542 +1.73600000,2.50471568,-9.03208260,-6.34585792,2.53153580,-9.03306831,0.41571305,-1.50534230,-1.06146533,0.35358575,2.98431714,-4.49241883 +1.73700000,2.49567736,-9.03832443,-6.32328145,2.52249961,-9.03930347,0.41420666,-1.50638263,-1.05768908,0.35351233,2.98430897,-4.49551119 +1.73800000,2.48663281,-9.04454395,-6.30068938,2.51345720,-9.04551634,0.41269925,-1.50741924,-1.05391022,0.35343927,2.98430085,-4.49859251 +1.73900000,2.47758207,-9.05074116,-6.27808176,2.50440858,-9.05170688,0.41119079,-1.50845213,-1.05012876,0.35336658,2.98429276,-4.50166277 +1.74000000,2.46852515,-9.05691604,-6.25545865,2.49535379,-9.05787509,0.40968131,-1.50948130,-1.04634471,0.35329424,2.98428471,-4.50472196 +1.74100000,2.45946209,-9.06306856,-6.23282011,2.48629284,-9.06402095,0.40817081,-1.51050674,-1.04255807,0.35322227,2.98427670,-4.50777008 +1.74200000,2.45039289,-9.06919873,-6.21016619,2.47722576,-9.07014445,0.40665928,-1.51152846,-1.03876887,0.35315066,2.98426873,-4.51080712 +1.74300000,2.44131758,-9.07530652,-6.18749694,2.46815256,-9.07624557,0.40514673,-1.51254645,-1.03497710,0.35307941,2.98426080,-4.51383307 +1.74400000,2.43223619,-9.08139192,-6.16481243,2.45907327,-9.08232429,0.40363317,-1.51356070,-1.03118278,0.35300853,2.98425290,-4.51684792 +1.74500000,2.42314873,-9.08745491,-6.14211271,2.44998792,-9.08838060,0.40211860,-1.51457122,-1.02738591,0.35293800,2.98424505,-4.51985168 +1.74600000,2.41405524,-9.09349548,-6.11939783,2.44089652,-9.09441449,0.40060302,-1.51557801,-1.02358651,0.35286785,2.98423724,-4.52284432 +1.74700000,2.40495572,-9.09951361,-6.09666785,2.43179910,-9.10042594,0.39908644,-1.51658105,-1.01978458,0.35279805,2.98422946,-4.52582585 +1.74800000,2.39585021,-9.10550929,-6.07392283,2.42269567,-9.10641493,0.39756886,-1.51758035,-1.01598014,0.35272862,2.98422172,-4.52879626 +1.74900000,2.38673873,-9.11148250,-6.05116283,2.41358627,-9.11238146,0.39605028,-1.51857591,-1.01217319,0.35265955,2.98421402,-4.53175553 +1.75000000,2.37762130,-9.11743323,-6.02838789,2.40447092,-9.11832550,0.39453072,-1.51956772,-1.00836374,0.35259084,2.98420636,-4.53470367 +1.75100000,2.36849794,-9.12336146,-6.00559808,2.39534963,-9.12424704,0.39301016,-1.52055579,-1.00455181,0.35252250,2.98419874,-4.53764066 +1.75200000,2.35936867,-9.12926719,-5.98279345,2.38622243,-9.13014607,0.39148862,-1.52154010,-1.00073739,0.35245452,2.98419116,-4.54056650 +1.75300000,2.35023352,-9.13515038,-5.95997406,2.37708935,-9.13602257,0.38996610,-1.52252065,-0.99692051,0.35238691,2.98418362,-4.54348118 +1.75400000,2.34109251,-9.14101104,-5.93713996,2.36795040,-9.14187653,0.38844260,-1.52349745,-0.99310117,0.35231966,2.98417611,-4.54638470 +1.75500000,2.33194566,-9.14684914,-5.91429121,2.35880560,-9.14770794,0.38691813,-1.52447049,-0.98927937,0.35225277,2.98416865,-4.54927704 +1.75600000,2.32279300,-9.15266468,-5.89142787,2.34965499,-9.15351677,0.38539269,-1.52543977,-0.98545514,0.35218625,2.98416122,-4.55215821 +1.75700000,2.31363454,-9.15845763,-5.86855000,2.34049858,-9.15930301,0.38386629,-1.52640528,-0.98162847,0.35212010,2.98415384,-4.55502818 +1.75800000,2.30447031,-9.16422798,-5.84565764,2.33133639,-9.16506666,0.38233892,-1.52736703,-0.97779938,0.35205431,2.98414649,-4.55788697 +1.75900000,2.29530033,-9.16997573,-5.82275086,2.32216845,-9.17080769,0.38081059,-1.52832501,-0.97396788,0.35198888,2.98413918,-4.56073455 +1.76000000,2.28612463,-9.17570084,-5.79982971,2.31299478,-9.17652610,0.37928131,-1.52927922,-0.97013398,0.35192382,2.98413191,-4.56357092 +1.76100000,2.27694323,-9.18140332,-5.77689426,2.30381540,-9.18222186,0.37775108,-1.53022966,-0.96629768,0.35185913,2.98412468,-4.56639609 +1.76200000,2.26775615,-9.18708314,-5.75394454,2.29463034,-9.18789497,0.37621991,-1.53117632,-0.96245900,0.35179480,2.98411749,-4.56921003 +1.76300000,2.25856341,-9.19274030,-5.73098063,2.28543962,-9.19354540,0.37468779,-1.53211920,-0.95861794,0.35173084,2.98411034,-4.57201274 +1.76400000,2.24936503,-9.19837477,-5.70800258,2.27624326,-9.19917315,0.37315473,-1.53305830,-0.95477452,0.35166724,2.98410323,-4.57480422 +1.76500000,2.24016105,-9.20398654,-5.68501045,2.26704128,-9.20477821,0.37162074,-1.53399362,-0.95092874,0.35160401,2.98409615,-4.57758446 +1.76600000,2.23095147,-9.20957561,-5.66200429,2.25783371,-9.21036055,0.37008581,-1.53492515,-0.94708062,0.35154114,2.98408912,-4.58035345 +1.76700000,2.22173633,-9.21514195,-5.63898415,2.24862057,-9.21592017,0.36854996,-1.53585290,-0.94323016,0.35147865,2.98408213,-4.58311118 +1.76800000,2.21251564,-9.22068556,-5.61595011,2.23940188,-9.22145704,0.36701318,-1.53677686,-0.93937737,0.35141652,2.98407517,-4.58585766 +1.76900000,2.20328944,-9.22620641,-5.59290220,2.23017766,-9.22697117,0.36547549,-1.53769702,-0.93552226,0.35135475,2.98406825,-4.58859287 +1.77000000,2.19405773,-9.23170450,-5.56984050,2.22094794,-9.23246252,0.36393687,-1.53861339,-0.93166485,0.35129335,2.98406138,-4.59131680 +1.77100000,2.18482055,-9.23717982,-5.54676505,2.21171275,-9.23793110,0.36239735,-1.53952597,-0.92780513,0.35123232,2.98405454,-4.59402945 +1.77200000,2.17557792,-9.24263234,-5.52367592,2.20247209,-9.24337688,0.36085691,-1.54043474,-0.92394313,0.35117166,2.98404774,-4.59673082 +1.77300000,2.16632986,-9.24806205,-5.50057315,2.19322600,-9.24879986,0.35931557,-1.54133972,-0.92007885,0.35111136,2.98404098,-4.59942089 +1.77400000,2.15707639,-9.25346895,-5.47745682,2.18397450,-9.25420002,0.35777333,-1.54224089,-0.91621229,0.35105144,2.98403426,-4.60209966 +1.77500000,2.14781753,-9.25885301,-5.45432696,2.17471761,-9.25957734,0.35623019,-1.54313826,-0.91234348,0.35099188,2.98402758,-4.60476713 +1.77600000,2.13855332,-9.26421423,-5.43118365,2.16545535,-9.26493181,0.35468616,-1.54403182,-0.90847241,0.35093268,2.98402094,-4.60742328 +1.77700000,2.12928377,-9.26955259,-5.40802694,2.15618775,-9.27026343,0.35314124,-1.54492157,-0.90459911,0.35087386,2.98401434,-4.61006812 +1.77800000,2.12000890,-9.27486808,-5.38485689,2.14691483,-9.27557217,0.35159543,-1.54580751,-0.90072357,0.35081540,2.98400778,-4.61270162 +1.77900000,2.11072874,-9.28016069,-5.36167354,2.13763661,-9.28085802,0.35004874,-1.54668963,-0.89684581,0.35075731,2.98400126,-4.61532380 +1.78000000,2.10144331,-9.28543039,-5.33847697,2.12835312,-9.28612098,0.34850117,-1.54756794,-0.89296583,0.35069960,2.98399478,-4.61793464 +1.78100000,2.09215263,-9.29067719,-5.31526723,2.11906438,-9.29136102,0.34695273,-1.54844243,-0.88908366,0.35064224,2.98398833,-4.62053413 +1.78200000,2.08285673,-9.29590106,-5.29204437,2.10977041,-9.29657814,0.34540342,-1.54931309,-0.88519928,0.35058526,2.98398193,-4.62312227 +1.78300000,2.07355563,-9.30110200,-5.26880845,2.10047123,-9.30177232,0.34385324,-1.55017994,-0.88131273,0.35052865,2.98397556,-4.62569906 +1.78400000,2.06424935,-9.30627998,-5.24555953,2.09116687,-9.30694354,0.34230220,-1.55104296,-0.87742400,0.35047240,2.98396924,-4.62826448 +1.78500000,2.05493791,-9.31143501,-5.22229767,2.08185735,-9.31209181,0.34075029,-1.55190215,-0.87353310,0.35041653,2.98396295,-4.63081854 +1.78600000,2.04562135,-9.31656706,-5.19902292,2.07254270,-9.31721709,0.33919754,-1.55275752,-0.86964005,0.35036102,2.98395671,-4.63336122 +1.78700000,2.03629967,-9.32167612,-5.17573534,2.06322293,-9.32231939,0.33764393,-1.55360905,-0.86574486,0.35030589,2.98395050,-4.63589251 +1.78800000,2.02697291,-9.32676218,-5.15243499,2.05389807,-9.32739869,0.33608947,-1.55445675,-0.86184752,0.35025112,2.98394434,-4.63841242 +1.78900000,2.01764108,-9.33182523,-5.12912193,2.04456814,-9.33245497,0.33453417,-1.55530062,-0.85794806,0.35019672,2.98393821,-4.64092094 +1.79000000,2.00830422,-9.33686525,-5.10579621,2.03523316,-9.33748822,0.33297803,-1.55614064,-0.85404649,0.35014269,2.98393212,-4.64341805 +1.79100000,1.99896234,-9.34188224,-5.08245789,2.02589317,-9.34249844,0.33142105,-1.55697683,-0.85014280,0.35008904,2.98392607,-4.64590376 +1.79200000,1.98961546,-9.34687617,-5.05910703,2.01654817,-9.34748560,0.32986324,-1.55780918,-0.84623702,0.35003575,2.98392007,-4.64837806 +1.79300000,1.98026361,-9.35184705,-5.03574369,2.00719820,-9.35244970,0.32830461,-1.55863768,-0.84232915,0.34998283,2.98391410,-4.65084094 +1.79400000,1.97090682,-9.35679484,-5.01236792,1.99784328,-9.35739072,0.32674514,-1.55946234,-0.83841920,0.34993029,2.98390817,-4.65329240 +1.79500000,1.96154510,-9.36171956,-4.98897979,1.98848343,-9.36230866,0.32518486,-1.56028314,-0.83450719,0.34987811,2.98390228,-4.65573243 +1.79600000,1.95217848,-9.36662117,-4.96557934,1.97911867,-9.36720349,0.32362376,-1.56110010,-0.83059311,0.34982631,2.98389643,-4.65816103 +1.79700000,1.94280698,-9.37149967,-4.94216664,1.96974903,-9.37207521,0.32206185,-1.56191321,-0.82667699,0.34977487,2.98389062,-4.66057818 +1.79800000,1.93343062,-9.37635505,-4.91874175,1.96037453,-9.37692381,0.32049912,-1.56272246,-0.82275882,0.34972381,2.98388485,-4.66298388 +1.79900000,1.92404943,-9.38118729,-4.89530472,1.95099519,-9.38174927,0.31893560,-1.56352786,-0.81883862,0.34967311,2.98387912,-4.66537814 +1.80000000,1.91466344,-9.38599639,-4.87185560,1.94161104,-9.38655158,0.31737127,-1.56432940,-0.81491641,0.34962279,2.98387343,-4.66776093 +1.80100000,1.90527266,-9.39078233,-4.84839447,1.93222210,-9.39133073,0.31580614,-1.56512708,-0.81099218,0.34957284,2.98386778,-4.67013226 +1.80200000,1.89587711,-9.39554509,-4.82492137,1.92282838,-9.39608671,0.31424022,-1.56592090,-0.80706595,0.34952326,2.98386217,-4.67249213 +1.80300000,1.88647683,-9.40028468,-4.80143637,1.91342993,-9.40081950,0.31267351,-1.56671085,-0.80313773,0.34947406,2.98385660,-4.67484051 +1.80400000,1.87707183,-9.40500107,-4.77793952,1.90402675,-9.40552910,0.31110601,-1.56749694,-0.79920753,0.34942522,2.98385107,-4.67717742 +1.80500000,1.86766213,-9.40969425,-4.75443088,1.89461888,-9.41021550,0.30953773,-1.56827916,-0.79527536,0.34937676,2.98384558,-4.67950283 +1.80600000,1.85824777,-9.41436422,-4.73091051,1.88520633,-9.41487867,0.30796867,-1.56905751,-0.79134122,0.34932866,2.98384013,-4.68181676 +1.80700000,1.84882876,-9.41901096,-4.70737846,1.87578913,-9.41951861,0.30639884,-1.56983199,-0.78740513,0.34928094,2.98383472,-4.68411919 +1.80800000,1.83940512,-9.42363446,-4.68383480,1.86636730,-9.42413531,0.30482824,-1.57060260,-0.78346710,0.34923360,2.98382935,-4.68641011 +1.80900000,1.82997689,-9.42823470,-4.66027958,1.85694087,-9.42872876,0.30325687,-1.57136933,-0.77952713,0.34918662,2.98382401,-4.68868953 +1.81000000,1.82054407,-9.43281168,-4.63671286,1.84750985,-9.43329895,0.30168474,-1.57213218,-0.77558525,0.34914002,2.98381872,-4.69095743 +1.81100000,1.81110671,-9.43736539,-4.61313470,1.83807428,-9.43784585,0.30011185,-1.57289115,-0.77164144,0.34909379,2.98381347,-4.69321382 +1.81200000,1.80166481,-9.44189582,-4.58954516,1.82863417,-9.44236947,0.29853820,-1.57364625,-0.76769574,0.34904793,2.98380826,-4.69545867 +1.81300000,1.79221841,-9.44640294,-4.56594429,1.81918955,-9.44686980,0.29696380,-1.57439746,-0.76374814,0.34900244,2.98380309,-4.69769200 +1.81400000,1.78276752,-9.45088676,-4.54233215,1.80974044,-9.45134681,0.29538866,-1.57514479,-0.75979865,0.34895733,2.98379796,-4.69991379 +1.81500000,1.77331218,-9.45534726,-4.51870880,1.80028686,-9.45580051,0.29381277,-1.57588823,-0.75584729,0.34891259,2.98379286,-4.70212404 +1.81600000,1.76385239,-9.45978443,-4.49507431,1.79082884,-9.46023087,0.29223614,-1.57662778,-0.75189406,0.34886822,2.98378781,-4.70432275 +1.81700000,1.75438819,-9.46419825,-4.47142872,1.78136641,-9.46463789,0.29065878,-1.57736344,-0.74793898,0.34882423,2.98378280,-4.70650990 +1.81800000,1.74491961,-9.46858873,-4.44777210,1.77189957,-9.46902155,0.28908068,-1.57809521,-0.74398206,0.34878061,2.98377783,-4.70868549 +1.81900000,1.73544665,-9.47295584,-4.42410450,1.76242837,-9.47338186,0.28750186,-1.57882308,-0.74002329,0.34873736,2.98377290,-4.71084952 +1.82000000,1.72596935,-9.47729958,-4.40042599,1.75295282,-9.47771879,0.28592231,-1.57954706,-0.73606270,0.34869449,2.98376801,-4.71300199 +1.82100000,1.71648773,-9.48161994,-4.37673661,1.74347294,-9.48203233,0.28434205,-1.58026715,-0.73210030,0.34865199,2.98376315,-4.71514288 +1.82200000,1.70700181,-9.48591690,-4.35303644,1.73398876,-9.48632248,0.28276106,-1.58098333,-0.72813609,0.34860987,2.98375834,-4.71727220 +1.82300000,1.69751162,-9.49019046,-4.32932552,1.72450030,-9.49058922,0.28117937,-1.58169561,-0.72417008,0.34856811,2.98375357,-4.71938993 +1.82400000,1.68801718,-9.49444059,-4.30560392,1.71500759,-9.49483254,0.27959696,-1.58240399,-0.72020228,0.34852674,2.98374884,-4.72149607 +1.82500000,1.67851851,-9.49866731,-4.28187170,1.70551065,-9.49905244,0.27801386,-1.58310847,-0.71623271,0.34848573,2.98374415,-4.72359062 +1.82600000,1.66901564,-9.50287058,-4.25812891,1.69600949,-9.50324890,0.27643005,-1.58380904,-0.71226137,0.34844510,2.98373950,-4.72567358 +1.82700000,1.65950859,-9.50705041,-4.23437561,1.68650416,-9.50742191,0.27484554,-1.58450570,-0.70828827,0.34840485,2.98373489,-4.72774493 +1.82800000,1.64999739,-9.51120678,-4.21061187,1.67699466,-9.51157146,0.27326034,-1.58519845,-0.70431343,0.34836497,2.98373031,-4.72980467 +1.82900000,1.64048205,-9.51533969,-4.18683773,1.66748102,-9.51569754,0.27167445,-1.58588729,-0.70033684,0.34832546,2.98372578,-4.73185280 +1.83000000,1.63096260,-9.51944911,-4.16305326,1.65796327,-9.51980014,0.27008788,-1.58657222,-0.69635853,0.34828633,2.98372129,-4.73388931 +1.83100000,1.62143906,-9.52353505,-4.13925852,1.64844143,-9.52387926,0.26850063,-1.58725323,-0.69237850,0.34824757,2.98371684,-4.73591420 +1.83200000,1.61191147,-9.52759748,-4.11545356,1.63891552,-9.52793487,0.26691270,-1.58793033,-0.68839676,0.34820919,2.98371243,-4.73792746 +1.83300000,1.60237983,-9.53163642,-4.09163845,1.62938557,-9.53196698,0.26532410,-1.58860351,-0.68441333,0.34817118,2.98370806,-4.73992909 +1.83400000,1.59284418,-9.53565183,-4.06781324,1.61985159,-9.53597556,0.26373482,-1.58927276,-0.68042820,0.34813354,2.98370373,-4.74191908 +1.83500000,1.58330453,-9.53964371,-4.04397800,1.61031362,-9.53996062,0.26214488,-1.58993810,-0.67644139,0.34809629,2.98369944,-4.74389743 +1.83600000,1.57376092,-9.54361206,-4.02013277,1.60077168,-9.54392214,0.26055429,-1.59059952,-0.67245292,0.34805940,2.98369519,-4.74586413 +1.83700000,1.56421336,-9.54755685,-3.99627762,1.59122579,-9.54786011,0.25896303,-1.59125701,-0.66846278,0.34802289,2.98369098,-4.74781918 +1.83800000,1.55466189,-9.55147809,-3.97241261,1.58167597,-9.55177452,0.25737112,-1.59191057,-0.66447100,0.34798676,2.98368681,-4.74976258 +1.83900000,1.54510651,-9.55537577,-3.94853780,1.57212225,-9.55566536,0.25577856,-1.59256020,-0.66047758,0.34795100,2.98368269,-4.75169431 +1.84000000,1.53554726,-9.55924986,-3.92465325,1.56256465,-9.55953263,0.25418535,-1.59320591,-0.65648252,0.34791562,2.98367860,-4.75361438 +1.84100000,1.52598416,-9.56310037,-3.90075901,1.55300319,-9.56337631,0.25259150,-1.59384769,-0.65248585,0.34788062,2.98367455,-4.75552278 +1.84200000,1.51641723,-9.56692729,-3.87685514,1.54343790,-9.56719639,0.25099702,-1.59448553,-0.64848757,0.34784599,2.98367054,-4.75741950 +1.84300000,1.50684650,-9.57073059,-3.85294170,1.53386880,-9.57099287,0.24940190,-1.59511944,-0.64448768,0.34781173,2.98366657,-4.75930454 +1.84400000,1.49727199,-9.57451029,-3.82901876,1.52429592,-9.57476573,0.24780615,-1.59574941,-0.64048621,0.34777785,2.98366265,-4.76117790 +1.84500000,1.48769373,-9.57826636,-3.80508637,1.51471928,-9.57851496,0.24620977,-1.59637544,-0.63648315,0.34774435,2.98365876,-4.76303958 +1.84600000,1.47811173,-9.58199879,-3.78114459,1.50513890,-9.58224056,0.24461278,-1.59699754,-0.63247853,0.34771122,2.98365491,-4.76488956 +1.84700000,1.46852602,-9.58570759,-3.75719348,1.49555481,-9.58594252,0.24301516,-1.59761570,-0.62847234,0.34767847,2.98365111,-4.76672784 +1.84800000,1.45893663,-9.58939273,-3.73323310,1.48596702,-9.58962083,0.24141693,-1.59822991,-0.62446460,0.34764610,2.98364734,-4.76855442 +1.84900000,1.44934357,-9.59305421,-3.70926350,1.47637557,-9.59327547,0.23981809,-1.59884018,-0.62045533,0.34761410,2.98364361,-4.77036929 +1.85000000,1.43974688,-9.59669202,-3.68528475,1.46678048,-9.59690645,0.23821864,-1.59944651,-0.61644452,0.34758247,2.98363993,-4.77217246 +1.85100000,1.43014657,-9.60030615,-3.66129690,1.45718177,-9.60051374,0.23661860,-1.60004888,-0.61243219,0.34755123,2.98363628,-4.77396391 +1.85200000,1.42054268,-9.60389660,-3.63730002,1.44757946,-9.60409735,0.23501795,-1.60064732,-0.60841834,0.34752036,2.98363268,-4.77574364 +1.85300000,1.41093521,-9.60746334,-3.61329417,1.43797358,-9.60765726,0.23341671,-1.60124180,-0.60440300,0.34748987,2.98362911,-4.77751164 +1.85400000,1.40132421,-9.61100639,-3.58927939,1.42836415,-9.61119346,0.23181487,-1.60183233,-0.60038616,0.34745975,2.98362559,-4.77926792 +1.85500000,1.39170968,-9.61452571,-3.56525576,1.41875120,-9.61470595,0.23021245,-1.60241891,-0.59636785,0.34743001,2.98362211,-4.78101247 +1.85600000,1.38209166,-9.61802132,-3.54122333,1.40913475,-9.61819471,0.22860945,-1.60300153,-0.59234806,0.34740065,2.98361866,-4.78274528 +1.85700000,1.37247017,-9.62149319,-3.51718216,1.39951482,-9.62165975,0.22700587,-1.60358020,-0.58832681,0.34737166,2.98361526,-4.78446636 +1.85800000,1.36284523,-9.62494133,-3.49313232,1.38989144,-9.62510104,0.22540172,-1.60415491,-0.58430411,0.34734305,2.98361190,-4.78617568 +1.85900000,1.35321686,-9.62836571,-3.46907385,1.38026463,-9.62851858,0.22379699,-1.60472567,-0.58027996,0.34731482,2.98360858,-4.78787326 +1.86000000,1.34358509,-9.63176634,-3.44500682,1.37063441,-9.63191237,0.22219170,-1.60529246,-0.57625439,0.34728696,2.98360530,-4.78955909 +1.86100000,1.33394995,-9.63514320,-3.42093129,1.36100081,-9.63528239,0.22058584,-1.60585530,-0.57222739,0.34725949,2.98360205,-4.79123316 +1.86200000,1.32431146,-9.63849629,-3.39684731,1.35136385,-9.63862864,0.21897943,-1.60641417,-0.56819898,0.34723239,2.98359885,-4.79289547 +1.86300000,1.31466963,-9.64182560,-3.37275496,1.34172356,-9.64195110,0.21737246,-1.60696908,-0.56416916,0.34720566,2.98359569,-4.79454601 +1.86400000,1.30502450,-9.64513112,-3.34865428,1.33207996,-9.64524977,0.21576494,-1.60752002,-0.56013796,0.34717932,2.98359258,-4.79618479 +1.86500000,1.29537609,-9.64841284,-3.32454533,1.32243307,-9.64852465,0.21415687,-1.60806700,-0.55610537,0.34715335,2.98358950,-4.79781180 +1.86600000,1.28572442,-9.65167075,-3.30042818,1.31278292,-9.65177572,0.21254826,-1.60861000,-0.55207141,0.34712776,2.98358646,-4.79942702 +1.86700000,1.27606951,-9.65490485,-3.27630289,1.30312953,-9.65500297,0.21093912,-1.60914904,-0.54803609,0.34710254,2.98358346,-4.80103047 +1.86800000,1.26641140,-9.65811512,-3.25216951,1.29347292,-9.65820640,0.20932943,-1.60968411,-0.54399942,0.34707770,2.98358050,-4.80262214 +1.86900000,1.25675009,-9.66130156,-3.22802810,1.28381312,-9.66138600,0.20771922,-1.61021521,-0.53996140,0.34705325,2.98357759,-4.80420201 +1.87000000,1.24708563,-9.66446417,-3.20387873,1.27415015,-9.66454176,0.20610847,-1.61074234,-0.53592205,0.34702916,2.98357471,-4.80577010 +1.87100000,1.23741803,-9.66760293,-3.17972145,1.26448404,-9.66767368,0.20449721,-1.61126549,-0.53188138,0.34700546,2.98357187,-4.80732638 +1.87200000,1.22774731,-9.67071784,-3.15555633,1.25481482,-9.67078174,0.20288542,-1.61178466,-0.52783939,0.34698214,2.98356908,-4.80887087 +1.87300000,1.21807350,-9.67380888,-3.13138341,1.24514249,-9.67386594,0.20127312,-1.61229986,-0.52379610,0.34695919,2.98356632,-4.81040356 +1.87400000,1.20839662,-9.67687606,-3.10720277,1.23546709,-9.67692627,0.19966031,-1.61281108,-0.51975152,0.34693662,2.98356361,-4.81192444 +1.87500000,1.19871670,-9.67991936,-3.08301446,1.22578864,-9.67996272,0.19804699,-1.61331832,-0.51570566,0.34691443,2.98356093,-4.81343351 +1.87600000,1.18903377,-9.68293877,-3.05881854,1.21610717,-9.68297529,0.19643317,-1.61382158,-0.51165852,0.34689261,2.98355830,-4.81493077 +1.87700000,1.17934783,-9.68593430,-3.03461508,1.20642270,-9.68596397,0.19481885,-1.61432086,-0.50761013,0.34687118,2.98355571,-4.81641620 +1.87800000,1.16965893,-9.68890592,-3.01040412,1.19673525,-9.68892874,0.19320404,-1.61481615,-0.50356047,0.34685012,2.98355316,-4.81788982 +1.87900000,1.15996707,-9.69185364,-2.98618573,1.18704485,-9.69186962,0.19158873,-1.61530746,-0.49950958,0.34682944,2.98355065,-4.81935161 +1.88000000,1.15027229,-9.69477744,-2.96195998,1.17735152,-9.69478657,0.18997293,-1.61579478,-0.49545745,0.34680914,2.98354817,-4.82080158 +1.88100000,1.14057462,-9.69767733,-2.93772691,1.16765529,-9.69767961,0.18835666,-1.61627812,-0.49140410,0.34678922,2.98354574,-4.82223971 +1.88200000,1.13087406,-9.70055328,-2.91348660,1.15795617,-9.70054872,0.18673990,-1.61675747,-0.48734954,0.34676967,2.98354335,-4.82366601 +1.88300000,1.12117066,-9.70340530,-2.88923909,1.14825420,-9.70339389,0.18512267,-1.61723283,-0.48329378,0.34675051,2.98354101,-4.82508047 +1.88400000,1.11146442,-9.70623338,-2.86498445,1.13854939,-9.70621512,0.18350496,-1.61770420,-0.47923682,0.34673172,2.98353870,-4.82648309 +1.88500000,1.10175539,-9.70903751,-2.84072275,1.12884178,-9.70901241,0.18188679,-1.61817158,-0.47517868,0.34671331,2.98353643,-4.82787386 +1.88600000,1.09204357,-9.71181768,-2.81645403,1.11913137,-9.71178573,0.18026815,-1.61863497,-0.47111936,0.34669528,2.98353420,-4.82925278 +1.88700000,1.08232900,-9.71457389,-2.79217836,1.10941821,-9.71453510,0.17864906,-1.61909436,-0.46705889,0.34667763,2.98353202,-4.83061985 +1.88800000,1.07261169,-9.71730613,-2.76789580,1.09970231,-9.71726049,0.17702951,-1.61954975,-0.46299726,0.34666036,2.98352987,-4.83197507 +1.88900000,1.06289168,-9.72001439,-2.74360640,1.08998370,-9.71996191,0.17540951,-1.62000116,-0.45893449,0.34664346,2.98352776,-4.83331843 +1.89000000,1.05316898,-9.72269867,-2.71931024,1.08026240,-9.72263934,0.17378906,-1.62044856,-0.45487058,0.34662694,2.98352570,-4.83464992 +1.89100000,1.04344362,-9.72535896,-2.69500737,1.07053843,-9.72529279,0.17216817,-1.62089196,-0.45080556,0.34661081,2.98352368,-4.83596955 +1.89200000,1.03371562,-9.72799526,-2.67069784,1.06081182,-9.72792223,0.17054684,-1.62133137,-0.44673942,0.34659505,2.98352169,-4.83727731 +1.89300000,1.02398501,-9.73060755,-2.64638172,1.05108259,-9.73052768,0.16892507,-1.62176678,-0.44267218,0.34657967,2.98351975,-4.83857321 +1.89400000,1.01425182,-9.73319583,-2.62205908,1.04135077,-9.73310912,0.16730287,-1.62219818,-0.43860384,0.34656467,2.98351785,-4.83985722 +1.89500000,1.00451606,-9.73576010,-2.59772996,1.03161638,-9.73566654,0.16568025,-1.62262558,-0.43453442,0.34655005,2.98351599,-4.84112936 +1.89600000,0.99477776,-9.73830034,-2.57339442,1.02187945,-9.73819994,0.16405720,-1.62304898,-0.43046394,0.34653580,2.98351416,-4.84238962 +1.89700000,0.98503694,-9.74081655,-2.54905254,1.01213999,-9.74070931,0.16243373,-1.62346837,-0.42639238,0.34652194,2.98351238,-4.84363800 +1.89800000,0.97529363,-9.74330874,-2.52470437,1.00239804,-9.74319465,0.16080985,-1.62388376,-0.42231978,0.34650846,2.98351065,-4.84487448 +1.89900000,0.96554786,-9.74577688,-2.50034996,0.99265361,-9.74565594,0.15918555,-1.62429514,-0.41824613,0.34649535,2.98350895,-4.84609908 +1.90000000,0.95579964,-9.74822097,-2.47598939,0.98290673,-9.74809319,0.15756085,-1.62470251,-0.41417145,0.34648262,2.98350729,-4.84731179 +1.90100000,0.94604899,-9.75064101,-2.45162270,0.97315743,-9.75050639,0.15593574,-1.62510588,-0.41009575,0.34647027,2.98350567,-4.84851260 +1.90200000,0.93629596,-9.75303699,-2.42724996,0.96340573,-9.75289553,0.15431024,-1.62550523,-0.40601904,0.34645831,2.98350409,-4.84970151 +1.90300000,0.92654055,-9.75540891,-2.40287124,0.95365165,-9.75526061,0.15268434,-1.62590057,-0.40194133,0.34644672,2.98350256,-4.85087852 +1.90400000,0.91678279,-9.75775676,-2.37848658,0.94389521,-9.75760161,0.15105804,-1.62629191,-0.39786262,0.34643551,2.98350106,-4.85204363 +1.90500000,0.90702271,-9.76008053,-2.35409605,0.93413645,-9.75991854,0.14943137,-1.62667922,-0.39378293,0.34642467,2.98349961,-4.85319683 +1.90600000,0.89726033,-9.76238022,-2.32969971,0.92437539,-9.76221139,0.14780430,-1.62706253,-0.38970227,0.34641422,2.98349820,-4.85433812 +1.90700000,0.88749568,-9.76465582,-2.30529762,0.91461204,-9.76448015,0.14617686,-1.62744182,-0.38562065,0.34640415,2.98349682,-4.85546750 +1.90800000,0.87772877,-9.76690733,-2.28088984,0.90484643,-9.76672482,0.14454904,-1.62781710,-0.38153807,0.34639446,2.98349549,-4.85658496 +1.90900000,0.86795963,-9.76913473,-2.25647643,0.89507860,-9.76894538,0.14292086,-1.62818835,-0.37745455,0.34638514,2.98349420,-4.85769051 +1.91000000,0.85818830,-9.77133804,-2.23205745,0.88530855,-9.77114185,0.14129230,-1.62855559,-0.37337011,0.34637621,2.98349295,-4.85878413 +1.91100000,0.84841478,-9.77351723,-2.20763297,0.87553632,-9.77331421,0.13966338,-1.62891882,-0.36928474,0.34636765,2.98349174,-4.85986583 +1.91200000,0.83863911,-9.77567231,-2.18320303,0.86576193,-9.77546245,0.13803410,-1.62927802,-0.36519846,0.34635948,2.98349057,-4.86093561 +1.91300000,0.82886130,-9.77780327,-2.15876771,0.85598540,-9.77758657,0.13640447,-1.62963320,-0.36111127,0.34635168,2.98348944,-4.86199346 +1.91400000,0.81908139,-9.77991010,-2.13432706,0.84620676,-9.77968656,0.13477449,-1.62998437,-0.35702320,0.34634426,2.98348835,-4.86303937 +1.91500000,0.80929940,-9.78199280,-2.10988114,0.83642604,-9.78176243,0.13314415,-1.63033151,-0.35293425,0.34633722,2.98348730,-4.86407336 +1.91600000,0.79951535,-9.78405137,-2.08543001,0.82664325,-9.78381416,0.13151348,-1.63067463,-0.34884442,0.34633057,2.98348630,-4.86509540 +1.91700000,0.78972926,-9.78608579,-2.06097373,0.81685842,-9.78584175,0.12988247,-1.63101372,-0.34475373,0.34632429,2.98348533,-4.86610551 +1.91800000,0.77994117,-9.78809607,-2.03651237,0.80707157,-9.78784519,0.12825112,-1.63134879,-0.34066220,0.34631839,2.98348441,-4.86710368 +1.91900000,0.77015108,-9.79008220,-2.01204598,0.79728274,-9.78982448,0.12661944,-1.63167984,-0.33656982,0.34631287,2.98348352,-4.86808990 +1.92000000,0.76035904,-9.79204417,-1.98757463,0.78749193,-9.79177962,0.12498743,-1.63200685,-0.33247661,0.34630773,2.98348268,-4.86906418 +1.92100000,0.75056506,-9.79398198,-1.96309837,0.77769918,-9.79371060,0.12335510,-1.63232985,-0.32838258,0.34630297,2.98348188,-4.87002651 +1.92200000,0.74076916,-9.79589562,-1.93861726,0.76790452,-9.79561741,0.12172245,-1.63264881,-0.32428774,0.34629858,2.98348111,-4.87097689 +1.92300000,0.73097138,-9.79778510,-1.91413137,0.75810796,-9.79750006,0.12008949,-1.63296375,-0.32019210,0.34629458,2.98348039,-4.87191532 +1.92400000,0.72117173,-9.79965040,-1.88964076,0.74830953,-9.79935852,0.11845621,-1.63327465,-0.31609566,0.34629096,2.98347971,-4.87284180 +1.92500000,0.71137024,-9.80149151,-1.86514548,0.73850925,-9.80119281,0.11682263,-1.63358153,-0.31199845,0.34628772,2.98347907,-4.87375631 +1.92600000,0.70156693,-9.80330845,-1.84064559,0.72870715,-9.80300292,0.11518875,-1.63388438,-0.30790047,0.34628485,2.98347847,-4.87465887 +1.92700000,0.69176183,-9.80510119,-1.81614117,0.71890325,-9.80478884,0.11355456,-1.63418319,-0.30380173,0.34628237,2.98347792,-4.87554946 +1.92800000,0.68195496,-9.80686975,-1.79163226,0.70909758,-9.80655056,0.11192009,-1.63447797,-0.29970224,0.34628026,2.98347740,-4.87642810 +1.92900000,0.67214634,-9.80861410,-1.76711893,0.69929016,-9.80828809,0.11028532,-1.63476872,-0.29560201,0.34627854,2.98347692,-4.87729476 +1.93000000,0.66233601,-9.81033425,-1.74260124,0.68948101,-9.81000142,0.10865026,-1.63505544,-0.29150105,0.34627719,2.98347649,-4.87814946 +1.93100000,0.65252398,-9.81203020,-1.71807924,0.67967016,-9.81169054,0.10701492,-1.63533812,-0.28739937,0.34627623,2.98347609,-4.87899219 +1.93200000,0.64271028,-9.81370194,-1.69355301,0.66985764,-9.81335546,0.10537931,-1.63561677,-0.28329698,0.34627564,2.98347574,-4.87982294 +1.93300000,0.63289493,-9.81534946,-1.66902259,0.66004346,-9.81499616,0.10374342,-1.63589138,-0.27919389,0.34627543,2.98347542,-4.88064172 +1.93400000,0.62307795,-9.81697276,-1.64448806,0.65022765,-9.81661264,0.10210725,-1.63616195,-0.27509011,0.34627561,2.98347515,-4.88144853 +1.93500000,0.61325938,-9.81857185,-1.61994946,0.64041024,-9.81820490,0.10047083,-1.63642849,-0.27098565,0.34627616,2.98347492,-4.88224336 +1.93600000,0.60343923,-9.82014670,-1.59540687,0.63059125,-9.81977294,0.09883413,-1.63669099,-0.26688053,0.34627709,2.98347473,-4.88302621 +1.93700000,0.59361754,-9.82169733,-1.57086034,0.62077071,-9.82131674,0.09719718,-1.63694945,-0.26277474,0.34627840,2.98347458,-4.88379707 +1.93800000,0.58379431,-9.82322372,-1.54630993,0.61094863,-9.82283632,0.09555998,-1.63720387,-0.25866831,0.34628009,2.98347447,-4.88455595 +1.93900000,0.57396959,-9.82472587,-1.52175571,0.60112504,-9.82433165,0.09392253,-1.63745426,-0.25456124,0.34628216,2.98347440,-4.88530285 +1.94000000,0.56414338,-9.82620378,-1.49719773,0.59129997,-9.82580275,0.09228483,-1.63770060,-0.25045354,0.34628461,2.98347437,-4.88603776 +1.94100000,0.55431573,-9.82765744,-1.47263605,0.58147344,-9.82724960,0.09064688,-1.63794290,-0.24634522,0.34628744,2.98347438,-4.88676068 +1.94200000,0.54448664,-9.82908686,-1.44807074,0.57164548,-9.82867220,0.08900870,-1.63818116,-0.24223629,0.34629065,2.98347444,-4.88747161 +1.94300000,0.53465615,-9.83049203,-1.42350185,0.56181611,-9.83007056,0.08737029,-1.63841538,-0.23812677,0.34629424,2.98347453,-4.88817055 +1.94400000,0.52482427,-9.83187293,-1.39892945,0.55198535,-9.83144465,0.08573164,-1.63864555,-0.23401666,0.34629821,2.98347467,-4.88885749 +1.94500000,0.51499104,-9.83322958,-1.37435360,0.54215323,-9.83279449,0.08409277,-1.63887168,-0.22990597,0.34630256,2.98347484,-4.88953244 +1.94600000,0.50515648,-9.83456197,-1.34977435,0.53231977,-9.83412007,0.08245368,-1.63909377,-0.22579471,0.34630728,2.98347506,-4.89019539 +1.94700000,0.49532061,-9.83587009,-1.32519178,0.52248499,-9.83542138,0.08081436,-1.63931182,-0.22168289,0.34631239,2.98347532,-4.89084634 +1.94800000,0.48548346,-9.83715394,-1.30060593,0.51264893,-9.83669843,0.07917484,-1.63952582,-0.21757053,0.34631788,2.98347561,-4.89148529 +1.94900000,0.47564505,-9.83841352,-1.27601687,0.50281160,-9.83795120,0.07753510,-1.63973577,-0.21345763,0.34632374,2.98347595,-4.89211224 +1.95000000,0.46580540,-9.83964883,-1.25142466,0.49297304,-9.83917970,0.07589516,-1.63994168,-0.20934421,0.34632999,2.98347633,-4.89272718 +1.95100000,0.45596454,-9.84085985,-1.22682936,0.48313325,-9.84038393,0.07425502,-1.64014354,-0.20523026,0.34633661,2.98347675,-4.89333012 +1.95200000,0.44612249,-9.84204659,-1.20223103,0.47329228,-9.84156387,0.07261468,-1.64034135,-0.20111582,0.34634361,2.98347721,-4.89392105 +1.95300000,0.43627928,-9.84320905,-1.17762974,0.46345013,-9.84271953,0.07097414,-1.64053512,-0.19700087,0.34635100,2.98347772,-4.89449997 +1.95400000,0.42643493,-9.84434723,-1.15302554,0.45360685,-9.84385090,0.06933342,-1.64072484,-0.19288544,0.34635876,2.98347826,-4.89506689 +1.95500000,0.41658947,-9.84546111,-1.12841849,0.44376244,-9.84495799,0.06769251,-1.64091051,-0.18876953,0.34636690,2.98347884,-4.89562179 +1.95600000,0.40674292,-9.84655070,-1.10380866,0.43391694,-9.84604078,0.06605141,-1.64109213,-0.18465316,0.34637542,2.98347947,-4.89616468 +1.95700000,0.39689531,-9.84761599,-1.07919610,0.42407037,-9.84709928,0.06441014,-1.64126970,-0.18053633,0.34638432,2.98348013,-4.89669555 +1.95800000,0.38704665,-9.84865699,-1.05458088,0.41422275,-9.84813349,0.06276870,-1.64144323,-0.17641905,0.34639360,2.98348084,-4.89721442 +1.95900000,0.37719698,-9.84967368,-1.02996305,0.40437411,-9.84914339,0.06112709,-1.64161270,-0.17230134,0.34640326,2.98348158,-4.89772126 +1.96000000,0.36734631,-9.85066607,-1.00534268,0.39452447,-9.85012899,0.05948531,-1.64177812,-0.16818320,0.34641329,2.98348237,-4.89821609 +1.96100000,0.35749468,-9.85163416,-0.98071983,0.38467386,-9.85109029,0.05784337,-1.64193949,-0.16406465,0.34642371,2.98348320,-4.89869890 +1.96200000,0.34764210,-9.85257794,-0.95609456,0.37482230,-9.85202728,0.05620127,-1.64209681,-0.15994569,0.34643451,2.98348407,-4.89916968 +1.96300000,0.33778860,-9.85349741,-0.93146693,0.36496981,-9.85293996,0.05455902,-1.64225008,-0.15582634,0.34644568,2.98348498,-4.89962845 +1.96400000,0.32793421,-9.85439256,-0.90683700,0.35511643,-9.85382833,0.05291662,-1.64239930,-0.15170661,0.34645723,2.98348593,-4.90007520 +1.96500000,0.31807894,-9.85526340,-0.88220483,0.34526216,-9.85469239,0.05127408,-1.64254446,-0.14758649,0.34646917,2.98348692,-4.90050992 +1.96600000,0.30822283,-9.85610993,-0.85757048,0.33540705,-9.85553213,0.04963139,-1.64268557,-0.14346602,0.34648148,2.98348795,-4.90093262 +1.96700000,0.29836590,-9.85693213,-0.83293402,0.32555111,-9.85634756,0.04798857,-1.64282263,-0.13934519,0.34649417,2.98348902,-4.90134329 +1.96800000,0.28850817,-9.85773001,-0.80829549,0.31569436,-9.85713866,0.04634562,-1.64295564,-0.13522402,0.34650724,2.98349014,-4.90174194 +1.96900000,0.27864967,-9.85850357,-0.78365498,0.30583684,-9.85790545,0.04470253,-1.64308459,-0.13110251,0.34652069,2.98349129,-4.90212855 +1.97000000,0.26879042,-9.85925281,-0.75901253,0.29597856,-9.85864791,0.04305932,-1.64320948,-0.12698068,0.34653451,2.98349249,-4.90250314 +1.97100000,0.25893044,-9.85997772,-0.73436820,0.28611955,-9.85936604,0.04141599,-1.64333032,-0.12285853,0.34654872,2.98349372,-4.90286570 +1.97200000,0.24906976,-9.86067829,-0.70972206,0.27625983,-9.86005985,0.03977254,-1.64344711,-0.11873609,0.34656331,2.98349500,-4.90321624 +1.97300000,0.23920840,-9.86135454,-0.68507417,0.26639944,-9.86072933,0.03812898,-1.64355984,-0.11461335,0.34657827,2.98349631,-4.90355473 +1.97400000,0.22934640,-9.86200646,-0.66042459,0.25653838,-9.86137448,0.03648532,-1.64366852,-0.11049032,0.34659361,2.98349767,-4.90388120 +1.97500000,0.21948376,-9.86263404,-0.63577338,0.24667670,-9.86199529,0.03484154,-1.64377314,-0.10636703,0.34660933,2.98349907,-4.90419564 +1.97600000,0.20962053,-9.86323729,-0.61112060,0.23681440,-9.86259178,0.03319767,-1.64387371,-0.10224347,0.34662543,2.98350051,-4.90449804 +1.97700000,0.19975671,-9.86381620,-0.58646630,0.22695152,-9.86316393,0.03155370,-1.64397021,-0.09811965,0.34664191,2.98350199,-4.90478841 +1.97800000,0.18989234,-9.86437078,-0.56181057,0.21708808,-9.86371174,0.02990964,-1.64406267,-0.09399560,0.34665877,2.98350351,-4.90506674 +1.97900000,0.18002744,-9.86490101,-0.53715344,0.20722411,-9.86423521,0.02826548,-1.64415106,-0.08987131,0.34667600,2.98350507,-4.90533304 +1.98000000,0.17016203,-9.86540690,-0.51249499,0.19735962,-9.86473435,0.02662125,-1.64423540,-0.08574681,0.34669362,2.98350667,-4.90558730 +1.98100000,0.16029614,-9.86588846,-0.48783527,0.18749465,-9.86520914,0.02497693,-1.64431568,-0.08162209,0.34671161,2.98350832,-4.90582952 +1.98200000,0.15042980,-9.86634566,-0.46317435,0.17762921,-9.86565960,0.02333254,-1.64439191,-0.07749717,0.34672998,2.98351000,-4.90605971 +1.98300000,0.14056302,-9.86677853,-0.43851228,0.16776334,-9.86608571,0.02168808,-1.64446408,-0.07337205,0.34674873,2.98351172,-4.90627785 +1.98400000,0.13069583,-9.86718704,-0.41384913,0.15789705,-9.86648747,0.02004355,-1.64453219,-0.06924676,0.34676785,2.98351349,-4.90648396 +1.98500000,0.12082826,-9.86757122,-0.38918496,0.14803037,-9.86686490,0.01839895,-1.64459624,-0.06512129,0.34678736,2.98351529,-4.90667803 +1.98600000,0.11096033,-9.86793104,-0.36451982,0.13816332,-9.86721797,0.01675429,-1.64465623,-0.06099567,0.34680724,2.98351714,-4.90686006 +1.98700000,0.10109206,-9.86826652,-0.33985379,0.12829594,-9.86754671,0.01510958,-1.64471217,-0.05686989,0.34682750,2.98351903,-4.90703005 +1.98800000,0.09122349,-9.86857764,-0.31518692,0.11842824,-9.86785109,0.01346482,-1.64476405,-0.05274398,0.34684814,2.98352095,-4.90718800 +1.98900000,0.08135462,-9.86886442,-0.29051927,0.10856025,-9.86813113,0.01182000,-1.64481187,-0.04861793,0.34686916,2.98352292,-4.90733391 +1.99000000,0.07148549,-9.86912685,-0.26585090,0.09869199,-9.86838681,0.01017515,-1.64485563,-0.04449176,0.34689056,2.98352493,-4.90746778 +1.99100000,0.06161613,-9.86936492,-0.24118187,0.08882348,-9.86861815,0.00853025,-1.64489533,-0.04036548,0.34691233,2.98352698,-4.90758960 +1.99200000,0.05174655,-9.86957864,-0.21651225,0.07895476,-9.86882514,0.00688532,-1.64493098,-0.03623911,0.34693448,2.98352907,-4.90769939 +1.99300000,0.04187678,-9.86976801,-0.19184210,0.06908584,-9.86900778,0.00524036,-1.64496256,-0.03211264,0.34695701,2.98353120,-4.90779713 +1.99400000,0.03200685,-9.86993303,-0.16717147,0.05921675,-9.86916606,0.00359537,-1.64499009,-0.02798610,0.34697991,2.98353337,-4.90788283 +1.99500000,0.02213678,-9.87007370,-0.14250042,0.04934751,-9.86930000,0.00195036,-1.64501356,-0.02385948,0.34700320,2.98353558,-4.90795648 +1.99600000,0.01226659,-9.87019001,-0.11782903,0.03947816,-9.86940958,0.00030532,-1.64503297,-0.01973281,0.34702686,2.98353784,-4.90801810 +1.99700000,0.00239630,-9.87028197,-0.09315734,0.02960870,-9.86949482,-0.00133972,-1.64504832,-0.01560608,0.34705090,2.98354013,-4.90806766 +1.99800000,-0.00747405,-9.87034957,-0.06848542,0.01973918,-9.86955570,-0.00298478,-1.64505961,-0.01147932,0.34707532,2.98354246,-4.90810519 +1.99900000,-0.01734444,-9.87039282,-0.04381334,0.00986960,-9.86959222,-0.00462985,-1.64506684,-0.00735253,0.34710011,2.98354484,-4.90813067 +2.00000000,-0.02721485,-9.87041171,-0.01914114,0.00000000,-9.86960440,-0.00627492,-1.64507001,-0.00322573,0.34712528,2.98354725,-4.90814411 +2.00100000,-0.03708526,-9.87040625,0.00553110,-0.00986960,-9.86959222,-0.00791999,-1.64506913,0.00090109,0.34715083,2.98354971,-4.90814551 +2.00200000,-0.04695563,-9.87037644,0.03020333,-0.01973918,-9.86955570,-0.00956505,-1.64506418,0.00502790,0.34717676,2.98355220,-4.90813486 +2.00300000,-0.05682595,-9.87032227,0.05487549,-0.02960870,-9.86949482,-0.01121011,-1.64505518,0.00915471,0.34720306,2.98355474,-4.90811217 +2.00400000,-0.06669620,-9.87024375,0.07954751,-0.03947816,-9.86940958,-0.01285515,-1.64504211,0.01328149,0.34722974,2.98355732,-4.90807743 +2.00500000,-0.07656634,-9.87014087,0.10421934,-0.04934751,-9.86930000,-0.01450018,-1.64502499,0.01740823,0.34725680,2.98355994,-4.90803065 +2.00600000,-0.08643635,-9.87001364,0.12889091,-0.05921675,-9.86916606,-0.01614518,-1.64500381,0.02153493,0.34728423,2.98356259,-4.90797183 +2.00700000,-0.09630621,-9.86986206,0.15356216,-0.06908584,-9.86900778,-0.01779016,-1.64497857,0.02566159,0.34731204,2.98356529,-4.90790096 +2.00800000,-0.10617590,-9.86968612,0.17823303,-0.07895476,-9.86882514,-0.01943511,-1.64494927,0.02978817,0.34734023,2.98356803,-4.90781805 +2.00900000,-0.11604539,-9.86948583,0.20290347,-0.08882348,-9.86861815,-0.02108002,-1.64491591,0.03391469,0.34736879,2.98357081,-4.90772310 +2.01000000,-0.12591465,-9.86926119,0.22757340,-0.09869199,-9.86838681,-0.02272490,-1.64487849,0.03804112,0.34739773,2.98357363,-4.90761610 +2.01100000,-0.13578366,-9.86901219,0.25224278,-0.10856025,-9.86813113,-0.02436974,-1.64483702,0.04216745,0.34742705,2.98357649,-4.90749707 +2.01200000,-0.14565240,-9.86873885,0.27691153,-0.11842824,-9.86785109,-0.02601453,-1.64479148,0.04629369,0.34745674,2.98357940,-4.90736598 +2.01300000,-0.15552084,-9.86844115,0.30157959,-0.12829594,-9.86754671,-0.02765927,-1.64474189,0.05041980,0.34748681,2.98358234,-4.90722286 +2.01400000,-0.16538896,-9.86811911,0.32624692,-0.13816332,-9.86721797,-0.02930396,-1.64468824,0.05454580,0.34751726,2.98358532,-4.90706770 +2.01500000,-0.17525673,-9.86777272,0.35091344,-0.14803037,-9.86686490,-0.03094859,-1.64463053,0.05867166,0.34754808,2.98358834,-4.90690049 +2.01600000,-0.18512413,-9.86740198,0.37557909,-0.15789705,-9.86648747,-0.03259316,-1.64456877,0.06279737,0.34757928,2.98359141,-4.90672124 +2.01700000,-0.19499114,-9.86700689,0.40024382,-0.16776334,-9.86608571,-0.03423766,-1.64450294,0.06692293,0.34761086,2.98359451,-4.90652996 +2.01800000,-0.20485773,-9.86658745,0.42490756,-0.17762921,-9.86565960,-0.03588210,-1.64443306,0.07104833,0.34764281,2.98359766,-4.90632663 +2.01900000,-0.21472387,-9.86614368,0.44957025,-0.18749465,-9.86520914,-0.03752646,-1.64435912,0.07517355,0.34767514,2.98360084,-4.90611126 +2.02000000,-0.22458955,-9.86567555,0.47423184,-0.19735962,-9.86473435,-0.03917074,-1.64428112,0.07929858,0.34770784,2.98360407,-4.90588385 +2.02100000,-0.23445473,-9.86518309,0.49889225,-0.20722411,-9.86423521,-0.04081494,-1.64419907,0.08342342,0.34774092,2.98360733,-4.90564440 +2.02200000,-0.24431940,-9.86466628,0.52355143,-0.21708808,-9.86371174,-0.04245905,-1.64411296,0.08754805,0.34777437,2.98361064,-4.90539292 +2.02300000,-0.25418352,-9.86412513,0.54820932,-0.22695152,-9.86316393,-0.04410307,-1.64402279,0.09167247,0.34780820,2.98361399,-4.90512940 +2.02400000,-0.26404708,-9.86355965,0.57286586,-0.23681440,-9.86259178,-0.04574700,-1.64392857,0.09579666,0.34784241,2.98361737,-4.90485384 +2.02500000,-0.27391005,-9.86296982,0.59752099,-0.24667670,-9.86199529,-0.04739083,-1.64383029,0.09992061,0.34787699,2.98362080,-4.90456624 +2.02600000,-0.28377241,-9.86235566,0.62217464,-0.25653838,-9.86137448,-0.04903456,-1.64372795,0.10404432,0.34791194,2.98362427,-4.90426661 +2.02700000,-0.29363412,-9.86171717,0.64682675,-0.26639944,-9.86072933,-0.05067818,-1.64362156,0.10816777,0.34794728,2.98362778,-4.90395494 +2.02800000,-0.30349518,-9.86105434,0.67147727,-0.27625983,-9.86005985,-0.05232169,-1.64351111,0.11229095,0.34798298,2.98363133,-4.90363124 +2.02900000,-0.31335555,-9.86036718,0.69612614,-0.28611955,-9.85936604,-0.05396509,-1.64339661,0.11641386,0.34801906,2.98363492,-4.90329550 +2.03000000,-0.32321520,-9.85965569,0.72077328,-0.29597856,-9.85864791,-0.05560837,-1.64327805,0.12053648,0.34805552,2.98363855,-4.90294773 +2.03100000,-0.33307412,-9.85891988,0.74541865,-0.30583684,-9.85790545,-0.05725152,-1.64315544,0.12465880,0.34809235,2.98364222,-4.90258793 +2.03200000,-0.34293228,-9.85815974,0.77006218,-0.31569436,-9.85713866,-0.05889455,-1.64302877,0.12878082,0.34812956,2.98364593,-4.90221610 +2.03300000,-0.35278966,-9.85737527,0.79470380,-0.32555111,-9.85634756,-0.06053745,-1.64289805,0.13290251,0.34816714,2.98364968,-4.90183224 +2.03400000,-0.36264622,-9.85656648,0.81934347,-0.33540705,-9.85553213,-0.06218021,-1.64276328,0.13702388,0.34820509,2.98365347,-4.90143635 +2.03500000,-0.37250196,-9.85573337,0.84398112,-0.34526216,-9.85469239,-0.06382284,-1.64262445,0.14114491,0.34824342,2.98365730,-4.90102843 +2.03600000,-0.38235683,-9.85487594,0.86861668,-0.35511643,-9.85382833,-0.06546532,-1.64248157,0.14526560,0.34828213,2.98366117,-4.90060848 +2.03700000,-0.39221083,-9.85399420,0.89325010,-0.36496981,-9.85293996,-0.06710765,-1.64233463,0.14938592,0.34832121,2.98366509,-4.90017650 +2.03800000,-0.40206391,-9.85308814,0.91788131,-0.37482230,-9.85202728,-0.06874984,-1.64218365,0.15350588,0.34836066,2.98366904,-4.89973250 +2.03900000,-0.41191607,-9.85215778,0.94251026,-0.38467386,-9.85109029,-0.07039186,-1.64202861,0.15762545,0.34840049,2.98367303,-4.89927648 +2.04000000,-0.42176728,-9.85120310,0.96713689,-0.39452447,-9.85012899,-0.07203373,-1.64186952,0.16174464,0.34844069,2.98367706,-4.89880843 +2.04100000,-0.43161750,-9.85022411,0.99176113,-0.40437411,-9.84914339,-0.07367544,-1.64170638,0.16586343,0.34848126,2.98368114,-4.89832835 +2.04200000,-0.44146672,-9.84922082,1.01638292,-0.41422275,-9.84813349,-0.07531698,-1.64153919,0.16998181,0.34852221,2.98368525,-4.89783626 +2.04300000,-0.45131491,-9.84819323,1.04100220,-0.42407037,-9.84709928,-0.07695835,-1.64136795,0.17409977,0.34856353,2.98368940,-4.89733215 +2.04400000,-0.46116205,-9.84714134,1.06561891,-0.43391694,-9.84604078,-0.07859954,-1.64119265,0.17821730,0.34860523,2.98369360,-4.89681601 +2.04500000,-0.47100812,-9.84606515,1.09023300,-0.44376244,-9.84495799,-0.08024055,-1.64101331,0.18233439,0.34864730,2.98369783,-4.89628786 +2.04600000,-0.48085308,-9.84496467,1.11484439,-0.45360685,-9.84385090,-0.08188138,-1.64082992,0.18645103,0.34868974,2.98370211,-4.89574770 +2.04700000,-0.49069692,-9.84383989,1.13945303,-0.46345013,-9.84271953,-0.08352203,-1.64064248,0.19056721,0.34873256,2.98370642,-4.89519551 +2.04800000,-0.50053962,-9.84269083,1.16405887,-0.47329228,-9.84156387,-0.08516248,-1.64045100,0.19468292,0.34877574,2.98371078,-4.89463132 +2.04900000,-0.51038113,-9.84151748,1.18866182,-0.48313325,-9.84038393,-0.08680273,-1.64025546,0.19879815,0.34881931,2.98371517,-4.89405511 +2.05000000,-0.52022145,-9.84031985,1.21326185,-0.49297304,-9.83917970,-0.08844279,-1.64005588,0.20291289,0.34886324,2.98371961,-4.89346688 +2.05100000,-0.53006055,-9.83909793,1.23785888,-0.50281160,-9.83795120,-0.09008264,-1.63985225,0.20702713,0.34890755,2.98372408,-4.89286665 +2.05200000,-0.53989840,-9.83785174,1.26245286,-0.51264893,-9.83669843,-0.09172229,-1.63964458,0.21114085,0.34895223,2.98372860,-4.89225441 +2.05300000,-0.54973498,-9.83658128,1.28704372,-0.52248499,-9.83542138,-0.09336172,-1.63943285,0.21525406,0.34899728,2.98373316,-4.89163016 +2.05400000,-0.55957027,-9.83528654,1.31163140,-0.53231977,-9.83412007,-0.09500093,-1.63921709,0.21936674,0.34904271,2.98373775,-4.89099391 +2.05500000,-0.56940424,-9.83396754,1.33621585,-0.54215323,-9.83279449,-0.09663993,-1.63899728,0.22347887,0.34908851,2.98374239,-4.89034565 +2.05600000,-0.57923686,-9.83262427,1.36079700,-0.55198535,-9.83144465,-0.09827871,-1.63877342,0.22759045,0.34913468,2.98374706,-4.88968539 +2.05700000,-0.58906812,-9.83125675,1.38537480,-0.56181611,-9.83007056,-0.09991725,-1.63854553,0.23170147,0.34918122,2.98375178,-4.88901313 +2.05800000,-0.59889798,-9.82986496,1.40994917,-0.57164548,-9.82867220,-0.10155556,-1.63831358,0.23581192,0.34922813,2.98375654,-4.88832887 +2.05900000,-0.60872643,-9.82844892,1.43452006,-0.58147344,-9.82724960,-0.10319364,-1.63807760,0.23992179,0.34927542,2.98376133,-4.88763261 +2.06000000,-0.61855344,-9.82700863,1.45908742,-0.59129997,-9.82580275,-0.10483148,-1.63783758,0.24403107,0.34932308,2.98376617,-4.88692435 +2.06100000,-0.62837899,-9.82554409,1.48365117,-0.60112504,-9.82433165,-0.10646907,-1.63759351,0.24813974,0.34937111,2.98377105,-4.88620410 +2.06200000,-0.63820304,-9.82405531,1.50821126,-0.61094863,-9.82283632,-0.10810642,-1.63734540,0.25224780,0.34941951,2.98377596,-4.88547186 +2.06300000,-0.64802558,-9.82254228,1.53276763,-0.62077071,-9.82131674,-0.10974351,-1.63709326,0.25635524,0.34946828,2.98378092,-4.88472762 +2.06400000,-0.65784659,-9.82100503,1.55732022,-0.63059125,-9.81977294,-0.11138035,-1.63683707,0.26046204,0.34951742,2.98378592,-4.88397139 +2.06500000,-0.66766603,-9.81944353,1.58186897,-0.64041024,-9.81820490,-0.11301693,-1.63657684,0.26456820,0.34956694,2.98379095,-4.88320318 +2.06600000,-0.67748389,-9.81785781,1.60641381,-0.65022765,-9.81661264,-0.11465324,-1.63631258,0.26867371,0.34961682,2.98379603,-4.88242298 +2.06700000,-0.68730014,-9.81624787,1.63095468,-0.66004346,-9.81499616,-0.11628928,-1.63604428,0.27277856,0.34966708,2.98380115,-4.88163080 +2.06800000,-0.69711475,-9.81461370,1.65549154,-0.66985764,-9.81335546,-0.11792505,-1.63577194,0.27688273,0.34971771,2.98380630,-4.88082663 +2.06900000,-0.70692771,-9.81295532,1.68002430,-0.67967016,-9.81169054,-0.11956055,-1.63549557,0.28098622,0.34976871,2.98381150,-4.88001049 +2.07000000,-0.71673898,-9.81127273,1.70455292,-0.68948101,-9.81000142,-0.12119577,-1.63521516,0.28508902,0.34982007,2.98381674,-4.87918236 +2.07100000,-0.72654854,-9.80956592,1.72907734,-0.69929016,-9.80828809,-0.12283070,-1.63493072,0.28919111,0.34987181,2.98382201,-4.87834226 +2.07200000,-0.73635638,-9.80783492,1.75359748,-0.70909758,-9.80655056,-0.12446534,-1.63464224,0.29329249,0.34992392,2.98382733,-4.87749018 +2.07300000,-0.74616246,-9.80607971,1.77811330,-0.71890325,-9.80478884,-0.12609969,-1.63434973,0.29739315,0.34997640,2.98383269,-4.87662613 +2.07400000,-0.75596676,-9.80430030,1.80262473,-0.72870715,-9.80300292,-0.12773374,-1.63405318,0.30149307,0.35002925,2.98383808,-4.87575011 +2.07500000,-0.76576926,-9.80249671,1.82713171,-0.73850925,-9.80119281,-0.12936749,-1.63375261,0.30559225,0.35008247,2.98384352,-4.87486212 +2.07600000,-0.77556993,-9.80066893,1.85163419,-0.74830953,-9.79935852,-0.13100094,-1.63344800,0.30969067,0.35013606,2.98384899,-4.87396217 +2.07700000,-0.78536874,-9.79881696,1.87613209,-0.75810796,-9.79750006,-0.13263408,-1.63313936,0.31378833,0.35019002,2.98385451,-4.87305025 +2.07800000,-0.79516568,-9.79694082,1.90062536,-0.76790452,-9.79561741,-0.13426691,-1.63282669,0.31788522,0.35024435,2.98386007,-4.87212637 +2.07900000,-0.80496072,-9.79504051,1.92511395,-0.77769918,-9.79371060,-0.13589942,-1.63251000,0.32198132,0.35029904,2.98386566,-4.87119053 +2.08000000,-0.81475384,-9.79311603,1.94959778,-0.78749193,-9.79177962,-0.13753161,-1.63218928,0.32607662,0.35035411,2.98387130,-4.87024273 +2.08100000,-0.82454501,-9.79116738,1.97407680,-0.79728274,-9.78982448,-0.13916347,-1.63186452,0.33017112,0.35040955,2.98387697,-4.86928297 +2.08200000,-0.83433420,-9.78919457,1.99855095,-0.80707157,-9.78784519,-0.14079501,-1.63153575,0.33426481,0.35046535,2.98388269,-4.86831126 +2.08300000,-0.84412140,-9.78719761,2.02302017,-0.81685842,-9.78584175,-0.14242621,-1.63120294,0.33835767,0.35052152,2.98388844,-4.86732760 +2.08400000,-0.85390658,-9.78517650,2.04748439,-0.82664325,-9.78381416,-0.14405708,-1.63086611,0.34244970,0.35057807,2.98389423,-4.86633200 +2.08500000,-0.86368971,-9.78313125,2.07194356,-0.83642604,-9.78176243,-0.14568760,-1.63052526,0.34654088,0.35063498,2.98390007,-4.86532444 +2.08600000,-0.87347077,-9.78106186,2.09639762,-0.84620676,-9.77968656,-0.14731778,-1.63018039,0.35063121,0.35069225,2.98390594,-4.86430494 +2.08700000,-0.88324974,-9.77896833,2.12084650,-0.85598540,-9.77758657,-0.14894761,-1.62983149,0.35472067,0.35074990,2.98391186,-4.86327350 +2.08800000,-0.89302659,-9.77685068,2.14529015,-0.86576193,-9.77546245,-0.15057709,-1.62947857,0.35880925,0.35080792,2.98391781,-4.86223012 +2.08900000,-0.90280130,-9.77470890,2.16972851,-0.87553632,-9.77331421,-0.15220621,-1.62912163,0.36289695,0.35086630,2.98392380,-4.86117481 +2.09000000,-0.91257384,-9.77254301,2.19416151,-0.88530855,-9.77114185,-0.15383497,-1.62876067,0.36698376,0.35092505,2.98392984,-4.86010756 +2.09100000,-0.92234419,-9.77035300,2.21858910,-0.89507860,-9.76894538,-0.15546337,-1.62839569,0.37106965,0.35098417,2.98393591,-4.85902838 +2.09200000,-0.93211233,-9.76813888,2.24301121,-0.90484643,-9.76672482,-0.15709140,-1.62802670,0.37515464,0.35104365,2.98394202,-4.85793726 +2.09300000,-0.94187823,-9.76590066,2.26742778,-0.91461204,-9.76448015,-0.15871905,-1.62765368,0.37923869,0.35110351,2.98394817,-4.85683423 +2.09400000,-0.95164187,-9.76363834,2.29183876,-0.92437539,-9.76221139,-0.16034633,-1.62727665,0.38332182,0.35116373,2.98395436,-4.85571927 +2.09500000,-0.96140322,-9.76135194,2.31624409,-0.93413645,-9.75991854,-0.16197322,-1.62689561,0.38740399,0.35122431,2.98396059,-4.85459238 +2.09600000,-0.97116226,-9.75904145,2.34064369,-0.94389521,-9.75760161,-0.16359973,-1.62651055,0.39148521,0.35128527,2.98396686,-4.85345358 +2.09700000,-0.98091897,-9.75670688,2.36503752,-0.95365165,-9.75526061,-0.16522586,-1.62612148,0.39556546,0.35134659,2.98397317,-4.85230286 +2.09800000,-0.99067332,-9.75434823,2.38942552,-0.96340573,-9.75289553,-0.16685158,-1.62572839,0.39964474,0.35140828,2.98397952,-4.85114023 +2.09900000,-1.00042528,-9.75196552,2.41380762,-0.97315743,-9.75050639,-0.16847691,-1.62533130,0.40372303,0.35147033,2.98398591,-4.84996569 +2.10000000,-1.01017484,-9.74955874,2.43818376,-0.98290673,-9.74809319,-0.17010184,-1.62493019,0.40780032,0.35153275,2.98399234,-4.84877924 +2.10100000,-1.01992197,-9.74712791,2.46255388,-0.99265361,-9.74565594,-0.17172637,-1.62452508,0.41187661,0.35159554,2.98399881,-4.84758089 +2.10200000,-1.02966664,-9.74467303,2.48691793,-1.00239804,-9.74319465,-0.17335049,-1.62411595,0.41595188,0.35165869,2.98400531,-4.84637063 +2.10300000,-1.03940884,-9.74219410,2.51127583,-1.01213999,-9.74070931,-0.17497419,-1.62370282,0.42002613,0.35172220,2.98401186,-4.84514847 +2.10400000,-1.04914853,-9.73969114,2.53562755,-1.02187945,-9.73819994,-0.17659747,-1.62328568,0.42409933,0.35178609,2.98401845,-4.84391442 +2.10500000,-1.05888569,-9.73716415,2.55997300,-1.03161638,-9.73566654,-0.17822034,-1.62286454,0.42817150,0.35185034,2.98402507,-4.84266848 +2.10600000,-1.06862031,-9.73461312,2.58431213,-1.04135077,-9.73310912,-0.17984278,-1.62243939,0.43224260,0.35191495,2.98403174,-4.84141064 +2.10700000,-1.07835235,-9.73203808,2.60864489,-1.05108259,-9.73052768,-0.18146479,-1.62201024,0.43631264,0.35197993,2.98403844,-4.84014092 +2.10800000,-1.08808178,-9.72943903,2.63297121,-1.06081182,-9.72792223,-0.18308637,-1.62157709,0.44038160,0.35204527,2.98404519,-4.83885931 +2.10900000,-1.09780860,-9.72681597,2.65729103,-1.07053843,-9.72529279,-0.18470751,-1.62113994,0.44444947,0.35211098,2.98405197,-4.83756582 +2.11000000,-1.10753277,-9.72416891,2.68160430,-1.08026240,-9.72263934,-0.18632820,-1.62069878,0.44851625,0.35217706,2.98405879,-4.83626045 +2.11100000,-1.11725427,-9.72149786,2.70591094,-1.08998370,-9.71996191,-0.18794846,-1.62025363,0.45258192,0.35224349,2.98406566,-4.83494321 +2.11200000,-1.12697307,-9.71880282,2.73021091,-1.09970231,-9.71726049,-0.18956826,-1.61980448,0.45664647,0.35231030,2.98407256,-4.83361409 +2.11300000,-1.13668915,-9.71608380,2.75450414,-1.10941821,-9.71453510,-0.19118761,-1.61935133,0.46070990,0.35237746,2.98407950,-4.83227311 +2.11400000,-1.14640249,-9.71334080,2.77879057,-1.11913137,-9.71178573,-0.19280651,-1.61889419,0.46477219,0.35244499,2.98408648,-4.83092026 +2.11500000,-1.15611307,-9.71057384,2.80307015,-1.12884178,-9.70901241,-0.19442494,-1.61843305,0.46883333,0.35251289,2.98409350,-4.82955554 +2.11600000,-1.16582085,-9.70778292,2.82734281,-1.13854939,-9.70621512,-0.19604291,-1.61796792,0.47289332,0.35258115,2.98410055,-4.82817897 +2.11700000,-1.17552582,-9.70496805,2.85160848,-1.14825420,-9.70339389,-0.19766041,-1.61749880,0.47695214,0.35264977,2.98410765,-4.82679054 +2.11800000,-1.18522795,-9.70212923,2.87586713,-1.15795617,-9.70054872,-0.19927743,-1.61702568,0.48100978,0.35271875,2.98411479,-4.82539026 +2.11900000,-1.19492721,-9.69926647,2.90011867,-1.16765529,-9.69767961,-0.20089398,-1.61654858,0.48506623,0.35278810,2.98412197,-4.82397813 +2.12000000,-1.20462359,-9.69637977,2.92436306,-1.17735152,-9.69478657,-0.20251005,-1.61606749,0.48912149,0.35285781,2.98412918,-4.82255415 +2.12100000,-1.21431706,-9.69346916,2.94860023,-1.18704485,-9.69186962,-0.20412563,-1.61558241,0.49317554,0.35292789,2.98413644,-4.82111833 +2.12200000,-1.22400760,-9.69053462,2.97283012,-1.19673525,-9.68892874,-0.20574073,-1.61509334,0.49722837,0.35299832,2.98414373,-4.81967067 +2.12300000,-1.23369517,-9.68757618,2.99705268,-1.20642270,-9.68596397,-0.20735533,-1.61460029,0.50127998,0.35306912,2.98415106,-4.81821117 +2.12400000,-1.24337977,-9.68459383,3.02126784,-1.21610717,-9.68297529,-0.20896943,-1.61410326,0.50533035,0.35314028,2.98415843,-4.81673984 +2.12500000,-1.25306136,-9.68158759,3.04547554,-1.22578864,-9.67996272,-0.21058303,-1.61360224,0.50937947,0.35321180,2.98416584,-4.81525668 +2.12600000,-1.26273991,-9.67855746,3.06967573,-1.23546709,-9.67692627,-0.21219613,-1.61309724,0.51342734,0.35328369,2.98417329,-4.81376170 +2.12700000,-1.27241542,-9.67550344,3.09386835,-1.24514249,-9.67386594,-0.21380872,-1.61258826,0.51747393,0.35335594,2.98418078,-4.81225489 +2.12800000,-1.28208784,-9.67242556,3.11805332,-1.25481482,-9.67078174,-0.21542079,-1.61207530,0.52151925,0.35342854,2.98418831,-4.81073627 +2.12900000,-1.29175717,-9.66932380,3.14223061,-1.26448404,-9.66767368,-0.21703235,-1.61155836,0.52556329,0.35350151,2.98419588,-4.80920583 +2.13000000,-1.30142336,-9.66619819,3.16640013,-1.27415015,-9.66454176,-0.21864339,-1.61103745,0.52960602,0.35357484,2.98420348,-4.80766358 +2.13100000,-1.31108641,-9.66304873,3.19056185,-1.28381312,-9.66138600,-0.22025390,-1.61051256,0.53364745,0.35364854,2.98421113,-4.80610952 +2.13200000,-1.32074629,-9.65987543,3.21471569,-1.29347292,-9.65820640,-0.22186388,-1.60998370,0.53768757,0.35372259,2.98421881,-4.80454366 +2.13300000,-1.33040297,-9.65667829,3.23886159,-1.30312953,-9.65500297,-0.22347333,-1.60945087,0.54172635,0.35379700,2.98422654,-4.80296599 +2.13400000,-1.34005642,-9.65345732,3.26299951,-1.31278292,-9.65177572,-0.22508225,-1.60891407,0.54576380,0.35387178,2.98423430,-4.80137653 +2.13500000,-1.34970664,-9.65021254,3.28712937,-1.32243307,-9.64852465,-0.22669062,-1.60837329,0.54979990,0.35394691,2.98424210,-4.79977528 +2.13600000,-1.35935358,-9.64694394,3.31125111,-1.33207996,-9.64524977,-0.22829845,-1.60782855,0.55383465,0.35402240,2.98424994,-4.79816224 +2.13700000,-1.36899723,-9.64365154,3.33536469,-1.34172356,-9.64195110,-0.22990573,-1.60727984,0.55786803,0.35409826,2.98425782,-4.79653742 +2.13800000,-1.37863757,-9.64033535,3.35947004,-1.35136385,-9.63862864,-0.23151246,-1.60672716,0.56190003,0.35417447,2.98426573,-4.79490081 +2.13900000,-1.38827456,-9.63699537,3.38356709,-1.36100081,-9.63528239,-0.23311863,-1.60617052,0.56593064,0.35425104,2.98427369,-4.79325242 +2.14000000,-1.39790819,-9.63363161,3.40765580,-1.37063441,-9.63191237,-0.23472424,-1.60560992,0.56995986,0.35432798,2.98428168,-4.79159226 +2.14100000,-1.40753844,-9.63024408,3.43173609,-1.38026463,-9.62851858,-0.23632928,-1.60504535,0.57398767,0.35440527,2.98428972,-4.78992034 +2.14200000,-1.41716527,-9.62683279,3.45580792,-1.38989144,-9.62510104,-0.23793376,-1.60447682,0.57801407,0.35448292,2.98429779,-4.78823664 +2.14300000,-1.42678867,-9.62339775,3.47987121,-1.39951482,-9.62165975,-0.23953766,-1.60390434,0.58203904,0.35456093,2.98430590,-4.78654119 +2.14400000,-1.43640861,-9.61993896,3.50392592,-1.40913475,-9.61819471,-0.24114099,-1.60332790,0.58606257,0.35463929,2.98431405,-4.78483398 +2.14500000,-1.44602506,-9.61645644,3.52797198,-1.41875120,-9.61470595,-0.24274374,-1.60274750,0.59008465,0.35471802,2.98432224,-4.78311501 +2.14600000,-1.45563801,-9.61295018,3.55200934,-1.42836415,-9.61119346,-0.24434590,-1.60216315,0.59410528,0.35479711,2.98433047,-4.78138429 +2.14700000,-1.46524743,-9.60942021,3.57603793,-1.43797358,-9.60765726,-0.24594748,-1.60157484,0.59812445,0.35487655,2.98433873,-4.77964183 +2.14800000,-1.47485330,-9.60586653,3.60005770,-1.44757946,-9.60409735,-0.24754846,-1.60098258,0.60214213,0.35495635,2.98434704,-4.77788763 +2.14900000,-1.48445559,-9.60228915,3.62406858,-1.45718177,-9.60051374,-0.24914885,-1.60038638,0.60615834,0.35503650,2.98435538,-4.77612169 +2.15000000,-1.49405428,-9.59868807,3.64807051,-1.46678048,-9.59690645,-0.25074863,-1.59978622,0.61017304,0.35511702,2.98436376,-4.77434402 +2.15100000,-1.50364934,-9.59506331,3.67206345,-1.47637557,-9.59327547,-0.25234782,-1.59918211,0.61418624,0.35519789,2.98437218,-4.77255462 +2.15200000,-1.51324076,-9.59141488,3.69604732,-1.48596702,-9.58962083,-0.25394639,-1.59857406,0.61819792,0.35527912,2.98438064,-4.77075349 +2.15300000,-1.52282850,-9.58774278,3.72002207,-1.49555481,-9.58594252,-0.25554435,-1.59796207,0.62220808,0.35536071,2.98438914,-4.76894065 +2.15400000,-1.53241255,-9.58404702,3.74398764,-1.50513890,-9.58224056,-0.25714170,-1.59734613,0.62621671,0.35544265,2.98439768,-4.76711609 +2.15500000,-1.54199287,-9.58032761,3.76794397,-1.51471928,-9.57851496,-0.25873842,-1.59672625,0.63022378,0.35552495,2.98440625,-4.76527981 +2.15600000,-1.55156946,-9.57658457,3.79189100,-1.52429592,-9.57476573,-0.26033453,-1.59610244,0.63422930,0.35560760,2.98441486,-4.76343183 +2.15700000,-1.56114228,-9.57281790,3.81582868,-1.53386880,-9.57099287,-0.26193000,-1.59547468,0.63823326,0.35569061,2.98442352,-4.76157215 +2.15800000,-1.57071130,-9.56902760,3.83975693,-1.54343790,-9.56719639,-0.26352484,-1.59484299,0.64223564,0.35577398,2.98443221,-4.75970077 +2.15900000,-1.58027652,-9.56521370,3.86367571,-1.55300319,-9.56337631,-0.26511905,-1.59420736,0.64623644,0.35585770,2.98444093,-4.75781770 +2.16000000,-1.58983789,-9.56137619,3.88758496,-1.56256465,-9.55953263,-0.26671262,-1.59356780,0.65023564,0.35594178,2.98444970,-4.75592293 +2.16100000,-1.59939541,-9.55751510,3.91148461,-1.57212225,-9.55566536,-0.26830554,-1.59292430,0.65423324,0.35602621,2.98445851,-4.75401648 +2.16200000,-1.60894904,-9.55363042,3.93537461,-1.58167597,-9.55177452,-0.26989782,-1.59227688,0.65822922,0.35611100,2.98446735,-4.75209835 +2.16300000,-1.61849876,-9.54972217,3.95925490,-1.59122579,-9.54786011,-0.27148945,-1.59162553,0.66222358,0.35619614,2.98447623,-4.75016855 +2.16400000,-1.62804455,-9.54579035,3.98312542,-1.60077168,-9.54392214,-0.27308042,-1.59097025,0.66621631,0.35628164,2.98448515,-4.74822707 +2.16500000,-1.63758639,-9.54183498,4.00698611,-1.61031362,-9.53996062,-0.27467073,-1.59031104,0.67020739,0.35636749,2.98449411,-4.74627393 +2.16600000,-1.64712424,-9.53785607,4.03083691,-1.61985159,-9.53597556,-0.27626038,-1.58964791,0.67419681,0.35645370,2.98450311,-4.74430912 +2.16700000,-1.65665810,-9.53385363,4.05467776,-1.62938557,-9.53196698,-0.27784936,-1.58898086,0.67818458,0.35654026,2.98451214,-4.74233266 +2.16800000,-1.66618792,-9.52982766,4.07850861,-1.63891552,-9.52793487,-0.27943767,-1.58830989,0.68217066,0.35662717,2.98452121,-4.74034455 +2.16900000,-1.67571370,-9.52577817,4.10232939,-1.64844143,-9.52387926,-0.28102530,-1.58763499,0.68615507,0.35671444,2.98453032,-4.73834478 +2.17000000,-1.68523541,-9.52170519,4.12614004,-1.65796327,-9.51980014,-0.28261226,-1.58695618,0.69013778,0.35680206,2.98453947,-4.73633338 +2.17100000,-1.69475302,-9.51760870,4.14994052,-1.66748102,-9.51569754,-0.28419853,-1.58627346,0.69411879,0.35689003,2.98454866,-4.73431033 +2.17200000,-1.70426651,-9.51348874,4.17373075,-1.67699466,-9.51157146,-0.28578412,-1.58558682,0.69809809,0.35697835,2.98455789,-4.73227565 +2.17300000,-1.71377585,-9.50934530,4.19751069,-1.68650416,-9.50742191,-0.28736901,-1.58489627,0.70207566,0.35706703,2.98456715,-4.73022935 +2.17400000,-1.72328103,-9.50517840,4.22128026,-1.69600949,-9.50324890,-0.28895322,-1.58420181,0.70605150,0.35715606,2.98457645,-4.72817142 +2.17500000,-1.73278202,-9.50098804,4.24503942,-1.70551065,-9.49905244,-0.29053672,-1.58350344,0.71002560,0.35724544,2.98458579,-4.72610187 +2.17600000,-1.74227879,-9.49677425,4.26878810,-1.71500759,-9.49483254,-0.29211952,-1.58280116,0.71399795,0.35733518,2.98459517,-4.72402070 +2.17700000,-1.75177133,-9.49253702,4.29252625,-1.72450030,-9.49058922,-0.29370161,-1.58209498,0.71796853,0.35742527,2.98460459,-4.72192793 +2.17800000,-1.76125960,-9.48827637,4.31625381,-1.73398876,-9.48632248,-0.29528300,-1.58138489,0.72193734,0.35751570,2.98461404,-4.71982355 +2.17900000,-1.77074360,-9.48399230,4.33997071,-1.74347294,-9.48203233,-0.29686367,-1.58067090,0.72590437,0.35760649,2.98462353,-4.71770758 +2.18000000,-1.78022328,-9.47968484,4.36367690,-1.75295282,-9.47771879,-0.29844362,-1.57995302,0.72986961,0.35769763,2.98463306,-4.71558001 +2.18100000,-1.78969864,-9.47535398,4.38737233,-1.76242837,-9.47338186,-0.30002285,-1.57923123,0.73383305,0.35778912,2.98464263,-4.71344085 +2.18200000,-1.79916964,-9.47099975,4.41105692,-1.77189957,-9.46902155,-0.30160136,-1.57850555,0.73779468,0.35788096,2.98465224,-4.71129010 +2.18300000,-1.80863626,-9.46662215,4.43473064,-1.78136641,-9.46463789,-0.30317914,-1.57777597,0.74175449,0.35797316,2.98466188,-4.70912778 +2.18400000,-1.81809848,-9.46222119,4.45839341,-1.79082884,-9.46023087,-0.30475618,-1.57704250,0.74571246,0.35806570,2.98467156,-4.70695389 +2.18500000,-1.82755628,-9.45779688,4.48204517,-1.80028686,-9.45580051,-0.30633248,-1.57630513,0.74966860,0.35815859,2.98468128,-4.70476842 +2.18600000,-1.83700963,-9.45334924,4.50568588,-1.80974044,-9.45134681,-0.30790805,-1.57556388,0.75362288,0.35825183,2.98469104,-4.70257139 +2.18700000,-1.84645850,-9.44887827,4.52931546,-1.81918955,-9.44686980,-0.30948287,-1.57481874,0.75757531,0.35834542,2.98470083,-4.70036281 +2.18800000,-1.85590289,-9.44438398,4.55293387,-1.82863417,-9.44236947,-0.31105694,-1.57406972,0.76152587,0.35843936,2.98471066,-4.69814267 +2.18900000,-1.86534275,-9.43986640,4.57654105,-1.83807428,-9.43784585,-0.31263025,-1.57331681,0.76547454,0.35853365,2.98472053,-4.69591098 +2.19000000,-1.87477808,-9.43532552,4.60013693,-1.84750985,-9.43329895,-0.31420281,-1.57256002,0.76942133,0.35862829,2.98473044,-4.69366775 +2.19100000,-1.88420884,-9.43076136,4.62372146,-1.85694087,-9.42872876,-0.31577461,-1.57179935,0.77336622,0.35872327,2.98474039,-4.69141299 +2.19200000,-1.89363501,-9.42617393,4.64729458,-1.86636730,-9.42413531,-0.31734565,-1.57103480,0.77730920,0.35881861,2.98475037,-4.68914669 +2.19300000,-1.90305658,-9.42156325,4.67085623,-1.87578913,-9.41951861,-0.31891591,-1.57026637,0.78125027,0.35891429,2.98476039,-4.68686887 +2.19400000,-1.91247351,-9.41692931,4.69440635,-1.88520633,-9.41487867,-0.32048541,-1.56949407,0.78518940,0.35901032,2.98477045,-4.68457952 +2.19500000,-1.92188578,-9.41227214,4.71794489,-1.89461888,-9.41021550,-0.32205413,-1.56871790,0.78912660,0.35910670,2.98478055,-4.68227866 +2.19600000,-1.93129337,-9.40759175,4.74147179,-1.90402675,-9.40552910,-0.32362206,-1.56793785,0.79306185,0.35920343,2.98479068,-4.67996629 +2.19700000,-1.94069626,-9.40288815,4.76498698,-1.91342993,-9.40081950,-0.32518922,-1.56715394,0.79699514,0.35930050,2.98480085,-4.67764242 +2.19800000,-1.95009442,-9.39816134,4.78849042,-1.92282838,-9.39608671,-0.32675558,-1.56636616,0.80092647,0.35939792,2.98481106,-4.67530705 +2.19900000,-1.95948783,-9.39341135,4.81198204,-1.93222210,-9.39133073,-0.32832116,-1.56557452,0.80485582,0.35949568,2.98482131,-4.67296018 +2.20000000,-1.96887647,-9.38863818,4.83546179,-1.94161104,-9.38655158,-0.32988594,-1.56477901,0.80878318,0.35959380,2.98483159,-4.67060183 +2.20100000,-1.97826031,-9.38384184,4.85892960,-1.95099519,-9.38174927,-0.33144992,-1.56397964,0.81270855,0.35969225,2.98484191,-4.66823199 +2.20200000,-1.98763933,-9.37902235,4.88238542,-1.96037453,-9.37692381,-0.33301309,-1.56317642,0.81663191,0.35979106,2.98485227,-4.66585068 +2.20300000,-1.99701351,-9.37417972,4.90582920,-1.96974903,-9.37207521,-0.33457546,-1.56236933,0.82055326,0.35989021,2.98486267,-4.66345789 +2.20400000,-2.00638283,-9.36931396,4.92926087,-1.97911867,-9.36720349,-0.33613702,-1.56155840,0.82447258,0.35998970,2.98487310,-4.66105365 +2.20500000,-2.01574725,-9.36442508,4.95268037,-1.98848343,-9.36230866,-0.33769776,-1.56074360,0.82838987,0.36008954,2.98488357,-4.65863794 +2.20600000,-2.02510677,-9.35951309,4.97608766,-1.99784328,-9.35739072,-0.33925769,-1.55992496,0.83230512,0.36018973,2.98489408,-4.65621078 +2.20700000,-2.03446134,-9.35457801,4.99948266,-2.00719820,-9.35244970,-0.34081679,-1.55910247,0.83621831,0.36029026,2.98490462,-4.65377217 +2.20800000,-2.04381096,-9.34961985,5.02286533,-2.01654817,-9.34748560,-0.34237507,-1.55827613,0.84012943,0.36039113,2.98491520,-4.65132212 +2.20900000,-2.05315560,-9.34463862,5.04623560,-2.02589317,-9.34249844,-0.34393251,-1.55744595,0.84403848,0.36049235,2.98492582,-4.64886063 +2.21000000,-2.06249524,-9.33963433,5.06959342,-2.03523316,-9.33748822,-0.34548913,-1.55661192,0.84794546,0.36059392,2.98493648,-4.64638771 +2.21100000,-2.07182984,-9.33460700,5.09293873,-2.04456814,-9.33245497,-0.34704490,-1.55577405,0.85185033,0.36069582,2.98494717,-4.64390337 +2.21200000,-2.08115940,-9.32955664,5.11627147,-2.05389807,-9.32739869,-0.34859983,-1.55493235,0.85575311,0.36079807,2.98495790,-4.64140761 +2.21300000,-2.09048388,-9.32448325,5.13959159,-2.06322293,-9.32231939,-0.35015392,-1.55408681,0.85965377,0.36090067,2.98496867,-4.63890043 +2.21400000,-2.09980327,-9.31938686,5.16289902,-2.07254270,-9.31721709,-0.35170716,-1.55323743,0.86355232,0.36100360,2.98497948,-4.63638185 +2.21500000,-2.10911754,-9.31426748,5.18619371,-2.08185735,-9.31209181,-0.35325954,-1.55238422,0.86744873,0.36110688,2.98499032,-4.63385187 +2.21600000,-2.11842666,-9.30912511,5.20947561,-2.09116687,-9.30694354,-0.35481107,-1.55152718,0.87134300,0.36121050,2.98500120,-4.63131050 +2.21700000,-2.12773062,-9.30395977,5.23274465,-2.10047123,-9.30177232,-0.35636173,-1.55066631,0.87523512,0.36131447,2.98501212,-4.62875773 +2.21800000,-2.13702939,-9.29877148,5.25600078,-2.10977041,-9.29657814,-0.35791154,-1.54980162,0.87912508,0.36141877,2.98502307,-4.62619359 +2.21900000,-2.14632295,-9.29356024,5.27924394,-2.11906438,-9.29136102,-0.35946047,-1.54893310,0.88301287,0.36152342,2.98503406,-4.62361806 +2.22000000,-2.15561128,-9.28832608,5.30247407,-2.12835312,-9.28612098,-0.36100853,-1.54806076,0.88689849,0.36162841,2.98504509,-4.62103117 +2.22100000,-2.16489435,-9.28306899,5.32569111,-2.13763661,-9.28085802,-0.36255571,-1.54718460,0.89078191,0.36173374,2.98505615,-4.61843291 +2.22200000,-2.17417214,-9.27778900,5.34889502,-2.14691483,-9.27557217,-0.36410202,-1.54630463,0.89466314,0.36183941,2.98506725,-4.61582330 +2.22300000,-2.18344462,-9.27248612,5.37208572,-2.15618775,-9.27026343,-0.36564744,-1.54542083,0.89854215,0.36194542,2.98507839,-4.61320233 +2.22400000,-2.19271179,-9.26716036,5.39526317,-2.16545535,-9.26493181,-0.36719197,-1.54453323,0.90241896,0.36205177,2.98508956,-4.61057002 +2.22500000,-2.20197360,-9.26181173,5.41842730,-2.17471761,-9.25957734,-0.36873562,-1.54364181,0.90629353,0.36215846,2.98510078,-4.60792637 +2.22600000,-2.21123004,-9.25644025,5.44157807,-2.18397450,-9.25420002,-0.37027836,-1.54274659,0.91016587,0.36226549,2.98511202,-4.60527138 +2.22700000,-2.22048108,-9.25104593,5.46471541,-2.19322600,-9.24879986,-0.37182021,-1.54184755,0.91403596,0.36237286,2.98512331,-4.60260507 +2.22800000,-2.22972671,-9.24562878,5.48783926,-2.20247209,-9.24337688,-0.37336115,-1.54094472,0.91790380,0.36248057,2.98513463,-4.59992744 +2.22900000,-2.23896690,-9.24018883,5.51094957,-2.21171275,-9.23793110,-0.37490119,-1.54003808,0.92176937,0.36258862,2.98514599,-4.59723850 +2.23000000,-2.24820163,-9.23472607,5.53404628,-2.22094794,-9.23246252,-0.37644032,-1.53912764,0.92563266,0.36269701,2.98515738,-4.59453824 +2.23100000,-2.25743087,-9.22924053,5.55712933,-2.23017766,-9.22697117,-0.37797853,-1.53821341,0.92949368,0.36280574,2.98516881,-4.59182669 +2.23200000,-2.26665460,-9.22373221,5.58019868,-2.23940188,-9.22145704,-0.37951583,-1.53729538,0.93335240,0.36291480,2.98518028,-4.58910384 +2.23300000,-2.27587280,-9.21820114,5.60325425,-2.24862057,-9.21592017,-0.38105220,-1.53637355,0.93720881,0.36302420,2.98519179,-4.58636971 +2.23400000,-2.28508545,-9.21264732,5.62629599,-2.25783371,-9.21036055,-0.38258765,-1.53544794,0.94106292,0.36313395,2.98520333,-4.58362429 +2.23500000,-2.29429252,-9.20707077,5.64932386,-2.26704128,-9.20477821,-0.38412217,-1.53451853,0.94491470,0.36324402,2.98521491,-4.58086760 +2.23600000,-2.30349399,-9.20147151,5.67233778,-2.27624326,-9.19917315,-0.38565575,-1.53358534,0.94876415,0.36335444,2.98522652,-4.57809964 +2.23700000,-2.31268984,-9.19584954,5.69533770,-2.28543962,-9.19354540,-0.38718840,-1.53264837,0.95261125,0.36346519,2.98523817,-4.57532041 +2.23800000,-2.32188004,-9.19020487,5.71832357,-2.29463034,-9.18789497,-0.38872011,-1.53170761,0.95645601,0.36357628,2.98524986,-4.57252994 +2.23900000,-2.33106458,-9.18453754,5.74129533,-2.30381540,-9.18222186,-0.39025087,-1.53076308,0.96029841,0.36368771,2.98526158,-4.56972821 +2.24000000,-2.34024343,-9.17884754,5.76425293,-2.31299478,-9.17652610,-0.39178069,-1.52981477,0.96413844,0.36379947,2.98527334,-4.56691524 +2.24100000,-2.34941656,-9.17313490,5.78719630,-2.32216845,-9.17080769,-0.39330955,-1.52886268,0.96797609,0.36391156,2.98528514,-4.56409104 +2.24200000,-2.35858396,-9.16739962,5.81012539,-2.33133639,-9.16506666,-0.39483746,-1.52790682,0.97181135,0.36402400,2.98529697,-4.56125561 +2.24300000,-2.36774561,-9.16164172,5.83304014,-2.34049858,-9.15930301,-0.39636440,-1.52694719,0.97564421,0.36413676,2.98530884,-4.55840895 +2.24400000,-2.37690147,-9.15586121,5.85594050,-2.34965499,-9.15351677,-0.39789039,-1.52598380,0.97947466,0.36424987,2.98532074,-4.55555108 +2.24500000,-2.38605153,-9.15005812,5.87882641,-2.35880560,-9.14770794,-0.39941540,-1.52501664,0.98330270,0.36436331,2.98533269,-4.55268201 +2.24600000,-2.39519576,-9.14423244,5.90169781,-2.36795040,-9.14187653,-0.40093945,-1.52404571,0.98712831,0.36447708,2.98534466,-4.54980173 +2.24700000,-2.40433414,-9.13838421,5.92455465,-2.37708935,-9.13602257,-0.40246252,-1.52307103,0.99095149,0.36459118,2.98535668,-4.54691026 +2.24800000,-2.41346666,-9.13251343,5.94739687,-2.38622243,-9.13014607,-0.40398461,-1.52209258,0.99477222,0.36470562,2.98536873,-4.54400760 +2.24900000,-2.42259328,-9.12662011,5.97022442,-2.39534963,-9.12424704,-0.40550572,-1.52111039,0.99859050,0.36482040,2.98538081,-4.54109376 +2.25000000,-2.43171398,-9.12070428,5.99303723,-2.40447092,-9.11832550,-0.40702585,-1.52012443,1.00240631,0.36493551,2.98539293,-4.53816874 +2.25100000,-2.44082875,-9.11476594,6.01583525,-2.41358627,-9.11238146,-0.40854498,-1.51913473,1.00621965,0.36505095,2.98540509,-4.53523256 +2.25200000,-2.44993755,-9.10880511,6.03861844,-2.42269567,-9.10641493,-0.41006312,-1.51814128,1.01003050,0.36516672,2.98541729,-4.53228522 +2.25300000,-2.45904037,-9.10282180,6.06138672,-2.43179910,-9.10042594,-0.41158027,-1.51714408,1.01383886,0.36528282,2.98542952,-4.52932673 +2.25400000,-2.46813719,-9.09681604,6.08414004,-2.44089652,-9.09441449,-0.41309641,-1.51614315,1.01764473,0.36539926,2.98544178,-4.52635709 +2.25500000,-2.47722798,-9.09078783,6.10687835,-2.44998792,-9.08838060,-0.41461155,-1.51513846,1.02144808,0.36551603,2.98545408,-4.52337632 +2.25600000,-2.48631271,-9.08473719,6.12960159,-2.45907327,-9.08232429,-0.41612568,-1.51413005,1.02524891,0.36563313,2.98546642,-4.52038441 +2.25700000,-2.49539138,-9.07866413,6.15230971,-2.46815256,-9.07624557,-0.41763880,-1.51311789,1.02904721,0.36575057,2.98547880,-4.51738138 +2.25800000,-2.50446395,-9.07256868,6.17500264,-2.47722576,-9.07014445,-0.41915090,-1.51210200,1.03284297,0.36586833,2.98549120,-4.51436723 +2.25900000,-2.51353040,-9.06645084,6.19768034,-2.48629284,-9.06402095,-0.42066198,-1.51108238,1.03663618,0.36598642,2.98550365,-4.51134197 +2.26000000,-2.52259071,-9.06031062,6.22034275,-2.49535379,-9.05787509,-0.42217204,-1.51005903,1.04042683,0.36610485,2.98551613,-4.50830561 +2.26100000,-2.53164486,-9.05414806,6.24298980,-2.50440858,-9.05170688,-0.42368107,-1.50903196,1.04421492,0.36622360,2.98552865,-4.50525815 +2.26200000,-2.54069282,-9.04796315,6.26562145,-2.51345720,-9.04551634,-0.42518908,-1.50800116,1.04800043,0.36634269,2.98554120,-4.50219960 +2.26300000,-2.54973458,-9.04175592,6.28823765,-2.52249961,-9.03930347,-0.42669604,-1.50696665,1.05178335,0.36646210,2.98555379,-4.49912998 +2.26400000,-2.55877010,-9.03552637,6.31083832,-2.53153580,-9.03306831,-0.42820197,-1.50592841,1.05556368,0.36658185,2.98556641,-4.49604928 +2.26500000,-2.56779938,-9.02927454,6.33342342,-2.54056574,-9.02681085,-0.42970686,-1.50488646,1.05934141,0.36670192,2.98557907,-4.49295751 +2.26600000,-2.57682238,-9.02300042,6.35599290,-2.54958941,-9.02053112,-0.43121070,-1.50384079,1.06311652,0.36682232,2.98559177,-4.48985469 +2.26700000,-2.58583908,-9.01670404,6.37854669,-2.55860679,-9.01422914,-0.43271349,-1.50279142,1.06688900,0.36694305,2.98560450,-4.48674081 +2.26800000,-2.59484947,-9.01038542,6.40108474,-2.56761786,-9.00790491,-0.43421523,-1.50173833,1.07065886,0.36706411,2.98561726,-4.48361589 +2.26900000,-2.60385351,-9.00404456,6.42360700,-2.57662260,-9.00155845,-0.43571591,-1.50068154,1.07442607,0.36718549,2.98563006,-4.48047993 +2.27000000,-2.61285119,-8.99768148,6.44611341,-2.58562097,-8.99518979,-0.43721553,-1.49962105,1.07819063,0.36730721,2.98564290,-4.47733295 +2.27100000,-2.62184249,-8.99129621,6.46860391,-2.59461297,-8.98879893,-0.43871409,-1.49855686,1.08195254,0.36742925,2.98565577,-4.47417494 +2.27200000,-2.63082738,-8.98488875,6.49107845,-2.60359856,-8.98238589,-0.44021158,-1.49748897,1.08571177,0.36755162,2.98566868,-4.47100592 +2.27300000,-2.63980584,-8.97845912,6.51353697,-2.61257773,-8.97595069,-0.44170799,-1.49641739,1.08946832,0.36767431,2.98568162,-4.46782589 +2.27400000,-2.64877784,-8.97200734,6.53597942,-2.62155046,-8.96949334,-0.44320334,-1.49534211,1.09322218,0.36779733,2.98569460,-4.46463487 +2.27500000,-2.65774338,-8.96553341,6.55840575,-2.63051671,-8.96301387,-0.44469760,-1.49426314,1.09697335,0.36792068,2.98570762,-4.46143285 +2.27600000,-2.66670241,-8.95903737,6.58081589,-2.63947648,-8.95651227,-0.44619078,-1.49318049,1.10072181,0.36804435,2.98572066,-4.45821985 +2.27700000,-2.67565493,-8.95251923,6.60320979,-2.64842973,-8.94998858,-0.44768287,-1.49209415,1.10446755,0.36816835,2.98573375,-4.45499587 +2.27800000,-2.68460091,-8.94597899,6.62558740,-2.65737645,-8.94344280,-0.44917388,-1.49100413,1.10821057,0.36829267,2.98574687,-4.45176093 +2.27900000,-2.69354033,-8.93941668,6.64794866,-2.66631661,-8.93687495,-0.45066379,-1.48991044,1.11195086,0.36841732,2.98576002,-4.44851502 +2.28000000,-2.70247316,-8.93283231,6.67029352,-2.67525019,-8.93028506,-0.45215260,-1.48881306,1.11568840,0.36854229,2.98577321,-4.44525816 +2.28100000,-2.71139939,-8.92622590,6.69262192,-2.68417717,-8.92367313,-0.45364031,-1.48771202,1.11942319,0.36866759,2.98578644,-4.44199036 +2.28200000,-2.72031898,-8.91959747,6.71493381,-2.69309753,-8.91703918,-0.45512692,-1.48660730,1.12315521,0.36879321,2.98579970,-4.43871162 +2.28300000,-2.72923193,-8.91294703,6.73722912,-2.70201124,-8.91038323,-0.45661242,-1.48549891,1.12688447,0.36891915,2.98581299,-4.43542195 +2.28400000,-2.73813821,-8.90627460,6.75950782,-2.71091829,-8.90370530,-0.45809681,-1.48438686,1.13061094,0.36904542,2.98582632,-4.43212136 +2.28500000,-2.74703779,-8.89958019,6.78176983,-2.71981864,-8.89700539,-0.45958008,-1.48327115,1.13433462,0.36917201,2.98583969,-4.42880985 +2.28600000,-2.75593065,-8.89286383,6.80401511,-2.72871229,-8.89028353,-0.46106223,-1.48215177,1.13805551,0.36929892,2.98585309,-4.42548744 +2.28700000,-2.76481678,-8.88612552,6.82624360,-2.73759920,-8.88353974,-0.46254326,-1.48102874,1.14177358,0.36942616,2.98586652,-4.42215413 +2.28800000,-2.77369614,-8.87936529,6.84845525,-2.74647936,-8.87677403,-0.46402316,-1.47990206,1.14548884,0.36955372,2.98587999,-4.41880994 +2.28900000,-2.78256872,-8.87258314,6.87065000,-2.75535274,-8.86998641,-0.46550193,-1.47877172,1.14920128,0.36968159,2.98589350,-4.41545486 +2.29000000,-2.79143450,-8.86577911,6.89282779,-2.76421933,-8.86317691,-0.46697957,-1.47763773,1.15291087,0.36980980,2.98590704,-4.41208890 +2.29100000,-2.80029346,-8.85895320,6.91498858,-2.77307909,-8.85634554,-0.46845607,-1.47650010,1.15661763,0.36993832,2.98592061,-4.40871208 +2.29200000,-2.80914556,-8.85210543,6.93713231,-2.78193201,-8.84949232,-0.46993143,-1.47535883,1.16032153,0.37006716,2.98593422,-4.40532441 +2.29300000,-2.81799080,-8.84523582,6.95925892,-2.79077807,-8.84261727,-0.47140564,-1.47421391,1.16402256,0.37019632,2.98594786,-4.40192588 +2.29400000,-2.82682914,-8.83834439,6.98136835,-2.79961724,-8.83572039,-0.47287871,-1.47306536,1.16772072,0.37032581,2.98596154,-4.39851651 +2.29500000,-2.83566057,-8.83143114,7.00346057,-2.80844950,-8.82880171,-0.47435062,-1.47191317,1.17141601,0.37045561,2.98597525,-4.39509631 +2.29600000,-2.84448507,-8.82449611,7.02553550,-2.81727484,-8.82186125,-0.47582138,-1.47075735,1.17510840,0.37058573,2.98598900,-4.39166528 +2.29700000,-2.85330261,-8.81753931,7.04759309,-2.82609322,-8.81489903,-0.47729098,-1.46959791,1.17879789,0.37071617,2.98600278,-4.38822344 +2.29800000,-2.86211317,-8.81056074,7.06963330,-2.83490463,-8.80791505,-0.47875941,-1.46843483,1.18248448,0.37084693,2.98601660,-4.38477079 +2.29900000,-2.87091673,-8.80356044,7.09165606,-2.84370904,-8.80090934,-0.48022668,-1.46726814,1.18616814,0.37097801,2.98603045,-4.38130734 +2.30000000,-2.87971327,-8.79653842,7.11366133,-2.85250644,-8.79388191,-0.48169278,-1.46609782,1.18984888,0.37110941,2.98604434,-4.37783309 +2.30100000,-2.88850276,-8.78949469,7.13564904,-2.86129680,-8.78683279,-0.48315770,-1.46492389,1.19352668,0.37124112,2.98605826,-4.37434806 +2.30200000,-2.89728519,-8.78242928,7.15761914,-2.87008010,-8.77976198,-0.48462145,-1.46374634,1.19720154,0.37137316,2.98607221,-4.37085226 +2.30300000,-2.90606053,-8.77534219,7.17957159,-2.87885631,-8.77266952,-0.48608401,-1.46256518,1.20087345,0.37150551,2.98608620,-4.36734569 +2.30400000,-2.91482877,-8.76823345,7.20150632,-2.88762543,-8.76555540,-0.48754539,-1.46138041,1.20454239,0.37163818,2.98610022,-4.36382835 +2.30500000,-2.92358987,-8.76110308,7.22342328,-2.89638742,-8.75841966,-0.48900558,-1.46019203,1.20820836,0.37177116,2.98611428,-4.36030027 +2.30600000,-2.93234382,-8.75395109,7.24532241,-2.90514226,-8.75126231,-0.49046458,-1.45900005,1.21187135,0.37190446,2.98612837,-4.35676145 +2.30700000,-2.94109060,-8.74677751,7.26720367,-2.91388993,-8.74408337,-0.49192239,-1.45780448,1.21553134,0.37203808,2.98614250,-4.35321189 +2.30800000,-2.94983018,-8.73958234,7.28906700,-2.92263042,-8.73688285,-0.49337899,-1.45660530,1.21918834,0.37217201,2.98615666,-4.34965161 +2.30900000,-2.95856255,-8.73236560,7.31091235,-2.93136369,-8.72966077,-0.49483440,-1.45540253,1.22284233,0.37230625,2.98617085,-4.34608061 +2.31000000,-2.96728768,-8.72512732,7.33273965,-2.94008973,-8.72241715,-0.49628859,-1.45419617,1.22649331,0.37244082,2.98618508,-4.34249891 +2.31100000,-2.97600554,-8.71786752,7.35454886,-2.94880852,-8.71515201,-0.49774158,-1.45298622,1.23014125,0.37257569,2.98619934,-4.33890650 +2.31200000,-2.98471613,-8.71058620,7.37633993,-2.95752003,-8.70786537,-0.49919335,-1.45177269,1.23378617,0.37271088,2.98621364,-4.33530340 +2.31300000,-2.99341941,-8.70328339,7.39811279,-2.96622424,-8.70055724,-0.50064391,-1.45055557,1.23742803,0.37284639,2.98622797,-4.33168963 +2.31400000,-3.00211537,-8.69595910,7.41986740,-2.97492114,-8.69322765,-0.50209324,-1.44933488,1.24106685,0.37298221,2.98624233,-4.32806517 +2.31500000,-3.01080398,-8.68861336,7.44160370,-2.98361069,-8.68587660,-0.50354135,-1.44811061,1.24470260,0.37311834,2.98625673,-4.32443006 +2.31600000,-3.01948523,-8.68124618,7.46332164,-2.99229288,-8.67850413,-0.50498824,-1.44688277,1.24833528,0.37325478,2.98627116,-4.32078428 +2.31700000,-3.02815909,-8.67385758,7.48502117,-3.00096769,-8.67111023,-0.50643389,-1.44565135,1.25196488,0.37339154,2.98628563,-4.31712786 +2.31800000,-3.03682554,-8.66644758,7.50670223,-3.00963510,-8.66369495,-0.50787830,-1.44441637,1.25559139,0.37352861,2.98630013,-4.31346080 +2.31900000,-3.04548455,-8.65901620,7.52836476,-3.01829508,-8.65625829,-0.50932148,-1.44317783,1.25921481,0.37366599,2.98631466,-4.30978311 +2.32000000,-3.05413612,-8.65156345,7.55000872,-3.02694761,-8.64880027,-0.51076342,-1.44193572,1.26283511,0.37380369,2.98632923,-4.30609480 +2.32100000,-3.06278021,-8.64408935,7.57163405,-3.03559267,-8.64132091,-0.51220411,-1.44069006,1.26645230,0.37394169,2.98634383,-4.30239587 +2.32200000,-3.07141680,-8.63659393,7.59324070,-3.04423024,-8.63382022,-0.51364355,-1.43944084,1.27006637,0.37408001,2.98635847,-4.29868635 +2.32300000,-3.08004588,-8.62907719,7.61482862,-3.05286030,-8.62629824,-0.51508174,-1.43818807,1.27367730,0.37421864,2.98637314,-4.29496622 +2.32400000,-3.08866742,-8.62153917,7.63639774,-3.06148283,-8.61875497,-0.51651867,-1.43693175,1.27728509,0.37435757,2.98638784,-4.29123552 +2.32500000,-3.09728140,-8.61397987,7.65794802,-3.07009781,-8.61119043,-0.51795434,-1.43567189,1.28088973,0.37449682,2.98640257,-4.28749423 +2.32600000,-3.10588779,-8.60639932,7.67947941,-3.07870520,-8.60360465,-0.51938875,-1.43440849,1.28449121,0.37463638,2.98641734,-4.28374238 +2.32700000,-3.11448659,-8.59879753,7.70099185,-3.08730501,-8.59599764,-0.52082189,-1.43314154,1.28808951,0.37477624,2.98643215,-4.27997997 +2.32800000,-3.12307777,-8.59117452,7.72248529,-3.09589719,-8.58836941,-0.52225376,-1.43187106,1.29168464,0.37491642,2.98644698,-4.27620700 +2.32900000,-3.13166130,-8.58353032,7.74395967,-3.10448174,-8.58072000,-0.52368436,-1.43059705,1.29527659,0.37505690,2.98646185,-4.27242350 +2.33000000,-3.14023716,-8.57586494,7.76541495,-3.11305863,-8.57304942,-0.52511368,-1.42931950,1.29886533,0.37519769,2.98647675,-4.26862947 +2.33100000,-3.14880534,-8.56817840,7.78685107,-3.12162783,-8.56535768,-0.52654172,-1.42803843,1.30245088,0.37533879,2.98649169,-4.26482491 +2.33200000,-3.15736581,-8.56047072,7.80826797,-3.13018933,-8.55764481,-0.52796847,-1.42675384,1.30603320,0.37548020,2.98650666,-4.26100984 +2.33300000,-3.16591855,-8.55274191,7.82966561,-3.13874311,-8.54991082,-0.52939393,-1.42546572,1.30961231,0.37562191,2.98652166,-4.25718426 +2.33400000,-3.17446354,-8.54499201,7.85104393,-3.14728915,-8.54215574,-0.53081811,-1.42417409,1.31318819,0.37576394,2.98653670,-4.25334819 +2.33500000,-3.18300077,-8.53722102,7.87240287,-3.15582742,-8.53437958,-0.53224099,-1.42287894,1.31676082,0.37590626,2.98655177,-4.24950163 +2.33600000,-3.19153019,-8.52942896,7.89374240,-3.16435790,-8.52658236,-0.53366257,-1.42158029,1.32033021,0.37604890,2.98656687,-4.24564460 +2.33700000,-3.20005181,-8.52161586,7.91506244,-3.17288058,-8.51876410,-0.53508285,-1.42027812,1.32389633,0.37619184,2.98658201,-4.24177709 +2.33800000,-3.20856559,-8.51378173,7.93636296,-3.18139542,-8.51092483,-0.53650182,-1.41897245,1.32745919,0.37633508,2.98659718,-4.23789913 +2.33900000,-3.21707152,-8.50592660,7.95764390,-3.18990242,-8.50306455,-0.53791948,-1.41766329,1.33101878,0.37647863,2.98661238,-4.23401072 +2.34000000,-3.22556957,-8.49805048,7.97890520,-3.19840154,-8.49518330,-0.53933583,-1.41635062,1.33457508,0.37662249,2.98662762,-4.23011187 +2.34100000,-3.23405972,-8.49015339,8.00014681,-3.20689278,-8.48728108,-0.54075087,-1.41503446,1.33812809,0.37676665,2.98664288,-4.22620259 +2.34200000,-3.24254196,-8.48223535,8.02136869,-3.21537610,-8.47935792,-0.54216458,-1.41371480,1.34167780,0.37691111,2.98665819,-4.22228289 +2.34300000,-3.25101625,-8.47429639,8.04257077,-3.22385149,-8.47141384,-0.54357697,-1.41239166,1.34522420,0.37705588,2.98667352,-4.21835277 +2.34400000,-3.25948259,-8.46633651,8.06375301,-3.23231892,-8.46344886,-0.54498804,-1.41106503,1.34876727,0.37720095,2.98668889,-4.21441225 +2.34500000,-3.26794095,-8.45835574,8.08491535,-3.24077838,-8.45546299,-0.54639777,-1.40973492,1.35230702,0.37734632,2.98670429,-4.21046134 +2.34600000,-3.27639130,-8.45035411,8.10605775,-3.24922984,-8.44745627,-0.54780617,-1.40840134,1.35584344,0.37749200,2.98671972,-4.20650005 +2.34700000,-3.28483363,-8.44233162,8.12718014,-3.25767328,-8.43942869,-0.54921324,-1.40706428,1.35937651,0.37763798,2.98673518,-4.20252838 +2.34800000,-3.29326792,-8.43428831,8.14828248,-3.26610869,-8.43138030,-0.55061896,-1.40572374,1.36290622,0.37778426,2.98675068,-4.19854635 +2.34900000,-3.30169415,-8.42622418,8.16936472,-3.27453604,-8.42331110,-0.55202334,-1.40437974,1.36643257,0.37793084,2.98676621,-4.19455396 +2.35000000,-3.31011228,-8.41813926,8.19042680,-3.28295530,-8.41522112,-0.55342637,-1.40303227,1.36995555,0.37807772,2.98678178,-4.19055123 +2.35100000,-3.31852232,-8.41003357,8.21146867,-3.29136647,-8.40711037,-0.55482806,-1.40168134,1.37347515,0.37822491,2.98679737,-4.18653816 +2.35200000,-3.32692423,-8.40190713,8.23249028,-3.29976952,-8.39897888,-0.55622838,-1.40032696,1.37699136,0.37837239,2.98681300,-4.18251476 +2.35300000,-3.33531799,-8.39375996,8.25349158,-3.30816442,-8.39082667,-0.55762735,-1.39896911,1.38050417,0.37852018,2.98682866,-4.17848105 +2.35400000,-3.34370358,-8.38559208,8.27447252,-3.31655117,-8.38265375,-0.55902496,-1.39760782,1.38401358,0.37866826,2.98684436,-4.17443703 +2.35500000,-3.35208098,-8.37740351,8.29543304,-3.32492972,-8.37446015,-0.56042120,-1.39624308,1.38751957,0.37881665,2.98686008,-4.17038271 +2.35600000,-3.36045017,-8.36919427,8.31637309,-3.33330008,-8.36624589,-0.56181608,-1.39487489,1.39102214,0.37896533,2.98687584,-4.16631811 +2.35700000,-3.36881114,-8.36096438,8.33729262,-3.34166221,-8.35801098,-0.56320958,-1.39350326,1.39452128,0.37911431,2.98689163,-4.16224322 +2.35800000,-3.37716385,-8.35271386,8.35819158,-3.35001609,-8.34975545,-0.56460171,-1.39212819,1.39801697,0.37926359,2.98690746,-4.15815807 +2.35900000,-3.38550830,-8.34444273,8.37906992,-3.35836171,-8.34147932,-0.56599246,-1.39074969,1.40150922,0.37941317,2.98692331,-4.15406266 +2.36000000,-3.39384445,-8.33615101,8.39992758,-3.36669905,-8.33318261,-0.56738183,-1.38936775,1.40499801,0.37956304,2.98693920,-4.14995700 +2.36100000,-3.40217229,-8.32783872,8.42076452,-3.37502807,-8.32486534,-0.56876981,-1.38798239,1.40848333,0.37971322,2.98695512,-4.14584111 +2.36200000,-3.41049179,-8.31950588,8.44158068,-3.38334877,-8.31652752,-0.57015640,-1.38659360,1.41196518,0.37986369,2.98697107,-4.14171498 +2.36300000,-3.41880294,-8.31115252,8.46237602,-3.39166112,-8.30816919,-0.57154160,-1.38520139,1.41544354,0.38001445,2.98698706,-4.13757864 +2.36400000,-3.42710572,-8.30277865,8.48315047,-3.39996510,-8.29979035,-0.57292541,-1.38380577,1.41891841,0.38016551,2.98700307,-4.13343208 +2.36500000,-3.43540011,-8.29438429,8.50390399,-3.40826069,-8.29139104,-0.57430782,-1.38240673,1.42238978,0.38031687,2.98701912,-4.12927533 +2.36600000,-3.44368608,-8.28596947,8.52463653,-3.41654788,-8.28297127,-0.57568882,-1.38100428,1.42585764,0.38046853,2.98703520,-4.12510839 +2.36700000,-3.45196361,-8.27753420,8.54534804,-3.42482663,-8.27453106,-0.57706842,-1.37959842,1.42932198,0.38062047,2.98705131,-4.12093126 +2.36800000,-3.46023269,-8.26907851,8.56603847,-3.43309693,-8.26607043,-0.57844661,-1.37818915,1.43278280,0.38077272,2.98706746,-4.11674397 +2.36900000,-3.46849329,-8.26060242,8.58670775,-3.44135876,-8.25758941,-0.57982339,-1.37677649,1.43624008,0.38092525,2.98708364,-4.11254652 +2.37000000,-3.47674540,-8.25210594,8.60735586,-3.44961210,-8.24908801,-0.58119875,-1.37536043,1.43969381,0.38107808,2.98709984,-4.10833892 +2.37100000,-3.48498899,-8.24358910,8.62798272,-3.45785693,-8.24056626,-0.58257269,-1.37394097,1.44314400,0.38123121,2.98711608,-4.10412118 +2.37200000,-3.49322404,-8.23505192,8.64858830,-3.46609323,-8.23202418,-0.58394520,-1.37251813,1.44659062,0.38138463,2.98713236,-4.09989332 +2.37300000,-3.50145053,-8.22649443,8.66917254,-3.47432097,-8.22346178,-0.58531630,-1.37109190,1.45003368,0.38153834,2.98714866,-4.09565533 +2.37400000,-3.50966845,-8.21791663,8.68973539,-3.48254015,-8.21487910,-0.58668596,-1.36966229,1.45347315,0.38169234,2.98716500,-4.09140723 +2.37500000,-3.51787777,-8.20931856,8.71027679,-3.49075073,-8.20627614,-0.58805419,-1.36822929,1.45690904,0.38184663,2.98718136,-4.08714904 +2.37600000,-3.52607847,-8.20070024,8.73079671,-3.49895269,-8.19765294,-0.58942098,-1.36679292,1.46034134,0.38200122,2.98719776,-4.08288076 +2.37700000,-3.53427053,-8.19206167,8.75129509,-3.50714602,-8.18900951,-0.59078633,-1.36535318,1.46377003,0.38215610,2.98721419,-4.07860240 +2.37800000,-3.54245393,-8.18340290,8.77177187,-3.51533070,-8.18034588,-0.59215024,-1.36391007,1.46719511,0.38231126,2.98723065,-4.07431397 +2.37900000,-3.55062866,-8.17472394,8.79222701,-3.52350671,-8.17166206,-0.59351271,-1.36246359,1.47061657,0.38246672,2.98724715,-4.07001549 +2.38000000,-3.55879468,-8.16602480,8.81266046,-3.53167402,-8.16295808,-0.59487372,-1.36101376,1.47403441,0.38262247,2.98726367,-4.06570695 +2.38100000,-3.56695199,-8.15730551,8.83307216,-3.53983262,-8.15423395,-0.59623328,-1.35956056,1.47744860,0.38277851,2.98728023,-4.06138838 +2.38200000,-3.57510055,-8.14856610,8.85346207,-3.54798248,-8.14548971,-0.59759139,-1.35810401,1.48085915,0.38293484,2.98729682,-4.05705979 +2.38300000,-3.58324036,-8.13980658,8.87383013,-3.55612359,-8.13672537,-0.59894803,-1.35664411,1.48426605,0.38309145,2.98731343,-4.05272117 +2.38400000,-3.59137139,-8.13102698,8.89417630,-3.56425593,-8.12794095,-0.60030321,-1.35518086,1.48766928,0.38324836,2.98733008,-4.04837256 +2.38500000,-3.59949361,-8.12222732,8.91450053,-3.57237947,-8.11913648,-0.60165693,-1.35371427,1.49106885,0.38340555,2.98734677,-4.04401394 +2.38600000,-3.60760702,-8.11340761,8.93480276,-3.58049419,-8.11031197,-0.60300917,-1.35224434,1.49446473,0.38356303,2.98736348,-4.03964534 +2.38700000,-3.61571159,-8.10456789,8.95508295,-3.58860008,-8.10146745,-0.60435994,-1.35077107,1.49785693,0.38372080,2.98738022,-4.03526677 +2.38800000,-3.62380730,-8.09570817,8.97534104,-3.59669712,-8.09260295,-0.60570924,-1.34929446,1.50124543,0.38387886,2.98739700,-4.03087823 +2.38900000,-3.63189413,-8.08682847,8.99557698,-3.60478528,-8.08371847,-0.60705705,-1.34781453,1.50463023,0.38403720,2.98741380,-4.02647974 +2.39000000,-3.63997206,-8.07792882,9.01579073,-3.61286455,-8.07481405,-0.60840338,-1.34633128,1.50801131,0.38419583,2.98743064,-4.02207131 +2.39100000,-3.64804106,-8.06900924,9.03598224,-3.62093490,-8.06588971,-0.60974823,-1.34484470,1.51138868,0.38435474,2.98744751,-4.01765294 +2.39200000,-3.65610113,-8.06006975,9.05615145,-3.62899632,-8.05694546,-0.61109158,-1.34335480,1.51476231,0.38451394,2.98746441,-4.01322466 +2.39300000,-3.66415224,-8.05111038,9.07629832,-3.63704879,-8.04798134,-0.61243344,-1.34186159,1.51813221,0.38467343,2.98748134,-4.00878646 +2.39400000,-3.67219438,-8.04213113,9.09642279,-3.64509228,-8.03899735,-0.61377381,-1.34036507,1.52149837,0.38483320,2.98749830,-4.00433836 +2.39500000,-3.68022751,-8.03313205,9.11652482,-3.65312678,-8.02999353,-0.61511267,-1.33886524,1.52486076,0.38499325,2.98751529,-3.99988037 +2.39600000,-3.68825162,-8.02411314,9.13660435,-3.66115226,-8.02096990,-0.61645003,-1.33736210,1.52821940,0.38515359,2.98753231,-3.99541250 +2.39700000,-3.69626670,-8.01507443,9.15666135,-3.66916871,-8.01192648,-0.61778589,-1.33585567,1.53157427,0.38531421,2.98754937,-3.99093477 +2.39800000,-3.70427271,-8.00601595,9.17669575,-3.67717611,-8.00286329,-0.61912024,-1.33434594,1.53492535,0.38547511,2.98756645,-3.98644717 +2.39900000,-3.71226965,-7.99693772,9.19670750,-3.68517443,-7.99378035,-0.62045307,-1.33283292,1.53827265,0.38563630,2.98758357,-3.98194973 +2.40000000,-3.72025749,-7.98783975,9.21669657,-3.69316366,-7.98467769,-0.62178439,-1.33131661,1.54161616,0.38579777,2.98760071,-3.97744246 +2.40100000,-3.72823621,-7.97872207,9.23666290,-3.70114378,-7.97555533,-0.62311418,-1.32979702,1.54495586,0.38595952,2.98761789,-3.97292535 +2.40200000,-3.73620580,-7.96958471,9.25660643,-3.70911477,-7.96641328,-0.62444246,-1.32827414,1.54829174,0.38612155,2.98763510,-3.96839844 +2.40300000,-3.74416622,-7.96042768,9.27652713,-3.71707660,-7.95725159,-0.62576920,-1.32674799,1.55162381,0.38628386,2.98765233,-3.96386172 +2.40400000,-3.75211747,-7.95125101,9.29642494,-3.72502926,-7.94807025,-0.62709442,-1.32521856,1.55495205,0.38644646,2.98766960,-3.95931520 +2.40500000,-3.76005953,-7.94205473,9.31629982,-3.73297273,-7.93886931,-0.62841811,-1.32368586,1.55827646,0.38660933,2.98768690,-3.95475891 +2.40600000,-3.76799237,-7.93283884,9.33615170,-3.74090699,-7.92964878,-0.62974026,-1.32214990,1.56159702,0.38677249,2.98770423,-3.95019285 +2.40700000,-3.77591597,-7.92360339,9.35598055,-3.74883202,-7.92040868,-0.63106087,-1.32061067,1.56491372,0.38693592,2.98772159,-3.94561702 +2.40800000,-3.78383032,-7.91434838,9.37578632,-3.75674780,-7.91114904,-0.63237994,-1.31906819,1.56822657,0.38709963,2.98773897,-3.94103145 +2.40900000,-3.79173539,-7.90507384,9.39556895,-3.76465432,-7.90186988,-0.63369746,-1.31752245,1.57153554,0.38726362,2.98775639,-3.93643613 +2.41000000,-3.79963117,-7.89577980,9.41532841,-3.77255154,-7.89257122,-0.63501343,-1.31597346,1.57484064,0.38742789,2.98777384,-3.93183109 +2.41100000,-3.80751764,-7.88646628,9.43506463,-3.78043945,-7.88325309,-0.63632786,-1.31442123,1.57814185,0.38759244,2.98779132,-3.92721634 +2.41200000,-3.81539477,-7.87713330,9.45477757,-3.78831804,-7.87391551,-0.63764072,-1.31286575,1.58143917,0.38775727,2.98780883,-3.92259188 +2.41300000,-3.82326255,-7.86778088,9.47446718,-3.79618728,-7.86455850,-0.63895203,-1.31130703,1.58473259,0.38792237,2.98782637,-3.91795773 +2.41400000,-3.83112096,-7.85840905,9.49413342,-3.80404715,-7.85518209,-0.64026177,-1.30974508,1.58802209,0.38808775,2.98784394,-3.91331389 +2.41500000,-3.83896998,-7.84901783,9.51377624,-3.81189763,-7.84578629,-0.64156995,-1.30817989,1.59130768,0.38825340,2.98786154,-3.90866038 +2.41600000,-3.84680959,-7.83960725,9.53339558,-3.81973871,-7.83637113,-0.64287656,-1.30661148,1.59458934,0.38841933,2.98787917,-3.90399722 +2.41700000,-3.85463977,-7.83017732,9.55299139,-3.82757037,-7.82693664,-0.64418160,-1.30503984,1.59786707,0.38858554,2.98789683,-3.89932440 +2.41800000,-3.86246049,-7.82072807,9.57256364,-3.83539258,-7.81748284,-0.64548507,-1.30346498,1.60114086,0.38875202,2.98791452,-3.89464195 +2.41900000,-3.87027175,-7.81125952,9.59211227,-3.84320533,-7.80800975,-0.64678696,-1.30188691,1.60441069,0.38891878,2.98793224,-3.88994987 +2.42000000,-3.87807352,-7.80177170,9.61163723,-3.85100859,-7.79851739,-0.64808726,-1.30030562,1.60767657,0.38908581,2.98794999,-3.88524817 +2.42100000,-3.88586579,-7.79226463,9.63113848,-3.85880236,-7.78900579,-0.64938598,-1.29872113,1.61093848,0.38925311,2.98796777,-3.88053687 +2.42200000,-3.89364853,-7.78273833,9.65061596,-3.86658660,-7.77947497,-0.65068312,-1.29713343,1.61419641,0.38942069,2.98798558,-3.87581598 +2.42300000,-3.90142172,-7.77319283,9.67006964,-3.87436130,-7.76992496,-0.65197866,-1.29554253,1.61745036,0.38958854,2.98800342,-3.87108550 +2.42400000,-3.90918535,-7.76362815,9.68949945,-3.88212644,-7.76035577,-0.65327261,-1.29394843,1.62070033,0.38975666,2.98802128,-3.86634546 +2.42500000,-3.91693939,-7.75404432,9.70890536,-3.88988201,-7.75076744,-0.65456496,-1.29235114,1.62394629,0.38992506,2.98803918,-3.86159586 +2.42600000,-3.92468383,-7.74444135,9.72828731,-3.89762797,-7.74115998,-0.65585571,-1.29075067,1.62718824,0.39009373,2.98805711,-3.85683671 +2.42700000,-3.93241865,-7.73481927,9.74764526,-3.90536432,-7.73153342,-0.65714486,-1.28914700,1.63042619,0.39026266,2.98807507,-3.85206802 +2.42800000,-3.94014383,-7.72517811,9.76697916,-3.91309103,-7.72188779,-0.65843240,-1.28754016,1.63366010,0.39043187,2.98809305,-3.84728981 +2.42900000,-3.94785935,-7.71551789,9.78628896,-3.92080809,-7.71222310,-0.65971833,-1.28593014,1.63688999,0.39060135,2.98811107,-3.84250209 +2.43000000,-3.95556519,-7.70583863,9.80557462,-3.92851547,-7.70253938,-0.66100264,-1.28431695,1.64011584,0.39077110,2.98812911,-3.83770486 +2.43100000,-3.96326133,-7.69614036,9.82483608,-3.93621316,-7.69283666,-0.66228534,-1.28270059,1.64333764,0.39094112,2.98814719,-3.83289815 +2.43200000,-3.97094775,-7.68642310,9.84407330,-3.94390114,-7.68311496,-0.66356643,-1.28108106,1.64655539,0.39111141,2.98816529,-3.82808196 +2.43300000,-3.97862444,-7.67668687,9.86328623,-3.95157938,-7.67337430,-0.66484588,-1.27945837,1.64976908,0.39128197,2.98818342,-3.82325630 +2.43400000,-3.98629137,-7.66693170,9.88247483,-3.95924788,-7.66361470,-0.66612372,-1.27783253,1.65297869,0.39145279,2.98820158,-3.81842118 +2.43500000,-3.99394853,-7.65715761,9.90163904,-3.96690661,-7.65383620,-0.66739992,-1.27620353,1.65618423,0.39162389,2.98821977,-3.81357663 +2.43600000,-4.00159589,-7.64736463,9.92077882,-3.97455555,-7.64403881,-0.66867449,-1.27457139,1.65938568,0.39179525,2.98823799,-3.80872264 +2.43700000,-4.00923344,-7.63755278,9.93989413,-3.98219468,-7.63422256,-0.66994743,-1.27293609,1.66258303,0.39196688,2.98825624,-3.80385923 +2.43800000,-4.01686117,-7.62772209,9.95898491,-3.98982399,-7.62438748,-0.67121872,-1.27129766,1.66577629,0.39213877,2.98827452,-3.79898641 +2.43900000,-4.02447904,-7.61787258,9.97805112,-3.99744345,-7.61453358,-0.67248838,-1.26965609,1.66896543,0.39231093,2.98829283,-3.79410419 +2.44000000,-4.03208704,-7.60800427,9.99709271,-4.00505305,-7.60466089,-0.67375639,-1.26801139,1.67215045,0.39248336,2.98831116,-3.78921259 +2.44100000,-4.03968516,-7.59811718,10.01610963,-4.01265276,-7.59476944,-0.67502276,-1.26636356,1.67533135,0.39265605,2.98832952,-3.78431162 +2.44200000,-4.04727337,-7.58821135,10.03510184,-4.02024258,-7.58485925,-0.67628747,-1.26471261,1.67850812,0.39282901,2.98834792,-3.77940129 +2.44300000,-4.05485166,-7.57828680,10.05406929,-4.02782248,-7.57493035,-0.67755053,-1.26305853,1.68168075,0.39300223,2.98836634,-3.77448160 +2.44400000,-4.06242000,-7.56834355,10.07301194,-4.03539243,-7.56498275,-0.67881193,-1.26140134,1.68484922,0.39317572,2.98838479,-3.76955258 +2.44500000,-4.06997838,-7.55838162,10.09192973,-4.04295244,-7.55501649,-0.68007167,-1.25974104,1.68801354,0.39334947,2.98840327,-3.76461423 +2.44600000,-4.07752679,-7.54840105,10.11082262,-4.05050246,-7.54503159,-0.68132975,-1.25807762,1.69117369,0.39352348,2.98842178,-3.75966657 +2.44700000,-4.08506519,-7.53840185,10.12969056,-4.05804249,-7.53502807,-0.68258616,-1.25641111,1.69432967,0.39369776,2.98844031,-3.75470960 +2.44800000,-4.09259357,-7.52838405,10.14853351,-4.06557251,-7.52500596,-0.68384090,-1.25474149,1.69748147,0.39387230,2.98845888,-3.74974334 +2.44900000,-4.10011192,-7.51834767,10.16735143,-4.07309250,-7.51496528,-0.68509397,-1.25306878,1.70062909,0.39404710,2.98847747,-3.74476781 +2.45000000,-4.10762021,-7.50829275,10.18614425,-4.08060244,-7.50490606,-0.68634536,-1.25139297,1.70377250,0.39422216,2.98849609,-3.73978301 +2.45100000,-4.11511843,-7.49821929,10.20491194,-4.08810230,-7.49482833,-0.68759508,-1.24971408,1.70691172,0.39439748,2.98851474,-3.73478895 +2.45200000,-4.12260656,-7.48812734,10.22365446,-4.09559209,-7.48473210,-0.68884311,-1.24803210,1.71004672,0.39457307,2.98853342,-3.72978566 +2.45300000,-4.13008458,-7.47801691,10.24237175,-4.10307176,-7.47461740,-0.69008945,-1.24634705,1.71317750,0.39474891,2.98855213,-3.72477313 +2.45400000,-4.13755246,-7.46788803,10.26106377,-4.11054131,-7.46448426,-0.69133411,-1.24465892,1.71630405,0.39492502,2.98857086,-3.71975138 +2.45500000,-4.14501020,-7.45774072,10.27973047,-4.11800072,-7.45433270,-0.69257708,-1.24296772,1.71942637,0.39510138,2.98858963,-3.71472043 +2.45600000,-4.15245778,-7.44757501,10.29837180,-4.12544997,-7.44416275,-0.69381835,-1.24127345,1.72254445,0.39527800,2.98860842,-3.70968028 +2.45700000,-4.15989517,-7.43739093,10.31698773,-4.13288904,-7.43397443,-0.69505793,-1.23957612,1.72565828,0.39545489,2.98862724,-3.70463095 +2.45800000,-4.16732236,-7.42718849,10.33557821,-4.14031792,-7.42376777,-0.69629581,-1.23787573,1.72876785,0.39563203,2.98864609,-3.69957245 +2.45900000,-4.17473933,-7.41696773,10.35414318,-4.14773657,-7.41354279,-0.69753198,-1.23617228,1.73187316,0.39580942,2.98866496,-3.69450479 +2.46000000,-4.18214605,-7.40672867,10.37268260,-4.15514500,-7.40329951,-0.69876644,-1.23446579,1.73497419,0.39598708,2.98868387,-3.68942799 +2.46100000,-4.18954253,-7.39647133,10.39119643,-4.16254317,-7.39303798,-0.69999920,-1.23275625,1.73807094,0.39616499,2.98870280,-3.68434206 +2.46200000,-4.19692872,-7.38619575,10.40968463,-4.16993107,-7.38275820,-0.70123024,-1.23104367,1.74116340,0.39634316,2.98872176,-3.67924700 +2.46300000,-4.20430462,-7.37590194,10.42814714,-4.17730868,-7.37246020,-0.70245957,-1.22932805,1.74425157,0.39652158,2.98874074,-3.67414283 +2.46400000,-4.21167021,-7.36558992,10.44658392,-4.18467598,-7.36214401,-0.70368718,-1.22760940,1.74733543,0.39670026,2.98875976,-3.66902957 +2.46500000,-4.21902547,-7.35525974,10.46499492,-4.19203296,-7.35180966,-0.70491307,-1.22588772,1.75041498,0.39687919,2.98877880,-3.66390722 +2.46600000,-4.22637038,-7.34491141,10.48338011,-4.19937959,-7.34145717,-0.70613723,-1.22416301,1.75349021,0.39705838,2.98879787,-3.65877580 +2.46700000,-4.23370493,-7.33454495,10.50173942,-4.20671587,-7.33108656,-0.70735967,-1.22243528,1.75656112,0.39723782,2.98881697,-3.65363532 +2.46800000,-4.24102909,-7.32416040,10.52007283,-4.21404176,-7.32069786,-0.70858037,-1.22070454,1.75962769,0.39741752,2.98883610,-3.64848579 +2.46900000,-4.24834285,-7.31375777,10.53838028,-4.22135726,-7.31029111,-0.70979934,-1.21897079,1.76268992,0.39759747,2.98885525,-3.64332723 +2.47000000,-4.25564619,-7.30333710,10.55666173,-4.22866234,-7.29986631,-0.71101658,-1.21723402,1.76574781,0.39777767,2.98887443,-3.63815965 +2.47100000,-4.26293908,-7.29289841,10.57491713,-4.23595698,-7.28942350,-0.71223207,-1.21549426,1.76880133,0.39795813,2.98889364,-3.63298305 +2.47200000,-4.27022153,-7.28244172,10.59314645,-4.24324118,-7.27896271,-0.71344582,-1.21375149,1.77185049,0.39813883,2.98891287,-3.62779746 +2.47300000,-4.27749349,-7.27196707,10.61134962,-4.25051490,-7.26848396,-0.71465783,-1.21200573,1.77489528,0.39831979,2.98893214,-3.62260289 +2.47400000,-4.28475497,-7.26147447,10.62952661,-4.25777814,-7.25798727,-0.71586809,-1.21025698,1.77793569,0.39850100,2.98895143,-3.61739934 +2.47500000,-4.29200593,-7.25096396,10.64767738,-4.26503087,-7.24747267,-0.71707659,-1.20850525,1.78097171,0.39868246,2.98897074,-3.61218683 +2.47600000,-4.29924637,-7.24043555,10.66580187,-4.27227308,-7.23694019,-0.71828334,-1.20675053,1.78400334,0.39886417,2.98899009,-3.60696537 +2.47700000,-4.30647626,-7.22988928,10.68390005,-4.27950475,-7.22638986,-0.71948833,-1.20499283,1.78703057,0.39904613,2.98900946,-3.60173498 +2.47800000,-4.31369558,-7.21932517,10.70197187,-4.28672585,-7.21582169,-0.72069157,-1.20323216,1.79005339,0.39922834,2.98902886,-3.59649566 +2.47900000,-4.32090432,-7.20874325,10.72001728,-4.29393638,-7.20523572,-0.72189303,-1.20146853,1.79307179,0.39941080,2.98904829,-3.59124744 +2.48000000,-4.32810247,-7.19814354,10.73803625,-4.30113632,-7.19463197,-0.72309274,-1.19970192,1.79608577,0.39959350,2.98906774,-3.58599031 +2.48100000,-4.33528999,-7.18752607,10.75602871,-4.30832564,-7.18401047,-0.72429067,-1.19793236,1.79909531,0.39977646,2.98908722,-3.58072431 +2.48200000,-4.34246688,-7.17689087,10.77399464,-4.31550433,-7.17337125,-0.72548683,-1.19615984,1.80210042,0.39995966,2.98910673,-3.57544943 +2.48300000,-4.34963312,-7.16623796,10.79193399,-4.32267238,-7.16271432,-0.72668121,-1.19438437,1.80510108,0.40014311,2.98912626,-3.57016569 +2.48400000,-4.35678869,-7.15556736,10.80984671,-4.32982976,-7.15203972,-0.72787382,-1.19260596,1.80809729,0.40032680,2.98914582,-3.56487311 +2.48500000,-4.36393357,-7.14487911,10.82773276,-4.33697645,-7.14134748,-0.72906464,-1.19082460,1.81108903,0.40051074,2.98916541,-3.55957169 +2.48600000,-4.37106774,-7.13417323,10.84559209,-4.34411244,-7.13063761,-0.73025368,-1.18904030,1.81407631,0.40069493,2.98918502,-3.55426145 +2.48700000,-4.37819119,-7.12344975,10.86342467,-4.35123772,-7.11991015,-0.73144094,-1.18725307,1.81705911,0.40087936,2.98920466,-3.54894240 +2.48800000,-4.38530390,-7.11270869,10.88123043,-4.35835226,-7.10916512,-0.73262640,-1.18546291,1.82003743,0.40106404,2.98922433,-3.54361456 +2.48900000,-4.39240585,-7.10195008,10.89900936,-4.36545604,-7.09840255,-0.73381007,-1.18366982,1.82301125,0.40124896,2.98924402,-3.53827794 +2.49000000,-4.39949702,-7.09117395,10.91676139,-4.37254906,-7.08762247,-0.73499194,-1.18187381,1.82598058,0.40143413,2.98926374,-3.53293254 +2.49100000,-4.40657740,-7.08038032,10.93448648,-4.37963128,-7.07682490,-0.73617202,-1.18007489,1.82894541,0.40161953,2.98928349,-3.52757839 +2.49200000,-4.41364697,-7.06956922,10.95218460,-4.38670270,-7.06600986,-0.73735029,-1.17827306,1.83190572,0.40180519,2.98930327,-3.52221550 +2.49300000,-4.42070571,-7.05874068,10.96985569,-4.39376330,-7.05517740,-0.73852676,-1.17646832,1.83486151,0.40199108,2.98932307,-3.51684387 +2.49400000,-4.42775361,-7.04789472,10.98749972,-4.40081305,-7.04432752,-0.73970142,-1.17466067,1.83781277,0.40217721,2.98934289,-3.51146353 +2.49500000,-4.43479064,-7.03703137,11.00511664,-4.40785195,-7.03346026,-0.74087427,-1.17285013,1.84075950,0.40236359,2.98936274,-3.50607448 +2.49600000,-4.44181679,-7.02615066,11.02270640,-4.41487997,-7.02257565,-0.74204531,-1.17103669,1.84370169,0.40255021,2.98938262,-3.50067674 +2.49700000,-4.44883204,-7.01525261,11.04026897,-4.42189709,-7.01167371,-0.74321453,-1.16922037,1.84663933,0.40273707,2.98940253,-3.49527032 +2.49800000,-4.45583638,-7.00433725,11.05780429,-4.42890331,-7.00075447,-0.74438193,-1.16740115,1.84957241,0.40292417,2.98942246,-3.48985523 +2.49900000,-4.46282979,-6.99340461,11.07531234,-4.43589860,-6.98981796,-0.74554751,-1.16557906,1.85250093,0.40311151,2.98944242,-3.48443149 +2.50000000,-4.46981224,-6.98245472,11.09279305,-4.44288294,-6.97886420,-0.74671126,-1.16375410,1.85542488,0.40329908,2.98946240,-3.47899911 +2.50100000,-4.47678373,-6.97148759,11.11024640,-4.44985632,-6.96789322,-0.74787319,-1.16192626,1.85834425,0.40348690,2.98948241,-3.47355811 +2.50200000,-4.48374423,-6.96050327,11.12767234,-4.45681872,-6.95690505,-0.74903328,-1.16009555,1.86125903,0.40367496,2.98950244,-3.46810849 +2.50300000,-4.49069373,-6.94950177,11.14507082,-4.46377012,-6.94589971,-0.75019155,-1.15826198,1.86416922,0.40386325,2.98952251,-3.46265026 +2.50400000,-4.49763222,-6.93848312,11.16244180,-4.47071051,-6.93487723,-0.75134797,-1.15642556,1.86707482,0.40405178,2.98954259,-3.45718346 +2.50500000,-4.50455966,-6.92744735,11.17978523,-4.47763987,-6.92383765,-0.75250256,-1.15458628,1.86997580,0.40424054,2.98956271,-3.45170807 +2.50600000,-4.51147606,-6.91639449,11.19710109,-4.48455818,-6.91278098,-0.75365530,-1.15274415,1.87287218,0.40442955,2.98958284,-3.44622413 +2.50700000,-4.51838138,-6.90532457,11.21438932,-4.49146543,-6.90170725,-0.75480620,-1.15089918,1.87576393,0.40461879,2.98960301,-3.44073164 +2.50800000,-4.52527562,-6.89423760,11.23164987,-4.49836159,-6.89061649,-0.75595525,-1.14905136,1.87865105,0.40480826,2.98962320,-3.43523061 +2.50900000,-4.53215875,-6.88313363,11.24888272,-4.50524666,-6.87950873,-0.75710245,-1.14720072,1.88153354,0.40499797,2.98964341,-3.42972107 +2.51000000,-4.53903077,-6.87201267,11.26608781,-4.51212060,-6.86838400,-0.75824780,-1.14534724,1.88441139,0.40518792,2.98966366,-3.42420301 +2.51100000,-4.54589164,-6.86087476,11.28326510,-4.51898342,-6.85724232,-0.75939129,-1.14349093,1.88728458,0.40537810,2.98968392,-3.41867646 +2.51200000,-4.55274136,-6.84971991,11.30041456,-4.52583508,-6.84608372,-0.76053292,-1.14163181,1.89015312,0.40556851,2.98970421,-3.41314143 +2.51300000,-4.55957991,-6.83854817,11.31753613,-4.53267558,-6.83490823,-0.76167269,-1.13976987,1.89301700,0.40575915,2.98972453,-3.40759793 +2.51400000,-4.56640727,-6.82735955,11.33462977,-4.53950489,-6.82371587,-0.76281060,-1.13790511,1.89587620,0.40595003,2.98974487,-3.40204597 +2.51500000,-4.57322342,-6.81615409,11.35169546,-4.54632301,-6.81250668,-0.76394664,-1.13603755,1.89873073,0.40614114,2.98976524,-3.39648558 +2.51600000,-4.58002836,-6.80493181,11.36873313,-4.55312990,-6.80128068,-0.76508080,-1.13416718,1.90158057,0.40633248,2.98978564,-3.39091675 +2.51700000,-4.58682205,-6.79369274,11.38574275,-4.55992556,-6.79003789,-0.76621310,-1.13229402,1.90442572,0.40652406,2.98980605,-3.38533951 +2.51800000,-4.59360448,-6.78243690,11.40272428,-4.56670997,-6.77877835,-0.76734352,-1.13041806,1.90726617,0.40671586,2.98982650,-3.37975387 +2.51900000,-4.60037565,-6.77116433,11.41967767,-4.57348311,-6.76750209,-0.76847205,-1.12853931,1.91010192,0.40690790,2.98984697,-3.37415985 +2.52000000,-4.60713552,-6.75987505,11.43660289,-4.58024497,-6.75620913,-0.76959871,-1.12665778,1.91293295,0.40710016,2.98986746,-3.36855744 +2.52100000,-4.61388409,-6.74856910,11.45349989,-4.58699552,-6.74489950,-0.77072349,-1.12477347,1.91575927,0.40729265,2.98988798,-3.36294668 +2.52200000,-4.62062134,-6.73724649,11.47036863,-4.59373476,-6.73357322,-0.77184637,-1.12288638,1.91858085,0.40748538,2.98990852,-3.35732757 +2.52300000,-4.62734725,-6.72590726,11.48720907,-4.60046267,-6.72223033,-0.77296737,-1.12099653,1.92139771,0.40767833,2.98992909,-3.35170013 +2.52400000,-4.63406180,-6.71455143,11.50402117,-4.60717922,-6.71087086,-0.77408647,-1.11910390,1.92420982,0.40787151,2.98994969,-3.34606437 +2.52500000,-4.64076498,-6.70317904,11.52080488,-4.61388440,-6.69949483,-0.77520368,-1.11720852,1.92701718,0.40806491,2.98997030,-3.34042030 +2.52600000,-4.64745677,-6.69179011,11.53756016,-4.62057820,-6.68810226,-0.77631899,-1.11531038,1.92981979,0.40825855,2.98999095,-3.33476794 +2.52700000,-4.65413715,-6.68038466,11.55428698,-4.62726060,-6.67669320,-0.77743240,-1.11340949,1.93261764,0.40845241,2.99001162,-3.32910729 +2.52800000,-4.66080612,-6.66896273,11.57098529,-4.63393158,-6.66526766,-0.77854391,-1.11150585,1.93541072,0.40864649,2.99003231,-3.32343839 +2.52900000,-4.66746364,-6.65752435,11.58765505,-4.64059113,-6.65382567,-0.77965351,-1.10959946,1.93819902,0.40884080,2.99005302,-3.31776123 +2.53000000,-4.67410971,-6.64606954,11.60429622,-4.64723923,-6.64236727,-0.78076120,-1.10769034,1.94098254,0.40903534,2.99007377,-3.31207583 +2.53100000,-4.68074431,-6.63459833,11.62090876,-4.65387586,-6.63089247,-0.78186697,-1.10577849,1.94376128,0.40923010,2.99009453,-3.30638221 +2.53200000,-4.68736742,-6.62311075,11.63749262,-4.66050101,-6.61940132,-0.78297084,-1.10386391,1.94653521,0.40942509,2.99011532,-3.30068038 +2.53300000,-4.69397902,-6.61160683,11.65404777,-4.66711466,-6.60789383,-0.78407279,-1.10194660,1.94930435,0.40962029,2.99013614,-3.29497035 +2.53400000,-4.70057911,-6.60008660,11.67057417,-4.67371679,-6.59637004,-0.78517281,-1.10002658,1.95206867,0.40981573,2.99015698,-3.28925214 +2.53500000,-4.70716766,-6.58855008,11.68707177,-4.68030739,-6.58482997,-0.78627092,-1.09810384,1.95482818,0.41001138,2.99017784,-3.28352576 +2.53600000,-4.71374466,-6.57699730,11.70354053,-4.68688644,-6.57327366,-0.78736709,-1.09617839,1.95758287,0.41020726,2.99019873,-3.27779122 +2.53700000,-4.72031009,-6.56542830,11.71998042,-4.69345393,-6.56170112,-0.78846134,-1.09425023,1.96033272,0.41040336,2.99021964,-3.27204854 +2.53800000,-4.72686393,-6.55384310,11.73639139,-4.70000984,-6.55011240,-0.78955366,-1.09231938,1.96307774,0.41059968,2.99024058,-3.26629774 +2.53900000,-4.73340617,-6.54224172,11.75277340,-4.70655415,-6.53850752,-0.79064405,-1.09038583,1.96581791,0.41079622,2.99026154,-3.26053882 +2.54000000,-4.73993680,-6.53062420,11.76912642,-4.71308685,-6.52688650,-0.79173250,-1.08844959,1.96855324,0.41099298,2.99028252,-3.25477180 +2.54100000,-4.74645579,-6.51899057,11.78545039,-4.71960792,-6.51524937,-0.79281901,-1.08651067,1.97128370,0.41118996,2.99030353,-3.24899669 +2.54200000,-4.75296313,-6.50734086,11.80174529,-4.72611734,-6.50359617,-0.79390358,-1.08456906,1.97400931,0.41138716,2.99032456,-3.24321351 +2.54300000,-4.75945880,-6.49567509,11.81801106,-4.73261511,-6.49192693,-0.79498620,-1.08262478,1.97673004,0.41158458,2.99034562,-3.23742228 +2.54400000,-4.76594280,-6.48399329,11.83424768,-4.73910119,-6.48024166,-0.79606688,-1.08067783,1.97944589,0.41178221,2.99036670,-3.23162300 +2.54500000,-4.77241509,-6.47229549,11.85045510,-4.74557559,-6.46854041,-0.79714561,-1.07872821,1.98215686,0.41198007,2.99038780,-3.22581568 +2.54600000,-4.77887567,-6.46058172,11.86663328,-4.75203827,-6.45682320,-0.79822239,-1.07677593,1.98486294,0.41217814,2.99040893,-3.22000036 +2.54700000,-4.78532453,-6.44885201,11.88278218,-4.75848923,-6.44509005,-0.79929721,-1.07482099,1.98756413,0.41237643,2.99043008,-3.21417703 +2.54800000,-4.79176163,-6.43710639,11.89890176,-4.76492844,-6.43334100,-0.80037007,-1.07286340,1.99026041,0.41257493,2.99045125,-3.20834571 +2.54900000,-4.79818698,-6.42534489,11.91499198,-4.77135590,-6.42157608,-0.80144097,-1.07090317,1.99295177,0.41277365,2.99047245,-3.20250642 +2.55000000,-4.80460054,-6.41356753,11.93105280,-4.77777159,-6.40979532,-0.80250991,-1.06894029,1.99563822,0.41297259,2.99049367,-3.19665917 +2.55100000,-4.81100232,-6.40177435,11.94708419,-4.78417549,-6.39799873,-0.80357689,-1.06697477,1.99831975,0.41317174,2.99051492,-3.19080397 +2.55200000,-4.81739228,-6.38996537,11.96308609,-4.79056758,-6.38618637,-0.80464190,-1.06500662,2.00099635,0.41337111,2.99053619,-3.18494084 +2.55300000,-4.82377042,-6.37814063,11.97905848,-4.79694786,-6.37435824,-0.80570493,-1.06303584,2.00366801,0.41357069,2.99055748,-3.17906980 +2.55400000,-4.83013672,-6.36630015,11.99500132,-4.80331629,-6.36251439,-0.80676599,-1.06106244,2.00633472,0.41377048,2.99057879,-3.17319085 +2.55500000,-4.83649117,-6.35444396,12.01091455,-4.80967288,-6.35065483,-0.80782508,-1.05908643,2.00899649,0.41397049,2.99060013,-3.16730401 +2.55600000,-4.84283374,-6.34257209,12.02679815,-4.81601760,-6.33877961,-0.80888219,-1.05710780,2.01165329,0.41417070,2.99062149,-3.16140929 +2.55700000,-4.84916443,-6.33068457,12.04265208,-4.82235043,-6.32688875,-0.80993731,-1.05512656,2.01430514,0.41437113,2.99064288,-3.15550672 +2.55800000,-4.85548321,-6.31878143,12.05847629,-4.82867137,-6.31498228,-0.81099046,-1.05314271,2.01695201,0.41457178,2.99066429,-3.14959630 +2.55900000,-4.86179007,-6.30686270,12.07427075,-4.83498039,-6.30306022,-0.81204161,-1.05115627,2.01959391,0.41477263,2.99068572,-3.14367805 +2.56000000,-4.86808500,-6.29492841,12.09003542,-4.84127749,-6.29112261,-0.81309078,-1.04916724,2.02223083,0.41497369,2.99070717,-3.13775198 +2.56100000,-4.87436798,-6.28297858,12.10577026,-4.84756263,-6.27916948,-0.81413796,-1.04717561,2.02486275,0.41517496,2.99072865,-3.13181810 +2.56200000,-4.88063899,-6.27101326,12.12147523,-4.85383582,-6.26720086,-0.81518314,-1.04518140,2.02748968,0.41537645,2.99075015,-3.12587644 +2.56300000,-4.88689802,-6.25903246,12.13715029,-4.86009703,-6.25521677,-0.81622632,-1.04318462,2.03011161,0.41557814,2.99077167,-3.11992700 +2.56400000,-4.89314506,-6.24703621,12.15279540,-4.86634625,-6.24321725,-0.81726751,-1.04118526,2.03272852,0.41578004,2.99079322,-3.11396980 +2.56500000,-4.89938008,-6.23502456,12.16841053,-4.87258346,-6.23120233,-0.81830669,-1.03918333,2.03534043,0.41598214,2.99081478,-3.10800486 +2.56600000,-4.90560308,-6.22299752,12.18399564,-4.87880865,-6.21917203,-0.81934387,-1.03717883,2.03794731,0.41618446,2.99083637,-3.10203218 +2.56700000,-4.91181404,-6.21095512,12.19955068,-4.88502180,-6.20712638,-0.82037904,-1.03517178,2.04054916,0.41638698,2.99085799,-3.09605179 +2.56800000,-4.91801293,-6.19889740,12.21507562,-4.89122290,-6.19506542,-0.82141220,-1.03316217,2.04314597,0.41658971,2.99087962,-3.09006369 +2.56900000,-4.92419976,-6.18682438,12.23057042,-4.89741192,-6.18298918,-0.82244335,-1.03115002,2.04573775,0.41679264,2.99090128,-3.08406791 +2.57000000,-4.93037449,-6.17473610,12.24603504,-4.90358887,-6.17089767,-0.82347249,-1.02913532,2.04832448,0.41699578,2.99092296,-3.07806445 +2.57100000,-4.93653713,-6.16263258,12.26146945,-4.90975371,-6.15879094,-0.82449961,-1.02711808,2.05090615,0.41719913,2.99094467,-3.07205333 +2.57200000,-4.94268764,-6.15051386,12.27687361,-4.91590645,-6.14666902,-0.82552471,-1.02509830,2.05348276,0.41740268,2.99096639,-3.06603457 +2.57300000,-4.94882602,-6.13837996,12.29224747,-4.92204705,-6.13453193,-0.82654778,-1.02307600,2.05605431,0.41760643,2.99098814,-3.06000818 +2.57400000,-4.95495225,-6.12623092,12.30759100,-4.92817550,-6.12237970,-0.82756883,-1.02105117,2.05862079,0.41781039,2.99100991,-3.05397417 +2.57500000,-4.96106632,-6.11406676,12.32290417,-4.93429180,-6.11021237,-0.82858786,-1.01902382,2.06118218,0.41801454,2.99103170,-3.04793256 +2.57600000,-4.96716820,-6.10188751,12.33818693,-4.94039592,-6.09802996,-0.82960485,-1.01699396,2.06373849,0.41821891,2.99105351,-3.04188337 +2.57700000,-4.97325790,-6.08969321,12.35343925,-4.94648786,-6.08583250,-0.83061981,-1.01496159,2.06628971,0.41842347,2.99107535,-3.03582660 +2.57800000,-4.97933538,-6.07748388,12.36866109,-4.95256758,-6.07362003,-0.83163274,-1.01292672,2.06883582,0.41862823,2.99109721,-3.02976228 +2.57900000,-4.98540064,-6.06525955,12.38385240,-4.95863509,-6.06139257,-0.83264363,-1.01088934,2.07137684,0.41883320,2.99111909,-3.02369041 +2.58000000,-4.99145366,-6.05302026,12.39901317,-4.96469036,-6.04915015,-0.83365248,-1.00884947,2.07391274,0.41903837,2.99114099,-3.01761102 +2.58100000,-4.99749443,-6.04076604,12.41414334,-4.97073339,-6.03689281,-0.83465928,-1.00680712,2.07644353,0.41924373,2.99116292,-3.01152411 +2.58200000,-5.00352292,-6.02849691,12.42924288,-4.97676414,-6.02462058,-0.83566405,-1.00476227,2.07896919,0.41944930,2.99118486,-3.00542970 +2.58300000,-5.00953914,-6.01621291,12.44431175,-4.98278262,-6.01233348,-0.83666676,-1.00271495,2.08148972,0.41965506,2.99120683,-2.99932781 +2.58400000,-5.01554305,-6.00391406,12.45934992,-4.98878881,-6.00003154,-0.83766743,-1.00066516,2.08400512,0.41986102,2.99122882,-2.99321846 +2.58500000,-5.02153465,-5.99160039,12.47435734,-4.99478268,-5.98771480,-0.83866604,-0.99861289,2.08651537,0.42006719,2.99125083,-2.98710164 +2.58600000,-5.02751392,-5.97927195,12.48933399,-5.00076423,-5.97538329,-0.83966260,-0.99655816,2.08902048,0.42027354,2.99127286,-2.98097739 +2.58700000,-5.03348085,-5.96692875,12.50427982,-5.00673344,-5.96303703,-0.84065710,-0.99450098,2.09152043,0.42048010,2.99129492,-2.97484572 +2.58800000,-5.03943542,-5.95457083,12.51919480,-5.01269030,-5.95067606,-0.84164954,-0.99244134,2.09401522,0.42068685,2.99131699,-2.96870663 +2.58900000,-5.04537762,-5.94219821,12.53407888,-5.01863479,-5.93830040,-0.84263992,-0.99037925,2.09650485,0.42089380,2.99133909,-2.96256015 +2.59000000,-5.05130743,-5.92981093,12.54893204,-5.02456690,-5.92591010,-0.84362823,-0.98831471,2.09898930,0.42110094,2.99136121,-2.95640629 +2.59100000,-5.05722484,-5.91740903,12.56375424,-5.03048661,-5.91350517,-0.84461448,-0.98624774,2.10146857,0.42130827,2.99138335,-2.95024506 +2.59200000,-5.06312983,-5.90499252,12.57854544,-5.03639390,-5.90108565,-0.84559866,-0.98417833,2.10394266,0.42151581,2.99140551,-2.94407649 +2.59300000,-5.06902240,-5.89256144,12.59330560,-5.04228877,-5.88865157,-0.84658077,-0.98210650,2.10641156,0.42172353,2.99142769,-2.93790058 +2.59400000,-5.07490251,-5.88011582,12.60803469,-5.04817120,-5.87620296,-0.84756080,-0.98003224,2.10887526,0.42193145,2.99144989,-2.93171735 +2.59500000,-5.08077017,-5.86765569,12.62273267,-5.05404117,-5.86373986,-0.84853875,-0.97795557,2.11133375,0.42213956,2.99147212,-2.92552681 +2.59600000,-5.08662535,-5.85518109,12.63739951,-5.05989868,-5.85126228,-0.84951463,-0.97587648,2.11378704,0.42234786,2.99149436,-2.91932898 +2.59700000,-5.09246804,-5.84269204,12.65203516,-5.06574369,-5.83877027,-0.85048843,-0.97379498,2.11623511,0.42255636,2.99151663,-2.91312388 +2.59800000,-5.09829823,-5.83018857,12.66663960,-5.07157621,-5.82626385,-0.85146014,-0.97171108,2.11867796,0.42276504,2.99153892,-2.90691152 +2.59900000,-5.10411590,-5.81767071,12.68121278,-5.07739622,-5.81374305,-0.85242976,-0.96962479,2.12111558,0.42297392,2.99156123,-2.90069191 +2.60000000,-5.10992104,-5.80513851,12.69575468,-5.08320369,-5.80120791,-0.85339730,-0.96753610,2.12354797,0.42318299,2.99158356,-2.89446508 +2.60100000,-5.11571363,-5.79259197,12.71026525,-5.08899863,-5.78865846,-0.85436274,-0.96544502,2.12597512,0.42339224,2.99160591,-2.88823102 +2.60200000,-5.12149366,-5.78003115,12.72474445,-5.09478100,-5.77609472,-0.85532609,-0.96335156,2.12839702,0.42360169,2.99162828,-2.88198977 +2.60300000,-5.12726112,-5.76745606,12.73919226,-5.10055081,-5.76351673,-0.85628735,-0.96125573,2.13081367,0.42381132,2.99165067,-2.87574133 +2.60400000,-5.13301598,-5.75486675,12.75360864,-5.10630803,-5.75092452,-0.85724651,-0.95915752,2.13322507,0.42402114,2.99167308,-2.86948573 +2.60500000,-5.13875825,-5.74226323,12.76799355,-5.11205266,-5.73831812,-0.85820356,-0.95705694,2.13563120,0.42423115,2.99169551,-2.86322297 +2.60600000,-5.14448789,-5.72964555,12.78234696,-5.11778466,-5.72569756,-0.85915852,-0.95495401,2.13803206,0.42444135,2.99171796,-2.85695306 +2.60700000,-5.15020491,-5.71701372,12.79666883,-5.12350405,-5.71306288,-0.86011137,-0.95284872,2.14042764,0.42465173,2.99174044,-2.85067604 +2.60800000,-5.15590927,-5.70436779,12.81095912,-5.12921079,-5.70041410,-0.86106211,-0.95074107,2.14281795,0.42486230,2.99176293,-2.84439190 +2.60900000,-5.16160098,-5.69170779,12.82521780,-5.13490487,-5.68775125,-0.86201074,-0.94863109,2.14520296,0.42507306,2.99178545,-2.83810067 +2.61000000,-5.16728002,-5.67903374,12.83944484,-5.14058628,-5.67507437,-0.86295726,-0.94651876,2.14758269,0.42528400,2.99180798,-2.83180237 +2.61100000,-5.17294636,-5.66634568,12.85364020,-5.14625501,-5.66238348,-0.86390166,-0.94440409,2.14995711,0.42549512,2.99183053,-2.82549700 +2.61200000,-5.17860001,-5.65364364,12.86780384,-5.15191105,-5.64967863,-0.86484395,-0.94228710,2.15232623,0.42570643,2.99185311,-2.81918458 +2.61300000,-5.18424093,-5.64092765,12.88193573,-5.15755437,-5.63695983,-0.86578412,-0.94016778,2.15469004,0.42591792,2.99187570,-2.81286513 +2.61400000,-5.18986913,-5.62819774,12.89603584,-5.16318496,-5.62422713,-0.86672216,-0.93804614,2.15704854,0.42612960,2.99189832,-2.80653866 +2.61500000,-5.19548458,-5.61545395,12.91010413,-5.16880282,-5.61148054,-0.86765809,-0.93592218,2.15940171,0.42634145,2.99192095,-2.80020519 +2.61600000,-5.20108728,-5.60269629,12.92414056,-5.17440792,-5.59872012,-0.86859188,-0.93379592,2.16174955,0.42655349,2.99194361,-2.79386473 +2.61700000,-5.20667721,-5.58992482,12.93814511,-5.18000025,-5.58594588,-0.86952355,-0.93166735,2.16409206,0.42676571,2.99196628,-2.78751730 +2.61800000,-5.21225435,-5.57713955,12.95211773,-5.18557980,-5.57315785,-0.87045309,-0.92953648,2.16642923,0.42697811,2.99198898,-2.78116291 +2.61900000,-5.21781869,-5.56434052,12.96605840,-5.19114656,-5.56035608,-0.87138049,-0.92740332,2.16876105,0.42719069,2.99201169,-2.77480159 +2.62000000,-5.22337021,-5.55152776,12.97996707,-5.19670051,-5.54754058,-0.87230576,-0.92526788,2.17108752,0.42740345,2.99203443,-2.76843334 +2.62100000,-5.22890891,-5.53870130,12.99384371,-5.20224164,-5.53471140,-0.87322889,-0.92313014,2.17340864,0.42761639,2.99205718,-2.76205817 +2.62200000,-5.23443478,-5.52586118,13.00768830,-5.20776993,-5.52186856,-0.87414988,-0.92099013,2.17572439,0.42782951,2.99207995,-2.75567612 +2.62300000,-5.23994778,-5.51300742,13.02150078,-5.21328537,-5.50901209,-0.87506872,-0.91884785,2.17803478,0.42804281,2.99210275,-2.74928718 +2.62400000,-5.24544792,-5.50014006,13.03528114,-5.21878795,-5.49614204,-0.87598543,-0.91670330,2.18033979,0.42825628,2.99212556,-2.74289139 +2.62500000,-5.25093518,-5.48725913,13.04902934,-5.22427765,-5.48325842,-0.87689998,-0.91455649,2.18263942,0.42846993,2.99214839,-2.73648874 +2.62600000,-5.25640955,-5.47436466,13.06274534,-5.22975446,-5.47036127,-0.87781239,-0.91240743,2.18493366,0.42868376,2.99217124,-2.73007926 +2.62700000,-5.26187100,-5.46145668,13.07642911,-5.23521837,-5.45745062,-0.87872265,-0.91025611,2.18722252,0.42889777,2.99219411,-2.72366297 +2.62800000,-5.26731954,-5.44853522,13.09008061,-5.24066936,-5.44452651,-0.87963075,-0.90810254,2.18950598,0.42911195,2.99221700,-2.71723987 +2.62900000,-5.27275514,-5.43560033,13.10369981,-5.24610742,-5.43158897,-0.88053670,-0.90594674,2.19178403,0.42932630,2.99223991,-2.71080999 +2.63000000,-5.27817779,-5.42265202,13.11728669,-5.25153253,-5.41863802,-0.88144049,-0.90378870,2.19405668,0.42954083,2.99226284,-2.70437333 +2.63100000,-5.28358748,-5.40969033,13.13084119,-5.25694469,-5.40567370,-0.88234211,-0.90162843,2.19632391,0.42975553,2.99228578,-2.69792993 +2.63200000,-5.28898420,-5.39671529,13.14436330,-5.26234388,-5.39269605,-0.88324158,-0.89946593,2.19858573,0.42997041,2.99230875,-2.69147978 +2.63300000,-5.29436792,-5.38372693,13.15785298,-5.26773008,-5.37970509,-0.88413888,-0.89730122,2.20084211,0.43018546,2.99233173,-2.68502291 +2.63400000,-5.29973865,-5.37072530,13.17131019,-5.27310328,-5.36670085,-0.88503402,-0.89513429,2.20309307,0.43040068,2.99235474,-2.67855933 +2.63500000,-5.30509636,-5.35771041,13.18473490,-5.27846347,-5.35368338,-0.88592698,-0.89296515,2.20533860,0.43061607,2.99237776,-2.67208906 +2.63600000,-5.31044104,-5.34468230,13.19812708,-5.28381064,-5.34065269,-0.88681777,-0.89079381,2.20757868,0.43083164,2.99240080,-2.66561212 +2.63700000,-5.31577268,-5.33164100,13.21148669,-5.28914478,-5.32760883,-0.88770639,-0.88862027,2.20981331,0.43104737,2.99242386,-2.65912851 +2.63800000,-5.32109127,-5.31858655,13.22481371,-5.29446586,-5.31455182,-0.88859284,-0.88644454,2.21204249,0.43126328,2.99244694,-2.65263826 +2.63900000,-5.32639679,-5.30551897,13.23810809,-5.29977387,-5.30148170,-0.88947711,-0.88426662,2.21426622,0.43147935,2.99247004,-2.64614138 +2.64000000,-5.33168923,-5.29243831,13.25136981,-5.30506882,-5.28839849,-0.89035919,-0.88208652,2.21648448,0.43169560,2.99249316,-2.63963789 +2.64100000,-5.33696857,-5.27934458,13.26459884,-5.31035067,-5.27530224,-0.89123910,-0.87990425,2.21869727,0.43191201,2.99251629,-2.63312779 +2.64200000,-5.34223481,-5.26623783,13.27779513,-5.31561942,-5.26219297,-0.89211682,-0.87771980,2.22090459,0.43212859,2.99253944,-2.62661112 +2.64300000,-5.34748793,-5.25311809,13.29095866,-5.32087505,-5.24907072,-0.89299235,-0.87553319,2.22310643,0.43234534,2.99256262,-2.62008788 +2.64400000,-5.35272791,-5.23998538,13.30408940,-5.32611755,-5.23593552,-0.89386569,-0.87334441,2.22530278,0.43256225,2.99258581,-2.61355809 +2.64500000,-5.35795475,-5.22683975,13.31718732,-5.33134692,-5.22278740,-0.89473685,-0.87115348,2.22749364,0.43277934,2.99260901,-2.60702177 +2.64600000,-5.36316843,-5.21368121,13.33025237,-5.33656312,-5.20962639,-0.89560581,-0.86896041,2.22967901,0.43299658,2.99263224,-2.60047893 +2.64700000,-5.36836894,-5.20050982,13.34328453,-5.34176616,-5.19645252,-0.89647257,-0.86676518,2.23185887,0.43321400,2.99265549,-2.59392958 +2.64800000,-5.37355627,-5.18732559,13.35628377,-5.34695602,-5.18326584,-0.89733714,-0.86456782,2.23403323,0.43343157,2.99267875,-2.58737375 +2.64900000,-5.37873040,-5.17412856,13.36925006,-5.35213269,-5.17006636,-0.89819951,-0.86236833,2.23620207,0.43364932,2.99270203,-2.58081145 +2.65000000,-5.38389132,-5.16091877,13.38218336,-5.35729615,-5.15685413,-0.89905968,-0.86016671,2.23836540,0.43386722,2.99272533,-2.57424269 +2.65100000,-5.38903901,-5.14769624,13.39508363,-5.36244640,-5.14362918,-0.89991764,-0.85796296,2.24052320,0.43408529,2.99274865,-2.56766749 +2.65200000,-5.39417347,-5.13446101,13.40795086,-5.36758341,-5.13039153,-0.90077340,-0.85575710,2.24267548,0.43430352,2.99277198,-2.56108587 +2.65300000,-5.39929469,-5.12121311,13.42078500,-5.37270717,-5.11714123,-0.90162695,-0.85354913,2.24482222,0.43452192,2.99279533,-2.55449785 +2.65400000,-5.40440264,-5.10795258,13.43358603,-5.37781769,-5.10387830,-0.90247828,-0.85133905,2.24696342,0.43474047,2.99281870,-2.54790343 +2.65500000,-5.40949732,-5.09467944,13.44635391,-5.38291493,-5.09060277,-0.90332741,-0.84912687,2.24909908,0.43495919,2.99284209,-2.54130264 +2.65600000,-5.41457871,-5.08139373,13.45908862,-5.38799889,-5.07731469,-0.90417432,-0.84691260,2.25122919,0.43517807,2.99286550,-2.53469549 +2.65700000,-5.41964681,-5.06809548,13.47179012,-5.39306955,-5.06401407,-0.90501902,-0.84469623,2.25335375,0.43539710,2.99288892,-2.52808199 +2.65800000,-5.42470159,-5.05478473,13.48445837,-5.39812691,-5.05070097,-0.90586150,-0.84247778,2.25547274,0.43561630,2.99291236,-2.52146217 +2.65900000,-5.42974305,-5.04146151,13.49709336,-5.40317095,-5.03737540,-0.90670176,-0.84025726,2.25758617,0.43583566,2.99293582,-2.51483604 +2.66000000,-5.43477118,-5.02812584,13.50969504,-5.40820166,-5.02403740,-0.90753979,-0.83803466,2.25969403,0.43605517,2.99295930,-2.50820361 +2.66100000,-5.43978596,-5.01477777,13.52226339,-5.41321902,-5.01068700,-0.90837560,-0.83580999,2.26179631,0.43627484,2.99298279,-2.50156491 +2.66200000,-5.44478738,-5.00141733,13.53479837,-5.41822303,-4.99732424,-0.90920918,-0.83358326,2.26389302,0.43649467,2.99300630,-2.49491994 +2.66300000,-5.44977542,-4.98804455,13.54729995,-5.42321366,-4.98394915,-0.91004054,-0.83135447,2.26598413,0.43671466,2.99302983,-2.48826873 +2.66400000,-5.45475008,-4.97465945,13.55976811,-5.42819092,-4.97056177,-0.91086966,-0.82912363,2.26806966,0.43693480,2.99305337,-2.48161128 +2.66500000,-5.45971134,-4.96126209,13.57220282,-5.43315478,-4.95716212,-0.91169655,-0.82689075,2.27014959,0.43715510,2.99307693,-2.47494762 +2.66600000,-5.46465919,-4.94785248,13.58460403,-5.43810524,-4.94375023,-0.91252121,-0.82465582,2.27222392,0.43737555,2.99310051,-2.46827777 +2.66700000,-5.46959362,-4.93443067,13.59697173,-5.44304228,-4.93032615,-0.91334363,-0.82241886,2.27429264,0.43759616,2.99312411,-2.46160173 +2.66800000,-5.47451462,-4.92099667,13.60930587,-5.44796589,-4.91688991,-0.91416381,-0.82017987,2.27635575,0.43781692,2.99314772,-2.45491952 +2.66900000,-5.47942217,-4.90755054,13.62160644,-5.45287606,-4.90344153,-0.91498175,-0.81793886,2.27841324,0.43803783,2.99317135,-2.44823117 +2.67000000,-5.48431626,-4.89409230,13.63387340,-5.45777277,-4.88998105,-0.91579744,-0.81569583,2.28046512,0.43825890,2.99319500,-2.44153669 +2.67100000,-5.48919689,-4.88062198,13.64610671,-5.46265601,-4.87650851,-0.91661089,-0.81345079,2.28251136,0.43848012,2.99321866,-2.43483608 +2.67200000,-5.49406403,-4.86713962,13.65830636,-5.46752578,-4.86302394,-0.91742210,-0.81120374,2.28455197,0.43870149,2.99324234,-2.42812938 +2.67300000,-5.49891767,-4.85364525,13.67047230,-5.47238206,-4.84952737,-0.91823105,-0.80895469,2.28658695,0.43892302,2.99326604,-2.42141659 +2.67400000,-5.50375781,-4.84013891,13.68260452,-5.47722483,-4.83601883,-0.91903775,-0.80670364,2.28861628,0.43914469,2.99328975,-2.41469774 +2.67500000,-5.50858443,-4.82662062,13.69470297,-5.48205409,-4.82249836,-0.91984220,-0.80445060,2.29063997,0.43936652,2.99331348,-2.40797283 +2.67600000,-5.51339752,-4.81309042,13.70676763,-5.48686983,-4.80896599,-0.92064440,-0.80219558,2.29265801,0.43958849,2.99333723,-2.40124189 +2.67700000,-5.51819707,-4.79954835,13.71879847,-5.49167202,-4.79542175,-0.92144434,-0.79993857,2.29467038,0.43981061,2.99336099,-2.39450493 +2.67800000,-5.52298306,-4.78599443,13.73079547,-5.49646066,-4.78186568,-0.92224202,-0.79767960,2.29667710,0.44003288,2.99338477,-2.38776196 +2.67900000,-5.52775549,-4.77242871,13.74275858,-5.50123575,-4.76829781,-0.92303744,-0.79541865,2.29867815,0.44025530,2.99340857,-2.38101302 +2.68000000,-5.53251434,-4.75885121,13.75468778,-5.50599726,-4.75471818,-0.92383059,-0.79315575,2.30067353,0.44047787,2.99343238,-2.37425810 +2.68100000,-5.53725961,-4.74526197,13.76658305,-5.51074518,-4.74112682,-0.92462148,-0.79089088,2.30266323,0.44070058,2.99345621,-2.36749722 +2.68200000,-5.54199127,-4.73166101,13.77844435,-5.51547951,-4.72752376,-0.92541011,-0.78862407,2.30464725,0.44092344,2.99348005,-2.36073041 +2.68300000,-5.54670931,-4.71804839,13.79027165,-5.52020022,-4.71390903,-0.92619646,-0.78635531,2.30662558,0.44114645,2.99350392,-2.35395769 +2.68400000,-5.55141374,-4.70442412,13.80206492,-5.52490732,-4.70028267,-0.92698055,-0.78408460,2.30859822,0.44136960,2.99352779,-2.34717905 +2.68500000,-5.55610453,-4.69078825,13.81382414,-5.52960079,-4.68664472,-0.92776236,-0.78181197,2.31056517,0.44159290,2.99355168,-2.34039453 +2.68600000,-5.56078167,-4.67714080,13.82554928,-5.53428061,-4.67299520,-0.92854190,-0.77953740,2.31252641,0.44181634,2.99357559,-2.33360414 +2.68700000,-5.56544515,-4.66348181,13.83724030,-5.53894677,-4.65933415,-0.92931916,-0.77726091,2.31448195,0.44203992,2.99359952,-2.32680789 +2.68800000,-5.57009496,-4.64981131,13.84889718,-5.54359927,-4.64566160,-0.93009414,-0.77498251,2.31643178,0.44226365,2.99362346,-2.32000581 +2.68900000,-5.57473109,-4.63612934,13.86051989,-5.54823809,-4.63197759,-0.93086684,-0.77270219,2.31837589,0.44248752,2.99364741,-2.31319790 +2.69000000,-5.57935353,-4.62243594,13.87210840,-5.55286322,-4.61828215,-0.93163726,-0.77041996,2.32031428,0.44271153,2.99367139,-2.30638419 +2.69100000,-5.58396226,-4.60873112,13.88366268,-5.55747465,-4.60457532,-0.93240540,-0.76813583,2.32224695,0.44293568,2.99369537,-2.29956469 +2.69200000,-5.58855727,-4.59501494,13.89518270,-5.56207237,-4.59085713,-0.93317125,-0.76584981,2.32417388,0.44315997,2.99371938,-2.29273942 +2.69300000,-5.59313856,-4.58128741,13.90666844,-5.56665636,-4.57712761,-0.93393481,-0.76356190,2.32609509,0.44338441,2.99374339,-2.28590840 +2.69400000,-5.59770611,-4.56754859,13.91811986,-5.57122662,-4.56338679,-0.93469608,-0.76127211,2.32801055,0.44360898,2.99376743,-2.27907163 +2.69500000,-5.60225991,-4.55379849,13.92953695,-5.57578313,-4.54963472,-0.93545506,-0.75898043,2.32992027,0.44383369,2.99379148,-2.27222915 +2.69600000,-5.60679994,-4.54003716,13.94091966,-5.58032589,-4.53587142,-0.93621175,-0.75668689,2.33182424,0.44405854,2.99381554,-2.26538096 +2.69700000,-5.61132621,-4.52626462,13.95226798,-5.58485487,-4.52209692,-0.93696614,-0.75439147,2.33372245,0.44428353,2.99383962,-2.25852708 +2.69800000,-5.61583869,-4.51248092,13.96358187,-5.58937008,-4.50831127,-0.93771824,-0.75209420,2.33561491,0.44450866,2.99386372,-2.25166753 +2.69900000,-5.62033738,-4.49868608,13.97486130,-5.59387149,-4.49451450,-0.93846803,-0.74979507,2.33750160,0.44473392,2.99388783,-2.24480232 +2.70000000,-5.62482226,-4.48488014,13.98610625,-5.59835910,-4.48070663,-0.93921552,-0.74749409,2.33938253,0.44495932,2.99391195,-2.23793148 +2.70100000,-5.62929332,-4.47106314,13.99731670,-5.60283290,-4.46688771,-0.93996072,-0.74519126,2.34125768,0.44518486,2.99393609,-2.23105501 +2.70200000,-5.63375055,-4.45723511,14.00849261,-5.60729287,-4.45305777,-0.94070360,-0.74288660,2.34312706,0.44541053,2.99396025,-2.22417294 +2.70300000,-5.63819395,-4.44339607,14.01963395,-5.61173901,-4.43921684,-0.94144418,-0.74058010,2.34499066,0.44563633,2.99398442,-2.21728528 +2.70400000,-5.64262350,-4.42954608,14.03074070,-5.61617130,-4.42536496,-0.94218245,-0.73827178,2.34684847,0.44586227,2.99400860,-2.21039205 +2.70500000,-5.64703918,-4.41568515,14.04181283,-5.62058974,-4.41150216,-0.94291842,-0.73596163,2.34870049,0.44608835,2.99403280,-2.20349326 +2.70600000,-5.65144099,-4.40181333,14.05285031,-5.62499430,-4.39762848,-0.94365207,-0.73364967,2.35054671,0.44631455,2.99405701,-2.19658894 +2.70700000,-5.65582893,-4.38793064,14.06385312,-5.62938499,-4.38374394,-0.94438340,-0.73133590,2.35238714,0.44654089,2.99408124,-2.18967909 +2.70800000,-5.66020296,-4.37403713,14.07482123,-5.63376179,-4.36984859,-0.94511242,-0.72902032,2.35422176,0.44676736,2.99410549,-2.18276374 +2.70900000,-5.66456310,-4.36013283,14.08575461,-5.63812468,-4.35594245,-0.94583912,-0.72670294,2.35605057,0.44699396,2.99412974,-2.17584290 +2.71000000,-5.66890931,-4.34621777,14.09665323,-5.64247367,-4.34202557,-0.94656351,-0.72438378,2.35787357,0.44722070,2.99415402,-2.16891659 +2.71100000,-5.67324161,-4.33229199,14.10751707,-5.64680873,-4.32809797,-0.94728557,-0.72206282,2.35969075,0.44744756,2.99417830,-2.16198483 +2.71200000,-5.67755996,-4.31835551,14.11834611,-5.65112986,-4.31415969,-0.94800531,-0.71974008,2.36150210,0.44767455,2.99420261,-2.15504763 +2.71300000,-5.68186437,-4.30440839,14.12914030,-5.65543705,-4.30021077,-0.94872273,-0.71741557,2.36330764,0.44790168,2.99422692,-2.14810502 +2.71400000,-5.68615482,-4.29045064,14.13989964,-5.65973028,-4.28625124,-0.94943782,-0.71508929,2.36510734,0.44812893,2.99425125,-2.14115699 +2.71500000,-5.69043130,-4.27648230,14.15062408,-5.66400955,-4.27228114,-0.95015058,-0.71276124,2.36690120,0.44835630,2.99427560,-2.13420359 +2.71600000,-5.69469381,-4.26250341,14.16131361,-5.66827484,-4.25830049,-0.95086101,-0.71043143,2.36868922,0.44858381,2.99429995,-2.12724481 +2.71700000,-5.69894232,-4.24851401,14.17196820,-5.67252614,-4.24430933,-0.95156911,-0.70809987,2.37047140,0.44881144,2.99432433,-2.12028068 +2.71800000,-5.70317683,-4.23451412,14.18258782,-5.67676345,-4.23030770,-0.95227488,-0.70576657,2.37224773,0.44903920,2.99434871,-2.11331121 +2.71900000,-5.70739734,-4.22050378,14.19317245,-5.68098676,-4.21629564,-0.95297831,-0.70343152,2.37401821,0.44926709,2.99437311,-2.10633643 +2.72000000,-5.71160382,-4.20648303,14.20372205,-5.68519604,-4.20227317,-0.95367940,-0.70109474,2.37578283,0.44949510,2.99439753,-2.09935634 +2.72100000,-5.71579627,-4.19245190,14.21423661,-5.68939130,-4.18824033,-0.95437816,-0.69875622,2.37754159,0.44972323,2.99442195,-2.09237097 +2.72200000,-5.71997468,-4.17841043,14.22471610,-5.69357252,-4.17419716,-0.95507457,-0.69641599,2.37929448,0.44995149,2.99444640,-2.08538034 +2.72300000,-5.72413904,-4.16435865,14.23516048,-5.69773969,-4.16014369,-0.95576865,-0.69407403,2.38104150,0.45017987,2.99447085,-2.07838445 +2.72400000,-5.72828934,-4.15029659,14.24556975,-5.70189280,-4.14607995,-0.95646038,-0.69173036,2.38278264,0.45040838,2.99449532,-2.07138333 +2.72500000,-5.73242556,-4.13622429,14.25594386,-5.70603185,-4.13200599,-0.95714976,-0.68938499,2.38451791,0.45063701,2.99451980,-2.06437699 +2.72600000,-5.73654770,-4.12214178,14.26628280,-5.71015681,-4.11792183,-0.95783680,-0.68703791,2.38624729,0.45086575,2.99454430,-2.05736546 +2.72700000,-5.74065575,-4.10804911,14.27658654,-5.71426769,-4.10382751,-0.95852149,-0.68468914,2.38797079,0.45109463,2.99456881,-2.05034874 +2.72800000,-5.74474970,-4.09394630,14.28685505,-5.71836446,-4.08972306,-0.95920383,-0.68233868,2.38968839,0.45132362,2.99459333,-2.04332685 +2.72900000,-5.74882953,-4.07983338,14.29708831,-5.72244713,-4.07560852,-0.95988382,-0.67998653,2.39140010,0.45155273,2.99461787,-2.03629982 +2.73000000,-5.75289524,-4.06571040,14.30728629,-5.72651568,-4.06148392,-0.96056145,-0.67763271,2.39310590,0.45178196,2.99464242,-2.02926766 +2.73100000,-5.75694682,-4.05157739,14.31744897,-5.73057009,-4.04734931,-0.96123673,-0.67527722,2.39480580,0.45201131,2.99466698,-2.02223038 +2.73200000,-5.76098425,-4.03743438,14.32757633,-5.73461037,-4.03320471,-0.96190965,-0.67292006,2.39649979,0.45224078,2.99469156,-2.01518801 +2.73300000,-5.76500754,-4.02328141,14.33766833,-5.73863650,-4.01905015,-0.96258021,-0.67056123,2.39818787,0.45247036,2.99471615,-2.00814056 +2.73400000,-5.76901665,-4.00911851,14.34772496,-5.74264847,-4.00488568,-0.96324841,-0.66820076,2.39987003,0.45270007,2.99474075,-2.00108804 +2.73500000,-5.77301160,-3.99494572,14.35774618,-5.74664627,-3.99071133,-0.96391425,-0.66583864,2.40154627,0.45292989,2.99476536,-1.99403048 +2.73600000,-5.77699236,-3.98076308,14.36773198,-5.75062989,-3.97652713,-0.96457772,-0.66347487,2.40321659,0.45315982,2.99478999,-1.98696790 +2.73700000,-5.78095893,-3.96657061,14.37768232,-5.75459932,-3.96233312,-0.96523883,-0.66110946,2.40488097,0.45338987,2.99481463,-1.97990030 +2.73800000,-5.78491130,-3.95236835,14.38759719,-5.75855455,-3.94812933,-0.96589757,-0.65874243,2.40653942,0.45362004,2.99483929,-1.97282771 +2.73900000,-5.78884946,-3.93815634,14.39747656,-5.76249557,-3.93391580,-0.96655395,-0.65637377,2.40819194,0.45385032,2.99486395,-1.96575014 +2.74000000,-5.79277339,-3.92393462,14.40732041,-5.76642238,-3.91969257,-0.96720795,-0.65400349,2.40983851,0.45408072,2.99488863,-1.95866761 +2.74100000,-5.79668310,-3.90970321,14.41712870,-5.77033496,-3.90545966,-0.96785958,-0.65163159,2.41147913,0.45431122,2.99491332,-1.95158014 +2.74200000,-5.80057856,-3.89546216,14.42690142,-5.77423330,-3.89121712,-0.96850884,-0.64925809,2.41311381,0.45454185,2.99493803,-1.94448775 +2.74300000,-5.80445977,-3.88121149,14.43663855,-5.77811739,-3.87696498,-0.96915572,-0.64688299,2.41474253,0.45477258,2.99496274,-1.93739045 +2.74400000,-5.80832672,-3.86695125,14.44634006,-5.78198722,-3.86270326,-0.96980023,-0.64450629,2.41636529,0.45500342,2.99498747,-1.93028826 +2.74500000,-5.81217940,-3.85268146,14.45600592,-5.78584279,-3.84843202,-0.97044236,-0.64212800,2.41798209,0.45523438,2.99501222,-1.92318120 +2.74600000,-5.81601781,-3.83840217,14.46563611,-5.78968408,-3.83415129,-0.97108211,-0.63974812,2.41959292,0.45546545,2.99503697,-1.91606928 +2.74700000,-5.81984192,-3.82411341,14.47523060,-5.79351109,-3.81986109,-0.97171947,-0.63736667,2.42119779,0.45569662,2.99506174,-1.90895253 +2.74800000,-5.82365173,-3.80981522,14.48478939,-5.79732380,-3.80556147,-0.97235446,-0.63498365,2.42279668,0.45592791,2.99508651,-1.90183095 +2.74900000,-5.82744724,-3.79550762,14.49431243,-5.80112221,-3.79125246,-0.97298705,-0.63259905,2.42438959,0.45615930,2.99511130,-1.89470458 +2.75000000,-5.83122843,-3.78119066,14.50379971,-5.80490630,-3.77693409,-0.97361727,-0.63021290,2.42597652,0.45639080,2.99513611,-1.88757341 +2.75100000,-5.83499530,-3.76686436,14.51325120,-5.80867608,-3.76260640,-0.97424509,-0.62782519,2.42755746,0.45662241,2.99516092,-1.88043748 +2.75200000,-5.83874783,-3.75252878,14.52266688,-5.81243151,-3.74826943,-0.97487053,-0.62543593,2.42913241,0.45685413,2.99518575,-1.87329680 +2.75300000,-5.84248601,-3.73818393,14.53204672,-5.81617261,-3.73392321,-0.97549357,-0.62304513,2.43070137,0.45708595,2.99521059,-1.86615138 +2.75400000,-5.84620984,-3.72382986,14.54139072,-5.81989936,-3.71956778,-0.97611423,-0.62065280,2.43226434,0.45731788,2.99523544,-1.85900125 +2.75500000,-5.84991931,-3.70946661,14.55069883,-5.82361174,-3.70520317,-0.97673249,-0.61825893,2.43382130,0.45754992,2.99526030,-1.85184642 +2.75600000,-5.85361440,-3.69509420,14.55997104,-5.82730976,-3.69082942,-0.97734835,-0.61586353,2.43537225,0.45778206,2.99528517,-1.84468691 +2.75700000,-5.85729511,-3.68071267,14.56920732,-5.83099340,-3.67644656,-0.97796182,-0.61346662,2.43691720,0.45801430,2.99531006,-1.83752273 +2.75800000,-5.86096143,-3.66632206,14.57840765,-5.83466265,-3.66205464,-0.97857288,-0.61106819,2.43845614,0.45824665,2.99533495,-1.83035391 +2.75900000,-5.86461336,-3.65192241,14.58757202,-5.83831751,-3.64765367,-0.97918155,-0.60866825,2.43998905,0.45847910,2.99535986,-1.82318046 +2.76000000,-5.86825087,-3.63751374,14.59670039,-5.84195796,-3.63324371,-0.97978782,-0.60626682,2.44151595,0.45871165,2.99538478,-1.81600240 +2.76100000,-5.87187397,-3.62309610,14.60579274,-5.84558399,-3.61882478,-0.98039168,-0.60386388,2.44303682,0.45894430,2.99540971,-1.80881974 +2.76200000,-5.87548264,-3.60866952,14.61484906,-5.84919560,-3.60439692,-0.98099314,-0.60145946,2.44455167,0.45917706,2.99543465,-1.80163251 +2.76300000,-5.87907687,-3.59423403,14.62386931,-5.85279278,-3.58996016,-0.98159220,-0.59905355,2.44606048,0.45940992,2.99545961,-1.79444072 +2.76400000,-5.88265666,-3.57978968,14.63285348,-5.85637552,-3.57551455,-0.98218884,-0.59664617,2.44756326,0.45964287,2.99548457,-1.78724439 +2.76500000,-5.88622200,-3.56533649,14.64180155,-5.85994381,-3.56106012,-0.98278308,-0.59423731,2.44906000,0.45987593,2.99550955,-1.78004353 +2.76600000,-5.88977287,-3.55087451,14.65071349,-5.86349764,-3.54659690,-0.98337491,-0.59182698,2.45055069,0.46010908,2.99553454,-1.77283817 +2.76700000,-5.89330927,-3.53640377,14.65958928,-5.86703700,-3.53212493,-0.98396432,-0.58941520,2.45203534,0.46034234,2.99555953,-1.76562832 +2.76800000,-5.89683120,-3.52192430,14.66842890,-5.87056188,-3.51764425,-0.98455132,-0.58700196,2.45351394,0.46057569,2.99558454,-1.75841400 +2.76900000,-5.90033864,-3.50743614,14.67723232,-5.87407228,-3.50315488,-0.98513591,-0.58458727,2.45498648,0.46080914,2.99560956,-1.75119523 +2.77000000,-5.90383157,-3.49293932,14.68599953,-5.87756819,-3.48865687,-0.98571808,-0.58217114,2.45645297,0.46104268,2.99563459,-1.74397202 +2.77100000,-5.90731001,-3.47843389,14.69473051,-5.88104959,-3.47415026,-0.98629784,-0.57975358,2.45791340,0.46127632,2.99565964,-1.73674440 +2.77200000,-5.91077393,-3.46391987,14.70342522,-5.88451649,-3.45963507,-0.98687517,-0.57733458,2.45936776,0.46151006,2.99568469,-1.72951237 +2.77300000,-5.91422333,-3.44939731,14.71208366,-5.88796886,-3.44511134,-0.98745008,-0.57491416,2.46081605,0.46174389,2.99570975,-1.72227596 +2.77400000,-5.91765819,-3.43486623,14.72070579,-5.89140671,-3.43057912,-0.98802258,-0.57249232,2.46225827,0.46197782,2.99573482,-1.71503519 +2.77500000,-5.92107852,-3.42032669,14.72929161,-5.89483002,-3.41603843,-0.98859265,-0.57006907,2.46369442,0.46221184,2.99575991,-1.70779007 +2.77600000,-5.92448430,-3.40577870,14.73784108,-5.89823878,-3.40148931,-0.98916029,-0.56764441,2.46512449,0.46244595,2.99578500,-1.70054062 +2.77700000,-5.92787552,-3.39122231,14.74635418,-5.90163299,-3.38693180,-0.98972551,-0.56521835,2.46654847,0.46268016,2.99581011,-1.69328685 +2.77800000,-5.93125218,-3.37665755,14.75483090,-5.90501264,-3.37236593,-0.99028830,-0.56279090,2.46796637,0.46291445,2.99583522,-1.68602880 +2.77900000,-5.93461426,-3.36208445,14.76327122,-5.90837772,-3.35779174,-0.99084866,-0.56036206,2.46937818,0.46314884,2.99586035,-1.67876646 +2.78000000,-5.93796176,-3.34750307,14.77167511,-5.91172822,-3.34320927,-0.99140659,-0.55793183,2.47078390,0.46338332,2.99588548,-1.67149987 +2.78100000,-5.94129468,-3.33291342,14.78004255,-5.91506414,-3.32861855,-0.99196209,-0.55550023,2.47218352,0.46361789,2.99591063,-1.66422904 +2.78200000,-5.94461299,-3.31831555,14.78837352,-5.91838546,-3.31401961,-0.99251516,-0.55306726,2.47357704,0.46385255,2.99593579,-1.65695399 +2.78300000,-5.94791670,-3.30370949,14.79666800,-5.92169217,-3.29941250,-0.99306579,-0.55063292,2.47496445,0.46408730,2.99596095,-1.64967473 +2.78400000,-5.95120580,-3.28909529,14.80492597,-5.92498428,-3.28479724,-0.99361399,-0.54819722,2.47634576,0.46432214,2.99598613,-1.64239128 +2.78500000,-5.95448027,-3.27447296,14.81314741,-5.92826177,-3.27017388,-0.99415975,-0.54576018,2.47772096,0.46455707,2.99601131,-1.63510366 +2.78600000,-5.95774011,-3.25984256,14.82133230,-5.93152463,-3.25554245,-0.99470307,-0.54332178,2.47909005,0.46479208,2.99603651,-1.62781189 +2.78700000,-5.96098532,-3.24520411,14.82948063,-5.93477285,-3.24090299,-0.99524395,-0.54088205,2.48045302,0.46502718,2.99606172,-1.62051599 +2.78800000,-5.96421588,-3.23055765,14.83759236,-5.93800643,-3.22625554,-0.99578240,-0.53844098,2.48180987,0.46526237,2.99608693,-1.61321597 +2.78900000,-5.96743178,-3.21590323,14.84566748,-5.94122536,-3.21160012,-0.99631839,-0.53599858,2.48316059,0.46549764,2.99611216,-1.60591185 +2.79000000,-5.97063302,-3.20124087,14.85370597,-5.94442963,-3.19693678,-0.99685195,-0.53355486,2.48450519,0.46573300,2.99613739,-1.59860365 +2.79100000,-5.97381959,-3.18657061,14.86170781,-5.94761923,-3.18226555,-0.99738306,-0.53110982,2.48584366,0.46596844,2.99616263,-1.59129139 +2.79200000,-5.97699148,-3.17189249,14.86967298,-5.95079415,-3.16758646,-0.99791172,-0.52866347,2.48717599,0.46620396,2.99618789,-1.58397508 +2.79300000,-5.98014869,-3.15720654,14.87760146,-5.95395440,-3.15289957,-0.99843794,-0.52621582,2.48850219,0.46643957,2.99621315,-1.57665475 +2.79400000,-5.98329120,-3.14251280,14.88549323,-5.95709995,-3.13820489,-0.99896170,-0.52376687,2.48982225,0.46667527,2.99623842,-1.56933041 +2.79500000,-5.98641901,-3.12781131,14.89334827,-5.96023081,-3.12350247,-0.99948302,-0.52131662,2.49113616,0.46691104,2.99626370,-1.56200207 +2.79600000,-5.98953212,-3.11310210,14.90116657,-5.96334695,-3.10879234,-1.00000189,-0.51886509,2.49244393,0.46714690,2.99628899,-1.55466977 +2.79700000,-5.99263050,-3.09838521,14.90894810,-5.96644839,-3.09407454,-1.00051830,-0.51641228,2.49374555,0.46738283,2.99631429,-1.54733351 +2.79800000,-5.99571416,-3.08366067,14.91669284,-5.96953510,-3.07934911,-1.00103226,-0.51395820,2.49504101,0.46761885,2.99633960,-1.53999331 +2.79900000,-5.99878309,-3.06892852,14.92440077,-5.97260708,-3.06461608,-1.00154376,-0.51150285,2.49633032,0.46785495,2.99636492,-1.53264919 +2.80000000,-6.00183728,-3.05418881,14.93207188,-5.97566433,-3.04987549,-1.00205281,-0.50904623,2.49761347,0.46809112,2.99639025,-1.52530117 +2.80100000,-6.00487672,-3.03944155,14.93970615,-5.97870683,-3.03512737,-1.00255939,-0.50658836,2.49889045,0.46832738,2.99641558,-1.51794926 +2.80200000,-6.00790141,-3.02468680,14.94730356,-5.98173458,-3.02037176,-1.00306352,-0.50412924,2.50016127,0.46856371,2.99644093,-1.51059349 +2.80300000,-6.01091133,-3.00992459,14.95486408,-5.98474757,-3.00560871,-1.00356519,-0.50166888,2.50142592,0.46880012,2.99646628,-1.50323388 +2.80400000,-6.01390649,-2.99515494,14.96238770,-5.98774580,-2.99083823,-1.00406440,-0.49920728,2.50268440,0.46903661,2.99649164,-1.49587043 +2.80500000,-6.01688686,-2.98037791,14.96987441,-5.99072925,-2.97606038,-1.00456114,-0.49674444,2.50393671,0.46927317,2.99651702,-1.48850317 +2.80600000,-6.01985246,-2.96559352,14.97732418,-5.99369791,-2.96127518,-1.00505542,-0.49428038,2.50518283,0.46950981,2.99654240,-1.48113212 +2.80700000,-6.02280326,-2.95080182,14.98473699,-5.99665179,-2.94648268,-1.00554724,-0.49181510,2.50642278,0.46974653,2.99656778,-1.47375730 +2.80800000,-6.02573926,-2.93600284,14.99211283,-5.99959088,-2.93168290,-1.00603659,-0.48934861,2.50765654,0.46998332,2.99659318,-1.46637871 +2.80900000,-6.02866046,-2.92119661,14.99945168,-6.00251516,-2.91687589,-1.00652347,-0.48688091,2.50888411,0.47022018,2.99661858,-1.45899639 +2.81000000,-6.03156684,-2.90638317,15.00675352,-6.00542463,-2.90206169,-1.00700788,-0.48441201,2.51010549,0.47045712,2.99664400,-1.45161034 +2.81100000,-6.03445841,-2.89156256,15.01401833,-6.00831928,-2.88724032,-1.00748982,-0.48194191,2.51132068,0.47069413,2.99666942,-1.44422059 +2.81200000,-6.03733514,-2.87673482,15.02124609,-6.01119911,-2.87241183,-1.00796929,-0.47947063,2.51252967,0.47093121,2.99669485,-1.43682716 +2.81300000,-6.04019704,-2.86189998,15.02843679,-6.01406410,-2.85757626,-1.00844629,-0.47699816,2.51373246,0.47116837,2.99672029,-1.42943006 +2.81400000,-6.04304410,-2.84705808,15.03559041,-6.01691426,-2.84273363,-1.00892082,-0.47452451,2.51492905,0.47140559,2.99674573,-1.42202931 +2.81500000,-6.04587631,-2.83220915,15.04270693,-6.01974957,-2.82788399,-1.00939287,-0.47204970,2.51611944,0.47164289,2.99677119,-1.41462493 +2.81600000,-6.04869366,-2.81735323,15.04978634,-6.02257002,-2.81302737,-1.00986244,-0.46957372,2.51730362,0.47188025,2.99679665,-1.40721694 +2.81700000,-6.05149615,-2.80249037,15.05682861,-6.02537562,-2.79816381,-1.01032954,-0.46709658,2.51848158,0.47211769,2.99682212,-1.39980535 +2.81800000,-6.05428377,-2.78762058,15.06383372,-6.02816635,-2.78329334,-1.01079415,-0.46461828,2.51965333,0.47235519,2.99684760,-1.39239019 +2.81900000,-6.05705652,-2.77274393,15.07080167,-6.03094220,-2.76841601,-1.01125629,-0.46213885,2.52081887,0.47259276,2.99687308,-1.38497147 +2.82000000,-6.05981438,-2.75786042,15.07773244,-6.03370318,-2.75353185,-1.01171595,-0.45965827,2.52197818,0.47283040,2.99689857,-1.37754920 +2.82100000,-6.06255735,-2.74297012,15.08462600,-6.03644926,-2.73864089,-1.01217313,-0.45717655,2.52313127,0.47306811,2.99692408,-1.37012342 +2.82200000,-6.06528542,-2.72807304,15.09148234,-6.03918046,-2.72374318,-1.01262782,-0.45469371,2.52427814,0.47330588,2.99694958,-1.36269413 +2.82300000,-6.06799859,-2.71316924,15.09830144,-6.04189675,-2.70883874,-1.01308003,-0.45220975,2.52541878,0.47354372,2.99697510,-1.35526136 +2.82400000,-6.07069685,-2.69825874,15.10508329,-6.04459813,-2.69392762,-1.01352976,-0.44972467,2.52655318,0.47378162,2.99700062,-1.34782512 +2.82500000,-6.07338019,-2.68334158,15.11182788,-6.04728460,-2.67900986,-1.01397700,-0.44723848,2.52768135,0.47401959,2.99702615,-1.34038542 +2.82600000,-6.07604861,-2.66841780,15.11853517,-6.04995615,-2.66408548,-1.01442175,-0.44475119,2.52880329,0.47425762,2.99705169,-1.33294230 +2.82700000,-6.07870209,-2.65348744,15.12520516,-6.05261277,-2.64915453,-1.01486401,-0.44226280,2.52991899,0.47449572,2.99707724,-1.32549577 +2.82800000,-6.08134064,-2.63855053,15.13183783,-6.05525446,-2.63421705,-1.01530378,-0.43977332,2.53102844,0.47473388,2.99710279,-1.31804584 +2.82900000,-6.08396425,-2.62360711,15.13843316,-6.05788120,-2.61927306,-1.01574107,-0.43728275,2.53213165,0.47497210,2.99712835,-1.31059254 +2.83000000,-6.08657291,-2.60865722,15.14499114,-6.06049300,-2.60432262,-1.01617586,-0.43479111,2.53322861,0.47521038,2.99715392,-1.30313587 +2.83100000,-6.08916661,-2.59370089,15.15151175,-6.06308984,-2.58936574,-1.01660815,-0.43229839,2.53431932,0.47544873,2.99717949,-1.29567587 +2.83200000,-6.09174535,-2.57873816,15.15799498,-6.06567173,-2.57440248,-1.01703796,-0.42980461,2.53540377,0.47568713,2.99720507,-1.28821255 +2.83300000,-6.09430912,-2.56376906,15.16444080,-6.06823865,-2.55943286,-1.01746527,-0.42730976,2.53648198,0.47592560,2.99723066,-1.28074592 +2.83400000,-6.09685791,-2.54879364,15.17084921,-6.07079059,-2.54445693,-1.01789008,-0.42481386,2.53755392,0.47616412,2.99725625,-1.27327601 +2.83500000,-6.09939172,-2.53381194,15.17722019,-6.07332756,-2.52947473,-1.01831240,-0.42231692,2.53861960,0.47640270,2.99728186,-1.26580283 +2.83600000,-6.10191055,-2.51882398,15.18355371,-6.07584954,-2.51448628,-1.01873222,-0.41981893,2.53967902,0.47664134,2.99730746,-1.25832640 +2.83700000,-6.10441438,-2.50382980,15.18984978,-6.07835653,-2.49949162,-1.01914954,-0.41731990,2.54073217,0.47688004,2.99733308,-1.25084674 +2.83800000,-6.10690321,-2.48882945,15.19610836,-6.08084852,-2.48449080,-1.01956436,-0.41481985,2.54177905,0.47711880,2.99735870,-1.24336387 +2.83900000,-6.10937703,-2.47382296,15.20232945,-6.08332551,-2.46948385,-1.01997668,-0.41231877,2.54281966,0.47735761,2.99738433,-1.23587781 +2.84000000,-6.11183584,-2.45881036,15.20851303,-6.08578749,-2.45447080,-1.02038649,-0.40981667,2.54385400,0.47759648,2.99740996,-1.22838857 +2.84100000,-6.11427963,-2.44379170,15.21465908,-6.08823445,-2.43945170,-1.02079381,-0.40731356,2.54488206,0.47783540,2.99743560,-1.22089618 +2.84200000,-6.11670840,-2.42876700,15.22076759,-6.09066639,-2.42442658,-1.02119862,-0.40480945,2.54590384,0.47807438,2.99746125,-1.21340065 +2.84300000,-6.11912213,-2.41373632,15.22683855,-6.09308330,-2.40939548,-1.02160092,-0.40230434,2.54691933,0.47831341,2.99748690,-1.20590200 +2.84400000,-6.12152083,-2.39869967,15.23287193,-6.09548518,-2.39435844,-1.02200072,-0.39979824,2.54792855,0.47855250,2.99751256,-1.19840024 +2.84500000,-6.12390449,-2.38365711,15.23886773,-6.09787201,-2.37931548,-1.02239801,-0.39729115,2.54893148,0.47879163,2.99753823,-1.19089541 +2.84600000,-6.12627310,-2.36860867,15.24482593,-6.10024381,-2.36426666,-1.02279279,-0.39478308,2.54992811,0.47903083,2.99756390,-1.18338750 +2.84700000,-6.12862665,-2.35355438,15.25074652,-6.10260055,-2.34921200,-1.02318507,-0.39227403,2.55091846,0.47927007,2.99758958,-1.17587656 +2.84800000,-6.13096515,-2.33849429,15.25662947,-6.10494223,-2.33415154,-1.02357483,-0.38976402,2.55190251,0.47950936,2.99761526,-1.16836258 +2.84900000,-6.13328858,-2.32342843,15.26247478,-6.10726885,-2.31908533,-1.02396208,-0.38725305,2.55288027,0.47974870,2.99764095,-1.16084560 +2.85000000,-6.13559693,-2.30835683,15.26828243,-6.10958040,-2.30401339,-1.02434683,-0.38474112,2.55385173,0.47998810,2.99766665,-1.15332562 +2.85100000,-6.13789021,-2.29327954,15.27405241,-6.11187687,-2.28893577,-1.02472905,-0.38222824,2.55481688,0.48022754,2.99769235,-1.14580267 +2.85200000,-6.14016841,-2.27819659,15.27978470,-6.11415827,-2.27385250,-1.02510877,-0.37971442,2.55577573,0.48046703,2.99771805,-1.13827677 +2.85300000,-6.14243152,-2.26310801,15.28547929,-6.11642458,-2.25876362,-1.02548597,-0.37719966,2.55672828,0.48070657,2.99774377,-1.13074793 +2.85400000,-6.14467953,-2.24801386,15.29113616,-6.11867579,-2.24366917,-1.02586065,-0.37468397,2.55767451,0.48094616,2.99776948,-1.12321617 +2.85500000,-6.14691245,-2.23291416,15.29675530,-6.12091191,-2.22856918,-1.02623282,-0.37216736,2.55861444,0.48118580,2.99779521,-1.11568152 +2.85600000,-6.14913025,-2.21780894,15.30233670,-6.12313293,-2.21346369,-1.02660247,-0.36964982,2.55954805,0.48142548,2.99782094,-1.10814398 +2.85700000,-6.15133295,-2.20269826,15.30788035,-6.12533884,-2.19835274,-1.02696960,-0.36713138,2.56047535,0.48166520,2.99784667,-1.10060359 +2.85800000,-6.15352053,-2.18758214,15.31338622,-6.12752963,-2.18323637,-1.02733421,-0.36461203,2.56139633,0.48190497,2.99787241,-1.09306034 +2.85900000,-6.15569300,-2.17246062,15.31885431,-6.12970531,-2.16811461,-1.02769630,-0.36209178,2.56231099,0.48214479,2.99789815,-1.08551428 +2.86000000,-6.15785033,-2.15733374,15.32428460,-6.13186586,-2.15298750,-1.02805588,-0.35957064,2.56321933,0.48238465,2.99792390,-1.07796541 +2.86100000,-6.15999253,-2.14220154,15.32967708,-6.13401128,-2.13785507,-1.02841292,-0.35704861,2.56412134,0.48262456,2.99794966,-1.07041375 +2.86200000,-6.16211959,-2.12706406,15.33503173,-6.13614157,-2.12271738,-1.02876745,-0.35452570,2.56501703,0.48286450,2.99797542,-1.06285932 +2.86300000,-6.16423152,-2.11192132,15.34034855,-6.13825671,-2.10757444,-1.02911945,-0.35200191,2.56590638,0.48310449,2.99800118,-1.05530214 +2.86400000,-6.16632829,-2.09677338,15.34562752,-6.14035672,-2.09242631,-1.02946893,-0.34947725,2.56678941,0.48334452,2.99802695,-1.04774223 +2.86500000,-6.16840991,-2.08162026,15.35086862,-6.14244157,-2.07727301,-1.02981588,-0.34695174,2.56766610,0.48358459,2.99805273,-1.04017960 +2.86600000,-6.17047637,-2.06646200,15.35607184,-6.14451126,-2.06211458,-1.03016031,-0.34442536,2.56853646,0.48382471,2.99807851,-1.03261428 +2.86700000,-6.17252767,-2.05129865,15.36123718,-6.14656579,-2.04695107,-1.03050220,-0.34189814,2.56940048,0.48406486,2.99810429,-1.02504629 +2.86800000,-6.17456380,-2.03613023,15.36636461,-6.14860516,-2.03178251,-1.03084157,-0.33937008,2.57025816,0.48430505,2.99813008,-1.01747563 +2.86900000,-6.17658476,-2.02095680,15.37145413,-6.15062936,-2.01660893,-1.03117842,-0.33684117,2.57110950,0.48454528,2.99815588,-1.00990234 +2.87000000,-6.17859054,-2.00577837,15.37650572,-6.15263838,-2.00143038,-1.03151273,-0.33431144,2.57195449,0.48478555,2.99818168,-1.00232642 +2.87100000,-6.18058113,-1.99059499,15.38151937,-6.15463222,-1.98624689,-1.03184451,-0.33178088,2.57279314,0.48502585,2.99820748,-0.99474791 +2.87200000,-6.18255654,-1.97540671,15.38649507,-6.15661087,-1.97105850,-1.03217376,-0.32924950,2.57362544,0.48526619,2.99823329,-0.98716680 +2.87300000,-6.18451675,-1.96021355,15.39143280,-6.15857433,-1.95586525,-1.03250047,-0.32671731,2.57445139,0.48550657,2.99825910,-0.97958314 +2.87400000,-6.18646177,-1.94501555,15.39633256,-6.16052260,-1.94066717,-1.03282466,-0.32418431,2.57527099,0.48574699,2.99828491,-0.97199693 +2.87500000,-6.18839158,-1.92981275,15.40119433,-6.16245566,-1.92546430,-1.03314631,-0.32165051,2.57608423,0.48598744,2.99831073,-0.96440819 +2.87600000,-6.19030618,-1.91460520,15.40601809,-6.16437352,-1.91025668,-1.03346543,-0.31911592,2.57689112,0.48622792,2.99833656,-0.95681694 +2.87700000,-6.19220558,-1.89939291,15.41080385,-6.16627618,-1.89504435,-1.03378201,-0.31658054,2.57769165,0.48646844,2.99836239,-0.94922320 +2.87800000,-6.19408975,-1.88417595,15.41555158,-6.16816361,-1.87982734,-1.03409605,-0.31404439,2.57848582,0.48670899,2.99838822,-0.94162699 +2.87900000,-6.19595871,-1.86895433,15.42026127,-6.17003583,-1.86460569,-1.03440756,-0.31150745,2.57927362,0.48694958,2.99841406,-0.93402832 +2.88000000,-6.19781244,-1.85372810,15.42493291,-6.17189282,-1.84937945,-1.03471653,-0.30896975,2.58005506,0.48719019,2.99843990,-0.92642722 +2.88100000,-6.19965093,-1.83849730,15.42956650,-6.17373459,-1.83414864,-1.03502296,-0.30643128,2.58083014,0.48743084,2.99846574,-0.91882371 +2.88200000,-6.20147419,-1.82326196,15.43416201,-6.17556112,-1.81891330,-1.03532685,-0.30389206,2.58159885,0.48767152,2.99849159,-0.91121780 +2.88300000,-6.20328222,-1.80802212,15.43871944,-6.17737241,-1.80367348,-1.03562820,-0.30135209,2.58236119,0.48791223,2.99851744,-0.90360950 +2.88400000,-6.20507499,-1.79277782,15.44323878,-6.17916846,-1.78842920,-1.03592701,-0.29881138,2.58311715,0.48815297,2.99854329,-0.89599885 +2.88500000,-6.20685252,-1.77752910,15.44772001,-6.18094927,-1.77318052,-1.03622328,-0.29626993,2.58386675,0.48839374,2.99856915,-0.88838586 +2.88600000,-6.20861480,-1.76227599,15.45216313,-6.18271482,-1.75792745,-1.03651701,-0.29372774,2.58460997,0.48863453,2.99859502,-0.88077055 +2.88700000,-6.21036182,-1.74701853,15.45656812,-6.18446512,-1.74267005,-1.03680820,-0.29118484,2.58534681,0.48887536,2.99862088,-0.87315293 +2.88800000,-6.21209358,-1.73175676,15.46093497,-6.18620016,-1.72740835,-1.03709684,-0.28864121,2.58607727,0.48911621,2.99864675,-0.86553303 +2.88900000,-6.21381007,-1.71649072,15.46526368,-6.18791994,-1.71214239,-1.03738293,-0.28609687,2.58680135,0.48935709,2.99867262,-0.85791086 +2.89000000,-6.21551129,-1.70122045,15.46955422,-6.18962444,-1.69687220,-1.03766649,-0.28355183,2.58751905,0.48959799,2.99869850,-0.85028644 +2.89100000,-6.21719723,-1.68594597,15.47380660,-6.19131368,-1.68159783,-1.03794749,-0.28100608,2.58823036,0.48983892,2.99872438,-0.84265980 +2.89200000,-6.21886790,-1.67066734,15.47802079,-6.19298764,-1.66631931,-1.03822595,-0.27845965,2.58893529,0.49007988,2.99875026,-0.83503094 +2.89300000,-6.22052328,-1.65538458,15.48219680,-6.19464632,-1.65103668,-1.03850186,-0.27591252,2.58963382,0.49032086,2.99877615,-0.82739989 +2.89400000,-6.22216338,-1.64009774,15.48633460,-6.19628971,-1.63574997,-1.03877523,-0.27336472,2.59032597,0.49056187,2.99880204,-0.81976667 +2.89500000,-6.22378819,-1.62480686,15.49043420,-6.19791782,-1.62045922,-1.03904605,-0.27081624,2.59101173,0.49080289,2.99882793,-0.81213130 +2.89600000,-6.22539770,-1.60951196,15.49449557,-6.19953063,-1.60516448,-1.03931431,-0.26826709,2.59169110,0.49104394,2.99885382,-0.80449379 +2.89700000,-6.22699191,-1.59421310,15.49851871,-6.20112814,-1.58986578,-1.03958003,-0.26571728,2.59236407,0.49128501,2.99887972,-0.79685417 +2.89800000,-6.22857082,-1.57891029,15.50250361,-6.20271036,-1.57456315,-1.03984320,-0.26316682,2.59303064,0.49152611,2.99890562,-0.78921245 +2.89900000,-6.23013443,-1.56360360,15.50645026,-6.20427727,-1.55925664,-1.04010381,-0.26061570,2.59369082,0.49176722,2.99893152,-0.78156865 +2.90000000,-6.23168272,-1.54829304,15.51035865,-6.20582887,-1.54394628,-1.04036188,-0.25806395,2.59434459,0.49200836,2.99895743,-0.77392278 +2.90100000,-6.23321570,-1.53297867,15.51422877,-6.20736516,-1.52863212,-1.04061739,-0.25551155,2.59499197,0.49224951,2.99898333,-0.76627488 +2.90200000,-6.23473336,-1.51766051,15.51806060,-6.20888613,-1.51331418,-1.04087035,-0.25295853,2.59563294,0.49249069,2.99900924,-0.75862496 +2.90300000,-6.23623570,-1.50233861,15.52185415,-6.21039179,-1.49799250,-1.04112075,-0.25040488,2.59626751,0.49273188,2.99903516,-0.75097303 +2.90400000,-6.23772271,-1.48701300,15.52560940,-6.21188212,-1.48266714,-1.04136860,-0.24785061,2.59689567,0.49297309,2.99906107,-0.74331912 +2.90500000,-6.23919440,-1.47168372,15.52932634,-6.21335712,-1.46733811,-1.04161390,-0.24529573,2.59751742,0.49321431,2.99908699,-0.73566324 +2.90600000,-6.24065075,-1.45635081,15.53300497,-6.21481679,-1.45200546,-1.04185664,-0.24274025,2.59813277,0.49345556,2.99911291,-0.72800541 +2.90700000,-6.24209176,-1.44101431,15.53664527,-6.21626113,-1.43666923,-1.04209682,-0.24018417,2.59874170,0.49369682,2.99913883,-0.72034566 +2.90800000,-6.24351743,-1.42567425,15.54024723,-6.21769013,-1.42132945,-1.04233445,-0.23762749,2.59934422,0.49393809,2.99916476,-0.71268400 +2.90900000,-6.24492777,-1.41033068,15.54381085,-6.21910379,-1.40598617,-1.04256952,-0.23507023,2.59994033,0.49417938,2.99919068,-0.70502044 +2.91000000,-6.24632275,-1.39498362,15.54733612,-6.22050210,-1.39063942,-1.04280203,-0.23251239,2.60053003,0.49442069,2.99921661,-0.69735502 +2.91100000,-6.24770238,-1.37963312,15.55082302,-6.22188506,-1.37528924,-1.04303199,-0.22995397,2.60111330,0.49466201,2.99924254,-0.68968774 +2.91200000,-6.24906666,-1.36427922,15.55427156,-6.22325268,-1.35993566,-1.04325938,-0.22739499,2.60169016,0.49490334,2.99926847,-0.68201863 +2.91300000,-6.25041558,-1.34892196,15.55768171,-6.22460493,-1.34457873,-1.04348422,-0.22483545,2.60226060,0.49514468,2.99929440,-0.67434770 +2.91400000,-6.25174914,-1.33356136,15.56105348,-6.22594183,-1.32921848,-1.04370649,-0.22227535,2.60282462,0.49538604,2.99932034,-0.66667497 +2.91500000,-6.25306734,-1.31819747,15.56438686,-6.22726337,-1.31385495,-1.04392621,-0.21971470,2.60338221,0.49562741,2.99934628,-0.65900047 +2.91600000,-6.25437017,-1.30283033,15.56768183,-6.22856954,-1.29848818,-1.04414336,-0.21715351,2.60393339,0.49586878,2.99937222,-0.65132421 +2.91700000,-6.25565763,-1.28745998,15.57093839,-6.22986035,-1.28311820,-1.04435795,-0.21459179,2.60447813,0.49611017,2.99939816,-0.64364621 +2.91800000,-6.25692972,-1.27208645,15.57415652,-6.23113578,-1.26774506,-1.04456998,-0.21202953,2.60501646,0.49635157,2.99942410,-0.63596649 +2.91900000,-6.25818643,-1.25670978,15.57733624,-6.23239583,-1.25236879,-1.04477945,-0.20946676,2.60554835,0.49659298,2.99945004,-0.62828507 +2.92000000,-6.25942776,-1.24133001,15.58047751,-6.23364051,-1.23698943,-1.04498635,-0.20690346,2.60607381,0.49683439,2.99947599,-0.62060197 +2.92100000,-6.26065371,-1.22594718,15.58358034,-6.23486981,-1.22160702,-1.04519069,-0.20433966,2.60659285,0.49707582,2.99950193,-0.61291720 +2.92200000,-6.26186427,-1.21056132,15.58664472,-6.23608373,-1.20622160,-1.04539247,-0.20177535,2.60710545,0.49731725,2.99952788,-0.60523078 +2.92300000,-6.26305944,-1.19517247,15.58967065,-6.23728226,-1.19083320,-1.04559168,-0.19921054,2.60761162,0.49755868,2.99955383,-0.59754274 +2.92400000,-6.26423922,-1.17978068,15.59265810,-6.23846539,-1.17544186,-1.04578832,-0.19664524,2.60811136,0.49780013,2.99957978,-0.58985310 +2.92500000,-6.26540361,-1.16438598,15.59560709,-6.23963314,-1.16004762,-1.04598240,-0.19407946,2.60860466,0.49804157,2.99960573,-0.58216186 +2.92600000,-6.26655259,-1.14898840,15.59851759,-6.24078549,-1.14465051,-1.04617392,-0.19151320,2.60909152,0.49828303,2.99963168,-0.57446906 +2.92700000,-6.26768618,-1.13358798,15.60138960,-6.24192244,-1.12925059,-1.04636286,-0.18894646,2.60957195,0.49852448,2.99965763,-0.56677470 +2.92800000,-6.26880437,-1.11818477,15.60422312,-6.24304399,-1.11384787,-1.04654924,-0.18637926,2.61004594,0.49876594,2.99968358,-0.55907881 +2.92900000,-6.26990715,-1.10277881,15.60701814,-6.24415013,-1.09844241,-1.04673305,-0.18381160,2.61051349,0.49900741,2.99970954,-0.55138141 +2.93000000,-6.27099452,-1.08737012,15.60977465,-6.24524087,-1.08303424,-1.04691430,-0.18124349,2.61097459,0.49924887,2.99973549,-0.54368252 +2.93100000,-6.27206648,-1.07195874,15.61249264,-6.24631620,-1.06762340,-1.04709297,-0.17867492,2.61142926,0.49949034,2.99976145,-0.53598215 +2.93200000,-6.27312302,-1.05654473,15.61517212,-6.24737612,-1.05220992,-1.04726908,-0.17610592,2.61187748,0.49973181,2.99978740,-0.52828033 +2.93300000,-6.27416415,-1.04112810,15.61781306,-6.24842062,-1.03679384,-1.04744261,-0.17353649,2.61231926,0.49997328,2.99981336,-0.52057707 +2.93400000,-6.27518986,-1.02570891,15.62041547,-6.24944970,-1.02137521,-1.04761358,-0.17096662,2.61275459,0.50021475,2.99983932,-0.51287239 +2.93500000,-6.27620014,-1.01028718,15.62297933,-6.25046337,-1.00595406,-1.04778198,-0.16839633,2.61318347,0.50045622,2.99986527,-0.50516631 +2.93600000,-6.27719501,-0.99486297,15.62550465,-6.25146161,-0.99053042,-1.04794780,-0.16582563,2.61360591,0.50069769,2.99989123,-0.49745885 +2.93700000,-6.27817444,-0.97943629,15.62799141,-6.25244443,-0.97510434,-1.04811106,-0.16325452,2.61402189,0.50093915,2.99991719,-0.48975004 +2.93800000,-6.27913845,-0.96400721,15.63043961,-6.25341182,-0.95967586,-1.04827174,-0.16068300,2.61443143,0.50118062,2.99994315,-0.48203988 +2.93900000,-6.28008703,-0.94857574,15.63284925,-6.25436378,-0.94424501,-1.04842985,-0.15811109,2.61483452,0.50142208,2.99996910,-0.47432839 +2.94000000,-6.28102017,-0.93314193,15.63522031,-6.25530031,-0.92881182,-1.04858539,-0.15553879,2.61523115,0.50166353,2.99999506,-0.46661561 +2.94100000,-6.28193787,-0.91770582,15.63755280,-6.25622140,-0.91337635,-1.04873836,-0.15296611,2.61562134,0.50190499,3.00002102,-0.45890153 +2.94200000,-6.28284014,-0.90226745,15.63984670,-6.25712706,-0.89793862,-1.04888875,-0.15039304,2.61600506,0.50214644,3.00004698,-0.45118620 +2.94300000,-6.28372697,-0.88682685,15.64210201,-6.25801728,-0.88249868,-1.04903657,-0.14781961,2.61638234,0.50238788,3.00007294,-0.44346961 +2.94400000,-6.28459835,-0.87138406,15.64431872,-6.25889206,-0.86705656,-1.04918181,-0.14524581,2.61675315,0.50262932,3.00009889,-0.43575180 +2.94500000,-6.28545429,-0.85593912,15.64649684,-6.25975139,-0.85161230,-1.04932449,-0.14267166,2.61711752,0.50287075,3.00012485,-0.42803278 +2.94600000,-6.28629478,-0.84049207,15.64863635,-6.26059528,-0.83616593,-1.04946458,-0.14009715,2.61747542,0.50311217,3.00015081,-0.42031257 +2.94700000,-6.28711983,-0.82504294,15.65073724,-6.26142372,-0.82071751,-1.04960211,-0.13752229,2.61782687,0.50335359,3.00017677,-0.41259119 +2.94800000,-6.28792942,-0.80959178,15.65279952,-6.26223672,-0.80526706,-1.04973705,-0.13494710,2.61817185,0.50359499,3.00020272,-0.40486865 +2.94900000,-6.28872356,-0.79413862,15.65482318,-6.26303426,-0.78981462,-1.04986942,-0.13237157,2.61851038,0.50383639,3.00022868,-0.39714499 +2.95000000,-6.28950224,-0.77868351,15.65680821,-6.26381634,-0.77436024,-1.04999922,-0.12979572,2.61884244,0.50407778,3.00025463,-0.38942021 +2.95100000,-6.29026547,-0.76322647,15.65875461,-6.26458298,-0.75890394,-1.05012644,-0.12721955,2.61916805,0.50431916,3.00028059,-0.38169433 +2.95200000,-6.29101323,-0.74776755,15.66066238,-6.26533415,-0.74344577,-1.05025108,-0.12464306,2.61948719,0.50456053,3.00030654,-0.37396738 +2.95300000,-6.29174554,-0.73230678,15.66253150,-6.26606987,-0.72798577,-1.05037315,-0.12206626,2.61979987,0.50480188,3.00033250,-0.36623938 +2.95400000,-6.29246239,-0.71684420,15.66436198,-6.26679012,-0.71252397,-1.05049264,-0.11948917,2.62010608,0.50504323,3.00035845,-0.35851033 +2.95500000,-6.29316377,-0.70137986,15.66615380,-6.26749491,-0.69706041,-1.05060955,-0.11691178,2.62040583,0.50528456,3.00038440,-0.35078027 +2.95600000,-6.29384968,-0.68591379,15.66790697,-6.26818424,-0.68159513,-1.05072388,-0.11433410,2.62069911,0.50552588,3.00041035,-0.34304921 +2.95700000,-6.29452013,-0.67044602,15.66962149,-6.26885810,-0.66612817,-1.05083564,-0.11175614,2.62098593,0.50576719,3.00043630,-0.33531717 +2.95800000,-6.29517510,-0.65497660,15.67129734,-6.26951650,-0.65065957,-1.05094482,-0.10917790,2.62126628,0.50600848,3.00046225,-0.32758416 +2.95900000,-6.29581461,-0.63950557,15.67293452,-6.27015942,-0.63518936,-1.05105142,-0.10659939,2.62154016,0.50624976,3.00048820,-0.31985022 +2.96000000,-6.29643864,-0.62403295,15.67453303,-6.27078688,-0.61971759,-1.05115544,-0.10402062,2.62180757,0.50649102,3.00051414,-0.31211535 +2.96100000,-6.29704720,-0.60855880,15.67609287,-6.27139886,-0.60424428,-1.05125688,-0.10144160,2.62206852,0.50673226,3.00054009,-0.30437957 +2.96200000,-6.29764028,-0.59308314,15.67761402,-6.27199536,-0.58876949,-1.05135574,-0.09886232,2.62232299,0.50697349,3.00056603,-0.29664292 +2.96300000,-6.29821789,-0.57760603,15.67909650,-6.27257640,-0.57329324,-1.05145202,-0.09628280,2.62257100,0.50721470,3.00059197,-0.28890539 +2.96400000,-6.29878002,-0.56212748,15.68054028,-6.27314195,-0.55781558,-1.05154573,-0.09370304,2.62281253,0.50745589,3.00061791,-0.28116702 +2.96500000,-6.29932666,-0.54664755,15.68194538,-6.27369203,-0.54233654,-1.05163685,-0.09112305,2.62304759,0.50769707,3.00064385,-0.27342782 +2.96600000,-6.29985783,-0.53116627,15.68331178,-6.27422662,-0.52685616,-1.05172539,-0.08854284,2.62327618,0.50793822,3.00066979,-0.26568782 +2.96700000,-6.30037351,-0.51568368,15.68463949,-6.27474574,-0.51137448,-1.05181136,-0.08596240,2.62349830,0.50817936,3.00069573,-0.25794702 +2.96800000,-6.30087371,-0.50019982,15.68592849,-6.27524937,-0.49589154,-1.05189474,-0.08338176,2.62371394,0.50842048,3.00072166,-0.25020545 +2.96900000,-6.30135843,-0.48471472,15.68717880,-6.27573752,-0.48040738,-1.05197554,-0.08080091,2.62392312,0.50866157,3.00074759,-0.24246313 +2.97000000,-6.30182766,-0.46922843,15.68839039,-6.27621019,-0.46492203,-1.05205376,-0.07821986,2.62412581,0.50890265,3.00077352,-0.23472008 +2.97100000,-6.30228140,-0.45374098,15.68956328,-6.27666736,-0.44943554,-1.05212940,-0.07563862,2.62432203,0.50914370,3.00079945,-0.22697632 +2.97200000,-6.30271965,-0.43825241,15.69069745,-6.27710906,-0.43394793,-1.05220245,-0.07305719,2.62451178,0.50938473,3.00082538,-0.21923186 +2.97300000,-6.30314241,-0.42276276,15.69179291,-6.27753526,-0.41845926,-1.05227293,-0.07047558,2.62469505,0.50962573,3.00085131,-0.21148673 +2.97400000,-6.30354968,-0.40727206,15.69284965,-6.27794597,-0.40296955,-1.05234082,-0.06789379,2.62487184,0.50986671,3.00087723,-0.20374094 +2.97500000,-6.30394146,-0.39178036,15.69386767,-6.27834120,-0.38747885,-1.05240614,-0.06531184,2.62504216,0.51010767,3.00090315,-0.19599451 +2.97600000,-6.30431775,-0.37628770,15.69484697,-6.27872093,-0.37198719,-1.05246886,-0.06272973,2.62520600,0.51034860,3.00092907,-0.18824747 +2.97700000,-6.30467855,-0.36079410,15.69578754,-6.27908517,-0.35649462,-1.05252901,-0.06014746,2.62536336,0.51058951,3.00095498,-0.18049983 +2.97800000,-6.30502385,-0.34529962,15.69668938,-6.27943392,-0.34100116,-1.05258658,-0.05756505,2.62551425,0.51083039,3.00098090,-0.17275161 +2.97900000,-6.30535365,-0.32980428,15.69755249,-6.27976718,-0.32550687,-1.05264156,-0.05498249,2.62565866,0.51107125,3.00100681,-0.16500283 +2.98000000,-6.30566796,-0.31430813,15.69837688,-6.28008493,-0.31001177,-1.05269396,-0.05239980,2.62579659,0.51131207,3.00103272,-0.15725350 +2.98100000,-6.30596677,-0.29881120,15.69916252,-6.28038720,-0.29451590,-1.05274378,-0.04981697,2.62592804,0.51155287,3.00105862,-0.14950366 +2.98200000,-6.30625008,-0.28331354,15.69990943,-6.28067397,-0.27901931,-1.05279101,-0.04723403,2.62605301,0.51179364,3.00108453,-0.14175331 +2.98300000,-6.30651790,-0.26781518,15.70061761,-6.28094524,-0.26352203,-1.05283566,-0.04465097,2.62617150,0.51203438,3.00111043,-0.13400248 +2.98400000,-6.30677021,-0.25231615,15.70128704,-6.28120101,-0.24802410,-1.05287773,-0.04206779,2.62628351,0.51227510,3.00113632,-0.12625119 +2.98500000,-6.30700703,-0.23681651,15.70191773,-6.28144128,-0.23252556,-1.05291721,-0.03948452,2.62638904,0.51251578,3.00116222,-0.11849945 +2.98600000,-6.30722835,-0.22131628,15.70250968,-6.28166606,-0.21702644,-1.05295412,-0.03690115,2.62648809,0.51275643,3.00118811,-0.11074728 +2.98700000,-6.30743416,-0.20581550,15.70306289,-6.28187534,-0.20152679,-1.05298843,-0.03431768,2.62658066,0.51299704,3.00121400,-0.10299470 +2.98800000,-6.30762448,-0.19031422,15.70357734,-6.28206911,-0.18602664,-1.05302017,-0.03173413,2.62666675,0.51323763,3.00123989,-0.09524174 +2.98900000,-6.30779929,-0.17481246,15.70405306,-6.28224739,-0.17052604,-1.05304932,-0.02915050,2.62674636,0.51347819,3.00126577,-0.08748841 +2.99000000,-6.30795860,-0.15931028,15.70449002,-6.28241017,-0.15502501,-1.05307588,-0.02656681,2.62681948,0.51371871,3.00129165,-0.07973473 +2.99100000,-6.30810241,-0.14380770,15.70488823,-6.28255744,-0.13952360,-1.05309987,-0.02398304,2.62688613,0.51395919,3.00131753,-0.07198072 +2.99200000,-6.30823071,-0.12830477,15.70524770,-6.28268921,-0.12402184,-1.05312127,-0.02139922,2.62694629,0.51419964,3.00134340,-0.06422640 +2.99300000,-6.30834351,-0.11280152,15.70556841,-6.28280548,-0.10851978,-1.05314008,-0.01881534,2.62699998,0.51444006,3.00136927,-0.05647178 +2.99400000,-6.30844081,-0.09729799,15.70585037,-6.28290625,-0.09301745,-1.05315631,-0.01623142,2.62704718,0.51468044,3.00139514,-0.04871689 +2.99500000,-6.30852261,-0.08179422,15.70609358,-6.28299152,-0.07751489,-1.05316996,-0.01364745,2.62708789,0.51492079,3.00142101,-0.04096175 +2.99600000,-6.30858890,-0.06629025,15.70629804,-6.28306128,-0.06201215,-1.05318102,-0.01106346,2.62712213,0.51516110,3.00144687,-0.03320637 +2.99700000,-6.30863968,-0.05078612,15.70646374,-6.28311554,-0.04650924,-1.05318950,-0.00847943,2.62714988,0.51540137,3.00147272,-0.02545078 +2.99800000,-6.30867496,-0.03528186,15.70659069,-6.28315430,-0.03100623,-1.05319540,-0.00589539,2.62717116,0.51564160,3.00149858,-0.01769499 +2.99900000,-6.30869474,-0.01977751,15.70667888,-6.28317756,-0.01550313,-1.05319871,-0.00331133,2.62718595,0.51588179,3.00152442,-0.00993903 +3.00000000,-6.30869901,-0.00427312,15.70672832,-6.28318531,-0.00000000,-1.05319944,-0.00072726,2.62719425,0.51612195,3.00155027,-0.00218290 +3.00100000,-6.30868778,0.01123129,15.70673900,-6.28317756,0.01550313,-1.05319758,0.00185681,2.62719608,0.51636206,3.00157611,0.00557336 +3.00200000,-6.30866105,0.02673566,15.70671093,-6.28315430,0.03100623,-1.05319314,0.00444088,2.62719142,0.51660214,3.00160195,0.01332974 +3.00300000,-6.30861881,0.04223997,15.70664410,-6.28311554,0.04650924,-1.05318611,0.00702493,2.62718028,0.51684217,3.00162778,0.02108623 +3.00400000,-6.30856106,0.05774418,15.70653852,-6.28306128,0.06201215,-1.05317651,0.00960897,2.62716266,0.51708216,3.00165361,0.02884279 +3.00500000,-6.30848782,0.07324825,15.70639419,-6.28299152,0.07751489,-1.05316431,0.01219298,2.62713856,0.51732211,3.00167944,0.03659942 +3.00600000,-6.30839906,0.08875213,15.70621110,-6.28290625,0.09301745,-1.05314954,0.01477696,2.62710797,0.51756202,3.00170526,0.04435609 +3.00700000,-6.30829481,0.10425579,15.70598926,-6.28280548,0.10851978,-1.05313218,0.01736091,2.62707090,0.51780188,3.00173108,0.05211278 +3.00800000,-6.30817505,0.11975920,15.70572866,-6.28268921,0.12402184,-1.05311223,0.01994481,2.62702735,0.51804170,3.00175689,0.05986948 +3.00900000,-6.30803979,0.13526231,15.70542931,-6.28255744,0.13952360,-1.05308970,0.02252867,2.62697732,0.51828148,3.00178270,0.06762617 +3.01000000,-6.30788902,0.15076509,15.70509121,-6.28241017,0.15502501,-1.05306459,0.02511247,2.62692080,0.51852121,3.00180851,0.07538282 +3.01100000,-6.30772275,0.16626750,15.70471436,-6.28224739,0.17052604,-1.05303689,0.02769620,2.62685781,0.51876089,3.00183431,0.08313942 +3.01200000,-6.30754098,0.18176950,15.70429876,-6.28206911,0.18602664,-1.05300661,0.03027987,2.62678833,0.51900053,3.00186010,0.09089594 +3.01300000,-6.30734371,0.19727104,15.70384442,-6.28187534,0.20152679,-1.05297375,0.03286347,2.62671237,0.51924012,3.00188589,0.09865238 +3.01400000,-6.30713094,0.21277210,15.70335132,-6.28166606,0.21702644,-1.05293830,0.03544698,2.62662993,0.51947966,3.00191168,0.10640870 +3.01500000,-6.30690267,0.22827264,15.70281948,-6.28144128,0.23252556,-1.05290027,0.03803041,2.62654101,0.51971916,3.00193746,0.11416490 +3.01600000,-6.30665890,0.24377261,15.70224889,-6.28120101,0.24802410,-1.05285966,0.04061374,2.62644561,0.51995861,3.00196324,0.12192094 +3.01700000,-6.30639962,0.25927199,15.70163956,-6.28094524,0.26352203,-1.05281646,0.04319697,2.62634372,0.52019800,3.00198901,0.12967682 +3.01800000,-6.30612485,0.27477072,15.70099148,-6.28067397,0.27901931,-1.05277068,0.04578009,2.62623536,0.52043735,3.00201477,0.13743251 +3.01900000,-6.30583458,0.29026877,15.70030467,-6.28038720,0.29451590,-1.05272232,0.04836310,2.62612052,0.52067665,3.00204054,0.14518800 +3.02000000,-6.30552882,0.30576611,15.69957911,-6.28008493,0.31001177,-1.05267137,0.05094600,2.62599920,0.52091589,3.00206629,0.15294326 +3.02100000,-6.30520756,0.32126269,15.69881482,-6.27976718,0.32550687,-1.05261784,0.05352876,2.62587140,0.52115509,3.00209205,0.16069828 +3.02200000,-6.30487080,0.33675848,15.69801180,-6.27943392,0.34100116,-1.05256173,0.05611140,2.62573712,0.52139423,3.00211779,0.16845303 +3.02300000,-6.30451854,0.35225344,15.69717004,-6.27908517,0.35649462,-1.05250304,0.05869389,2.62559636,0.52163332,3.00214353,0.17620750 +3.02400000,-6.30415080,0.36774753,15.69628955,-6.27872093,0.37198719,-1.05244176,0.06127625,2.62544912,0.52187235,3.00216927,0.18396166 +3.02500000,-6.30376756,0.38324071,15.69537033,-6.27834120,0.38747885,-1.05237790,0.06385845,2.62529540,0.52211134,3.00219500,0.19171551 +3.02600000,-6.30336882,0.39873295,15.69441238,-6.27794597,0.40296955,-1.05231146,0.06644049,2.62513521,0.52235026,3.00222073,0.19946901 +3.02700000,-6.30295460,0.41422420,15.69341571,-6.27753526,0.41845926,-1.05224244,0.06902237,2.62496854,0.52258913,3.00224645,0.20722216 +3.02800000,-6.30252488,0.42971444,15.69238032,-6.27710906,0.43394793,-1.05217084,0.07160408,2.62479539,0.52282795,3.00227216,0.21497492 +3.02900000,-6.30207968,0.44520361,15.69130621,-6.27666736,0.44943554,-1.05209665,0.07418561,2.62461577,0.52306671,3.00229787,0.22272729 +3.03000000,-6.30161899,0.46069168,15.69019338,-6.27621019,0.46492203,-1.05201988,0.07676696,2.62442967,0.52330541,3.00232357,0.23047924 +3.03100000,-6.30114281,0.47617861,15.68904184,-6.27573752,0.48040738,-1.05194054,0.07934812,2.62423709,0.52354406,3.00234927,0.23823076 +3.03200000,-6.30065115,0.49166438,15.68785158,-6.27524937,0.49589154,-1.05185861,0.08192908,2.62403804,0.52378264,3.00237496,0.24598182 +3.03300000,-6.30014400,0.50714892,15.68662262,-6.27474574,0.51137448,-1.05177410,0.08450984,2.62383252,0.52402117,3.00240065,0.25373240 +3.03400000,-6.29962136,0.52263222,15.68535495,-6.27422662,0.52685616,-1.05168701,0.08709039,2.62362052,0.52425964,3.00242633,0.26148249 +3.03500000,-6.29908325,0.53811423,15.68404858,-6.27369203,0.54233654,-1.05159734,0.08967073,2.62340204,0.52449805,3.00245200,0.26923207 +3.03600000,-6.29852966,0.55359491,15.68270351,-6.27314195,0.55781558,-1.05150509,0.09225085,2.62317710,0.52473640,3.00247767,0.27698111 +3.03700000,-6.29796058,0.56907422,15.68131975,-6.27257640,0.57329324,-1.05141025,0.09483074,2.62294568,0.52497469,3.00250333,0.28472961 +3.03800000,-6.29737603,0.58455213,15.67989729,-6.27199536,0.58876949,-1.05131284,0.09741039,2.62270779,0.52521291,3.00252899,0.29247753 +3.03900000,-6.29677600,0.60002860,15.67843615,-6.27139886,0.60424428,-1.05121285,0.09998981,2.62246343,0.52545108,3.00255464,0.30022486 +3.04000000,-6.29616050,0.61550358,15.67693632,-6.27078688,0.61971759,-1.05111029,0.10256898,2.62221260,0.52568918,3.00258028,0.30797158 +3.04100000,-6.29552952,0.63097705,15.67539781,-6.27015942,0.63518936,-1.05100514,0.10514789,2.62195530,0.52592721,3.00260591,0.31571768 +3.04200000,-6.29488307,0.64644896,15.67382062,-6.26951650,0.65065957,-1.05089741,0.10772655,2.62169152,0.52616519,3.00263155,0.32346312 +3.04300000,-6.29422115,0.66191928,15.67220476,-6.26885810,0.66612817,-1.05078711,0.11030494,2.62142128,0.52640310,3.00265717,0.33120791 +3.04400000,-6.29354376,0.67738796,15.67055023,-6.26818424,0.68159513,-1.05067422,0.11288305,2.62114458,0.52664094,3.00268279,0.33895200 +3.04500000,-6.29285091,0.69285497,15.66885703,-6.26749491,0.69706041,-1.05055876,0.11546089,2.62086140,0.52687872,3.00270840,0.34669539 +3.04600000,-6.29214259,0.70832027,15.66712517,-6.26679012,0.71252397,-1.05044072,0.11803845,2.62057176,0.52711643,3.00273400,0.35443806 +3.04700000,-6.29141880,0.72378382,15.66535466,-6.26606987,0.72798577,-1.05032011,0.12061571,2.62027565,0.52735407,3.00275960,0.36217998 +3.04800000,-6.29067956,0.73924559,15.66354549,-6.26533415,0.74344577,-1.05019692,0.12319267,2.61997308,0.52759165,3.00278519,0.36992114 +3.04900000,-6.28992485,0.75470554,15.66169767,-6.26458298,0.75890394,-1.05007115,0.12576934,2.61966404,0.52782916,3.00281077,0.37766152 +3.05000000,-6.28915469,0.77016362,15.65981121,-6.26381634,0.77436024,-1.04994280,0.12834569,2.61934854,0.52806660,3.00283635,0.38540109 +3.05100000,-6.28836907,0.78561980,15.65788611,-6.26303426,0.78981462,-1.04981188,0.13092172,2.61902657,0.52830397,3.00286192,0.39313985 +3.05200000,-6.28756800,0.80107404,15.65592238,-6.26223672,0.80526706,-1.04967838,0.13349743,2.61869814,0.52854127,3.00288748,0.40087777 +3.05300000,-6.28675147,0.81652631,15.65392001,-6.26142372,0.82071751,-1.04954231,0.13607281,2.61836325,0.52877850,3.00291303,0.40861483 +3.05400000,-6.28591949,0.83197656,15.65187903,-6.26059528,0.83616593,-1.04940366,0.13864786,2.61802191,0.52901566,3.00293858,0.41635101 +3.05500000,-6.28507207,0.84742476,15.64979942,-6.25975139,0.85161230,-1.04926244,0.14122256,2.61767410,0.52925275,3.00296412,0.42408629 +3.05600000,-6.28420920,0.86287087,15.64768120,-6.25889206,0.86705656,-1.04911864,0.14379692,2.61731983,0.52948976,3.00298966,0.43182066 +3.05700000,-6.28333088,0.87831485,15.64552437,-6.25801728,0.88249868,-1.04897227,0.14637092,2.61695910,0.52972670,3.00301518,0.43955410 +3.05800000,-6.28243713,0.89375666,15.64332893,-6.25712706,0.89793862,-1.04882333,0.14894456,2.61659192,0.52996357,3.00304070,0.44728658 +3.05900000,-6.28152793,0.90919627,15.64109490,-6.25622140,0.91337635,-1.04867181,0.15151783,2.61621828,0.53020037,3.00306621,0.45501808 +3.06000000,-6.28060330,0.92463363,15.63882228,-6.25530031,0.92881182,-1.04851772,0.15409073,2.61583819,0.53043709,3.00309172,0.46274860 +3.06100000,-6.27966323,0.94006871,15.63651106,-6.25436378,0.94424501,-1.04836105,0.15666325,2.61545164,0.53067373,3.00311721,0.47047810 +3.06200000,-6.27870773,0.95550147,15.63416127,-6.25341182,0.95967586,-1.04820182,0.15923538,2.61505864,0.53091030,3.00314270,0.47820657 +3.06300000,-6.27773679,0.97093188,15.63177290,-6.25244443,0.97510434,-1.04804001,0.16180712,2.61465918,0.53114680,3.00316818,0.48593399 +3.06400000,-6.27675043,0.98635989,15.62934596,-6.25146161,0.99053042,-1.04787563,0.16437846,2.61425328,0.53138321,3.00319365,0.49366034 +3.06500000,-6.27574865,1.00178546,15.62688045,-6.25046337,1.00595406,-1.04770868,0.16694939,2.61384092,0.53161955,3.00321912,0.50138561 +3.06600000,-6.27473144,1.01720857,15.62437639,-6.24944970,1.02137521,-1.04753916,0.16951991,2.61342212,0.53185581,3.00324458,0.50910976 +3.06700000,-6.27369881,1.03262916,15.62183378,-6.24842062,1.03679384,-1.04736707,0.17209002,2.61299686,0.53209200,3.00327002,0.51683279 +3.06800000,-6.27265076,1.04804720,15.61925262,-6.24737612,1.05220992,-1.04719241,0.17465970,2.61256516,0.53232810,3.00329547,0.52455467 +3.06900000,-6.27158730,1.06346266,15.61663292,-6.24631620,1.06762340,-1.04701518,0.17722894,2.61212701,0.53256412,3.00332090,0.53227539 +3.07000000,-6.27050843,1.07887550,15.61397469,-6.24524087,1.08303424,-1.04683539,0.17979776,2.61168242,0.53280006,3.00334632,0.53999493 +3.07100000,-6.26941414,1.09428567,15.61127794,-6.24415013,1.09844241,-1.04665302,0.18236612,2.61123138,0.53303593,3.00337174,0.54771326 +3.07200000,-6.26830445,1.10969315,15.60854266,-6.24304399,1.11384787,-1.04646809,0.18493404,2.61077390,0.53327171,3.00339715,0.55543037 +3.07300000,-6.26717935,1.12509788,15.60576887,-6.24192244,1.12925059,-1.04628059,0.18750150,2.61030998,0.53350740,3.00342255,0.56314623 +3.07400000,-6.26603885,1.14049984,15.60295658,-6.24078549,1.14465051,-1.04609052,0.19006850,2.60983962,0.53374302,3.00344794,0.57086084 +3.07500000,-6.26488295,1.15589899,15.60010579,-6.23963314,1.16004762,-1.04589788,0.19263503,2.60936282,0.53397855,3.00347332,0.57857417 +3.07600000,-6.26371165,1.17129528,15.59721650,-6.23846539,1.17544186,-1.04570268,0.19520108,2.60887958,0.53421400,3.00349869,0.58628619 +3.07700000,-6.26252497,1.18668868,15.59428873,-6.23728226,1.19083320,-1.04550491,0.19776665,2.60838990,0.53444936,3.00352406,0.59399690 +3.07800000,-6.26132289,1.20207916,15.59132249,-6.23608373,1.20622160,-1.04530458,0.20033174,2.60789379,0.53468464,3.00354942,0.60170627 +3.07900000,-6.26010542,1.21746667,15.58831777,-6.23486981,1.22160702,-1.04510169,0.20289633,2.60739124,0.53491984,3.00357476,0.60941429 +3.08000000,-6.25887257,1.23285117,15.58527459,-6.23364051,1.23698943,-1.04489623,0.20546042,2.60688226,0.53515494,3.00360010,0.61712093 +3.08100000,-6.25762434,1.24823264,15.58219296,-6.23239583,1.25236879,-1.04468820,0.20802400,2.60636685,0.53538996,3.00362543,0.62482618 +3.08200000,-6.25636073,1.26361102,15.57907287,-6.23113578,1.26774506,-1.04447761,0.21058707,2.60584500,0.53562489,3.00365075,0.63253001 +3.08300000,-6.25508174,1.27898629,15.57591435,-6.22986035,1.28311820,-1.04426446,0.21314962,2.60531673,0.53585974,3.00367607,0.64023241 +3.08400000,-6.25378738,1.29435840,15.57271740,-6.22856954,1.29848818,-1.04404875,0.21571164,2.60478203,0.53609450,3.00370137,0.64793335 +3.08500000,-6.25247765,1.30972731,15.56948202,-6.22726337,1.31385495,-1.04383048,0.21827313,2.60424090,0.53632916,3.00372666,0.65563283 +3.08600000,-6.25115256,1.32509300,15.56620823,-6.22594183,1.32921848,-1.04360965,0.22083409,2.60369334,0.53656374,3.00375195,0.66333082 +3.08700000,-6.24981210,1.34045541,15.56289602,-6.22460493,1.34457873,-1.04338625,0.22339449,2.60313936,0.53679823,3.00377722,0.67102729 +3.08800000,-6.24845629,1.35581452,15.55954542,-6.22325268,1.35993566,-1.04316030,0.22595435,2.60257896,0.53703262,3.00380249,0.67872224 +3.08900000,-6.24708512,1.37117028,15.55615643,-6.22188506,1.37528924,-1.04293178,0.22851365,2.60201213,0.53726693,3.00382775,0.68641564 +3.09000000,-6.24569860,1.38652266,15.55272905,-6.22050210,1.39063942,-1.04270071,0.23107238,2.60143889,0.53750114,3.00385299,0.69410748 +3.09100000,-6.24429673,1.40187162,15.54926330,-6.21910379,1.40598617,-1.04246708,0.23363055,2.60085923,0.53773526,3.00387823,0.70179772 +3.09200000,-6.24287951,1.41721712,15.54575918,-6.21769013,1.42132945,-1.04223089,0.23618814,2.60027314,0.53796929,3.00390346,0.70948637 +3.09300000,-6.24144695,1.43255912,15.54221670,-6.21626113,1.43666923,-1.04199215,0.23874514,2.59968065,0.53820322,3.00392868,0.71717339 +3.09400000,-6.23999905,1.44789759,15.53863588,-6.21481679,1.45200546,-1.04175085,0.24130156,2.59908174,0.53843706,3.00395389,0.72485876 +3.09500000,-6.23853582,1.46323248,15.53501671,-6.21335712,1.46733811,-1.04150699,0.24385738,2.59847641,0.53867080,3.00397909,0.73254248 +3.09600000,-6.23705726,1.47856377,15.53135922,-6.21188212,1.48266714,-1.04126058,0.24641260,2.59786468,0.53890445,3.00400428,0.74022451 +3.09700000,-6.23556336,1.49389140,15.52766340,-6.21039179,1.49799250,-1.04101161,0.24896721,2.59724653,0.53913801,3.00402946,0.74790485 +3.09800000,-6.23405415,1.50921535,15.52392927,-6.20888613,1.51331418,-1.04076009,0.25152121,2.59662198,0.53937146,3.00405463,0.75558346 +3.09900000,-6.23252961,1.52453558,15.52015683,-6.20736516,1.52863212,-1.04050601,0.25407459,2.59599102,0.53960482,3.00407979,0.76326034 +3.10000000,-6.23098976,1.53985205,15.51634610,-6.20582887,1.54394628,-1.04024939,0.25662734,2.59535365,0.53983808,3.00410494,0.77093546 +3.10100000,-6.22943460,1.55516471,15.51249709,-6.20427727,1.55925664,-1.03999021,0.25917946,2.59470988,0.54007124,3.00413008,0.77860880 +3.10200000,-6.22786412,1.57047354,15.50860980,-6.20271036,1.57456315,-1.03972847,0.26173093,2.59405971,0.54030431,3.00415520,0.78628034 +3.10300000,-6.22627834,1.58577849,15.50468424,-6.20112814,1.58986578,-1.03946419,0.26428176,2.59340314,0.54053727,3.00418032,0.79395008 +3.10400000,-6.22467726,1.60107953,15.50072043,-6.19953063,1.60516448,-1.03919736,0.26683194,2.59274016,0.54077014,3.00420543,0.80161798 +3.10500000,-6.22306089,1.61637662,15.49671837,-6.19791782,1.62045922,-1.03892798,0.26938146,2.59207079,0.54100290,3.00423053,0.80928402 +3.10600000,-6.22142922,1.63166972,15.49267807,-6.19628971,1.63574997,-1.03865605,0.27193032,2.59139503,0.54123556,3.00425562,0.81694820 +3.10700000,-6.21978226,1.64695880,15.48859955,-6.19464632,1.65103668,-1.03838157,0.27447851,2.59071287,0.54146812,3.00428070,0.82461048 +3.10800000,-6.21812002,1.66224381,15.48448281,-6.19298764,1.66631931,-1.03810454,0.27702601,2.59002432,0.54170058,3.00430576,0.83227085 +3.10900000,-6.21644249,1.67752472,15.48032786,-6.19131368,1.68159783,-1.03782497,0.27957284,2.58932938,0.54193294,3.00433082,0.83992930 +3.11000000,-6.21474969,1.69280149,15.47613472,-6.18962444,1.69687220,-1.03754285,0.28211897,2.58862805,0.54216519,3.00435586,0.84758579 +3.11100000,-6.21304162,1.70807409,15.47190339,-6.18791994,1.71214239,-1.03725819,0.28466441,2.58792033,0.54239734,3.00438090,0.85524032 +3.11200000,-6.21131827,1.72334247,15.46763389,-6.18620016,1.72740835,-1.03697098,0.28720915,2.58720623,0.54262938,3.00440592,0.86289287 +3.11300000,-6.20957967,1.73860660,15.46332622,-6.18446512,1.74267005,-1.03668123,0.28975318,2.58648574,0.54286132,3.00443094,0.87054341 +3.11400000,-6.20782580,1.75386643,15.45898040,-6.18271482,1.75792745,-1.03638893,0.29229649,2.58575887,0.54309315,3.00445594,0.87819192 +3.11500000,-6.20605668,1.76912195,15.45459643,-6.18094927,1.77318052,-1.03609409,0.29483908,2.58502562,0.54332487,3.00448093,0.88583840 +3.11600000,-6.20427231,1.78437309,15.45017433,-6.17916846,1.78842920,-1.03579671,0.29738094,2.58428599,0.54355649,3.00450591,0.89348281 +3.11700000,-6.20247269,1.79961983,15.44571411,-6.17737241,1.80367348,-1.03549679,0.29992208,2.58353999,0.54378800,3.00453088,0.90112514 +3.11800000,-6.20065782,1.81486214,15.44121578,-6.17556112,1.81891330,-1.03519433,0.30246247,2.58278761,0.54401941,3.00455584,0.90876537 +3.11900000,-6.19882772,1.83009996,15.43667935,-6.17373459,1.83414864,-1.03488932,0.30500211,2.58202886,0.54425070,3.00458078,0.91640348 +3.12000000,-6.19698239,1.84533327,15.43210483,-6.17189282,1.84937945,-1.03458178,0.30754100,2.58126374,0.54448189,3.00460572,0.92403945 +3.12100000,-6.19512183,1.86056202,15.42749223,-6.17003583,1.86460569,-1.03427170,0.31007913,2.58049224,0.54471296,3.00463064,0.93167327 +3.12200000,-6.19324604,1.87578619,15.42284157,-6.16816361,1.87982734,-1.03395909,0.31261650,2.57971439,0.54494393,3.00465555,0.93930491 +3.12300000,-6.19135504,1.89100573,15.41815285,-6.16627618,1.89504435,-1.03364393,0.31515310,2.57893016,0.54517478,3.00468046,0.94693435 +3.12400000,-6.18944882,1.90622060,15.41342609,-6.16437352,1.91025668,-1.03332624,0.31768892,2.57813958,0.54540552,3.00470535,0.95456158 +3.12500000,-6.18752738,1.92143076,15.40866130,-6.16245566,1.92546430,-1.03300602,0.32022395,2.57734263,0.54563615,3.00473022,0.96218658 +3.12600000,-6.18559075,1.93663619,15.40385849,-6.16052260,1.94066717,-1.03268326,0.32275819,2.57653932,0.54586667,3.00475509,0.96980933 +3.12700000,-6.18363891,1.95183684,15.39901767,-6.15857433,1.95586525,-1.03235797,0.32529164,2.57572966,0.54609707,3.00477994,0.97742980 +3.12800000,-6.18167188,1.96703267,15.39413886,-6.15661087,1.97105850,-1.03203015,0.32782429,2.57491363,0.54632737,3.00480479,0.98504799 +3.12900000,-6.17968966,1.98222365,15.38922206,-6.15463222,1.98624689,-1.03169979,0.33035612,2.57409126,0.54655754,3.00482962,0.99266387 +3.13000000,-6.17769225,1.99740973,15.38426729,-6.15263838,2.00143038,-1.03136690,0.33288715,2.57326254,0.54678760,3.00485444,1.00027742 +3.13100000,-6.17567965,2.01259089,15.37927456,-6.15062936,2.01660893,-1.03103149,0.33541735,2.57242746,0.54701755,3.00487924,1.00788862 +3.13200000,-6.17365189,2.02776709,15.37424389,-6.14860516,2.03178251,-1.03069354,0.33794672,2.57158604,0.54724738,3.00490404,1.01549746 +3.13300000,-6.17160895,2.04293828,15.36917528,-6.14656579,2.04695107,-1.03035306,0.34047526,2.57073827,0.54747709,3.00492882,1.02310391 +3.13400000,-6.16955084,2.05810443,15.36406874,-6.14451126,2.06211458,-1.03001006,0.34300296,2.56988416,0.54770669,3.00495359,1.03070796 +3.13500000,-6.16747758,2.07326550,15.35892430,-6.14244157,2.07727301,-1.02966453,0.34552981,2.56902371,0.54793617,3.00497835,1.03830959 +3.13600000,-6.16538916,2.08842145,15.35374196,-6.14035672,2.09242631,-1.02931648,0.34805581,2.56815692,0.54816553,3.00500309,1.04590878 +3.13700000,-6.16328559,2.10357225,15.34852174,-6.13825671,2.10757444,-1.02896589,0.35058095,2.56728380,0.54839477,3.00502783,1.05350551 +3.13800000,-6.16116687,2.11871787,15.34326365,-6.13614157,2.12271738,-1.02861279,0.35310522,2.56640434,0.54862389,3.00505255,1.06109976 +3.13900000,-6.15903301,2.13385825,15.33796770,-6.13401128,2.13785507,-1.02825716,0.35562863,2.56551854,0.54885289,3.00507726,1.06869151 +3.14000000,-6.15688402,2.14899337,15.33263390,-6.13186586,2.15298750,-1.02789901,0.35815116,2.56462642,0.54908177,3.00510196,1.07628074 +3.14100000,-6.15471989,2.16412319,15.32726227,-6.12970531,2.16811461,-1.02753834,0.36067280,2.56372797,0.54931053,3.00512664,1.08386744 +3.14200000,-6.15254065,2.17924766,15.32185283,-6.12752963,2.18323637,-1.02717514,0.36319355,2.56282319,0.54953917,3.00515131,1.09145158 +3.14300000,-6.15034628,2.19436676,15.31640558,-6.12533884,2.19835274,-1.02680943,0.36571341,2.56191209,0.54976768,3.00517597,1.09903315 +3.14400000,-6.14813680,2.20948045,15.31092053,-6.12313293,2.21346369,-1.02644120,0.36823237,2.56099467,0.54999608,3.00520061,1.10661213 +3.14500000,-6.14591221,2.22458868,15.30539771,-6.12091191,2.22856918,-1.02607045,0.37075041,2.56007093,0.55022435,3.00522525,1.11418850 +3.14600000,-6.14367252,2.23969143,15.29983712,-6.11867579,2.24366917,-1.02569718,0.37326754,2.55914087,0.55045249,3.00524987,1.12176224 +3.14700000,-6.14141773,2.25478865,15.29423879,-6.11642458,2.25876362,-1.02532140,0.37578375,2.55820450,0.55068051,3.00527447,1.12933332 +3.14800000,-6.13914785,2.26988030,15.28860271,-6.11415827,2.27385250,-1.02494310,0.37829904,2.55726182,0.55090841,3.00529907,1.13690175 +3.14900000,-6.13686288,2.28496636,15.28292891,-6.11187687,2.28893577,-1.02456228,0.38081339,2.55631282,0.55113618,3.00532365,1.14446748 +3.15000000,-6.13456284,2.30004677,15.27721741,-6.10958040,2.30401339,-1.02417896,0.38332680,2.55535752,0.55136382,3.00534822,1.15203051 +3.15100000,-6.13224771,2.31512151,15.27146820,-6.10726885,2.31908533,-1.02379312,0.38583926,2.55439591,0.55159134,3.00537277,1.15959081 +3.15200000,-6.12991752,2.33019054,15.26568132,-6.10494223,2.33415154,-1.02340477,0.38835078,2.55342800,0.55181873,3.00539731,1.16714838 +3.15300000,-6.12757227,2.34525382,15.25985677,-6.10260055,2.34921200,-1.02301390,0.39086133,2.55245379,0.55204599,3.00542184,1.17470318 +3.15400000,-6.12521196,2.36031132,15.25399457,-6.10024381,2.36426666,-1.02262053,0.39337092,2.55147329,0.55227313,3.00544635,1.18225520 +3.15500000,-6.12283660,2.37536298,15.24809473,-6.09787201,2.37931548,-1.02222465,0.39587954,2.55048648,0.55250013,3.00547085,1.18980442 +3.15600000,-6.12044619,2.39040879,15.24215727,-6.09548518,2.39435844,-1.02182627,0.39838718,2.54949339,0.55272701,3.00549534,1.19735082 +3.15700000,-6.11804074,2.40544870,15.23618219,-6.09308330,2.40939548,-1.02142537,0.40089384,2.54849400,0.55295375,3.00551982,1.20489438 +3.15800000,-6.11562026,2.42048268,15.23016953,-6.09066639,2.42442658,-1.02102197,0.40339951,2.54748833,0.55318037,3.00554428,1.21243509 +3.15900000,-6.11318474,2.43551068,15.22411928,-6.08823445,2.43945170,-1.02061607,0.40590419,2.54647636,0.55340685,3.00556872,1.21997293 +3.16000000,-6.11073421,2.45053267,15.21803147,-6.08578749,2.45447080,-1.02020766,0.40840786,2.54545812,0.55363320,3.00559316,1.22750787 +3.16100000,-6.10826866,2.46554862,15.21190612,-6.08332551,2.46948385,-1.01979675,0.41091053,2.54443360,0.55385942,3.00561758,1.23503990 +3.16200000,-6.10578811,2.48055848,15.20574322,-6.08084852,2.48449080,-1.01938334,0.41341218,2.54340279,0.55408550,3.00564198,1.24256900 +3.16300000,-6.10329254,2.49556223,15.19954281,-6.07835653,2.49949162,-1.01896743,0.41591281,2.54236571,0.55431146,3.00566637,1.25009515 +3.16400000,-6.10078198,2.51055981,15.19330490,-6.07584954,2.51448628,-1.01854901,0.41841242,2.54132236,0.55453727,3.00569075,1.25761833 +3.16500000,-6.09825643,2.52555120,15.18702950,-6.07332756,2.52947473,-1.01812810,0.42091099,2.54027274,0.55476296,3.00571511,1.26513852 +3.16600000,-6.09571590,2.54053636,15.18071662,-6.07079059,2.54445693,-1.01770469,0.42340852,2.53921685,0.55498851,3.00573946,1.27265571 +3.16700000,-6.09316038,2.55551525,15.17436629,-6.06823865,2.55943286,-1.01727879,0.42590501,2.53815470,0.55521392,3.00576380,1.28016987 +3.16800000,-6.09058989,2.57048783,15.16797852,-6.06567173,2.57440248,-1.01685039,0.42840045,2.53708628,0.55543919,3.00578812,1.28768099 +3.16900000,-6.08800444,2.58545408,15.16155332,-6.06308984,2.58936574,-1.01641949,0.43089483,2.53601160,0.55566433,3.00581243,1.29518905 +3.17000000,-6.08540402,2.60041394,15.15509071,-6.06049300,2.60432262,-1.01598611,0.43338815,2.53493067,0.55588934,3.00583672,1.30269402 +3.17100000,-6.08278866,2.61536739,15.14859071,-6.05788120,2.61927306,-1.01555023,0.43588040,2.53384348,0.55611420,3.00586100,1.31019590 +3.17200000,-6.08015834,2.63031438,15.14205333,-6.05525446,2.63421705,-1.01511185,0.43837158,2.53275003,0.55633893,3.00588526,1.31769466 +3.17300000,-6.07751309,2.64525488,15.13547858,-6.05261277,2.64915453,-1.01467099,0.44086167,2.53165034,0.55656351,3.00590951,1.32519028 +3.17400000,-6.07485290,2.66018886,15.12886650,-6.04995615,2.66408548,-1.01422764,0.44335067,2.53054440,0.55678796,3.00593374,1.33268275 +3.17500000,-6.07217778,2.67511627,15.12221708,-6.04728460,2.67900986,-1.01378180,0.44583858,2.52943222,0.55701227,3.00595796,1.34017204 +3.17600000,-6.06948775,2.69003709,15.11553035,-6.04459813,2.69392762,-1.01333348,0.44832539,2.52831380,0.55723643,3.00598217,1.34765814 +3.17700000,-6.06678279,2.70495126,15.10880633,-6.04189675,2.70883874,-1.01288267,0.45081110,2.52718914,0.55746046,3.00600636,1.35514103 +3.17800000,-6.06406294,2.71985876,15.10204502,-6.03918046,2.72374318,-1.01242937,0.45329569,2.52605824,0.55768434,3.00603053,1.36262069 +3.17900000,-6.06132818,2.73475955,15.09524645,-6.03644926,2.73864089,-1.01197359,0.45577916,2.52492111,0.55790808,3.00605469,1.37009710 +3.18000000,-6.05857852,2.74965359,15.08841064,-6.03370318,2.75353185,-1.01151533,0.45826151,2.52377775,0.55813168,3.00607884,1.37757024 +3.18100000,-6.05581398,2.76454085,15.08153759,-6.03094220,2.76841601,-1.01105459,0.46074273,2.52262817,0.55835513,3.00610297,1.38504010 +3.18200000,-6.05303456,2.77942129,15.07462734,-6.02816635,2.78329334,-1.01059136,0.46322281,2.52147235,0.55857844,3.00612708,1.39250665 +3.18300000,-6.05024027,2.79429487,15.06767989,-6.02537562,2.79816381,-1.01012566,0.46570175,2.52031032,0.55880161,3.00615118,1.39996987 +3.18400000,-6.04743110,2.80916155,15.06069526,-6.02257002,2.81302737,-1.00965748,0.46817954,2.51914207,0.55902463,3.00617527,1.40742976 +3.18500000,-6.04460708,2.82402130,15.05367347,-6.01974957,2.82788399,-1.00918683,0.47065618,2.51796760,0.55924751,3.00619934,1.41488629 +3.18600000,-6.04176821,2.83887409,15.04661453,-6.01691426,2.84273363,-1.00871370,0.47313165,2.51678692,0.55947023,3.00622339,1.42233943 +3.18700000,-6.03891449,2.85371987,15.03951847,-6.01406410,2.85757626,-1.00823809,0.47560595,2.51560003,0.55969282,3.00624743,1.42978918 +3.18800000,-6.03604593,2.86855860,15.03238531,-6.01119911,2.87241183,-1.00776001,0.47807909,2.51440694,0.55991525,3.00627146,1.43723551 +3.18900000,-6.03316254,2.88339026,15.02521505,-6.00831928,2.88724032,-1.00727946,0.48055104,2.51320763,0.56013754,3.00629547,1.44467841 +3.19000000,-6.03026432,2.89821481,15.01800771,-6.00542463,2.90206169,-1.00679644,0.48302181,2.51200213,0.56035967,3.00631946,1.45211785 +3.19100000,-6.02735129,2.91303221,15.01076332,-6.00251516,2.91687589,-1.00631095,0.48549138,2.51079043,0.56058166,3.00634344,1.45955382 +3.19200000,-6.02442345,2.92784241,15.00348190,-5.99959088,2.93168290,-1.00582299,0.48795976,2.50957254,0.56080350,3.00636740,1.46698631 +3.19300000,-6.02148080,2.94264540,14.99616345,-5.99665179,2.94648268,-1.00533256,0.49042693,2.50834845,0.56102519,3.00639134,1.47441528 +3.19400000,-6.01852336,2.95744112,14.98880800,-5.99369791,2.96127518,-1.00483967,0.49289289,2.50711817,0.56124673,3.00641527,1.48184072 +3.19500000,-6.01555113,2.97222954,14.98141557,-5.99072925,2.97606038,-1.00434431,0.49535764,2.50588171,0.56146812,3.00643919,1.48926262 +3.19600000,-6.01256412,2.98701064,14.97398618,-5.98774580,2.99083823,-1.00384649,0.49782116,2.50463906,0.56168936,3.00646309,1.49668096 +3.19700000,-6.00956234,3.00178436,14.96651983,-5.98474757,3.00560871,-1.00334620,0.50028346,2.50339024,0.56191044,3.00648697,1.50409571 +3.19800000,-6.00654579,3.01655067,14.95901656,-5.98173458,3.02037176,-1.00284346,0.50274452,2.50213523,0.56213137,3.00651084,1.51150685 +3.19900000,-6.00351448,3.03130954,14.95147638,-5.97870683,3.03512737,-1.00233826,0.50520434,2.50087406,0.56235215,3.00653469,1.51891438 +3.20000000,-6.00046842,3.04606094,14.94389930,-5.97566433,3.04987549,-1.00183059,0.50766292,2.49960671,0.56257277,3.00655852,1.52631827 +3.20100000,-5.99740761,3.06080481,14.93628536,-5.97260708,3.06461608,-1.00132047,0.51012024,2.49833320,0.56279324,3.00658234,1.53371851 +3.20200000,-5.99433207,3.07554114,14.92863456,-5.96953510,3.07934911,-1.00080790,0.51257630,2.49705352,0.56301356,3.00660614,1.54111506 +3.20300000,-5.99124180,3.09026987,14.92094692,-5.96644839,3.09407454,-1.00029286,0.51503110,2.49576768,0.56323372,3.00662993,1.54850793 +3.20400000,-5.98813681,3.10499098,14.91322247,-5.96334695,3.10879234,-0.99977538,0.51748463,2.49447568,0.56345372,3.00665370,1.55589708 +3.20500000,-5.98501711,3.11970443,14.90546122,-5.96023081,3.12350247,-0.99925544,0.51993688,2.49317752,0.56367357,3.00667745,1.56328250 +3.20600000,-5.98188270,3.13441018,14.89766319,-5.95709995,3.13820489,-0.99873306,0.52238785,2.49187322,0.56389325,3.00670118,1.57066417 +3.20700000,-5.97873359,3.14910820,14.88982841,-5.95395440,3.15289957,-0.99820822,0.52483753,2.49056276,0.56411279,3.00672490,1.57804207 +3.20800000,-5.97556979,3.16379845,14.88195688,-5.95079415,3.16758646,-0.99768093,0.52728591,2.48924617,0.56433216,3.00674861,1.58541619 +3.20900000,-5.97239131,3.17848089,14.87404864,-5.94761923,3.18226555,-0.99715120,0.52973300,2.48792343,0.56455137,3.00677229,1.59278650 +3.21000000,-5.96919815,3.19315549,14.86610369,-5.94442963,3.19693678,-0.99661902,0.53217877,2.48659455,0.56477043,3.00679596,1.60015299 +3.21100000,-5.96599033,3.20782221,14.85812207,-5.94122536,3.21160012,-0.99608440,0.53462324,2.48525953,0.56498932,3.00681962,1.60751563 +3.21200000,-5.96276785,3.22248101,14.85010378,-5.93800643,3.22625554,-0.99554733,0.53706638,2.48391838,0.56520806,3.00684325,1.61487442 +3.21300000,-5.95953072,3.23713187,14.84204885,-5.93477285,3.24090299,-0.99500782,0.53950820,2.48257111,0.56542663,3.00686687,1.62222933 +3.21400000,-5.95627894,3.25177473,14.83395730,-5.93152463,3.25554245,-0.99446587,0.54194869,2.48121771,0.56564505,3.00689047,1.62958034 +3.21500000,-5.95301253,3.26640958,14.82582915,-5.92826177,3.27017388,-0.99392149,0.54438784,2.47985818,0.56586330,3.00691406,1.63692744 +3.21600000,-5.94973150,3.28103636,14.81766442,-5.92498428,3.28479724,-0.99337466,0.54682564,2.47849254,0.56608138,3.00693763,1.64427061 +3.21700000,-5.94643584,3.29565505,14.80946313,-5.92169217,3.29941250,-0.99282540,0.54926210,2.47712078,0.56629931,3.00696118,1.65160982 +3.21800000,-5.94312558,3.31026560,14.80122529,-5.91838546,3.31401961,-0.99227370,0.55169720,2.47574291,0.56651707,3.00698471,1.65894506 +3.21900000,-5.93980071,3.32486799,14.79295094,-5.91506414,3.32861855,-0.99171957,0.55413095,2.47435893,0.56673467,3.00700823,1.66627632 +3.22000000,-5.93646125,3.33946218,14.78464008,-5.91172822,3.34320927,-0.99116301,0.55656332,2.47296885,0.56695210,3.00703173,1.67360356 +3.22100000,-5.93310720,3.35404812,14.77629274,-5.90837772,3.35779174,-0.99060401,0.55899432,2.47157266,0.56716937,3.00705521,1.68092679 +3.22200000,-5.92973857,3.36862579,14.76790895,-5.90501264,3.37236593,-0.99004259,0.56142394,2.47017038,0.56738647,3.00707868,1.68824597 +3.22300000,-5.92635538,3.38319515,14.75948871,-5.90163299,3.38693180,-0.98947874,0.56385218,2.46876200,0.56760340,3.00710212,1.69556109 +3.22400000,-5.92295762,3.39775616,14.75103206,-5.89823878,3.40148931,-0.98891246,0.56627902,2.46734753,0.56782017,3.00712555,1.70287213 +3.22500000,-5.91954531,3.41230878,14.74253902,-5.89483002,3.41603843,-0.98834375,0.56870447,2.46592697,0.56803677,3.00714897,1.71017907 +3.22600000,-5.91611846,3.42685299,14.73400959,-5.89140671,3.43057912,-0.98777262,0.57112852,2.46450032,0.56825321,3.00717236,1.71748189 +3.22700000,-5.91267707,3.44138874,14.72544381,-5.88796886,3.44511134,-0.98719907,0.57355115,2.46306760,0.56846947,3.00719574,1.72478058 +3.22800000,-5.90922116,3.45591600,14.71684170,-5.88451649,3.45963507,-0.98662310,0.57597237,2.46162880,0.56868557,3.00721910,1.73207512 +3.22900000,-5.90575072,3.47043473,14.70820327,-5.88104959,3.47415026,-0.98604471,0.57839217,2.46018392,0.56890149,3.00724244,1.73936548 +3.23000000,-5.90226578,3.48494490,14.69952856,-5.87756819,3.48865687,-0.98546390,0.58081054,2.45873298,0.56911725,3.00726576,1.74665166 +3.23100000,-5.89876633,3.49944647,14.69081757,-5.87407228,3.50315488,-0.98488067,0.58322748,2.45727597,0.56933283,3.00728907,1.75393363 +3.23200000,-5.89525239,3.51393941,14.68207034,-5.87056188,3.51764425,-0.98429503,0.58564298,2.45581289,0.56954825,3.00731235,1.76121138 +3.23300000,-5.89172397,3.52842368,14.67328687,-5.86703700,3.53212493,-0.98370697,0.58805704,2.45434375,0.56976349,3.00733562,1.76848488 +3.23400000,-5.88818107,3.54289924,14.66446721,-5.86349764,3.54659690,-0.98311650,0.59046964,2.45286856,0.56997856,3.00735888,1.77575412 +3.23500000,-5.88462370,3.55736605,14.65561136,-5.85994381,3.56106012,-0.98252362,0.59288079,2.45138732,0.57019346,3.00738211,1.78301907 +3.23600000,-5.88105188,3.57182409,14.64671935,-5.85637552,3.57551455,-0.98192833,0.59529047,2.44990003,0.57040819,3.00740532,1.79027973 +3.23700000,-5.87746560,3.58627332,14.63779120,-5.85279278,3.58996016,-0.98133063,0.59769869,2.44840669,0.57062274,3.00742852,1.79753608 +3.23800000,-5.87386489,3.60071370,14.62882693,-5.84919560,3.60439692,-0.98073053,0.60010543,2.44690731,0.57083711,3.00745170,1.80478809 +3.23900000,-5.87024974,3.61514519,14.61982656,-5.84558399,3.61882478,-0.98012801,0.60251069,2.44540190,0.57105131,3.00747486,1.81203574 +3.24000000,-5.86662018,3.62956777,14.61079013,-5.84195796,3.63324371,-0.97952310,0.60491446,2.44389045,0.57126534,3.00749800,1.81927903 +3.24100000,-5.86297620,3.64398139,14.60171764,-5.83831751,3.64765367,-0.97891578,0.60731674,2.44237297,0.57147919,3.00752112,1.82651793 +3.24200000,-5.85931781,3.65838601,14.59260912,-5.83466265,3.66205464,-0.97830607,0.60971752,2.44084946,0.57169287,3.00754423,1.83375242 +3.24300000,-5.85564503,3.67278162,14.58346460,-5.83099340,3.67644656,-0.97769395,0.61211680,2.43931994,0.57190636,3.00756731,1.84098248 +3.24400000,-5.85195786,3.68716815,14.57428409,-5.82730976,3.69082942,-0.97707943,0.61451457,2.43778439,0.57211968,3.00759038,1.84820810 +3.24500000,-5.84825631,3.70154559,14.56506763,-5.82361174,3.70520317,-0.97646252,0.61691082,2.43624283,0.57233283,3.00761343,1.85542926 +3.24600000,-5.84454040,3.71591390,14.55581522,-5.81989936,3.71956778,-0.97584322,0.61930555,2.43469525,0.57254579,3.00763646,1.86264594 +3.24700000,-5.84081013,3.73027304,14.54652690,-5.81617261,3.73392321,-0.97522152,0.62169875,2.43314167,0.57275857,3.00765947,1.86985813 +3.24800000,-5.83706550,3.74462298,14.53720269,-5.81243151,3.74826943,-0.97459743,0.62409042,2.43158209,0.57297118,3.00768246,1.87706580 +3.24900000,-5.83330654,3.75896367,14.52784261,-5.80867608,3.76260640,-0.97397095,0.62648054,2.43001650,0.57318360,3.00770543,1.88426893 +3.25000000,-5.82953325,3.77329509,14.51844668,-5.80490630,3.77693409,-0.97334208,0.62886912,2.42844492,0.57339585,3.00772839,1.89146751 +3.25100000,-5.82574563,3.78761720,14.50901493,-5.80112221,3.79125246,-0.97271082,0.63125615,2.42686735,0.57360791,3.00775132,1.89866153 +3.25200000,-5.82194370,3.80192997,14.49954738,-5.79732380,3.80556147,-0.97207718,0.63364162,2.42528379,0.57381979,3.00777424,1.90585096 +3.25300000,-5.81812746,3.81623335,14.49004405,-5.79351109,3.81986109,-0.97144116,0.63602553,2.42369425,0.57403149,3.00779714,1.91303578 +3.25400000,-5.81429694,3.83052732,14.48050497,-5.78968408,3.83415129,-0.97080275,0.63840787,2.42209872,0.57424301,3.00782001,1.92021597 +3.25500000,-5.81045213,3.84481183,14.47093017,-5.78584279,3.84843202,-0.97016196,0.64078864,2.42049722,0.57445434,3.00784287,1.92739153 +3.25600000,-5.80659304,3.85908686,14.46131965,-5.78198722,3.86270326,-0.96951879,0.64316782,2.41888975,0.57466549,3.00786571,1.93456243 +3.25700000,-5.80271969,3.87335237,14.45167345,-5.77811739,3.87696498,-0.96887325,0.64554541,2.41727631,0.57487646,3.00788853,1.94172865 +3.25800000,-5.79883208,3.88760832,14.44199160,-5.77423330,3.89121712,-0.96822533,0.64792142,2.41565690,0.57508724,3.00791133,1.94889017 +3.25900000,-5.79493022,3.90185468,14.43227411,-5.77033496,3.90545966,-0.96757503,0.65029582,2.41403154,0.57529783,3.00793411,1.95604698 +3.26000000,-5.79101413,3.91609141,14.42252101,-5.76642238,3.91969257,-0.96692236,0.65266862,2.41240021,0.57550824,3.00795687,1.96319906 +3.26100000,-5.78708381,3.93031847,14.41273232,-5.76249557,3.93391580,-0.96626732,0.65503981,2.41076294,0.57571847,3.00797961,1.97034640 +3.26200000,-5.78313928,3.94453584,14.40290807,-5.75855455,3.94812933,-0.96560991,0.65740938,2.40911972,0.57592850,3.00800233,1.97748896 +3.26300000,-5.77918053,3.95874348,14.39304829,-5.75459932,3.96233312,-0.96495013,0.65977734,2.40747055,0.57613835,3.00802503,1.98462674 +3.26400000,-5.77520759,3.97294135,14.38315299,-5.75062989,3.97652713,-0.96428799,0.66214366,2.40581544,0.57634801,3.00804772,1.99175972 +3.26500000,-5.77122046,3.98712942,14.37322220,-5.74664627,3.99071133,-0.96362348,0.66450835,2.40415439,0.57655748,3.00807038,1.99888788 +3.26600000,-5.76721916,4.00130765,14.36325594,-5.74264847,4.00488568,-0.96295661,0.66687140,2.40248742,0.57676677,3.00809302,2.00601120 +3.26700000,-5.76320368,4.01547600,14.35325425,-5.73863650,4.01905015,-0.96228738,0.66923280,2.40081451,0.57697586,3.00811564,2.01312966 +3.26800000,-5.75917405,4.02963445,14.34321714,-5.73461037,4.03320471,-0.96161579,0.67159255,2.39913569,0.57718477,3.00813824,2.02024325 +3.26900000,-5.75513026,4.04378296,14.33314464,-5.73057009,4.04734931,-0.96094183,0.67395065,2.39745094,0.57739348,3.00816083,2.02735195 +3.27000000,-5.75107234,4.05792148,14.32303677,-5.72651568,4.06148392,-0.96026553,0.67630708,2.39576028,0.57760200,3.00818339,2.03445573 +3.27100000,-5.74700029,4.07205000,14.31289356,-5.72244713,4.07560852,-0.95958687,0.67866185,2.39406370,0.57781034,3.00820593,2.04155460 +3.27200000,-5.74291412,4.08616847,14.30271504,-5.71836446,4.08972306,-0.95890585,0.68101494,2.39236122,0.57801848,3.00822845,2.04864851 +3.27300000,-5.73881385,4.10027685,14.29250123,-5.71426769,4.10382751,-0.95822248,0.68336635,2.39065283,0.57822642,3.00825095,2.05573746 +3.27400000,-5.73469947,4.11437512,14.28225215,-5.71015681,4.11792183,-0.95753677,0.68571607,2.38893855,0.57843418,3.00827343,2.06282144 +3.27500000,-5.73057101,4.12846324,14.27196783,-5.70603185,4.13200599,-0.95684870,0.68806410,2.38721837,0.57864174,3.00829589,2.06990041 +3.27600000,-5.72642847,4.14254117,14.26164829,-5.70189280,4.14607995,-0.95615829,0.69041044,2.38549231,0.57884910,3.00831833,2.07697437 +3.27700000,-5.72227186,4.15660888,14.25129357,-5.69773969,4.16014369,-0.95546554,0.69275507,2.38376035,0.57905628,3.00834075,2.08404329 +3.27800000,-5.71810119,4.17066633,14.24090368,-5.69357252,4.17419716,-0.95477044,0.69509799,2.38202252,0.57926325,3.00836315,2.09110717 +3.27900000,-5.71391648,4.18471349,14.23047866,-5.68939130,4.18824033,-0.95407300,0.69743919,2.38027880,0.57947003,3.00838553,2.09816597 +3.28000000,-5.70971773,4.19875033,14.22001852,-5.68519604,4.20227317,-0.95337322,0.69977868,2.37852922,0.57967662,3.00840789,2.10521969 +3.28100000,-5.70550495,4.21277680,14.20952329,-5.68098676,4.21629564,-0.95267111,0.70211643,2.37677376,0.57988301,3.00843022,2.11226830 +3.28200000,-5.70127816,4.22679288,14.19899301,-5.67676345,4.23030770,-0.95196665,0.70445246,2.37501244,0.58008920,3.00845254,2.11931179 +3.28300000,-5.69703736,4.24079854,14.18842769,-5.67252614,4.24430933,-0.95125987,0.70678675,2.37324526,0.58029519,3.00847484,2.12635015 +3.28400000,-5.69278257,4.25479373,14.17782736,-5.66827484,4.25830049,-0.95055075,0.70911929,2.37147223,0.58050099,3.00849711,2.13338334 +3.28500000,-5.68851379,4.26877842,14.16719204,-5.66400955,4.27228114,-0.94983930,0.71145009,2.36969334,0.58070659,3.00851936,2.14041136 +3.28600000,-5.68423103,4.28275257,14.15652178,-5.65973028,4.28625124,-0.94912552,0.71377912,2.36790860,0.58091198,3.00854159,2.14743418 +3.28700000,-5.67993432,4.29671616,14.14581658,-5.65543705,4.30021077,-0.94840941,0.71610640,2.36611803,0.58111718,3.00856381,2.15445180 +3.28800000,-5.67562365,4.31066915,14.13507647,-5.65112986,4.31415969,-0.94769098,0.71843191,2.36432161,0.58132218,3.00858600,2.16146419 +3.28900000,-5.67129904,4.32461151,14.12430150,-5.64680873,4.32809797,-0.94697022,0.72075565,2.36251936,0.58152698,3.00860816,2.16847133 +3.29000000,-5.66696049,4.33854319,14.11349167,-5.64247367,4.34202557,-0.94624715,0.72307761,2.36071129,0.58173157,3.00863031,2.17547321 +3.29100000,-5.66260803,4.35246416,14.10264701,-5.63812468,4.35594245,-0.94552175,0.72539778,2.35889738,0.58193597,3.00865244,2.18246981 +3.29200000,-5.65824166,4.36637440,14.09176756,-5.63376179,4.36984859,-0.94479403,0.72771617,2.35707766,0.58214016,3.00867454,2.18946111 +3.29300000,-5.65386138,4.38027387,14.08085334,-5.62938499,4.38374394,-0.94406400,0.73003276,2.35525212,0.58234415,3.00869663,2.19644710 +3.29400000,-5.64946722,4.39416252,14.06990438,-5.62499430,4.39762848,-0.94333165,0.73234755,2.35342077,0.58254794,3.00871869,2.20342775 +3.29500000,-5.64505918,4.40804034,14.05892070,-5.62058974,4.41150216,-0.94259699,0.73466053,2.35158361,0.58275152,3.00874073,2.21040306 +3.29600000,-5.64063727,4.42190727,14.04790233,-5.61617130,4.42536496,-0.94186002,0.73697170,2.34974065,0.58295490,3.00876275,2.21737299 +3.29700000,-5.63620151,4.43576330,14.03684929,-5.61173901,4.43921684,-0.94112074,0.73928105,2.34789190,0.58315807,3.00878475,2.22433754 +3.29800000,-5.63175190,4.44960838,14.02576163,-5.60729287,4.45305777,-0.94037915,0.74158857,2.34603735,0.58336104,3.00880672,2.23129669 +3.29900000,-5.62728846,4.46344249,14.01463935,-5.60283290,4.46688771,-0.93963526,0.74389427,2.34417701,0.58356381,3.00882868,2.23825041 +3.30000000,-5.62281119,4.47726558,14.00348250,-5.59835910,4.48070663,-0.93888906,0.74619813,2.34231088,0.58376636,3.00885061,2.24519870 +3.30100000,-5.61832011,4.49107762,13.99229109,-5.59387149,4.49451450,-0.93814056,0.74850015,2.34043898,0.58396871,3.00887252,2.25214154 +3.30200000,-5.61381524,4.50487858,13.98106516,-5.58937008,4.50831127,-0.93738976,0.75080033,2.33856130,0.58417086,3.00889441,2.25907890 +3.30300000,-5.60929657,4.51866843,13.96980473,-5.58485487,4.52209692,-0.93663666,0.75309865,2.33667785,0.58437279,3.00891627,2.26601077 +3.30400000,-5.60476412,4.53244712,13.95850984,-5.58032589,4.53587142,-0.93588126,0.75539511,2.33478864,0.58457452,3.00893812,2.27293713 +3.30500000,-5.60021791,4.54621463,13.94718050,-5.57578313,4.54963472,-0.93512357,0.75768971,2.33289367,0.58477604,3.00895994,2.27985797 +3.30600000,-5.59565793,4.55997093,13.93581675,-5.57122662,4.56338679,-0.93436359,0.75998243,2.33099294,0.58497735,3.00898174,2.28677327 +3.30700000,-5.59108422,4.57371598,13.92441861,-5.56665636,4.57712761,-0.93360132,0.76227329,2.32908645,0.58517845,3.00900352,2.29368301 +3.30800000,-5.58649677,4.58744973,13.91298611,-5.56207237,4.59085713,-0.93283676,0.76456226,2.32717422,0.58537934,3.00902527,2.30058717 +3.30900000,-5.58189560,4.60117217,13.90151929,-5.55747465,4.60457532,-0.93206991,0.76684935,2.32525625,0.58558002,3.00904701,2.30748573 +3.31000000,-5.57728071,4.61488326,13.89001816,-5.55286322,4.61828215,-0.93130077,0.76913454,2.32333254,0.58578049,3.00906872,2.31437869 +3.31100000,-5.57265213,4.62858296,13.87848277,-5.54823809,4.63197759,-0.93052936,0.77141784,2.32140310,0.58598074,3.00909041,2.32126602 +3.31200000,-5.56800986,4.64227124,13.86691312,-5.54359927,4.64566160,-0.92975566,0.77369923,2.31946793,0.58618079,3.00911207,2.32814770 +3.31300000,-5.56335391,4.65594807,13.85530927,-5.53894677,4.65933415,-0.92897968,0.77597872,2.31752704,0.58638062,3.00913372,2.33502372 +3.31400000,-5.55868430,4.66961340,13.84367122,-5.53428061,4.67299520,-0.92820142,0.77825628,2.31558043,0.58658024,3.00915534,2.34189405 +3.31500000,-5.55400103,4.68326722,13.83199902,-5.52960079,4.68664472,-0.92742089,0.78053193,2.31362811,0.58677964,3.00917694,2.34875869 +3.31600000,-5.54930412,4.69690948,13.82029269,-5.52490732,4.70028267,-0.92663808,0.78280566,2.31167008,0.58697883,3.00919851,2.35561762 +3.31700000,-5.54459358,4.71054015,13.80855226,-5.52020022,4.71390903,-0.92585301,0.78507745,2.30970634,0.58717781,3.00922007,2.36247081 +3.31800000,-5.53986942,4.72415920,13.79677776,-5.51547951,4.72752376,-0.92506566,0.78734730,2.30773690,0.58737657,3.00924160,2.36931826 +3.31900000,-5.53513165,4.73776659,13.78496921,-5.51074518,4.74112682,-0.92427604,0.78961521,2.30576178,0.58757512,3.00926311,2.37615994 +3.32000000,-5.53038029,4.75136229,13.77312665,-5.50599726,4.75471818,-0.92348416,0.79188118,2.30378096,0.58777344,3.00928459,2.38299583 +3.32100000,-5.52561535,4.76494627,13.76125011,-5.50123575,4.76829781,-0.92269002,0.79414519,2.30179445,0.58797156,3.00930605,2.38982592 +3.32200000,-5.52083683,4.77851849,13.74933961,-5.49646066,4.78186568,-0.92189361,0.79640724,2.29980227,0.58816945,3.00932749,2.39665020 +3.32300000,-5.51604475,4.79207892,13.73739519,-5.49167202,4.79542175,-0.92109494,0.79866732,2.29780441,0.58836713,3.00934891,2.40346864 +3.32400000,-5.51123912,4.80562753,13.72541687,-5.48686983,4.80896599,-0.92029402,0.80092544,2.29580089,0.58856459,3.00937030,2.41028123 +3.32500000,-5.50641996,4.81916428,13.71340469,-5.48205409,4.82249836,-0.91949084,0.80318158,2.29379170,0.58876183,3.00939167,2.41708795 +3.32600000,-5.50158727,4.83268913,13.70135866,-5.47722483,4.83601883,-0.91868540,0.80543573,2.29177684,0.58895886,3.00941302,2.42388878 +3.32700000,-5.49674107,4.84620207,13.68927884,-5.47238206,4.84952737,-0.91787771,0.80768790,2.28975634,0.58915566,3.00943434,2.43068371 +3.32800000,-5.49188136,4.85970304,13.67716523,-5.46752578,4.86302394,-0.91706777,0.80993808,2.28773018,0.58935224,3.00945564,2.43747272 +3.32900000,-5.48700817,4.87319203,13.66501788,-5.46265601,4.87650851,-0.91625559,0.81218626,2.28569838,0.58954861,3.00947692,2.44425579 +3.33000000,-5.48212150,4.88666899,13.65283681,-5.45777277,4.88998105,-0.91544115,0.81443243,2.28366094,0.58974475,3.00949817,2.45103291 +3.33100000,-5.47722137,4.90013389,13.64062205,-5.45287606,4.90344153,-0.91462448,0.81667659,2.28161787,0.58994067,3.00951941,2.45780406 +3.33200000,-5.47230778,4.91358671,13.62837363,-5.44796589,4.91688991,-0.91380556,0.81891874,2.27956916,0.59013637,3.00954061,2.46456922 +3.33300000,-5.46738075,4.92702740,13.61609159,-5.44304228,4.93032615,-0.91298440,0.82115887,2.27751483,0.59033184,3.00956180,2.47132837 +3.33400000,-5.46244030,4.94045593,13.60377596,-5.43810524,4.94375023,-0.91216100,0.82339697,2.27545488,0.59052710,3.00958295,2.47808150 +3.33500000,-5.45748643,4.95387227,13.59142675,-5.43315478,4.95716212,-0.91133537,0.82563305,2.27338932,0.59072213,3.00960409,2.48482859 +3.33600000,-5.45251915,4.96727639,13.57904401,-5.42819092,4.97056177,-0.91050750,0.82786708,2.27131815,0.59091694,3.00962520,2.49156963 +3.33700000,-5.44753848,4.98066825,13.56662777,-5.42321366,4.98394915,-0.90967740,0.83009907,2.26924137,0.59111152,3.00964629,2.49830459 +3.33800000,-5.44254443,4.99404783,13.55417805,-5.41822303,4.99732424,-0.90884508,0.83232901,2.26715899,0.59130587,3.00966736,2.50503346 +3.33900000,-5.43753702,5.00741508,13.54169489,-5.41321902,5.01068700,-0.90801052,0.83455690,2.26507102,0.59150001,3.00968840,2.51175622 +3.34000000,-5.43251625,5.02076997,13.52917831,-5.40820166,5.02403740,-0.90717374,0.83678273,2.26297746,0.59169391,3.00970941,2.51847286 +3.34100000,-5.42748214,5.03411248,13.51662835,-5.40317095,5.03737540,-0.90633473,0.83900650,2.26087832,0.59188759,3.00973041,2.52518336 +3.34200000,-5.42243469,5.04744257,13.50404504,-5.39812691,5.05070097,-0.90549350,0.84122819,2.25877360,0.59208105,3.00975138,2.53188771 +3.34300000,-5.41737393,5.06076020,13.49142841,-5.39306955,5.06401407,-0.90465005,0.84344781,2.25666330,0.59227427,3.00977232,2.53858588 +3.34400000,-5.41229987,5.07406534,13.47877850,-5.38799889,5.07731469,-0.90380439,0.84566535,2.25454744,0.59246727,3.00979324,2.54527785 +3.34500000,-5.40721251,5.08735797,13.46609532,-5.38291493,5.09060277,-0.90295651,0.84788080,2.25242602,0.59266004,3.00981414,2.55196362 +3.34600000,-5.40211187,5.10063804,13.45337892,-5.37781769,5.10387830,-0.90210641,0.85009416,2.25029903,0.59285258,3.00983501,2.55864317 +3.34700000,-5.39699797,5.11390553,13.44062932,-5.37270717,5.11714123,-0.90125411,0.85230542,2.24816650,0.59304490,3.00985586,2.56531647 +3.34800000,-5.39187081,5.12716040,13.42784656,-5.36758341,5.13039153,-0.90039959,0.85451458,2.24602841,0.59323698,3.00987668,2.57198351 +3.34900000,-5.38673040,5.14040262,13.41503067,-5.36244640,5.14362918,-0.89954287,0.85672163,2.24388479,0.59342883,3.00989748,2.57864428 +3.35000000,-5.38157677,5.15363215,13.40218167,-5.35729615,5.15685413,-0.89868394,0.85892657,2.24173563,0.59362046,3.00991826,2.58529876 +3.35100000,-5.37640992,5.16684897,13.38929961,-5.35213269,5.17006636,-0.89782282,0.86112939,2.23958093,0.59381185,3.00993901,2.59194693 +3.35200000,-5.37122987,5.18005304,13.37638451,-5.34695602,5.18326584,-0.89695949,0.86333008,2.23742072,0.59400301,3.00995973,2.59858877 +3.35300000,-5.36603662,5.19324433,13.36343641,-5.34176616,5.19645252,-0.89609396,0.86552864,2.23525498,0.59419394,3.00998044,2.60522428 +3.35400000,-5.36083020,5.20642280,13.35045533,-5.33656312,5.20962639,-0.89522623,0.86772507,2.23308372,0.59438463,3.01000111,2.61185342 +3.35500000,-5.35561061,5.21958843,13.33744132,-5.33134692,5.22278740,-0.89435631,0.86991935,2.23090696,0.59457510,3.01002177,2.61847619 +3.35600000,-5.35037787,5.23274118,13.32439439,-5.32611755,5.23593552,-0.89348420,0.87211149,2.22872469,0.59476533,3.01004239,2.62509257 +3.35700000,-5.34513199,5.24588102,13.31131458,-5.32087505,5.24907072,-0.89260990,0.87430148,2.22653692,0.59495532,3.01006300,2.63170253 +3.35800000,-5.33987298,5.25900792,13.29820194,-5.31561942,5.26219297,-0.89173341,0.87648931,2.22434366,0.59514509,3.01008357,2.63830608 +3.35900000,-5.33460086,5.27212183,13.28505648,-5.31035067,5.27530224,-0.89085474,0.87867498,2.22214491,0.59533461,3.01010413,2.64490318 +3.36000000,-5.32931564,5.28522274,13.27187824,-5.30506882,5.28839849,-0.88997388,0.88085848,2.21994067,0.59552391,3.01012465,2.65149382 +3.36100000,-5.32401733,5.29831061,13.25866725,-5.29977387,5.30148170,-0.88909084,0.88303980,2.21773096,0.59571296,3.01014516,2.65807799 +3.36200000,-5.31870594,5.31138541,13.24542355,-5.29446586,5.31455182,-0.88820562,0.88521895,2.21551578,0.59590178,3.01016564,2.66465567 +3.36300000,-5.31338150,5.32444710,13.23214716,-5.28914478,5.32760883,-0.88731822,0.88739591,2.21329513,0.59609037,3.01018609,2.67122684 +3.36400000,-5.30804400,5.33749565,13.21883813,-5.28381064,5.34065269,-0.88642865,0.88957069,2.21106902,0.59627871,3.01020652,2.67779148 +3.36500000,-5.30269347,5.35053104,13.20549648,-5.27846347,5.35368338,-0.88553691,0.89174327,2.20883745,0.59646682,3.01022692,2.68434959 +3.36600000,-5.29732992,5.36355322,13.19212225,-5.27310328,5.36670085,-0.88464299,0.89391364,2.20660044,0.59665470,3.01024730,2.69090113 +3.36700000,-5.29195335,5.37656217,13.17871547,-5.26773008,5.37970509,-0.88374691,0.89608182,2.20435798,0.59684233,3.01026765,2.69744611 +3.36800000,-5.28656380,5.38955785,13.16527617,-5.26234388,5.39269605,-0.88284866,0.89824778,2.20211008,0.59702972,3.01028797,2.70398449 +3.36900000,-5.28116126,5.40254023,13.15180438,-5.25694469,5.40567370,-0.88194825,0.90041152,2.19985674,0.59721688,3.01030828,2.71051626 +3.37000000,-5.27574575,5.41550928,13.13830015,-5.25153253,5.41863802,-0.88104568,0.90257305,2.19759798,0.59740379,3.01032855,2.71704142 +3.37100000,-5.27031728,5.42846497,13.12476349,-5.24610742,5.43158897,-0.88014095,0.90473234,2.19533380,0.59759047,3.01034880,2.72355993 +3.37200000,-5.26487587,5.44140727,13.11119446,-5.24066936,5.44452651,-0.87923406,0.90688941,2.19306420,0.59777690,3.01036903,2.73007179 +3.37300000,-5.25942154,5.45433614,13.09759307,-5.23521837,5.45745062,-0.87832501,0.90904424,2.19078918,0.59796309,3.01038923,2.73657697 +3.37400000,-5.25395429,5.46725155,13.08395937,-5.22975446,5.47036127,-0.87741382,0.91119682,2.18850877,0.59814905,3.01040940,2.74307547 +3.37500000,-5.24847413,5.48015348,13.07029338,-5.22427765,5.48325842,-0.87650047,0.91334715,2.18622295,0.59833475,3.01042955,2.74956726 +3.37600000,-5.24298109,5.49304188,13.05659514,-5.21878795,5.49614204,-0.87558497,0.91549524,2.18393174,0.59852022,3.01044967,2.75605233 +3.37700000,-5.23747517,5.50591672,13.04286469,-5.21328537,5.50901209,-0.87466733,0.91764106,2.18163514,0.59870544,3.01046977,2.76253067 +3.37800000,-5.23195640,5.51877798,13.02910205,-5.20776993,5.52186856,-0.87374755,0.91978462,2.17933315,0.59889042,3.01048984,2.76900224 +3.37900000,-5.22642477,5.53162563,13.01530727,-5.20224164,5.53471140,-0.87282562,0.92192591,2.17702579,0.59907516,3.01050988,2.77546705 +3.38000000,-5.22088031,5.54445962,13.00148037,-5.19670051,5.54754058,-0.87190156,0.92406492,2.17471306,0.59925965,3.01052990,2.78192508 +3.38100000,-5.21532303,5.55727994,12.98762139,-5.19114656,5.56035608,-0.87097536,0.92620166,2.17239496,0.59944390,3.01054989,2.78837630 +3.38200000,-5.20975294,5.57008654,12.97373037,-5.18557980,5.57315785,-0.87004702,0.92833610,2.17007151,0.59962790,3.01056986,2.79482070 +3.38300000,-5.20417006,5.58287940,12.95980733,-5.18000025,5.58594588,-0.86911655,0.93046826,2.16774269,0.59981166,3.01058980,2.80125826 +3.38400000,-5.19857441,5.59565849,12.94585232,-5.17440792,5.59872012,-0.86818395,0.93259813,2.16540853,0.59999517,3.01060972,2.80768898 +3.38500000,-5.19296598,5.60842376,12.93186536,-5.16880282,5.61148054,-0.86724923,0.93472569,2.16306903,0.60017843,3.01062961,2.81411283 +3.38600000,-5.18734481,5.62117520,12.91784650,-5.16318496,5.62422713,-0.86631238,0.93685094,2.16072419,0.60036144,3.01064947,2.82052979 +3.38700000,-5.18171089,5.63391277,12.90379577,-5.15755437,5.63695983,-0.86537340,0.93897389,2.15837401,0.60054421,3.01066930,2.82693985 +3.38800000,-5.17606426,5.64663644,12.88971319,-5.15191105,5.64967863,-0.86443231,0.94109451,2.15601851,0.60072673,3.01068911,2.83334300 +3.38900000,-5.17040491,5.65934617,12.87559881,-5.14625501,5.66238348,-0.86348910,0.94321282,2.15365770,0.60090901,3.01070890,2.83973922 +3.39000000,-5.16473287,5.67204195,12.86145266,-5.14058628,5.67507437,-0.86254377,0.94532879,2.15129156,0.60109103,3.01072865,2.84612849 +3.39100000,-5.15904815,5.68472372,12.84727478,-5.13490487,5.68775125,-0.86159633,0.94744244,2.14892012,0.60127280,3.01074838,2.85251079 +3.39200000,-5.15335075,5.69739147,12.83306520,-5.12921079,5.70041410,-0.86064677,0.94955375,2.14654338,0.60145433,3.01076809,2.85888612 +3.39300000,-5.14764071,5.71004516,12.81882395,-5.12350405,5.71306288,-0.85969511,0.95166271,2.14416134,0.60163560,3.01078776,2.86525444 +3.39400000,-5.14191803,5.72268477,12.80455107,-5.11778466,5.72569756,-0.85874134,0.95376933,2.14177401,0.60181662,3.01080742,2.87161576 +3.39500000,-5.13618271,5.73531025,12.79024660,-5.11205266,5.73831812,-0.85778547,0.95587359,2.13938140,0.60199739,3.01082704,2.87797005 +3.39600000,-5.13043479,5.74792158,12.77591057,-5.10630803,5.75092452,-0.85682749,0.95797549,2.13698351,0.60217791,3.01084664,2.88431729 +3.39700000,-5.12467427,5.76051873,12.76154302,-5.10055081,5.76351673,-0.85586742,0.96007503,2.13458034,0.60235818,3.01086621,2.89065747 +3.39800000,-5.11890117,5.77310167,12.74714398,-5.09478100,5.77609472,-0.85490524,0.96217220,2.13217191,0.60253820,3.01088575,2.89699058 +3.39900000,-5.11311550,5.78567036,12.73271349,-5.08899863,5.78865846,-0.85394098,0.96426700,2.12975821,0.60271796,3.01090527,2.90331660 +3.40000000,-5.10731728,5.79822477,12.71825158,-5.08320369,5.80120791,-0.85297462,0.96635942,2.12733927,0.60289747,3.01092476,2.90963550 +3.40100000,-5.10150651,5.81076488,12.70375829,-5.07739622,5.81374305,-0.85200617,0.96844945,2.12491507,0.60307673,3.01094422,2.91594729 +3.40200000,-5.09568322,5.82329065,12.68923365,-5.07157621,5.82626385,-0.85103563,0.97053710,2.12248563,0.60325573,3.01096366,2.92225193 +3.40300000,-5.08984742,5.83580206,12.67467771,-5.06574369,5.83877027,-0.85006301,0.97262235,2.12005095,0.60343447,3.01098307,2.92854942 +3.40400000,-5.08399912,5.84829906,12.66009049,-5.05989868,5.85126228,-0.84908830,0.97470520,2.11761104,0.60361296,3.01100245,2.93483974 +3.40500000,-5.07813834,5.86078163,12.64547204,-5.05404117,5.86373986,-0.84811152,0.97678564,2.11516591,0.60379120,3.01102180,2.94112287 +3.40600000,-5.07226509,5.87324974,12.63082238,-5.04817120,5.87620296,-0.84713265,0.97886368,2.11271556,0.60396918,3.01104113,2.94739879 +3.40700000,-5.06637939,5.88570336,12.61614156,-5.04228877,5.88865157,-0.84615171,0.98093930,2.11025999,0.60414690,3.01106043,2.95366750 +3.40800000,-5.06048124,5.89814246,12.60142960,-5.03639390,5.90108565,-0.84516870,0.98301250,2.10779922,0.60432437,3.01107970,2.95992897 +3.40900000,-5.05457068,5.91056701,12.58668656,-5.03048661,5.91350517,-0.84418362,0.98508327,2.10533325,0.60450158,3.01109895,2.96618319 +3.41000000,-5.04864770,5.92297697,12.57191246,-5.02456690,5.92591010,-0.84319647,0.98715161,2.10286208,0.60467853,3.01111817,2.97243015 +3.41100000,-5.04271233,5.93537232,12.55710734,-5.01863479,5.93830040,-0.84220725,0.98921752,2.10038572,0.60485523,3.01113736,2.97866983 +3.41200000,-5.03676457,5.94775302,12.54227123,-5.01269030,5.95067606,-0.84121597,0.99128099,2.09790418,0.60503166,3.01115652,2.98490220 +3.41300000,-5.03080446,5.96011904,12.52740418,-5.00673344,5.96303703,-0.84022263,0.99334201,2.09541747,0.60520784,3.01117566,2.99112727 +3.41400000,-5.02483199,5.97247036,12.51250622,-5.00076423,5.97538329,-0.83922723,0.99540057,2.09292558,0.60538375,3.01119476,2.99734500 +3.41500000,-5.01884718,5.98480695,12.49757739,-4.99478268,5.98771480,-0.83822977,0.99745669,2.09042853,0.60555941,3.01121385,3.00355539 +3.41600000,-5.01285005,5.99712877,12.48261772,-4.98878881,6.00003154,-0.83723026,0.99951034,2.08792633,0.60573480,3.01123290,3.00975842 +3.41700000,-5.00684061,6.00943578,12.46762725,-4.98278262,6.01233348,-0.83622870,1.00156153,2.08541897,0.60590994,3.01125192,3.01595407 +3.41800000,-5.00081889,6.02172798,12.45260601,-4.97676414,6.02462058,-0.83522509,1.00361024,2.08290646,0.60608481,3.01127092,3.02214234 +3.41900000,-4.99478488,6.03400531,12.43755406,-4.97073339,6.03689281,-0.83421943,1.00565648,2.08038882,0.60625943,3.01128989,3.02832319 +3.42000000,-4.98873861,6.04626776,12.42247141,-4.96469036,6.04915015,-0.83321173,1.00770024,2.07786604,0.60643378,3.01130883,3.03449662 +3.42100000,-4.98268010,6.05851528,12.40735811,-4.95863509,6.06139257,-0.83220199,1.00974151,2.07533814,0.60660786,3.01132775,3.04066262 +3.42200000,-4.97660935,6.07074786,12.39221420,-4.95256758,6.07362003,-0.83119021,1.01178029,2.07280511,0.60678169,3.01134663,3.04682116 +3.42300000,-4.97052638,6.08296546,12.37703971,-4.94648786,6.08583250,-0.83017639,1.01381657,2.07026697,0.60695525,3.01136549,3.05297223 +3.42400000,-4.96443122,6.09516805,12.36183469,-4.94039592,6.09802996,-0.82916054,1.01585035,2.06772373,0.60712855,3.01138432,3.05911582 +3.42500000,-4.95832386,6.10735560,12.34659916,-4.93429180,6.11021237,-0.82814266,1.01788163,2.06517538,0.60730158,3.01140312,3.06525191 +3.42600000,-4.95220433,6.11952808,12.33133316,-4.92817550,6.12237970,-0.82712275,1.01991039,2.06262193,0.60747435,3.01142190,3.07138048 +3.42700000,-4.94607265,6.13168546,12.31603675,-4.92204705,6.13453193,-0.82610081,1.02193664,2.06006340,0.60764685,3.01144064,3.07750152 +3.42800000,-4.93992882,6.14382771,12.30070994,-4.91590645,6.14666902,-0.82507685,1.02396036,2.05749978,0.60781909,3.01145936,3.08361501 +3.42900000,-4.93377286,6.15595481,12.28535278,-4.90975371,6.15879094,-0.82405087,1.02598156,2.05493109,0.60799107,3.01147805,3.08972094 +3.43000000,-4.92760480,6.16806671,12.26996531,-4.90358887,6.17089767,-0.82302287,1.02800023,2.05235732,0.60816277,3.01149671,3.09581930 +3.43100000,-4.92142463,6.18016340,12.25454757,-4.89741192,6.18298918,-0.82199285,1.03001636,2.04977850,0.60833421,3.01151534,3.10191006 +3.43200000,-4.91523239,6.19224483,12.23909958,-4.89122290,6.19506542,-0.82096082,1.03202995,2.04719461,0.60850538,3.01153394,3.10799322 +3.43300000,-4.90902808,6.20431099,12.22362140,-4.88502180,6.20712638,-0.81992678,1.03404099,2.04460567,0.60867629,3.01155252,3.11406875 +3.43400000,-4.90281172,6.21636184,12.20811306,-4.87880865,6.21917203,-0.81889073,1.03604948,2.04201169,0.60884692,3.01157107,3.12013664 +3.43500000,-4.89658332,6.22839735,12.19257460,-4.87258346,6.23120233,-0.81785268,1.03805542,2.03941267,0.60901729,3.01158958,3.12619688 +3.43600000,-4.89034290,6.24041749,12.17700605,-4.86634625,6.24321725,-0.81681262,1.04005879,2.03680862,0.60918739,3.01160807,3.13224945 +3.43700000,-4.88409048,6.25242223,12.16140746,-4.86009703,6.25521677,-0.81577056,1.04205960,2.03419954,0.60935722,3.01162653,3.13829433 +3.43800000,-4.87782607,6.26441155,12.14577886,-4.85383582,6.26720086,-0.81472650,1.04405783,2.03158545,0.60952678,3.01164497,3.14433152 +3.43900000,-4.87154968,6.27638541,12.13012029,-4.84756263,6.27916948,-0.81368045,1.04605349,2.02896634,0.60969607,3.01166337,3.15036099 +3.44000000,-4.86526134,6.28834379,12.11443179,-4.84127749,6.29112261,-0.81263240,1.04804657,2.02634222,0.60986509,3.01168175,3.15638273 +3.44100000,-4.85896105,6.30028664,12.09871341,-4.83498039,6.30306022,-0.81158236,1.05003707,2.02371311,0.61003384,3.01170009,3.16239673 +3.44200000,-4.85264884,6.31221396,12.08296516,-4.82867137,6.31498228,-0.81053034,1.05202497,2.02107900,0.61020232,3.01171841,3.16840296 +3.44300000,-4.84632471,6.32412569,12.06718711,-4.82235043,6.32688875,-0.80947633,1.05401027,2.01843990,0.61037052,3.01173670,3.17440142 +3.44400000,-4.83998869,6.33602183,12.05137928,-4.81601760,6.33877961,-0.80842034,1.05599298,2.01579583,0.61053845,3.01175496,3.18039209 +3.44500000,-4.83364079,6.34790233,12.03554172,-4.80967288,6.35065483,-0.80736236,1.05797308,2.01314678,0.61070612,3.01177319,3.18637496 +3.44600000,-4.82728102,6.35976716,12.01967446,-4.80331629,6.36251439,-0.80630241,1.05995057,2.01049276,0.61087350,3.01179139,3.19235000 +3.44700000,-4.82090940,6.37161631,12.00377754,-4.79694786,6.37435824,-0.80524049,1.06192544,2.00783378,0.61104062,3.01180956,3.19831721 +3.44800000,-4.81452596,6.38344973,11.98785101,-4.79056758,6.38618637,-0.80417659,1.06389770,2.00516985,0.61120746,3.01182770,3.20427656 +3.44900000,-4.80813069,6.39526741,11.97189489,-4.78417549,6.39799873,-0.80311072,1.06586733,2.00250097,0.61137402,3.01184582,3.21022805 +3.45000000,-4.80172362,6.40706930,11.95590924,-4.77777159,6.40979532,-0.80204289,1.06783433,1.99982715,0.61154031,3.01186390,3.21617166 +3.45100000,-4.79530476,6.41885538,11.93989409,-4.77135590,6.42157608,-0.80097309,1.06979869,1.99714840,0.61170633,3.01188196,3.22210738 +3.45200000,-4.78887414,6.43062563,11.92384947,-4.76492844,6.43334100,-0.79990133,1.07176042,1.99446471,0.61187207,3.01189998,3.22803518 +3.45300000,-4.78243176,6.44238001,11.90777544,-4.75848923,6.44509005,-0.79882761,1.07371950,1.99177611,0.61203754,3.01191798,3.23395506 +3.45400000,-4.77597764,6.45411849,11.89167203,-4.75203827,6.45682320,-0.79775193,1.07567593,1.98908259,0.61220272,3.01193595,3.23986699 +3.45500000,-4.76951180,6.46584105,11.87553927,-4.74557559,6.46854041,-0.79667430,1.07762970,1.98638417,0.61236764,3.01195389,3.24577098 +3.45600000,-4.76303425,6.47754766,11.85937721,-4.73910119,6.48024166,-0.79559472,1.07958082,1.98368084,0.61253227,3.01197179,3.25166699 +3.45700000,-4.75654501,6.48923828,11.84318589,-4.73261511,6.49192693,-0.79451319,1.08152928,1.98097262,0.61269663,3.01198967,3.25755501 +3.45800000,-4.75004410,6.50091289,11.82696535,-4.72611734,6.50359617,-0.79342972,1.08347506,1.97825951,0.61286071,3.01200752,3.26343504 +3.45900000,-4.74353153,6.51257146,11.81071563,-4.71960792,6.51524937,-0.79234430,1.08541817,1.97554152,0.61302451,3.01202534,3.26930705 +3.46000000,-4.73700731,6.52421396,11.79443677,-4.71308685,6.52688650,-0.79125694,1.08735861,1.97281866,0.61318803,3.01204313,3.27517103 +3.46100000,-4.73047147,6.53584037,11.77812880,-4.70655415,6.53850752,-0.79016765,1.08929636,1.97009093,0.61335127,3.01206089,3.28102697 +3.46200000,-4.72392402,6.54745064,11.76179178,-4.70000984,6.55011240,-0.78907641,1.09123142,1.96735833,0.61351424,3.01207862,3.28687484 +3.46300000,-4.71736498,6.55904476,11.74542573,-4.69345393,6.56170112,-0.78798325,1.09316379,1.96462088,0.61367692,3.01209632,3.29271465 +3.46400000,-4.71079436,6.57062270,11.72903070,-4.68688644,6.57327366,-0.78688816,1.09509347,1.96187859,0.61383932,3.01211399,3.29854636 +3.46500000,-4.70421217,6.58218443,11.71260674,-4.68030739,6.58482997,-0.78579114,1.09702044,1.95913145,0.61400145,3.01213163,3.30436997 +3.46600000,-4.69761844,6.59372991,11.69615387,-4.67371679,6.59637004,-0.78469219,1.09894470,1.95637949,0.61416329,3.01214924,3.31018546 +3.46700000,-4.69101318,6.60525912,11.67967214,-4.66711466,6.60789383,-0.78359133,1.10086626,1.95362269,0.61432485,3.01216683,3.31599282 +3.46800000,-4.68439641,6.61677204,11.66316160,-4.66050101,6.61940132,-0.78248854,1.10278509,1.95086107,0.61448613,3.01218438,3.32179203 +3.46900000,-4.67776814,6.62826863,11.64662228,-4.65387586,6.63089247,-0.78138384,1.10470121,1.94809464,0.61464712,3.01220190,3.32758308 +3.47000000,-4.67112839,6.63974887,11.63005422,-4.64723923,6.64236727,-0.78027722,1.10661460,1.94532340,0.61480783,3.01221939,3.33336596 +3.47100000,-4.66447718,6.65121272,11.61345747,-4.64059113,6.65382567,-0.77916870,1.10852526,1.94254737,0.61496826,3.01223685,3.33914064 +3.47200000,-4.65781452,6.66266016,11.59683206,-4.63393158,6.66526766,-0.77805827,1.11043319,1.93976654,0.61512841,3.01225428,3.34490712 +3.47300000,-4.65114043,6.67409117,11.58017804,-4.62726060,6.67669320,-0.77694593,1.11233837,1.93698092,0.61528827,3.01227168,3.35066537 +3.47400000,-4.64445492,6.68550570,11.56349545,-4.62057820,6.68810226,-0.77583169,1.11424081,1.93419053,0.61544785,3.01228905,3.35641539 +3.47500000,-4.63775802,6.69690374,11.54678432,-4.61388440,6.69949483,-0.77471555,1.11614050,1.93139536,0.61560714,3.01230639,3.36215716 +3.47600000,-4.63104973,6.70828525,11.53004471,-4.60717922,6.71087086,-0.77359751,1.11803744,1.92859543,0.61576615,3.01232370,3.36789067 +3.47700000,-4.62433008,6.71965022,11.51327664,-4.60046267,6.72223033,-0.77247758,1.11993162,1.92579074,0.61592487,3.01234098,3.37361590 +3.47800000,-4.61759908,6.73099860,11.49648017,-4.59373476,6.73357322,-0.77135575,1.12182303,1.92298129,0.61608331,3.01235823,3.37933283 +3.47900000,-4.61085675,6.74233037,11.47965533,-4.58699552,6.74489950,-0.77023204,1.12371168,1.92016710,0.61624146,3.01237544,3.38504146 +3.48000000,-4.60410311,6.75364551,11.46280217,-4.58024497,6.75620913,-0.76910645,1.12559755,1.91734818,0.61639932,3.01239263,3.39074177 +3.48100000,-4.59733816,6.76494399,11.44592073,-4.57348311,6.76750209,-0.76797896,1.12748065,1.91452452,0.61655690,3.01240979,3.39643374 +3.48200000,-4.59056194,6.77622577,11.42901104,-4.56670997,6.77877835,-0.76684960,1.12936096,1.91169614,0.61671419,3.01242691,3.40211736 +3.48300000,-4.58377445,6.78749083,11.41207315,-4.55992556,6.79003789,-0.76571837,1.13123849,1.90886305,0.61687119,3.01244401,3.40779262 +3.48400000,-4.57697571,6.79873915,11.39510711,-4.55312990,6.80128068,-0.76458525,1.13311323,1.90602524,0.61702790,3.01246107,3.41345950 +3.48500000,-4.57016574,6.80997069,11.37811295,-4.54632301,6.81250668,-0.76345027,1.13498517,1.90318273,0.61718433,3.01247811,3.41911798 +3.48600000,-4.56334455,6.82118543,11.36109072,-4.53950489,6.82371587,-0.76231341,1.13685431,1.90033552,0.61734046,3.01249511,3.42476806 +3.48700000,-4.55651217,6.83238333,11.34404045,-4.53267558,6.83490823,-0.76117469,1.13872065,1.89748363,0.61749631,3.01251208,3.43040971 +3.48800000,-4.54966860,6.84356438,11.32696220,-4.52583508,6.84608372,-0.76003411,1.14058417,1.89462705,0.61765187,3.01252903,3.43604293 +3.48900000,-4.54281388,6.85472854,11.30985599,-4.51898342,6.85724232,-0.75889166,1.14244489,1.89176580,0.61780713,3.01254594,3.44166770 +3.49000000,-4.53594800,6.86587579,11.29272188,-4.51212060,6.86838400,-0.75774736,1.14430278,1.88889988,0.61796211,3.01256282,3.44728400 +3.49100000,-4.52907099,6.87700610,11.27555991,-4.50524666,6.87950873,-0.75660120,1.14615785,1.88602930,0.61811679,3.01257966,3.45289182 +3.49200000,-4.52218288,6.88811944,11.25837012,-4.49836159,6.89061649,-0.75545319,1.14801009,1.88315407,0.61827119,3.01259648,3.45849115 +3.49300000,-4.51528366,6.89921579,11.24115255,-4.49146543,6.90170725,-0.75430333,1.14985950,1.88027419,0.61842529,3.01261327,3.46408198 +3.49400000,-4.50837336,6.91029511,11.22390724,-4.48455818,6.91278098,-0.75315163,1.15170607,1.87738967,0.61857910,3.01263002,3.46966428 +3.49500000,-4.50145201,6.92135738,11.20663424,-4.47763987,6.92383765,-0.75199808,1.15354980,1.87450052,0.61873262,3.01264675,3.47523805 +3.49600000,-4.49451960,6.93240257,11.18933359,-4.47071051,6.93487723,-0.75084269,1.15539068,1.87160675,0.61888584,3.01266344,3.48080327 +3.49700000,-4.48757617,6.94343066,11.17200533,-4.46377012,6.94589971,-0.74968546,1.15722872,1.86870835,0.61903877,3.01268010,3.48635993 +3.49800000,-4.48062173,6.95444161,11.15464951,-4.45681872,6.95690505,-0.74852639,1.15906389,1.86580535,0.61919141,3.01269673,3.49190801 +3.49900000,-4.47365630,6.96543541,11.13726616,-4.44985632,6.96789322,-0.74736550,1.16089621,1.86289774,0.61934376,3.01271333,3.49744749 +3.50000000,-4.46667988,6.97641202,11.11985533,-4.44288294,6.97886420,-0.74620277,1.16272566,1.85998554,0.61949581,3.01272990,3.50297837 +3.50100000,-4.45969251,6.98737142,11.10241707,-4.43589860,6.98981796,-0.74503822,1.16455225,1.85706874,0.61964756,3.01274644,3.50850064 +3.50200000,-4.45269420,6.99831357,11.08495141,-4.42890331,7.00075447,-0.74387184,1.16637596,1.85414737,0.61979902,3.01276294,3.51401427 +3.50300000,-4.44568496,7.00923846,11.06745841,-4.42189709,7.01167371,-0.74270365,1.16819679,1.85122142,0.61995019,3.01277942,3.51951925 +3.50400000,-4.43866482,7.02014605,11.04993809,-4.41487997,7.02257565,-0.74153363,1.17001474,1.84829090,0.62010105,3.01279586,3.52501557 +3.50500000,-4.43163378,7.03103632,11.03239051,-4.40785195,7.03346026,-0.74036180,1.17182981,1.84535582,0.62025163,3.01281227,3.53050322 +3.50600000,-4.42459187,7.04190925,11.01481571,-4.40081305,7.04432752,-0.73918816,1.17364198,1.84241619,0.62040190,3.01282865,3.53598217 +3.50700000,-4.41753910,7.05276479,10.99721374,-4.39376330,7.05517740,-0.73801271,1.17545125,1.83947201,0.62055188,3.01284499,3.54145243 +3.50800000,-4.41047550,7.06360294,10.97958463,-4.38670270,7.06600986,-0.73683545,1.17725763,1.83652329,0.62070156,3.01286131,3.54691397 +3.50900000,-4.40340108,7.07442366,10.96192843,-4.37963128,7.07682490,-0.73565639,1.17906110,1.83357005,0.62085095,3.01287759,3.55236678 +3.51000000,-4.39631585,7.08522692,10.94424518,-4.37254906,7.08762247,-0.73447553,1.18086166,1.83061227,0.62100003,3.01289384,3.55781084 +3.51100000,-4.38921984,7.09601270,10.92653493,-4.36545604,7.09840255,-0.73329287,1.18265931,1.82764999,0.62114882,3.01291006,3.56324615 +3.51200000,-4.38211306,7.10678097,10.90879771,-4.35835226,7.10916512,-0.73210842,1.18445404,1.82468319,0.62129731,3.01292625,3.56867268 +3.51300000,-4.37499553,7.11753170,10.89103359,-4.35123772,7.11991015,-0.73092217,1.18624585,1.82171189,0.62144550,3.01294241,3.57409043 +3.51400000,-4.36786726,7.12826488,10.87324259,-4.34411244,7.13063761,-0.72973413,1.18803473,1.81873609,0.62159339,3.01295853,3.57949938 +3.51500000,-4.36072828,7.13898046,10.85542476,-4.33697645,7.14134748,-0.72854431,1.18982068,1.81575581,0.62174098,3.01297463,3.58489952 +3.51600000,-4.35357860,7.14967843,10.83758015,-4.32982976,7.15203972,-0.72735271,1.19160370,1.81277105,0.62188827,3.01299069,3.59029084 +3.51700000,-4.34641824,7.16035876,10.81970880,-4.32267238,7.16271432,-0.72615933,1.19338377,1.80978181,0.62203526,3.01300672,3.59567331 +3.51800000,-4.33924722,7.17102142,10.80181075,-4.31550433,7.17337125,-0.72496417,1.19516090,1.80678811,0.62218195,3.01302271,3.60104693 +3.51900000,-4.33206556,7.18166639,10.78388606,-4.30832564,7.18401047,-0.72376723,1.19693508,1.80378996,0.62232834,3.01303868,3.60641168 +3.52000000,-4.32487326,7.19229364,10.76593475,-4.30113632,7.19463197,-0.72256852,1.19870630,1.80078735,0.62247442,3.01305461,3.61176755 +3.52100000,-4.31767036,7.20290314,10.74795688,-4.29393638,7.20523572,-0.72136805,1.20047457,1.79778029,0.62262021,3.01307051,3.61711453 +3.52200000,-4.31045686,7.21349487,10.72995249,-4.28672585,7.21582169,-0.72016581,1.20223988,1.79476881,0.62276569,3.01308637,3.62245260 +3.52300000,-4.30323280,7.22406880,10.71192163,-4.27950475,7.22638986,-0.71896181,1.20400222,1.79175289,0.62291087,3.01310221,3.62778175 +3.52400000,-4.29599817,7.23462491,10.69386434,-4.27227308,7.23694019,-0.71775605,1.20576159,1.78873255,0.62305574,3.01311801,3.63310197 +3.52500000,-4.28875301,7.24516317,10.67578066,-4.26503087,7.24747267,-0.71654853,1.20751799,1.78570780,0.62320031,3.01313378,3.63841324 +3.52600000,-4.28149732,7.25568354,10.65767064,-4.25777814,7.25798727,-0.71533926,1.20927140,1.78267865,0.62334458,3.01314952,3.64371554 +3.52700000,-4.27423114,7.26618602,10.63953432,-4.25051490,7.26848396,-0.71412823,1.21102183,1.77964509,0.62348855,3.01316523,3.64900888 +3.52800000,-4.26695447,7.27667057,10.62137176,-4.24324118,7.27896271,-0.71291547,1.21276928,1.77660715,0.62363221,3.01318090,3.65429322 +3.52900000,-4.25966733,7.28713716,10.60318299,-4.23595698,7.28942350,-0.71170095,1.21451373,1.77356482,0.62377556,3.01319654,3.65956856 +3.53000000,-4.25236974,7.29758577,10.58496805,-4.22866234,7.29986631,-0.71048470,1.21625518,1.77051811,0.62391861,3.01321215,3.66483489 +3.53100000,-4.24506173,7.30801638,10.56672700,-4.22135726,7.31029111,-0.70926670,1.21799364,1.76746704,0.62406135,3.01322772,3.67009219 +3.53200000,-4.23774330,7.31842895,10.54845988,-4.21404176,7.32069786,-0.70804697,1.21972908,1.76441160,0.62420379,3.01324327,3.67534045 +3.53300000,-4.23041448,7.32882347,10.53016673,-4.20671587,7.33108656,-0.70682551,1.22146152,1.76135182,0.62434592,3.01325878,3.68057965 +3.53400000,-4.22307528,7.33919991,10.51184760,-4.19937959,7.34145717,-0.70560232,1.22319095,1.75828768,0.62448775,3.01327426,3.68580979 +3.53500000,-4.21572572,7.34955823,10.49350253,-4.19203296,7.35180966,-0.70437740,1.22491735,1.75521921,0.62462926,3.01328970,3.69103084 +3.53600000,-4.20836582,7.35989842,10.47513157,-4.18467598,7.36214401,-0.70315076,1.22664074,1.75214641,0.62477048,3.01330511,3.69624281 +3.53700000,-4.20099560,7.37022045,10.45673477,-4.17730868,7.37246020,-0.70192240,1.22836110,1.74906928,0.62491138,3.01332049,3.70144566 +3.53800000,-4.19361507,7.38052430,10.43831217,-4.16993107,7.38275820,-0.70069232,1.23007842,1.74598784,0.62505197,3.01333584,3.70663939 +3.53900000,-4.18622426,7.39080993,10.41986381,-4.16254317,7.39303798,-0.69946053,1.23179271,1.74290209,0.62519226,3.01335115,3.71182399 +3.54000000,-4.17882319,7.40107733,10.40138974,-4.15514500,7.40329951,-0.69822703,1.23350397,1.73981204,0.62533224,3.01336643,3.71699944 +3.54100000,-4.17141186,7.41132647,10.38289001,-4.14773657,7.41354279,-0.69699181,1.23521218,1.73671770,0.62547191,3.01338168,3.72216574 +3.54200000,-4.16399030,7.42155732,10.36436466,-4.14031792,7.42376777,-0.69575490,1.23691734,1.73361907,0.62561126,3.01339689,3.72732286 +3.54300000,-4.15655853,7.43176986,10.34581374,-4.13288904,7.43397443,-0.69451628,1.23861945,1.73051617,0.62575031,3.01341207,3.73247079 +3.54400000,-4.14911657,7.44196406,10.32723729,-4.12544997,7.44416275,-0.69327596,1.24031850,1.72740899,0.62588905,3.01342722,3.73760953 +3.54500000,-4.14166443,7.45213990,10.30863536,-4.11800072,7.45433270,-0.69203394,1.24201449,1.72429755,0.62602748,3.01344234,3.74273905 +3.54600000,-4.13420213,7.46229736,10.29000800,-4.11054131,7.46448426,-0.69079024,1.24370742,1.72118186,0.62616560,3.01345742,3.74785935 +3.54700000,-4.12672970,7.47243640,10.27135524,-4.10307176,7.47461740,-0.68954484,1.24539728,1.71806192,0.62630341,3.01347247,3.75297041 +3.54800000,-4.11924714,7.48255700,10.25267715,-4.09559209,7.48473210,-0.68829776,1.24708406,1.71493775,0.62644090,3.01348748,3.75807222 +3.54900000,-4.11175448,7.49265914,10.23397376,-4.08810230,7.49482833,-0.68704899,1.24876777,1.71180934,0.62657809,3.01350247,3.76316477 +3.55000000,-4.10425174,7.50274279,10.21524511,-4.08060244,7.50490606,-0.68579854,1.25044840,1.70867671,0.62671496,3.01351741,3.76824804 +3.55100000,-4.09673893,7.51280793,10.19649127,-4.07309250,7.51496528,-0.68454641,1.25212595,1.70553986,0.62685152,3.01353233,3.77332202 +3.55200000,-4.08921607,7.52285453,10.17771226,-4.06557251,7.52500596,-0.68329261,1.25380040,1.70239880,0.62698776,3.01354721,3.77838670 +3.55300000,-4.08168319,7.53288258,10.15890814,-4.05804249,7.53502807,-0.68203714,1.25547176,1.69925355,0.62712369,3.01356206,3.78344206 +3.55400000,-4.07414030,7.54289203,10.14007896,-4.05050246,7.54503159,-0.68078000,1.25714002,1.69610410,0.62725931,3.01357688,3.78848810 +3.55500000,-4.06658742,7.55288287,10.12122476,-4.04295244,7.55501649,-0.67952120,1.25880518,1.69295047,0.62739462,3.01359166,3.79352479 +3.55600000,-4.05902456,7.56285508,10.10234559,-4.03539243,7.56498275,-0.67826073,1.26046723,1.68979266,0.62752961,3.01360641,3.79855213 +3.55700000,-4.05145175,7.57280863,10.08344149,-4.02782248,7.57493035,-0.67699860,1.26212618,1.68663068,0.62766429,3.01362112,3.80357011 +3.55800000,-4.04386901,7.58274349,10.06451251,-4.02024258,7.58485925,-0.67573482,1.26378201,1.68346453,0.62779865,3.01363580,3.80857871 +3.55900000,-4.03627635,7.59265964,10.04555870,-4.01265276,7.59476944,-0.67446939,1.26543472,1.68029424,0.62793270,3.01365045,3.81357791 +3.56000000,-4.02867379,7.60255706,10.02658010,-4.00505305,7.60466089,-0.67320230,1.26708431,1.67711980,0.62806643,3.01366506,3.81856771 +3.56100000,-4.02106136,7.61243572,10.00757677,-3.99744345,7.61453358,-0.67193357,1.26873077,1.67394122,0.62819984,3.01367964,3.82354810 +3.56200000,-4.01343906,7.62229559,9.98854874,-3.98982399,7.62438748,-0.67066320,1.27037410,1.67075851,0.62833294,3.01369419,3.82851906 +3.56300000,-4.00580692,7.63213666,9.96949607,-3.98219468,7.63422256,-0.66939118,1.27201430,1.66757168,0.62846572,3.01370870,3.83348057 +3.56400000,-3.99816497,7.64195890,9.95041880,-3.97455555,7.64403881,-0.66811753,1.27365136,1.66438073,0.62859819,3.01372318,3.83843263 +3.56500000,-3.99051320,7.65176228,9.93131698,-3.96690661,7.65383620,-0.66684225,1.27528528,1.66118568,0.62873034,3.01373763,3.84337523 +3.56600000,-3.98285166,7.66154679,9.91219066,-3.95924788,7.66361470,-0.66556533,1.27691605,1.65798653,0.62886217,3.01375204,3.84830834 +3.56700000,-3.97518034,7.67131238,9.89303988,-3.95157938,7.67337430,-0.66428679,1.27854367,1.65478329,0.62899368,3.01376641,3.85323196 +3.56800000,-3.96749928,7.68105905,9.87386469,-3.94390114,7.68311496,-0.66300662,1.28016813,1.65157596,0.62912488,3.01378076,3.85814608 +3.56900000,-3.95980850,7.69078677,9.85466513,-3.93621316,7.69283666,-0.66172483,1.28178944,1.64836456,0.62925576,3.01379507,3.86305068 +3.57000000,-3.95210800,7.70049551,9.83544127,-3.92851547,7.70253938,-0.66044142,1.28340758,1.64514910,0.62938631,3.01380934,3.86794576 +3.57100000,-3.94439782,7.71018525,9.81619313,-3.92080809,7.71222310,-0.65915640,1.28502256,1.64192957,0.62951655,3.01382358,3.87283129 +3.57200000,-3.93667796,7.71985597,9.79692078,-3.91309103,7.72188779,-0.65786976,1.28663436,1.63870599,0.62964647,3.01383779,3.87770727 +3.57300000,-3.92894845,7.72950764,9.77762426,-3.90536432,7.73153342,-0.65658152,1.28824300,1.63547837,0.62977607,3.01385196,3.88257368 +3.57400000,-3.92120931,7.73914024,9.75830361,-3.89762797,7.74115998,-0.65529167,1.28984845,1.63224672,0.62990535,3.01386610,3.88743051 +3.57500000,-3.91346056,7.74875374,9.73895888,-3.88988201,7.75076744,-0.65400022,1.29145072,1.62901104,0.63003431,3.01388020,3.89227776 +3.57600000,-3.90570221,7.75834812,9.71959012,-3.88212644,7.76035577,-0.65270717,1.29304980,1.62577133,0.63016295,3.01389427,3.89711540 +3.57700000,-3.89793429,7.76792336,9.70019739,-3.87436130,7.76992496,-0.65141253,1.29464570,1.62252762,0.63029127,3.01390831,3.90194342 +3.57800000,-3.89015681,7.77747943,9.68078072,-3.86658660,7.77947497,-0.65011629,1.29623839,1.61927991,0.63041926,3.01392231,3.90676182 +3.57900000,-3.88236979,7.78701632,9.66134016,-3.85880236,7.78900579,-0.64881846,1.29782790,1.61602819,0.63054694,3.01393628,3.91157058 +3.58000000,-3.87457326,7.79653399,9.64187577,-3.85100859,7.79851739,-0.64751905,1.29941419,1.61277249,0.63067429,3.01395021,3.91636968 +3.58100000,-3.86676723,7.80603242,9.62238758,-3.84320533,7.80800975,-0.64621805,1.30099729,1.60951282,0.63080132,3.01396411,3.92115912 +3.58200000,-3.85895171,7.81551159,9.60287566,-3.83539258,7.81748284,-0.64491547,1.30257717,1.60624917,0.63092803,3.01397797,3.92593889 +3.58300000,-3.85112674,7.82497148,9.58334004,-3.82757037,7.82693664,-0.64361132,1.30415384,1.60298155,0.63105441,3.01399180,3.93070897 +3.58400000,-3.84329233,7.83441206,9.56378078,-3.81973871,7.83637113,-0.64230559,1.30572729,1.59970999,0.63118047,3.01400560,3.93546935 +3.58500000,-3.83544850,7.84383331,9.54419792,-3.81189763,7.84578629,-0.64099829,1.30729751,1.59643447,0.63130621,3.01401936,3.94022001 +3.58600000,-3.82759526,7.85323520,9.52459151,-3.80404715,7.85518209,-0.63968943,1.30886452,1.59315502,0.63143163,3.01403308,3.94496095 +3.58700000,-3.81973264,7.86261772,9.50496160,-3.79618728,7.86455850,-0.63837900,1.31042829,1.58987164,0.63155672,3.01404677,3.94969216 +3.58800000,-3.81186066,7.87198084,9.48530824,-3.78831804,7.87391551,-0.63706701,1.31198883,1.58658433,0.63168148,3.01406043,3.95441362 +3.58900000,-3.80397934,7.88132454,9.46563148,-3.78043945,7.88325309,-0.63575347,1.31354613,1.58329311,0.63180592,3.01407405,3.95912531 +3.59000000,-3.79608869,7.89064878,9.44593136,-3.77255154,7.89257122,-0.63443837,1.31510020,1.57999798,0.63193004,3.01408764,3.96382724 +3.59100000,-3.78818874,7.89995356,9.42620794,-3.76465432,7.90186988,-0.63312171,1.31665101,1.57669895,0.63205383,3.01410119,3.96851938 +3.59200000,-3.78027950,7.90923885,9.40646126,-3.75674780,7.91114904,-0.63180352,1.31819858,1.57339604,0.63217729,3.01411471,3.97320173 +3.59300000,-3.77236099,7.91850462,9.38669137,-3.74883202,7.92040868,-0.63048377,1.31974290,1.57008924,0.63230043,3.01412819,3.97787426 +3.59400000,-3.76443324,7.92775086,9.36689832,-3.74090699,7.92964878,-0.62916249,1.32128396,1.56677856,0.63242324,3.01414164,3.98253698 +3.59500000,-3.75649627,7.93697753,9.34708216,-3.73297273,7.93886931,-0.62783967,1.32282175,1.56346403,0.63254573,3.01415505,3.98718987 +3.59600000,-3.74855008,7.94618462,9.32724294,-3.72502926,7.94807025,-0.62651531,1.32435629,1.56014563,0.63266789,3.01416843,3.99183291 +3.59700000,-3.74059471,7.95537210,9.30738070,-3.71707660,7.95725159,-0.62518942,1.32588756,1.55682339,0.63278972,3.01418177,3.99646610 +3.59800000,-3.73263017,7.96453996,9.28749550,-3.70911477,7.96641328,-0.62386201,1.32741555,1.55349730,0.63291122,3.01419508,4.00108943 +3.59900000,-3.72465648,7.97368816,9.26758738,-3.70114378,7.97555533,-0.62253307,1.32894027,1.55016738,0.63303240,3.01420835,4.00570287 +3.60000000,-3.71667366,7.98281669,9.24765640,-3.69316366,7.98467769,-0.62120261,1.33046172,1.54683364,0.63315325,3.01422159,4.01030643 +3.60100000,-3.70868174,7.99192552,9.22770261,-3.68517443,7.99378035,-0.61987063,1.33197987,1.54349608,0.63327377,3.01423479,4.01490008 +3.60200000,-3.70068072,8.00101463,9.20772604,-3.67717611,8.00286329,-0.61853713,1.33349475,1.54015471,0.63339396,3.01424796,4.01948382 +3.60300000,-3.69267064,8.01008400,9.18772676,-3.66916871,8.01192648,-0.61720212,1.33500633,1.53680954,0.63351382,3.01426109,4.02405764 +3.60400000,-3.68465151,8.01913361,9.16770480,-3.66115226,8.02096990,-0.61586561,1.33651462,1.53346058,0.63363335,3.01427419,4.02862152 +3.60500000,-3.67662334,8.02816343,9.14766023,-3.65312678,8.02999353,-0.61452759,1.33801961,1.53010783,0.63375255,3.01428725,4.03317545 +3.60600000,-3.66858617,8.03717344,9.12759309,-3.64509228,8.03899735,-0.61318807,1.33952130,1.52675131,0.63387143,3.01430028,4.03771942 +3.60700000,-3.66054001,8.04616362,9.10750343,-3.63704879,8.04798134,-0.61184705,1.34101968,1.52339103,0.63398997,3.01431327,4.04225342 +3.60800000,-3.65248487,8.05513395,9.08739129,-3.62899632,8.05694546,-0.61050453,1.34251476,1.52002698,0.63410818,3.01432623,4.04677744 +3.60900000,-3.64442079,8.06408440,9.06725674,-3.62093490,8.06588971,-0.60916053,1.34400652,1.51665919,0.63422606,3.01433915,4.05129146 +3.61000000,-3.63634777,8.07301496,9.04709981,-3.61286455,8.07481405,-0.60781503,1.34549497,1.51328765,0.63434361,3.01435203,4.05579548 +3.61100000,-3.62826585,8.08192559,9.02692056,-3.60478528,8.08371847,-0.60646805,1.34698009,1.50991238,0.63446083,3.01436488,4.06028949 +3.61200000,-3.62017503,8.09081629,9.00671904,-3.59669712,8.09260295,-0.60511959,1.34846190,1.50653338,0.63457772,3.01437770,4.06477346 +3.61300000,-3.61207534,8.09968702,8.98649530,-3.58860008,8.10146745,-0.60376965,1.34994037,1.50315067,0.63469427,3.01439048,4.06924740 +3.61400000,-3.60396681,8.10853777,8.96624938,-3.58049419,8.11031197,-0.60241824,1.35141552,1.49976425,0.63481050,3.01440322,4.07371128 +3.61500000,-3.59584944,8.11736851,8.94598134,-3.57237947,8.11913648,-0.60106535,1.35288733,1.49637412,0.63492639,3.01441593,4.07816511 +3.61600000,-3.58772326,8.12617922,8.92569123,-3.56425593,8.12794095,-0.59971099,1.35435580,1.49298031,0.63504195,3.01442860,4.08260886 +3.61700000,-3.57958829,8.13496988,8.90537910,-3.55612359,8.13672537,-0.59835517,1.35582093,1.48958281,0.63515717,3.01444124,4.08704252 +3.61800000,-3.57144455,8.14374046,8.88504499,-3.54798248,8.14548971,-0.59699789,1.35728272,1.48618164,0.63527206,3.01445384,4.09146609 +3.61900000,-3.56329206,8.15249096,8.86468896,-3.53983262,8.15423395,-0.59563915,1.35874115,1.48277680,0.63538662,3.01446640,4.09587956 +3.62000000,-3.55513084,8.16122134,8.84431106,-3.53167402,8.16295808,-0.59427895,1.36019624,1.47936830,0.63550084,3.01447893,4.10028290 +3.62100000,-3.54696090,8.16993158,8.82391134,-3.52350671,8.17166206,-0.59291730,1.36164796,1.47595615,0.63561473,3.01449143,4.10467612 +3.62200000,-3.53878228,8.17862166,8.80348985,-3.51533070,8.18034588,-0.59155421,1.36309633,1.47254036,0.63572829,3.01450389,4.10905919 +3.62300000,-3.53059499,8.18729157,8.78304664,-3.50714602,8.18900951,-0.59018967,1.36454134,1.46912094,0.63584151,3.01451631,4.11343211 +3.62400000,-3.52239905,8.19594127,8.76258175,-3.49895269,8.19765294,-0.58882368,1.36598298,1.46569789,0.63595439,3.01452870,4.11779488 +3.62500000,-3.51419448,8.20457075,8.74209525,-3.49075073,8.20627614,-0.58745626,1.36742124,1.46227122,0.63606694,3.01454105,4.12214746 +3.62600000,-3.50598130,8.21317998,8.72158718,-3.48254015,8.21487910,-0.58608741,1.36885614,1.45884095,0.63617915,3.01455336,4.12648987 +3.62700000,-3.49775953,8.22176895,8.70105758,-3.47432097,8.22346178,-0.58471712,1.37028765,1.45540708,0.63629103,3.01456564,4.13082207 +3.62800000,-3.48952919,8.23033764,8.68050652,-3.46609323,8.23202418,-0.58334540,1.37171579,1.45196961,0.63640257,3.01457788,4.13514407 +3.62900000,-3.48129031,8.23888602,8.65993405,-3.45785693,8.24056626,-0.58197226,1.37314054,1.44852857,0.63651378,3.01459009,4.13945586 +3.63000000,-3.47304289,8.24741406,8.63934020,-3.44961210,8.24908801,-0.58059770,1.37456190,1.44508395,0.63662465,3.01460226,4.14375741 +3.63100000,-3.46478697,8.25592176,8.61872504,-3.44135876,8.25758941,-0.57922172,1.37597987,1.44163576,0.63673518,3.01461440,4.14804873 +3.63200000,-3.45652256,8.26440909,8.59808862,-3.43309693,8.26607043,-0.57784433,1.37739445,1.43818402,0.63684537,3.01462650,4.15232979 +3.63300000,-3.44824968,8.27287603,8.57743098,-3.42482663,8.27453106,-0.57646552,1.37880562,1.43472873,0.63695523,3.01463856,4.15660060 +3.63400000,-3.43996836,8.28132255,8.55675217,-3.41654788,8.28297127,-0.57508531,1.38021340,1.43126990,0.63706475,3.01465059,4.16086113 +3.63500000,-3.43167861,8.28974864,8.53605226,-3.40826069,8.29139104,-0.57370369,1.38161777,1.42780754,0.63717393,3.01466258,4.16511138 +3.63600000,-3.42338046,8.29815428,8.51533128,-3.39996510,8.29979035,-0.57232067,1.38301873,1.42434165,0.63728277,3.01467453,4.16935134 +3.63700000,-3.41507392,8.30653944,8.49458930,-3.39166112,8.30816919,-0.57093625,1.38441628,1.42087226,0.63739127,3.01468645,4.17358099 +3.63800000,-3.40675902,8.31490411,8.47382635,-3.38334877,8.31652752,-0.56955044,1.38581041,1.41739935,0.63749944,3.01469833,4.17780033 +3.63900000,-3.39843577,8.32324826,8.45304250,-3.37502807,8.32486534,-0.56816324,1.38720112,1.41392295,0.63760726,3.01471018,4.18200934 +3.64000000,-3.39010420,8.33157187,8.43223779,-3.36669905,8.33318261,-0.56677465,1.38858841,1.41044306,0.63771475,3.01472199,4.18620802 +3.64100000,-3.38176432,8.33987493,8.41141228,-3.35836171,8.34147932,-0.56538468,1.38997228,1.40695969,0.63782189,3.01473376,4.19039635 +3.64200000,-3.37341616,8.34815741,8.39056601,-3.35001609,8.34975545,-0.56399333,1.39135271,1.40347285,0.63792870,3.01474550,4.19457432 +3.64300000,-3.36505974,8.35641929,8.36969904,-3.34166221,8.35801098,-0.56260060,1.39272971,1.39998254,0.63803516,3.01475720,4.19874193 +3.64400000,-3.35669508,8.36466055,8.34881142,-3.33330008,8.36624589,-0.56120650,1.39410328,1.39648878,0.63814129,3.01476886,4.20289915 +3.64500000,-3.34832220,8.37288117,8.32790320,-3.32492972,8.37446015,-0.55981102,1.39547340,1.39299158,0.63824707,3.01478049,4.20704599 +3.64600000,-3.33994112,8.38108114,8.30697444,-3.31655117,8.38265375,-0.55841418,1.39684008,1.38949094,0.63835252,3.01479208,4.21118243 +3.64700000,-3.33155186,8.38926042,8.28602518,-3.30816442,8.39082667,-0.55701598,1.39820332,1.38598687,0.63845762,3.01480364,4.21530845 +3.64800000,-3.32315444,8.39741901,8.26505547,-3.29976952,8.39897888,-0.55561642,1.39956310,1.38247938,0.63856238,3.01481516,4.21942406 +3.64900000,-3.31474888,8.40555687,8.24406537,-3.29136647,8.40711037,-0.55421550,1.40091944,1.37896848,0.63866680,3.01482664,4.22352924 +3.65000000,-3.30633521,8.41367400,8.22305493,-3.28295530,8.41522112,-0.55281322,1.40227231,1.37545418,0.63877087,3.01483808,4.22762397 +3.65100000,-3.29791344,8.42177037,8.20202420,-3.27453604,8.42331110,-0.55140960,1.40362173,1.37193648,0.63887461,3.01484949,4.23170825 +3.65200000,-3.28948359,8.42984595,8.18097324,-3.26610869,8.43138030,-0.55000463,1.40496768,1.36841540,0.63897800,3.01486086,4.23578207 +3.65300000,-3.28104569,8.43790074,8.15990208,-3.25767328,8.43942869,-0.54859832,1.40631017,1.36489094,0.63908105,3.01487220,4.23984542 +3.65400000,-3.27259976,8.44593471,8.13881080,-3.24922984,8.44745627,-0.54719068,1.40764918,1.36136312,0.63918375,3.01488350,4.24389829 +3.65500000,-3.26414581,8.45394783,8.11769944,-3.24077838,8.45546299,-0.54578169,1.40898472,1.35783193,0.63928611,3.01489476,4.24794066 +3.65600000,-3.25568387,8.46194010,8.09656804,-3.23231892,8.46344886,-0.54437137,1.41031679,1.35429740,0.63938813,3.01490598,4.25197253 +3.65700000,-3.24721396,8.46991149,8.07541667,-3.22385149,8.47141384,-0.54295973,1.41164538,1.35075952,0.63948981,3.01491717,4.25599389 +3.65800000,-3.23873610,8.47786198,8.05424538,-3.21537610,8.47935792,-0.54154676,1.41297048,1.34721831,0.63959114,3.01492832,4.26000472 +3.65900000,-3.23025031,8.48579155,8.03305421,-3.20689278,8.48728108,-0.54013247,1.41429210,1.34367378,0.63969212,3.01493944,4.26400502 +3.66000000,-3.22175661,8.49370019,8.01184322,-3.19840154,8.49518330,-0.53871686,1.41561022,1.34012593,0.63979276,3.01495052,4.26799478 +3.66100000,-3.21325502,8.50158787,7.99061247,-3.18990242,8.50306455,-0.53729993,1.41692486,1.33657478,0.63989306,3.01496156,4.27197398 +3.66200000,-3.20474556,8.50945457,7.96936199,-3.18139542,8.51092483,-0.53588169,1.41823600,1.33302033,0.63999301,3.01497256,4.27594262 +3.66300000,-3.19622826,8.51730027,7.94809186,-3.17288058,8.51876410,-0.53446215,1.41954364,1.32946258,0.64009261,3.01498353,4.27990068 +3.66400000,-3.18770314,8.52512496,7.92680212,-3.16435790,8.52658236,-0.53304130,1.42084777,1.32590156,0.64019187,3.01499446,4.28384816 +3.66500000,-3.17917021,8.53292861,7.90549281,-3.15582742,8.53437958,-0.53161915,1.42214840,1.32233727,0.64029079,3.01500535,4.28778504 +3.66600000,-3.17062950,8.54071121,7.88416401,-3.14728915,8.54215574,-0.53019571,1.42344552,1.31876971,0.64038936,3.01501621,4.29171133 +3.66700000,-3.16208103,8.54847274,7.86281575,-3.13874311,8.54991082,-0.52877097,1.42473913,1.31519891,0.64048758,3.01502702,4.29562699 +3.66800000,-3.15352481,8.55621318,7.84144808,-3.13018933,8.55764481,-0.52734494,1.42602923,1.31162485,0.64058545,3.01503781,4.29953204 +3.66900000,-3.14496088,8.56393250,7.82006108,-3.12162783,8.56535768,-0.52591763,1.42731580,1.30804756,0.64068298,3.01504855,4.30342645 +3.67000000,-3.13638925,8.57163069,7.79865477,-3.11305863,8.57304942,-0.52448903,1.42859886,1.30446704,0.64078016,3.01505926,4.30731021 +3.67100000,-3.12780994,8.57930774,7.77722923,-3.10448174,8.58072000,-0.52305915,1.42987839,1.30088331,0.64087699,3.01506993,4.31118333 +3.67200000,-3.11922298,8.58696361,7.75578449,-3.09589719,8.58836941,-0.52162799,1.43115439,1.29729636,0.64097348,3.01508056,4.31504578 +3.67300000,-3.11062838,8.59459830,7.73432062,-3.08730501,8.59599764,-0.52019557,1.43242686,1.29370621,0.64106962,3.01509116,4.31889755 +3.67400000,-3.10202617,8.60221178,7.71283767,-3.07870520,8.60360465,-0.51876187,1.43369579,1.29011287,0.64116541,3.01510172,4.32273865 +3.67500000,-3.09341636,8.60980403,7.69133569,-3.07009781,8.61119043,-0.51732691,1.43496119,1.28651635,0.64126085,3.01511224,4.32656905 +3.67600000,-3.08479899,8.61737505,7.66981473,-3.06148283,8.61875497,-0.51589069,1.43622305,1.28291666,0.64135594,3.01512272,4.33038875 +3.67700000,-3.07617406,8.62492480,7.64827484,-3.05286030,8.62629824,-0.51445321,1.43748136,1.27931379,0.64145068,3.01513317,4.33419773 +3.67800000,-3.06754161,8.63245327,7.62671609,-3.04423024,8.63382022,-0.51301447,1.43873613,1.27570778,0.64154508,3.01514358,4.33799600 +3.67900000,-3.05890165,8.63996043,7.60513852,-3.03559267,8.64132091,-0.51157448,1.43998734,1.27209861,0.64163912,3.01515395,4.34178353 +3.68000000,-3.05025420,8.64744629,7.58354218,-3.02694761,8.64880027,-0.51013325,1.44123501,1.26848630,0.64173282,3.01516429,4.34556032 +3.68100000,-3.04159929,8.65491080,7.56192713,-3.01829508,8.65625829,-0.50869077,1.44247911,1.26487087,0.64182617,3.01517459,4.34932637 +3.68200000,-3.03293694,8.66235396,7.54029342,-3.00963510,8.66369495,-0.50724705,1.44371966,1.26125231,0.64191916,3.01518485,4.35308165 +3.68300000,-3.02426716,8.66977575,7.51864111,-3.00096769,8.67111023,-0.50580209,1.44495665,1.25763065,0.64201181,3.01519507,4.35682616 +3.68400000,-3.01558999,8.67717614,7.49697025,-2.99229288,8.67850413,-0.50435590,1.44619007,1.25400588,0.64210410,3.01520525,4.36055990 +3.68500000,-3.00690543,8.68455512,7.47528089,-2.98361069,8.68587660,-0.50290848,1.44741992,1.25037801,0.64219605,3.01521540,4.36428284 +3.68600000,-2.99821352,8.69191268,7.45357309,-2.97492114,8.69322765,-0.50145984,1.44864620,1.24674706,0.64228764,3.01522551,4.36799499 +3.68700000,-2.98951427,8.69924879,7.43184689,-2.96622424,8.70055724,-0.50000997,1.44986891,1.24311304,0.64237889,3.01523558,4.37169633 +3.68800000,-2.98080771,8.70656344,7.41010236,-2.95752003,8.70786537,-0.49855888,1.45108804,1.23947595,0.64246978,3.01524562,4.37538685 +3.68900000,-2.97209385,8.71385660,7.38833955,-2.94880852,8.71515201,-0.49710657,1.45230359,1.23583579,0.64256032,3.01525561,4.37906655 +3.69000000,-2.96337272,8.72112826,7.36655850,-2.94008973,8.72241715,-0.49565306,1.45351556,1.23219259,0.64265051,3.01526557,4.38273542 +3.69100000,-2.95464434,8.72837841,7.34475928,-2.93136369,8.72966077,-0.49419834,1.45472393,1.22854635,0.64274034,3.01527550,4.38639343 +3.69200000,-2.94590874,8.73560701,7.32294194,-2.92263042,8.73688285,-0.49274241,1.45592872,1.22489708,0.64282983,3.01528538,4.39004060 +3.69300000,-2.93716592,8.74281407,7.30110653,-2.91388993,8.74408337,-0.49128528,1.45712992,1.22124479,0.64291896,3.01529523,4.39367690 +3.69400000,-2.92841592,8.74999955,7.27925311,-2.90514226,8.75126231,-0.48982695,1.45832752,1.21758948,0.64300774,3.01530504,4.39730233 +3.69500000,-2.91965876,8.75716344,7.25738172,-2.89638742,8.75841966,-0.48836743,1.45952153,1.21393117,0.64309616,3.01531481,4.40091688 +3.69600000,-2.91089445,8.76430573,7.23549243,-2.88762543,8.76555540,-0.48690672,1.46071193,1.21026986,0.64318423,3.01532454,4.40452053 +3.69700000,-2.90212303,8.77142639,7.21358528,-2.87885631,8.77266952,-0.48544482,1.46189873,1.20660557,0.64327195,3.01533424,4.40811329 +3.69800000,-2.89334450,8.77852540,7.19166034,-2.87008010,8.77976198,-0.48398173,1.46308192,1.20293830,0.64335932,3.01534389,4.41169514 +3.69900000,-2.88455890,8.78560276,7.16971765,-2.86129680,8.78683279,-0.48251747,1.46426150,1.19926806,0.64344633,3.01535351,4.41526607 +3.70000000,-2.87576624,8.79265844,7.14775728,-2.85250644,8.79388191,-0.48105204,1.46543747,1.19559486,0.64353299,3.01536309,4.41882607 +3.70100000,-2.86696655,8.79969243,7.12577926,-2.84370904,8.80090934,-0.47958543,1.46660983,1.19191872,0.64361929,3.01537264,4.42237514 +3.70200000,-2.85815984,8.80670470,7.10378367,-2.83490463,8.80791505,-0.47811765,1.46777856,1.18823963,0.64370524,3.01538214,4.42591326 +3.70300000,-2.84934615,8.81369524,7.08177054,-2.82609322,8.81489903,-0.47664870,1.46894367,1.18455761,0.64379084,3.01539161,4.42944043 +3.70400000,-2.84052548,8.82066404,7.05973995,-2.81727484,8.82186125,-0.47517860,1.47010516,1.18087267,0.64387607,3.01540104,4.43295663 +3.70500000,-2.83169787,8.82761107,7.03769193,-2.80844950,8.82880171,-0.47370734,1.47126302,1.17718481,0.64396096,3.01541043,4.43646187 +3.70600000,-2.82286334,8.83453632,7.01562655,-2.79961724,8.83572039,-0.47223492,1.47241725,1.17349405,0.64404549,3.01541979,4.43995612 +3.70700000,-2.81402190,8.84143978,6.99354386,-2.79077807,8.84261727,-0.47076135,1.47356785,1.16980039,0.64412966,3.01542910,4.44343938 +3.70800000,-2.80517358,8.84832142,6.97144391,-2.78193201,8.84949232,-0.46928664,1.47471481,1.16610385,0.64421348,3.01543838,4.44691165 +3.70900000,-2.79631840,8.85518122,6.94932676,-2.77307909,8.85634554,-0.46781078,1.47585813,1.16240443,0.64429694,3.01544762,4.45037290 +3.71000000,-2.78745638,8.86201918,6.92719247,-2.76421933,8.86317691,-0.46633378,1.47699782,1.15870214,0.64438005,3.01545682,4.45382314 +3.71100000,-2.77858754,8.86883527,6.90504108,-2.75535274,8.86998641,-0.46485565,1.47813385,1.15499700,0.64446280,3.01546599,4.45726236 +3.71200000,-2.76971191,8.87562948,6.88287266,-2.74647936,8.87677403,-0.46337638,1.47926624,1.15128900,0.64454519,3.01547511,4.46069054 +3.71300000,-2.76082951,8.88240178,6.86068725,-2.73759920,8.88353974,-0.46189598,1.48039498,1.14757816,0.64462723,3.01548420,4.46410768 +3.71400000,-2.75194036,8.88915217,6.83848492,-2.72871229,8.89028353,-0.46041446,1.48152007,1.14386449,0.64470890,3.01549325,4.46751377 +3.71500000,-2.74304448,8.89588063,6.81626571,-2.71981864,8.89700539,-0.45893182,1.48264150,1.14014800,0.64479023,3.01550226,4.47090881 +3.71600000,-2.73414189,8.90258714,6.79402968,-2.71091829,8.90370530,-0.45744806,1.48375928,1.13642870,0.64487119,3.01551123,4.47429277 +3.71700000,-2.72523262,8.90927169,6.77177689,-2.70201124,8.91038323,-0.45596319,1.48487339,1.13270659,0.64495180,3.01552017,4.47766565 +3.71800000,-2.71631668,8.91593425,6.74950739,-2.69309753,8.91703918,-0.45447721,1.48598384,1.12898169,0.64503205,3.01552906,4.48102745 +3.71900000,-2.70739411,8.92257481,6.72722124,-2.68417717,8.92367313,-0.45299012,1.48709062,1.12525400,0.64511194,3.01553792,4.48437816 +3.72000000,-2.69846492,8.92919335,6.70491849,-2.67525019,8.93028506,-0.45150192,1.48819374,1.12152353,0.64519147,3.01554674,4.48771777 +3.72100000,-2.68952913,8.93578987,6.68259920,-2.66631661,8.93687495,-0.45001263,1.48929318,1.11779030,0.64527065,3.01555552,4.49104626 +3.72200000,-2.68058676,8.94236433,6.66026341,-2.65737645,8.94344280,-0.44852224,1.49038894,1.11405431,0.64534946,3.01556426,4.49436364 +3.72300000,-2.67163784,8.94891674,6.63791120,-2.64842973,8.94998858,-0.44703076,1.49148103,1.11031557,0.64542792,3.01557297,4.49766988 +3.72400000,-2.66268240,8.95544706,6.61554260,-2.63947648,8.95651227,-0.44553819,1.49256944,1.10657409,0.64550602,3.01558163,4.50096500 +3.72500000,-2.65372044,8.96195528,6.59315768,-2.63051671,8.96301387,-0.44404454,1.49365417,1.10282988,0.64558376,3.01559026,4.50424896 +3.72600000,-2.64475200,8.96844139,6.57075650,-2.62155046,8.96949334,-0.44254980,1.49473521,1.09908295,0.64566114,3.01559885,4.50752178 +3.72700000,-2.63577710,8.97490538,6.54833910,-2.61257773,8.97595069,-0.44105399,1.49581256,1.09533331,0.64573816,3.01560740,4.51078343 +3.72800000,-2.62679575,8.98134722,6.52590554,-2.60359856,8.98238589,-0.43955710,1.49688622,1.09158096,0.64581482,3.01561591,4.51403392 +3.72900000,-2.61780798,8.98776689,6.50345588,-2.59461297,8.98879893,-0.43805915,1.49795619,1.08782592,0.64589112,3.01562439,4.51727323 +3.73000000,-2.60881382,8.99416440,6.48099017,-2.58562097,8.99518979,-0.43656012,1.49902247,1.08406820,0.64596706,3.01563282,4.52050135 +3.73100000,-2.59981328,9.00053971,6.45850848,-2.57662260,9.00155845,-0.43506004,1.50008504,1.08030780,0.64604264,3.01564122,4.52371828 +3.73200000,-2.59080638,9.00689281,6.43601084,-2.56761786,9.00790491,-0.43355889,1.50114391,1.07654474,0.64611786,3.01564957,4.52692400 +3.73300000,-2.58179316,9.01322369,6.41349733,-2.55860679,9.01422914,-0.43205669,1.50219908,1.07277902,0.64619272,3.01565789,4.53011852 +3.73400000,-2.57277363,9.01953233,6.39096799,-2.54958941,9.02053112,-0.43055344,1.50325054,1.06901066,0.64626721,3.01566617,4.53330182 +3.73500000,-2.56374781,9.02581871,6.36842288,-2.54056574,9.02681085,-0.42904915,1.50429830,1.06523965,0.64634135,3.01567442,4.53647389 +3.73600000,-2.55471573,9.03208283,6.34586206,-2.53153580,9.03306831,-0.42754380,1.50534234,1.06146602,0.64641513,3.01568262,4.53963473 +3.73700000,-2.54567740,9.03832466,6.32328558,-2.52249961,9.03930347,-0.42603742,1.50638267,1.05768977,0.64648854,3.01569078,4.54278432 +3.73800000,-2.53663286,9.04454418,6.30069350,-2.51345720,9.04551634,-0.42453000,1.50741928,1.05391091,0.64656159,3.01569891,4.54592267 +3.73900000,-2.52758212,9.05074140,6.27808587,-2.50440858,9.05170688,-0.42302155,1.50845217,1.05012944,0.64663429,3.01570699,4.54904976 +3.74000000,-2.51852520,9.05691628,6.25546275,-2.49535379,9.05787509,-0.42151207,1.50948134,1.04634539,0.64670661,3.01571504,4.55216558 +3.74100000,-2.50946213,9.06306881,6.23282420,-2.48629284,9.06402095,-0.42000156,1.51050678,1.04255876,0.64677858,3.01572305,4.55527013 +3.74200000,-2.50039293,9.06919898,6.21017026,-2.47722576,9.07014445,-0.41849003,1.51152850,1.03876955,0.64685019,3.01573102,4.55836339 +3.74300000,-2.49131763,9.07530677,6.18750101,-2.46815256,9.07624557,-0.41697749,1.51254649,1.03497778,0.64692143,3.01573895,4.56144537 +3.74400000,-2.48223623,9.08139217,6.16481648,-2.45907327,9.08232429,-0.41546393,1.51356075,1.03118345,0.64699231,3.01574685,4.56451605 +3.74500000,-2.47314878,9.08745517,6.14211675,-2.44998792,9.08838060,-0.41394935,1.51457127,1.02738659,0.64706282,3.01575470,4.56757542 +3.74600000,-2.46405528,9.09349574,6.11940185,-2.44089652,9.09441449,-0.41243378,1.51557805,1.02358718,0.64713298,3.01576252,4.57062348 +3.74700000,-2.45495577,9.09951388,6.09667186,-2.43179910,9.10042594,-0.41091720,1.51658110,1.01978525,0.64720277,3.01577029,4.57366022 +3.74800000,-2.44585026,9.10550956,6.07392683,-2.42269567,9.10641493,-0.40939961,1.51758040,1.01598081,0.64727219,3.01577803,4.57668563 +3.74900000,-2.43673878,9.11148277,6.05116681,-2.41358627,9.11238146,-0.40788104,1.51857596,1.01217385,0.64734125,3.01578573,4.57969970 +3.75000000,-2.42762134,9.11743351,6.02839186,-2.40447092,9.11832550,-0.40636147,1.51956777,1.00836440,0.64740995,3.01579339,4.58270243 +3.75100000,-2.41849798,9.12336175,6.00560203,-2.39534963,9.12424704,-0.40484092,1.52055583,1.00455247,0.64747829,3.01580101,4.58569381 +3.75200000,-2.40936871,9.12926747,5.98279738,-2.38622243,9.13014607,-0.40331937,1.52154014,1.00073805,0.64754626,3.01580859,4.58867383 +3.75300000,-2.40023356,9.13515067,5.95997798,-2.37708935,9.13602257,-0.40179685,1.52252070,0.99692116,0.64761387,3.01581613,4.59164249 +3.75400000,-2.39109255,9.14101134,5.93714386,-2.36795040,9.14187653,-0.40027336,1.52349750,0.99310182,0.64768111,3.01582364,4.59459977 +3.75500000,-2.38194570,9.14684944,5.91429510,-2.35880560,9.14770794,-0.39874889,1.52447054,0.98928002,0.64774799,3.01583110,4.59754567 +3.75600000,-2.37279304,9.15266498,5.89143174,-2.34965499,9.15351677,-0.39722345,1.52543982,0.98545578,0.64781450,3.01583853,4.60048018 +3.75700000,-2.36363458,9.15845794,5.86855384,-2.34049858,9.15930301,-0.39569704,1.52640533,0.98162911,0.64788065,3.01584591,4.60340329 +3.75800000,-2.35447035,9.16422829,5.84566147,-2.33133639,9.16506666,-0.39416967,1.52736708,0.97780002,0.64794643,3.01585326,4.60631500 +3.75900000,-2.34530037,9.16997604,5.82275467,-2.32216845,9.17080769,-0.39264135,1.52832506,0.97396852,0.64801185,3.01586057,4.60921530 +3.76000000,-2.33612467,9.17570116,5.79983350,-2.31299478,9.17652610,-0.39111207,1.52927927,0.97013461,0.64807690,3.01586784,4.61210417 +3.76100000,-2.32694327,9.18140364,5.77689802,-2.30381540,9.18222186,-0.38958184,1.53022971,0.96629831,0.64814159,3.01587507,4.61498163 +3.76200000,-2.31775619,9.18708347,5.75394829,-2.29463034,9.18789497,-0.38805066,1.53117637,0.96245962,0.64820591,3.01588226,4.61784765 +3.76300000,-2.30856345,9.19274063,5.73098436,-2.28543962,9.19354540,-0.38651854,1.53211925,0.95861856,0.64826986,3.01588941,4.62070223 +3.76400000,-2.29936507,9.19837510,5.70800629,-2.27624326,9.19917315,-0.38498549,1.53305835,0.95477514,0.64833345,3.01589652,4.62354536 +3.76500000,-2.29016108,9.20398688,5.68501413,-2.26704128,9.20477821,-0.38345149,1.53399367,0.95092936,0.64839668,3.01590359,4.62637704 +3.76600000,-2.28095151,9.20957595,5.66200795,-2.25783371,9.21036055,-0.38191657,1.53492521,0.94708123,0.64845953,3.01591063,4.62919725 +3.76700000,-2.27173637,9.21514230,5.63898779,-2.24862057,9.21592017,-0.38038071,1.53585296,0.94323076,0.64852202,3.01591762,4.63200600 +3.76800000,-2.26251568,9.22068591,5.61595372,-2.23940188,9.22145704,-0.37884394,1.53677691,0.93937797,0.64858415,3.01592458,4.63480327 +3.76900000,-2.25328947,9.22620676,5.59290579,-2.23017766,9.22697117,-0.37730624,1.53769708,0.93552286,0.64864590,3.01593149,4.63758905 +3.77000000,-2.24405777,9.23170486,5.56984406,-2.22094794,9.23246252,-0.37576763,1.53861345,0.93166544,0.64870729,3.01593837,4.64036335 +3.77100000,-2.23482059,9.23718017,5.54676859,-2.21171275,9.23793110,-0.37422810,1.53952603,0.92780572,0.64876831,3.01594521,4.64312614 +3.77200000,-2.22557796,9.24263270,5.52367943,-2.20247209,9.24337688,-0.37268767,1.54043480,0.92394372,0.64882897,3.01595201,4.64587744 +3.77300000,-2.21632989,9.24806242,5.50057664,-2.19322600,9.24879986,-0.37114633,1.54133978,0.92007943,0.64888926,3.01595876,4.64861722 +3.77400000,-2.20707642,9.25346931,5.47746028,-2.18397450,9.25420002,-0.36960409,1.54224095,0.91621287,0.64894918,3.01596548,4.65134548 +3.77500000,-2.19781757,9.25885338,5.45433041,-2.17471761,9.25957734,-0.36806095,1.54313832,0.91234405,0.64900873,3.01597216,4.65406222 +3.77600000,-2.18855336,9.26421461,5.43118707,-2.16545535,9.26493181,-0.36651691,1.54403188,0.90847299,0.64906791,3.01597880,4.65676742 +3.77700000,-2.17928380,9.26955297,5.40803033,-2.15618775,9.27026343,-0.36497199,1.54492163,0.90459967,0.64912673,3.01598541,4.65946109 +3.77800000,-2.17000893,9.27486846,5.38486025,-2.14691483,9.27557217,-0.36342619,1.54580757,0.90072413,0.64918518,3.01599197,4.66214321 +3.77900000,-2.16072877,9.28016107,5.36167688,-2.13763661,9.28085802,-0.36187950,1.54668969,0.89684637,0.64924326,3.01599849,4.66481378 +3.78000000,-2.15144334,9.28543078,5.33848028,-2.12835312,9.28612098,-0.36033193,1.54756800,0.89296639,0.64930097,3.01600497,4.66747279 +3.78100000,-2.14215266,9.29067758,5.31527050,-2.11906438,9.29136102,-0.35878349,1.54844249,0.88908420,0.64935831,3.01601141,4.67012023 +3.78200000,-2.13285676,9.29590145,5.29204761,-2.10977041,9.29657814,-0.35723417,1.54931316,0.88519983,0.64941528,3.01601782,4.67275610 +3.78300000,-2.12355566,9.30110239,5.26881167,-2.10047123,9.30177232,-0.35568399,1.55018001,0.88131327,0.64947189,3.01602418,4.67538039 +3.78400000,-2.11424938,9.30628038,5.24556272,-2.09116687,9.30694354,-0.35413295,1.55104303,0.87742453,0.64952812,3.01603051,4.67799309 +3.78500000,-2.10493795,9.31143541,5.22230082,-2.08185735,9.31209181,-0.35258105,1.55190222,0.87353363,0.64958399,3.01603679,4.68059420 +3.78600000,-2.09562138,9.31656746,5.19902604,-2.07254270,9.31721709,-0.35102829,1.55275759,0.86964058,0.64963949,3.01604304,4.68318371 +3.78700000,-2.08629970,9.32167653,5.17573844,-2.06322293,9.32231939,-0.34947468,1.55360912,0.86574537,0.64969461,3.01604924,4.68576161 +3.78800000,-2.07697294,9.32676259,5.15243806,-2.05389807,9.32739869,-0.34792022,1.55445682,0.86184804,0.64974937,3.01605541,4.68832791 +3.78900000,-2.06764111,9.33182564,5.12912496,-2.04456814,9.33245497,-0.34636492,1.55530069,0.85794857,0.64980376,3.01606154,4.69088258 +3.79000000,-2.05830425,9.33686567,5.10579921,-2.03523316,9.33748822,-0.34480878,1.55614071,0.85404699,0.64985778,3.01606762,4.69342562 +3.79100000,-2.04896236,9.34188266,5.08246086,-2.02589317,9.34249844,-0.34325181,1.55697690,0.85014330,0.64991142,3.01607367,4.69595704 +3.79200000,-2.03961549,9.34687660,5.05910997,-2.01654817,9.34748560,-0.34169400,1.55780925,0.84623751,0.64996470,3.01607968,4.69847682 +3.79300000,-2.03026364,9.35184747,5.03574659,-2.00719820,9.35244970,-0.34013536,1.55863775,0.84232964,0.65001761,3.01608565,4.70098495 +3.79400000,-2.02090685,9.35679527,5.01237079,-1.99784328,9.35739072,-0.33857590,1.55946241,0.83841968,0.65007015,3.01609158,4.70348143 +3.79500000,-2.01154513,9.36171999,4.98898262,-1.98848343,9.36230866,-0.33701561,1.56028322,0.83450766,0.65012231,3.01609746,4.70596625 +3.79600000,-2.00217850,9.36662160,4.96558214,-1.97911867,9.36720349,-0.33545451,1.56110018,0.83059358,0.65017411,3.01610331,4.70843941 +3.79700000,-1.99280700,9.37150011,4.94216941,-1.96974903,9.37207521,-0.33389260,1.56191328,0.82667745,0.65022554,3.01610912,4.71090090 +3.79800000,-1.98343065,9.37635549,4.91874448,-1.96037453,9.37692381,-0.33232988,1.56272254,0.82275928,0.65027659,3.01611489,4.71335071 +3.79900000,-1.97404946,9.38118774,4.89530741,-1.95099519,9.38174927,-0.33076635,1.56352793,0.81883907,0.65032727,3.01612062,4.71578884 +3.80000000,-1.96466346,9.38599684,4.87185826,-1.94161104,9.38655158,-0.32920202,1.56432947,0.81491685,0.65037758,3.01612631,4.71821528 +3.80100000,-1.95527268,9.39078278,4.84839709,-1.93222210,9.39133073,-0.32763689,1.56512715,0.81099262,0.65042753,3.01613196,4.72063003 +3.80200000,-1.94587714,9.39554555,4.82492396,-1.92282838,9.39608671,-0.32607097,1.56592097,0.80706638,0.65047709,3.01613757,4.72303307 +3.80300000,-1.93647685,9.40028513,4.80143892,-1.91342993,9.40081950,-0.32450426,1.56671093,0.80313816,0.65052629,3.01614314,4.72542441 +3.80400000,-1.92707185,9.40500152,4.77794203,-1.90402675,9.40552910,-0.32293676,1.56749701,0.79920795,0.65057512,3.01614867,4.72780404 +3.80500000,-1.91766215,9.40969471,4.75443336,-1.89461888,9.41021550,-0.32136848,1.56827924,0.79527577,0.65062357,3.01615416,4.73017194 +3.80600000,-1.90824779,9.41436468,4.73091295,-1.88520633,9.41487867,-0.31979943,1.56905759,0.79134163,0.65067165,3.01615961,4.73252813 +3.80700000,-1.89882878,9.41901142,4.70738086,-1.87578913,9.41951861,-0.31822959,1.56983207,0.78740553,0.65071936,3.01616503,4.73487258 +3.80800000,-1.88940514,9.42363492,4.68383716,-1.86636730,9.42413531,-0.31665899,1.57060267,0.78346749,0.65076670,3.01617040,4.73720529 +3.80900000,-1.87997691,9.42823517,4.66028190,-1.85694087,9.42872876,-0.31508762,1.57136940,0.77952752,0.65081367,3.01617573,4.73952626 +3.81000000,-1.87054410,9.43281216,4.63671514,-1.84750985,9.43329895,-0.31351549,1.57213226,0.77558563,0.65086026,3.01618102,4.74183548 +3.81100000,-1.86110673,9.43736587,4.61313694,-1.83807428,9.43784585,-0.31194260,1.57289123,0.77164182,0.65090648,3.01618627,4.74413294 +3.81200000,-1.85166483,9.44189629,4.58954736,-1.82863417,9.44236947,-0.31036895,1.57364633,0.76769610,0.65095233,3.01619148,4.74641865 +3.81300000,-1.84221843,9.44640342,4.56594645,-1.81918955,9.44686980,-0.30879455,1.57439754,0.76374850,0.65099780,3.01619665,4.74869259 +3.81400000,-1.83276754,9.45088724,4.54233427,-1.80974044,9.45134681,-0.30721941,1.57514487,0.75979900,0.65104291,3.01620179,4.75095476 +3.81500000,-1.82331219,9.45534774,4.51871088,-1.80028686,9.45580051,-0.30564352,1.57588831,0.75584764,0.65108764,3.01620688,4.75320515 +3.81600000,-1.81385241,9.45978491,4.49507635,-1.79082884,9.46023087,-0.30406689,1.57662786,0.75189440,0.65113199,3.01621193,4.75544375 +3.81700000,-1.80438821,9.46419874,4.47143072,-1.78136641,9.46463789,-0.30248953,1.57736352,0.74793932,0.65117598,3.01621694,4.75767057 +3.81800000,-1.79491962,9.46858922,4.44777405,-1.77189957,9.46902155,-0.30091144,1.57809529,0.74398238,0.65121958,3.01622191,4.75988559 +3.81900000,-1.78544667,9.47295633,4.42410641,-1.76242837,9.47338186,-0.29933261,1.57882316,0.74002361,0.65126282,3.01622684,4.76208881 +3.82000000,-1.77596937,9.47730007,4.40042786,-1.75295282,9.47771879,-0.29775306,1.57954714,0.73606302,0.65130568,3.01623174,4.76428023 +3.82100000,-1.76648775,9.48162043,4.37673844,-1.74347294,9.48203233,-0.29617280,1.58026723,0.73210060,0.65134817,3.01623659,4.76645983 +3.82200000,-1.75700183,9.48591739,4.35303822,-1.73398876,9.48632248,-0.29459181,1.58098341,0.72813639,0.65139029,3.01624140,4.76862762 +3.82300000,-1.74751164,9.49019095,4.32932726,-1.72450030,9.49058922,-0.29301012,1.58169569,0.72417037,0.65143203,3.01624617,4.77078358 +3.82400000,-1.73801720,9.49444109,4.30560562,-1.71500759,9.49483254,-0.29142771,1.58240407,0.72020257,0.65147340,3.01625090,4.77292772 +3.82500000,-1.72851853,9.49866781,4.28187336,-1.70551065,9.49905244,-0.28984461,1.58310855,0.71623299,0.65151439,3.01625559,4.77506002 +3.82600000,-1.71901566,9.50287108,4.25813052,-1.69600949,9.50324890,-0.28826080,1.58380912,0.71226164,0.65155501,3.01626024,4.77718048 +3.82700000,-1.70950861,9.50705091,4.23437718,-1.68650416,9.50742191,-0.28667629,1.58450578,0.70828853,0.65159526,3.01626485,4.77928910 +3.82800000,-1.69999740,9.51120729,4.21061339,-1.67699466,9.51157146,-0.28509109,1.58519853,0.70431368,0.65163513,3.01626943,4.78138587 +3.82900000,-1.69048206,9.51534019,4.18683921,-1.66748102,9.51569754,-0.28350520,1.58588737,0.70033709,0.65167462,3.01627396,4.78347079 +3.83000000,-1.68096261,9.51944962,4.16305469,-1.65796327,9.51980014,-0.28191863,1.58657230,0.69635877,0.65171374,3.01627845,4.78554384 +3.83100000,-1.67143907,9.52353556,4.13925991,-1.64844143,9.52387926,-0.28033138,1.58725332,0.69237873,0.65175249,3.01628290,4.78760503 +3.83200000,-1.66191148,9.52759799,4.11545490,-1.63891552,9.52793487,-0.27874345,1.58793041,0.68839699,0.65179086,3.01628731,4.78965435 +3.83300000,-1.65237984,9.53163693,4.09163975,-1.62938557,9.53196698,-0.27715485,1.58860359,0.68441354,0.65182886,3.01629168,4.79169179 +3.83400000,-1.64284419,9.53565234,4.06781449,-1.61985159,9.53597556,-0.27556557,1.58927285,0.68042841,0.65186648,3.01629601,4.79371735 +3.83500000,-1.63330454,9.53964422,4.04397920,-1.61031362,9.53996062,-0.27397563,1.58993819,0.67644159,0.65190373,3.01630030,4.79573103 +3.83600000,-1.62376093,9.54361257,4.02013392,-1.60077168,9.54392214,-0.27238503,1.59059960,0.67245311,0.65194060,3.01630455,4.79773281 +3.83700000,-1.61421337,9.54755737,3.99627873,-1.59122579,9.54786011,-0.27079378,1.59125709,0.66846297,0.65197710,3.01630876,4.79972270 +3.83800000,-1.60466189,9.55147861,3.97241368,-1.58167597,9.55177452,-0.26920187,1.59191066,0.66447118,0.65201322,3.01631292,4.80170069 +3.83900000,-1.59510652,9.55537628,3.94853882,-1.57212225,9.55566536,-0.26760931,1.59256029,0.66047775,0.65204897,3.01631705,4.80366677 +3.84000000,-1.58554727,9.55925038,3.92465421,-1.56256465,9.55953263,-0.26601610,1.59320600,0.65648269,0.65208434,3.01632114,4.80562093 +3.84100000,-1.57598417,9.56310089,3.90075993,-1.55300319,9.56337631,-0.26442225,1.59384777,0.65248600,0.65211934,3.01632519,4.80756319 +3.84200000,-1.56641724,9.56692781,3.87685601,-1.54343790,9.56719639,-0.26282777,1.59448562,0.64848771,0.65215396,3.01632920,4.80949352 +3.84300000,-1.55684651,9.57073111,3.85294253,-1.53386880,9.57099287,-0.26123265,1.59511952,0.64448782,0.65218820,3.01633317,4.81141192 +3.84400000,-1.54727200,9.57451081,3.82901954,-1.52429592,9.57476573,-0.25963690,1.59574950,0.64048634,0.65222207,3.01633709,4.81331840 +3.84500000,-1.53769373,9.57826688,3.80508710,-1.51471928,9.57851496,-0.25804052,1.59637553,0.63648327,0.65225556,3.01634098,4.81521293 +3.84600000,-1.52811173,9.58199932,3.78114527,-1.50513890,9.58224056,-0.25644353,1.59699763,0.63247864,0.65228868,3.01634483,4.81709553 +3.84700000,-1.51852602,9.58570811,3.75719411,-1.49555481,9.58594252,-0.25484591,1.59761578,0.62847245,0.65232142,3.01634863,4.81896618 +3.84800000,-1.50893663,9.58939325,3.73323368,-1.48596702,9.58962083,-0.25324768,1.59823000,0.62446470,0.65235378,3.01635240,4.82082489 +3.84900000,-1.49934357,9.59305473,3.70926403,-1.47637557,9.59327547,-0.25164884,1.59884027,0.62045541,0.65238577,3.01635612,4.82267163 +3.85000000,-1.48974688,9.59669254,3.68528523,-1.46678048,9.59690645,-0.25004939,1.59944659,0.61644460,0.65241738,3.01635981,4.82450642 +3.85100000,-1.48014657,9.60030668,3.66129734,-1.45718177,9.60051374,-0.24844934,1.60004897,0.61243226,0.65244862,3.01636345,4.82632925 +3.85200000,-1.47054268,9.60389712,3.63730041,-1.44757946,9.60409735,-0.24684870,1.60064740,0.60841841,0.65247948,3.01636706,4.82814010 +3.85300000,-1.46093521,9.60746387,3.61329450,-1.43797358,9.60765726,-0.24524745,1.60124188,0.60440306,0.65250996,3.01637062,4.82993898 +3.85400000,-1.45132421,9.61100691,3.58927968,-1.42836415,9.61119346,-0.24364562,1.60183242,0.60038621,0.65254007,3.01637415,4.83172589 +3.85500000,-1.44170968,9.61452624,3.56525600,-1.41875120,9.61470595,-0.24204320,1.60241899,0.59636789,0.65256979,3.01637763,4.83350081 +3.85600000,-1.43209166,9.61802185,3.54122352,-1.40913475,9.61819471,-0.24044020,1.60300162,0.59234809,0.65259915,3.01638107,4.83526374 +3.85700000,-1.42247016,9.62149372,3.51718230,-1.39951482,9.62165975,-0.23883662,1.60358029,0.58832683,0.65262812,3.01638448,4.83701468 +3.85800000,-1.41284522,9.62494185,3.49313240,-1.38989144,9.62510104,-0.23723247,1.60415500,0.58430412,0.65265672,3.01638784,4.83875363 +3.85900000,-1.40321686,9.62836624,3.46907388,-1.38026463,9.62851858,-0.23562774,1.60472575,0.58027997,0.65268494,3.01639116,4.84048058 +3.86000000,-1.39358509,9.63176687,3.44500680,-1.37063441,9.63191237,-0.23402245,1.60529255,0.57625438,0.65271279,3.01639444,4.84219552 +3.86100000,-1.38394995,9.63514373,3.42093122,-1.36100081,9.63528239,-0.23241659,1.60585538,0.57222738,0.65274026,3.01639768,4.84389846 +3.86200000,-1.37431145,9.63849682,3.39684720,-1.35136385,9.63862864,-0.23081018,1.60641426,0.56819896,0.65276735,3.01640088,4.84558938 +3.86300000,-1.36466962,9.64182613,3.37275479,-1.34172356,9.64195110,-0.22920321,1.60696916,0.56416914,0.65279406,3.01640404,4.84726828 +3.86400000,-1.35502449,9.64513164,3.34865406,-1.33207996,9.64524977,-0.22759569,1.60752011,0.56013792,0.65282039,3.01640716,4.84893516 +3.86500000,-1.34537608,9.64841336,3.32454506,-1.32243307,9.64852465,-0.22598762,1.60806708,0.55610533,0.65284635,3.01641024,4.85059002 +3.86600000,-1.33572441,9.65167127,3.30042786,-1.31278292,9.65177572,-0.22437901,1.60861009,0.55207136,0.65287193,3.01641328,4.85223284 +3.86700000,-1.32606950,9.65490537,3.27630252,-1.30312953,9.65500297,-0.22276986,1.60914913,0.54803603,0.65289714,3.01641628,4.85386363 +3.86800000,-1.31641139,9.65811565,3.25216909,-1.29347292,9.65820640,-0.22116018,1.60968420,0.54399934,0.65292196,3.01641923,4.85548238 +3.86900000,-1.30675008,9.66130209,3.22802763,-1.28381312,9.66138600,-0.21954996,1.61021530,0.53996132,0.65294641,3.01642215,4.85708909 +3.87000000,-1.29708562,9.66446470,3.20387821,-1.27415015,9.66454176,-0.21793922,1.61074242,0.53592196,0.65297048,3.01642503,4.85868376 +3.87100000,-1.28741802,9.66760346,3.17972088,-1.26448404,9.66767368,-0.21632795,1.61126557,0.53188128,0.65299418,3.01642786,4.86026637 +3.87200000,-1.27774730,9.67071836,3.15555570,-1.25481482,9.67078174,-0.21471617,1.61178475,0.52783929,0.65301749,3.01643066,4.86183693 +3.87300000,-1.26807349,9.67380941,3.13138274,-1.24514249,9.67386594,-0.21310387,1.61229995,0.52379599,0.65304043,3.01643341,4.86339543 +3.87400000,-1.25839661,9.67687658,3.10720204,-1.23546709,9.67692627,-0.21149106,1.61281117,0.51975140,0.65306299,3.01643613,4.86494187 +3.87500000,-1.24871669,9.67991988,3.08301368,-1.22578864,9.67996272,-0.20987774,1.61331841,0.51570553,0.65308517,3.01643880,4.86647624 +3.87600000,-1.23903375,9.68293929,3.05881771,-1.21610717,9.68297529,-0.20826392,1.61382166,0.51165838,0.65310697,3.01644143,4.86799854 +3.87700000,-1.22934782,9.68593482,3.03461420,-1.20642270,9.68596397,-0.20664960,1.61432094,0.50760998,0.65312840,3.01644403,4.86950876 +3.87800000,-1.21965891,9.68890644,3.01040319,-1.19673525,9.68892874,-0.20503478,1.61481624,0.50356032,0.65314944,3.01644658,4.87100691 +3.87900000,-1.20996706,9.69185416,2.98618475,-1.18704485,9.69186962,-0.20341947,1.61530755,0.49950942,0.65317011,3.01644909,4.87249298 +3.88000000,-1.20027228,9.69477796,2.96195894,-1.17735152,9.69478657,-0.20180368,1.61579487,0.49545728,0.65319040,3.01645156,4.87396696 +3.88100000,-1.19057460,9.69767784,2.93772583,-1.16765529,9.69767961,-0.20018740,1.61627821,0.49140392,0.65321032,3.01645399,4.87542885 +3.88200000,-1.18087405,9.70055380,2.91348546,-1.15795617,9.70054872,-0.19857064,1.61675756,0.48734935,0.65322985,3.01645638,4.87687865 +3.88300000,-1.17117064,9.70340581,2.88923790,-1.14825420,9.70339389,-0.19695341,1.61723292,0.48329358,0.65324901,3.01645873,4.87831635 +3.88400000,-1.16146441,9.70623389,2.86498321,-1.13854939,9.70621512,-0.19533571,1.61770429,0.47923661,0.65326779,3.01646104,4.87974195 +3.88500000,-1.15175537,9.70903802,2.84072145,-1.12884178,9.70901241,-0.19371753,1.61817167,0.47517846,0.65328618,3.01646331,4.88115545 +3.88600000,-1.14204355,9.71181819,2.81645268,-1.11913137,9.71178573,-0.19209890,1.61863505,0.47111914,0.65330421,3.01646553,4.88255684 +3.88700000,-1.13232898,9.71457440,2.79217696,-1.10941821,9.71453510,-0.19047981,1.61909444,0.46705866,0.65332185,3.01646772,4.88394612 +3.88800000,-1.12261167,9.71730664,2.76789435,-1.09970231,9.71726049,-0.18886026,1.61954984,0.46299702,0.65333911,3.01646986,4.88532328 +3.88900000,-1.11289166,9.72001490,2.74360491,-1.08998370,9.71996191,-0.18724025,1.62000124,0.45893424,0.65335600,3.01647197,4.88668833 +3.89000000,-1.10316896,9.72269918,2.71930870,-1.08026240,9.72263934,-0.18561981,1.62044864,0.45487033,0.65337250,3.01647403,4.88804126 +3.89100000,-1.09344360,9.72535946,2.69500577,-1.07053843,9.72529279,-0.18399891,1.62089205,0.45080529,0.65338863,3.01647606,4.88938206 +3.89200000,-1.08371560,9.72799576,2.67069620,-1.06081182,9.72792223,-0.18237758,1.62133145,0.44673914,0.65340438,3.01647804,4.89071073 +3.89300000,-1.07398499,9.73060805,2.64638003,-1.05108259,9.73052768,-0.18075582,1.62176686,0.44267189,0.65341975,3.01647998,4.89202727 +3.89400000,-1.06425180,9.73319633,2.62205733,-1.04135077,9.73310912,-0.17913362,1.62219826,0.43860355,0.65343474,3.01648189,4.89333168 +3.89500000,-1.05451604,9.73576059,2.59772816,-1.03161638,9.73566654,-0.17751099,1.62262566,0.43453412,0.65344935,3.01648375,4.89462395 +3.89600000,-1.04477773,9.73830083,2.57339258,-1.02187945,9.73819994,-0.17588794,1.62304906,0.43046363,0.65346359,3.01648557,4.89590407 +3.89700000,-1.03503692,9.74081705,2.54905065,-1.01213999,9.74070931,-0.17426447,1.62346845,0.42639207,0.65347744,3.01648735,4.89717205 +3.89800000,-1.02529361,9.74330923,2.52470242,-1.00239804,9.74319465,-0.17264059,1.62388384,0.42231945,0.65349092,3.01648909,4.89842789 +3.89900000,-1.01554783,9.74577736,2.50034797,-0.99265361,9.74565594,-0.17101629,1.62429522,0.41824580,0.65350401,3.01649079,4.89967157 +3.90000000,-1.00579961,9.74822146,2.47598734,-0.98290673,9.74809319,-0.16939159,1.62470259,0.41417111,0.65351673,3.01649244,4.90090310 +3.90100000,-0.99604897,9.75064150,2.45162061,-0.97315743,9.75050639,-0.16776649,1.62510596,0.41009540,0.65352907,3.01649406,4.90212247 +3.90200000,-0.98629593,9.75303748,2.42724782,-0.96340573,9.75289553,-0.16614098,1.62550531,0.40601868,0.65354103,3.01649564,4.90332968 +3.90300000,-0.97654052,9.75540939,2.40286904,-0.95365165,9.75526061,-0.16451508,1.62590065,0.40194096,0.65355261,3.01649717,4.90452473 +3.90400000,-0.96678276,9.75775724,2.37848434,-0.94389521,9.75760161,-0.16288879,1.62629199,0.39786224,0.65356381,3.01649867,4.90570761 +3.90500000,-0.95702268,9.76008100,2.35409376,-0.93413645,9.75991854,-0.16126211,1.62667930,0.39378255,0.65357463,3.01650012,4.90687832 +3.90600000,-0.94726030,9.76238069,2.32969737,-0.92437539,9.76221139,-0.15963505,1.62706261,0.38970188,0.65358508,3.01650154,4.90803686 +3.90700000,-0.93749565,9.76465629,2.30529523,-0.91461204,9.76448015,-0.15800760,1.62744190,0.38562025,0.65359514,3.01650291,4.90918322 +3.90800000,-0.92772874,9.76690779,2.28088741,-0.90484643,9.76672482,-0.15637979,1.62781717,0.38153766,0.65360482,3.01650424,4.91031741 +3.90900000,-0.91795960,9.76913520,2.25647395,-0.89507860,9.76894538,-0.15475160,1.62818843,0.37745414,0.65361413,3.01650553,4.91143941 +3.91000000,-0.90818826,9.77133850,2.23205492,-0.88530855,9.77114185,-0.15312304,1.62855567,0.37336968,0.65362306,3.01650678,4.91254923 +3.91100000,-0.89841475,9.77351769,2.20763039,-0.87553632,9.77331421,-0.15149412,1.62891889,0.36928431,0.65363160,3.01650799,4.91364687 +3.91200000,-0.88863907,9.77567277,2.18320041,-0.86576193,9.77546245,-0.14986485,1.62927810,0.36519802,0.65363977,3.01650916,4.91473231 +3.91300000,-0.87886127,9.77780373,2.15876503,-0.85598540,9.77758657,-0.14823521,1.62963328,0.36111083,0.65364756,3.01651029,4.91580556 +3.91400000,-0.86908136,9.77991056,2.13432434,-0.84620676,9.77968656,-0.14660523,1.62998444,0.35702274,0.65365497,3.01651138,4.91686662 +3.91500000,-0.85929937,9.78199325,2.10987837,-0.83642604,9.78176243,-0.14497490,1.63033158,0.35293378,0.65366200,3.01651243,4.91791548 +3.91600000,-0.84951532,9.78405182,2.08542719,-0.82664325,9.78381416,-0.14334422,1.63067470,0.34884395,0.65366865,3.01651343,4.91895214 +3.91700000,-0.83972923,9.78608624,2.06097087,-0.81685842,9.78584175,-0.14171321,1.63101379,0.34475325,0.65367492,3.01651440,4.91997660 +3.91800000,-0.82994113,9.78809651,2.03650947,-0.80707157,9.78784519,-0.14008186,1.63134886,0.34066171,0.65368081,3.01651532,4.92098885 +3.91900000,-0.82015105,9.79008264,2.01204303,-0.79728274,9.78982448,-0.13845018,1.63167991,0.33656932,0.65368632,3.01651621,4.92198889 +3.92000000,-0.81035901,9.79204461,1.98757163,-0.78749193,9.79177962,-0.13681817,1.63200693,0.33247611,0.65369146,3.01651705,4.92297672 +3.92100000,-0.80056502,9.79398241,1.96309533,-0.77769918,9.79371060,-0.13518584,1.63232992,0.32838207,0.65369621,3.01651785,4.92395234 +3.92200000,-0.79076913,9.79589605,1.93861418,-0.76790452,9.79561741,-0.13355319,1.63264888,0.32428722,0.65370058,3.01651862,4.92491575 +3.92300000,-0.78097134,9.79778552,1.91412824,-0.75810796,9.79750006,-0.13192023,1.63296382,0.32019157,0.65370458,3.01651934,4.92586693 +3.92400000,-0.77117169,9.79965082,1.88963758,-0.74830953,9.79935852,-0.13028696,1.63327472,0.31609513,0.65370819,3.01652002,4.92680590 +3.92500000,-0.76137020,9.80149193,1.86514226,-0.73850925,9.80119281,-0.12865337,1.63358160,0.31199791,0.65371143,3.01652066,4.92773264 +3.92600000,-0.75156689,9.80330887,1.84064233,-0.72870715,9.80300292,-0.12701949,1.63388445,0.30789993,0.65371428,3.01652126,4.92864716 +3.92700000,-0.74176179,9.80510161,1.81613786,-0.71890325,9.80478884,-0.12538531,1.63418326,0.30380118,0.65371676,3.01652181,4.92954945 +3.92800000,-0.73195492,9.80687016,1.79162891,-0.70909758,9.80655056,-0.12375083,1.63447804,0.29970168,0.65371886,3.01652233,4.93043952 +3.92900000,-0.72214630,9.80861451,1.76711553,-0.69929016,9.80828809,-0.12211606,1.63476879,0.29560144,0.65372058,3.01652281,4.93131735 +3.93000000,-0.71233597,9.81033466,1.74259780,-0.68948101,9.81000142,-0.12048100,1.63505551,0.29150047,0.65372191,3.01652324,4.93218294 +3.93100000,-0.70252394,9.81203060,1.71807576,-0.67967016,9.81169054,-0.11884567,1.63533819,0.28739878,0.65372287,3.01652364,4.93303630 +3.93200000,-0.69271024,9.81370234,1.69354949,-0.66985764,9.81335546,-0.11721005,1.63561683,0.28329639,0.65372345,3.01652399,4.93387742 +3.93300000,-0.68289489,9.81534985,1.66901903,-0.66004346,9.81499616,-0.11557416,1.63589144,0.27919329,0.65372365,3.01652431,4.93470630 +3.93400000,-0.67307791,9.81697315,1.64448445,-0.65022765,9.81661264,-0.11393800,1.63616202,0.27508951,0.65372347,3.01652458,4.93552294 +3.93500000,-0.66325934,9.81857223,1.61994582,-0.64041024,9.81820490,-0.11230157,1.63642855,0.27098504,0.65372291,3.01652481,4.93632734 +3.93600000,-0.65343919,9.82014708,1.59540319,-0.63059125,9.81977294,-0.11066488,1.63669105,0.26687991,0.65372197,3.01652500,4.93711948 +3.93700000,-0.64361750,9.82169770,1.57085661,-0.62077071,9.82131674,-0.10902793,1.63694951,0.26277412,0.65372066,3.01652515,4.93789938 +3.93800000,-0.63379427,9.82322409,1.54630617,-0.61094863,9.82283632,-0.10739072,1.63720394,0.25866768,0.65371896,3.01652526,4.93866703 +3.93900000,-0.62396955,9.82472624,1.52175190,-0.60112504,9.82433165,-0.10575327,1.63745432,0.25456060,0.65371688,3.01652533,4.93942243 +3.94000000,-0.61414334,9.82620415,1.49719388,-0.59129997,9.82580275,-0.10411557,1.63770066,0.25045289,0.65371443,3.01652536,4.94016557 +3.94100000,-0.60431568,9.82765781,1.47263217,-0.58147344,9.82724960,-0.10247762,1.63794296,0.24634457,0.65371159,3.01652535,4.94089645 +3.94200000,-0.59448660,9.82908722,1.44806682,-0.57164548,9.82867220,-0.10083944,1.63818122,0.24223564,0.65370837,3.01652529,4.94161508 +3.94300000,-0.58465610,9.83049238,1.42349789,-0.56181611,9.83007056,-0.09920103,1.63841544,0.23812611,0.65370478,3.01652520,4.94232145 +3.94400000,-0.57482423,9.83187329,1.39892545,-0.55198535,9.83144465,-0.09756238,1.63864561,0.23401599,0.65370081,3.01652506,4.94301556 +3.94500000,-0.56499100,9.83322993,1.37434956,-0.54215323,9.83279449,-0.09592351,1.63887174,0.22990529,0.65369645,3.01652489,4.94369740 +3.94600000,-0.55515644,9.83456231,1.34977028,-0.53231977,9.83412007,-0.09428442,1.63909383,0.22579403,0.65369172,3.01652467,4.94436698 +3.94700000,-0.54532057,9.83587043,1.32518767,-0.52248499,9.83542138,-0.09264510,1.63931187,0.22168221,0.65368661,3.01652441,4.94502429 +3.94800000,-0.53548341,9.83715428,1.30060178,-0.51264893,9.83669843,-0.09100558,1.63952587,0.21756984,0.65368112,3.01652412,4.94566933 +3.94900000,-0.52564500,9.83841385,1.27601269,-0.50281160,9.83795120,-0.08936584,1.63973582,0.21345693,0.65367525,3.01652378,4.94630210 +3.95000000,-0.51580535,9.83964915,1.25142044,-0.49297304,9.83917970,-0.08772590,1.63994173,0.20934350,0.65366900,3.01652340,4.94692260 +3.95100000,-0.50596449,9.84086017,1.22682511,-0.48313325,9.84038393,-0.08608576,1.64014359,0.20522955,0.65366237,3.01652298,4.94753083 +3.95200000,-0.49612244,9.84204691,1.20222675,-0.47329228,9.84156387,-0.08444542,1.64034141,0.20111510,0.65365536,3.01652252,4.94812678 +3.95300000,-0.48627923,9.84320937,1.17762542,-0.46345013,9.84271953,-0.08280488,1.64053517,0.19700015,0.65364797,3.01652201,4.94871046 +3.95400000,-0.47643489,9.84434754,1.15302119,-0.45360685,9.84385090,-0.08116416,1.64072489,0.19288471,0.65364020,3.01652147,4.94928186 +3.95500000,-0.46658942,9.84546141,1.12841411,-0.44376244,9.84495799,-0.07952325,1.64091056,0.18876880,0.65363206,3.01652089,4.94984098 +3.95600000,-0.45674287,9.84655100,1.10380424,-0.43391694,9.84604078,-0.07788215,1.64109218,0.18465242,0.65362353,3.01652026,4.95038782 +3.95700000,-0.44689526,9.84761629,1.07919165,-0.42407037,9.84709928,-0.07624088,1.64126975,0.18053558,0.65361463,3.01651960,4.95092238 +3.95800000,-0.43704660,9.84865728,1.05457640,-0.41422275,9.84813349,-0.07459944,1.64144328,0.17641830,0.65360534,3.01651889,4.95144465 +3.95900000,-0.42719693,9.84967397,1.02995854,-0.40437411,9.84914339,-0.07295783,1.64161275,0.17230058,0.65359568,3.01651814,4.95195464 +3.96000000,-0.41734626,9.85066636,1.00533814,-0.39452447,9.85012899,-0.07131605,1.64177817,0.16818244,0.65358564,3.01651736,4.95245235 +3.96100000,-0.40749463,9.85163444,0.98071526,-0.38467386,9.85109029,-0.06967411,1.64193954,0.16406388,0.65357522,3.01651653,4.95293777 +3.96200000,-0.39764205,9.85257821,0.95608996,-0.37482230,9.85202728,-0.06803201,1.64209686,0.15994492,0.65356442,3.01651566,4.95341090 +3.96300000,-0.38778855,9.85349768,0.93146230,-0.36496981,9.85293996,-0.06638976,1.64225013,0.15582557,0.65355324,3.01651475,4.95387174 +3.96400000,-0.37793416,9.85439283,0.90683234,-0.35511643,9.85382833,-0.06474736,1.64239934,0.15170583,0.65354168,3.01651380,4.95432029 +3.96500000,-0.36807889,9.85526366,0.88220014,-0.34526216,9.85469239,-0.06310482,1.64254451,0.14758571,0.65352975,3.01651281,4.95475654 +3.96600000,-0.35822278,9.85611018,0.85756576,-0.33540705,9.85553213,-0.06146213,1.64268562,0.14346523,0.65351743,3.01651178,4.95518051 +3.96700000,-0.34836585,9.85693238,0.83292927,-0.32555111,9.85634756,-0.05981931,1.64282267,0.13934440,0.65350474,3.01651071,4.95559218 +3.96800000,-0.33850812,9.85773026,0.80829072,-0.31569436,9.85713866,-0.05817635,1.64295568,0.13522322,0.65349166,3.01650959,4.95599156 +3.96900000,-0.32864962,9.85850381,0.78365018,-0.30583684,9.85790545,-0.05653327,1.64308463,0.13110171,0.65347821,3.01650844,4.95637864 +3.97000000,-0.31879036,9.85925305,0.75900770,-0.29597856,9.85864791,-0.05489006,1.64320952,0.12697987,0.65346438,3.01650724,4.95675343 +3.97100000,-0.30893039,9.85997795,0.73436335,-0.28611955,9.85936604,-0.05324673,1.64333036,0.12285772,0.65345017,3.01650601,4.95711591 +3.97200000,-0.29906971,9.86067852,0.70971719,-0.27625983,9.86005985,-0.05160328,1.64344715,0.11873527,0.65343558,3.01650473,4.95746610 +3.97300000,-0.28920835,9.86135477,0.68506927,-0.26639944,9.86072933,-0.04995972,1.64355988,0.11461253,0.65342062,3.01650341,4.95780399 +3.97400000,-0.27934635,9.86200668,0.66041967,-0.25653838,9.86137448,-0.04831605,1.64366856,0.11048950,0.65340527,3.01650206,4.95812958 +3.97500000,-0.26948371,9.86263426,0.63576843,-0.24667670,9.86199529,-0.04667228,1.64377318,0.10636620,0.65338955,3.01650066,4.95844287 +3.97600000,-0.25962047,9.86323750,0.61111563,-0.23681440,9.86259178,-0.04502841,1.64387374,0.10224263,0.65337344,3.01649922,4.95874385 +3.97700000,-0.24975666,9.86381641,0.58646131,-0.22695152,9.86316393,-0.04338444,1.64397025,0.09811882,0.65335696,3.01649774,4.95903254 +3.97800000,-0.23989229,9.86437098,0.56180555,-0.21708808,9.86371174,-0.04174037,1.64406270,0.09399476,0.65334010,3.01649622,4.95930892 +3.97900000,-0.23002739,9.86490120,0.53714840,-0.20722411,9.86423521,-0.04009622,1.64415110,0.08987047,0.65332287,3.01649466,4.95957300 +3.98000000,-0.22016198,9.86540709,0.51248993,-0.19735962,9.86473435,-0.03845199,1.64423543,0.08574596,0.65330525,3.01649306,4.95982477 +3.98100000,-0.21029609,9.86588864,0.48783019,-0.18749465,9.86520914,-0.03680767,1.64431572,0.08162124,0.65328726,3.01649141,4.96006424 +3.98200000,-0.20042974,9.86634584,0.46316925,-0.17762921,9.86565960,-0.03516328,1.64439194,0.07749631,0.65326888,3.01648973,4.96029140 +3.98300000,-0.19056297,9.86677870,0.43850716,-0.16776334,9.86608571,-0.03351882,1.64446411,0.07337120,0.65325013,3.01648801,4.96050625 +3.98400000,-0.18069578,9.86718721,0.41384399,-0.15789705,9.86648747,-0.03187428,1.64453222,0.06924590,0.65323100,3.01648624,4.96070880 +3.98500000,-0.17082821,9.86757138,0.38917980,-0.14803037,9.86686490,-0.03022969,1.64459627,0.06512043,0.65321150,3.01648444,4.96089904 +3.98600000,-0.16096028,9.86793120,0.36451465,-0.13816332,9.86721797,-0.02858503,1.64465626,0.06099480,0.65319161,3.01648259,4.96107698 +3.98700000,-0.15109201,9.86826667,0.33984860,-0.12829594,9.86754671,-0.02694032,1.64471220,0.05686902,0.65317135,3.01648070,4.96124260 +3.98800000,-0.14122343,9.86857779,0.31518172,-0.11842824,9.86785109,-0.02529556,1.64476407,0.05274310,0.65315071,3.01647878,4.96139592 +3.98900000,-0.13135457,9.86886456,0.29051405,-0.10856025,9.86813113,-0.02365074,1.64481189,0.04861705,0.65312969,3.01647681,4.96153693 +3.99000000,-0.12148544,9.86912698,0.26584566,-0.09869199,9.86838681,-0.02200589,1.64485565,0.04449088,0.65310829,3.01647480,4.96166562 +3.99100000,-0.11161607,9.86936505,0.24117662,-0.08882348,9.86861815,-0.02036099,1.64489536,0.04036461,0.65308652,3.01647275,4.96178201 +3.99200000,-0.10174650,9.86957877,0.21650699,-0.07895476,9.86882514,-0.01871606,1.64493100,0.03623823,0.65306437,3.01647066,4.96188609 +3.99300000,-0.09187673,9.86976814,0.19183682,-0.06908584,9.86900778,-0.01707110,1.64496258,0.03211176,0.65304184,3.01646853,4.96197786 +3.99400000,-0.08200679,9.86993315,0.16716618,-0.05921675,9.86916606,-0.01542611,1.64499011,0.02798521,0.65301893,3.01646636,4.96205732 +3.99500000,-0.07213672,9.87007381,0.14249512,-0.04934751,9.86930000,-0.01378110,1.64501358,0.02385859,0.65299564,3.01646415,4.96212447 +3.99600000,-0.06226653,9.87019011,0.11782371,-0.03947816,9.86940958,-0.01213606,1.64503298,0.01973192,0.65297198,3.01646189,4.96217931 +3.99700000,-0.05239625,9.87028207,0.09315201,-0.02960870,9.86949482,-0.01049101,1.64504833,0.01560519,0.65294794,3.01645960,4.96222184 +3.99800000,-0.04252590,9.87034966,0.06848008,-0.01973918,9.86955570,-0.00884595,1.64505962,0.01147843,0.65292353,3.01645727,4.96225205 +3.99900000,-0.03265551,9.87039291,0.04380799,-0.00986960,9.86959222,-0.00720089,1.64506685,0.00735164,0.65289873,3.01645489,4.96226996 diff --git a/scripts/generate_schema.py b/scripts/generate_schema.py new file mode 100644 index 0000000..8ca173e --- /dev/null +++ b/scripts/generate_schema.py @@ -0,0 +1,189 @@ +#!/usr/bin/env python3 +""" +关节模组 schema 生成器(接口 2 的后端实现) +==================================================================== + +从一份关节模组 URDF 生成前端要的配置 JSON(schema),即 [schema.md](schema.md) +定义的观测契约:输入/输出关节名、减速比、限位、默认仿真参数。 + +输入/输出关节由用户**显式指定**(--input / --output)。因为自动识别在真实 URDF 上 +不可靠(见 docs/architecture.md 说明:多级级联有多个正 multiplier 的 mimic,且 fixed 关节也没有 +mimic,程序分不清哪级是末端输出)。 + +减速比来源优先级(同 schema.md 第 5 节): + 1. mimic —— 输出关节 的倒数(默认) + 2. manual —— --ratio 手动指定(URDF 无 mimic 时) + +用法(在 scripts/ 目录下运行): + python3 generate_schema.py \ + --urdf ../urdf/planetary_joint_split_motor_demo.urdf \ + --input sun_input_joint --output carrier_output_joint \ + --model planetary_joint_split_motor_demo.xml \ + --out planetary_joint_split_motor_demo.json + +依赖:仅标准库(xml.etree / json / argparse),不需要 trimesh / mujoco。 +""" + +import argparse +import json +import math +import os +import xml.etree.ElementTree as ET + + +# 默认仿真参数(与 schema.md / report_spec.md 保持一致) +DEFAULTS = { + "timestep": 0.001, + "duration": 4.0, + "kp": 20.0, + "kd": 0.3, + "amplitude": 2.0 * math.pi, + "frequency": 0.25, + "load_torque": -3.0, + "damping": 0.01, +} +# 输入关节无 (continuous)时的位置限位占位:±6 圈 = ±12π +DEFAULT_POSITION_LIMIT = 12.0 * math.pi +# 输入力矩限位占位(应填真实电机额定值,见 schema.md limits.torque) +DEFAULT_TORQUE_LIMIT = 10.0 + + +def _float(attr): + try: + return float(attr) + except (TypeError, ValueError): + return None + + +def parse_joints(root): + """返回 {关节名: 元素}。""" + return {j.get("name"): j for j in root.findall("joint")} + + +def get_mimic(joint_el): + """返回 (joint, multiplier, offset) 或 None。""" + m = joint_el.find("mimic") + if m is None: + return None + return { + "joint": m.get("joint"), + "multiplier": _float(m.get("multiplier")), + "offset": _float(m.get("offset", 0.0)), + } + + +def get_limit(joint_el): + """返回 (lower, upper, velocity) 或 None。关节无 (continuous)返回 None。""" + lim = joint_el.find("limit") + if lim is None: + return None + return { + "lower": _float(lim.get("lower")), + "upper": _float(lim.get("upper")), + "velocity": _float(lim.get("velocity")), + } + + +def main(): + ap = argparse.ArgumentParser(description="关节模组 URDF → schema JSON") + ap.add_argument("--urdf", required=True, help="输入 URDF 路径") + ap.add_argument("--input", required=True, help="输入关节名(电机端,显式指定)") + ap.add_argument("--output", required=True, help="输出关节名(模组末端,显式指定)") + ap.add_argument("--model", default=None, + help="要引用进 schema.model 的 MJCF 文件名(默认 .xml)") + ap.add_argument("--out", default=None, help="schema 输出 JSON 路径(默认 .json)") + ap.add_argument("--module-id", default=None, help="module_id(默认 robot 名)") + ap.add_argument("--name", default=None, help="显示名(默认 robot 名)") + ap.add_argument("--ratio", type=float, default=None, + help="手动指定减速比(URDF 无 mimic 时用,gear_ratio_source=manual)") + ap.add_argument("--torque-limit", type=float, default=DEFAULT_TORQUE_LIMIT, + help="输入力矩限位 [N·m],默认 ±10(占位)") + ap.add_argument("--position-limit", type=float, default=DEFAULT_POSITION_LIMIT, + help="输入关节无 时的位置限位 ±rad,默认 ±12π") + for k, v in DEFAULTS.items(): + ap.add_argument(f"--{k.replace('_', '-')}", type=float, default=v, + help=f"仿真参数 {k}(默认 {v})") + ap.add_argument("--mode", choices=["normal", "overload"], default="normal", + help="仿真模式(normal / overload,默认 normal)") + args = ap.parse_args() + + tree = ET.parse(args.urdf) + robot = tree.getroot() + robot_name = robot.get("name") + joints = parse_joints(robot) + + if args.input not in joints: + ap.error(f"输入关节 '{args.input}' 在 URDF 中不存在;可用关节:{sorted(joints)}") + if args.output not in joints: + ap.error(f"输出关节 '{args.output}' 在 URDF 中不存在;可用关节:{sorted(joints)}") + + # ---- 减速比 ---- + mimic = get_mimic(joints[args.output]) + gear_ratio = None + gear_ratio_source = None + if mimic is not None and mimic["multiplier"] not in (None, 0.0): + gear_ratio = 1.0 / abs(mimic["multiplier"]) + gear_ratio_source = "mimic" + elif args.ratio is not None: + gear_ratio = args.ratio + gear_ratio_source = "manual" + else: + ap.error("输出关节没有 ,请用 --ratio 手动指定减速比") + + # ---- 限位 ---- + in_limit = get_limit(joints[args.input]) + if in_limit is not None and in_limit["lower"] is not None and in_limit["upper"] is not None: + pos_lim = [in_limit["lower"], in_limit["upper"]] + else: + pos_lim = [-args.position_limit, args.position_limit] + velocity = in_limit["velocity"] if in_limit is not None else None + + module_id = args.module_id or robot_name + model = args.model or (module_id + ".xml") + out_path = args.out or (module_id + ".json") + + schema = { + "module_id": module_id, + "name": args.name or robot_name, + "model": model, + "input_joint": args.input, + "output_joint": args.output, + "gear_ratio": gear_ratio, + "gear_ratio_source": gear_ratio_source, + "limits": { + "position": pos_lim, + "torque": [-args.torque_limit, args.torque_limit], + }, + "simulation": { + "timestep": args.timestep, + "duration": args.duration, + "kp": args.kp, + "kd": args.kd, + "amplitude": args.amplitude, + "frequency": args.frequency, + "load_torque": args.load_torque, + "damping": args.damping, + "mode": args.mode, + }, + } + if velocity is not None: + schema["limits"]["velocity"] = [-velocity, velocity] + + with open(out_path, "w", encoding="utf-8") as f: + json.dump(schema, f, ensure_ascii=False, indent=2) + f.write("\n") + + print(f"已生成 schema: {os.path.abspath(out_path)}") + print(f" module_id : {module_id}") + print(f" input_joint : {args.input}") + print(f" output_joint: {args.output}") + print(f" gear_ratio : {gear_ratio:.6f} (source={gear_ratio_source})") + print(f" position_lim: {pos_lim[0]:.4f} ~ {pos_lim[1]:.4f} rad") + print(f" torque_lim : ±{args.torque_limit} N·m") + print(f" mode : {args.mode}") + print(f" load_torque : {args.load_torque} N·m") + print(f" damping : {args.damping}") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/scripts/simulate_report.py b/scripts/simulate_report.py new file mode 100644 index 0000000..714c51f --- /dev/null +++ b/scripts/simulate_report.py @@ -0,0 +1,396 @@ +#!/usr/bin/env python3 +""" +关节模组通用仿真 + 报告脚本(边可视化边计算) +==================================================================== + +对任意一个关节模组 MJCF 跑仿真并产出报告。报告逻辑固定(见 report_spec.md), +随构型变的只有:输入/输出关节名、减速比、限位、仿真参数 —— 这些统一从 schema JSON +读入(schema 由 generate_schema.py 生成)。 + +两种用法: + 1) 通用(读 schema): + python3 simulate_report.py --schema <模块>.json --headless --plot + 2) demo(不传 --schema,回退到本案例默认值,保持兼容): + python3 simulate_report.py # 弹窗 + 打印报告 + timeseries.csv + python3 simulate_report.py --headless # 无窗口 + python3 simulate_report.py --plot # 追加 report_curves.png + +也可用 --xml / --input / --output / --ratio 覆盖 schema 里的个别字段(快速调试用)。 + +报告测三类数据(report_spec.md 第 3 节): + 1. 运动学 —— 输入/输出位置、速度、加速度、传动比实测 + 2. 动力学 —— 输入/输出力矩、功率、效率 + 3. 安全性 —— 位置余量、力矩余量、过载判定 + +输出文件写在 MJCF 所在目录:timeseries.csv(逐时间步)、report.txt(仿真报告)、 +report_curves.png(--plot)。 + +依赖:mujoco、numpy(绘图需 matplotlib)。 +""" +import argparse +import json +import os +import sys +import time + +import numpy as np +import mujoco +import mujoco.viewer # noqa: F401 (确保 viewer 子模块可用) + + +# ------------------------------ demo 默认值(不传 --schema 时用) ------------------------------ +DEMO = { + "xml": "planetary_joint_split_motor_demo.xml", + "input_joint": "sun_input_joint", + "output_joint": "carrier_output_joint", + "planet_joint": "planet_0_spin_joint", + "gear_ratio": 6.0, + "duration": 4.0, + "dt": 0.001, + "kp": 20.0, + "kd": 0.3, + "amplitude": 2.0 * np.pi, + "frequency": 0.25, + "load_torque": -3.0, + "damping": 0.01, + "mode": "normal", + "pos_lim": None, # None → 从 MJCF 读 + "trq_lim": None, +} + +# 参考轨迹平滑启动时长 [s]:让参考从 0 位置、0 速度起跳,消除 t=0 的微分项冲击 +RAMP_TIME = 0.5 + + +# ------------------------------ 工具函数 ------------------------------ +def jid(m, name): + return mujoco.mj_name2id(m, mujoco.mjtObj.mjOBJ_JOINT, name) + + +def aid(m, name): + return mujoco.mj_name2id(m, mujoco.mjtObj.mjOBJ_ACTUATOR, name) + + +def margin(limit, peak): + """安全余量 = (限位值 - |峰值|) / 限位值 × 100%""" + if limit is None or abs(limit) < 1e-12: + return float("nan") + return (abs(limit) - abs(peak)) / abs(limit) * 100.0 + + +def _setup_cjk_font(plt): + """配置中文字体,避免图中中文标签显示成方框(tofu)。""" + candidates = [ + "Noto Sans CJK SC", "Noto Sans CJK JP", "AR PL UMing CN", + "AR PL UKai CN", "Droid Sans Fallback", + ] + import matplotlib.font_manager as fm + available = {f.name for f in fm.fontManager.ttflist} + chosen = next((c for c in candidates if c in available), None) + if chosen is not None: + plt.rcParams["font.sans-serif"] = [chosen, "DejaVu Sans"] + print(f"已启用中文字体:{chosen}") + else: + print("警告:未找到中文字体,图中中文可能显示为方框") + plt.rcParams["axes.unicode_minus"] = False + + +def load_config(args): + """从 schema / CLI 参数合成一份运行配置。返回 (cfg, schema_dir)。""" + cfg = dict(DEMO) + schema_dir = None + + if args.schema: + with open(args.schema, encoding="utf-8") as f: + s = json.load(f) + schema_dir = os.path.dirname(os.path.abspath(args.schema)) + cfg["xml"] = s.get("model", cfg["xml"]) + cfg["input_joint"] = s.get("input_joint", cfg["input_joint"]) + cfg["output_joint"] = s.get("output_joint", cfg["output_joint"]) + cfg["gear_ratio"] = float(s.get("gear_ratio", cfg["gear_ratio"])) + lim = s.get("limits", {}) + pos = lim.get("position") + trq = lim.get("torque") + cfg["pos_lim"] = float(pos[1]) if pos else None + cfg["trq_lim"] = float(trq[1]) if trq else None + sim = s.get("simulation", {}) + cfg["duration"] = float(sim.get("duration", cfg["duration"])) + cfg["dt"] = float(sim.get("timestep", cfg["dt"])) + cfg["kp"] = float(sim.get("kp", cfg["kp"])) + cfg["kd"] = float(sim.get("kd", cfg["kd"])) + cfg["amplitude"] = float(sim.get("amplitude", cfg["amplitude"])) + cfg["frequency"] = float(sim.get("frequency", cfg["frequency"])) + cfg["load_torque"] = float(sim.get("load_torque", cfg["load_torque"])) + cfg["damping"] = float(sim.get("damping", cfg["damping"])) + cfg["mode"] = sim.get("mode", cfg["mode"]) + # schema 不含行星轮(可选观测),通用模式默认不记录行星轮 + cfg["planet_joint"] = None + + # CLI 覆盖 + if args.xml: + cfg["xml"] = args.xml + if args.input: + cfg["input_joint"] = args.input + if args.output: + cfg["output_joint"] = args.output + if args.ratio is not None: + cfg["gear_ratio"] = args.ratio + if args.planet: + cfg["planet_joint"] = args.planet + if args.mode: + cfg["mode"] = args.mode + if args.load_torque is not None: + cfg["load_torque"] = args.load_torque + + # XML 路径:相对路径相对 schema 所在目录(无 schema 则相对 CWD)解析 + xml = cfg["xml"] + if not os.path.isabs(xml): + base = schema_dir if schema_dir else os.getcwd() + xml = os.path.abspath(os.path.join(base, xml)) + cfg["xml"] = xml + cfg["out_dir"] = os.path.dirname(xml) + return cfg + + +# ------------------------------ 主流程 ------------------------------ +def main(): + ap = argparse.ArgumentParser(description="关节模组通用仿真 + 报告") + ap.add_argument("--schema", default=None, help="schema JSON 路径") + ap.add_argument("--xml", default=None, help="MJCF XML 路径(覆盖 schema.model)") + ap.add_argument("--input", default=None, help="输入关节名(覆盖 schema)") + ap.add_argument("--output", default=None, help="输出关节名(覆盖 schema)") + ap.add_argument("--ratio", type=float, default=None, help="减速比(覆盖 schema)") + ap.add_argument("--planet", default=None, help="可选:要记录的行星轮关节名") + ap.add_argument("--mode", choices=["normal", "overload"], default=None, + help="仿真模式(normal / overload,默认读 schema)") + ap.add_argument("--load-torque", type=float, default=None, + help="输出端负载 [N·m](覆盖 schema)") + ap.add_argument("--headless", action="store_true", help="无窗口") + ap.add_argument("--fast", action="store_true", help="弹窗但不按真实时间步进") + ap.add_argument("--plot", action="store_true", help="导出 PNG 曲线(需 matplotlib)") + args = ap.parse_args() + + cfg = load_config(args) + + m = mujoco.MjModel.from_xml_path(cfg["xml"]) + d = mujoco.MjData(m) + + in_j, out_j = jid(m, cfg["input_joint"]), jid(m, cfg["output_joint"]) + if in_j < 0 or out_j < 0: + sys.exit("找不到输入/输出关节,请检查 schema 的 input_joint / output_joint") + in_dof = m.jnt_dofadr[in_j] + out_dof = m.jnt_dofadr[out_j] + + in_m, load_m = aid(m, "input_motor"), aid(m, "load_motor") + if in_m < 0 or load_m < 0: + sys.exit("找不到 input_motor / load_motor 作动器(应由 urdf_to_mjcf.py 生成)") + + p_j = jid(m, cfg["planet_joint"]) if cfg["planet_joint"] else -1 + p_dof = m.jnt_dofadr[p_j] if p_j >= 0 else -1 + has_planet = p_dof >= 0 + + # 限位:优先 schema(cfg.pos_lim/trq_lim),否则从 MJCF 读(demo 回退路径) + pos_lim = cfg["pos_lim"] if cfg["pos_lim"] is not None else m.jnt_range[in_j][1] + trq_lim = cfg["trq_lim"] if cfg["trq_lim"] is not None else m.actuator_ctrlrange[in_m][1] + + DT = cfg["dt"] + nsteps = int(cfg["duration"] / DT) + t_arr = np.zeros(nsteps) + q_in, qd_in, qacc_in = np.zeros(nsteps), np.zeros(nsteps), np.zeros(nsteps) + q_out, qd_out, qacc_out = np.zeros(nsteps), np.zeros(nsteps), np.zeros(nsteps) + q_p, qd_p = np.zeros(nsteps), np.zeros(nsteps) + q_ref_arr, qd_ref_arr = np.zeros(nsteps), np.zeros(nsteps) + tau_in_arr, tau_out_arr, power_arr = np.zeros(nsteps), np.zeros(nsteps), np.zeros(nsteps) + + mujoco.mj_resetData(m, d) + + viewer = None + if not args.headless: + try: + viewer = mujoco.viewer.launch_passive(m, d) + print("已打开可视化窗口(关闭窗口可提前结束仿真)") + except Exception as e: + print(f"无法打开可视化窗口(可能缺显示器/X11):{e}") + print("退回无头模式继续计算…") + viewer = None + + w = 2.0 * np.pi * cfg["frequency"] + t_start = time.perf_counter() + try: + for k in range(nsteps): + t = k * DT + # 升余弦包络平滑启动:参考从 0 位置、0 速度起跳,避免 t=0 速度跳变 + if t < RAMP_TIME: + env = 0.5 * (1.0 - np.cos(np.pi * t / RAMP_TIME)) + denv = 0.5 * np.pi / RAMP_TIME * np.sin(np.pi * t / RAMP_TIME) + else: + env = 1.0 + denv = 0.0 + q_ref = cfg["amplitude"] * np.sin(w * t) * env + qd_ref = cfg["amplitude"] * (w * np.cos(w * t) * env + np.sin(w * t) * denv) + + tau_in = cfg["kp"] * (q_ref - d.qpos[in_dof]) + cfg["kd"] * (qd_ref - d.qvel[in_dof]) + d.ctrl[in_m] = tau_in + d.ctrl[load_m] = cfg["load_torque"] + mujoco.mj_step(m, d) + + t_arr[k] = t + q_in[k] = d.qpos[in_dof]; qd_in[k] = d.qvel[in_dof]; qacc_in[k] = d.qacc[in_dof] + q_out[k] = d.qpos[out_dof]; qd_out[k] = d.qvel[out_dof]; qacc_out[k] = d.qacc[out_dof] + if has_planet: + q_p[k] = d.qpos[p_dof]; qd_p[k] = d.qvel[p_dof] + q_ref_arr[k] = q_ref; qd_ref_arr[k] = qd_ref + tau_in_arr[k] = d.actuator_force[in_m] + tau_out_arr[k] = d.qfrc_constraint[out_dof] + power_arr[k] = tau_out_arr[k] * qd_out[k] + + if viewer is not None: + viewer.sync() + if not args.fast: + elapsed = time.perf_counter() - t_start + sim_t = (k + 1) * DT + if elapsed < sim_t: + time.sleep(sim_t - elapsed) + if not viewer.is_running(): + print("窗口已关闭,提前结束仿真") + nsteps = k + 1 + break + finally: + if viewer is not None: + viewer.close() + + t_arr = t_arr[:nsteps]; q_in = q_in[:nsteps]; qd_in = qd_in[:nsteps]; qacc_in = qacc_in[:nsteps] + q_out = q_out[:nsteps]; qd_out = qd_out[:nsteps]; qacc_out = qacc_out[:nsteps] + q_p = q_p[:nsteps]; qd_p = qd_p[:nsteps] + q_ref_arr = q_ref_arr[:nsteps]; qd_ref_arr = qd_ref_arr[:nsteps] + tau_in_arr = tau_in_arr[:nsteps]; tau_out_arr = tau_out_arr[:nsteps]; power_arr = power_arr[:nsteps] + + # ------------------------------ 写 CSV(写到 MJCF 所在目录) ------------------------------ + cols = [t_arr, q_in, qd_in, qacc_in, q_ref_arr, qd_ref_arr, + q_out, qd_out, qacc_out, tau_in_arr, tau_out_arr, power_arr] + header = ("time,input_q,input_qd,input_qacc,q_ref,qd_ref," + "output_q,output_qd,output_qacc,tau_in,tau_out,power_out") + if has_planet: + cols.insert(9, q_p); cols.insert(10, qd_p) + header = header.replace("tau_in", "planet_q,planet_qd,tau_in") + data = np.column_stack(cols) + csv_path = os.path.join(cfg["out_dir"], "timeseries.csv") + np.savetxt(csv_path, data, delimiter=",", header=header, comments="", fmt="%.8f") + + # ------------------------------ 汇总报告 ------------------------------ + half = nsteps // 2 + tau_in_ss = np.abs(tau_in_arr[half:]).mean() + tau_out_ss = np.abs(tau_out_arr[half:]).mean() + N = cfg["gear_ratio"] + efficiency = (tau_out_ss / (N * tau_in_ss)) * 100.0 if tau_in_ss > 1e-9 else float("nan") + + # ------------------------------ 汇总报告(打印到终端 + 写 report.txt) ------------------------------ + rm = np.sqrt(np.mean((q_in - q_ref_arr) ** 2)) + vm = np.sqrt(np.mean((qd_in - qd_ref_arr) ** 2)) + # 传动比实测:用带截距的最小二乘斜率估计 q_out = k·q_in + b 的 k。 + # 不能逐点 q_out/q_in 再取均值——q_in 过零处软约束相位滞后会让比值爆表甚至变号, + # 把均值带偏(如 0.112368 vs 真实 0.111111)。带截距斜率对相位滞后与负载静偏置 + # (q_out 恒滞后一个常数角)都不敏感,能精确还原 1/N。 + ratio_measured = float(np.polyfit(q_in[half:], q_out[half:], 1)[0]) + mgn_pos = margin(pos_lim, abs(q_in).max()) + mgn_trq = margin(trq_lim, abs(tau_in_arr).max()) + + rep = [] + rep.append("=" * 64) + rep.append("关节模组仿真报告") + rep.append("=" * 64) + rep.append(f"模型 : {os.path.basename(cfg['xml'])}") + rep.append(f"输入端 : {cfg['input_joint']} 输出端: {cfg['output_joint']}") + rep.append(f"标称减速比 1 : {N:.4f}(输出 = 输入/{N:.4f})") + rep.append(f"仿真模式 : {cfg['mode']}") + rep.append(f"负载力矩 : {cfg['load_torque']:.4f} N·m 阻尼: {cfg['damping']}") + rep.append("") + rep.append("[1] 运动学(跟踪精度)") + rep.append(f" 输入位置峰值 : {abs(q_in).max():.4f} rad (参考 {cfg['amplitude']:.4f})") + rep.append(f" 位置跟踪误差 (RMS) : {rm:.4f} rad") + rep.append(f" 速度跟踪误差 (RMS) : {vm:.4f} rad/s") + rep.append(f" 输出位置峰值 : {abs(q_out).max():.4f} rad (应为 {cfg['amplitude']/N:.4f})") + rep.append(f" 传动比实测 : {ratio_measured:.6f} (期望 {1/N:.6f})") + rep.append("") + rep.append("[2] 动力学(力矩与功率)") + rep.append(f" 输入力矩 (稳态均值) : {tau_in_ss:.4f} N·m") + rep.append(f" 输出力矩 (稳态均值) : {tau_out_ss:.4f} N·m") + rep.append(f" 理想输出 = 输入×{N:.4f} : {N*tau_in_ss:.4f} N·m") + rep.append(f" 力矩损失 : {N*tau_in_ss - tau_out_ss:.4f} N·m") + rep.append(f" 效率 η = 输出/(输入×{N:.4f}) : {efficiency:.2f} %") + rep.append(f" 输入力矩峰值 (瞬态) : {abs(tau_in_arr).max():.4f} N·m") + rep.append(f" 输出功率峰值 : {abs(power_arr).max():.4f} W") + rep.append("") + rep.append("[3] 安全性(安全余量)") + rep.append(f" 位置余量 (限位 ±{pos_lim:.4f} rad) : {mgn_pos:.2f} %") + rep.append(f" 力矩余量 (限位 ±{trq_lim:.4f} N·m) : {mgn_trq:.2f} %") + rep.append(f" 过载判定 : {'⚠ 余量 < 20%,存在过载风险' if mgn_trq < 20 else '✓ 余量充足'}") + rep.append("") + rep.append("=" * 64) + rep.append(f"已写出 {csv_path}") + rep.append("=" * 64) + + report_text = "\n".join(rep) + "\n" + print("\n" + report_text) + report_path = os.path.join(cfg["out_dir"], "report.txt") + with open(report_path, "w", encoding="utf-8") as f: + f.write(report_text) + print(f"已写出报告 {report_path}") + + # overload 模式:额外产出一份过载报告 + if cfg["mode"] == "overload": + tau_peak = float(np.abs(tau_in_arr).max()) + if mgn_trq <= 0: + verdict = "⚠ 已过载(输入力矩达到额定限位)" + elif mgn_trq < 20.0: + verdict = "⚠ 接近过载(力矩余量 < 20%)" + else: + verdict = "✓ 未过载" + orep = [ + "=" * 48, + "过载仿真报告", + "=" * 48, + f"模型 : {os.path.basename(cfg['xml'])}", + f"仿真模式 : {cfg['mode']}", + f"额定力矩限位 : ±{trq_lim:.4f} N·m", + f"施加负载力矩 : {cfg['load_torque']:.4f} N·m", + f"输入力矩峰值 : {tau_peak:.4f} N·m", + f"力矩余量 : {mgn_trq:.2f} %", + f"位置跟踪误差 : {rm:.4f} rad (RMS)", + f"过载判定 : {verdict}", + "=" * 48, + ] + orep_text = "\n".join(orep) + "\n" + orep_path = os.path.join(cfg["out_dir"], "overload_report.txt") + with open(orep_path, "w", encoding="utf-8") as f: + f.write(orep_text) + print(f"\n已写出过载报告 {orep_path}") + print(orep_text) + + if args.plot: + try: + import matplotlib + matplotlib.use("Agg") + import matplotlib.pyplot as plt + _setup_cjk_font(plt) + fig, ax = plt.subplots(3, 1, figsize=(9, 10), sharex=True) + ax[0].plot(t_arr, q_in, label="input") + ax[0].plot(t_arr, q_out, label="output") + if has_planet: + ax[0].plot(t_arr, q_p, label="planet") + ax[0].set_ylabel("位置 [rad]"); ax[0].legend() + ax[1].plot(t_arr, tau_in_arr, label="tau_in") + ax[1].plot(t_arr, tau_out_arr, label="tau_out") + ax[1].set_ylabel("力矩 [N·m]"); ax[1].legend() + ax[2].plot(t_arr, power_arr, label="power_out") + ax[2].set_ylabel("功率 [W]"); ax[2].set_xlabel("时间 [s]"); ax[2].legend() + fig.tight_layout() + png_path = os.path.join(cfg["out_dir"], "report_curves.png") + fig.savefig(png_path, dpi=120) + print(f"已写出 {png_path}") + except ImportError: + print("未安装 matplotlib,跳过绘图") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/scripts/urdf_to_mjcf.py b/scripts/urdf_to_mjcf.py new file mode 100644 index 0000000..c5694ae --- /dev/null +++ b/scripts/urdf_to_mjcf.py @@ -0,0 +1,600 @@ +#!/usr/bin/env python3 +""" +关节模组 URDF → MJCF 转换小工具(专用版) +===================================================================== + +把一个「关节模组」的 URDF 转成 MuJoCo 可用的 MJCF(.xml),**不改变任何 +运动学 / 动力学 / 传动关系**,只补上原 URDF 里缺失、但仿真必需的部分: + + 1. 质量 / 重心 / 惯性张量 —— 从每个 link 的 STL 网格做体积分(trimesh), + 按材料密度(脚本顶部的常数表)算出,多网格用平行轴定理合成。 + 2. —— 输入电机 + 输出负载(原 URDF 没有)。 + 3. 渲染网格覆盖 —— 个别 STL 面数超过 MuJoCo 上限(20万),渲染时换降采样版。 + +已严格保真的部分(直接照搬 URDF,绝不动): + - 关节层级:/ 决定 body 的父子关系; + → 子 (不是 !) + → 子 (rpy 反转,z-y-x) + - 转轴:(子 link 系内,直接映射) + - 限位: + - 减速比: polycoef(joint1 = offset + multiplier·joint2) + - 视觉:(仅视觉,contype/conaffinity=0) + +关键 MuJoCo 语义(易错点,务必保持): + - MuJoCo 的 是转轴相对 **body 帧** 的偏移,默认 0 即轴过 body 原点。 + URDF 的 是「子 link 系相对父系」的位姿,对应子 。 + 两者不是一回事 —— 填错会把行星轮挂到体外轴上公转。 + - 等价 joint1=本关节 joint2=被 mimic 关节 + polycoef="offset M 0 0 0"。 + +用法(在 scripts/ 目录下运行): + python3 urdf_to_mjcf.py # 默认转换本案例 + python3 urdf_to_mjcf.py --urdf ../urdf/foo.urdf --out foo.xml + python3 urdf_to_mjcf.py --input <关节名> --output <关节名> # 手动指定输入/输出端 + +依赖:numpy, trimesh(pip install trimesh) +""" + +import argparse +import os +import shutil +import xml.etree.ElementTree as ET + +import numpy as np + +try: + import trimesh +except ImportError as e: # pragma: no cover + raise SystemExit("缺少依赖 trimesh,请先 `pip install trimesh`") from e + + +# ============================================================================= +# 材料密度常数 (kg/m³) —— 在这里给定 / 修改 +# ============================================================================= +# 默认按钢处理;个别混合/轻质零件单独覆盖。这些就是「关节模组」需要标定的常数。 +DEFAULT_DENSITY = 7850.0 # 钢(太阳轮、行星架、行星轮) +DENSITIES = { + "fixed_structure": 2700.0, # 固定结构 —— 铝合金 + "motor_stator": 7200.0, # 定子 —— 硅钢+铜绕组,工程估算等效密度 + "motor_rotor": 7600.0, # 转子 —— 硅钢+磁钢,工程估算等效密度 + # 其余(sun_drive / carrier_link / planet_*_link)走默认钢 7850 +} + +# STL 单位换算:URDF 里 mesh 的 scale 通常是 0.001(毫米 → 米)。 +# 质量/惯量按「缩放后(米)」的体积分计算,保证 SI 单位(kg / kg·m²); +# 渲染 scale 逐 mesh 从 URDF 读取(见 build_mjcf 的 asset 生成)。 + +# 渲染网格覆盖:某 STL 原始面数超过 MuJoCo 顶点上限(20万),渲染时用降采样版; +# 但质量/惯量仍按 **原始网格** 计算,不改变动力学。{mesh 名: 渲染用文件名} +# 不在此表里的超面数网格,由 render_file_for() 在转换时自动降采样。 +MESH_ASSET_OVERRIDE = { + "motor_stator": "motor_stator_decimated.stl", +} + +# MuJoCo 单个 STL 网格的面数上限(超出会报错);自动降采样的目标面数。 +MAX_MJC_FACES = 200000 +DECIMATE_TARGET_FACES = 100000 + +# ============================================================================= +# 仿真参数(关节模组默认;不影响运动学/传动,仅数值/安全相关) +# ============================================================================= +TIMESTEP = 0.001 # [s] +GRAVITY = (0.0, 0.0, -9.81) +JOINT_DAMPING = 0.01 # 数值阻尼(避免刚性齿轮约束震荡) +JOINT_ARMATURE = 0.0005 # 电枢惯量 +TORQUE_LIMIT = 10.0 # 输入力矩限位 [N·m](占位,应填真实电机额定值) +LOAD_CTRLRANGE = 1.0e6 # 负载电机 ctrlrange:测试边界条件,不限流(可施加任意负载做过载仿真) +SOLREF = (0.002, 1.0) # 齿轮约束软约束 solref +SOLIMP = (0.9, 0.95, 0.0001) # 齿轮约束 solimp + + +# ============================================================================= +# 小工具函数 +# ============================================================================= +def _vec(el, attr, default): + if el is None or attr not in el.attrib: + return np.array(default, dtype=float) + return np.array([float(x) for x in el.get(attr).split()], dtype=float) + + +def parse_origin(origin_el): + """返回 (xyz, rpy),缺省为零。""" + if origin_el is None: + return np.zeros(3), np.zeros(3) + xyz = _vec(origin_el, "xyz", [0, 0, 0]) + rpy = _vec(origin_el, "rpy", [0, 0, 0]) + return xyz, rpy + + +def parse_axis(axis_el): + """URDF 转轴(子 link 系内),缺省 (1,0,0)。""" + return _vec(axis_el, "xyz", [1, 0, 0]) + + +def parse_limit(limit_el): + """返回 (lower, upper),无 返回 None。""" + if limit_el is None: + return None + return (float(limit_el.get("lower")), float(limit_el.get("upper"))) + + +def parse_mimic(mimic_el): + """返回 dict(joint, multiplier, offset),无 返回 None。""" + if mimic_el is None: + return None + return { + "joint": mimic_el.get("joint"), + "multiplier": float(mimic_el.get("multiplier", "1")), + "offset": float(mimic_el.get("offset", "0")), + } + + +def parse_mesh_scale(mesh_el): + """返回 mesh 的 scale(默认 1 1 1)。""" + if mesh_el is None: + return np.array([1.0, 1.0, 1.0]) + return _vec(mesh_el, "scale", [1, 1, 1]) + + +def parse_color(material_el, global_materials): + """提取材质 RGBA(前 3 通道),找不到用默认灰。""" + rgba = None + if material_el is not None: + color_el = material_el.find("color") + if color_el is not None: + rgba = color_el.get("rgba") + elif material_el.get("name") in global_materials: + rgba = global_materials[material_el.get("name")] + if rgba is None: + return (0.7, 0.7, 0.7) + vals = [float(x) for x in rgba.split()] + return tuple(vals[:3]) + + +def rpy_to_euler(rpy): + """URDF rpy(固定轴 x-y-z, R=Rz·Ry·Rx) → MuJoCo euler(体轴 x-y-z, R=Rx·Ry·Rz)。 + 两者不是简单重排(Rx·Ry·Rz ≠ Rz·Ry·Rx),必须由旋转矩阵解出 MuJoCo 的 x-y-z 欧拉角。""" + R = rpy_to_mat(rpy) + ey = np.arcsin(np.clip(R[0, 2], -1.0, 1.0)) + ez = np.arctan2(-R[0, 1], R[0, 0]) + ex = np.arctan2(-R[1, 2], R[2, 2]) + return np.array([ex, ey, ez]) + + +def rpy_to_mat(rpy): + """rpy → 旋转矩阵 R = Rz(rz)·Ry(ry)·Rx(rx)。""" + cx, sx = np.cos(rpy[0]), np.sin(rpy[0]) + cy, sy = np.cos(rpy[1]), np.sin(rpy[1]) + cz, sz = np.cos(rpy[2]), np.sin(rpy[2]) + Rx = np.array([[1, 0, 0], [0, cx, -sx], [0, sx, cx]]) + Ry = np.array([[cy, 0, sy], [0, 1, 0], [-sy, 0, cy]]) + Rz = np.array([[cz, -sz, 0], [sz, cz, 0], [0, 0, 1]]) + return Rz @ Ry @ Rx + + +def fmt(x): + """浮点 → 字符串(6 位有效数字,紧凑科学计数)。""" + return f"{float(x):.6g}" + + +def fmt_vec(v): + return " ".join(fmt(x) for x in v) + + +def fmt_urdf(x): + """URDF 原值:最短精确表示(整数值去 .0),保证与源 URDF 逐位一致。 + 用于「照搬不改」的字段:限位、减速比、原点、轴、mesh scale。""" + v = float(x) + if v == int(v) and abs(v) < 1e15: + return str(int(v)) + return repr(v) + + +def fmt_vec_urdf(v): + return " ".join(fmt_urdf(x) for x in v) + + +# ============================================================================= +# 质量 / 重心 / 惯性 计算(STL 体积分) +# ============================================================================= +def mesh_mass_props(path, density, scale): + """加载 STL,返回 (mass, com, inertia): + mass [kg]、com [m,网格自身坐标系]、inertia [kg·m²,关于自身质心,网格系]。""" + mesh = trimesh.load(path, force="mesh") + if isinstance(mesh, trimesh.Scene): + # 多物体场景:合并几何 + mesh = trimesh.util.concatenate(list(mesh.geometry.values())) + # 均匀缩放(毫米→米)。非均匀 scale 这里按体积近似,误差可忽略(本案例均 0.001) + s = float(scale[0]) + mesh.apply_scale(s) + mass = density * abs(mesh.volume) + com = np.asarray(mesh.center_mass, dtype=float) + inertia = np.asarray(mesh.moment_inertia, dtype=float) * density + return mass, com, inertia + + +def link_mass_props(visuals, mesh_dir): + """把一个 link 的多个视觉网格,按各自 origin 合成质量/重心/惯性(link 系)。""" + items = [] + for vis in visuals: + if vis["mesh_filename"] is None: + continue # 非 mesh 几何(本案例没有)跳过 + base = vis["mesh_base"] + src = os.path.join(mesh_dir, base + ".stl") # 原始网格算质量 + origin, rpy = vis["origin"] + density = DENSITIES.get(base, DEFAULT_DENSITY) + mass, com_m, inertia_m = mesh_mass_props(src, density, vis["scale"]) + R = rpy_to_mat(rpy) + com_link = origin + R @ com_m # 网格质心 → link 系 + inertia_link = R @ inertia_m @ R.T # 惯性张量旋到 link 系 + items.append((mass, com_link, inertia_link)) + + if not items: + return 0.0, np.zeros(3), np.zeros((3, 3)) + + total_mass = sum(m for m, _, _ in items) + com = sum(m * c for m, c, _ in items) / total_mass + inertia = np.zeros((3, 3)) + for mass, c, I in items: + d = c - com + inertia += I + mass * (np.dot(d, d) * np.eye(3) - np.outer(d, d)) + return total_mass, com, inertia + + +# ============================================================================= +# 网格降采样(仅用于渲染;质量/惯量始终按原始网格,见 link_mass_props) +# ============================================================================= +def stl_face_count(path): + """读二进制 STL 的三角面数(offset 80 的 uint32)。非二进制返回 0。""" + with open(path, "rb") as f: + if f.read(5).lower().startswith(b"solid"): + return 0 + f.seek(80) + return int(np.frombuffer(f.read(4), dtype=" 自动降采样 > 原文件。""" + if base in MESH_ASSET_OVERRIDE: + # 显式覆盖仅当覆盖文件真实存在于源网格目录时才生效;否则退回通用降采样路径, + # 让新模组里同样超面数的同名网格自动生成 *_decimated.stl(否则会引用一个不存在的文件)。 + override = MESH_ASSET_OVERRIDE[base] + if os.path.isfile(os.path.join(src_mesh_dir, override)): + return override + src = os.path.join(src_mesh_dir, base + ".stl") + if os.path.isfile(src) and stl_face_count(src) > MAX_MJC_FACES: + dec = base + "_decimated.stl" + dst = os.path.join(out_mesh_dir, dec) + if not os.path.isfile(dst): + os.makedirs(out_mesh_dir, exist_ok=True) + decimate_stl(src, dst, DECIMATE_TARGET_FACES) + return dec + return base + ".stl" + + +# ============================================================================= +# URDF 解析 +# ============================================================================= +def parse_urdf(path): + tree = ET.parse(path) + robot = tree.getroot() + + # 顶层 (本案例用的是视觉内联 ,这里留作兜底) + global_materials = {} + for mat in robot.findall("material"): + color_el = mat.find("color") + if color_el is not None: + global_materials[mat.get("name")] = color_el.get("rgba") + + links = {} + for link in robot.findall("link"): + name = link.get("name") + visuals = [] + for vis in link.findall("visual"): + origin = parse_origin(vis.find("origin")) + geom_el = vis.find("geometry") + mesh_el = geom_el.find("mesh") if geom_el is not None else None + mesh_filename = mesh_el.get("filename") if mesh_el is not None else None + mesh_base = (os.path.splitext(os.path.basename(mesh_filename))[0] + if mesh_filename else None) + visuals.append({ + "origin": origin, + "mesh_filename": mesh_filename, + "mesh_base": mesh_base, + "scale": parse_mesh_scale(mesh_el), + "color": parse_color(vis.find("material"), global_materials), + }) + links[name] = {"name": name, "visuals": visuals} + + joints = [] + for j in robot.findall("joint"): + joints.append({ + "name": j.get("name"), + "type": j.get("type", "revolute"), + "parent": j.find("parent").get("link"), + "child": j.find("child").get("link"), + "origin": parse_origin(j.find("origin")), + "axis": parse_axis(j.find("axis")), + "limit": parse_limit(j.find("limit")), + "mimic": parse_mimic(j.find("mimic")), + }) + + return robot.get("name"), links, joints + + +def build_tree(links, joints): + """由关节 parent/child 建立 body 树,返回 (roots, children_by_parent)。""" + parent_of = {} # child link -> joint + children = {} # parent link -> [joints] + for link in links: + children[link] = [] + for j in joints: + parent_of[j["child"]] = j + children.setdefault(j["parent"], []).append(j) + + roots = [name for name in links if name not in parent_of] + return roots, children + + +def detect_input_output(joints): + """关节模组自动识别输入/输出端: + 输入 = 唯一没有 的关节(独立驱动源); + 输出 = 以正 multiplier 跟随输入的关节(减速输出)。 + 也可用 --input/--output 手动指定。""" + no_mimic = [j for j in joints if j["mimic"] is None] + input_j = no_mimic[0] if len(no_mimic) == 1 else None + output_j = None + if input_j is not None: + for j in joints: + m = j["mimic"] + if m is not None and m["joint"] == input_j["name"] and m["multiplier"] > 0: + output_j = j + break + return input_j, output_j + + +# ============================================================================= +# MJCF 生成 +# ============================================================================= +# URDF 关节类型 → MuJoCo 关节类型。URDF 的 fixed 关节(0 自由度,刚体固连)在 +# MJCF 里用「子 body 不写 」表达(子 body 的 pos/euler 已含其位姿),故映射为 None。 +_URDF_TO_MJC_JOINT = { + "revolute": "hinge", + "continuous": "hinge", + "prismatic": "slide", + "floating": "free", + "fixed": None, +} + + +def joint_xml(j): + jtype = _URDF_TO_MJC_JOINT.get(j["type"], j["type"]) + if jtype is None: # fixed:固连,不生成 + return None + attrs = [f'name="{j["name"]}"', f'type="{jtype}"', f'axis="{fmt_vec_urdf(j["axis"])}"'] + if j["limit"] is not None: + attrs.append(f'range="{fmt_urdf(j["limit"][0])} {fmt_urdf(j["limit"][1])}"') + return " ".join(attrs) + + +def inertial_xml(mass, com, inertia): + if mass <= 0: + return None + # fullinertia 顺序:ixx iyy izz ixy ixz iyz + fi = (inertia[0, 0], inertia[1, 1], inertia[2, 2], + inertia[0, 1], inertia[0, 2], inertia[1, 2]) + return (f'') + + +def geom_xml(vis, asset_scales): + base = vis["mesh_base"] + if base is None: + return None + # 记录该 mesh 的渲染 scale(来自 URDF )。同一 mesh 若被多处引用且 scale + # 不同,以最后一次为准——本语料库所有 mesh scale 统一为 0.001,不涉及此边界情况。 + asset_scales[base] = vis["scale"] + parts = [f'type="mesh"', f'mesh="{base}"', + f'rgba="{fmt(vis["color"][0])} {fmt(vis["color"][1])} {fmt(vis["color"][2])} 1"'] + origin, rpy = vis["origin"] + if np.any(np.abs(origin) > 1e-12): + parts.append(f'pos="{fmt_vec_urdf(origin)}"') + if np.any(np.abs(rpy) > 1e-12): + parts.append(f'euler="{fmt_vec_urdf(rpy_to_euler(rpy))}"') + return "" + + +def emit_body(lines, link, links, joints, children, joint_map, mesh_dir, asset_scales, depth): + ind = " " * depth + link_name = link["name"] + + # 该 link 作为子 body 的关节(非根) + j = joint_map.get(link_name) + pos_attr = "" + if j is not None: + xyz, rpy = j["origin"] + if np.any(np.abs(xyz) > 1e-12): + pos_attr = f' pos="{fmt_vec_urdf(xyz)}"' + euler = rpy_to_euler(rpy) + if np.any(np.abs(euler) > 1e-12): + pos_attr += f' euler="{fmt_vec_urdf(euler)}"' + + lines.append(f'{ind}') + + # 惯性(link 系内) + mass, com, inertia = link_mass_props(link["visuals"], mesh_dir) + iner = inertial_xml(mass, com, inertia) + if iner is not None: + lines.append(ind + " " + iner) + + # 关节(fixed 关节固连不生成 ,仅靠 body 的 pos/euler 定位) + if j is not None: + jxml = joint_xml(j) + if jxml is not None: + lines.append(ind + " ") + + # 视觉几何 + for vis in link["visuals"]: + g = geom_xml(vis, asset_scales) + if g is not None: + lines.append(ind + " " + g) + + # 子 body + for cj in children.get(link_name, []): + child_link = links[cj["child"]] + emit_body(lines, child_link, links, joints, children, joint_map, + mesh_dir, asset_scales, depth + 1) + + lines.append(f"{ind}") + + +def build_mjcf(robot_name, links, joints, mesh_dir, out_meshdir, input_j, output_j, damping, torque_limit): + roots, children = build_tree(links, joints) + joint_map = {j["child"]: j for j in joints} + asset_scales = {} + + lines = [] + lines.append(f'') + lines.append(' ') + lines.append(' ') + lines.append('') + lines.append(f' ') + + return "\n".join(lines) + "\n", render_file + + +# ============================================================================= +# 主流程 +# ============================================================================= +def main(): + here = os.path.dirname(os.path.abspath(__file__)) + ap = argparse.ArgumentParser(description="关节模组 URDF → MJCF 转换") + ap.add_argument("--urdf", default=os.path.join(here, "..", "urdf", + "planetary_joint_split_motor_demo.urdf")) + ap.add_argument("--out", default=os.path.join(here, + "planetary_joint_split_motor_demo_generated.xml")) + ap.add_argument("--meshdir", default=os.path.join(here, "meshes"), + help="网格输出目录(把 URDF 引用的 STL 拷进来,默认 urdf/meshes 即 URDF 同目录)") + ap.add_argument("--input", default=None, help="手动指定输入关节名") + ap.add_argument("--output", default=None, help="手动指定输出关节名") + ap.add_argument("--damping", type=float, default=JOINT_DAMPING, + help=f"关节粘性阻尼(默认 {JOINT_DAMPING})") + ap.add_argument("--torque-limit", type=float, default=TORQUE_LIMIT, + help=f"输入力矩限位 [N·m](默认 {TORQUE_LIMIT})") + ap.add_argument("--no-copy", action="store_true", help="不拷贝网格文件") + args = ap.parse_args() + + urdf_path = os.path.abspath(args.urdf) + robot_name, links, joints = parse_urdf(urdf_path) + mesh_dir = os.path.join(os.path.dirname(urdf_path), "meshes") + + input_j, output_j = detect_input_output(joints) + if args.input: + input_j = next((j for j in joints if j["name"] == args.input), None) or input_j + if args.output: + output_j = next((j for j in joints if j["name"] == args.output), None) or output_j + + os.makedirs(args.meshdir, exist_ok=True) + xml_text, render_file = build_mjcf(robot_name, links, joints, mesh_dir, + args.meshdir, input_j, output_j, args.damping, + args.torque_limit) + + with open(args.out, "w", encoding="utf-8") as f: + f.write(xml_text) + + # 拷贝网格(降采样网格已由 render_file_for 直接写进 meshdir,这里只拷原文件/覆盖文件) + if not args.no_copy: + for base, file in render_file.items(): + src = os.path.join(mesh_dir, file) + dst = os.path.join(args.meshdir, file) + if os.path.exists(src): + shutil.copy2(src, dst) + + # 汇总 + print(f"已生成 {os.path.abspath(args.out)}") + print(f" links : {len(links)} joints: {len(joints)}") + print(f" 阻尼 : {args.damping}") + if input_j is not None: + print(f" 输入端 : {input_j['name']}") + if output_j is not None: + m = output_j["mimic"] + ratio = 1.0 / m["multiplier"] if m and m["multiplier"] != 0 else float("nan") + print(f" 输出端 : {output_j['name']} 减速比 ≈ 1:{ratio:.4f}") + for link_name, link in sorted(links.items()): + mass, com, _ = link_mass_props(link["visuals"], mesh_dir) + print(f" [{link_name}] 质量 {mass*1000:.1f} g 重心 {fmt_vec(com)}") + + +if __name__ == "__main__": + main() diff --git a/scripts/validate_module.py b/scripts/validate_module.py new file mode 100644 index 0000000..d51d416 --- /dev/null +++ b/scripts/validate_module.py @@ -0,0 +1,134 @@ +#!/usr/bin/env python3 +""" +关节模组一键验证入口(编排 urdf_to_mjcf → generate_schema → simulate_report) +==================================================================== + +把「URDF → MJCF → schema → 仿真报告」整条流水线串起来,一条命令跑完。 +这相当于后端处理「用户上传一份 URDF + mesh」时干的事:你拿任意一份关节模组 URDF +丢进来,只要显式给出输入/输出关节,就能得到自包含 MJCF、schema JSON 和仿真报告。 + +三个步骤各自都能单独跑(见 docs/architecture.md 的「分步运行」),本脚本只是把它们按顺序编排, +并把产物统一放到同一个工作目录(默认 = URDF 所在目录)。 + +用法(在 scripts/ 目录下运行): + python3 validate_module.py \ + --urdf /path/to/joint_module.urdf \ + --input sun_input_joint --output carrier_output_joint + +常用可选参数: + --work-dir DIR 产物输出目录(默认 URDF 所在目录) + --ratio N 减速比(URDF 输出关节无 时手动指定) + --torque-limit T 输入力矩限位 [N·m](默认 ±10,占位) + --position-limit P 输入关节无 时的位置限位 ±rad(默认 ±12π) + --show 弹可视化窗口(默认无头模式) + --plot 追加 report_curves.png 曲线图 + +产物(都在 work-dir 下): + .xml 自包含 MJCF(meshdir="meshes",网格已拷到 meshes/) + .json schema JSON + report.txt 仿真报告 + timeseries.csv 逐时间步观测 + report_curves.png 曲线图(--plot) +""" +import argparse +import os +import re +import subprocess +import sys + + +SCRIPTS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +def robot_name_of(urdf): + """从 URDF 根元素 取机器名,作为默认 module_id。""" + with open(urdf, encoding="utf-8") as f: + head = f.read(2048) + m = re.search(r']*\bname="([^"]+)"', head) + return m.group(1) if m else os.path.splitext(os.path.basename(urdf))[0] + + +def run(cmd, what): + print(f"\n== {what} ==") + print(" " + " ".join(cmd)) + r = subprocess.run(cmd, cwd=SCRIPTS_DIR) + if r.returncode != 0: + sys.exit(f"[失败] {what}(退出码 {r.returncode})") + + +def main(): + ap = argparse.ArgumentParser(description="关节模组一键验证(URDF→MJCF→schema→报告)") + ap.add_argument("--urdf", required=True, help="输入 URDF 路径") + ap.add_argument("--input", required=True, help="输入关节名(电机端,显式指定)") + ap.add_argument("--output", required=True, help="输出关节名(模组末端,显式指定)") + ap.add_argument("--work-dir", default=None, help="产物输出目录(默认 URDF 所在目录)") + ap.add_argument("--module-id", default=None, help="模组唯一标识(默认 URDF 的 robot 名)") + ap.add_argument("--ratio", type=float, default=None, help="手动指定减速比") + ap.add_argument("--torque-limit", type=float, default=10.0, help="输入力矩限位 [N·m]") + ap.add_argument("--position-limit", type=float, default=None, help="位置限位 ±rad") + ap.add_argument("--load-torque", type=float, default=-3.0, + help="输出端恒值负载 [N·m](负=阻力,默认 -3.0)") + ap.add_argument("--damping", type=float, default=0.01, help="关节粘性阻尼(默认 0.01)") + ap.add_argument("--mode", choices=["normal", "overload"], default="normal", + help="仿真模式(normal / overload,默认 normal)") + ap.add_argument("--show", action="store_true", help="弹可视化窗口(默认无头)") + ap.add_argument("--plot", action="store_true", help="导出曲线 PNG") + args = ap.parse_args() + + urdf = os.path.abspath(args.urdf) + if not os.path.isfile(urdf): + sys.exit(f"找不到 URDF:{urdf}") + + work_dir = os.path.abspath(args.work_dir) if args.work_dir else os.path.dirname(urdf) + os.makedirs(work_dir, exist_ok=True) + + module_id = args.module_id or robot_name_of(urdf) + xml_path = os.path.join(work_dir, module_id + ".xml") + json_path = os.path.join(work_dir, module_id + ".json") + mesh_dir = os.path.join(work_dir, "meshes") + + py = sys.executable + + # 1) URDF → MJCF + cmd1 = [py, os.path.join(SCRIPTS_DIR, "urdf_to_mjcf.py"), + "--urdf", urdf, "--out", xml_path, "--meshdir", mesh_dir, + "--input", args.input, "--output", args.output, + "--damping", str(args.damping), + "--torque-limit", str(args.torque_limit)] + run(cmd1, "① URDF → MJCF") + + # 2) URDF → schema + cmd2 = [py, os.path.join(SCRIPTS_DIR, "generate_schema.py"), + "--urdf", urdf, "--input", args.input, "--output", args.output, + "--model", os.path.basename(xml_path), "--out", json_path, + "--module-id", module_id, + "--torque-limit", str(args.torque_limit), + "--load-torque", str(args.load_torque), + "--damping", str(args.damping), + "--mode", args.mode] + if args.ratio is not None: + cmd2 += ["--ratio", str(args.ratio)] + if args.position_limit is not None: + cmd2 += ["--position-limit", str(args.position_limit)] + run(cmd2, "② URDF → schema") + + # 3) schema → 仿真报告 + cmd3 = [py, os.path.join(SCRIPTS_DIR, "simulate_report.py"), + "--schema", json_path, "--headless"] + if args.plot: + cmd3 += ["--plot"] + if args.show: + cmd3.remove("--headless") + run(cmd3, "③ 仿真 + 报告") + + print("\n全部完成。产物:") + print(f" MJCF : {xml_path}") + print(f" schema : {json_path}") + print(f" 报告 : {os.path.join(work_dir, 'report.txt')}") + print(f" 观测 : {os.path.join(work_dir, 'timeseries.csv')}") + if args.plot: + print(f" 曲线 : {os.path.join(work_dir, 'report_curves.png')}") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/urdf/meshes/carrier_link.stl b/urdf/meshes/carrier_link.stl new file mode 100644 index 0000000..22d49f1 Binary files /dev/null and b/urdf/meshes/carrier_link.stl differ diff --git a/urdf/meshes/fixed_structure.stl b/urdf/meshes/fixed_structure.stl new file mode 100644 index 0000000..4562d64 Binary files /dev/null and b/urdf/meshes/fixed_structure.stl differ diff --git a/urdf/meshes/motor_rotor.stl b/urdf/meshes/motor_rotor.stl new file mode 100644 index 0000000..1d394e1 Binary files /dev/null and b/urdf/meshes/motor_rotor.stl differ diff --git a/urdf/meshes/motor_stator.stl b/urdf/meshes/motor_stator.stl new file mode 100644 index 0000000..550d795 Binary files /dev/null and b/urdf/meshes/motor_stator.stl differ diff --git a/urdf/meshes/motor_stator_decimated.stl b/urdf/meshes/motor_stator_decimated.stl new file mode 100644 index 0000000..4882f79 Binary files /dev/null and b/urdf/meshes/motor_stator_decimated.stl differ diff --git a/urdf/meshes/planet_0_link.stl b/urdf/meshes/planet_0_link.stl new file mode 100644 index 0000000..cd70a9f Binary files /dev/null and b/urdf/meshes/planet_0_link.stl differ diff --git a/urdf/meshes/planet_1_link.stl b/urdf/meshes/planet_1_link.stl new file mode 100644 index 0000000..54d8961 Binary files /dev/null and b/urdf/meshes/planet_1_link.stl differ diff --git a/urdf/meshes/planet_2_link.stl b/urdf/meshes/planet_2_link.stl new file mode 100644 index 0000000..e0852d6 Binary files /dev/null and b/urdf/meshes/planet_2_link.stl differ diff --git a/urdf/meshes/sun_drive.stl b/urdf/meshes/sun_drive.stl new file mode 100644 index 0000000..fbc085a Binary files /dev/null and b/urdf/meshes/sun_drive.stl differ diff --git a/urdf/planetary_joint_split_motor_demo.urdf b/urdf/planetary_joint_split_motor_demo.urdf new file mode 100644 index 0000000..0450421 --- /dev/null +++ b/urdf/planetary_joint_split_motor_demo.urdf @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/urdf/robot-export.json b/urdf/robot-export.json new file mode 100644 index 0000000..99e52ab --- /dev/null +++ b/urdf/robot-export.json @@ -0,0 +1,93 @@ +{ + "schema": "simplecad.temporary_split_motor_urdf_demo.v1", + "temporary_demo_only": true, + "project_sources_modified": false, + "formal_motor_definition_remains": "single immutable 3500 COTS assembly", + "split_motor": { + "stator_step": "/Users/jerry/Downloads/3500-motor/3500-Motor_part2-定子.STEP", + "rotor_step": "/Users/jerry/Downloads/3500-motor/3500-Motor_part2-转子.STEP", + "stator_sha256": "91cc6a3d9033e74ff4d78b9802ceae32def15d5222c9537d50e7f3dfebab937f", + "rotor_sha256": "15c15bd056593d9672b4b7c331446e76c24ebb241ae59c61734b467d10d24e3b", + "stator_solid_count": 37, + "rotor_solid_count": 9, + "original_motor_solid_count": 46, + "motor_placement": { + "origin": [ + 2.0, + 0.0, + 0.0 + ], + "x_axis": [ + 0.0, + -0.9883811652466841, + -0.15199563212673947 + ], + "y_axis": [ + 1.0, + 0.0, + 0.0 + ], + "z_axis": [ + 0.0, + -0.15199563212673947, + 0.9883811652466841 + ] + }, + "rotor_motion_group": "sun_link" + }, + "kinematics": { + "driver": "sun_input_joint", + "axis": [ + 1, + 0, + 0 + ], + "rotor_sun_multiplier": 1.0, + "carrier_multiplier": 0.16666666666666666, + "planet_relative_multiplier": -0.4166666666666667, + "ring_fixed": true + }, + "meshes": [ + { + "path": "meshes/fixed_structure.stl", + "bytes": 1538584, + "sha256": "48754d3f41032aa1b43cd2ddb3d48442c70c558f85458135184200aa2e45dc9c" + }, + { + "path": "meshes/motor_stator.stl", + "bytes": 28572384, + "sha256": "fa61093b5a1b97f0f6db070d05f1376492c449b068bac957b52a6201733fc58e" + }, + { + "path": "meshes/sun_drive.stl", + "bytes": 112484, + "sha256": "dff39aab0a1a6df379c53459df2961ba4ad60682568693a6490a0cce3cae065e" + }, + { + "path": "meshes/motor_rotor.stl", + "bytes": 526184, + "sha256": "5f0a58304dbfd785fc3fdc0aa3d2c2557fbc151e81adbd5f11da1ad9ee8686be" + }, + { + "path": "meshes/carrier_link.stl", + "bytes": 508184, + "sha256": "eca27acef8eefe282f92c7042db02dcf0a65516c9a97b0aa7668dabc9110a8ff" + }, + { + "path": "meshes/planet_0_link.stl", + "bytes": 159284, + "sha256": "6fb3cff6c91186f39f098c1e3e619f88af9be56fe31c81ed327b5e5f243ceaa5" + }, + { + "path": "meshes/planet_1_link.stl", + "bytes": 159284, + "sha256": "53474223ba8cdc31d9353e2a237823e4ce93473c9c85135cd769db126452571d" + }, + { + "path": "meshes/planet_2_link.stl", + "bytes": 159284, + "sha256": "1dd79f134d39b79350d9f39663f2b786002496289e3b8936793ac7a34d693864" + } + ], + "urdf_sha256": "d5e3bf1625a639346d616334fd8677c6af97d86f8cc58dde082a7a9dd988801f" +} \ No newline at end of file