diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..41cd8bf Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index b6e4761..9450728 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ __pycache__/ # C extensions *.so +*.csv # Distribution / packaging .Python @@ -25,6 +26,8 @@ share/python-wheels/ *.egg-info/ .installed.cfg *.egg +*.pdf +*.txt MANIFEST # PyInstaller @@ -127,3 +130,20 @@ dmypy.json # Pyre type checker .pyre/ + +# By user +main-bk* +logs/ +../geod/jplg* +../geod/* +geod/jplg* +geod/usno* +cookies* +ra* +b*/ +B*/ +e*/ +r*/ +*_input.py +*inputs.py +./*/* \ No newline at end of file diff --git a/.marscode/deviceInfo.json b/.marscode/deviceInfo.json new file mode 100644 index 0000000..b754497 --- /dev/null +++ b/.marscode/deviceInfo.json @@ -0,0 +1,3 @@ +{ + "deviceId": "cd14050e957deda615fc3b6e09e8e1dbd5b54051b224d9fb189dd1c669d89615" +} \ No newline at end of file diff --git a/QUICKSTART.md b/QUICKSTART.md new file mode 100644 index 0000000..068de05 --- /dev/null +++ b/QUICKSTART.md @@ -0,0 +1,60 @@ +# Quick Reference / 快速参考 + +## 运行管道 / Run Pipeline + +```bash +# 基本用法 / Basic usage +ParselTongue main.py --config configs/your_obs_input.py + +# 使用环境变量 / Using environment variable +export VLBI_CONFIG=configs/your_obs_input.py +ParselTongue main.py +``` + +## 创建新配置 / Create New Config + +```bash +# 1. 复制模板 / Copy template +cp configs/template_input.py configs/bz111cl_input.py + +# 2. 编辑参数 / Edit parameters +vim configs/bz111cl_input.py + +# 3. 运行 / Run +ParselTongue main.py --config configs/bz111cl_input.py +``` + +## 文件结构 / File Structure + +``` +configs/ +├── template_input.py # 模板 / Template +├── ba158l1_input.py # 示例 / Example +└── your_obs_input.py # 你的配置 / Your config + +vlbi-pipeline/ +├── main.py # 运行此文件 / Run this file +└── config.py # 自动加载配置 / Auto-loads config +``` + +## 常见问题 / Common Issues + +### 找不到配置文件 / Config not found +```bash +# 使用绝对路径 / Use absolute path +ParselTongue main.py --config /full/path/to/configs/your_input.py + +# 或相对路径从正确的目录 / Or relative path from correct directory +cd /path/to/vlbi-pipeline +ParselTongue vlbi-pipeline/main.py --config configs/your_input.py +``` + +### 查看加载了哪个配置 / See which config is loaded +配置文件加载时会打印路径信息 +The config file path will be printed when loading + +## 更多信息 / More Info + +- 详细文档: [configs/USAGE.md](configs/USAGE.md) +- 模板文件: [configs/template_input.py](configs/template_input.py) +- 示例脚本: [run_examples.sh](run_examples.sh) diff --git a/README.md b/README.md index 5b62b67..b07ea9a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ -VLBI Data Processing Pipeline +VLBI Data Processing Pipeline. + +The documents can be found [vlbi-pipeline-documents](https://vlbi-pipeline-userguide.readthedocs.io/). @@ -19,9 +21,49 @@ This software depends upon the following software: - ParselTongue - Obit +Find details in [usage](docs/installation/install.rst) + ## Usage +### Quick Start + +```bash +# 1. 创建配置文件 / Create config file +cp configs/template_input.py configs/your_obs_input.py + +# 2. 编辑参数 / Edit parameters +vim configs/your_obs_input.py + +# 3. 运行管道 / Run pipeline +ParselTongue main.py --config configs/your_obs_input.py +``` + +### Configuration Management + +**New in 2026**: Configuration files are now organized in the `configs/` directory for better management. + +**Running the pipeline:** + +```bash +# Method 1: Using --config parameter (Recommended) +ParselTongue main.py --config configs/your_obs_input.py + +# Method 2: Using environment variable +export VLBI_CONFIG=configs/your_obs_input.py +ParselTongue main.py + +# Method 3: Set as default (create configs/default_input.py) +ParselTongue main.py +``` + +### Documentation + +- **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) for basic usage +- **Configuration Guide**: See [configs/USAGE.md](configs/USAGE.md) for detailed configuration instructions +- **Template**: See [configs/template_input.py](configs/template_input.py) for all available parameters +- **Examples**: Run `./run_examples.sh` to see usage examples +Find more details in [usage](docs/usage/usage.rst) @@ -44,4 +86,4 @@ Feel free to PR or suggestions! [Open an issue](https://github.com/SHAO-SKA/vlbi ## License -[GPL © SHAO](LICENSE) \ No newline at end of file +[GPL © SHAO](LICENSE) diff --git a/geod/manual_down_jplg.ipynb b/geod/manual_down_jplg.ipynb new file mode 100644 index 0000000..4017ce0 --- /dev/null +++ b/geod/manual_down_jplg.ipynb @@ -0,0 +1,91 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "27b730f6", + "metadata": {}, + "source": [ + "## Downloading ionosphere models manually" + ] + }, + { + "cell_type": "markdown", + "id": "46ed0ec9", + "metadata": {}, + "source": [ + "### Note:\n", + "The automatic downloading program did not work well, try donwload manually from:\n", + "ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "25fb3631", + "metadata": {}, + "outputs": [], + "source": [ + "# First, generate the download script:\n", + "doy_list = ['103','108','130','138','061','060','059']\n", + "year = \"2025\"\n", + "ar=year[2:4]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "efbe69ca", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/2025/103/JPL0OPSFIN_20251030000_01D_02H_GIM.INX.gz > jplg1030.25i.gz;\n", + "curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/2025/108/JPL0OPSFIN_20251080000_01D_02H_GIM.INX.gz > jplg1080.25i.gz;\n", + "curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/2025/130/JPL0OPSFIN_20251300000_01D_02H_GIM.INX.gz > jplg1300.25i.gz;\n", + "curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/2025/138/JPL0OPSFIN_20251380000_01D_02H_GIM.INX.gz > jplg1380.25i.gz;\n", + "curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/2025/061/JPL0OPSFIN_20250610000_01D_02H_GIM.INX.gz > jplg0610.25i.gz;\n", + "curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/2025/060/JPL0OPSFIN_20250600000_01D_02H_GIM.INX.gz > jplg0600.25i.gz;\n", + "curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/2025/059/JPL0OPSFIN_20250590000_01D_02H_GIM.INX.gz > jplg0590.25i.gz;\n" + ] + } + ], + "source": [ + "\n", + "for doy in doy_list:\n", + " command = f\"curl -u anonymous:daip@nrao.edu --ftp-ssl ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/{year}/{doy}/JPL0OPSFIN_{year}{doy}0000_01D_02H_GIM.INX.gz > jplg{doy}0.{ar}i.gz;\"\n", + " print(command)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6856d95b", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.2" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/geod/usno_finals.erp b/geod/usno_finals.erp new file mode 100644 index 0000000..501d5c0 --- /dev/null +++ b/geod/usno_finals.erp @@ -0,0 +1,17060 @@ +EOP-MOD Ver 2.1 2444055.5 1.0 17047 UT1-TAI UNDEF +# Earth orientation parameters series from finals USNO series +# Original data were taken from ftps://gdc.cddis.eosdis.nasa.gov/pub/products/iers/finals.all +# and replaced with ftps://gdc.cddis.eosdis.nasa.gov/pub/products/iers/finals.daily +# +# File was created at GSF ( NASA Goddard Space Flight Center ) +# File was created on 2025.11.22-23:00:03 +# +# First date: 1979.07.01 +# Last date with real data: 2025.11.22 +# Last date with prediction: 2026.03.02 +# Good for processing an experiment not after $26FEB22zz +# +2444055.5 -1.24428 3.41593 -17917853.1 0.02155 0.00950 182.1 0.000 0.000 0.000 +2444056.5 -1.23312 3.43814 -17920067.4 0.01888 0.00826 47.7 0.000 0.000 0.000 +2444057.5 -1.22174 3.46005 -17922305.8 0.01888 0.00826 47.7 0.000 0.000 0.000 +2444058.5 -1.21009 3.48166 -17924542.0 0.01888 0.00826 47.7 0.000 0.000 0.000 +2444059.5 -1.19809 3.50297 -17926749.9 0.01888 0.00826 47.7 0.000 0.000 0.000 +2444060.5 -1.18566 3.52397 -17928905.7 0.03037 0.02178 9.9 0.000 0.000 0.000 +2444061.5 -1.17272 3.54467 -17930995.2 0.03037 0.02178 9.9 0.000 0.000 0.000 +2444062.5 -1.15919 3.56506 -17933021.9 0.03037 0.02178 9.9 0.000 0.000 0.000 +2444063.5 -1.14500 3.58514 -17935014.3 0.03037 0.02178 9.9 0.000 0.000 0.000 +2444064.5 -1.13009 3.60489 -17937022.2 0.03037 0.02178 9.9 0.000 0.000 0.000 +2444065.5 -1.11444 3.62430 -17939101.2 0.02152 0.02131 579.7 0.000 0.000 0.000 +2444066.5 -1.09803 3.64332 -17941288.4 0.00193 0.02082 819.7 0.000 0.000 0.000 +2444067.5 -1.08084 3.66193 -17943584.6 0.00193 0.02082 819.7 0.000 0.000 0.000 +2444068.5 -1.06286 3.68010 -17945949.9 0.00193 0.02082 819.7 0.000 0.000 0.000 +2444069.5 -1.04405 3.69782 -17948318.4 0.00193 0.02082 819.7 0.000 0.000 0.000 +2444070.5 -1.02440 3.71510 -17950617.3 0.00193 0.02082 819.7 0.000 0.000 0.000 +2444071.5 -1.00390 3.73192 -17952786.8 0.05905 0.05117 179.4 0.000 0.000 0.000 +2444072.5 -0.98253 3.74828 -17954792.1 0.05905 0.05117 179.4 0.000 0.000 0.000 +2444073.5 -0.96026 3.76420 -17956626.1 0.05905 0.05117 179.4 0.000 0.000 0.000 +2444074.5 -0.93711 3.77966 -17958305.8 0.05905 0.05117 179.4 0.000 0.000 0.000 +2444075.5 -0.91313 3.79471 -17959866.2 0.05905 0.05117 179.4 0.000 0.000 0.000 +2444076.5 -0.88842 3.80943 -17961351.8 0.05905 0.05117 179.4 0.000 0.000 0.000 +2444077.5 -0.86307 3.82388 -17962808.2 0.01209 0.00154 156.4 0.000 0.000 0.000 +2444078.5 -0.83719 3.83811 -17964276.0 0.01209 0.00154 156.4 0.000 0.000 0.000 +2444079.5 -0.81087 3.85221 -17965787.4 0.01209 0.00154 156.4 0.000 0.000 0.000 +2444080.5 -0.78419 3.86623 -17967364.8 0.01209 0.00154 156.4 0.000 0.000 0.000 +2444081.5 -0.75725 3.88023 -17969019.8 0.01209 0.00154 156.4 0.000 0.000 0.000 +2444082.5 -0.73012 3.89428 -17970753.2 0.02451 0.06269 212.8 0.000 0.000 0.000 +2444083.5 -0.70288 3.90845 -17972554.8 0.03248 0.08864 257.1 0.000 0.000 0.000 +2444084.5 -0.67559 3.92279 -17974406.2 0.03248 0.08864 257.1 0.000 0.000 0.000 +2444085.5 -0.64833 3.93736 -17976285.8 0.02315 0.06471 527.5 0.000 0.000 0.000 +2444086.5 -0.62112 3.95214 -17978172.3 0.02315 0.06471 527.5 0.000 0.000 0.000 +2444087.5 -0.59397 3.96708 -17980048.8 0.02315 0.06471 527.5 0.000 0.000 0.000 +2444088.5 -0.56689 3.98212 -17981906.1 0.00406 0.02277 700.2 0.000 0.000 0.000 +2444089.5 -0.53989 3.99720 -17983747.2 0.00406 0.02277 723.1 0.000 0.000 0.000 +2444090.5 -0.51298 4.01225 -17985592.6 0.00406 0.02277 878.5 0.000 0.000 0.000 +2444091.5 -0.48615 4.02718 -17987485.6 0.03310 0.02690 1045.8 0.000 0.000 0.000 +2444092.5 -0.45942 4.04190 -17989484.1 0.07342 0.01414 1065.1 0.000 0.000 0.000 +2444093.5 -0.43277 4.05633 -17991640.7 0.07342 0.01414 1065.1 0.000 0.000 0.000 +2444094.5 -0.40622 4.07038 -17993979.9 0.07342 0.01414 1065.1 0.000 0.000 0.000 +2444095.5 -0.37975 4.08398 -17996480.6 0.07342 0.01414 1139.2 0.000 0.000 0.000 +2444096.5 -0.35331 4.09705 -17999075.6 0.07342 0.01414 1081.7 0.000 0.000 0.000 +2444097.5 -0.32675 4.10953 -18001671.6 0.07342 0.01414 1081.7 0.000 0.000 0.000 +2444098.5 -0.29994 4.12134 -18004179.9 0.13625 0.08250 1014.1 0.000 0.000 0.000 +2444099.5 -0.27273 4.13243 -18006539.4 0.13625 0.08250 1014.1 0.000 0.000 0.000 +2444100.5 -0.24500 4.14273 -18008725.9 0.13625 0.08250 1014.1 0.000 0.000 0.000 +2444101.5 -0.21661 4.15218 -18010748.3 0.13625 0.08250 1014.1 0.000 0.000 0.000 +2444102.5 -0.18761 4.16078 -18012640.2 0.13625 0.08250 1014.1 0.000 0.000 0.000 +2444103.5 -0.15812 4.16859 -18014447.3 0.13625 0.08250 1014.1 0.000 0.000 0.000 +2444104.5 -0.12825 4.17565 -18016216.3 0.03310 0.02690 271.0 0.000 0.000 0.000 +2444105.5 -0.09814 4.18199 -18017989.4 0.03310 0.02690 271.0 0.000 0.000 0.000 +2444106.5 -0.06790 4.18766 -18019799.2 0.03310 0.02690 271.0 0.000 0.000 0.000 +2444107.5 -0.03765 4.19271 -18021667.9 0.03310 0.02690 271.0 0.000 0.000 0.000 +2444108.5 -0.00753 4.19718 -18023605.8 0.03310 0.02690 271.0 0.000 0.000 0.000 +2444109.5 0.02236 4.20111 -18025612.1 0.07366 0.03760 819.3 0.000 0.000 0.000 +2444110.5 0.05189 4.20454 -18027675.4 0.07366 0.03760 819.3 0.000 0.000 0.000 +2444111.5 0.08093 4.20753 -18029775.1 0.07366 0.03760 819.3 0.000 0.000 0.000 +2444112.5 0.10937 4.21011 -18031884.7 0.07366 0.03760 819.3 0.000 0.000 0.000 +2444113.5 0.13717 4.21229 -18033979.4 0.07366 0.03760 819.3 0.000 0.000 0.000 +2444114.5 0.16434 4.21407 -18036040.6 0.07366 0.03760 819.3 0.000 0.000 0.000 +2444115.5 0.19091 4.21545 -18038059.3 0.03310 0.02690 271.0 0.000 0.000 0.000 +2444116.5 0.21688 4.21641 -18040039.5 0.03310 0.02690 629.4 0.000 0.000 0.000 +2444117.5 0.24229 4.21696 -18042001.4 0.03310 0.02690 629.4 0.000 0.000 0.000 +2444118.5 0.26714 4.21708 -18043984.2 0.03310 0.02690 629.4 0.000 0.000 0.000 +2444119.5 0.29146 4.21677 -18046044.9 0.01039 0.00637 483.0 0.000 0.000 0.000 +2444120.5 0.31525 4.21603 -18048245.8 0.01039 0.00637 436.0 0.000 0.000 0.000 +2444121.5 0.33856 4.21485 -18050635.0 0.01039 0.00637 516.3 0.000 0.000 0.000 +2444122.5 0.36138 4.21321 -18053222.5 0.01039 0.00637 454.0 0.000 0.000 0.000 +2444123.5 0.38376 4.21114 -18055967.2 0.01039 0.00637 454.0 0.000 0.000 0.000 +2444124.5 0.40573 4.20862 -18058785.3 0.01039 0.00637 432.9 0.000 0.000 0.000 +2444125.5 0.42734 4.20565 -18061575.1 0.01895 0.04941 367.2 0.000 0.000 0.000 +2444126.5 0.44861 4.20225 -18064249.2 0.01895 0.04941 397.9 0.000 0.000 0.000 +2444127.5 0.46960 4.19842 -18066758.1 0.03521 0.03727 310.2 0.000 0.000 0.000 +2444128.5 0.49033 4.19414 -18069095.5 0.03521 0.03727 329.3 0.000 0.000 0.000 +2444129.5 0.51089 4.18938 -18071289.4 0.03521 0.03727 329.3 0.000 0.000 0.000 +2444130.5 0.53132 4.18408 -18073387.0 0.03521 0.03727 339.7 0.000 0.000 0.000 +2444131.5 0.55168 4.17818 -18075439.6 0.03632 0.05270 525.9 0.000 0.000 0.000 +2444132.5 0.57195 4.17164 -18077493.4 0.03632 0.05270 551.1 0.000 0.000 0.000 +2444133.5 0.59214 4.16442 -18079585.2 0.02276 0.07223 656.2 0.000 0.000 0.000 +2444134.5 0.61221 4.15649 -18081740.0 0.01611 0.05343 520.7 0.000 0.000 0.000 +2444135.5 0.63215 4.14784 -18083970.7 0.01611 0.05343 520.7 0.000 0.000 0.000 +2444136.5 0.65191 4.13850 -18086279.5 0.01611 0.05343 520.7 0.000 0.000 0.000 +2444137.5 0.67141 4.12855 -18088657.8 0.00173 0.01668 408.6 0.000 0.000 0.000 +2444138.5 0.69062 4.11806 -18091088.3 0.00173 0.01668 408.6 0.000 0.000 0.000 +2444139.5 0.70946 4.10712 -18093546.7 0.00173 0.01668 408.6 0.000 0.000 0.000 +2444140.5 0.72788 4.09581 -18096005.5 0.03214 0.02695 410.3 0.000 0.000 0.000 +2444141.5 0.74582 4.08421 -18098439.5 0.03214 0.02695 410.3 0.000 0.000 0.000 +2444142.5 0.76322 4.07241 -18100834.1 0.02742 0.03737 438.7 0.000 0.000 0.000 +2444143.5 0.78004 4.06048 -18103188.9 0.03355 0.04542 424.5 0.000 0.000 0.000 +2444144.5 0.79623 4.04850 -18105521.0 0.03355 0.04542 424.5 0.000 0.000 0.000 +2444145.5 0.81184 4.03660 -18107864.5 0.03355 0.04542 424.5 0.000 0.000 0.000 +2444146.5 0.82690 4.02486 -18110268.4 0.02602 0.06364 367.0 0.000 0.000 0.000 +2444147.5 0.84147 4.01334 -18112790.5 0.02602 0.06364 367.0 0.000 0.000 0.000 +2444148.5 0.85561 4.00209 -18115484.8 0.02654 0.05275 57.8 0.000 0.000 0.000 +2444149.5 0.86937 3.99116 -18118382.4 0.02654 0.05275 57.8 0.000 0.000 0.000 +2444150.5 0.88276 3.98053 -18121473.7 0.02654 0.05275 57.8 0.000 0.000 0.000 +2444151.5 0.89577 3.97016 -18124701.9 0.02654 0.05275 57.8 0.000 0.000 0.000 +2444152.5 0.90841 3.96000 -18127975.0 0.02995 0.01458 370.7 0.000 0.000 0.000 +2444153.5 0.92071 3.94999 -18131193.5 0.02995 0.01458 370.7 0.000 0.000 0.000 +2444154.5 0.93269 3.94006 -18134280.2 0.03937 0.01496 480.5 0.000 0.000 0.000 +2444155.5 0.94436 3.93017 -18137200.1 0.03937 0.01496 424.2 0.000 0.000 0.000 +2444156.5 0.95579 3.92025 -18139960.6 0.03937 0.01496 424.2 0.000 0.000 0.000 +2444157.5 0.96706 3.91026 -18142598.9 0.03162 0.01447 348.0 0.000 0.000 0.000 +2444158.5 0.97828 3.90017 -18145165.6 0.02121 0.01397 106.3 0.000 0.000 0.000 +2444159.5 0.98954 3.88994 -18147710.8 0.02121 0.01397 106.3 0.000 0.000 0.000 +2444160.5 1.00094 3.87952 -18150276.8 0.02121 0.01397 113.1 0.000 0.000 0.000 +2444161.5 1.01256 3.86887 -18152893.8 0.01834 0.01811 130.1 0.000 0.000 0.000 +2444162.5 1.02447 3.85794 -18155579.2 0.01834 0.01811 130.1 0.000 0.000 0.000 +2444163.5 1.03670 3.84665 -18158336.1 0.05483 0.02324 419.4 0.000 0.000 0.000 +2444164.5 1.04933 3.83495 -18161155.3 0.05483 0.02324 419.4 0.000 0.000 0.000 +2444165.5 1.06244 3.82281 -18164016.3 0.05483 0.02324 419.4 0.000 0.000 0.000 +2444166.5 1.07608 3.81020 -18166891.0 0.05483 0.02324 458.7 0.000 0.000 0.000 +2444167.5 1.09024 3.79711 -18169748.1 0.05398 0.02210 461.8 0.000 0.000 0.000 +2444168.5 1.10486 3.78354 -18172555.5 0.05398 0.02210 461.8 0.000 0.000 0.000 +2444169.5 1.11987 3.76949 -18175286.1 0.01530 0.01906 481.7 0.000 0.000 0.000 +2444170.5 1.13522 3.75498 -18177925.0 0.01530 0.01906 481.7 0.000 0.000 0.000 +2444171.5 1.15085 3.74002 -18180476.5 0.01530 0.01906 481.7 0.000 0.000 0.000 +2444172.5 1.16672 3.72464 -18182965.9 0.01530 0.01906 481.7 0.000 0.000 0.000 +2444173.5 1.18278 3.70887 -18185436.4 0.02580 0.01917 503.7 0.000 0.000 0.000 +2444174.5 1.19895 3.69276 -18187943.1 0.02580 0.01917 503.7 0.000 0.000 0.000 +2444175.5 1.21513 3.67636 -18190540.5 0.02312 0.01860 189.4 0.000 0.000 0.000 +2444176.5 1.23124 3.65973 -18193268.4 0.02312 0.01860 189.4 0.000 0.000 0.000 +2444177.5 1.24718 3.64292 -18196138.6 0.02312 0.01860 189.4 0.000 0.000 0.000 +2444178.5 1.26281 3.62602 -18199125.4 0.02312 0.01860 189.4 0.000 0.000 0.000 +2444179.5 1.27800 3.60908 -18202166.0 0.02905 0.02850 181.1 0.000 0.000 0.000 +2444180.5 1.29261 3.59216 -18205174.9 0.02905 0.02850 181.1 0.000 0.000 0.000 +2444181.5 1.30654 3.57533 -18208069.3 0.03898 0.03603 256.1 0.000 0.000 0.000 +2444182.5 1.31966 3.55863 -18210793.5 0.03677 0.03851 182.3 0.000 0.000 0.000 +2444183.5 1.33188 3.54211 -18213332.7 0.03677 0.03851 182.3 0.000 0.000 0.000 +2444184.5 1.34312 3.52577 -18215709.7 0.03677 0.03851 182.3 0.000 0.000 0.000 +2444185.5 1.35337 3.50963 -18217971.6 0.03442 0.04083 30.1 0.000 0.000 0.000 +2444186.5 1.36262 3.49364 -18220172.8 0.03442 0.04083 30.1 0.000 0.000 0.000 +2444187.5 1.37089 3.47775 -18222363.5 0.02449 0.03046 84.9 0.000 0.000 0.000 +2444188.5 1.37822 3.46192 -18224583.7 0.00384 0.01372 116.2 0.000 0.000 0.000 +2444189.5 1.38460 3.44610 -18226861.0 0.00384 0.01372 116.2 0.000 0.000 0.000 +2444190.5 1.39008 3.43025 -18229209.9 0.02275 0.01146 349.1 0.000 0.000 0.000 +2444191.5 1.39465 3.41430 -18231631.4 0.02275 0.01146 349.1 0.000 0.000 0.000 +2444192.5 1.39835 3.39820 -18234115.0 0.02275 0.01146 349.1 0.000 0.000 0.000 +2444193.5 1.40117 3.38188 -18236641.8 0.03195 0.00863 479.9 0.000 0.000 0.000 +2444194.5 1.40316 3.36528 -18239186.4 0.02377 0.02374 375.6 0.000 0.000 0.000 +2444195.5 1.40440 3.34834 -18241720.6 0.02377 0.02374 375.6 0.000 0.000 0.000 +2444196.5 1.40496 3.33102 -18244217.2 0.01435 0.02297 189.2 0.000 0.000 0.000 +2444197.5 1.40491 3.31326 -18246656.3 0.01435 0.02297 189.2 0.000 0.000 0.000 +2444198.5 1.40433 3.29501 -18249033.3 0.01435 0.02297 166.9 0.000 0.000 0.000 +2444199.5 1.40332 3.27627 -18251365.7 0.01435 0.02297 166.9 0.000 0.000 0.000 +2444200.5 1.40194 3.25701 -18253692.9 0.00510 0.01795 32.5 0.000 0.000 0.000 +2444201.5 1.40026 3.23724 -18256068.3 0.00510 0.01795 51.0 0.000 0.000 0.000 +2444202.5 1.39835 3.21693 -18258546.0 0.00184 0.01899 45.1 0.000 0.000 0.000 +2444203.5 1.39625 3.19607 -18261166.2 0.00704 0.02263 46.6 0.000 0.000 0.000 +2444204.5 1.39404 3.17468 -18263943.7 0.00704 0.02263 45.2 0.000 0.000 0.000 +2444205.5 1.39181 3.15292 -18266860.9 0.00772 0.03455 63.2 0.000 0.000 0.000 +2444206.5 1.38967 3.13098 -18269869.8 0.00772 0.03455 63.2 0.000 0.000 0.000 +2444207.5 1.38767 3.10901 -18272900.6 0.02006 0.06822 185.7 0.000 0.000 0.000 +2444208.5 1.38587 3.08715 -18275877.2 0.02006 0.06822 185.7 0.000 0.000 0.000 +2444209.5 1.38432 3.06545 -18278736.9 0.01687 0.06543 311.4 0.000 0.000 0.000 +2444210.5 1.38303 3.04395 -18281445.5 0.01687 0.06543 311.4 0.000 0.000 0.000 +2444211.5 1.38204 3.02266 -18284004.5 0.02264 0.02854 311.6 0.000 0.000 0.000 +2444212.5 1.38138 3.00161 -18286444.1 0.02264 0.02854 311.6 0.000 0.000 0.000 +2444213.5 1.38105 2.98080 -18288810.7 0.02264 0.02854 287.2 0.000 0.000 0.000 +2444214.5 1.38103 2.96020 -18291152.2 0.02264 0.02854 266.9 0.000 0.000 0.000 +2444215.5 1.38131 2.93981 -18293508.7 0.02089 0.01784 204.5 0.000 0.000 0.000 +2444216.5 1.38182 2.91964 -18295909.6 0.02089 0.01784 204.5 0.000 0.000 0.000 +2444217.5 1.38252 2.89972 -18298372.1 0.01369 0.02530 260.3 0.000 0.000 0.000 +2444218.5 1.38334 2.88005 -18300900.8 0.01369 0.02530 260.3 0.000 0.000 0.000 +2444219.5 1.38424 2.86065 -18303487.4 0.01369 0.02530 275.1 0.000 0.000 0.000 +2444220.5 1.38519 2.84154 -18306113.6 0.01369 0.02530 296.2 0.000 0.000 0.000 +2444221.5 1.38617 2.82274 -18308754.7 0.01227 0.03533 385.6 0.000 0.000 0.000 +2444222.5 1.38717 2.80422 -18311383.4 0.01227 0.03533 385.6 0.000 0.000 0.000 +2444223.5 1.38819 2.78596 -18313973.3 0.02109 0.00876 239.2 0.000 0.000 0.000 +2444224.5 1.38923 2.76794 -18316502.1 0.02109 0.00876 239.2 0.000 0.000 0.000 +2444225.5 1.39028 2.75013 -18318957.3 0.02109 0.00876 529.3 0.000 0.000 0.000 +2444226.5 1.39134 2.73249 -18321343.1 0.01512 0.01091 601.8 0.000 0.000 0.000 +2444227.5 1.39239 2.71502 -18323686.9 0.01512 0.01091 601.8 0.000 0.000 0.000 +2444228.5 1.39340 2.69768 -18326036.0 0.01512 0.01091 601.8 0.000 0.000 0.000 +2444229.5 1.39432 2.68042 -18328446.1 0.00357 0.01271 731.3 0.000 0.000 0.000 +2444230.5 1.39512 2.66323 -18330962.8 0.00357 0.01271 731.3 0.000 0.000 0.000 +2444231.5 1.39574 2.64607 -18333606.1 0.00357 0.01271 712.1 0.000 0.000 0.000 +2444232.5 1.39617 2.62893 -18336362.0 0.03310 0.02690 318.8 0.000 0.000 0.000 +2444233.5 1.39635 2.61180 -18339187.0 0.01759 0.03757 262.0 0.000 0.000 0.000 +2444234.5 1.39625 2.59464 -18342020.2 0.01759 0.03757 236.3 0.000 0.000 0.000 +2444235.5 1.39583 2.57745 -18344798.9 0.01759 0.03757 236.3 0.000 0.000 0.000 +2444236.5 1.39506 2.56021 -18347472.0 0.01759 0.03757 234.9 0.000 0.000 0.000 +2444237.5 1.39387 2.54294 -18350010.4 0.01759 0.03757 234.9 0.000 0.000 0.000 +2444238.5 1.39219 2.52566 -18352413.3 0.02692 0.02880 151.6 0.000 0.000 0.000 +2444239.5 1.38994 2.50842 -18354706.8 0.03377 0.01572 177.0 0.000 0.000 0.000 +2444240.5 1.38707 2.49123 -18356934.2 0.03377 0.01572 211.0 0.000 0.000 0.000 +2444241.5 1.38349 2.47413 -18359143.5 0.03377 0.01572 312.9 0.000 0.000 0.000 +2444242.5 1.37916 2.45714 -18361377.4 0.03377 0.01572 335.5 0.000 0.000 0.000 +2444243.5 1.37409 2.44027 -18363666.9 0.03377 0.01572 335.5 0.000 0.000 0.000 +2444244.5 1.36825 2.42353 -18366030.8 0.05031 0.00749 254.0 0.000 0.000 0.000 +2444245.5 1.36165 2.40693 -18368475.2 0.05031 0.00749 254.0 0.000 0.000 0.000 +2444246.5 1.35427 2.39049 -18370994.2 0.05031 0.00749 254.0 0.000 0.000 0.000 +2444247.5 1.34612 2.37420 -18373571.4 0.03779 0.01582 253.1 0.000 0.000 0.000 +2444248.5 1.33723 2.35809 -18376183.2 0.03779 0.01582 223.2 0.000 0.000 0.000 +2444249.5 1.32771 2.34217 -18378804.0 0.03779 0.01582 223.2 0.000 0.000 0.000 +2444250.5 1.31762 2.32647 -18381410.6 0.01806 0.02108 299.3 0.000 0.000 0.000 +2444251.5 1.30706 2.31098 -18383983.7 0.01323 0.01528 260.1 0.000 0.000 0.000 +2444252.5 1.29607 2.29572 -18386510.8 0.01323 0.01528 260.1 0.000 0.000 0.000 +2444253.5 1.28471 2.28066 -18388991.6 0.02049 0.00338 138.9 0.000 0.000 0.000 +2444254.5 1.27304 2.26579 -18391444.3 0.02049 0.00338 157.9 0.000 0.000 0.000 +2444255.5 1.26110 2.25112 -18393908.7 0.02049 0.00338 157.9 0.000 0.000 0.000 +2444256.5 1.24895 2.23662 -18396439.6 0.02049 0.00338 157.9 0.000 0.000 0.000 +2444257.5 1.23660 2.22228 -18399088.7 0.03572 0.00859 389.2 0.000 0.000 0.000 +2444258.5 1.22406 2.20809 -18401882.9 0.03572 0.00859 389.2 0.000 0.000 0.000 +2444259.5 1.21132 2.19403 -18404808.3 0.04167 0.01213 531.1 0.000 0.000 0.000 +2444260.5 1.19835 2.18010 -18407810.3 0.03819 0.01099 385.2 0.000 0.000 0.000 +2444261.5 1.18515 2.16627 -18410809.3 0.03819 0.01099 290.5 0.000 0.000 0.000 +2444262.5 1.17164 2.15255 -18413724.0 0.03819 0.01099 277.7 0.000 0.000 0.000 +2444263.5 1.15772 2.13894 -18416491.2 0.03435 0.00970 236.0 0.000 0.000 0.000 +2444264.5 1.14337 2.12545 -18419077.4 0.03435 0.00970 224.7 0.000 0.000 0.000 +2444265.5 1.12856 2.11211 -18421480.7 0.02468 0.01808 207.4 0.000 0.000 0.000 +2444266.5 1.11325 2.09891 -18423726.5 0.00614 0.02365 220.6 0.000 0.000 0.000 +2444267.5 1.09743 2.08589 -18425858.1 0.00614 0.02365 260.1 0.000 0.000 0.000 +2444268.5 1.08107 2.07305 -18427926.1 0.04099 0.02045 236.4 0.000 0.000 0.000 +2444269.5 1.06417 2.06039 -18429977.1 0.04099 0.02045 99.2 0.000 0.000 0.000 +2444270.5 1.04670 2.04791 -18432048.4 0.04099 0.02045 136.9 0.000 0.000 0.000 +2444271.5 1.02866 2.03558 -18434163.3 0.05765 0.01665 294.5 0.000 0.000 0.000 +2444272.5 1.01008 2.02340 -18436332.9 0.05130 0.01274 260.4 0.000 0.000 0.000 +2444273.5 0.99106 2.01138 -18438556.0 0.05130 0.01274 244.0 0.000 0.000 0.000 +2444274.5 0.97170 1.99952 -18440821.6 0.04404 0.00689 291.9 0.000 0.000 0.000 +2444275.5 0.95210 1.98782 -18443110.7 0.03150 0.00981 251.1 0.000 0.000 0.000 +2444276.5 0.93241 1.97630 -18445400.9 0.03150 0.00981 252.2 0.000 0.000 0.000 +2444277.5 0.91281 1.96498 -18447671.4 0.03150 0.00981 138.1 0.000 0.000 0.000 +2444278.5 0.89348 1.95386 -18449907.4 0.08667 0.01230 317.5 0.000 0.000 0.000 +2444279.5 0.87461 1.94295 -18452103.3 0.08667 0.01230 348.9 0.000 0.000 0.000 +2444280.5 0.85635 1.93226 -18454264.7 0.07085 0.01032 383.1 0.000 0.000 0.000 +2444281.5 0.83888 1.92178 -18456411.8 0.08664 0.00934 689.4 0.000 0.000 0.000 +2444282.5 0.82233 1.91151 -18458584.3 0.08664 0.00934 689.4 0.000 0.000 0.000 +2444283.5 0.80666 1.90147 -18460842.2 0.08664 0.00934 689.4 0.000 0.000 0.000 +2444284.5 0.79181 1.89167 -18463253.5 0.00589 0.00412 735.5 0.000 0.000 0.000 +2444285.5 0.77771 1.88212 -18465868.0 0.00589 0.00412 735.5 0.000 0.000 0.000 +2444286.5 0.76429 1.87283 -18468696.1 0.00053 0.01721 706.8 0.000 0.000 0.000 +2444287.5 0.75146 1.86381 -18471698.0 0.00053 0.01721 208.2 0.000 0.000 0.000 +2444288.5 0.73915 1.85508 -18474790.5 0.00053 0.01721 208.2 0.000 0.000 0.000 +2444289.5 0.72730 1.84663 -18477870.8 0.00611 0.01318 267.1 0.000 0.000 0.000 +2444290.5 0.71582 1.83851 -18480846.9 0.00611 0.01318 250.1 0.000 0.000 0.000 +2444291.5 0.70464 1.83072 -18483660.3 0.00611 0.01318 254.1 0.000 0.000 0.000 +2444292.5 0.69369 1.82332 -18486294.0 0.00863 0.00714 255.7 0.000 0.000 0.000 +2444293.5 0.68288 1.81633 -18488766.7 0.00614 0.01319 266.9 0.000 0.000 0.000 +2444294.5 0.67214 1.80979 -18491118.3 0.00614 0.01319 266.9 0.000 0.000 0.000 +2444295.5 0.66137 1.80376 -18493398.1 0.00099 0.01723 243.9 0.000 0.000 0.000 +2444296.5 0.65048 1.79826 -18495653.8 0.02118 0.01673 300.8 0.000 0.000 0.000 +2444297.5 0.63938 1.79334 -18497923.8 0.02118 0.01673 320.1 0.000 0.000 0.000 +2444298.5 0.62797 1.78900 -18500233.5 0.02118 0.01673 335.9 0.000 0.000 0.000 +2444299.5 0.61618 1.78526 -18502594.1 0.02628 0.02590 293.2 0.000 0.000 0.000 +2444300.5 0.60395 1.78214 -18505005.1 0.02628 0.02590 293.2 0.000 0.000 0.000 +2444301.5 0.59125 1.77961 -18507455.6 0.02628 0.02590 301.1 0.000 0.000 0.000 +2444302.5 0.57804 1.77770 -18509925.5 0.02398 0.02360 305.4 0.000 0.000 0.000 +2444303.5 0.56431 1.77637 -18512388.6 0.02398 0.02360 305.4 0.000 0.000 0.000 +2444304.5 0.55005 1.77560 -18514816.9 0.02398 0.02360 305.4 0.000 0.000 0.000 +2444305.5 0.53527 1.77532 -18517187.5 0.02132 0.02369 462.0 0.000 0.000 0.000 +2444306.5 0.52002 1.77550 -18519488.5 0.02132 0.02369 462.0 0.000 0.000 0.000 +2444307.5 0.50436 1.77609 -18521721.7 0.02132 0.02369 496.0 0.000 0.000 0.000 +2444308.5 0.48833 1.77702 -18523903.2 0.01193 0.02528 505.7 0.000 0.000 0.000 +2444309.5 0.47199 1.77826 -18526066.5 0.01193 0.02528 505.7 0.000 0.000 0.000 +2444310.5 0.45536 1.77980 -18528264.1 0.01193 0.02528 505.7 0.000 0.000 0.000 +2444311.5 0.43848 1.78162 -18530562.7 0.00463 0.01422 439.7 0.000 0.000 0.000 +2444312.5 0.42136 1.78375 -18533029.2 0.00463 0.01422 439.7 0.000 0.000 0.000 +2444313.5 0.40406 1.78617 -18535708.4 0.00463 0.01422 439.7 0.000 0.000 0.000 +2444314.5 0.38661 1.78890 -18538601.1 0.01144 0.01158 436.5 0.000 0.000 0.000 +2444315.5 0.36905 1.79193 -18541653.2 0.01144 0.01158 436.5 0.000 0.000 0.000 +2444316.5 0.35141 1.79525 -18544768.9 0.01327 0.00964 467.8 0.000 0.000 0.000 +2444317.5 0.33373 1.79886 -18547841.0 0.01622 0.00571 466.9 0.000 0.000 0.000 +2444318.5 0.31603 1.80272 -18550784.0 0.01622 0.00571 466.9 0.000 0.000 0.000 +2444319.5 0.29831 1.80683 -18553556.3 0.01622 0.00571 466.9 0.000 0.000 0.000 +2444320.5 0.28059 1.81116 -18556163.5 0.01737 0.00946 406.9 0.000 0.000 0.000 +2444321.5 0.26292 1.81568 -18558645.3 0.01737 0.00946 406.9 0.000 0.000 0.000 +2444322.5 0.24532 1.82038 -18561057.4 0.01836 0.01299 236.1 0.000 0.000 0.000 +2444323.5 0.22784 1.82523 -18563455.5 0.02040 0.01004 262.4 0.000 0.000 0.000 +2444324.5 0.21047 1.83021 -18565884.9 0.02040 0.01004 262.4 0.000 0.000 0.000 +2444325.5 0.19323 1.83532 -18568376.5 0.02851 0.01550 254.9 0.000 0.000 0.000 +2444326.5 0.17611 1.84056 -18570945.9 0.03241 0.01661 263.8 0.000 0.000 0.000 +2444327.5 0.15915 1.84590 -18573593.4 0.03241 0.01661 263.8 0.000 0.000 0.000 +2444328.5 0.14240 1.85134 -18576306.8 0.03241 0.01661 263.8 0.000 0.000 0.000 +2444329.5 0.12588 1.85686 -18579063.9 0.02856 0.01611 307.4 0.000 0.000 0.000 +2444330.5 0.10957 1.86248 -18581836.2 0.02856 0.01611 307.4 0.000 0.000 0.000 +2444331.5 0.09345 1.86820 -18584591.6 0.00378 0.00975 355.2 0.000 0.000 0.000 +2444332.5 0.07747 1.87406 -18587299.4 0.00378 0.00975 355.2 0.000 0.000 0.000 +2444333.5 0.06160 1.88005 -18589936.9 0.00378 0.00975 342.8 0.000 0.000 0.000 +2444334.5 0.04579 1.88620 -18592494.5 0.00378 0.00975 342.8 0.000 0.000 0.000 +2444335.5 0.03000 1.89251 -18594978.7 0.00116 0.01015 398.7 0.000 0.000 0.000 +2444336.5 0.01419 1.89900 -18597414.0 0.00116 0.01015 398.7 0.000 0.000 0.000 +2444337.5 -0.00169 1.90564 -18599841.1 0.03244 0.00441 343.1 0.000 0.000 0.000 +2444338.5 -0.01769 1.91245 -18602314.0 0.03244 0.00441 343.1 0.000 0.000 0.000 +2444339.5 -0.03384 1.91943 -18604894.2 0.03244 0.00441 355.5 0.000 0.000 0.000 +2444340.5 -0.05020 1.92656 -18607636.0 0.03244 0.00441 355.5 0.000 0.000 0.000 +2444341.5 -0.06678 1.93387 -18610565.8 0.03553 0.00840 109.4 0.000 0.000 0.000 +2444342.5 -0.08356 1.94135 -18613664.4 0.03553 0.00840 109.4 0.000 0.000 0.000 +2444343.5 -0.10049 1.94903 -18616863.4 0.02050 0.01089 62.4 0.000 0.000 0.000 +2444344.5 -0.11752 1.95690 -18620060.6 0.02405 0.00950 61.3 0.000 0.000 0.000 +2444345.5 -0.13458 1.96498 -18623152.3 0.02405 0.00950 61.3 0.000 0.000 0.000 +2444346.5 -0.15158 1.97331 -18626065.5 0.02923 0.02939 264.2 0.000 0.000 0.000 +2444347.5 -0.16846 1.98190 -18628776.9 0.03274 0.03516 320.5 0.000 0.000 0.000 +2444348.5 -0.18516 1.99079 -18631310.6 0.03274 0.03516 320.5 0.000 0.000 0.000 +2444349.5 -0.20165 2.00000 -18633720.8 0.03395 0.03038 262.1 0.000 0.000 0.000 +2444350.5 -0.21788 2.00957 -18636070.5 0.03688 0.03679 318.1 0.000 0.000 0.000 +2444351.5 -0.23376 2.01945 -18638414.6 0.03688 0.03679 318.1 0.000 0.000 0.000 +2444352.5 -0.24918 2.02961 -18640793.6 0.03606 0.02158 257.6 0.000 0.000 0.000 +2444353.5 -0.26406 2.04005 -18643232.2 0.03606 0.02158 257.6 0.000 0.000 0.000 +2444354.5 -0.27837 2.05073 -18645739.8 0.03606 0.02158 257.6 0.000 0.000 0.000 +2444355.5 -0.29207 2.06167 -18648312.1 0.03588 0.02519 373.3 0.000 0.000 0.000 +2444356.5 -0.30515 2.07283 -18650933.1 0.03588 0.02519 373.3 0.000 0.000 0.000 +2444357.5 -0.31765 2.08419 -18653578.1 0.03588 0.02519 373.3 0.000 0.000 0.000 +2444358.5 -0.32959 2.09569 -18656217.9 0.00383 0.01127 227.6 0.000 0.000 0.000 +2444359.5 -0.34102 2.10730 -18658823.5 0.00383 0.01127 227.6 0.000 0.000 0.000 +2444360.5 -0.35196 2.11897 -18661369.8 0.00383 0.01127 227.6 0.000 0.000 0.000 +2444361.5 -0.36245 2.13067 -18663841.5 0.00383 0.01127 80.2 0.000 0.000 0.000 +2444362.5 -0.37253 2.14235 -18666238.0 0.00710 0.01256 303.3 0.000 0.000 0.000 +2444363.5 -0.38222 2.15400 -18668577.1 0.00710 0.01256 303.3 0.000 0.000 0.000 +2444364.5 -0.39155 2.16558 -18670894.1 0.00929 0.01372 389.3 0.000 0.000 0.000 +2444365.5 -0.40055 2.17706 -18673237.8 0.02420 0.01039 331.6 0.000 0.000 0.000 +2444366.5 -0.40925 2.18845 -18675662.6 0.02420 0.01039 331.6 0.000 0.000 0.000 +2444367.5 -0.41771 2.19971 -18678217.9 0.02115 0.00854 419.9 0.000 0.000 0.000 +2444368.5 -0.42595 2.21086 -18680935.5 0.02505 0.00392 440.6 0.000 0.000 0.000 +2444369.5 -0.43397 2.22188 -18683814.6 0.02505 0.00392 440.6 0.000 0.000 0.000 +2444370.5 -0.44176 2.23278 -18686813.0 0.02781 0.00980 401.3 0.000 0.000 0.000 +2444371.5 -0.44929 2.24354 -18689851.1 0.02485 0.01141 465.2 0.000 0.000 0.000 +2444372.5 -0.45652 2.25418 -18692830.8 0.02485 0.01141 465.2 0.000 0.000 0.000 +2444373.5 -0.46341 2.26470 -18695663.8 0.02451 0.01650 268.5 0.000 0.000 0.000 +2444374.5 -0.46993 2.27510 -18698297.9 0.02451 0.01650 268.5 0.000 0.000 0.000 +2444375.5 -0.47613 2.28542 -18700729.2 0.02451 0.01650 268.5 0.000 0.000 0.000 +2444376.5 -0.48199 2.29565 -18702994.8 0.01173 0.01694 222.3 0.000 0.000 0.000 +2444377.5 -0.48754 2.30582 -18705152.8 0.01357 0.01407 157.2 0.000 0.000 0.000 +2444378.5 -0.49277 2.31593 -18707262.0 0.01357 0.01407 157.2 0.000 0.000 0.000 +2444379.5 -0.49769 2.32597 -18709369.3 0.01641 0.01000 32.9 0.000 0.000 0.000 +2444380.5 -0.50228 2.33595 -18711505.1 0.01641 0.01000 32.9 0.000 0.000 0.000 +2444381.5 -0.50656 2.34587 -18713683.3 0.01641 0.01000 32.9 0.000 0.000 0.000 +2444382.5 -0.51057 2.35575 -18715903.6 0.01641 0.01000 83.2 0.000 0.000 0.000 +2444383.5 -0.51434 2.36561 -18718153.4 0.01657 0.00683 168.8 0.000 0.000 0.000 +2444384.5 -0.51792 2.37546 -18720411.1 0.01657 0.00683 168.8 0.000 0.000 0.000 +2444385.5 -0.52138 2.38535 -18722650.1 0.03978 0.00900 166.7 0.000 0.000 0.000 +2444386.5 -0.52478 2.39529 -18724843.8 0.03978 0.00900 166.7 0.000 0.000 0.000 +2444387.5 -0.52815 2.40529 -18726969.0 0.03978 0.00900 166.7 0.000 0.000 0.000 +2444388.5 -0.53152 2.41541 -18729010.0 0.03978 0.00900 163.5 0.000 0.000 0.000 +2444389.5 -0.53489 2.42564 -18730962.4 0.04237 0.01801 186.3 0.000 0.000 0.000 +2444390.5 -0.53821 2.43601 -18732839.0 0.04237 0.01801 186.3 0.000 0.000 0.000 +2444391.5 -0.54141 2.44652 -18734672.0 0.02580 0.02210 320.0 0.000 0.000 0.000 +2444392.5 -0.54440 2.45717 -18736509.8 0.02290 0.01568 262.4 0.000 0.000 0.000 +2444393.5 -0.54715 2.46795 -18738408.2 0.02290 0.01568 262.4 0.000 0.000 0.000 +2444394.5 -0.54964 2.47885 -18740417.2 0.02256 0.01657 214.5 0.000 0.000 0.000 +2444395.5 -0.55184 2.48983 -18742569.4 0.02074 0.01294 194.7 0.000 0.000 0.000 +2444396.5 -0.55376 2.50088 -18744870.3 0.02074 0.01294 194.7 0.000 0.000 0.000 +2444397.5 -0.55541 2.51198 -18747293.8 0.02074 0.01294 112.9 0.000 0.000 0.000 +2444398.5 -0.55683 2.52310 -18749783.4 0.04688 0.01294 296.6 0.000 0.000 0.000 +2444399.5 -0.55805 2.53425 -18752261.9 0.04688 0.01294 296.6 0.000 0.000 0.000 +2444400.5 -0.55915 2.54542 -18754650.1 0.04586 0.01408 324.1 0.000 0.000 0.000 +2444401.5 -0.56016 2.55661 -18756888.9 0.04586 0.01408 324.1 0.000 0.000 0.000 +2444402.5 -0.56106 2.56783 -18758954.7 0.04586 0.01408 324.1 0.000 0.000 0.000 +2444403.5 -0.56182 2.57907 -18760863.9 0.04586 0.01408 324.1 0.000 0.000 0.000 +2444404.5 -0.56237 2.59037 -18762661.9 0.02177 0.01585 74.0 0.000 0.000 0.000 +2444405.5 -0.56268 2.60174 -18764405.4 0.02177 0.01585 74.0 0.000 0.000 0.000 +2444406.5 -0.56273 2.61321 -18766144.5 0.01876 0.01590 49.4 0.000 0.000 0.000 +2444407.5 -0.56248 2.62482 -18767913.5 0.01876 0.01590 49.4 0.000 0.000 0.000 +2444408.5 -0.56191 2.63658 -18769729.6 0.01876 0.01590 49.4 0.000 0.000 0.000 +2444409.5 -0.56105 2.64851 -18771594.8 0.01783 0.01318 220.4 0.000 0.000 0.000 +2444410.5 -0.55992 2.66061 -18773498.1 0.01211 0.01435 265.4 0.000 0.000 0.000 +2444411.5 -0.55854 2.67286 -18775418.8 0.01211 0.01435 265.4 0.000 0.000 0.000 +2444412.5 -0.55695 2.68527 -18777329.3 0.04611 0.00645 273.7 0.000 0.000 0.000 +2444413.5 -0.55516 2.69781 -18779201.6 0.04611 0.00645 273.7 0.000 0.000 0.000 +2444414.5 -0.55319 2.71047 -18781012.0 0.04611 0.00645 273.7 0.000 0.000 0.000 +2444415.5 -0.55103 2.72323 -18782743.5 0.06326 0.00823 94.7 0.000 0.000 0.000 +2444416.5 -0.54866 2.73607 -18784388.7 0.05269 0.00678 334.8 0.000 0.000 0.000 +2444417.5 -0.54597 2.74896 -18785952.9 0.05269 0.00678 334.8 0.000 0.000 0.000 +2444418.5 -0.54284 2.76189 -18787459.5 0.03938 0.00493 464.0 0.000 0.000 0.000 +2444419.5 -0.53915 2.77481 -18788950.9 0.11309 0.03053 347.7 0.000 0.000 0.000 +2444420.5 -0.53482 2.78772 -18790483.8 0.11309 0.03053 347.7 0.000 0.000 0.000 +2444421.5 -0.52981 2.80057 -18792114.8 0.11321 0.03820 465.3 0.000 0.000 0.000 +2444422.5 -0.52407 2.81336 -18793882.6 0.13582 0.04665 465.9 0.000 0.000 0.000 +2444423.5 -0.51765 2.82609 -18795795.5 0.13582 0.04665 465.9 0.000 0.000 0.000 +2444424.5 -0.51080 2.83878 -18797827.5 0.13582 0.04665 465.9 0.000 0.000 0.000 +2444425.5 -0.50369 2.85145 -18799923.7 0.08098 0.03602 546.5 0.000 0.000 0.000 +2444426.5 -0.49637 2.86408 -18802012.2 0.08098 0.03602 546.5 0.000 0.000 0.000 +2444427.5 -0.48887 2.87662 -18804021.8 0.04104 0.03600 507.7 0.000 0.000 0.000 +2444428.5 -0.48122 2.88905 -18805897.5 0.04104 0.03600 507.7 0.000 0.000 0.000 +2444429.5 -0.47342 2.90133 -18807612.4 0.04104 0.03600 507.7 0.000 0.000 0.000 +2444430.5 -0.46549 2.91342 -18809173.2 0.04104 0.03600 507.7 0.000 0.000 0.000 +2444431.5 -0.45747 2.92530 -18810616.8 0.05388 0.03541 521.2 0.000 0.000 0.000 +2444432.5 -0.44947 2.93700 -18811997.6 0.05388 0.03541 521.2 0.000 0.000 0.000 +2444433.5 -0.44160 2.94853 -18813369.8 0.04264 0.01270 345.7 0.000 0.000 0.000 +2444434.5 -0.43397 2.95992 -18814774.8 0.04264 0.01270 345.7 0.000 0.000 0.000 +2444435.5 -0.42665 2.97119 -18816237.2 0.04264 0.01270 345.7 0.000 0.000 0.000 +2444436.5 -0.41967 2.98237 -18817765.6 0.04264 0.01270 345.7 0.000 0.000 0.000 +2444437.5 -0.41302 2.99347 -18819354.9 0.04120 0.02369 339.6 0.000 0.000 0.000 +2444438.5 -0.40667 3.00450 -18820989.4 0.04120 0.02369 339.6 0.000 0.000 0.000 +2444439.5 -0.40055 3.01546 -18822645.5 0.03623 0.02290 335.2 0.000 0.000 0.000 +2444440.5 -0.39466 3.02635 -18824297.1 0.03623 0.02290 335.2 0.000 0.000 0.000 +2444441.5 -0.38900 3.03712 -18825919.5 0.03623 0.02290 335.2 0.000 0.000 0.000 +2444442.5 -0.38363 3.04775 -18827493.1 0.04011 0.02431 307.4 0.000 0.000 0.000 +2444443.5 -0.37861 3.05818 -18829007.3 0.03453 0.02205 562.8 0.000 0.000 0.000 +2444444.5 -0.37401 3.06837 -18830462.6 0.01017 0.00822 145.7 0.000 0.000 0.000 +2444445.5 -0.36990 3.07825 -18831874.1 0.00753 0.01028 112.7 0.000 0.000 0.000 +2444446.5 -0.36637 3.08776 -18833274.1 0.00749 0.01035 113.3 0.000 0.000 0.000 +2444447.5 -0.36358 3.09681 -18834711.8 0.00749 0.01035 112.9 0.000 0.000 0.000 +2444448.5 -0.36161 3.10527 -18836243.6 0.00571 0.01099 111.6 0.000 0.000 0.000 +2444449.5 -0.36028 3.11294 -18837918.4 0.00571 0.01099 32.2 0.000 0.000 0.000 +2444450.5 -0.35944 3.11988 -18839756.8 0.00571 0.01099 45.7 0.000 0.000 0.000 +2444451.5 -0.35896 3.12622 -18841738.0 0.00476 0.01427 82.2 0.000 0.000 0.000 +2444452.5 -0.35870 3.13206 -18843801.7 0.02027 0.03060 218.3 0.000 0.000 0.000 +2444453.5 -0.35858 3.13750 -18845866.4 0.02027 0.03060 234.3 0.000 0.000 0.000 +2444454.5 -0.35851 3.14260 -18847852.0 0.01859 0.01591 280.9 0.000 0.000 0.000 +2444455.5 -0.35841 3.14745 -18849699.9 0.01859 0.01591 280.9 0.000 0.000 0.000 +2444456.5 -0.35819 3.15210 -18851384.5 0.01859 0.01591 254.9 0.000 0.000 0.000 +2444457.5 -0.35781 3.15660 -18852914.8 0.02414 0.01929 161.2 0.000 0.000 0.000 +2444458.5 -0.35721 3.16101 -18854328.0 0.02722 0.01863 194.5 0.000 0.000 0.000 +2444459.5 -0.35637 3.16538 -18855678.5 0.02722 0.01863 194.5 0.000 0.000 0.000 +2444460.5 -0.35528 3.16978 -18857023.1 0.03253 0.02470 46.1 0.000 0.000 0.000 +2444461.5 -0.35395 3.17425 -18858408.9 0.02307 0.01896 63.6 0.000 0.000 0.000 +2444462.5 -0.35243 3.17881 -18859866.2 0.02307 0.01896 63.6 0.000 0.000 0.000 +2444463.5 -0.35076 3.18350 -18861406.9 0.00542 0.01027 85.5 0.000 0.000 0.000 +2444464.5 -0.34899 3.18834 -18863027.6 0.00542 0.01027 85.5 0.000 0.000 0.000 +2444465.5 -0.34715 3.19335 -18864713.4 0.00542 0.01027 85.5 0.000 0.000 0.000 +2444466.5 -0.34530 3.19855 -18866440.9 0.00542 0.01027 85.5 0.000 0.000 0.000 +2444467.5 -0.34346 3.20395 -18868183.0 0.00944 0.01281 175.9 0.000 0.000 0.000 +2444468.5 -0.34170 3.20955 -18869912.9 0.00944 0.01281 175.9 0.000 0.000 0.000 +2444469.5 -0.34006 3.21536 -18871610.4 0.01122 0.01503 230.7 0.000 0.000 0.000 +2444470.5 -0.33861 3.22138 -18873266.2 0.01473 0.02151 163.5 0.000 0.000 0.000 +2444471.5 -0.33738 3.22759 -18874883.0 0.01473 0.02151 163.5 0.000 0.000 0.000 +2444472.5 -0.33640 3.23398 -18876475.6 0.02643 0.01843 141.8 0.000 0.000 0.000 +2444473.5 -0.33570 3.24053 -18878073.8 0.03139 0.01991 59.7 0.000 0.000 0.000 +2444474.5 -0.33529 3.24718 -18879723.6 0.03139 0.01991 59.7 0.000 0.000 0.000 +2444475.5 -0.33517 3.25389 -18881485.2 0.03139 0.01991 59.7 0.000 0.000 0.000 +2444476.5 -0.33530 3.26061 -18883419.8 0.03095 0.02490 103.0 0.000 0.000 0.000 +2444477.5 -0.33560 3.26730 -18885568.4 0.03095 0.02490 103.0 0.000 0.000 0.000 +2444478.5 -0.33601 3.27391 -18887930.2 0.02868 0.02436 111.7 0.000 0.000 0.000 +2444479.5 -0.33643 3.28042 -18890453.8 0.02868 0.02436 111.7 0.000 0.000 0.000 +2444480.5 -0.33677 3.28681 -18893047.5 0.02868 0.02436 111.7 0.000 0.000 0.000 +2444481.5 -0.33691 3.29310 -18895607.2 0.02868 0.02436 111.7 0.000 0.000 0.000 +2444482.5 -0.33677 3.29929 -18898047.5 0.02928 0.00447 85.4 0.000 0.000 0.000 +2444483.5 -0.33633 3.30539 -18900323.0 0.02928 0.00447 85.4 0.000 0.000 0.000 +2444484.5 -0.33553 3.31142 -18902433.8 0.01883 0.00068 32.0 0.000 0.000 0.000 +2444485.5 -0.33434 3.31739 -18904416.0 0.01883 0.00068 32.0 0.000 0.000 0.000 +2444486.5 -0.33276 3.32331 -18906325.4 0.01883 0.00068 32.0 0.000 0.000 0.000 +2444487.5 -0.33078 3.32920 -18908221.6 0.01883 0.00068 32.0 0.000 0.000 0.000 +2444488.5 -0.32841 3.33505 -18910154.7 0.01388 0.00202 21.2 0.000 0.000 0.000 +2444489.5 -0.32570 3.34090 -18912158.2 0.01388 0.00202 21.2 0.000 0.000 0.000 +2444490.5 -0.32266 3.34673 -18914247.0 0.00025 0.00279 23.1 0.000 0.000 0.000 +2444491.5 -0.31935 3.35257 -18916418.4 0.00932 0.00197 90.3 0.000 0.000 0.000 +2444492.5 -0.31578 3.35843 -18918656.2 0.00932 0.00197 90.3 0.000 0.000 0.000 +2444493.5 -0.31200 3.36433 -18920935.3 0.00901 0.00813 177.9 0.000 0.000 0.000 +2444494.5 -0.30803 3.37026 -18923225.4 0.01104 0.00976 217.3 0.000 0.000 0.000 +2444495.5 -0.30389 3.37626 -18925495.9 0.01104 0.00976 217.3 0.000 0.000 0.000 +2444496.5 -0.29959 3.38234 -18927720.2 0.00902 0.01336 274.7 0.000 0.000 0.000 +2444497.5 -0.29512 3.38850 -18929882.4 0.00594 0.01637 324.5 0.000 0.000 0.000 +2444498.5 -0.29050 3.39474 -18931980.6 0.00594 0.01637 348.5 0.000 0.000 0.000 +2444499.5 -0.28569 3.40106 -18934027.5 0.02438 0.02022 335.5 0.000 0.000 0.000 +2444500.5 -0.28071 3.40744 -18936049.8 0.02438 0.02022 324.6 0.000 0.000 0.000 +2444501.5 -0.27555 3.41387 -18938089.5 0.02438 0.02022 307.9 0.000 0.000 0.000 +2444502.5 -0.27019 3.42031 -18940203.0 0.02693 0.04047 274.5 0.000 0.000 0.000 +2444503.5 -0.26466 3.42673 -18942455.6 0.02693 0.04047 254.4 0.000 0.000 0.000 +2444504.5 -0.25903 3.43306 -18944907.3 0.02693 0.04047 225.2 0.000 0.000 0.000 +2444505.5 -0.25335 3.43926 -18947589.7 0.01619 0.05294 195.1 0.000 0.000 0.000 +2444506.5 -0.24769 3.44524 -18950485.7 0.00801 0.01255 134.2 0.000 0.000 0.000 +2444507.5 -0.24213 3.45090 -18953523.9 0.00543 0.01540 102.3 0.000 0.000 0.000 +2444508.5 -0.23677 3.45611 -18956597.2 0.00467 0.01118 95.0 0.000 0.000 0.000 +2444509.5 -0.23170 3.46074 -18959595.9 0.00570 0.01768 95.6 0.000 0.000 0.000 +2444510.5 -0.22707 3.46465 -18962438.6 0.00515 0.01644 91.7 0.000 0.000 0.000 +2444511.5 -0.22305 3.46784 -18965078.1 0.00514 0.01673 96.6 0.000 0.000 0.000 +2444512.5 -0.21973 3.47080 -18967512.9 0.00499 0.01613 95.1 0.000 0.000 0.000 +2444513.5 -0.21702 3.47405 -18969792.8 0.00547 0.01781 83.1 0.000 0.000 0.000 +2444514.5 -0.21457 3.47774 -18971990.0 0.00633 0.01801 91.9 0.000 0.000 0.000 +2444515.5 -0.21202 3.48188 -18974172.9 0.01128 0.02333 98.5 0.000 0.000 0.000 +2444516.5 -0.20907 3.48645 -18976392.3 0.01231 0.00922 96.5 0.000 0.000 0.000 +2444517.5 -0.20558 3.49145 -18978675.8 0.02357 0.01086 110.5 0.000 0.000 0.000 +2444518.5 -0.20147 3.49691 -18981031.2 0.02357 0.01086 110.5 0.000 0.000 0.000 +2444519.5 -0.19668 3.50285 -18983451.1 0.05552 0.02087 271.4 0.000 0.000 0.000 +2444520.5 -0.19123 3.50925 -18985916.4 0.04820 0.02289 374.9 0.000 0.000 0.000 +2444521.5 -0.18520 3.51612 -18988401.5 0.03477 0.02418 432.5 0.000 0.000 0.000 +2444522.5 -0.17866 3.52343 -18990877.4 0.03477 0.02418 432.5 0.000 0.000 0.000 +2444523.5 -0.17175 3.53113 -18993317.0 0.02022 0.03017 461.0 0.000 0.000 0.000 +2444524.5 -0.16458 3.53920 -18995699.8 0.02022 0.03017 461.0 0.000 0.000 0.000 +2444525.5 -0.15733 3.54755 -18998016.4 0.02022 0.03017 461.0 0.000 0.000 0.000 +2444526.5 -0.15017 3.55614 -19000272.8 0.00542 0.01021 86.0 0.000 0.000 0.000 +2444527.5 -0.14325 3.56486 -19002490.5 0.01289 0.00752 85.5 0.000 0.000 0.000 +2444528.5 -0.13675 3.57363 -19004704.1 0.01154 0.01460 80.4 0.000 0.000 0.000 +2444529.5 -0.13084 3.58234 -19006960.1 0.01067 0.01278 71.5 0.000 0.000 0.000 +2444530.5 -0.12576 3.59081 -19009313.3 0.00945 0.01190 71.6 0.000 0.000 0.000 +2444531.5 -0.12181 3.59865 -19011818.4 0.01057 0.01123 70.2 0.000 0.000 0.000 +2444532.5 -0.11845 3.60542 -19014526.7 0.00983 0.01100 57.7 0.000 0.000 0.000 +2444533.5 -0.11519 3.61111 -19017456.8 0.01043 0.01153 62.6 0.000 0.000 0.000 +2444534.5 -0.11152 3.61584 -19020579.4 0.00798 0.01287 55.3 0.000 0.000 0.000 +2444535.5 -0.10716 3.61993 -19023806.9 0.00829 0.00778 55.9 0.000 0.000 0.000 +2444536.5 -0.10239 3.62375 -19027017.4 0.00889 0.00840 63.5 0.000 0.000 0.000 +2444537.5 -0.09731 3.62738 -19030101.2 0.01057 0.00886 58.7 0.000 0.000 0.000 +2444538.5 -0.09191 3.63083 -19032991.2 0.00638 0.01019 57.5 0.000 0.000 0.000 +2444539.5 -0.08621 3.63411 -19035676.9 0.02485 0.00490 279.1 0.000 0.000 0.000 +2444540.5 -0.08022 3.63724 -19038197.5 0.02485 0.00490 279.1 0.000 0.000 0.000 +2444541.5 -0.07397 3.64023 -19040618.3 0.02371 0.00823 228.7 0.000 0.000 0.000 +2444542.5 -0.06749 3.64310 -19043006.0 0.02722 0.00935 66.9 0.000 0.000 0.000 +2444543.5 -0.06076 3.64585 -19045411.6 0.02722 0.00935 66.9 0.000 0.000 0.000 +2444544.5 -0.05374 3.64851 -19047864.5 0.02722 0.00935 66.9 0.000 0.000 0.000 +2444545.5 -0.04642 3.65108 -19050374.1 0.02255 0.01130 128.5 0.000 0.000 0.000 +2444546.5 -0.03880 3.65359 -19052933.0 0.02255 0.01130 128.5 0.000 0.000 0.000 +2444547.5 -0.03090 3.65606 -19055521.6 0.01864 0.00858 350.3 0.000 0.000 0.000 +2444548.5 -0.02271 3.65853 -19058112.6 0.01864 0.00858 350.3 0.000 0.000 0.000 +2444549.5 -0.01421 3.66101 -19060675.3 0.01864 0.00858 350.3 0.000 0.000 0.000 +2444550.5 -0.00537 3.66351 -19063180.0 0.01864 0.00858 350.3 0.000 0.000 0.000 +2444551.5 0.00387 3.66604 -19065603.2 0.02807 0.00524 353.9 0.000 0.000 0.000 +2444552.5 0.01356 3.66861 -19067931.8 0.02807 0.00524 353.9 0.000 0.000 0.000 +2444553.5 0.02377 3.67122 -19070166.5 0.03802 0.00272 192.3 0.000 0.000 0.000 +2444554.5 0.03454 3.67388 -19072324.4 0.02688 0.00333 136.0 0.000 0.000 0.000 +2444555.5 0.04592 3.67658 -19074439.4 0.02688 0.00333 136.0 0.000 0.000 0.000 +2444556.5 0.05789 3.67933 -19076559.0 0.02688 0.00333 136.0 0.000 0.000 0.000 +2444557.5 0.07043 3.68213 -19078738.4 0.00517 0.02281 184.6 0.000 0.000 0.000 +2444558.5 0.08354 3.68498 -19081033.9 0.00517 0.02281 184.6 0.000 0.000 0.000 +2444559.5 0.09720 3.68787 -19083493.4 0.00517 0.02281 184.6 0.000 0.000 0.000 +2444560.5 0.11140 3.69079 -19086143.8 0.00573 0.02338 231.9 0.000 0.000 0.000 +2444561.5 0.12611 3.69374 -19088976.9 0.00573 0.02338 231.9 0.000 0.000 0.000 +2444562.5 0.14132 3.69666 -19091940.6 0.01322 0.02084 200.0 0.000 0.000 0.000 +2444563.5 0.15698 3.69950 -19094947.0 0.01534 0.01178 203.6 0.000 0.000 0.000 +2444564.5 0.17308 3.70224 -19097893.3 0.01534 0.01178 203.6 0.000 0.000 0.000 +2444565.5 0.18960 3.70482 -19100695.2 0.01534 0.01178 203.6 0.000 0.000 0.000 +2444566.5 0.20647 3.70724 -19103313.0 0.03481 0.01025 165.2 0.000 0.000 0.000 +2444567.5 0.22365 3.70947 -19105759.2 0.03481 0.01025 165.2 0.000 0.000 0.000 +2444568.5 0.24107 3.71150 -19108086.4 0.03403 0.00366 163.3 0.000 0.000 0.000 +2444569.5 0.25867 3.71331 -19110362.4 0.03403 0.00366 74.0 0.000 0.000 0.000 +2444570.5 0.27630 3.71488 -19112646.5 0.03403 0.00366 74.0 0.000 0.000 0.000 +2444571.5 0.29384 3.71620 -19114976.9 0.03403 0.00366 74.0 0.000 0.000 0.000 +2444572.5 0.31111 3.71726 -19117368.7 0.02329 0.00982 42.8 0.000 0.000 0.000 +2444573.5 0.32792 3.71804 -19119818.0 0.02329 0.00982 42.8 0.000 0.000 0.000 +2444574.5 0.34410 3.71855 -19122308.0 0.02365 0.01015 37.8 0.000 0.000 0.000 +2444575.5 0.35946 3.71876 -19124812.9 0.02270 0.00974 38.4 0.000 0.000 0.000 +2444576.5 0.37387 3.71867 -19127303.1 0.02270 0.00974 38.4 0.000 0.000 0.000 +2444577.5 0.38744 3.71825 -19129750.3 0.02270 0.00974 38.4 0.000 0.000 0.000 +2444578.5 0.40033 3.71749 -19132131.4 0.02221 0.00850 86.3 0.000 0.000 0.000 +2444579.5 0.41270 3.71636 -19134430.9 0.02669 0.01991 272.9 0.000 0.000 0.000 +2444580.5 0.42470 3.71485 -19136644.5 0.02669 0.01991 272.9 0.000 0.000 0.000 +2444581.5 0.43650 3.71293 -19138782.5 0.02673 0.02008 283.5 0.000 0.000 0.000 +2444582.5 0.44822 3.71060 -19140871.1 0.02673 0.02008 283.5 0.000 0.000 0.000 +2444583.5 0.45994 3.70789 -19142951.1 0.04254 0.01797 247.4 0.000 0.000 0.000 +2444584.5 0.47176 3.70482 -19145073.7 0.04480 0.00960 136.3 0.000 0.000 0.000 +2444585.5 0.48376 3.70140 -19147291.6 0.04480 0.00960 136.3 0.000 0.000 0.000 +2444586.5 0.49599 3.69767 -19149647.9 0.04480 0.00960 136.3 0.000 0.000 0.000 +2444587.5 0.50845 3.69365 -19152166.6 0.04472 0.01345 130.5 0.000 0.000 0.000 +2444588.5 0.52109 3.68940 -19154844.4 0.04472 0.01345 153.6 0.000 0.000 0.000 +2444589.5 0.53388 3.68494 -19157646.3 0.03725 0.01228 125.6 0.000 0.000 0.000 +2444590.5 0.54678 3.68034 -19160507.1 0.01492 0.01099 45.6 0.000 0.000 0.000 +2444591.5 0.55973 3.67563 -19163343.9 0.01492 0.01099 45.6 0.000 0.000 0.000 +2444592.5 0.57270 3.67088 -19166076.7 0.01492 0.01099 45.6 0.000 0.000 0.000 +2444593.5 0.58561 3.66615 -19168653.3 0.01492 0.01261 50.2 0.000 0.000 0.000 +2444594.5 0.59834 3.66150 -19171064.5 0.01492 0.01261 36.3 0.000 0.000 0.000 +2444595.5 0.61083 3.65684 -19173344.2 0.00472 0.01847 33.6 0.000 0.000 0.000 +2444596.5 0.62307 3.65210 -19175553.0 0.00472 0.01847 33.6 0.000 0.000 0.000 +2444597.5 0.63502 3.64718 -19177754.7 0.00121 0.04080 99.7 0.000 0.000 0.000 +2444598.5 0.64667 3.64204 -19179997.1 0.00121 0.04080 99.7 0.000 0.000 0.000 +2444599.5 0.65797 3.63665 -19182303.8 0.00172 0.05104 16.3 0.000 0.000 0.000 +2444600.5 0.66891 3.63101 -19184676.1 0.00172 0.05104 16.3 0.000 0.000 0.000 +2444601.5 0.67944 3.62515 -19187099.7 0.00629 0.00838 49.6 0.000 0.000 0.000 +2444602.5 0.68955 3.61907 -19189550.9 0.00629 0.00838 49.6 0.000 0.000 0.000 +2444603.5 0.69920 3.61278 -19192000.9 0.00629 0.00838 49.6 0.000 0.000 0.000 +2444604.5 0.70835 3.60629 -19194420.7 0.00629 0.00838 49.6 0.000 0.000 0.000 +2444605.5 0.71698 3.59961 -19196784.9 0.00629 0.00838 49.6 0.000 0.000 0.000 +2444606.5 0.72505 3.59272 -19199076.8 0.03327 0.01604 35.7 0.000 0.000 0.000 +2444607.5 0.73250 3.58565 -19201290.2 0.04662 0.02109 9.1 0.000 0.000 0.000 +2444608.5 0.73930 3.57837 -19203431.7 0.04662 0.02109 9.1 0.000 0.000 0.000 +2444609.5 0.74540 3.57090 -19205522.2 0.04662 0.02109 9.1 0.000 0.000 0.000 +2444610.5 0.75079 3.56321 -19207598.4 0.04662 0.02109 9.1 0.000 0.000 0.000 +2444611.5 0.75551 3.55530 -19209711.0 0.04662 0.02109 9.1 0.000 0.000 0.000 +2444612.5 0.75960 3.54712 -19211915.8 0.01337 0.04055 486.6 0.000 0.000 0.000 +2444613.5 0.76310 3.53865 -19214261.2 0.01337 0.04055 486.6 0.000 0.000 0.000 +2444614.5 0.76608 3.52986 -19216772.9 0.01337 0.04055 486.6 0.000 0.000 0.000 +2444615.5 0.76856 3.52073 -19219445.5 0.01337 0.04055 486.6 0.000 0.000 0.000 +2444616.5 0.77063 3.51126 -19222240.0 0.01157 0.04521 390.3 0.000 0.000 0.000 +2444617.5 0.77234 3.50148 -19225091.6 0.01157 0.04521 390.3 0.000 0.000 0.000 +2444618.5 0.77378 3.49140 -19227923.9 0.00943 0.04943 260.6 0.000 0.000 0.000 +2444619.5 0.77501 3.48107 -19230664.6 0.00943 0.04943 260.6 0.000 0.000 0.000 +2444620.5 0.77611 3.47051 -19233262.5 0.00943 0.04943 260.6 0.000 0.000 0.000 +2444621.5 0.77712 3.45981 -19235699.7 0.00943 0.04943 260.6 0.000 0.000 0.000 +2444622.5 0.77810 3.44907 -19237995.8 0.01051 0.00397 151.4 0.000 0.000 0.000 +2444623.5 0.77911 3.43836 -19240199.9 0.01051 0.00397 151.4 0.000 0.000 0.000 +2444624.5 0.78020 3.42779 -19242372.2 0.00865 0.01453 62.0 0.000 0.000 0.000 +2444625.5 0.78142 3.41744 -19244564.3 0.00973 0.01453 114.5 0.000 0.000 0.000 +2444626.5 0.78284 3.40739 -19246805.9 0.00973 0.01453 114.5 0.000 0.000 0.000 +2444627.5 0.78452 3.39774 -19249102.1 0.00973 0.01453 114.5 0.000 0.000 0.000 +2444628.5 0.78653 3.38854 -19251438.4 0.00961 0.01529 111.1 0.000 0.000 0.000 +2444629.5 0.78888 3.37977 -19253790.4 0.00996 0.01649 107.0 0.000 0.000 0.000 +2444630.5 0.79157 3.37137 -19256128.5 0.00996 0.01649 112.7 0.000 0.000 0.000 +2444631.5 0.79461 3.36329 -19258421.9 0.03128 0.01942 96.9 0.000 0.000 0.000 +2444632.5 0.79801 3.35548 -19260643.5 0.03128 0.01942 96.9 0.000 0.000 0.000 +2444633.5 0.80174 3.34791 -19262774.7 0.03128 0.01942 96.9 0.000 0.000 0.000 +2444634.5 0.80581 3.34056 -19264809.1 0.03128 0.01942 96.9 0.000 0.000 0.000 +2444635.5 0.81016 3.33340 -19266753.7 0.03175 0.01215 103.0 0.000 0.000 0.000 +2444636.5 0.81473 3.32642 -19268629.2 0.03175 0.01215 39.4 0.000 0.000 0.000 +2444637.5 0.81940 3.31956 -19270470.0 0.04944 0.00859 291.2 0.000 0.000 0.000 +2444638.5 0.82408 3.31279 -19272325.1 0.04944 0.00859 291.2 0.000 0.000 0.000 +2444639.5 0.82867 3.30608 -19274254.4 0.04944 0.00859 291.2 0.000 0.000 0.000 +2444640.5 0.83310 3.29938 -19276317.2 0.04944 0.00859 291.2 0.000 0.000 0.000 +2444641.5 0.83735 3.29264 -19278554.2 0.06842 0.00263 362.0 0.000 0.000 0.000 +2444642.5 0.84145 3.28582 -19280970.2 0.06842 0.00263 362.0 0.000 0.000 0.000 +2444643.5 0.84548 3.27885 -19283527.7 0.09490 0.03544 622.8 0.000 0.000 0.000 +2444644.5 0.84949 3.27171 -19286155.0 0.09490 0.03544 622.8 0.000 0.000 0.000 +2444645.5 0.85353 3.26433 -19288764.9 0.09490 0.03544 622.8 0.000 0.000 0.000 +2444646.5 0.85767 3.25668 -19291278.4 0.07697 0.03145 440.4 0.000 0.000 0.000 +2444647.5 0.86185 3.24873 -19293644.4 0.07697 0.03145 440.4 0.000 0.000 0.000 +2444648.5 0.86596 3.24049 -19295849.9 0.07697 0.03145 440.4 0.000 0.000 0.000 +2444649.5 0.86989 3.23195 -19297918.6 0.05331 0.02687 1.4 0.000 0.000 0.000 +2444650.5 0.87356 3.22313 -19299902.7 0.05331 0.02687 1.4 0.000 0.000 0.000 +2444651.5 0.87697 3.21407 -19301867.9 0.05331 0.02687 1.4 0.000 0.000 0.000 +2444652.5 0.88009 3.20481 -19303876.4 0.02863 0.00780 235.1 0.000 0.000 0.000 +2444653.5 0.88289 3.19538 -19305972.4 0.02863 0.00780 235.1 0.000 0.000 0.000 +2444654.5 0.88537 3.18581 -19308175.5 0.02863 0.00780 235.1 0.000 0.000 0.000 +2444655.5 0.88749 3.17614 -19310481.7 0.02863 0.00780 235.1 0.000 0.000 0.000 +2444656.5 0.88925 3.16641 -19312870.8 0.02312 0.00681 410.3 0.000 0.000 0.000 +2444657.5 0.89069 3.15666 -19315313.7 0.02312 0.00681 410.3 0.000 0.000 0.000 +2444658.5 0.89183 3.14694 -19317778.6 0.01579 0.00566 530.6 0.000 0.000 0.000 +2444659.5 0.89272 3.13729 -19320235.7 0.03146 0.00451 456.0 0.000 0.000 0.000 +2444660.5 0.89338 3.12776 -19322662.3 0.03146 0.00451 456.0 0.000 0.000 0.000 +2444661.5 0.89388 3.11838 -19325046.6 0.04341 0.01623 702.9 0.000 0.000 0.000 +2444662.5 0.89428 3.10920 -19327391.1 0.05198 0.01947 774.9 0.000 0.000 0.000 +2444663.5 0.89458 3.10025 -19329712.3 0.05198 0.01947 774.9 0.000 0.000 0.000 +2444664.5 0.89479 3.09157 -19332039.4 0.04331 0.01603 673.0 0.000 0.000 0.000 +2444665.5 0.89499 3.08317 -19334412.0 0.04414 0.01952 782.4 0.000 0.000 0.000 +2444666.5 0.89525 3.07507 -19336880.7 0.04414 0.01952 782.4 0.000 0.000 0.000 +2444667.5 0.89570 3.06726 -19339503.5 0.01491 0.00351 397.2 0.000 0.000 0.000 +2444668.5 0.89642 3.05975 -19342331.3 0.01760 0.03608 280.9 0.000 0.000 0.000 +2444669.5 0.89749 3.05254 -19345386.5 0.01760 0.03608 280.9 0.000 0.000 0.000 +2444670.5 0.89898 3.04563 -19348645.7 0.01992 0.05090 10.8 0.000 0.000 0.000 +2444671.5 0.90095 3.03902 -19352037.0 0.03957 0.03771 252.6 0.000 0.000 0.000 +2444672.5 0.90344 3.03264 -19355454.8 0.03957 0.03771 252.6 0.000 0.000 0.000 +2444673.5 0.90649 3.02643 -19358789.7 0.03231 0.03399 343.4 0.000 0.000 0.000 +2444674.5 0.91013 3.02033 -19361958.7 0.03698 0.02091 420.5 0.000 0.000 0.000 +2444675.5 0.91435 3.01428 -19364924.9 0.03698 0.02091 420.5 0.000 0.000 0.000 +2444676.5 0.91907 3.00824 -19367698.9 0.03698 0.02091 420.5 0.000 0.000 0.000 +2444677.5 0.92424 3.00217 -19370327.1 0.00511 0.01763 529.3 0.000 0.000 0.000 +2444678.5 0.92978 2.99604 -19372873.4 0.00511 0.01763 529.3 0.000 0.000 0.000 +2444679.5 0.93563 2.98985 -19375400.2 0.00549 0.00556 533.9 0.000 0.000 0.000 +2444680.5 0.94173 2.98358 -19377954.6 0.00549 0.00556 533.9 0.000 0.000 0.000 +2444681.5 0.94801 2.97722 -19380560.8 0.00549 0.00556 533.9 0.000 0.000 0.000 +2444682.5 0.95442 2.97077 -19383220.6 0.00455 0.02017 477.6 0.000 0.000 0.000 +2444683.5 0.96092 2.96421 -19385916.9 0.00226 0.02470 418.4 0.000 0.000 0.000 +2444684.5 0.96745 2.95754 -19388621.0 0.00226 0.02470 418.4 0.000 0.000 0.000 +2444685.5 0.97397 2.95076 -19391298.6 0.00129 0.03403 338.0 0.000 0.000 0.000 +2444686.5 0.98044 2.94384 -19393916.4 0.00731 0.02657 253.6 0.000 0.000 0.000 +2444687.5 0.98681 2.93672 -19396446.1 0.00731 0.02657 253.6 0.000 0.000 0.000 +2444688.5 0.99303 2.92937 -19398870.4 0.00762 0.01538 84.7 0.000 0.000 0.000 +2444689.5 0.99907 2.92174 -19401186.4 0.00762 0.01538 84.7 0.000 0.000 0.000 +2444690.5 1.00487 2.91380 -19403408.0 0.00762 0.01538 84.7 0.000 0.000 0.000 +2444691.5 1.01037 2.90551 -19405565.0 0.00762 0.01538 84.7 0.000 0.000 0.000 +2444692.5 1.01551 2.89686 -19407700.0 0.01438 0.01910 39.4 0.000 0.000 0.000 +2444693.5 1.02023 2.88785 -19409866.7 0.01438 0.01910 39.4 0.000 0.000 0.000 +2444694.5 1.02448 2.87847 -19412127.6 0.02007 0.02259 55.6 0.000 0.000 0.000 +2444695.5 1.02819 2.86871 -19414547.9 0.02506 0.02112 297.0 0.000 0.000 0.000 +2444696.5 1.03133 2.85859 -19417179.4 0.02506 0.02112 297.0 0.000 0.000 0.000 +2444697.5 1.03389 2.84812 -19420040.1 0.02506 0.02112 297.0 0.000 0.000 0.000 +2444698.5 1.03585 2.83734 -19423096.8 0.02105 0.01456 333.3 0.000 0.000 0.000 +2444699.5 1.03721 2.82628 -19426265.1 0.02105 0.01456 333.3 0.000 0.000 0.000 +2444700.5 1.03802 2.81499 -19429431.8 0.02105 0.01456 333.3 0.000 0.000 0.000 +2444701.5 1.03830 2.80352 -19432491.8 0.00740 0.01019 235.1 0.000 0.000 0.000 +2444702.5 1.03811 2.79192 -19435380.8 0.00740 0.01019 235.1 0.000 0.000 0.000 +2444703.5 1.03746 2.78026 -19438090.8 0.01025 0.01173 369.8 0.000 0.000 0.000 +2444704.5 1.03637 2.76858 -19440663.8 0.01187 0.01361 425.1 0.000 0.000 0.000 +2444705.5 1.03487 2.75697 -19443169.5 0.01187 0.01361 425.1 0.000 0.000 0.000 +2444706.5 1.03296 2.74549 -19445680.5 0.01187 0.01361 425.1 0.000 0.000 0.000 +2444707.5 1.03063 2.73421 -19448253.8 0.01773 0.01374 432.8 0.000 0.000 0.000 +2444708.5 1.02787 2.72320 -19450921.3 0.01773 0.01374 432.8 0.000 0.000 0.000 +2444709.5 1.02466 2.71250 -19453690.5 0.03506 0.05022 532.5 0.000 0.000 0.000 +2444710.5 1.02099 2.70218 -19456548.2 0.03506 0.05022 532.5 0.000 0.000 0.000 +2444711.5 1.01686 2.69227 -19459466.1 0.03506 0.05022 532.5 0.000 0.000 0.000 +2444712.5 1.01230 2.68281 -19462407.2 0.03506 0.05022 532.5 0.000 0.000 0.000 +2444713.5 1.00738 2.67380 -19465331.0 0.03367 0.04999 578.1 0.000 0.000 0.000 +2444714.5 1.00219 2.66519 -19468198.3 0.03367 0.04999 578.1 0.000 0.000 0.000 +2444715.5 0.99685 2.65692 -19470977.7 0.02566 0.01453 514.4 0.000 0.000 0.000 +2444716.5 0.99147 2.64894 -19473650.7 0.02566 0.01453 514.4 0.000 0.000 0.000 +2444717.5 0.98613 2.64120 -19476215.0 0.02566 0.01453 514.4 0.000 0.000 0.000 +2444718.5 0.98093 2.63366 -19478686.8 0.02566 0.01453 514.4 0.000 0.000 0.000 +2444719.5 0.97592 2.62629 -19481097.4 0.03294 0.01723 594.2 0.000 0.000 0.000 +2444720.5 0.97113 2.61908 -19483490.4 0.02585 0.01247 462.6 0.000 0.000 0.000 +2444721.5 0.96658 2.61200 -19485917.6 0.01585 0.00374 273.9 0.000 0.000 0.000 +2444722.5 0.96228 2.60505 -19488434.2 0.02760 0.00294 429.1 0.000 0.000 0.000 +2444723.5 0.95825 2.59820 -19491091.6 0.02760 0.00294 429.1 0.000 0.000 0.000 +2444724.5 0.95452 2.59143 -19493922.9 0.02760 0.00294 429.1 0.000 0.000 0.000 +2444725.5 0.95114 2.58474 -19496924.0 0.02331 0.00634 386.5 0.000 0.000 0.000 +2444726.5 0.94811 2.57809 -19500042.2 0.02625 0.00731 431.9 0.000 0.000 0.000 +2444727.5 0.94541 2.57148 -19503181.0 0.02625 0.00731 431.9 0.000 0.000 0.000 +2444728.5 0.94302 2.56487 -19506225.8 0.01886 0.00760 252.0 0.000 0.000 0.000 +2444729.5 0.94092 2.55825 -19509082.0 0.01886 0.00760 252.0 0.000 0.000 0.000 +2444730.5 0.93912 2.55158 -19511706.2 0.01559 0.01048 239.3 0.000 0.000 0.000 +2444731.5 0.93761 2.54484 -19514114.9 0.01765 0.01064 214.6 0.000 0.000 0.000 +2444732.5 0.93636 2.53799 -19516371.5 0.01765 0.01064 214.6 0.000 0.000 0.000 +2444733.5 0.93532 2.53101 -19518556.8 0.01765 0.01064 214.6 0.000 0.000 0.000 +2444734.5 0.93443 2.52388 -19520742.9 0.00332 0.01047 159.4 0.000 0.000 0.000 +2444735.5 0.93364 2.51660 -19522977.2 0.00332 0.01047 159.4 0.000 0.000 0.000 +2444736.5 0.93289 2.50915 -19525279.3 0.00202 0.00219 77.4 0.000 0.000 0.000 +2444737.5 0.93212 2.50153 -19527646.4 0.00563 0.00270 442.4 0.000 0.000 0.000 +2444738.5 0.93128 2.49374 -19530060.1 0.00563 0.00270 399.9 0.000 0.000 0.000 +2444739.5 0.93029 2.48577 -19532493.4 0.00563 0.00270 399.9 0.000 0.000 0.000 +2444740.5 0.92911 2.47761 -19534915.5 0.00652 0.01354 494.4 0.000 0.000 0.000 +2444741.5 0.92768 2.46926 -19537295.9 0.00652 0.01354 494.4 0.000 0.000 0.000 +2444742.5 0.92595 2.46070 -19539609.0 0.00652 0.01354 494.4 0.000 0.000 0.000 +2444743.5 0.92389 2.45194 -19541839.2 0.01741 0.01547 390.3 0.000 0.000 0.000 +2444744.5 0.92143 2.44297 -19543984.2 0.01741 0.01547 430.4 0.000 0.000 0.000 +2444745.5 0.91856 2.43381 -19546057.1 0.01741 0.01547 430.4 0.000 0.000 0.000 +2444746.5 0.91522 2.42447 -19548087.0 0.02409 0.01103 361.5 0.000 0.000 0.000 +2444747.5 0.91143 2.41498 -19550115.0 0.02447 0.01791 258.2 0.000 0.000 0.000 +2444748.5 0.90718 2.40538 -19552189.2 0.02447 0.01791 258.2 0.000 0.000 0.000 +2444749.5 0.90248 2.39568 -19554359.6 0.02485 0.02280 51.0 0.000 0.000 0.000 +2444750.5 0.89734 2.38594 -19556671.9 0.02485 0.02280 51.0 0.000 0.000 0.000 +2444751.5 0.89180 2.37617 -19559159.8 0.02485 0.02280 51.0 0.000 0.000 0.000 +2444752.5 0.88589 2.36645 -19561832.7 0.02485 0.02280 51.0 0.000 0.000 0.000 +2444753.5 0.87968 2.35683 -19564663.5 0.03310 0.02690 330.8 0.000 0.000 0.000 +2444754.5 0.87322 2.34737 -19567583.5 0.01168 0.07887 218.0 0.000 0.000 0.000 +2444755.5 0.86657 2.33814 -19570492.4 0.01168 0.07887 218.0 0.000 0.000 0.000 +2444756.5 0.85978 2.32920 -19573285.4 0.01168 0.07887 218.0 0.000 0.000 0.000 +2444757.5 0.85292 2.32060 -19575887.9 0.01168 0.07887 218.0 0.000 0.000 0.000 +2444758.5 0.84604 2.31236 -19578279.2 0.04077 0.05654 227.4 0.000 0.000 0.000 +2444759.5 0.83923 2.30444 -19580494.0 0.04077 0.05654 172.0 0.000 0.000 0.000 +2444760.5 0.83257 2.29679 -19582602.0 0.05646 0.01316 243.0 0.000 0.000 0.000 +2444761.5 0.82610 2.28938 -19584677.9 0.04014 0.01189 172.9 0.000 0.000 0.000 +2444762.5 0.81984 2.28214 -19586776.1 0.04014 0.01189 172.9 0.000 0.000 0.000 +2444763.5 0.81374 2.27501 -19588920.0 0.03385 0.01213 143.0 0.000 0.000 0.000 +2444764.5 0.80777 2.26794 -19591104.9 0.01117 0.01159 34.1 0.000 0.000 0.000 +2444765.5 0.80192 2.26086 -19593307.3 0.01117 0.01159 34.1 0.000 0.000 0.000 +2444766.5 0.79616 2.25374 -19595494.6 0.01117 0.01159 34.1 0.000 0.000 0.000 +2444767.5 0.79048 2.24652 -19597631.1 0.02493 0.03089 168.7 0.000 0.000 0.000 +2444768.5 0.78488 2.23917 -19599683.2 0.02493 0.03089 168.7 0.000 0.000 0.000 +2444769.5 0.77938 2.23166 -19601622.8 0.03206 0.04183 209.0 0.000 0.000 0.000 +2444770.5 0.77398 2.22397 -19603431.5 0.02495 0.03090 200.4 0.000 0.000 0.000 +2444771.5 0.76869 2.21607 -19605104.3 0.02495 0.03090 200.4 0.000 0.000 0.000 +2444772.5 0.76346 2.20798 -19606651.5 0.02196 0.03278 173.9 0.000 0.000 0.000 +2444773.5 0.75825 2.19973 -19608099.1 0.01446 0.02716 135.6 0.000 0.000 0.000 +2444774.5 0.75302 2.19135 -19609487.0 0.01446 0.02716 135.6 0.000 0.000 0.000 +2444775.5 0.74775 2.18289 -19610865.1 0.01901 0.02219 132.8 0.000 0.000 0.000 +2444776.5 0.74243 2.17437 -19612285.7 0.02082 0.02566 104.5 0.000 0.000 0.000 +2444777.5 0.73707 2.16579 -19613795.6 0.02082 0.02566 104.5 0.000 0.000 0.000 +2444778.5 0.73166 2.15714 -19615427.0 0.02581 0.00137 128.7 0.000 0.000 0.000 +2444779.5 0.72622 2.14842 -19617190.9 0.01826 0.01702 267.2 0.000 0.000 0.000 +2444780.5 0.72079 2.13961 -19619071.1 0.01826 0.01702 267.2 0.000 0.000 0.000 +2444781.5 0.71544 2.13071 -19621021.1 0.00076 0.02404 387.5 0.000 0.000 0.000 +2444782.5 0.71020 2.12172 -19622967.3 0.05605 0.01880 342.5 0.000 0.000 0.000 +2444783.5 0.70515 2.11264 -19624825.0 0.05605 0.01880 342.5 0.000 0.000 0.000 +2444784.5 0.70032 2.10352 -19626521.1 0.05605 0.01880 342.5 0.000 0.000 0.000 +2444785.5 0.69577 2.09435 -19628019.2 0.06753 0.00803 262.4 0.000 0.000 0.000 +2444786.5 0.69150 2.08518 -19629333.5 0.06753 0.00803 262.4 0.000 0.000 0.000 +2444787.5 0.68742 2.07600 -19630522.3 0.06753 0.00803 262.4 0.000 0.000 0.000 +2444788.5 0.68342 2.06682 -19631664.2 0.04254 0.00564 182.6 0.000 0.000 0.000 +2444789.5 0.67950 2.05765 -19632827.9 0.04254 0.00564 182.6 0.000 0.000 0.000 +2444790.5 0.67567 2.04849 -19634053.5 0.04254 0.00564 182.6 0.000 0.000 0.000 +2444791.5 0.67191 2.03938 -19635346.9 0.02161 0.00663 130.1 0.000 0.000 0.000 +2444792.5 0.66823 2.03030 -19636688.5 0.02161 0.00663 130.1 0.000 0.000 0.000 +2444793.5 0.66457 2.02129 -19638045.0 0.01782 0.00960 166.6 0.000 0.000 0.000 +2444794.5 0.66088 2.01235 -19639379.5 0.00926 0.01032 186.8 0.000 0.000 0.000 +2444795.5 0.65711 2.00351 -19640658.4 0.00926 0.01032 186.8 0.000 0.000 0.000 +2444796.5 0.65317 1.99478 -19641854.7 0.00926 0.01032 186.8 0.000 0.000 0.000 +2444797.5 0.64900 1.98617 -19642952.3 0.00683 0.01549 158.0 0.000 0.000 0.000 +2444798.5 0.64455 1.97773 -19643948.1 0.00683 0.01549 158.0 0.000 0.000 0.000 +2444799.5 0.63974 1.96948 -19644853.3 0.02177 0.02598 142.1 0.000 0.000 0.000 +2444800.5 0.63449 1.96145 -19645693.6 0.02177 0.02598 142.1 0.000 0.000 0.000 +2444801.5 0.62879 1.95365 -19646508.8 0.02177 0.02598 142.1 0.000 0.000 0.000 +2444802.5 0.62257 1.94611 -19647350.2 0.02177 0.02598 145.1 0.000 0.000 0.000 +2444803.5 0.61581 1.93880 -19648275.7 0.02092 0.02319 341.8 0.000 0.000 0.000 +2444804.5 0.60851 1.93169 -19649339.7 0.02092 0.02319 341.8 0.000 0.000 0.000 +2444805.5 0.60068 1.92475 -19650581.5 0.00154 0.00416 400.5 0.000 0.000 0.000 +2444806.5 0.59233 1.91795 -19652015.3 0.00603 0.01887 435.0 0.000 0.000 0.000 +2444807.5 0.58348 1.91125 -19653623.9 0.00603 0.01887 435.0 0.000 0.000 0.000 +2444808.5 0.57412 1.90460 -19655360.2 0.00603 0.01887 502.8 0.000 0.000 0.000 +2444809.5 0.56426 1.89798 -19657156.2 0.00604 0.03506 340.7 0.000 0.000 0.000 +2444810.5 0.55389 1.89137 -19658935.6 0.00604 0.03506 340.7 0.000 0.000 0.000 +2444811.5 0.54302 1.88476 -19660630.9 0.00604 0.03506 340.7 0.000 0.000 0.000 +2444812.5 0.53162 1.87815 -19662202.1 0.02078 0.03162 236.3 0.000 0.000 0.000 +2444813.5 0.51967 1.87155 -19663648.6 0.02078 0.03162 236.3 0.000 0.000 0.000 +2444814.5 0.50718 1.86499 -19665010.1 0.01805 0.03082 216.6 0.000 0.000 0.000 +2444815.5 0.49414 1.85853 -19666353.1 0.02208 0.02330 304.3 0.000 0.000 0.000 +2444816.5 0.48058 1.85223 -19667746.5 0.02208 0.02330 240.7 0.000 0.000 0.000 +2444817.5 0.46654 1.84618 -19669238.5 0.02208 0.02330 240.7 0.000 0.000 0.000 +2444818.5 0.45205 1.84041 -19670843.9 0.00952 0.02538 206.6 0.000 0.000 0.000 +2444819.5 0.43715 1.83497 -19672545.6 0.00952 0.02538 206.6 0.000 0.000 0.000 +2444820.5 0.42186 1.82989 -19674305.6 0.00819 0.02095 219.6 0.000 0.000 0.000 +2444821.5 0.40619 1.82520 -19676077.9 0.01400 0.02322 68.8 0.000 0.000 0.000 +2444822.5 0.39016 1.82094 -19677818.3 0.01400 0.02322 30.2 0.000 0.000 0.000 +2444823.5 0.37379 1.81717 -19679490.0 0.01400 0.02322 30.2 0.000 0.000 0.000 +2444824.5 0.35708 1.81395 -19681067.4 0.01624 0.05717 9.1 0.000 0.000 0.000 +2444825.5 0.34007 1.81131 -19682538.8 0.01624 0.05717 9.1 0.000 0.000 0.000 +2444826.5 0.32280 1.80928 -19683907.8 0.01624 0.05717 9.1 0.000 0.000 0.000 +2444827.5 0.30531 1.80788 -19685193.2 0.02006 0.05495 320.7 0.000 0.000 0.000 +2444828.5 0.28765 1.80710 -19686426.6 0.02006 0.05495 320.7 0.000 0.000 0.000 +2444829.5 0.26989 1.80685 -19687651.0 0.02006 0.05495 320.7 0.000 0.000 0.000 +2444830.5 0.25210 1.80708 -19688918.1 0.02714 0.02200 399.5 0.000 0.000 0.000 +2444831.5 0.23431 1.80770 -19690283.5 0.02714 0.02200 399.5 0.000 0.000 0.000 +2444832.5 0.21655 1.80867 -19691794.2 0.02714 0.02200 399.5 0.000 0.000 0.000 +2444833.5 0.19884 1.80993 -19693473.1 0.02573 0.02192 239.6 0.000 0.000 0.000 +2444834.5 0.18121 1.81143 -19695307.3 0.02573 0.02192 239.6 0.000 0.000 0.000 +2444835.5 0.16376 1.81314 -19697246.6 0.02595 0.01884 198.4 0.000 0.000 0.000 +2444836.5 0.14655 1.81506 -19699213.7 0.02398 0.01087 48.0 0.000 0.000 0.000 +2444837.5 0.12963 1.81716 -19701123.9 0.02398 0.01087 48.0 0.000 0.000 0.000 +2444838.5 0.11303 1.81945 -19702906.8 0.02398 0.01087 48.0 0.000 0.000 0.000 +2444839.5 0.09676 1.82192 -19704523.2 0.02387 0.00767 186.1 0.000 0.000 0.000 +2444840.5 0.08082 1.82459 -19705973.6 0.02387 0.00767 186.1 0.000 0.000 0.000 +2444841.5 0.06517 1.82745 -19707295.9 0.01489 0.01621 254.6 0.000 0.000 0.000 +2444842.5 0.04982 1.83052 -19708554.7 0.01489 0.01621 254.6 0.000 0.000 0.000 +2444843.5 0.03474 1.83380 -19709822.9 0.01489 0.01621 254.6 0.000 0.000 0.000 +2444844.5 0.01986 1.83730 -19711161.6 0.01489 0.01621 254.6 0.000 0.000 0.000 +2444845.5 0.00513 1.84100 -19712604.0 0.01452 0.02333 225.3 0.000 0.000 0.000 +2444846.5 -0.00949 1.84488 -19714150.8 0.01452 0.02333 225.3 0.000 0.000 0.000 +2444847.5 -0.02406 1.84891 -19715775.3 0.02707 0.02725 158.9 0.000 0.000 0.000 +2444848.5 -0.03863 1.85307 -19717435.8 0.02707 0.02725 158.9 0.000 0.000 0.000 +2444849.5 -0.05326 1.85733 -19719087.9 0.02707 0.02725 158.9 0.000 0.000 0.000 +2444850.5 -0.06805 1.86170 -19720693.4 0.02371 0.03254 181.3 0.000 0.000 0.000 +2444851.5 -0.08306 1.86619 -19722225.4 0.02515 0.03605 174.2 0.000 0.000 0.000 +2444852.5 -0.09832 1.87085 -19723671.2 0.02515 0.03605 174.2 0.000 0.000 0.000 +2444853.5 -0.11386 1.87572 -19725034.9 0.01488 0.04112 219.2 0.000 0.000 0.000 +2444854.5 -0.12971 1.88083 -19726337.4 0.01062 0.03021 176.8 0.000 0.000 0.000 +2444855.5 -0.14586 1.88616 -19727613.4 0.01062 0.03021 176.8 0.000 0.000 0.000 +2444856.5 -0.16233 1.89171 -19728908.6 0.00659 0.00854 245.6 0.000 0.000 0.000 +2444857.5 -0.17910 1.89746 -19730276.8 0.00659 0.00854 245.6 0.000 0.000 0.000 +2444858.5 -0.19618 1.90341 -19731776.8 0.00659 0.00854 245.6 0.000 0.000 0.000 +2444859.5 -0.21359 1.90957 -19733465.4 0.00659 0.00854 245.6 0.000 0.000 0.000 +2444860.5 -0.23130 1.91594 -19735383.8 0.00878 0.00257 365.7 0.000 0.000 0.000 +2444861.5 -0.24932 1.92254 -19737540.4 0.00878 0.00257 365.7 0.000 0.000 0.000 +2444862.5 -0.26762 1.92936 -19739899.1 0.00666 0.00960 408.6 0.000 0.000 0.000 +2444863.5 -0.28620 1.93643 -19742381.4 0.00666 0.00960 408.6 0.000 0.000 0.000 +2444864.5 -0.30504 1.94374 -19744885.3 0.00666 0.00960 408.6 0.000 0.000 0.000 +2444865.5 -0.32411 1.95131 -19747315.4 0.00666 0.00960 408.6 0.000 0.000 0.000 +2444866.5 -0.34337 1.95914 -19749610.1 0.00382 0.01011 349.1 0.000 0.000 0.000 +2444867.5 -0.36282 1.96722 -19751755.5 0.00382 0.01011 349.1 0.000 0.000 0.000 +2444868.5 -0.38243 1.97553 -19753783.3 0.00344 0.00477 266.6 0.000 0.000 0.000 +2444869.5 -0.40218 1.98408 -19755755.8 0.00507 0.00453 189.6 0.000 0.000 0.000 +2444870.5 -0.42204 1.99285 -19757744.8 0.00507 0.00453 189.6 0.000 0.000 0.000 +2444871.5 -0.44200 2.00184 -19759811.4 0.01548 0.00552 210.7 0.000 0.000 0.000 +2444872.5 -0.46202 2.01104 -19761992.4 0.01880 0.00586 176.1 0.000 0.000 0.000 +2444873.5 -0.48207 2.02045 -19764293.8 0.01880 0.00586 176.1 0.000 0.000 0.000 +2444874.5 -0.50210 2.03008 -19766692.7 0.01755 0.00936 330.8 0.000 0.000 0.000 +2444875.5 -0.52207 2.03992 -19769146.5 0.02103 0.01106 404.6 0.000 0.000 0.000 +2444876.5 -0.54188 2.05000 -19771604.1 0.02103 0.01106 404.6 0.000 0.000 0.000 +2444877.5 -0.56145 2.06031 -19774016.4 0.01213 0.01181 557.3 0.000 0.000 0.000 +2444878.5 -0.58069 2.07088 -19776343.3 0.01213 0.01181 557.3 0.000 0.000 0.000 +2444879.5 -0.59955 2.08174 -19778559.6 0.01213 0.01181 557.3 0.000 0.000 0.000 +2444880.5 -0.61797 2.09290 -19780657.4 0.00881 0.00922 595.8 0.000 0.000 0.000 +2444881.5 -0.63588 2.10440 -19782647.8 0.01432 0.00926 447.8 0.000 0.000 0.000 +2444882.5 -0.65326 2.11626 -19784560.6 0.01432 0.00926 447.8 0.000 0.000 0.000 +2444883.5 -0.67005 2.12849 -19786438.9 0.01824 0.00929 214.6 0.000 0.000 0.000 +2444884.5 -0.68621 2.14110 -19788333.6 0.02727 0.01927 171.2 0.000 0.000 0.000 +2444885.5 -0.70171 2.15412 -19790301.0 0.02727 0.01927 171.2 0.000 0.000 0.000 +2444886.5 -0.71655 2.16754 -19792399.0 0.02727 0.01927 171.2 0.000 0.000 0.000 +2444887.5 -0.73072 2.18136 -19794679.7 0.02406 0.01834 299.9 0.000 0.000 0.000 +2444888.5 -0.74427 2.19557 -19797174.7 0.02406 0.01834 299.9 0.000 0.000 0.000 +2444889.5 -0.75725 2.21013 -19799878.1 0.02406 0.01834 299.9 0.000 0.000 0.000 +2444890.5 -0.76972 2.22501 -19802735.3 0.00538 0.00475 333.7 0.000 0.000 0.000 +2444891.5 -0.78174 2.24018 -19805649.3 0.00538 0.00475 333.7 0.000 0.000 0.000 +2444892.5 -0.79335 2.25561 -19808507.1 0.00836 0.00388 287.8 0.000 0.000 0.000 +2444893.5 -0.80462 2.27126 -19811216.6 0.01017 0.00378 201.5 0.000 0.000 0.000 +2444894.5 -0.81558 2.28709 -19813734.8 0.01017 0.00378 201.5 0.000 0.000 0.000 +2444895.5 -0.82627 2.30306 -19816077.2 0.00922 0.00536 175.2 0.000 0.000 0.000 +2444896.5 -0.83672 2.31914 -19818304.5 0.01000 0.00536 135.5 0.000 0.000 0.000 +2444897.5 -0.84694 2.33526 -19820496.5 0.01000 0.00536 135.5 0.000 0.000 0.000 +2444898.5 -0.85695 2.35141 -19822725.7 0.00797 0.01396 100.3 0.000 0.000 0.000 +2444899.5 -0.86678 2.36753 -19825040.2 0.00797 0.01396 100.3 0.000 0.000 0.000 +2444900.5 -0.87644 2.38360 -19827456.6 0.00797 0.01396 100.3 0.000 0.000 0.000 +2444901.5 -0.88596 2.39958 -19829962.6 0.00888 0.01823 96.0 0.000 0.000 0.000 +2444902.5 -0.89538 2.41545 -19832525.4 0.03430 0.02271 68.7 0.000 0.000 0.000 +2444903.5 -0.90475 2.43122 -19835100.3 0.03430 0.02271 68.7 0.000 0.000 0.000 +2444904.5 -0.91412 2.44686 -19837640.6 0.04769 0.02643 15.0 0.000 0.000 0.000 +2444905.5 -0.92351 2.46238 -19840104.5 0.03412 0.01888 214.6 0.000 0.000 0.000 +2444906.5 -0.93290 2.47779 -19842460.7 0.03412 0.01888 214.6 0.000 0.000 0.000 +2444907.5 -0.94225 2.49314 -19844692.5 0.03412 0.01888 214.6 0.000 0.000 0.000 +2444908.5 -0.95151 2.50843 -19846801.3 0.00738 0.00375 303.1 0.000 0.000 0.000 +2444909.5 -0.96064 2.52370 -19848807.2 0.01179 0.01699 310.4 0.000 0.000 0.000 +2444910.5 -0.96962 2.53899 -19850746.9 0.01179 0.01699 310.4 0.000 0.000 0.000 +2444911.5 -0.97840 2.55433 -19852667.7 0.01057 0.02302 250.2 0.000 0.000 0.000 +2444912.5 -0.98697 2.56974 -19854622.0 0.01057 0.02302 250.2 0.000 0.000 0.000 +2444913.5 -0.99526 2.58524 -19856663.4 0.01668 0.01938 209.0 0.000 0.000 0.000 +2444914.5 -1.00322 2.60082 -19858842.6 0.01668 0.01938 209.0 0.000 0.000 0.000 +2444915.5 -1.01078 2.61651 -19861200.2 0.01748 0.01679 122.8 0.000 0.000 0.000 +2444916.5 -1.01789 2.63234 -19863753.2 0.02179 0.01374 208.9 0.000 0.000 0.000 +2444917.5 -1.02453 2.64834 -19866479.5 0.02669 0.00590 230.8 0.000 0.000 0.000 +2444918.5 -1.03068 2.66455 -19869310.2 0.02669 0.00590 230.8 0.000 0.000 0.000 +2444919.5 -1.03633 2.68102 -19872141.6 0.02515 0.03197 390.0 0.000 0.000 0.000 +2444920.5 -1.04148 2.69780 -19874864.5 0.02515 0.03197 390.0 0.000 0.000 0.000 +2444921.5 -1.04616 2.71490 -19877401.4 0.02515 0.03197 390.0 0.000 0.000 0.000 +2444922.5 -1.05042 2.73239 -19879733.2 0.02127 0.04518 451.2 0.000 0.000 0.000 +2444923.5 -1.05427 2.75025 -19881899.6 0.02864 0.03202 355.0 0.000 0.000 0.000 +2444924.5 -1.05773 2.76848 -19883977.7 0.02864 0.03202 355.0 0.000 0.000 0.000 +2444925.5 -1.06078 2.78706 -19886049.5 0.00562 0.00100 45.4 0.000 0.000 0.000 +2444926.5 -1.06344 2.80595 -19888174.8 0.00562 0.00100 45.4 0.000 0.000 0.000 +2444927.5 -1.06575 2.82515 -19890378.2 0.00562 0.00100 45.4 0.000 0.000 0.000 +2444928.5 -1.06777 2.84464 -19892651.9 0.00562 0.00100 45.4 0.000 0.000 0.000 +2444929.5 -1.06956 2.86441 -19894966.6 0.00678 0.00095 26.1 0.000 0.000 0.000 +2444930.5 -1.07118 2.88443 -19897283.6 0.00678 0.00095 26.1 0.000 0.000 0.000 +2444931.5 -1.07265 2.90468 -19899562.5 0.00579 0.00056 18.9 0.000 0.000 0.000 +2444932.5 -1.07401 2.92516 -19901766.3 0.04625 0.00273 115.1 0.000 0.000 0.000 +2444933.5 -1.07525 2.94585 -19903866.8 0.04625 0.00273 115.1 0.000 0.000 0.000 +2444934.5 -1.07633 2.96672 -19905847.7 0.04625 0.00273 115.1 0.000 0.000 0.000 +2444935.5 -1.07718 2.98777 -19907708.2 0.03310 0.02690 271.0 0.000 0.000 0.000 +2444936.5 -1.07776 3.00899 -19909464.3 0.04135 0.02312 50.1 0.000 0.000 0.000 +2444937.5 -1.07800 3.03035 -19911148.9 0.04135 0.02312 50.1 0.000 0.000 0.000 +2444938.5 -1.07785 3.05186 -19912808.2 0.04135 0.02312 50.1 0.000 0.000 0.000 +2444939.5 -1.07725 3.07348 -19914495.7 0.04135 0.02312 50.1 0.000 0.000 0.000 +2444940.5 -1.07617 3.09522 -19916265.5 0.07051 0.02234 58.6 0.000 0.000 0.000 +2444941.5 -1.07461 3.11708 -19918166.6 0.07051 0.02234 58.6 0.000 0.000 0.000 +2444942.5 -1.07259 3.13909 -19920238.8 0.09073 0.02153 66.0 0.000 0.000 0.000 +2444943.5 -1.07015 3.16126 -19922506.1 0.09073 0.02153 66.0 0.000 0.000 0.000 +2444944.5 -1.06742 3.18358 -19924966.4 0.09266 0.01575 638.0 0.000 0.000 0.000 +2444945.5 -1.06458 3.20605 -19927582.4 0.09266 0.01575 638.0 0.000 0.000 0.000 +2444946.5 -1.06184 3.22866 -19930278.9 0.09455 0.00569 899.9 0.000 0.000 0.000 +2444947.5 -1.05938 3.25139 -19932958.7 0.09107 0.01187 686.4 0.000 0.000 0.000 +2444948.5 -1.05728 3.27422 -19935529.9 0.09107 0.01187 686.4 0.000 0.000 0.000 +2444949.5 -1.05558 3.29715 -19937939.7 0.09107 0.01187 686.4 0.000 0.000 0.000 +2444950.5 -1.05426 3.32014 -19940194.8 0.06184 0.01657 258.4 0.000 0.000 0.000 +2444951.5 -1.05319 3.34315 -19942353.5 0.06184 0.01657 258.4 0.000 0.000 0.000 +2444952.5 -1.05224 3.36616 -19944498.3 0.06184 0.01657 258.4 0.000 0.000 0.000 +2444953.5 -1.05125 3.38912 -19946701.4 0.01281 0.01285 77.4 0.000 0.000 0.000 +2444954.5 -1.05006 3.41199 -19949000.2 0.01281 0.01285 212.1 0.000 0.000 0.000 +2444955.5 -1.04853 3.43476 -19951392.1 0.02934 0.01323 305.7 0.000 0.000 0.000 +2444956.5 -1.04651 3.45740 -19953844.5 0.03592 0.01062 356.0 0.000 0.000 0.000 +2444957.5 -1.04388 3.47989 -19956310.8 0.03592 0.01062 356.0 0.000 0.000 0.000 +2444958.5 -1.04053 3.50221 -19958743.9 0.03592 0.01062 356.0 0.000 0.000 0.000 +2444959.5 -1.03637 3.52434 -19961103.5 0.03435 0.01021 362.3 0.000 0.000 0.000 +2444960.5 -1.03139 3.54628 -19963360.0 0.03435 0.01021 354.0 0.000 0.000 0.000 +2444961.5 -1.02555 3.56801 -19965495.6 0.01027 0.00364 152.1 0.000 0.000 0.000 +2444962.5 -1.01883 3.58953 -19967505.8 0.01027 0.00364 152.1 0.000 0.000 0.000 +2444963.5 -1.01123 3.61085 -19969401.9 0.01027 0.00364 152.1 0.000 0.000 0.000 +2444964.5 -1.00274 3.63195 -19971210.5 0.02534 0.00530 292.3 0.000 0.000 0.000 +2444965.5 -0.99335 3.65285 -19972972.5 0.03433 0.00655 384.4 0.000 0.000 0.000 +2444966.5 -0.98307 3.67352 -19974737.9 0.03433 0.00655 384.4 0.000 0.000 0.000 +2444967.5 -0.97188 3.69399 -19976560.4 0.06823 0.01586 307.3 0.000 0.000 0.000 +2444968.5 -0.95977 3.71424 -19978487.9 0.06823 0.01586 307.3 0.000 0.000 0.000 +2444969.5 -0.94668 3.73428 -19980555.9 0.06823 0.01586 307.3 0.000 0.000 0.000 +2444970.5 -0.93254 3.75412 -19982782.6 0.09017 0.02146 202.9 0.000 0.000 0.000 +2444971.5 -0.91740 3.77375 -19985164.8 0.06377 0.01876 303.5 0.000 0.000 0.000 +2444972.5 -0.90135 3.79314 -19987674.5 0.06377 0.01876 303.5 0.000 0.000 0.000 +2444973.5 -0.88451 3.81228 -19990256.5 0.00096 0.01559 378.2 0.000 0.000 0.000 +2444974.5 -0.86697 3.83115 -19992834.1 0.00784 0.01120 296.1 0.000 0.000 0.000 +2444975.5 -0.84884 3.84972 -19995325.8 0.01117 0.00992 303.4 0.000 0.000 0.000 +2444976.5 -0.83021 3.86800 -19997670.1 0.01117 0.00992 303.4 0.000 0.000 0.000 +2444977.5 -0.81119 3.88599 -19999850.2 0.01366 0.00510 281.4 0.000 0.000 0.000 +2444978.5 -0.79187 3.90368 -20001901.8 0.01366 0.00510 281.4 0.000 0.000 0.000 +2444979.5 -0.77232 3.92107 -20003899.1 0.01907 0.00759 251.3 0.000 0.000 0.000 +2444980.5 -0.75260 3.93814 -20005924.8 0.02201 0.00908 266.4 0.000 0.000 0.000 +2444981.5 -0.73276 3.95488 -20008037.2 0.02678 0.01099 2.9 0.000 0.000 0.000 +2444982.5 -0.71285 3.97128 -20010251.9 0.02587 0.00823 138.0 0.000 0.000 0.000 +2444983.5 -0.69292 3.98732 -20012544.0 0.02587 0.00823 138.0 0.000 0.000 0.000 +2444984.5 -0.67297 4.00302 -20014863.6 0.02587 0.00823 138.0 0.000 0.000 0.000 +2444985.5 -0.65300 4.01837 -20017155.3 0.01850 0.00494 142.8 0.000 0.000 0.000 +2444986.5 -0.63305 4.03337 -20019370.9 0.01850 0.00494 142.8 0.000 0.000 0.000 +2444987.5 -0.61315 4.04804 -20021475.6 0.01850 0.00494 142.8 0.000 0.000 0.000 +2444988.5 -0.59336 4.06237 -20023449.1 0.00794 0.00583 51.9 0.000 0.000 0.000 +2444989.5 -0.57372 4.07639 -20025286.4 0.00794 0.00583 51.9 0.000 0.000 0.000 +2444990.5 -0.55427 4.09009 -20026997.3 0.00794 0.00583 493.2 0.000 0.000 0.000 +2444991.5 -0.53505 4.10350 -20028606.5 0.03310 0.02690 746.3 0.000 0.000 0.000 +2444992.5 -0.51609 4.11663 -20030151.6 0.07194 0.02014 495.5 0.000 0.000 0.000 +2444993.5 -0.49741 4.12949 -20031681.0 0.07194 0.02014 495.5 0.000 0.000 0.000 +2444994.5 -0.47907 4.14211 -20033249.7 0.07194 0.02014 495.5 0.000 0.000 0.000 +2444995.5 -0.46108 4.15448 -20034911.5 0.05135 0.01426 396.7 0.000 0.000 0.000 +2444996.5 -0.44344 4.16663 -20036709.6 0.05135 0.01426 64.7 0.000 0.000 0.000 +2444997.5 -0.42606 4.17853 -20038666.8 0.05135 0.01426 64.7 0.000 0.000 0.000 +2444998.5 -0.40884 4.19019 -20040779.6 0.00989 0.00107 40.3 0.000 0.000 0.000 +2444999.5 -0.39169 4.20157 -20043017.7 0.01420 0.00744 107.0 0.000 0.000 0.000 +2445000.5 -0.37453 4.21268 -20045327.6 0.01420 0.00744 107.0 0.000 0.000 0.000 +2445001.5 -0.35727 4.22349 -20047641.8 0.01747 0.01046 145.9 0.000 0.000 0.000 +2445002.5 -0.33982 4.23400 -20049891.9 0.01747 0.01046 145.9 0.000 0.000 0.000 +2445003.5 -0.32212 4.24419 -20052025.1 0.01382 0.00741 146.2 0.000 0.000 0.000 +2445004.5 -0.30410 4.25407 -20054021.7 0.01382 0.00741 146.2 0.000 0.000 0.000 +2445005.5 -0.28571 4.26362 -20055905.9 0.00876 0.00053 146.6 0.000 0.000 0.000 +2445006.5 -0.26692 4.27286 -20057741.9 0.00876 0.00053 122.6 0.000 0.000 0.000 +2445007.5 -0.24766 4.28178 -20059613.5 0.01713 0.01486 101.9 0.000 0.000 0.000 +2445008.5 -0.22793 4.29039 -20061594.6 0.01713 0.01486 101.9 0.000 0.000 0.000 +2445009.5 -0.20767 4.29869 -20063723.6 0.02259 0.02101 64.0 0.000 0.000 0.000 +2445010.5 -0.18685 4.30667 -20065993.9 0.01677 0.01618 69.7 0.000 0.000 0.000 +2445011.5 -0.16548 4.31436 -20068361.8 0.01677 0.01618 127.9 0.000 0.000 0.000 +2445012.5 -0.14356 4.32178 -20070765.8 0.01677 0.01618 135.1 0.000 0.000 0.000 +2445013.5 -0.12109 4.32896 -20073145.9 0.01763 0.01385 134.4 0.000 0.000 0.000 +2445014.5 -0.09810 4.33593 -20075455.4 0.01763 0.01385 134.4 0.000 0.000 0.000 +2445015.5 -0.07461 4.34270 -20077665.5 0.01459 0.01395 141.4 0.000 0.000 0.000 +2445016.5 -0.05064 4.34928 -20079765.0 0.01712 0.01584 153.2 0.000 0.000 0.000 +2445017.5 -0.02621 4.35568 -20081760.8 0.01712 0.01584 120.4 0.000 0.000 0.000 +2445018.5 -0.00129 4.36191 -20083676.3 0.01712 0.01584 161.7 0.000 0.000 0.000 +2445019.5 0.02414 4.36794 -20085549.2 0.00413 0.01416 381.4 0.000 0.000 0.000 +2445020.5 0.05009 4.37377 -20087427.8 0.04493 0.01830 350.9 0.000 0.000 0.000 +2445021.5 0.07657 4.37935 -20089366.7 0.06341 0.02166 385.8 0.000 0.000 0.000 +2445022.5 0.10361 4.38466 -20091420.7 0.06341 0.02166 385.8 0.000 0.000 0.000 +2445023.5 0.13121 4.38969 -20093637.0 0.06341 0.02166 385.8 0.000 0.000 0.000 +2445024.5 0.15930 4.39438 -20096044.0 0.04499 0.01870 494.6 0.000 0.000 0.000 +2445025.5 0.18778 4.39868 -20098641.2 0.04499 0.01870 345.4 0.000 0.000 0.000 +2445026.5 0.21653 4.40255 -20101393.3 0.00528 0.01519 773.9 0.000 0.000 0.000 +2445027.5 0.24546 4.40591 -20104233.8 0.00528 0.01519 773.9 0.000 0.000 0.000 +2445028.5 0.27446 4.40875 -20107076.9 0.00722 0.03324 627.5 0.000 0.000 0.000 +2445029.5 0.30344 4.41101 -20109837.6 0.00722 0.03324 627.5 0.000 0.000 0.000 +2445030.5 0.33230 4.41267 -20112453.0 0.03015 0.03167 615.3 0.000 0.000 0.000 +2445031.5 0.36095 4.41370 -20114897.4 0.03015 0.03167 644.7 0.000 0.000 0.000 +2445032.5 0.38930 4.41411 -20117187.2 0.03015 0.03167 440.1 0.000 0.000 0.000 +2445033.5 0.41728 4.41392 -20119376.1 0.03015 0.03167 440.1 0.000 0.000 0.000 +2445034.5 0.44483 4.41315 -20121541.1 0.03593 0.00566 436.8 0.000 0.000 0.000 +2445035.5 0.47194 4.41185 -20123761.1 0.03593 0.00566 436.8 0.000 0.000 0.000 +2445036.5 0.49860 4.41004 -20126090.8 0.02240 0.00834 408.3 0.000 0.000 0.000 +2445037.5 0.52483 4.40775 -20128545.4 0.02240 0.00834 247.0 0.000 0.000 0.000 +2445038.5 0.55065 4.40502 -20131098.1 0.02240 0.00834 247.0 0.000 0.000 0.000 +2445039.5 0.57611 4.40186 -20133693.5 0.03482 0.00681 251.1 0.000 0.000 0.000 +2445040.5 0.60125 4.39831 -20136266.2 0.03740 0.00713 287.3 0.000 0.000 0.000 +2445041.5 0.62612 4.39440 -20138758.7 0.03740 0.00713 287.3 0.000 0.000 0.000 +2445042.5 0.65074 4.39017 -20141130.7 0.05133 0.00033 259.3 0.000 0.000 0.000 +2445043.5 0.67510 4.38565 -20143363.0 0.01797 0.00634 70.1 0.000 0.000 0.000 +2445044.5 0.69915 4.38089 -20145458.2 0.01797 0.00634 70.1 0.000 0.000 0.000 +2445045.5 0.72281 4.37591 -20147438.7 0.01105 0.00749 50.5 0.000 0.000 0.000 +2445046.5 0.74603 4.37077 -20149343.6 0.01105 0.00749 50.5 0.000 0.000 0.000 +2445047.5 0.76880 4.36546 -20151223.7 0.01105 0.00749 50.5 0.000 0.000 0.000 +2445048.5 0.79114 4.36000 -20153135.3 0.01105 0.00749 50.5 0.000 0.000 0.000 +2445049.5 0.81314 4.35440 -20155136.1 0.01979 0.00561 48.2 0.000 0.000 0.000 +2445050.5 0.83489 4.34865 -20157280.8 0.04444 0.01274 122.9 0.000 0.000 0.000 +2445051.5 0.85649 4.34274 -20159614.0 0.05848 0.01265 62.2 0.000 0.000 0.000 +2445052.5 0.87802 4.33667 -20162158.4 0.05848 0.01265 69.6 0.000 0.000 0.000 +2445053.5 0.89954 4.33045 -20164901.9 0.05848 0.01265 69.6 0.000 0.000 0.000 +2445054.5 0.92103 4.32408 -20167791.5 0.04256 0.01672 115.9 0.000 0.000 0.000 +2445055.5 0.94248 4.31758 -20170741.5 0.01421 0.01998 295.2 0.000 0.000 0.000 +2445056.5 0.96387 4.31095 -20173655.0 0.01421 0.01998 295.2 0.000 0.000 0.000 +2445057.5 0.98517 4.30423 -20176452.7 0.01421 0.01998 295.2 0.000 0.000 0.000 +2445058.5 1.00639 4.29739 -20179095.0 0.01344 0.01622 358.0 0.000 0.000 0.000 +2445059.5 1.02752 4.29043 -20181590.3 0.01344 0.01622 358.0 0.000 0.000 0.000 +2445060.5 1.04857 4.28334 -20183989.7 0.01262 0.01125 422.8 0.000 0.000 0.000 +2445061.5 1.06956 4.27611 -20186368.9 0.01262 0.01125 203.7 0.000 0.000 0.000 +2445062.5 1.09046 4.26870 -20188805.8 0.01262 0.01125 203.7 0.000 0.000 0.000 +2445063.5 1.11127 4.26108 -20191358.8 0.02211 0.01229 254.2 0.000 0.000 0.000 +2445064.5 1.13196 4.25324 -20194053.1 0.02860 0.01326 296.3 0.000 0.000 0.000 +2445065.5 1.15252 4.24514 -20196875.2 0.02860 0.01326 376.2 0.000 0.000 0.000 +2445066.5 1.17294 4.23675 -20199779.1 0.02860 0.01326 376.2 0.000 0.000 0.000 +2445067.5 1.19321 4.22805 -20202700.5 0.02860 0.01326 376.2 0.000 0.000 0.000 +2445068.5 1.21337 4.21903 -20205573.9 0.02860 0.01326 376.2 0.000 0.000 0.000 +2445069.5 1.23346 4.20968 -20208345.5 0.03310 0.02690 246.6 0.000 0.000 0.000 +2445070.5 1.25352 4.19999 -20210980.9 0.01441 0.00690 309.4 0.000 0.000 0.000 +2445071.5 1.27358 4.18994 -20213467.0 0.01441 0.00690 256.0 0.000 0.000 0.000 +2445072.5 1.29369 4.17953 -20215812.3 0.01441 0.00690 256.0 0.000 0.000 0.000 +2445073.5 1.31387 4.16875 -20218045.7 0.01624 0.00642 259.0 0.000 0.000 0.000 +2445074.5 1.33415 4.15759 -20220212.6 0.01624 0.00642 259.0 0.000 0.000 0.000 +2445075.5 1.35452 4.14605 -20222368.1 0.01624 0.00642 362.0 0.000 0.000 0.000 +2445076.5 1.37501 4.13412 -20224569.7 0.01267 0.00742 312.0 0.000 0.000 0.000 +2445077.5 1.39559 4.12183 -20226873.8 0.01267 0.00742 312.0 0.000 0.000 0.000 +2445078.5 1.41624 4.10916 -20229330.5 0.01267 0.00742 312.0 0.000 0.000 0.000 +2445079.5 1.43694 4.09613 -20231976.8 0.00337 0.00824 450.5 0.000 0.000 0.000 +2445080.5 1.45765 4.08274 -20234824.1 0.00337 0.00824 450.5 0.000 0.000 0.000 +2445081.5 1.47836 4.06898 -20237844.8 0.00656 0.01036 445.0 0.000 0.000 0.000 +2445082.5 1.49904 4.05486 -20240968.7 0.00799 0.01111 485.3 0.000 0.000 0.000 +2445083.5 1.51967 4.04036 -20244094.5 0.00799 0.01111 485.3 0.000 0.000 0.000 +2445084.5 1.54023 4.02550 -20247118.9 0.00799 0.01111 485.3 0.000 0.000 0.000 +2445085.5 1.56070 4.01027 -20249969.9 0.00794 0.00971 358.1 0.000 0.000 0.000 +2445086.5 1.58103 3.99465 -20252630.1 0.00794 0.00971 358.1 0.000 0.000 0.000 +2445087.5 1.60118 3.97863 -20255138.2 0.01001 0.00177 184.7 0.000 0.000 0.000 +2445088.5 1.62112 3.96220 -20257570.3 0.01001 0.00177 184.7 0.000 0.000 0.000 +2445089.5 1.64081 3.94534 -20260009.9 0.01001 0.00177 184.7 0.000 0.000 0.000 +2445090.5 1.66020 3.92805 -20262522.1 0.01001 0.00177 184.7 0.000 0.000 0.000 +2445091.5 1.67926 3.91029 -20265138.3 0.01034 0.01044 128.4 0.000 0.000 0.000 +2445092.5 1.69796 3.89206 -20267852.9 0.01034 0.01044 128.4 0.000 0.000 0.000 +2445093.5 1.71629 3.87334 -20270629.4 0.00431 0.02773 328.4 0.000 0.000 0.000 +2445094.5 1.73423 3.85410 -20273411.6 0.00431 0.02773 263.0 0.000 0.000 0.000 +2445095.5 1.75175 3.83435 -20276137.4 0.00431 0.02773 263.0 0.000 0.000 0.000 +2445096.5 1.76886 3.81408 -20278750.6 0.00431 0.02773 263.0 0.000 0.000 0.000 +2445097.5 1.78554 3.79330 -20281209.1 0.03207 0.03546 477.2 0.000 0.000 0.000 +2445098.5 1.80180 3.77206 -20283491.6 0.03207 0.03546 477.2 0.000 0.000 0.000 +2445099.5 1.81761 3.75040 -20285597.8 0.03659 0.02548 437.1 0.000 0.000 0.000 +2445100.5 1.83299 3.72837 -20287548.4 0.03659 0.02548 620.5 0.000 0.000 0.000 +2445101.5 1.84795 3.70601 -20289382.7 0.03659 0.02548 620.5 0.000 0.000 0.000 +2445102.5 1.86258 3.68332 -20291154.7 0.03044 0.02281 538.6 0.000 0.000 0.000 +2445103.5 1.87694 3.66030 -20292923.4 0.01907 0.01359 396.2 0.000 0.000 0.000 +2445104.5 1.89108 3.63695 -20294746.8 0.01907 0.01359 396.2 0.000 0.000 0.000 +2445105.5 1.90503 3.61325 -20296677.5 0.01007 0.01618 473.5 0.000 0.000 0.000 +2445106.5 1.91884 3.58921 -20298758.3 0.01637 0.02112 323.1 0.000 0.000 0.000 +2445107.5 1.93254 3.56483 -20301015.9 0.01637 0.02112 323.1 0.000 0.000 0.000 +2445108.5 1.94621 3.54014 -20303450.4 0.01510 0.02059 370.4 0.000 0.000 0.000 +2445109.5 1.95989 3.51513 -20306024.4 0.01510 0.02059 370.4 0.000 0.000 0.000 +2445110.5 1.97359 3.48986 -20308661.4 0.01510 0.02059 409.2 0.000 0.000 0.000 +2445111.5 1.98734 3.46435 -20311262.1 0.01510 0.02059 390.5 0.000 0.000 0.000 +2445112.5 2.00115 3.43865 -20313737.2 0.00681 0.01076 371.2 0.000 0.000 0.000 +2445113.5 2.01502 3.41280 -20316040.2 0.00681 0.01076 371.2 0.000 0.000 0.000 +2445114.5 2.02896 3.38680 -20318184.4 0.00845 0.00374 387.1 0.000 0.000 0.000 +2445115.5 2.04296 3.36069 -20320236.2 0.01049 0.00299 367.9 0.000 0.000 0.000 +2445116.5 2.05703 3.33450 -20322286.1 0.01049 0.00299 301.5 0.000 0.000 0.000 +2445117.5 2.07115 3.30823 -20324413.3 0.01679 0.00328 265.6 0.000 0.000 0.000 +2445118.5 2.08532 3.28191 -20326660.7 0.01968 0.00302 223.1 0.000 0.000 0.000 +2445119.5 2.09955 3.25556 -20329027.4 0.01968 0.00302 223.1 0.000 0.000 0.000 +2445120.5 2.11384 3.22920 -20331477.5 0.01968 0.00302 223.1 0.000 0.000 0.000 +2445121.5 2.12819 3.20284 -20333955.2 0.02515 0.00366 241.6 0.000 0.000 0.000 +2445122.5 2.14259 3.17649 -20336400.9 0.02515 0.00366 241.6 0.000 0.000 0.000 +2445123.5 2.15699 3.15017 -20338760.3 0.02974 0.02232 359.4 0.000 0.000 0.000 +2445124.5 2.17135 3.12390 -20340991.8 0.02974 0.02232 359.4 0.000 0.000 0.000 +2445125.5 2.18562 3.09768 -20343070.1 0.02974 0.02232 359.4 0.000 0.000 0.000 +2445126.5 2.19970 3.07154 -20344988.1 0.02974 0.02232 359.4 0.000 0.000 0.000 +2445127.5 2.21350 3.04547 -20346758.1 0.02377 0.02653 330.8 0.000 0.000 0.000 +2445128.5 2.22688 3.01946 -20348411.0 0.02377 0.02653 330.8 0.000 0.000 0.000 +2445129.5 2.23968 2.99349 -20349992.4 0.00704 0.01543 175.3 0.000 0.000 0.000 +2445130.5 2.25176 2.96754 -20351556.0 0.00704 0.01543 175.3 0.000 0.000 0.000 +2445131.5 2.26297 2.94154 -20353155.8 0.00704 0.01543 175.3 0.000 0.000 0.000 +2445132.5 2.27316 2.91547 -20354839.2 0.00704 0.01543 175.3 0.000 0.000 0.000 +2445133.5 2.28219 2.88927 -20356641.8 0.00898 0.00653 43.4 0.000 0.000 0.000 +2445134.5 2.28993 2.86287 -20358585.1 0.01650 0.00446 93.4 0.000 0.000 0.000 +2445135.5 2.29625 2.83622 -20360672.1 0.01409 0.00369 94.6 0.000 0.000 0.000 +2445136.5 2.30103 2.80926 -20362880.7 0.00999 0.00910 80.6 0.000 0.000 0.000 +2445137.5 2.30412 2.78191 -20365157.0 0.01374 0.00807 79.9 0.000 0.000 0.000 +2445138.5 2.30551 2.75412 -20367421.8 0.01074 0.00751 68.8 0.000 0.000 0.000 +2445139.5 2.30568 2.72573 -20369596.7 0.01067 0.00766 69.9 0.000 0.000 0.000 +2445140.5 2.30521 2.69666 -20371621.9 0.01067 0.00766 69.9 0.000 0.000 0.000 +2445141.5 2.30449 2.66713 -20373470.2 0.00930 0.00796 64.6 0.000 0.000 0.000 +2445142.5 2.30343 2.63740 -20375166.8 0.00956 0.00753 63.6 0.000 0.000 0.000 +2445143.5 2.30199 2.60757 -20376788.5 0.01111 0.00596 59.4 0.000 0.000 0.000 +2445144.5 2.30018 2.57770 -20378429.1 0.00615 0.00830 54.1 0.000 0.000 0.000 +2445145.5 2.29802 2.54783 -20380155.9 0.00436 0.00890 68.6 0.000 0.000 0.000 +2445146.5 2.29555 2.51800 -20381987.2 0.01290 0.02389 102.5 0.000 0.000 0.000 +2445147.5 2.29279 2.48825 -20383894.8 0.01290 0.02389 102.5 0.000 0.000 0.000 +2445148.5 2.28978 2.45860 -20385822.2 0.01214 0.02294 122.2 0.000 0.000 0.000 +2445149.5 2.28651 2.42904 -20387706.7 0.01214 0.02294 122.2 0.000 0.000 0.000 +2445150.5 2.28298 2.39958 -20389494.5 0.00158 0.00278 130.0 0.000 0.000 0.000 +2445151.5 2.27919 2.37019 -20391148.5 0.00158 0.00278 130.0 0.000 0.000 0.000 +2445152.5 2.27516 2.34088 -20392648.5 0.00158 0.00278 130.0 0.000 0.000 0.000 +2445153.5 2.27087 2.31165 -20393991.5 0.00158 0.00278 130.0 0.000 0.000 0.000 +2445154.5 2.26633 2.28249 -20395191.0 0.01194 0.01166 108.1 0.000 0.000 0.000 +2445155.5 2.26154 2.25340 -20396276.4 0.01194 0.01166 108.1 0.000 0.000 0.000 +2445156.5 2.25652 2.22437 -20397291.1 0.01673 0.01641 116.5 0.000 0.000 0.000 +2445157.5 2.25126 2.19541 -20398288.1 0.01580 0.01335 107.7 0.000 0.000 0.000 +2445158.5 2.24574 2.16652 -20399323.1 0.01580 0.01335 107.7 0.000 0.000 0.000 +2445159.5 2.23996 2.13771 -20400446.5 0.01580 0.01335 107.7 0.000 0.000 0.000 +2445160.5 2.23386 2.10902 -20401695.7 0.01116 0.00785 110.5 0.000 0.000 0.000 +2445161.5 2.22742 2.08046 -20403090.8 0.01116 0.00785 110.5 0.000 0.000 0.000 +2445162.5 2.22056 2.05206 -20404632.4 0.01116 0.00785 110.5 0.000 0.000 0.000 +2445163.5 2.21324 2.02385 -20406300.8 0.02457 0.01012 105.5 0.000 0.000 0.000 +2445164.5 2.20541 1.99587 -20408053.9 0.02457 0.01012 105.5 0.000 0.000 0.000 +2445165.5 2.19702 1.96812 -20409828.8 0.02178 0.00868 266.0 0.000 0.000 0.000 +2445166.5 2.18804 1.94064 -20411549.6 0.02640 0.00974 465.1 0.000 0.000 0.000 +2445167.5 2.17848 1.91342 -20413147.0 0.02640 0.00974 465.1 0.000 0.000 0.000 +2445168.5 2.16835 1.88648 -20414584.0 0.02640 0.00974 465.1 0.000 0.000 0.000 +2445169.5 2.15770 1.85981 -20415876.1 0.01276 0.00411 468.2 0.000 0.000 0.000 +2445170.5 2.14654 1.83341 -20417091.1 0.01276 0.00411 468.2 0.000 0.000 0.000 +2445171.5 2.13495 1.80729 -20418325.4 0.00775 0.00252 406.8 0.000 0.000 0.000 +2445172.5 2.12297 1.78145 -20419665.1 0.00775 0.00252 188.1 0.000 0.000 0.000 +2445173.5 2.11062 1.75587 -20421152.7 0.00775 0.00252 188.1 0.000 0.000 0.000 +2445174.5 2.09795 1.73055 -20422774.8 0.00775 0.00252 188.1 0.000 0.000 0.000 +2445175.5 2.08498 1.70549 -20424473.2 0.00244 0.00799 194.4 0.000 0.000 0.000 +2445176.5 2.07173 1.68068 -20426170.1 0.00244 0.00799 194.4 0.000 0.000 0.000 +2445177.5 2.05823 1.65611 -20427793.2 0.01130 0.00804 281.5 0.000 0.000 0.000 +2445178.5 2.04450 1.63178 -20429291.1 0.01130 0.00804 281.5 0.000 0.000 0.000 +2445179.5 2.03057 1.60768 -20430636.8 0.01130 0.00804 281.5 0.000 0.000 0.000 +2445180.5 2.01644 1.58377 -20431825.2 0.01130 0.00804 281.5 0.000 0.000 0.000 +2445181.5 2.00214 1.56005 -20432870.1 0.01716 0.01069 396.9 0.000 0.000 0.000 +2445182.5 1.98766 1.53648 -20433801.2 0.01716 0.01069 396.9 0.000 0.000 0.000 +2445183.5 1.97299 1.51306 -20434661.3 0.01830 0.01507 418.7 0.000 0.000 0.000 +2445184.5 1.95812 1.48975 -20435502.4 0.01531 0.01119 316.5 0.000 0.000 0.000 +2445185.5 1.94303 1.46656 -20436380.6 0.01531 0.01119 316.5 0.000 0.000 0.000 +2445186.5 1.92769 1.44346 -20437351.3 0.01531 0.01119 316.5 0.000 0.000 0.000 +2445187.5 1.91204 1.42048 -20438459.6 0.01198 0.00404 233.1 0.000 0.000 0.000 +2445188.5 1.89603 1.39760 -20439733.1 0.01198 0.00404 233.1 0.000 0.000 0.000 +2445189.5 1.87958 1.37484 -20441176.8 0.01332 0.00538 328.3 0.000 0.000 0.000 +2445190.5 1.86264 1.35221 -20442770.8 0.01411 0.00563 386.2 0.000 0.000 0.000 +2445191.5 1.84515 1.32971 -20444473.0 0.01411 0.00563 386.2 0.000 0.000 0.000 +2445192.5 1.82707 1.30736 -20446225.4 0.01985 0.00497 850.2 0.000 0.000 0.000 +2445193.5 1.80836 1.28516 -20447963.3 0.02268 0.00570 1011.5 0.000 0.000 0.000 +2445194.5 1.78901 1.26313 -20449627.3 0.02268 0.00570 1002.9 0.000 0.000 0.000 +2445195.5 1.76901 1.24130 -20451181.5 0.01987 0.00267 977.0 0.000 0.000 0.000 +2445196.5 1.74837 1.21970 -20452629.3 0.01987 0.00267 977.0 0.000 0.000 0.000 +2445197.5 1.72714 1.19834 -20454020.9 0.01987 0.00267 977.0 0.000 0.000 0.000 +2445198.5 1.70535 1.17725 -20455442.1 0.00566 0.00723 353.1 0.000 0.000 0.000 +2445199.5 1.68306 1.15646 -20456986.9 0.00566 0.00723 353.1 0.000 0.000 0.000 +2445200.5 1.66028 1.13598 -20458721.3 0.00566 0.00723 293.7 0.000 0.000 0.000 +2445201.5 1.63706 1.11586 -20460659.2 0.00762 0.01006 271.0 0.000 0.000 0.000 +2445202.5 1.61344 1.09610 -20462759.3 0.01474 0.00929 191.7 0.000 0.000 0.000 +2445203.5 1.58947 1.07674 -20464942.3 0.01474 0.00929 191.7 0.000 0.000 0.000 +2445204.5 1.56520 1.05777 -20467120.2 0.01940 0.00846 3.9 0.000 0.000 0.000 +2445205.5 1.54066 1.03922 -20469220.7 0.01642 0.00741 170.8 0.000 0.000 0.000 +2445206.5 1.51590 1.02109 -20471199.8 0.01642 0.00741 170.8 0.000 0.000 0.000 +2445207.5 1.49091 1.00339 -20473042.5 0.01458 0.00762 154.5 0.000 0.000 0.000 +2445208.5 1.46572 0.98610 -20474758.0 0.01144 0.00715 189.2 0.000 0.000 0.000 +2445209.5 1.44035 0.96925 -20476374.8 0.01144 0.00715 189.2 0.000 0.000 0.000 +2445210.5 1.41483 0.95281 -20477935.6 0.01144 0.00715 189.2 0.000 0.000 0.000 +2445211.5 1.38921 0.93678 -20479492.3 0.01461 0.00676 200.5 0.000 0.000 0.000 +2445212.5 1.36350 0.92118 -20481100.9 0.01461 0.00676 200.5 0.000 0.000 0.000 +2445213.5 1.33772 0.90600 -20482816.0 0.02642 0.00457 458.7 0.000 0.000 0.000 +2445214.5 1.31188 0.89125 -20484684.6 0.02642 0.00457 458.7 0.000 0.000 0.000 +2445215.5 1.28600 0.87694 -20486738.7 0.02642 0.00457 458.7 0.000 0.000 0.000 +2445216.5 1.26004 0.86305 -20488987.6 0.02642 0.00457 458.7 0.000 0.000 0.000 +2445217.5 1.23398 0.84959 -20491411.4 0.04241 0.00935 606.8 0.000 0.000 0.000 +2445218.5 1.20774 0.83655 -20493960.0 0.04241 0.00935 606.8 0.000 0.000 0.000 +2445219.5 1.18125 0.82393 -20496561.5 0.05028 0.01266 618.6 0.000 0.000 0.000 +2445220.5 1.15442 0.81171 -20499137.3 0.06145 0.01327 534.7 0.000 0.000 0.000 +2445221.5 1.12715 0.79989 -20501618.6 0.06145 0.01327 534.7 0.000 0.000 0.000 +2445222.5 1.09926 0.78850 -20503961.9 0.06145 0.01327 534.7 0.000 0.000 0.000 +2445223.5 1.07055 0.77753 -20506161.8 0.08720 0.00983 495.2 0.000 0.000 0.000 +2445224.5 1.04077 0.76701 -20508252.6 0.08720 0.00983 495.2 0.000 0.000 0.000 +2445225.5 1.00957 0.75698 -20510302.3 0.08720 0.00983 495.2 0.000 0.000 0.000 +2445226.5 0.97669 0.74745 -20512393.3 0.08554 0.00519 578.7 0.000 0.000 0.000 +2445227.5 0.94187 0.73846 -20514597.4 0.08554 0.00519 578.7 0.000 0.000 0.000 +2445228.5 0.90535 0.73002 -20516959.1 0.08190 0.00848 609.4 0.000 0.000 0.000 +2445229.5 0.86751 0.72218 -20519473.1 0.08106 0.01035 590.9 0.000 0.000 0.000 +2445230.5 0.82864 0.71495 -20522084.3 0.05251 0.01035 1042.4 0.000 0.000 0.000 +2445231.5 0.78902 0.70835 -20524709.7 0.05251 0.01035 1042.4 0.000 0.000 0.000 +2445232.5 0.74889 0.70238 -20527267.2 0.04731 0.01050 664.7 0.000 0.000 0.000 +2445233.5 0.70842 0.69706 -20529694.2 0.04731 0.01050 664.7 0.000 0.000 0.000 +2445234.5 0.66781 0.69239 -20531959.4 0.03617 0.00592 251.2 0.000 0.000 0.000 +2445235.5 0.62720 0.68835 -20534062.0 0.03617 0.00592 251.2 0.000 0.000 0.000 +2445236.5 0.58672 0.68496 -20536025.3 0.03617 0.00592 240.1 0.000 0.000 0.000 +2445237.5 0.54646 0.68219 -20537891.0 0.03617 0.00592 240.1 0.000 0.000 0.000 +2445238.5 0.50647 0.68004 -20539711.9 0.02748 0.00548 221.3 0.000 0.000 0.000 +2445239.5 0.46681 0.67849 -20541545.2 0.02748 0.00548 221.3 0.000 0.000 0.000 +2445240.5 0.42751 0.67754 -20543447.6 0.02986 0.00701 178.9 0.000 0.000 0.000 +2445241.5 0.38860 0.67715 -20545468.9 0.02146 0.00721 149.3 0.000 0.000 0.000 +2445242.5 0.35011 0.67734 -20547647.4 0.02146 0.00721 108.8 0.000 0.000 0.000 +2445243.5 0.31202 0.67808 -20550003.6 0.02146 0.00721 212.6 0.000 0.000 0.000 +2445244.5 0.27430 0.67937 -20552532.4 0.00673 0.00997 190.1 0.000 0.000 0.000 +2445245.5 0.23696 0.68121 -20555196.6 0.00673 0.00997 190.1 0.000 0.000 0.000 +2445246.5 0.19997 0.68358 -20557927.4 0.00673 0.00997 190.1 0.000 0.000 0.000 +2445247.5 0.16333 0.68646 -20560638.1 0.00606 0.00859 187.5 0.000 0.000 0.000 +2445248.5 0.12704 0.68984 -20563245.0 0.00606 0.00859 187.5 0.000 0.000 0.000 +2445249.5 0.09109 0.69368 -20565692.1 0.01205 0.00726 82.2 0.000 0.000 0.000 +2445250.5 0.05551 0.69796 -20567967.8 0.01369 0.00268 9.0 0.000 0.000 0.000 +2445251.5 0.02030 0.70265 -20570108.0 0.01369 0.00268 9.0 0.000 0.000 0.000 +2445252.5 -0.01453 0.70771 -20572185.1 0.01369 0.00268 9.0 0.000 0.000 0.000 +2445253.5 -0.04898 0.71314 -20574287.3 0.01869 0.00349 101.7 0.000 0.000 0.000 +2445254.5 -0.08305 0.71889 -20576494.5 0.01869 0.00349 101.7 0.000 0.000 0.000 +2445255.5 -0.11678 0.72494 -20578855.7 0.02787 0.00965 143.1 0.000 0.000 0.000 +2445256.5 -0.15019 0.73128 -20581376.0 0.02787 0.00965 143.1 0.000 0.000 0.000 +2445257.5 -0.18332 0.73789 -20584014.8 0.02787 0.00965 143.1 0.000 0.000 0.000 +2445258.5 -0.21623 0.74473 -20586697.8 0.00799 0.00314 50.4 0.000 0.000 0.000 +2445259.5 -0.24898 0.75180 -20589338.7 0.00893 0.00788 45.4 0.000 0.000 0.000 +2445260.5 -0.28169 0.75910 -20591860.8 0.00893 0.00788 45.4 0.000 0.000 0.000 +2445261.5 -0.31449 0.76662 -20594212.3 0.00657 0.00749 39.0 0.000 0.000 0.000 +2445262.5 -0.34746 0.77436 -20596373.3 0.00697 0.00798 38.8 0.000 0.000 0.000 +2445263.5 -0.38058 0.78236 -20598355.9 0.00697 0.00798 38.8 0.000 0.000 0.000 +2445264.5 -0.41380 0.79065 -20600196.6 0.00697 0.00798 38.8 0.000 0.000 0.000 +2445265.5 -0.44705 0.79927 -20601948.1 0.01303 0.02444 136.4 0.000 0.000 0.000 +2445266.5 -0.48031 0.80829 -20603672.5 0.01303 0.02444 136.4 0.000 0.000 0.000 +2445267.5 -0.51356 0.81775 -20605432.7 0.01303 0.02444 136.4 0.000 0.000 0.000 +2445268.5 -0.54675 0.82771 -20607285.3 0.01285 0.02297 192.7 0.000 0.000 0.000 +2445269.5 -0.57986 0.83820 -20609275.7 0.01285 0.02297 192.7 0.000 0.000 0.000 +2445270.5 -0.61284 0.84924 -20611435.0 0.01192 0.02031 167.6 0.000 0.000 0.000 +2445271.5 -0.64563 0.86084 -20613775.4 0.01231 0.01103 154.8 0.000 0.000 0.000 +2445272.5 -0.67822 0.87302 -20616282.8 0.01231 0.01103 154.8 0.000 0.000 0.000 +2445273.5 -0.71059 0.88577 -20618910.1 0.01231 0.01103 154.8 0.000 0.000 0.000 +2445274.5 -0.74272 0.89910 -20621579.2 0.00701 0.00960 247.2 0.000 0.000 0.000 +2445275.5 -0.77460 0.91300 -20624198.0 0.00701 0.00960 247.2 0.000 0.000 0.000 +2445276.5 -0.80625 0.92745 -20626688.7 0.00628 0.00722 380.4 0.000 0.000 0.000 +2445277.5 -0.83765 0.94245 -20629015.6 0.00628 0.00722 287.2 0.000 0.000 0.000 +2445278.5 -0.86881 0.95799 -20631198.9 0.00628 0.00722 287.2 0.000 0.000 0.000 +2445279.5 -0.89972 0.97404 -20633307.5 0.00917 0.00589 335.0 0.000 0.000 0.000 +2445280.5 -0.93037 0.99061 -20635434.7 0.01118 0.00717 335.1 0.000 0.000 0.000 +2445281.5 -0.96074 1.00769 -20637667.1 0.01118 0.00717 300.3 0.000 0.000 0.000 +2445282.5 -0.99081 1.02528 -20640061.3 0.01318 0.00016 256.4 0.000 0.000 0.000 +2445283.5 -1.02057 1.04338 -20642630.7 0.01950 0.01924 276.4 0.000 0.000 0.000 +2445284.5 -1.05001 1.06199 -20645345.4 0.01950 0.01924 276.4 0.000 0.000 0.000 +2445285.5 -1.07914 1.08112 -20648144.0 0.02422 0.02721 163.1 0.000 0.000 0.000 +2445286.5 -1.10798 1.10075 -20650950.2 0.02422 0.02721 163.1 0.000 0.000 0.000 +2445287.5 -1.13655 1.12086 -20653690.0 0.02190 0.02052 177.4 0.000 0.000 0.000 +2445288.5 -1.16491 1.14142 -20656306.3 0.02190 0.02052 177.4 0.000 0.000 0.000 +2445289.5 -1.19311 1.16238 -20658767.4 0.02593 0.00879 183.4 0.000 0.000 0.000 +2445290.5 -1.22121 1.18372 -20661069.3 0.02593 0.00879 183.4 0.000 0.000 0.000 +2445291.5 -1.24921 1.20541 -20663232.1 0.02223 0.02259 233.6 0.000 0.000 0.000 +2445292.5 -1.27713 1.22743 -20665295.7 0.02223 0.02259 233.6 0.000 0.000 0.000 +2445293.5 -1.30494 1.24976 -20667313.6 0.02356 0.02673 271.6 0.000 0.000 0.000 +2445294.5 -1.33257 1.27239 -20669344.1 0.02356 0.02673 271.6 0.000 0.000 0.000 +2445295.5 -1.36000 1.29532 -20671442.8 0.02729 0.02623 283.5 0.000 0.000 0.000 +2445296.5 -1.38714 1.31857 -20673655.5 0.02729 0.02623 230.6 0.000 0.000 0.000 +2445297.5 -1.41394 1.34220 -20676014.2 0.03676 0.00025 152.4 0.000 0.000 0.000 +2445298.5 -1.44032 1.36622 -20678535.4 0.03676 0.00025 152.4 0.000 0.000 0.000 +2445299.5 -1.46627 1.39068 -20681216.8 0.03676 0.00025 165.0 0.000 0.000 0.000 +2445300.5 -1.49178 1.41561 -20684031.5 0.02929 0.01571 156.4 0.000 0.000 0.000 +2445301.5 -1.51686 1.44105 -20686922.4 0.01908 0.02222 173.9 0.000 0.000 0.000 +2445302.5 -1.54151 1.46703 -20689806.4 0.01908 0.02222 181.3 0.000 0.000 0.000 +2445303.5 -1.56573 1.49359 -20692593.7 0.01536 0.01790 196.0 0.000 0.000 0.000 +2445304.5 -1.58950 1.52075 -20695218.9 0.01536 0.01790 196.0 0.000 0.000 0.000 +2445305.5 -1.61280 1.54852 -20697669.2 0.01536 0.01790 247.2 0.000 0.000 0.000 +2445306.5 -1.63559 1.57690 -20699992.9 0.01039 0.01214 273.2 0.000 0.000 0.000 +2445307.5 -1.65784 1.60590 -20702281.5 0.01039 0.01214 279.9 0.000 0.000 0.000 +2445308.5 -1.67952 1.63551 -20704634.9 0.00889 0.00878 242.6 0.000 0.000 0.000 +2445309.5 -1.70064 1.66572 -20707125.4 0.00513 0.01080 231.6 0.000 0.000 0.000 +2445310.5 -1.72117 1.69651 -20709775.0 0.00513 0.01080 231.6 0.000 0.000 0.000 +2445311.5 -1.74110 1.72789 -20712557.4 0.00513 0.01080 141.3 0.000 0.000 0.000 +2445312.5 -1.76043 1.75984 -20715412.4 0.01548 0.01061 135.5 0.000 0.000 0.000 +2445313.5 -1.77915 1.79233 -20718267.3 0.01548 0.01061 142.5 0.000 0.000 0.000 +2445314.5 -1.79727 1.82535 -20721054.3 0.01828 0.01286 158.3 0.000 0.000 0.000 +2445315.5 -1.81477 1.85885 -20723721.7 0.02581 0.01021 143.3 0.000 0.000 0.000 +2445316.5 -1.83165 1.89279 -20726240.0 0.00447 0.00527 52.1 0.000 0.000 0.000 +2445317.5 -1.84785 1.92715 -20728602.7 0.00323 0.00496 39.5 0.000 0.000 0.000 +2445318.5 -1.86333 1.96186 -20730825.7 0.00171 0.00497 37.0 0.000 0.000 0.000 +2445319.5 -1.87803 1.99689 -20732943.6 0.00150 0.00514 34.0 0.000 0.000 0.000 +2445320.5 -1.89190 2.03217 -20735004.7 0.00150 0.00514 33.8 0.000 0.000 0.000 +2445321.5 -1.90495 2.06760 -20737062.3 0.00150 0.00514 33.8 0.000 0.000 0.000 +2445322.5 -1.91717 2.10303 -20739169.3 0.00235 0.00528 33.4 0.000 0.000 0.000 +2445323.5 -1.92866 2.13836 -20741371.6 0.00275 0.00542 32.6 0.000 0.000 0.000 +2445324.5 -1.93950 2.17359 -20743703.3 0.00387 0.00551 40.0 0.000 0.000 0.000 +2445325.5 -1.94979 2.20869 -20746182.2 0.00423 0.00574 47.1 0.000 0.000 0.000 +2445326.5 -1.95958 2.24367 -20748809.2 0.01580 0.00675 31.7 0.000 0.000 0.000 +2445327.5 -1.96893 2.27854 -20751567.1 0.01580 0.00675 31.7 0.000 0.000 0.000 +2445328.5 -1.97789 2.31330 -20754416.8 0.01166 0.00526 35.7 0.000 0.000 0.000 +2445329.5 -1.98648 2.34796 -20757295.8 0.01166 0.00526 35.7 0.000 0.000 0.000 +2445330.5 -1.99474 2.38253 -20760125.4 0.02915 0.00515 171.7 0.000 0.000 0.000 +2445331.5 -2.00270 2.41702 -20762832.3 0.02915 0.00515 171.7 0.000 0.000 0.000 +2445332.5 -2.01037 2.45145 -20765377.8 0.02915 0.00515 171.7 0.000 0.000 0.000 +2445333.5 -2.01781 2.48582 -20767780.1 0.02915 0.00515 171.7 0.000 0.000 0.000 +2445334.5 -2.02501 2.52015 -20770113.9 0.02915 0.00515 107.2 0.000 0.000 0.000 +2445335.5 -2.03196 2.55443 -20772483.8 0.02915 0.00515 107.2 0.000 0.000 0.000 +2445336.5 -2.03865 2.58868 -20774982.6 0.02158 0.01033 192.2 0.000 0.000 0.000 +2445337.5 -2.04503 2.62290 -20777655.3 0.02158 0.01033 192.2 0.000 0.000 0.000 +2445338.5 -2.05109 2.65709 -20780486.8 0.02158 0.01033 192.2 0.000 0.000 0.000 +2445339.5 -2.05679 2.69126 -20783413.6 0.01526 0.03380 237.0 0.000 0.000 0.000 +2445340.5 -2.06211 2.72541 -20786351.9 0.01526 0.03380 254.7 0.000 0.000 0.000 +2445341.5 -2.06698 2.75954 -20789224.4 0.01526 0.03380 254.7 0.000 0.000 0.000 +2445342.5 -2.07134 2.79362 -20791976.5 0.03310 0.04667 226.7 0.000 0.000 0.000 +2445343.5 -2.07512 2.82769 -20794581.8 0.00663 0.03542 298.2 0.000 0.000 0.000 +2445344.5 -2.07824 2.86178 -20797040.2 0.00663 0.03542 298.2 0.000 0.000 0.000 +2445345.5 -2.08065 2.89595 -20799372.5 0.01547 0.01815 333.3 0.000 0.000 0.000 +2445346.5 -2.08228 2.93025 -20801615.9 0.01547 0.01815 418.6 0.000 0.000 0.000 +2445347.5 -2.08306 2.96472 -20803819.1 0.01547 0.01815 418.6 0.000 0.000 0.000 +2445348.5 -2.08295 2.99939 -20806038.8 0.01547 0.01815 418.6 0.000 0.000 0.000 +2445349.5 -2.08192 3.03427 -20808333.2 0.02241 0.01940 621.9 0.000 0.000 0.000 +2445350.5 -2.07994 3.06938 -20810753.9 0.02241 0.01940 621.9 0.000 0.000 0.000 +2445351.5 -2.07702 3.10471 -20813339.8 0.02337 0.01588 660.8 0.000 0.000 0.000 +2445352.5 -2.07312 3.14027 -20816110.9 0.02337 0.01588 660.8 0.000 0.000 0.000 +2445353.5 -2.06826 3.17606 -20819066.7 0.02337 0.01588 660.8 0.000 0.000 0.000 +2445354.5 -2.06246 3.21205 -20822186.6 0.02068 0.01369 548.6 0.000 0.000 0.000 +2445355.5 -2.05577 3.24824 -20825432.1 0.01829 0.00826 376.1 0.000 0.000 0.000 +2445356.5 -2.04826 3.28461 -20828748.2 0.01829 0.00826 428.9 0.000 0.000 0.000 +2445357.5 -2.04001 3.32114 -20832067.2 0.01379 0.00756 273.6 0.000 0.000 0.000 +2445358.5 -2.03109 3.35783 -20835319.2 0.01079 0.00535 265.4 0.000 0.000 0.000 +2445359.5 -2.02163 3.39469 -20838451.8 0.01079 0.00535 265.4 0.000 0.000 0.000 +2445360.5 -2.01173 3.43170 -20841455.0 0.04400 0.03693 261.8 0.000 0.000 0.000 +2445361.5 -2.00149 3.46887 -20844374.7 0.04400 0.03693 238.9 0.000 0.000 0.000 +2445362.5 -1.99101 3.50620 -20847301.5 0.04400 0.03693 157.3 0.000 0.000 0.000 +2445363.5 -1.98042 3.54368 -20850337.6 0.04400 0.03693 185.7 0.000 0.000 0.000 +2445364.5 -1.96978 3.58129 -20853553.6 0.04394 0.03694 157.0 0.000 0.000 0.000 +2445365.5 -1.95909 3.61895 -20856958.7 0.04394 0.03694 157.0 0.000 0.000 0.000 +2445366.5 -1.94834 3.65660 -20860497.1 0.00566 0.00131 161.8 0.000 0.000 0.000 +2445367.5 -1.93754 3.69417 -20864071.0 0.00890 0.00155 111.4 0.000 0.000 0.000 +2445368.5 -1.92667 3.73159 -20867575.7 0.00890 0.00155 191.8 0.000 0.000 0.000 +2445369.5 -1.91571 3.76878 -20870928.4 0.00890 0.00155 197.9 0.000 0.000 0.000 +2445370.5 -1.90467 3.80568 -20874082.3 0.00629 0.02277 156.6 0.000 0.000 0.000 +2445371.5 -1.89350 3.84221 -20877025.0 0.00629 0.02277 156.6 0.000 0.000 0.000 +2445372.5 -1.88217 3.87830 -20879771.5 0.00795 0.02104 179.2 0.000 0.000 0.000 +2445373.5 -1.87065 3.91388 -20882356.1 0.00765 0.02278 181.5 0.000 0.000 0.000 +2445374.5 -1.85891 3.94890 -20884826.1 0.00765 0.02278 170.4 0.000 0.000 0.000 +2445375.5 -1.84696 3.98342 -20887238.2 0.01330 0.03276 158.2 0.000 0.000 0.000 +2445376.5 -1.83481 4.01753 -20889652.4 0.01263 0.03426 121.7 0.000 0.000 0.000 +2445377.5 -1.82252 4.05131 -20892126.3 0.03306 0.04628 268.9 0.000 0.000 0.000 +2445378.5 -1.81012 4.08486 -20894706.3 0.04242 0.06541 76.2 0.000 0.000 0.000 +2445379.5 -1.79763 4.11823 -20897421.5 0.03088 0.04643 68.0 0.000 0.000 0.000 +2445380.5 -1.78501 4.15143 -20900279.5 0.03088 0.04643 68.0 0.000 0.000 0.000 +2445381.5 -1.77224 4.18446 -20903264.4 0.00821 0.00936 212.0 0.000 0.000 0.000 +2445382.5 -1.75927 4.21732 -20906340.8 0.00821 0.00936 212.0 0.000 0.000 0.000 +2445383.5 -1.74608 4.25001 -20909458.7 0.00821 0.00936 212.0 0.000 0.000 0.000 +2445384.5 -1.73265 4.28253 -20912562.0 0.00821 0.00936 224.9 0.000 0.000 0.000 +2445385.5 -1.71896 4.31486 -20915596.2 0.00524 0.00847 546.0 0.000 0.000 0.000 +2445386.5 -1.70501 4.34703 -20918521.3 0.00524 0.00847 546.0 0.000 0.000 0.000 +2445387.5 -1.69079 4.37903 -20921328.3 0.00524 0.00092 605.0 0.000 0.000 0.000 +2445388.5 -1.67629 4.41088 -20924052.2 0.00383 0.01618 550.3 0.000 0.000 0.000 +2445389.5 -1.66150 4.44259 -20926771.1 0.00383 0.01618 550.3 0.000 0.000 0.000 +2445390.5 -1.64643 4.47416 -20929584.5 0.00383 0.01618 550.3 0.000 0.000 0.000 +2445391.5 -1.63108 4.50561 -20932582.3 0.00542 0.00761 95.0 0.000 0.000 0.000 +2445392.5 -1.61546 4.53691 -20935806.7 0.00542 0.00761 95.0 0.000 0.000 0.000 +2445393.5 -1.59956 4.56805 -20939231.4 0.00542 0.00761 95.0 0.000 0.000 0.000 +2445394.5 -1.58339 4.59900 -20942769.0 0.00625 0.00572 90.5 0.000 0.000 0.000 +2445395.5 -1.56694 4.62974 -20946301.7 0.00625 0.00572 90.5 0.000 0.000 0.000 +2445396.5 -1.55010 4.66023 -20949720.4 0.01403 0.01870 113.9 0.000 0.000 0.000 +2445397.5 -1.53275 4.69040 -20952950.5 0.01410 0.01955 116.2 0.000 0.000 0.000 +2445398.5 -1.51478 4.72020 -20955962.1 0.03480 0.04355 242.6 0.000 0.000 0.000 +2445399.5 -1.49603 4.74956 -20958763.9 0.03480 0.04355 242.6 0.000 0.000 0.000 +2445400.5 -1.47644 4.77846 -20961392.6 0.03431 0.04401 187.6 0.000 0.000 0.000 +2445401.5 -1.45596 4.80690 -20963901.2 0.03431 0.04401 187.6 0.000 0.000 0.000 +2445402.5 -1.43454 4.83489 -20966350.7 0.02039 0.01492 217.0 0.000 0.000 0.000 +2445403.5 -1.41214 4.86245 -20968803.6 0.02039 0.01492 217.0 0.000 0.000 0.000 +2445404.5 -1.38872 4.88959 -20971318.9 0.02039 0.01492 217.0 0.000 0.000 0.000 +2445405.5 -1.36425 4.91634 -20973945.6 0.01122 0.00702 72.6 0.000 0.000 0.000 +2445406.5 -1.33868 4.94273 -20976717.5 0.01107 0.00579 81.9 0.000 0.000 0.000 +2445407.5 -1.31193 4.96878 -20979647.0 0.01107 0.00579 81.9 0.000 0.000 0.000 +2445408.5 -1.28393 4.99452 -20982721.5 0.00742 0.00606 45.5 0.000 0.000 0.000 +2445409.5 -1.25461 5.01995 -20985903.4 0.00742 0.00606 45.5 0.000 0.000 0.000 +2445410.5 -1.22401 5.04511 -20989134.1 0.00742 0.00606 45.5 0.000 0.000 0.000 +2445411.5 -1.19218 5.07000 -20992344.5 0.00742 0.00606 45.5 0.000 0.000 0.000 +2445412.5 -1.15920 5.09464 -20995469.4 0.00322 0.00960 105.3 0.000 0.000 0.000 +2445413.5 -1.12513 5.11902 -20998462.9 0.00322 0.00960 105.3 0.000 0.000 0.000 +2445414.5 -1.09005 5.14313 -21001310.9 0.00050 0.00777 136.4 0.000 0.000 0.000 +2445415.5 -1.05403 5.16698 -21004039.3 0.00646 0.00796 149.7 0.000 0.000 0.000 +2445416.5 -1.01714 5.19056 -21006714.4 0.00646 0.00796 225.9 0.000 0.000 0.000 +2445417.5 -0.97945 5.21386 -21009431.1 0.00656 0.01889 202.8 0.000 0.000 0.000 +2445418.5 -0.94102 5.23685 -21012287.9 0.00802 0.02247 216.4 0.000 0.000 0.000 +2445419.5 -0.90192 5.25952 -21015355.2 0.00802 0.02247 216.4 0.000 0.000 0.000 +2445420.5 -0.86220 5.28185 -21018647.8 0.00802 0.02247 216.4 0.000 0.000 0.000 +2445421.5 -0.82192 5.30380 -21022115.3 0.01142 0.02405 201.8 0.000 0.000 0.000 +2445422.5 -0.78113 5.32530 -21025658.0 0.01142 0.02405 45.0 0.000 0.000 0.000 +2445423.5 -0.73992 5.34630 -21029158.7 0.01062 0.01033 44.8 0.000 0.000 0.000 +2445424.5 -0.69833 5.36672 -21032517.8 0.01062 0.01033 44.8 0.000 0.000 0.000 +2445425.5 -0.65642 5.38652 -21035674.9 0.01062 0.01033 44.8 0.000 0.000 0.000 +2445426.5 -0.61423 5.40566 -21038614.8 0.01062 0.01033 44.8 0.000 0.000 0.000 +2445427.5 -0.57178 5.42410 -21041359.5 0.00454 0.00976 182.5 0.000 0.000 0.000 +2445428.5 -0.52911 5.44177 -21043954.8 0.00454 0.00976 182.5 0.000 0.000 0.000 +2445429.5 -0.48625 5.45865 -21046459.5 0.00555 0.01380 254.2 0.000 0.000 0.000 +2445430.5 -0.44324 5.47468 -21048936.3 0.00911 0.01490 213.3 0.000 0.000 0.000 +2445431.5 -0.40010 5.48984 -21051444.9 0.00911 0.01490 213.3 0.000 0.000 0.000 +2445432.5 -0.35685 5.50408 -21054036.6 0.00911 0.01490 213.3 0.000 0.000 0.000 +2445433.5 -0.31352 5.51739 -21056748.3 0.01542 0.01346 180.7 0.000 0.000 0.000 +2445434.5 -0.27014 5.52975 -21059600.6 0.01542 0.01346 180.7 0.000 0.000 0.000 +2445435.5 -0.22676 5.54115 -21062592.8 0.01542 0.01346 183.3 0.000 0.000 0.000 +2445436.5 -0.18341 5.55159 -21065699.1 0.01890 0.00766 189.1 0.000 0.000 0.000 +2445437.5 -0.14018 5.56107 -21068867.7 0.01890 0.00766 189.1 0.000 0.000 0.000 +2445438.5 -0.09711 5.56960 -21072027.2 0.01920 0.00941 221.7 0.000 0.000 0.000 +2445439.5 -0.05430 5.57718 -21075100.4 0.01957 0.00886 241.0 0.000 0.000 0.000 +2445440.5 -0.01179 5.58383 -21078024.5 0.01957 0.00886 241.0 0.000 0.000 0.000 +2445441.5 0.03036 5.58955 -21080770.6 0.01691 0.01048 231.3 0.000 0.000 0.000 +2445442.5 0.07214 5.59437 -21083354.9 0.01556 0.01266 226.1 0.000 0.000 0.000 +2445443.5 0.11354 5.59832 -21085835.3 0.01556 0.01266 226.1 0.000 0.000 0.000 +2445444.5 0.15456 5.60141 -21088298.4 0.00805 0.01116 28.3 0.000 0.000 0.000 +2445445.5 0.19519 5.60369 -21090837.0 0.00805 0.01116 512.0 0.000 0.000 0.000 +2445446.5 0.23545 5.60520 -21093524.0 0.00805 0.01116 512.0 0.000 0.000 0.000 +2445447.5 0.27536 5.60599 -21096390.7 0.00608 0.00875 586.0 0.000 0.000 0.000 +2445448.5 0.31493 5.60608 -21099414.1 0.01150 0.00944 515.4 0.000 0.000 0.000 +2445449.5 0.35419 5.60552 -21102521.9 0.01150 0.00944 515.4 0.000 0.000 0.000 +2445450.5 0.39316 5.60435 -21105614.1 0.01509 0.01009 589.8 0.000 0.000 0.000 +2445451.5 0.43188 5.60258 -21108589.2 0.01177 0.00745 133.3 0.000 0.000 0.000 +2445452.5 0.47037 5.60026 -21111371.9 0.01177 0.00745 133.3 0.000 0.000 0.000 +2445453.5 0.50870 5.59740 -21113927.2 0.01177 0.00745 133.3 0.000 0.000 0.000 +2445454.5 0.54691 5.59403 -21116261.5 0.00704 0.00304 141.7 0.000 0.000 0.000 +2445455.5 0.58507 5.59016 -21118413.9 0.00704 0.00304 141.7 0.000 0.000 0.000 +2445456.5 0.62325 5.58582 -21120443.8 0.00649 0.00671 212.3 0.000 0.000 0.000 +2445457.5 0.66152 5.58104 -21122419.6 0.00165 0.00379 53.6 0.000 0.000 0.000 +2445458.5 0.69995 5.57584 -21124409.2 0.00165 0.00379 53.6 0.000 0.000 0.000 +2445459.5 0.73860 5.57025 -21126472.5 0.00700 0.00397 60.8 0.000 0.000 0.000 +2445460.5 0.77754 5.56429 -21128656.2 0.00700 0.00397 60.8 0.000 0.000 0.000 +2445461.5 0.81685 5.55798 -21130990.2 0.00700 0.00397 60.8 0.000 0.000 0.000 +2445462.5 0.85658 5.55130 -21133483.3 0.00705 0.00356 33.6 0.000 0.000 0.000 +2445463.5 0.89674 5.54419 -21136121.9 0.00942 0.00366 66.2 0.000 0.000 0.000 +2445464.5 0.93731 5.53661 -21138868.1 0.03000 0.00610 361.5 0.000 0.000 0.000 +2445465.5 0.97828 5.52852 -21141659.8 0.02066 0.00645 365.6 0.000 0.000 0.000 +2445466.5 1.01962 5.51988 -21144417.4 0.02066 0.00645 365.6 0.000 0.000 0.000 +2445467.5 1.06128 5.51065 -21147062.6 0.02066 0.00645 365.6 0.000 0.000 0.000 +2445468.5 1.10318 5.50080 -21149543.5 0.02066 0.00645 365.6 0.000 0.000 0.000 +2445469.5 1.14525 5.49030 -21151856.1 0.00312 0.00770 191.0 0.000 0.000 0.000 +2445470.5 1.18742 5.47908 -21154047.7 0.00312 0.00770 191.0 0.000 0.000 0.000 +2445471.5 1.22961 5.46712 -21156204.1 0.00361 0.00799 101.5 0.000 0.000 0.000 +2445472.5 1.27175 5.45437 -21158421.6 0.00272 0.02039 211.6 0.000 0.000 0.000 +2445473.5 1.31376 5.44078 -21160777.2 0.00272 0.02039 211.6 0.000 0.000 0.000 +2445474.5 1.35555 5.42629 -21163307.2 0.00272 0.02039 230.4 0.000 0.000 0.000 +2445475.5 1.39705 5.41085 -21165997.9 0.01183 0.03105 438.4 0.000 0.000 0.000 +2445476.5 1.43817 5.39444 -21168792.2 0.01183 0.03105 381.0 0.000 0.000 0.000 +2445477.5 1.47883 5.37703 -21171604.5 0.01183 0.03105 381.0 0.000 0.000 0.000 +2445478.5 1.51894 5.35860 -21174343.2 0.01630 0.02590 382.8 0.000 0.000 0.000 +2445479.5 1.55842 5.33914 -21176930.4 0.01630 0.02590 382.8 0.000 0.000 0.000 +2445480.5 1.59722 5.31868 -21179317.9 0.01776 0.02117 385.6 0.000 0.000 0.000 +2445481.5 1.63529 5.29725 -21181494.5 0.01827 0.00960 95.9 0.000 0.000 0.000 +2445482.5 1.67259 5.27487 -21183483.1 0.01827 0.00960 75.2 0.000 0.000 0.000 +2445483.5 1.70911 5.25159 -21185331.2 0.01827 0.00960 75.2 0.000 0.000 0.000 +2445484.5 1.74485 5.22746 -21187100.7 0.01582 0.01735 52.0 0.000 0.000 0.000 +2445485.5 1.77982 5.20252 -21188858.0 0.01582 0.01735 224.0 0.000 0.000 0.000 +2445486.5 1.81404 5.17681 -21190664.5 0.01512 0.02038 225.1 0.000 0.000 0.000 +2445487.5 1.84753 5.15037 -21192568.9 0.01512 0.02038 225.1 0.000 0.000 0.000 +2445488.5 1.88032 5.12327 -21194601.7 0.01512 0.02038 225.1 0.000 0.000 0.000 +2445489.5 1.91244 5.09558 -21196774.7 0.01512 0.02038 225.1 0.000 0.000 0.000 +2445490.5 1.94395 5.06739 -21199081.6 0.01406 0.01455 322.3 0.000 0.000 0.000 +2445491.5 1.97492 5.03879 -21201497.4 0.01406 0.01455 277.5 0.000 0.000 0.000 +2445492.5 2.00541 5.00987 -21203977.0 0.00482 0.01388 390.7 0.000 0.000 0.000 +2445493.5 2.03550 4.98073 -21206455.0 0.03437 0.01262 294.3 0.000 0.000 0.000 +2445494.5 2.06528 4.95148 -21208855.0 0.03437 0.01262 294.3 0.000 0.000 0.000 +2445495.5 2.09480 4.92222 -21211110.5 0.03437 0.01262 294.3 0.000 0.000 0.000 +2445496.5 2.12415 4.89307 -21213192.4 0.02297 0.02117 53.2 0.000 0.000 0.000 +2445497.5 2.15333 4.86412 -21215126.7 0.02297 0.02117 53.2 0.000 0.000 0.000 +2445498.5 2.18233 4.83549 -21216991.8 0.02297 0.02117 53.2 0.000 0.000 0.000 +2445499.5 2.21115 4.80725 -21218892.7 0.00931 0.01173 59.6 0.000 0.000 0.000 +2445500.5 2.23976 4.77947 -21220922.4 0.00931 0.01173 59.6 0.000 0.000 0.000 +2445501.5 2.26824 4.75207 -21223129.1 0.00896 0.00881 49.4 0.000 0.000 0.000 +2445502.5 2.29666 4.72493 -21225502.3 0.00766 0.00824 50.0 0.000 0.000 0.000 +2445503.5 2.32486 4.69775 -21227979.1 0.00690 0.00451 55.7 0.000 0.000 0.000 +2445504.5 2.35262 4.67023 -21230467.4 0.00690 0.00451 55.7 0.000 0.000 0.000 +2445505.5 2.37982 4.64206 -21232871.0 0.01422 0.01535 85.5 0.000 0.000 0.000 +2445506.5 2.40673 4.61293 -21235110.4 0.01422 0.01535 85.5 0.000 0.000 0.000 +2445507.5 2.43369 4.58256 -21237133.8 0.01795 0.01746 87.3 0.000 0.000 0.000 +2445508.5 2.46096 4.55072 -21238922.2 0.01795 0.01746 87.3 0.000 0.000 0.000 +2445509.5 2.48807 4.51761 -21240489.2 0.01795 0.01746 87.3 0.000 0.000 0.000 +2445510.5 2.51420 4.48365 -21241873.9 0.01795 0.01746 87.3 0.000 0.000 0.000 +2445511.5 2.53921 4.44904 -21243131.6 0.01314 0.00863 63.3 0.000 0.000 0.000 +2445512.5 2.56340 4.41383 -21244325.6 0.01314 0.00863 63.3 0.000 0.000 0.000 +2445513.5 2.58706 4.37806 -21245518.6 0.00409 0.00709 91.0 0.000 0.000 0.000 +2445514.5 2.61051 4.34179 -21246763.2 0.00409 0.00709 91.0 0.000 0.000 0.000 +2445515.5 2.63385 4.30511 -21248097.4 0.00409 0.00709 91.0 0.000 0.000 0.000 +2445516.5 2.65702 4.26817 -21249539.9 0.00409 0.00709 91.0 0.000 0.000 0.000 +2445517.5 2.67994 4.23105 -21251088.5 0.00035 0.00953 96.1 0.000 0.000 0.000 +2445518.5 2.70256 4.19360 -21252721.8 0.00035 0.00953 96.1 0.000 0.000 0.000 +2445519.5 2.72482 4.15567 -21254402.9 0.00302 0.01360 125.0 0.000 0.000 0.000 +2445520.5 2.74667 4.11707 -21256080.2 0.00302 0.01360 125.0 0.000 0.000 0.000 +2445521.5 2.76806 4.07765 -21257690.3 0.00302 0.01360 132.5 0.000 0.000 0.000 +2445522.5 2.78894 4.03727 -21259168.7 0.00302 0.01360 132.5 0.000 0.000 0.000 +2445523.5 2.80941 3.99608 -21260474.4 0.00302 0.01360 132.5 0.000 0.000 0.000 +2445524.5 2.82960 3.95438 -21261612.4 0.00302 0.01360 132.5 0.000 0.000 0.000 +2445525.5 2.84967 3.91244 -21262644.9 0.00235 0.01169 94.7 0.000 0.000 0.000 +2445526.5 2.86976 3.87055 -21263678.9 0.00235 0.01169 94.7 0.000 0.000 0.000 +2445527.5 2.89002 3.82901 -21264830.9 0.00235 0.01169 83.2 0.000 0.000 0.000 +2445528.5 2.91059 3.78810 -21266183.0 0.00467 0.00847 149.1 0.000 0.000 0.000 +2445529.5 2.93156 3.74794 -21267754.8 0.00467 0.00847 246.8 0.000 0.000 0.000 +2445530.5 2.95292 3.70846 -21269500.5 0.00467 0.00847 249.8 0.000 0.000 0.000 +2445531.5 2.97466 3.66954 -21271330.6 0.00618 0.00258 341.4 0.000 0.000 0.000 +2445532.5 2.99659 3.63112 -21273142.9 0.00535 0.00284 271.8 0.000 0.000 0.000 +2445533.5 3.01831 3.59318 -21274851.1 0.00535 0.00284 271.8 0.000 0.000 0.000 +2445534.5 3.03939 3.55570 -21276404.6 0.00437 0.00307 330.5 0.000 0.000 0.000 +2445535.5 3.05946 3.51864 -21277789.4 0.00410 0.00268 158.3 0.000 0.000 0.000 +2445536.5 3.07834 3.48190 -21279017.4 0.00410 0.00268 152.7 0.000 0.000 0.000 +2445537.5 3.09588 3.44536 -21280121.2 0.00347 0.00305 126.7 0.000 0.000 0.000 +2445538.5 3.11201 3.40888 -21281147.4 0.00291 0.00304 205.0 0.000 0.000 0.000 +2445539.5 3.12679 3.37229 -21282153.0 0.00291 0.00304 262.1 0.000 0.000 0.000 +2445540.5 3.14035 3.33539 -21283196.1 0.00305 0.00322 223.1 0.000 0.000 0.000 +2445541.5 3.15282 3.29800 -21284328.6 0.00260 0.00362 257.2 0.000 0.000 0.000 +2445542.5 3.16443 3.26004 -21285588.7 0.00260 0.00362 257.2 0.000 0.000 0.000 +2445543.5 3.17541 3.22144 -21286994.7 0.00270 0.00897 272.0 0.000 0.000 0.000 +2445544.5 3.18590 3.18208 -21288545.0 0.00270 0.00897 203.5 0.000 0.000 0.000 +2445545.5 3.19592 3.14177 -21290220.8 0.00270 0.00897 120.0 0.000 0.000 0.000 +2445546.5 3.20548 3.10033 -21291988.4 0.00247 0.00903 96.2 0.000 0.000 0.000 +2445547.5 3.21451 3.05782 -21293801.5 0.00247 0.00903 129.7 0.000 0.000 0.000 +2445548.5 3.22290 3.01443 -21295604.8 0.00247 0.00903 129.7 0.000 0.000 0.000 +2445549.5 3.23053 2.97039 -21297341.3 0.00945 0.00334 93.7 0.000 0.000 0.000 +2445550.5 3.23720 2.92586 -21298963.9 0.00945 0.00334 93.7 0.000 0.000 0.000 +2445551.5 3.24262 2.88095 -21300454.1 0.00945 0.00334 93.7 0.000 0.000 0.000 +2445552.5 3.24647 2.83572 -21301841.3 0.01304 0.00274 127.8 0.000 0.000 0.000 +2445553.5 3.24884 2.79033 -21303206.7 0.01395 0.00493 65.6 0.000 0.000 0.000 +2445554.5 3.25025 2.74493 -21304662.9 0.01395 0.00493 65.6 0.000 0.000 0.000 +2445555.5 3.25126 2.69971 -21306312.0 0.01481 0.00642 170.4 0.000 0.000 0.000 +2445556.5 3.25237 2.65484 -21308202.8 0.01076 0.00463 125.2 0.000 0.000 0.000 +2445557.5 3.25362 2.61039 -21310309.2 0.01076 0.00463 125.2 0.000 0.000 0.000 +2445558.5 3.25459 2.56632 -21312539.2 0.01076 0.00463 125.2 0.000 0.000 0.000 +2445559.5 3.25480 2.52260 -21314767.8 0.02327 0.00924 113.9 0.000 0.000 0.000 +2445560.5 3.25364 2.47922 -21316879.0 0.02327 0.00924 113.9 0.000 0.000 0.000 +2445561.5 3.25044 2.43620 -21318797.2 0.02287 0.01216 43.5 0.000 0.000 0.000 +2445562.5 3.24456 2.39354 -21320497.2 0.02790 0.01487 42.1 0.000 0.000 0.000 +2445563.5 3.23587 2.35113 -21321996.2 0.02790 0.01487 42.1 0.000 0.000 0.000 +2445564.5 3.22569 2.30859 -21323337.6 0.02285 0.01487 93.3 0.000 0.000 0.000 +2445565.5 3.21525 2.26558 -21324578.7 0.01576 0.01653 276.7 0.000 0.000 0.000 +2445566.5 3.20478 2.22216 -21325782.0 0.01576 0.01653 276.7 0.000 0.000 0.000 +2445567.5 3.19435 2.17844 -21327008.7 0.00555 0.02690 281.4 0.000 0.000 0.000 +2445568.5 3.18390 2.13455 -21328313.7 0.00555 0.02690 281.4 0.000 0.000 0.000 +2445569.5 3.17329 2.09062 -21329739.0 0.00555 0.02690 281.4 0.000 0.000 0.000 +2445570.5 3.16234 2.04678 -21331308.3 0.01200 0.00753 199.5 0.000 0.000 0.000 +2445571.5 3.15074 2.00313 -21333024.1 0.01200 0.00753 92.7 0.000 0.000 0.000 +2445572.5 3.13786 1.95982 -21334867.8 0.01200 0.00753 129.2 0.000 0.000 0.000 +2445573.5 3.12309 1.91695 -21336802.0 0.01538 0.00753 177.2 0.000 0.000 0.000 +2445574.5 3.10628 1.87453 -21338775.4 0.01111 0.01035 132.0 0.000 0.000 0.000 +2445575.5 3.08778 1.83244 -21340729.7 0.01111 0.01035 132.0 0.000 0.000 0.000 +2445576.5 3.06797 1.79055 -21342609.5 0.00322 0.01254 147.7 0.000 0.000 0.000 +2445577.5 3.04724 1.74873 -21344370.9 0.00572 0.01020 109.4 0.000 0.000 0.000 +2445578.5 3.02585 1.70705 -21345993.7 0.00572 0.01020 62.4 0.000 0.000 0.000 +2445579.5 3.00399 1.66577 -21347495.1 0.00572 0.01020 49.9 0.000 0.000 0.000 +2445580.5 2.98175 1.62516 -21348936.8 0.00742 0.00711 43.6 0.000 0.000 0.000 +2445581.5 2.95891 1.58533 -21350420.0 0.01655 0.01131 147.3 0.000 0.000 0.000 +2445582.5 2.93512 1.54631 -21352057.0 0.01655 0.01131 149.4 0.000 0.000 0.000 +2445583.5 2.91008 1.50818 -21353930.4 0.01770 0.01023 171.3 0.000 0.000 0.000 +2445584.5 2.88357 1.47094 -21356057.4 0.01622 0.01320 174.4 0.000 0.000 0.000 +2445585.5 2.85637 1.43428 -21358381.4 0.01622 0.01320 174.4 0.000 0.000 0.000 +2445586.5 2.82949 1.39779 -21360787.8 0.01622 0.01320 174.4 0.000 0.000 0.000 +2445587.5 2.80346 1.36110 -21363141.5 0.01218 0.01260 158.0 0.000 0.000 0.000 +2445588.5 2.77852 1.32396 -21365332.7 0.01218 0.01260 156.1 0.000 0.000 0.000 +2445589.5 2.75432 1.28649 -21367300.2 0.00920 0.01259 127.7 0.000 0.000 0.000 +2445590.5 2.73041 1.24894 -21369039.2 0.00249 0.00181 5.2 0.000 0.000 0.000 +2445591.5 2.70631 1.21154 -21370587.6 0.00321 0.00478 94.6 0.000 0.000 0.000 +2445592.5 2.68157 1.17452 -21372006.0 0.00321 0.00478 94.6 0.000 0.000 0.000 +2445593.5 2.65586 1.13807 -21373361.6 0.00321 0.00478 94.6 0.000 0.000 0.000 +2445594.5 2.62889 1.10235 -21374719.3 0.00321 0.00478 106.9 0.000 0.000 0.000 +2445595.5 2.60050 1.06740 -21376137.7 0.00612 0.00472 109.7 0.000 0.000 0.000 +2445596.5 2.57064 1.03319 -21377665.2 0.00612 0.00472 109.7 0.000 0.000 0.000 +2445597.5 2.53925 0.99966 -21379332.8 0.00630 0.00330 64.7 0.000 0.000 0.000 +2445598.5 2.50636 0.96679 -21381151.7 0.00630 0.00330 186.6 0.000 0.000 0.000 +2445599.5 2.47235 0.93456 -21383111.4 0.00630 0.00330 186.6 0.000 0.000 0.000 +2445600.5 2.43769 0.90298 -21385180.0 0.00630 0.00330 181.4 0.000 0.000 0.000 +2445601.5 2.40272 0.87200 -21387307.4 0.00546 0.00334 182.5 0.000 0.000 0.000 +2445602.5 2.36764 0.84148 -21389434.6 0.00546 0.00334 182.5 0.000 0.000 0.000 +2445603.5 2.33263 0.81127 -21391504.9 0.00564 0.00958 197.8 0.000 0.000 0.000 +2445604.5 2.29787 0.78122 -21393476.1 0.00564 0.00958 93.2 0.000 0.000 0.000 +2445605.5 2.26341 0.75122 -21395331.0 0.00564 0.00958 93.0 0.000 0.000 0.000 +2445606.5 2.22904 0.72115 -21397085.7 0.00486 0.00942 78.7 0.000 0.000 0.000 +2445607.5 2.19460 0.69106 -21398793.5 0.00387 0.01148 87.4 0.000 0.000 0.000 +2445608.5 2.16012 0.66125 -21400539.2 0.00387 0.01148 87.4 0.000 0.000 0.000 +2445609.5 2.12569 0.63209 -21402425.0 0.00191 0.00780 45.6 0.000 0.000 0.000 +2445610.5 2.09133 0.60386 -21404542.2 0.00191 0.00780 43.3 0.000 0.000 0.000 +2445611.5 2.05694 0.57666 -21406935.8 0.00191 0.00780 49.4 0.000 0.000 0.000 +2445612.5 2.02243 0.55053 -21409581.4 0.00161 0.00678 107.5 0.000 0.000 0.000 +2445613.5 1.98768 0.52551 -21412384.7 0.00161 0.00678 107.5 0.000 0.000 0.000 +2445614.5 1.95258 0.50146 -21415206.6 0.00161 0.00678 107.5 0.000 0.000 0.000 +2445615.5 1.91698 0.47825 -21417907.4 0.00225 0.00728 142.3 0.000 0.000 0.000 +2445616.5 1.88086 0.45587 -21420386.9 0.00162 0.00709 106.0 0.000 0.000 0.000 +2445617.5 1.84423 0.43440 -21422605.4 0.00162 0.00709 103.6 0.000 0.000 0.000 +2445618.5 1.80711 0.41394 -21424579.1 0.00043 0.00689 98.3 0.000 0.000 0.000 +2445619.5 1.76951 0.39457 -21426362.4 0.00201 0.00579 136.9 0.000 0.000 0.000 +2445620.5 1.73144 0.37625 -21428027.8 0.00201 0.00579 136.9 0.000 0.000 0.000 +2445621.5 1.69289 0.35883 -21429649.4 0.00201 0.00579 136.9 0.000 0.000 0.000 +2445622.5 1.65384 0.34218 -21431293.3 0.00498 0.00537 165.0 0.000 0.000 0.000 +2445623.5 1.61414 0.32627 -21433015.1 0.00498 0.00537 165.0 0.000 0.000 0.000 +2445624.5 1.57360 0.31111 -21434854.0 0.00498 0.00537 153.4 0.000 0.000 0.000 +2445625.5 1.53204 0.29670 -21436829.3 0.00483 0.01069 150.2 0.000 0.000 0.000 +2445626.5 1.48951 0.28292 -21438941.9 0.00483 0.01069 155.6 0.000 0.000 0.000 +2445627.5 1.44623 0.26958 -21441173.3 0.00409 0.00953 133.2 0.000 0.000 0.000 +2445628.5 1.40241 0.25656 -21443485.2 0.00206 0.01083 130.6 0.000 0.000 0.000 +2445629.5 1.35817 0.24405 -21445822.9 0.00206 0.01083 130.6 0.000 0.000 0.000 +2445630.5 1.31357 0.23230 -21448126.4 0.00206 0.01083 130.6 0.000 0.000 0.000 +2445631.5 1.26870 0.22154 -21450344.3 0.00228 0.00758 169.6 0.000 0.000 0.000 +2445632.5 1.22350 0.21183 -21452449.1 0.00249 0.00737 120.8 0.000 0.000 0.000 +2445633.5 1.17795 0.20321 -21454450.8 0.00242 0.00617 143.4 0.000 0.000 0.000 +2445634.5 1.13201 0.19571 -21456400.8 0.00242 0.00617 143.4 0.000 0.000 0.000 +2445635.5 1.08576 0.18920 -21458379.6 0.00242 0.00617 143.4 0.000 0.000 0.000 +2445636.5 1.03935 0.18344 -21460482.8 0.00242 0.00617 143.4 0.000 0.000 0.000 +2445637.5 0.99303 0.17825 -21462802.5 0.00685 0.00351 107.9 0.000 0.000 0.000 +2445638.5 0.94700 0.17354 -21465395.3 0.00685 0.00351 106.4 0.000 0.000 0.000 +2445639.5 0.90145 0.16920 -21468262.8 0.01256 0.00275 83.2 0.000 0.000 0.000 +2445640.5 0.85653 0.16515 -21471345.1 0.01256 0.00275 148.5 0.000 0.000 0.000 +2445641.5 0.81198 0.16136 -21474529.6 0.01256 0.00275 161.8 0.000 0.000 0.000 +2445642.5 0.76725 0.15785 -21477681.4 0.01256 0.00275 161.8 0.000 0.000 0.000 +2445643.5 0.72206 0.15465 -21480680.6 0.01035 0.00140 222.2 0.000 0.000 0.000 +2445644.5 0.67668 0.15184 -21483450.7 0.01035 0.00140 222.2 0.000 0.000 0.000 +2445645.5 0.63151 0.14951 -21485971.0 0.00605 0.00302 223.0 0.000 0.000 0.000 +2445646.5 0.58691 0.14773 -21488268.9 0.00605 0.00302 186.8 0.000 0.000 0.000 +2445647.5 0.54316 0.14660 -21490404.9 0.00605 0.00302 175.5 0.000 0.000 0.000 +2445648.5 0.50034 0.14621 -21492455.9 0.00631 0.00904 157.6 0.000 0.000 0.000 +2445649.5 0.45842 0.14670 -21494495.6 0.00703 0.01107 95.9 0.000 0.000 0.000 +2445650.5 0.41707 0.14829 -21496586.6 0.00703 0.01107 95.9 0.000 0.000 0.000 +2445651.5 0.37587 0.15122 -21498773.9 0.00679 0.01507 115.5 0.000 0.000 0.000 +2445652.5 0.33453 0.15561 -21501081.7 0.00724 0.01011 112.8 0.000 0.000 0.000 +2445653.5 0.29304 0.16126 -21503514.4 0.00724 0.01011 112.9 0.000 0.000 0.000 +2445654.5 0.25146 0.16790 -21506056.3 0.00652 0.00328 108.2 0.000 0.000 0.000 +2445655.5 0.20976 0.17528 -21508672.9 0.00652 0.00328 107.5 0.000 0.000 0.000 +2445656.5 0.16763 0.18328 -21511310.9 0.00652 0.00328 113.3 0.000 0.000 0.000 +2445657.5 0.12487 0.19176 -21513906.1 0.00652 0.00328 113.6 0.000 0.000 0.000 +2445658.5 0.08149 0.20062 -21516391.6 0.00478 0.00519 65.2 0.000 0.000 0.000 +2445659.5 0.03760 0.20975 -21518715.6 0.00380 0.00573 87.6 0.000 0.000 0.000 +2445660.5 -0.00665 0.21904 -21520862.0 0.00397 0.00661 60.4 0.000 0.000 0.000 +2445661.5 -0.05111 0.22842 -21522862.6 0.00397 0.00661 59.9 0.000 0.000 0.000 +2445662.5 -0.09546 0.23797 -21524792.9 0.00397 0.00661 27.0 0.000 0.000 0.000 +2445663.5 -0.13936 0.24787 -21526753.1 0.00397 0.00661 42.5 0.000 0.000 0.000 +2445664.5 -0.18260 0.25821 -21528838.2 0.00472 0.00445 43.9 0.000 0.000 0.000 +2445665.5 -0.22512 0.26901 -21531110.7 0.00472 0.00445 175.1 0.000 0.000 0.000 +2445666.5 -0.26687 0.28028 -21533583.1 0.00480 0.00421 240.7 0.000 0.000 0.000 +2445667.5 -0.30782 0.29201 -21536214.0 0.00587 0.00575 182.7 0.000 0.000 0.000 +2445668.5 -0.34813 0.30414 -21538917.0 0.00587 0.00575 182.7 0.000 0.000 0.000 +2445669.5 -0.38805 0.31652 -21541584.4 0.00587 0.00575 180.9 0.000 0.000 0.000 +2445670.5 -0.42786 0.32904 -21544113.6 0.00524 0.00495 311.5 0.000 0.000 0.000 +2445671.5 -0.46757 0.34169 -21546430.0 0.00524 0.00495 266.3 0.000 0.000 0.000 +2445672.5 -0.50702 0.35457 -21548502.4 0.00524 0.00495 266.3 0.000 0.000 0.000 +2445673.5 -0.54602 0.36777 -21550346.1 0.00447 0.00332 265.7 0.000 0.000 0.000 +2445674.5 -0.58426 0.38138 -21552014.0 0.00447 0.00332 265.7 0.000 0.000 0.000 +2445675.5 -0.62136 0.39548 -21553578.7 0.00487 0.00873 217.2 0.000 0.000 0.000 +2445676.5 -0.65700 0.41015 -21555116.3 0.00558 0.01068 52.2 0.000 0.000 0.000 +2445677.5 -0.69111 0.42561 -21556696.5 0.00558 0.01068 143.8 0.000 0.000 0.000 +2445678.5 -0.72369 0.44207 -21558373.2 0.00558 0.01068 143.8 0.000 0.000 0.000 +2445679.5 -0.75482 0.45966 -21560179.5 0.00546 0.01059 135.3 0.000 0.000 0.000 +2445680.5 -0.78483 0.47817 -21562125.9 0.00546 0.01059 135.3 0.000 0.000 0.000 +2445681.5 -0.81409 0.49734 -21564201.7 0.00484 0.00522 158.9 0.000 0.000 0.000 +2445682.5 -0.84293 0.51694 -21566377.9 0.00484 0.00522 159.2 0.000 0.000 0.000 +2445683.5 -0.87146 0.53683 -21568612.3 0.00484 0.00522 88.5 0.000 0.000 0.000 +2445684.5 -0.89967 0.55689 -21570851.7 0.00484 0.00522 92.9 0.000 0.000 0.000 +2445685.5 -0.92767 0.57706 -21573035.0 0.00988 0.00774 100.0 0.000 0.000 0.000 +2445686.5 -0.95571 0.59741 -21575102.6 0.00988 0.00774 100.0 0.000 0.000 0.000 +2445687.5 -0.98411 0.61803 -21577018.6 0.00964 0.00745 88.2 0.000 0.000 0.000 +2445688.5 -1.01314 0.63901 -21578790.1 0.00964 0.00745 87.5 0.000 0.000 0.000 +2445689.5 -1.04268 0.66030 -21580476.6 0.00964 0.00745 87.4 0.000 0.000 0.000 +2445690.5 -1.07217 0.68168 -21582177.1 0.00817 0.00743 79.6 0.000 0.000 0.000 +2445691.5 -1.10118 0.70302 -21583997.9 0.00447 0.00658 84.3 0.000 0.000 0.000 +2445692.5 -1.12960 0.72435 -21586018.4 0.00447 0.00658 84.3 0.000 0.000 0.000 +2445693.5 -1.15734 0.74569 -21588262.7 0.00249 0.00635 102.8 0.000 0.000 0.000 +2445694.5 -1.18440 0.76726 -21590691.9 0.00287 0.00885 107.6 0.000 0.000 0.000 +2445695.5 -1.21085 0.78931 -21593220.0 0.00287 0.00885 107.7 0.000 0.000 0.000 +2445696.5 -1.23672 0.81212 -21595741.0 0.00298 0.00891 127.8 0.000 0.000 0.000 +2445697.5 -1.26209 0.83597 -21598155.9 0.00298 0.00891 127.8 0.000 0.000 0.000 +2445698.5 -1.28703 0.86104 -21600393.6 0.00298 0.00891 127.8 0.000 0.000 0.000 +2445699.5 -1.31181 0.88732 -21602420.5 0.00298 0.00891 102.8 0.000 0.000 0.000 +2445700.5 -1.33676 0.91466 -21604241.8 0.01671 0.00915 87.5 0.000 0.000 0.000 +2445701.5 -1.36231 0.94274 -21605892.9 0.01671 0.00915 87.3 0.000 0.000 0.000 +2445702.5 -1.38891 0.97124 -21607429.8 0.01885 0.01002 63.3 0.000 0.000 0.000 +2445703.5 -1.41696 0.99986 -21608915.8 0.01538 0.00736 56.8 0.000 0.000 0.000 +2445704.5 -1.44617 1.02843 -21610410.7 0.01538 0.00736 56.8 0.000 0.000 0.000 +2445705.5 -1.47550 1.05697 -21611963.1 0.01538 0.00736 56.8 0.000 0.000 0.000 +2445706.5 -1.50428 1.08551 -21613605.6 0.00712 0.00327 50.6 0.000 0.000 0.000 +2445707.5 -1.53220 1.11407 -21615350.7 0.00804 0.00278 45.0 0.000 0.000 0.000 +2445708.5 -1.55904 1.14268 -21617189.2 0.00698 0.00261 40.6 0.000 0.000 0.000 +2445709.5 -1.58458 1.17139 -21619093.3 0.00772 0.00521 65.7 0.000 0.000 0.000 +2445710.5 -1.60862 1.20026 -21621023.4 0.00772 0.00521 66.3 0.000 0.000 0.000 +2445711.5 -1.63118 1.22944 -21622929.8 0.00834 0.00517 66.3 0.000 0.000 0.000 +2445712.5 -1.65253 1.25906 -21624756.6 0.00920 0.00535 63.6 0.000 0.000 0.000 +2445713.5 -1.67323 1.28908 -21626453.4 0.00871 0.00709 146.7 0.000 0.000 0.000 +2445714.5 -1.69395 1.31937 -21627983.8 0.00871 0.00709 146.7 0.000 0.000 0.000 +2445715.5 -1.71512 1.34987 -21629343.3 0.00709 0.00742 119.8 0.000 0.000 0.000 +2445716.5 -1.73679 1.38064 -21630576.3 0.00709 0.00742 117.7 0.000 0.000 0.000 +2445717.5 -1.75896 1.41171 -21631776.9 0.00035 0.00872 108.8 0.000 0.000 0.000 +2445718.5 -1.78164 1.44308 -21633065.3 0.00035 0.00872 108.8 0.000 0.000 0.000 +2445719.5 -1.80482 1.47456 -21634544.6 0.00035 0.00872 111.9 0.000 0.000 0.000 +2445720.5 -1.82851 1.50588 -21636262.9 0.00035 0.00872 244.3 0.000 0.000 0.000 +2445721.5 -1.85268 1.53686 -21638193.8 0.00652 0.00605 135.5 0.000 0.000 0.000 +2445722.5 -1.87730 1.56751 -21640245.3 0.00576 0.00501 88.0 0.000 0.000 0.000 +2445723.5 -1.90233 1.59784 -21642293.0 0.00624 0.00315 87.9 0.000 0.000 0.000 +2445724.5 -1.92774 1.62786 -21644221.5 0.00624 0.00315 87.9 0.000 0.000 0.000 +2445725.5 -1.95324 1.65766 -21645951.5 0.00624 0.00315 87.3 0.000 0.000 0.000 +2445726.5 -1.97840 1.68739 -21647448.3 0.00603 0.00302 31.6 0.000 0.000 0.000 +2445727.5 -2.00293 1.71721 -21648721.7 0.00434 0.00261 38.2 0.000 0.000 0.000 +2445728.5 -2.02672 1.74720 -21649814.9 0.00468 0.00301 49.7 0.000 0.000 0.000 +2445729.5 -2.04971 1.77745 -21650789.3 0.00474 0.00320 51.7 0.000 0.000 0.000 +2445730.5 -2.07184 1.80805 -21651714.4 0.00425 0.00889 49.9 0.000 0.000 0.000 +2445731.5 -2.09285 1.83920 -21652662.5 0.00487 0.00856 46.4 0.000 0.000 0.000 +2445732.5 -2.11246 1.87119 -21653697.1 0.00694 0.00841 64.2 0.000 0.000 0.000 +2445733.5 -2.13041 1.90420 -21654865.3 0.00813 0.01115 87.6 0.000 0.000 0.000 +2445734.5 -2.14654 1.93807 -21656192.7 0.00813 0.01115 87.6 0.000 0.000 0.000 +2445735.5 -2.16085 1.97256 -21657682.3 0.00813 0.01115 87.6 0.000 0.000 0.000 +2445736.5 -2.17381 2.00753 -21659310.4 0.00838 0.01302 98.0 0.000 0.000 0.000 +2445737.5 -2.18597 2.04307 -21661031.5 0.00911 0.01220 94.3 0.000 0.000 0.000 +2445738.5 -2.19784 2.07926 -21662791.8 0.00740 0.01808 97.5 0.000 0.000 0.000 +2445739.5 -2.20993 2.11614 -21664535.9 0.00740 0.01808 93.3 0.000 0.000 0.000 +2445740.5 -2.22266 2.15329 -21666209.1 0.00740 0.01808 96.2 0.000 0.000 0.000 +2445741.5 -2.23606 2.18999 -21667773.1 0.00791 0.01758 93.7 0.000 0.000 0.000 +2445742.5 -2.24992 2.22573 -21669213.2 0.00927 0.01651 79.8 0.000 0.000 0.000 +2445743.5 -2.26378 2.26048 -21670548.9 0.00748 0.01946 96.8 0.000 0.000 0.000 +2445744.5 -2.27718 2.29423 -21671846.5 0.00913 0.01604 110.0 0.000 0.000 0.000 +2445745.5 -2.28979 2.32709 -21673213.5 0.00691 0.01413 120.6 0.000 0.000 0.000 +2445746.5 -2.30167 2.35954 -21674771.2 0.00651 0.01426 82.3 0.000 0.000 0.000 +2445747.5 -2.31296 2.39212 -21676607.5 0.00291 0.01397 70.8 0.000 0.000 0.000 +2445748.5 -2.32382 2.42536 -21678737.6 0.00440 0.01108 107.6 0.000 0.000 0.000 +2445749.5 -2.33453 2.45952 -21681089.1 0.00440 0.01108 107.6 0.000 0.000 0.000 +2445750.5 -2.34546 2.49472 -21683525.5 0.00440 0.01108 107.6 0.000 0.000 0.000 +2445751.5 -2.35686 2.53083 -21685892.2 0.00396 0.01015 75.2 0.000 0.000 0.000 +2445752.5 -2.36867 2.56772 -21688059.6 0.00361 0.01018 74.4 0.000 0.000 0.000 +2445753.5 -2.38074 2.60523 -21689954.4 0.00393 0.00772 104.5 0.000 0.000 0.000 +2445754.5 -2.39287 2.64328 -21691564.8 0.00214 0.00864 92.4 0.000 0.000 0.000 +2445755.5 -2.40481 2.68204 -21692926.4 0.00214 0.00864 92.4 0.000 0.000 0.000 +2445756.5 -2.41632 2.72158 -21694115.8 0.00346 0.00772 103.6 0.000 0.000 0.000 +2445757.5 -2.42718 2.76182 -21695226.7 0.00404 0.00588 106.5 0.000 0.000 0.000 +2445758.5 -2.43718 2.80259 -21696353.4 0.00505 0.00358 155.8 0.000 0.000 0.000 +2445759.5 -2.44610 2.84375 -21697578.9 0.01082 0.00348 125.1 0.000 0.000 0.000 +2445760.5 -2.45380 2.88515 -21698966.5 0.01082 0.00348 122.8 0.000 0.000 0.000 +2445761.5 -2.46049 2.92667 -21700541.3 0.01240 0.00428 98.3 0.000 0.000 0.000 +2445762.5 -2.46646 2.96822 -21702299.0 0.01315 0.00448 81.6 0.000 0.000 0.000 +2445763.5 -2.47169 3.00976 -21704213.3 0.01483 0.00415 95.3 0.000 0.000 0.000 +2445764.5 -2.47547 3.05126 -21706241.6 0.01483 0.00415 95.3 0.000 0.000 0.000 +2445765.5 -2.47723 3.09278 -21708328.6 0.01431 0.00454 95.6 0.000 0.000 0.000 +2445766.5 -2.47721 3.13436 -21710417.2 0.01409 0.00369 87.9 0.000 0.000 0.000 +2445767.5 -2.47527 3.17600 -21712450.6 0.01359 0.00353 82.8 0.000 0.000 0.000 +2445768.5 -2.47099 3.21762 -21714380.2 0.01390 0.00256 126.7 0.000 0.000 0.000 +2445769.5 -2.46394 3.25918 -21716177.1 0.01014 0.00431 60.0 0.000 0.000 0.000 +2445770.5 -2.45435 3.30064 -21717843.6 0.01014 0.00431 60.0 0.000 0.000 0.000 +2445771.5 -2.44283 3.34198 -21719428.9 0.01366 0.00376 48.3 0.000 0.000 0.000 +2445772.5 -2.42999 3.38322 -21721025.3 0.01325 0.00602 35.1 0.000 0.000 0.000 +2445773.5 -2.41628 3.42451 -21722751.6 0.01446 0.00659 28.3 0.000 0.000 0.000 +2445774.5 -2.40206 3.46607 -21724718.8 0.01446 0.00659 18.3 0.000 0.000 0.000 +2445775.5 -2.38786 3.50810 -21726987.5 0.01672 0.00642 47.5 0.000 0.000 0.000 +2445776.5 -2.37408 3.55051 -21729537.5 0.01540 0.00594 44.4 0.000 0.000 0.000 +2445777.5 -2.36081 3.59306 -21732266.8 0.01073 0.00609 43.3 0.000 0.000 0.000 +2445778.5 -2.34815 3.63551 -21735023.6 0.00504 0.00346 69.4 0.000 0.000 0.000 +2445779.5 -2.33620 3.67763 -21737658.4 0.00504 0.00346 82.0 0.000 0.000 0.000 +2445780.5 -2.32498 3.71919 -21740069.6 0.01037 0.00403 89.8 0.000 0.000 0.000 +2445781.5 -2.31416 3.76003 -21742218.3 0.00996 0.00507 64.9 0.000 0.000 0.000 +2445782.5 -2.30314 3.80009 -21744123.9 0.00908 0.00475 61.7 0.000 0.000 0.000 +2445783.5 -2.29124 3.83938 -21745844.7 0.01034 0.00547 74.7 0.000 0.000 0.000 +2445784.5 -2.27810 3.87787 -21747453.0 0.01019 0.00520 96.8 0.000 0.000 0.000 +2445785.5 -2.26406 3.91543 -21749021.8 0.01019 0.00520 88.8 0.000 0.000 0.000 +2445786.5 -2.24925 3.95214 -21750622.9 0.00382 0.00553 80.3 0.000 0.000 0.000 +2445787.5 -2.23369 3.98812 -21752315.2 0.00382 0.00553 79.9 0.000 0.000 0.000 +2445788.5 -2.21735 4.02356 -21754132.5 0.00192 0.00510 181.1 0.000 0.000 0.000 +2445789.5 -2.20009 4.05872 -21756081.8 0.00192 0.00510 186.3 0.000 0.000 0.000 +2445790.5 -2.18185 4.09378 -21758147.1 0.00167 0.00497 59.6 0.000 0.000 0.000 +2445791.5 -2.16259 4.12881 -21760290.4 0.00369 0.00787 46.1 0.000 0.000 0.000 +2445792.5 -2.14230 4.16384 -21762457.3 0.00673 0.00865 37.7 0.000 0.000 0.000 +2445793.5 -2.12098 4.19891 -21764586.2 0.00791 0.01333 68.2 0.000 0.000 0.000 +2445794.5 -2.09867 4.23410 -21766618.1 0.00791 0.01333 66.7 0.000 0.000 0.000 +2445795.5 -2.07540 4.26958 -21768509.2 0.00791 0.01333 77.6 0.000 0.000 0.000 +2445796.5 -2.05098 4.30568 -21770240.0 0.00828 0.01285 89.3 0.000 0.000 0.000 +2445797.5 -2.02546 4.34240 -21771824.2 0.00936 0.01211 81.7 0.000 0.000 0.000 +2445798.5 -1.99909 4.37953 -21773311.5 0.00914 0.01183 104.9 0.000 0.000 0.000 +2445799.5 -1.97216 4.41687 -21774786.0 0.00940 0.00921 120.7 0.000 0.000 0.000 +2445800.5 -1.94494 4.45432 -21776355.9 0.00940 0.00921 122.1 0.000 0.000 0.000 +2445801.5 -1.91729 4.49185 -21778132.3 0.00878 0.00963 114.8 0.000 0.000 0.000 +2445802.5 -1.88892 4.52935 -21780199.5 0.00824 0.00984 93.3 0.000 0.000 0.000 +2445803.5 -1.86000 4.56644 -21782578.9 0.00629 0.01073 121.6 0.000 0.000 0.000 +2445804.5 -1.83085 4.60259 -21785210.0 0.00629 0.01073 122.4 0.000 0.000 0.000 +2445805.5 -1.80177 4.63735 -21787961.4 0.00231 0.00725 105.0 0.000 0.000 0.000 +2445806.5 -1.77289 4.67067 -21790669.4 0.00309 0.00706 81.6 0.000 0.000 0.000 +2445807.5 -1.74429 4.70265 -21793191.7 0.00774 0.00769 49.3 0.000 0.000 0.000 +2445808.5 -1.71602 4.73342 -21795449.8 0.00899 0.00726 80.8 0.000 0.000 0.000 +2445809.5 -1.68805 4.76309 -21797441.9 0.00899 0.00726 70.5 0.000 0.000 0.000 +2445810.5 -1.66043 4.79189 -21799226.2 0.00899 0.00726 70.4 0.000 0.000 0.000 +2445811.5 -1.63354 4.82023 -21800882.4 0.00905 0.00731 66.2 0.000 0.000 0.000 +2445812.5 -1.60705 4.84833 -21802494.4 0.00936 0.00740 63.8 0.000 0.000 0.000 +2445813.5 -1.58043 4.87634 -21804133.5 0.01071 0.00472 87.5 0.000 0.000 0.000 +2445814.5 -1.55313 4.90444 -21805850.0 0.00641 0.00480 48.9 0.000 0.000 0.000 +2445815.5 -1.52465 4.93277 -21807673.3 0.00641 0.00480 48.2 0.000 0.000 0.000 +2445816.5 -1.49481 4.96137 -21809614.8 0.00549 0.00477 43.2 0.000 0.000 0.000 +2445817.5 -1.46360 4.99019 -21811667.4 0.00598 0.00487 37.8 0.000 0.000 0.000 +2445818.5 -1.43094 5.01915 -21813805.1 0.00309 0.00338 43.5 0.000 0.000 0.000 +2445819.5 -1.39676 5.04818 -21815985.8 0.00309 0.00338 39.3 0.000 0.000 0.000 +2445820.5 -1.36099 5.07713 -21818154.9 0.00374 0.00566 57.1 0.000 0.000 0.000 +2445821.5 -1.32386 5.10581 -21820247.8 0.00374 0.00566 61.7 0.000 0.000 0.000 +2445822.5 -1.28566 5.13398 -21822206.4 0.00563 0.00626 68.1 0.000 0.000 0.000 +2445823.5 -1.24667 5.16146 -21823992.6 0.00857 0.00741 105.0 0.000 0.000 0.000 +2445824.5 -1.20703 5.18820 -21825598.8 0.00857 0.00741 103.6 0.000 0.000 0.000 +2445825.5 -1.16678 5.21427 -21827056.0 0.00857 0.00741 103.1 0.000 0.000 0.000 +2445826.5 -1.12600 5.23973 -21828434.1 0.00835 0.00475 71.1 0.000 0.000 0.000 +2445827.5 -1.08523 5.26451 -21829831.8 0.00895 0.00422 58.9 0.000 0.000 0.000 +2445828.5 -1.04516 5.28853 -21831355.3 0.00873 0.00373 51.9 0.000 0.000 0.000 +2445829.5 -1.00647 5.31168 -21833092.7 0.00806 0.00295 70.6 0.000 0.000 0.000 +2445830.5 -0.96962 5.33379 -21835087.8 0.00806 0.00295 106.5 0.000 0.000 0.000 +2445831.5 -0.93466 5.35473 -21837315.9 0.00857 0.00330 97.3 0.000 0.000 0.000 +2445832.5 -0.90108 5.37447 -21839683.8 0.00861 0.00351 88.3 0.000 0.000 0.000 +2445833.5 -0.86814 5.39303 -21842053.6 0.00810 0.00396 110.0 0.000 0.000 0.000 +2445834.5 -0.83510 5.41041 -21844280.3 0.00737 0.00408 117.1 0.000 0.000 0.000 +2445835.5 -0.80126 5.42664 -21846255.3 0.00670 0.00339 100.2 0.000 0.000 0.000 +2445836.5 -0.76641 5.44191 -21847937.5 0.00688 0.00343 50.3 0.000 0.000 0.000 +2445837.5 -0.73050 5.45648 -21849355.2 0.00773 0.00735 48.8 0.000 0.000 0.000 +2445838.5 -0.69354 5.47059 -21850584.8 0.00812 0.00804 57.5 0.000 0.000 0.000 +2445839.5 -0.65575 5.48450 -21851720.1 0.00812 0.00804 56.9 0.000 0.000 0.000 +2445840.5 -0.61735 5.49841 -21852848.1 0.00812 0.00804 57.2 0.000 0.000 0.000 +2445841.5 -0.57824 5.51214 -21854036.3 0.00767 0.00815 48.7 0.000 0.000 0.000 +2445842.5 -0.53844 5.52541 -21855326.2 0.00893 0.00787 44.9 0.000 0.000 0.000 +2445843.5 -0.49812 5.53794 -21856733.2 0.00803 0.00425 49.9 0.000 0.000 0.000 +2445844.5 -0.45746 5.54950 -21858249.2 0.00793 0.00445 41.3 0.000 0.000 0.000 +2445845.5 -0.41661 5.55998 -21859845.5 0.00793 0.00445 46.3 0.000 0.000 0.000 +2445846.5 -0.37532 5.56942 -21861482.4 0.00745 0.00428 52.2 0.000 0.000 0.000 +2445847.5 -0.33328 5.57797 -21863112.1 0.00963 0.00765 48.8 0.000 0.000 0.000 +2445848.5 -0.29045 5.58572 -21864683.2 0.00865 0.00818 63.1 0.000 0.000 0.000 +2445849.5 -0.24684 5.59279 -21866147.4 0.00946 0.00991 62.2 0.000 0.000 0.000 +2445850.5 -0.20243 5.59930 -21867467.5 0.00861 0.00901 64.4 0.000 0.000 0.000 +2445851.5 -0.15718 5.60527 -21868624.0 0.00784 0.00824 54.6 0.000 0.000 0.000 +2445852.5 -0.11146 5.61048 -21869634.2 0.00661 0.00700 45.0 0.000 0.000 0.000 +2445853.5 -0.06566 5.61468 -21870556.8 0.00375 0.00428 59.4 0.000 0.000 0.000 +2445854.5 -0.01986 5.61778 -21871479.5 0.00375 0.00428 56.2 0.000 0.000 0.000 +2445855.5 0.02592 5.61973 -21872497.8 0.00375 0.00428 63.3 0.000 0.000 0.000 +2445856.5 0.07168 5.62048 -21873691.8 0.00282 0.00244 54.0 0.000 0.000 0.000 +2445857.5 0.11731 5.62006 -21875101.0 0.00288 0.00238 51.2 0.000 0.000 0.000 +2445858.5 0.16268 5.61851 -21876709.7 0.00380 0.00202 80.8 0.000 0.000 0.000 +2445859.5 0.20762 5.61589 -21878445.6 0.00652 0.00281 106.0 0.000 0.000 0.000 +2445860.5 0.25185 5.61232 -21880195.2 0.00652 0.00281 105.6 0.000 0.000 0.000 +2445861.5 0.29497 5.60797 -21881836.7 0.00526 0.00441 84.6 0.000 0.000 0.000 +2445862.5 0.33668 5.60303 -21883272.0 0.00595 0.00571 75.5 0.000 0.000 0.000 +2445863.5 0.37715 5.59781 -21884451.1 0.00634 0.00680 94.9 0.000 0.000 0.000 +2445864.5 0.41665 5.59263 -21885383.5 0.00630 0.00595 88.4 0.000 0.000 0.000 +2445865.5 0.45545 5.58777 -21886128.6 0.00467 0.00641 55.8 0.000 0.000 0.000 +2445866.5 0.49391 5.58327 -21886770.4 0.00533 0.00569 47.1 0.000 0.000 0.000 +2445867.5 0.53245 5.57907 -21887396.2 0.00711 0.00563 40.1 0.000 0.000 0.000 +2445868.5 0.57135 5.57508 -21888080.2 0.00775 0.00272 47.3 0.000 0.000 0.000 +2445869.5 0.61066 5.57121 -21888874.4 0.00775 0.00272 38.4 0.000 0.000 0.000 +2445870.5 0.65028 5.56733 -21889805.6 0.00824 0.00312 27.5 0.000 0.000 0.000 +2445871.5 0.68978 5.56321 -21890874.6 0.00944 0.00475 29.9 0.000 0.000 0.000 +2445872.5 0.72905 5.55855 -21892061.8 0.00886 0.00440 46.4 0.000 0.000 0.000 +2445873.5 0.76806 5.55308 -21893331.0 0.00955 0.00557 75.2 0.000 0.000 0.000 +2445874.5 0.80689 5.54653 -21894636.4 0.00808 0.00625 74.0 0.000 0.000 0.000 +2445875.5 0.84605 5.53881 -21895927.1 0.00808 0.00625 75.4 0.000 0.000 0.000 +2445876.5 0.88591 5.52984 -21897144.2 0.00919 0.00580 65.8 0.000 0.000 0.000 +2445877.5 0.92674 5.51957 -21898231.6 0.00791 0.00377 63.3 0.000 0.000 0.000 +2445878.5 0.96888 5.50807 -21899150.7 0.00826 0.00421 76.0 0.000 0.000 0.000 +2445879.5 1.01275 5.49552 -21899895.1 0.00957 0.00433 67.1 0.000 0.000 0.000 +2445880.5 1.05855 5.48208 -21900502.5 0.01070 0.00287 68.5 0.000 0.000 0.000 +2445881.5 1.10558 5.46789 -21901051.8 0.00967 0.00287 65.7 0.000 0.000 0.000 +2445882.5 1.15279 5.45312 -21901644.0 0.00814 0.00256 60.4 0.000 0.000 0.000 +2445883.5 1.19940 5.43786 -21902369.3 0.00701 0.00300 71.0 0.000 0.000 0.000 +2445884.5 1.24520 5.42212 -21903273.7 0.00701 0.00300 50.1 0.000 0.000 0.000 +2445885.5 1.28998 5.40587 -21904342.4 0.00284 0.00360 61.8 0.000 0.000 0.000 +2445886.5 1.33357 5.38902 -21905515.4 0.00404 0.00311 55.7 0.000 0.000 0.000 +2445887.5 1.37591 5.37137 -21906700.0 0.00526 0.00437 62.1 0.000 0.000 0.000 +2445888.5 1.41697 5.35273 -21907795.0 0.00673 0.00562 70.9 0.000 0.000 0.000 +2445889.5 1.45681 5.33301 -21908718.7 0.00601 0.00529 73.7 0.000 0.000 0.000 +2445890.5 1.49562 5.31220 -21909426.0 0.00601 0.00529 73.7 0.000 0.000 0.000 +2445891.5 1.53365 5.29043 -21909911.9 0.00587 0.00651 64.6 0.000 0.000 0.000 +2445892.5 1.57127 5.26791 -21910214.6 0.00551 0.00668 57.7 0.000 0.000 0.000 +2445893.5 1.60879 5.24491 -21910402.3 0.00330 0.00742 59.4 0.000 0.000 0.000 +2445894.5 1.64649 5.22175 -21910553.8 0.00330 0.00742 59.4 0.000 0.000 0.000 +2445895.5 1.68458 5.19870 -21910743.1 0.00362 0.00714 67.4 0.000 0.000 0.000 +2445896.5 1.72300 5.17568 -21911032.1 0.00505 0.00661 59.3 0.000 0.000 0.000 +2445897.5 1.76169 5.15249 -21911460.0 0.00446 0.00729 50.7 0.000 0.000 0.000 +2445898.5 1.80058 5.12893 -21912039.0 0.00577 0.00366 58.0 0.000 0.000 0.000 +2445899.5 1.83965 5.10478 -21912758.5 0.00577 0.00366 52.6 0.000 0.000 0.000 +2445900.5 1.87895 5.07984 -21913590.5 0.00536 0.00708 72.5 0.000 0.000 0.000 +2445901.5 1.91823 5.05409 -21914488.7 0.00536 0.00707 71.1 0.000 0.000 0.000 +2445902.5 1.95750 5.02759 -21915398.4 0.00536 0.00707 71.1 0.000 0.000 0.000 +2445903.5 1.99687 5.00040 -21916266.9 0.00477 0.00832 99.0 0.000 0.000 0.000 +2445904.5 2.03642 4.97263 -21917050.0 0.00413 0.00935 101.6 0.000 0.000 0.000 +2445905.5 2.07591 4.94455 -21917721.7 0.00413 0.00935 101.6 0.000 0.000 0.000 +2445906.5 2.11499 4.91643 -21918276.7 0.00481 0.01050 106.1 0.000 0.000 0.000 +2445907.5 2.15329 4.88848 -21918744.4 0.00821 0.00509 33.2 0.000 0.000 0.000 +2445908.5 2.19069 4.86066 -21919197.5 0.00743 0.00467 36.3 0.000 0.000 0.000 +2445909.5 2.22706 4.83290 -21919743.6 0.00809 0.00147 37.9 0.000 0.000 0.000 +2445910.5 2.26239 4.80515 -21920496.2 0.00787 0.00226 45.3 0.000 0.000 0.000 +2445911.5 2.29699 4.77725 -21921534.5 0.00767 0.00285 39.8 0.000 0.000 0.000 +2445912.5 2.33100 4.74900 -21922865.6 0.00724 0.00321 34.9 0.000 0.000 0.000 +2445913.5 2.36431 4.72017 -21924412.2 0.00584 0.00381 35.7 0.000 0.000 0.000 +2445914.5 2.39710 4.69058 -21926040.6 0.00370 0.00344 40.5 0.000 0.000 0.000 +2445915.5 2.42962 4.66015 -21927600.5 0.00551 0.00484 38.3 0.000 0.000 0.000 +2445916.5 2.46183 4.62896 -21928967.0 0.00556 0.00571 36.5 0.000 0.000 0.000 +2445917.5 2.49353 4.59701 -21930067.8 0.00543 0.00560 34.1 0.000 0.000 0.000 +2445918.5 2.52445 4.56427 -21930893.1 0.00553 0.00564 39.2 0.000 0.000 0.000 +2445919.5 2.55442 4.53076 -21931495.9 0.00556 0.00533 38.8 0.000 0.000 0.000 +2445920.5 2.58371 4.49673 -21931967.3 0.00556 0.00533 37.8 0.000 0.000 0.000 +2445921.5 2.61247 4.46236 -21932405.9 0.00753 0.00711 49.8 0.000 0.000 0.000 +2445922.5 2.64088 4.42787 -21932903.9 0.00677 0.00615 60.7 0.000 0.000 0.000 +2445923.5 2.66919 4.39349 -21933536.1 0.00813 0.00718 81.9 0.000 0.000 0.000 +2445924.5 2.69769 4.35948 -21934353.6 0.00813 0.00718 81.9 0.000 0.000 0.000 +2445925.5 2.72647 4.32586 -21935377.9 0.00818 0.00749 104.3 0.000 0.000 0.000 +2445926.5 2.75504 4.29244 -21936594.2 0.00727 0.00693 76.4 0.000 0.000 0.000 +2445927.5 2.78277 4.25902 -21937962.8 0.00678 0.00514 59.6 0.000 0.000 0.000 +2445928.5 2.80907 4.22538 -21939428.1 0.00312 0.00500 62.2 0.000 0.000 0.000 +2445929.5 2.83343 4.19118 -21940924.0 0.00312 0.00500 62.2 0.000 0.000 0.000 +2445930.5 2.85546 4.15611 -21942385.2 0.00312 0.00500 62.2 0.000 0.000 0.000 +2445931.5 2.87502 4.12005 -21943755.2 0.00327 0.00452 64.1 0.000 0.000 0.000 +2445932.5 2.89206 4.08309 -21944991.5 0.00370 0.00433 67.4 0.000 0.000 0.000 +2445933.5 2.90654 4.04529 -21946070.4 0.00409 0.00298 98.6 0.000 0.000 0.000 +2445934.5 2.91844 4.00674 -21946995.0 0.00646 0.00402 72.9 0.000 0.000 0.000 +2445935.5 2.92781 3.96758 -21947810.1 0.00646 0.00402 74.6 0.000 0.000 0.000 +2445936.5 2.93512 3.92810 -21948623.5 0.00855 0.00372 65.8 0.000 0.000 0.000 +2445937.5 2.94109 3.88858 -21949576.1 0.00860 0.00500 58.5 0.000 0.000 0.000 +2445938.5 2.94671 3.84922 -21950795.5 0.00954 0.00524 28.9 0.000 0.000 0.000 +2445939.5 2.95287 3.81006 -21952349.4 0.00954 0.00524 28.9 0.000 0.000 0.000 +2445940.5 2.96017 3.77115 -21954219.1 0.00598 0.00502 12.2 0.000 0.000 0.000 +2445941.5 2.96826 3.73277 -21956297.8 0.00574 0.00490 9.1 0.000 0.000 0.000 +2445942.5 2.97649 3.69543 -21958429.2 0.00579 0.00475 11.9 0.000 0.000 0.000 +2445943.5 2.98375 3.65955 -21960462.7 0.00367 0.00423 8.9 0.000 0.000 0.000 +2445944.5 2.98930 3.62504 -21962294.2 0.00367 0.00423 8.9 0.000 0.000 0.000 +2445945.5 2.99429 3.59092 -21963870.9 0.00325 0.00427 9.0 0.000 0.000 0.000 +2445946.5 2.99999 3.55608 -21965194.4 0.00327 0.00346 11.8 0.000 0.000 0.000 +2445947.5 3.00711 3.51971 -21966310.9 0.00302 0.00375 16.5 0.000 0.000 0.000 +2445948.5 3.01555 3.48203 -21967305.4 0.00380 0.00425 15.3 0.000 0.000 0.000 +2445949.5 3.02501 3.44349 -21968262.0 0.00380 0.00425 15.3 0.000 0.000 0.000 +2445950.5 3.03509 3.40452 -21969250.0 0.00732 0.00565 48.1 0.000 0.000 0.000 +2445951.5 3.04500 3.36538 -21970325.9 0.00639 0.00503 45.9 0.000 0.000 0.000 +2445952.5 3.05426 3.32614 -21971526.6 0.00598 0.00457 37.4 0.000 0.000 0.000 +2445953.5 3.06272 3.28676 -21972864.9 0.00631 0.00411 33.6 0.000 0.000 0.000 +2445954.5 3.07030 3.24717 -21974331.3 0.00467 0.00190 45.8 0.000 0.000 0.000 +2445955.5 3.07689 3.20733 -21975895.4 0.00467 0.00190 45.8 0.000 0.000 0.000 +2445956.5 3.08269 3.16722 -21977504.5 0.00495 0.00433 46.3 0.000 0.000 0.000 +2445957.5 3.08808 3.12687 -21979100.3 0.00495 0.00433 46.3 0.000 0.000 0.000 +2445958.5 3.09336 3.08632 -21980632.9 0.00660 0.00581 80.0 0.000 0.000 0.000 +2445959.5 3.09849 3.04562 -21982066.5 0.00660 0.00581 80.0 0.000 0.000 0.000 +2445960.5 3.10335 3.00486 -21983383.5 0.00533 0.00744 54.0 0.000 0.000 0.000 +2445961.5 3.10800 2.96427 -21984586.3 0.00630 0.00644 144.5 0.000 0.000 0.000 +2445962.5 3.11244 2.92411 -21985706.1 0.00623 0.00651 120.6 0.000 0.000 0.000 +2445963.5 3.11649 2.88457 -21986809.4 0.00529 0.00455 128.8 0.000 0.000 0.000 +2445964.5 3.12004 2.84583 -21987993.4 0.00562 0.00503 134.0 0.000 0.000 0.000 +2445965.5 3.12324 2.80797 -21989371.3 0.00562 0.00503 134.0 0.000 0.000 0.000 +2445966.5 3.12614 2.77086 -21991041.3 0.00475 0.00506 103.8 0.000 0.000 0.000 +2445967.5 3.12865 2.73424 -21993037.6 0.00368 0.00497 53.7 0.000 0.000 0.000 +2445968.5 3.13064 2.69781 -21995305.1 0.00305 0.00409 48.7 0.000 0.000 0.000 +2445969.5 3.13198 2.66126 -21997712.8 0.00420 0.00388 51.9 0.000 0.000 0.000 +2445970.5 3.13252 2.62435 -22000097.0 0.00420 0.00388 51.9 0.000 0.000 0.000 +2445971.5 3.13191 2.58709 -22002305.1 0.00387 0.00357 46.8 0.000 0.000 0.000 +2445972.5 3.12971 2.54959 -22004249.9 0.00435 0.00355 44.1 0.000 0.000 0.000 +2445973.5 3.12559 2.51198 -22005927.9 0.00490 0.00203 38.2 0.000 0.000 0.000 +2445974.5 3.11949 2.47435 -22007398.8 0.00490 0.00203 38.2 0.000 0.000 0.000 +2445975.5 3.11140 2.43680 -22008753.5 0.00435 0.00231 33.6 0.000 0.000 0.000 +2445976.5 3.10157 2.39931 -22010086.8 0.00355 0.00347 28.6 0.000 0.000 0.000 +2445977.5 3.09032 2.36183 -22011477.4 0.00401 0.00342 24.9 0.000 0.000 0.000 +2445978.5 3.07783 2.32425 -22012976.7 0.00364 0.00373 32.6 0.000 0.000 0.000 +2445979.5 3.06429 2.28648 -22014609.0 0.00392 0.00430 41.2 0.000 0.000 0.000 +2445980.5 3.04991 2.24837 -22016373.4 0.00392 0.00430 41.2 0.000 0.000 0.000 +2445981.5 3.03457 2.20993 -22018248.3 0.00612 0.00434 44.6 0.000 0.000 0.000 +2445982.5 3.01804 2.17125 -22020194.1 0.00657 0.00452 44.7 0.000 0.000 0.000 +2445983.5 3.00029 2.13250 -22022161.4 0.00761 0.00447 65.0 0.000 0.000 0.000 +2445984.5 2.98136 2.09392 -22024096.8 0.00674 0.00398 65.5 0.000 0.000 0.000 +2445985.5 2.96156 2.05576 -22025950.1 0.00726 0.00388 90.4 0.000 0.000 0.000 +2445986.5 2.94150 2.01831 -22027675.4 0.00826 0.00444 90.0 0.000 0.000 0.000 +2445987.5 2.92177 1.98181 -22029245.4 0.00940 0.00484 86.8 0.000 0.000 0.000 +2445988.5 2.90299 1.94649 -22030660.0 0.01187 0.00490 138.0 0.000 0.000 0.000 +2445989.5 2.88589 1.91255 -22031952.6 0.01187 0.00490 156.5 0.000 0.000 0.000 +2445990.5 2.87097 1.88012 -22033187.5 0.01315 0.00490 155.2 0.000 0.000 0.000 +2445991.5 2.85735 1.84899 -22034460.5 0.01189 0.00599 129.6 0.000 0.000 0.000 +2445992.5 2.84418 1.81872 -22035887.2 0.01115 0.00576 105.0 0.000 0.000 0.000 +2445993.5 2.83092 1.78882 -22037578.8 0.01041 0.00558 129.2 0.000 0.000 0.000 +2445994.5 2.81733 1.75882 -22039603.7 0.00863 0.00577 86.9 0.000 0.000 0.000 +2445995.5 2.80354 1.72835 -22041953.1 0.00863 0.00577 44.6 0.000 0.000 0.000 +2445996.5 2.78907 1.69740 -22044521.6 0.01057 0.00586 42.0 0.000 0.000 0.000 +2445997.5 2.77321 1.66608 -22047139.4 0.00961 0.00529 35.8 0.000 0.000 0.000 +2445998.5 2.75565 1.63438 -22049629.5 0.01119 0.00391 32.1 0.000 0.000 0.000 +2445999.5 2.73623 1.60228 -22051861.8 0.01119 0.00391 32.1 0.000 0.000 0.000 +2446000.5 2.71492 1.56978 -22053787.2 0.01101 0.00338 44.2 0.000 0.000 0.000 +2446001.5 2.69215 1.53704 -22055439.5 0.01105 0.00347 41.0 0.000 0.000 0.000 +2446002.5 2.66837 1.50424 -22056908.6 0.00730 0.00346 32.2 0.000 0.000 0.000 +2446003.5 2.64407 1.47155 -22058300.7 0.00850 0.00367 41.7 0.000 0.000 0.000 +2446004.5 2.62004 1.43920 -22059710.0 0.00850 0.00367 41.7 0.000 0.000 0.000 +2446005.5 2.59713 1.40737 -22061202.3 0.00762 0.00456 53.3 0.000 0.000 0.000 +2446006.5 2.57526 1.37607 -22062813.4 0.00720 0.00470 47.5 0.000 0.000 0.000 +2446007.5 2.55407 1.34516 -22064552.5 0.00726 0.00511 44.3 0.000 0.000 0.000 +2446008.5 2.53322 1.31451 -22066405.9 0.01183 0.00705 61.0 0.000 0.000 0.000 +2446009.5 2.51232 1.28411 -22068342.8 0.01183 0.00705 61.0 0.000 0.000 0.000 +2446010.5 2.49097 1.25404 -22070318.2 0.01183 0.00705 61.0 0.000 0.000 0.000 +2446011.5 2.46851 1.22430 -22072269.4 0.01205 0.00562 48.7 0.000 0.000 0.000 +2446012.5 2.44441 1.19486 -22074130.5 0.01180 0.00530 50.9 0.000 0.000 0.000 +2446013.5 2.41899 1.16589 -22075845.1 0.01272 0.00525 51.4 0.000 0.000 0.000 +2446014.5 2.39276 1.13762 -22077375.5 0.00963 0.00300 53.2 0.000 0.000 0.000 +2446015.5 2.36631 1.11026 -22078713.8 0.00839 0.00319 68.3 0.000 0.000 0.000 +2446016.5 2.33995 1.08390 -22079897.3 0.00784 0.00308 61.0 0.000 0.000 0.000 +2446017.5 2.31378 1.05855 -22080999.9 0.00684 0.00566 65.3 0.000 0.000 0.000 +2446018.5 2.28788 1.03427 -22082118.1 0.00527 0.00641 72.2 0.000 0.000 0.000 +2446019.5 2.26228 1.01118 -22083356.0 0.00527 0.00641 72.2 0.000 0.000 0.000 +2446020.5 2.23695 0.98939 -22084810.7 0.00527 0.00641 72.2 0.000 0.000 0.000 +2446021.5 2.21157 0.96876 -22086552.5 0.00527 0.00573 71.8 0.000 0.000 0.000 +2446022.5 2.18586 0.94899 -22088595.5 0.00528 0.00508 59.5 0.000 0.000 0.000 +2446023.5 2.15956 0.92976 -22090885.8 0.00908 0.00193 70.9 0.000 0.000 0.000 +2446024.5 2.13243 0.91076 -22093308.5 0.00908 0.00193 70.9 0.000 0.000 0.000 +2446025.5 2.10424 0.89174 -22095712.0 0.00908 0.00193 70.9 0.000 0.000 0.000 +2446026.5 2.07441 0.87246 -22097948.6 0.00845 0.00204 63.6 0.000 0.000 0.000 +2446027.5 2.04254 0.85270 -22099923.5 0.01016 0.00274 53.6 0.000 0.000 0.000 +2446028.5 2.00891 0.83227 -22101616.8 0.01212 0.00313 69.9 0.000 0.000 0.000 +2446029.5 1.97390 0.81099 -22103078.5 0.01027 0.00345 59.0 0.000 0.000 0.000 +2446030.5 1.93783 0.78871 -22104399.6 0.01048 0.00378 61.3 0.000 0.000 0.000 +2446031.5 1.90093 0.76543 -22105687.4 0.01002 0.00340 60.8 0.000 0.000 0.000 +2446032.5 1.86332 0.74121 -22107030.0 0.00933 0.00457 50.0 0.000 0.000 0.000 +2446033.5 1.82523 0.71615 -22108480.1 0.00851 0.00523 41.1 0.000 0.000 0.000 +2446034.5 1.78737 0.69044 -22110059.2 0.00851 0.00523 43.1 0.000 0.000 0.000 +2446035.5 1.75044 0.66428 -22111762.2 0.00851 0.00523 43.1 0.000 0.000 0.000 +2446036.5 1.71426 0.63794 -22113560.5 0.00625 0.00573 35.1 0.000 0.000 0.000 +2446037.5 1.67852 0.61188 -22115411.3 0.00603 0.00614 34.9 0.000 0.000 0.000 +2446038.5 1.64287 0.58652 -22117263.7 0.00368 0.00617 50.9 0.000 0.000 0.000 +2446039.5 1.60704 0.56233 -22119065.8 0.00368 0.00617 50.9 0.000 0.000 0.000 +2446040.5 1.57087 0.53976 -22120771.8 0.00368 0.00617 49.1 0.000 0.000 0.000 +2446041.5 1.53397 0.51881 -22122342.2 0.00333 0.00571 43.6 0.000 0.000 0.000 +2446042.5 1.49590 0.49933 -22123755.6 0.00630 0.00637 54.5 0.000 0.000 0.000 +2446043.5 1.45635 0.48123 -22125023.2 0.00737 0.00521 62.3 0.000 0.000 0.000 +2446044.5 1.41505 0.46440 -22126190.0 0.00811 0.00582 61.5 0.000 0.000 0.000 +2446045.5 1.37173 0.44875 -22127329.8 0.00815 0.00523 66.2 0.000 0.000 0.000 +2446046.5 1.32645 0.43411 -22128531.5 0.00739 0.00605 61.0 0.000 0.000 0.000 +2446047.5 1.27960 0.42014 -22129880.1 0.00629 0.00657 55.9 0.000 0.000 0.000 +2446048.5 1.23156 0.40650 -22131431.4 0.00426 0.00717 50.2 0.000 0.000 0.000 +2446049.5 1.18236 0.39280 -22133195.8 0.00426 0.00717 61.4 0.000 0.000 0.000 +2446050.5 1.13190 0.37867 -22135129.8 0.00691 0.00670 57.7 0.000 0.000 0.000 +2446051.5 1.08024 0.36417 -22137140.9 0.00605 0.00689 46.1 0.000 0.000 0.000 +2446052.5 1.02754 0.34953 -22139108.1 0.00618 0.00658 41.9 0.000 0.000 0.000 +2446053.5 0.97398 0.33498 -22140911.1 0.00828 0.00777 53.6 0.000 0.000 0.000 +2446054.5 0.92005 0.32072 -22142465.8 0.00703 0.00668 50.1 0.000 0.000 0.000 +2446055.5 0.86676 0.30686 -22143749.6 0.00877 0.00768 29.9 0.000 0.000 0.000 +2446056.5 0.81500 0.29362 -22144806.4 0.00953 0.01247 51.1 0.000 0.000 0.000 +2446057.5 0.76572 0.28109 -22145726.5 0.00953 0.01247 51.1 0.000 0.000 0.000 +2446058.5 0.71990 0.26916 -22146618.7 0.01038 0.01380 56.6 0.000 0.000 0.000 +2446059.5 0.67725 0.25828 -22147590.5 0.01017 0.01285 62.9 0.000 0.000 0.000 +2446060.5 0.63678 0.24906 -22148718.0 0.01017 0.01285 62.9 0.000 0.000 0.000 +2446061.5 0.59814 0.24153 -22150034.1 0.01196 0.01751 150.5 0.000 0.000 0.000 +2446062.5 0.56106 0.23568 -22151539.0 0.00649 0.00210 123.5 0.000 0.000 0.000 +2446063.5 0.52529 0.23146 -22153207.8 0.00649 0.00210 123.5 0.000 0.000 0.000 +2446064.5 0.49059 0.22878 -22154996.0 0.00649 0.00210 123.5 0.000 0.000 0.000 +2446065.5 0.45666 0.22750 -22156848.5 0.00773 0.00394 97.2 0.000 0.000 0.000 +2446066.5 0.42296 0.22752 -22158702.4 0.00661 0.00334 68.1 0.000 0.000 0.000 +2446067.5 0.38886 0.22871 -22160498.5 0.00583 0.00652 45.7 0.000 0.000 0.000 +2446068.5 0.35374 0.23094 -22162189.8 0.00649 0.00627 18.9 0.000 0.000 0.000 +2446069.5 0.31709 0.23403 -22163747.5 0.00649 0.00627 18.9 0.000 0.000 0.000 +2446070.5 0.27867 0.23775 -22165169.2 0.00649 0.00627 18.9 0.000 0.000 0.000 +2446071.5 0.23858 0.24208 -22166489.4 0.00506 0.00743 23.8 0.000 0.000 0.000 +2446072.5 0.19715 0.24713 -22167778.6 0.00554 0.00650 19.1 0.000 0.000 0.000 +2446073.5 0.15518 0.25301 -22169131.0 0.00605 0.00580 18.4 0.000 0.000 0.000 +2446074.5 0.11354 0.25981 -22170641.6 0.00467 0.00580 23.1 0.000 0.000 0.000 +2446075.5 0.07308 0.26756 -22172377.6 0.00467 0.00580 23.1 0.000 0.000 0.000 +2446076.5 0.03399 0.27614 -22174358.2 0.00603 0.00682 38.6 0.000 0.000 0.000 +2446077.5 -0.00382 0.28546 -22176540.8 0.00734 0.00648 39.9 0.000 0.000 0.000 +2446078.5 -0.04021 0.29542 -22178828.2 0.00966 0.00929 70.2 0.000 0.000 0.000 +2446079.5 -0.07492 0.30596 -22181095.9 0.00966 0.00929 70.2 0.000 0.000 0.000 +2446080.5 -0.10775 0.31705 -22183224.3 0.01151 0.01180 72.3 0.000 0.000 0.000 +2446081.5 -0.13904 0.32882 -22185122.1 0.00977 0.01407 63.4 0.000 0.000 0.000 +2446082.5 -0.16947 0.34135 -22186749.4 0.00806 0.01224 41.5 0.000 0.000 0.000 +2446083.5 -0.19976 0.35469 -22188125.4 0.00510 0.01247 28.7 0.000 0.000 0.000 +2446084.5 -0.23058 0.36883 -22189317.2 0.00534 0.01211 30.7 0.000 0.000 0.000 +2446085.5 -0.26243 0.38340 -22190419.8 0.00534 0.01211 30.7 0.000 0.000 0.000 +2446086.5 -0.29555 0.39833 -22191532.5 0.00969 0.01113 30.0 0.000 0.000 0.000 +2446087.5 -0.33016 0.41372 -22192731.9 0.01011 0.00798 18.0 0.000 0.000 0.000 +2446088.5 -0.36636 0.42956 -22194059.0 0.01179 0.00730 15.3 0.000 0.000 0.000 +2446089.5 -0.40399 0.44561 -22195518.1 0.01179 0.00730 69.9 0.000 0.000 0.000 +2446090.5 -0.44255 0.46155 -22197084.3 0.01357 0.00554 74.1 0.000 0.000 0.000 +2446091.5 -0.48117 0.47719 -22198714.1 0.01206 0.00669 67.6 0.000 0.000 0.000 +2446092.5 -0.51910 0.49242 -22200354.3 0.00513 0.00692 56.1 0.000 0.000 0.000 +2446093.5 -0.55560 0.50716 -22201950.0 0.00601 0.00943 77.6 0.000 0.000 0.000 +2446094.5 -0.58995 0.52130 -22203452.5 0.00601 0.00943 77.6 0.000 0.000 0.000 +2446095.5 -0.62145 0.53483 -22204825.3 0.00541 0.00990 63.1 0.000 0.000 0.000 +2446096.5 -0.64990 0.54823 -22206039.3 0.00600 0.00960 65.2 0.000 0.000 0.000 +2446097.5 -0.67577 0.56191 -22207086.4 0.00540 0.00887 53.7 0.000 0.000 0.000 +2446098.5 -0.69974 0.57615 -22207987.6 0.00651 0.00975 67.7 0.000 0.000 0.000 +2446099.5 -0.72247 0.59111 -22208799.2 0.00521 0.00715 54.1 0.000 0.000 0.000 +2446100.5 -0.74454 0.60674 -22209614.2 0.00521 0.00715 54.1 0.000 0.000 0.000 +2446101.5 -0.76615 0.62313 -22210551.5 0.00541 0.00671 39.5 0.000 0.000 0.000 +2446102.5 -0.78737 0.64050 -22211717.3 0.00458 0.00570 33.1 0.000 0.000 0.000 +2446103.5 -0.80856 0.65911 -22213168.9 0.00425 0.00564 27.8 0.000 0.000 0.000 +2446104.5 -0.83023 0.67924 -22214890.2 0.00425 0.00564 39.0 0.000 0.000 0.000 +2446105.5 -0.85282 0.70105 -22216793.4 0.00318 0.00588 51.1 0.000 0.000 0.000 +2446106.5 -0.87642 0.72421 -22218742.6 0.00368 0.00552 45.5 0.000 0.000 0.000 +2446107.5 -0.90108 0.74828 -22220600.3 0.00423 0.00406 37.3 0.000 0.000 0.000 +2446108.5 -0.92683 0.77281 -22222269.3 0.00453 0.00500 50.0 0.000 0.000 0.000 +2446109.5 -0.95364 0.79725 -22223713.1 0.00453 0.00500 50.0 0.000 0.000 0.000 +2446110.5 -0.98142 0.82107 -22224958.3 0.00487 0.00461 41.7 0.000 0.000 0.000 +2446111.5 -1.01019 0.84412 -22226077.6 0.00553 0.00414 24.4 0.000 0.000 0.000 +2446112.5 -1.04033 0.86640 -22227165.7 0.00488 0.00436 24.8 0.000 0.000 0.000 +2446113.5 -1.07227 0.88792 -22228317.2 0.00471 0.00469 31.9 0.000 0.000 0.000 +2446114.5 -1.10629 0.90868 -22229606.6 0.00471 0.00469 31.9 0.000 0.000 0.000 +2446115.5 -1.14232 0.92874 -22231076.9 0.00471 0.00469 31.9 0.000 0.000 0.000 +2446116.5 -1.17986 0.94842 -22232733.2 0.00441 0.00468 31.8 0.000 0.000 0.000 +2446117.5 -1.21835 0.96816 -22234545.8 0.00475 0.00480 27.5 0.000 0.000 0.000 +2446118.5 -1.25708 0.98823 -22236463.1 0.00498 0.00533 26.7 0.000 0.000 0.000 +2446119.5 -1.29529 1.00884 -22238419.1 0.00486 0.00651 22.1 0.000 0.000 0.000 +2446120.5 -1.33225 1.03021 -22240344.6 0.00486 0.00651 22.1 0.000 0.000 0.000 +2446121.5 -1.36759 1.05255 -22242179.4 0.00479 0.00595 23.5 0.000 0.000 0.000 +2446122.5 -1.40126 1.07612 -22243877.0 0.00505 0.00510 19.6 0.000 0.000 0.000 +2446123.5 -1.43323 1.10107 -22245410.3 0.00496 0.00553 17.3 0.000 0.000 0.000 +2446124.5 -1.46361 1.12726 -22246773.7 0.00496 0.00553 17.7 0.000 0.000 0.000 +2446125.5 -1.49248 1.15453 -22247987.7 0.00524 0.00292 17.7 0.000 0.000 0.000 +2446126.5 -1.52017 1.18270 -22249109.9 0.00502 0.00316 29.1 0.000 0.000 0.000 +2446127.5 -1.54714 1.21156 -22250233.2 0.00553 0.00525 27.4 0.000 0.000 0.000 +2446128.5 -1.57383 1.24089 -22251476.1 0.00540 0.00659 34.1 0.000 0.000 0.000 +2446129.5 -1.60069 1.27050 -22252962.1 0.00540 0.00659 34.1 0.000 0.000 0.000 +2446130.5 -1.62820 1.30016 -22254784.4 0.00540 0.00659 33.9 0.000 0.000 0.000 +2446131.5 -1.65683 1.32953 -22256972.9 0.00540 0.00659 33.9 0.000 0.000 0.000 +2446132.5 -1.68614 1.35875 -22259455.1 0.00605 0.00693 47.8 0.000 0.000 0.000 +2446133.5 -1.71550 1.38821 -22262082.2 0.00606 0.00651 50.9 0.000 0.000 0.000 +2446134.5 -1.74424 1.41832 -22264679.4 0.00781 0.00640 271.0 0.000 0.000 0.000 +2446135.5 -1.77174 1.44946 -22267101.7 0.01034 0.00541 193.9 0.000 0.000 0.000 +2446136.5 -1.79756 1.48195 -22269269.8 0.00885 0.00459 96.2 0.000 0.000 0.000 +2446137.5 -1.82156 1.51598 -22271181.2 0.00916 0.00516 60.2 0.000 0.000 0.000 +2446138.5 -1.84372 1.55173 -22272898.5 0.00946 0.00486 37.2 0.000 0.000 0.000 +2446139.5 -1.86457 1.58925 -22274518.1 0.00946 0.00486 37.2 0.000 0.000 0.000 +2446140.5 -1.88471 1.62855 -22276138.1 0.00946 0.00486 14.7 0.000 0.000 0.000 +2446141.5 -1.90407 1.66927 -22277839.2 0.00893 0.00559 15.9 0.000 0.000 0.000 +2446142.5 -1.92223 1.71085 -22279671.6 0.00921 0.00579 14.1 0.000 0.000 0.000 +2446143.5 -1.93875 1.75275 -22281651.9 0.00979 0.00601 33.6 0.000 0.000 0.000 +2446144.5 -1.95312 1.79440 -22283765.5 0.00979 0.00601 33.6 0.000 0.000 0.000 +2446145.5 -1.96441 1.83530 -22285972.1 0.00979 0.00601 33.6 0.000 0.000 0.000 +2446146.5 -1.97239 1.87552 -22288218.0 0.00809 0.00525 64.5 0.000 0.000 0.000 +2446147.5 -1.97752 1.91531 -22290445.1 0.00660 0.00547 64.0 0.000 0.000 0.000 +2446148.5 -1.98060 1.95486 -22292599.6 0.00525 0.00323 103.2 0.000 0.000 0.000 +2446149.5 -1.98245 1.99432 -22294639.3 0.00527 0.00490 94.8 0.000 0.000 0.000 +2446150.5 -1.98384 2.03389 -22296538.8 0.00527 0.00490 103.9 0.000 0.000 0.000 +2446151.5 -1.98528 2.07371 -22298283.8 0.00463 0.00447 81.3 0.000 0.000 0.000 +2446152.5 -1.98740 2.11386 -22299880.3 0.00420 0.00404 53.8 0.000 0.000 0.000 +2446153.5 -1.99070 2.15432 -22301358.7 0.00586 0.00492 58.5 0.000 0.000 0.000 +2446154.5 -1.99528 2.19490 -22302774.1 0.00586 0.00492 84.3 0.000 0.000 0.000 +2446155.5 -2.00107 2.23542 -22304208.3 0.00475 0.00373 87.1 0.000 0.000 0.000 +2446156.5 -2.00781 2.27587 -22305769.9 0.00464 0.00321 67.9 0.000 0.000 0.000 +2446157.5 -2.01488 2.31622 -22307560.3 0.00725 0.00349 57.4 0.000 0.000 0.000 +2446158.5 -2.02139 2.35636 -22309639.5 0.00859 0.00364 62.9 0.000 0.000 0.000 +2446159.5 -2.02638 2.39614 -22311992.5 0.00848 0.00316 63.9 0.000 0.000 0.000 +2446160.5 -2.02876 2.43543 -22314520.6 0.00848 0.00316 37.8 0.000 0.000 0.000 +2446161.5 -2.02869 2.47421 -22317058.2 0.00768 0.00284 32.6 0.000 0.000 0.000 +2446162.5 -2.02676 2.51263 -22319430.8 0.00661 0.00454 24.9 0.000 0.000 0.000 +2446163.5 -2.02345 2.55085 -22321517.9 0.00391 0.00517 26.8 0.000 0.000 0.000 +2446164.5 -2.01927 2.58904 -22323288.3 0.00312 0.00556 29.1 0.000 0.000 0.000 +2446165.5 -2.01461 2.62734 -22324799.5 0.00312 0.00556 26.8 0.000 0.000 0.000 +2446166.5 -2.00961 2.66570 -22326166.6 0.00347 0.00499 23.5 0.000 0.000 0.000 +2446167.5 -2.00434 2.70393 -22327517.6 0.00335 0.00554 23.7 0.000 0.000 0.000 +2446168.5 -1.99889 2.74181 -22328959.7 0.00346 0.00588 26.1 0.000 0.000 0.000 +2446169.5 -1.99350 2.77898 -22330561.5 0.00346 0.00588 25.8 0.000 0.000 0.000 +2446170.5 -1.98837 2.81510 -22332351.8 0.00438 0.00559 28.8 0.000 0.000 0.000 +2446171.5 -1.98358 2.85026 -22334321.6 0.00412 0.00517 26.3 0.000 0.000 0.000 +2446172.5 -1.97917 2.88485 -22336433.6 0.00555 0.00471 26.8 0.000 0.000 0.000 +2446173.5 -1.97511 2.91934 -22338632.0 0.00627 0.00397 32.4 0.000 0.000 0.000 +2446174.5 -1.97129 2.95418 -22340850.4 0.00661 0.00319 32.9 0.000 0.000 0.000 +2446175.5 -1.96730 2.98968 -22343022.8 0.00661 0.00319 34.6 0.000 0.000 0.000 +2446176.5 -1.96323 3.02576 -22345089.2 0.00625 0.00300 30.1 0.000 0.000 0.000 +2446177.5 -1.95951 3.06221 -22347002.5 0.00611 0.00325 28.4 0.000 0.000 0.000 +2446178.5 -1.95634 3.09875 -22348739.7 0.00572 0.00314 30.2 0.000 0.000 0.000 +2446179.5 -1.95384 3.13511 -22350305.2 0.00682 0.00313 45.7 0.000 0.000 0.000 +2446180.5 -1.95199 3.17105 -22351732.0 0.00682 0.00313 57.9 0.000 0.000 0.000 +2446181.5 -1.95051 3.20660 -22353081.8 0.00684 0.00304 54.2 0.000 0.000 0.000 +2446182.5 -1.94915 3.24188 -22354434.7 0.00684 0.00304 54.2 0.000 0.000 0.000 +2446183.5 -1.94735 3.27705 -22355884.6 0.00908 0.00206 105.3 0.000 0.000 0.000 +2446184.5 -1.94411 3.31229 -22357526.5 0.00908 0.00206 107.4 0.000 0.000 0.000 +2446185.5 -1.93856 3.34777 -22359434.0 0.00747 0.00814 89.8 0.000 0.000 0.000 +2446186.5 -1.93045 3.38357 -22361636.0 0.00678 0.00829 60.9 0.000 0.000 0.000 +2446187.5 -1.92003 3.41970 -22364083.9 0.00675 0.00767 57.5 0.000 0.000 0.000 +2446188.5 -1.90777 3.45617 -22366653.5 0.00665 0.00873 68.4 0.000 0.000 0.000 +2446189.5 -1.89404 3.49283 -22369180.8 0.01150 0.00892 59.4 0.000 0.000 0.000 +2446190.5 -1.87902 3.52930 -22371513.5 0.01056 0.01040 62.1 0.000 0.000 0.000 +2446191.5 -1.86324 3.56551 -22373550.9 0.01073 0.00803 54.6 0.000 0.000 0.000 +2446192.5 -1.84739 3.60156 -22375281.5 0.00881 0.00583 44.8 0.000 0.000 0.000 +2446193.5 -1.83161 3.63748 -22376775.3 0.00955 0.00547 41.9 0.000 0.000 0.000 +2446194.5 -1.81521 3.67315 -22378144.9 0.00955 0.00547 39.9 0.000 0.000 0.000 +2446195.5 -1.79740 3.70825 -22379504.5 0.00595 0.00608 40.0 0.000 0.000 0.000 +2446196.5 -1.77836 3.74256 -22380926.8 0.00610 0.00604 37.2 0.000 0.000 0.000 +2446197.5 -1.75841 3.77618 -22382456.6 0.00566 0.00403 34.2 0.000 0.000 0.000 +2446198.5 -1.73787 3.80920 -22384104.8 0.00324 0.00453 30.9 0.000 0.000 0.000 +2446199.5 -1.71716 3.84156 -22385854.9 0.00345 0.00490 26.8 0.000 0.000 0.000 +2446200.5 -1.69665 3.87307 -22387670.7 0.00495 0.00472 27.0 0.000 0.000 0.000 +2446201.5 -1.67646 3.90343 -22389493.9 0.00623 0.00483 27.1 0.000 0.000 0.000 +2446202.5 -1.65638 3.93246 -22391258.8 0.00812 0.00462 27.0 0.000 0.000 0.000 +2446203.5 -1.63554 3.96049 -22392911.3 0.00909 0.00483 26.8 0.000 0.000 0.000 +2446204.5 -1.61243 3.98794 -22394410.4 0.00865 0.00537 28.4 0.000 0.000 0.000 +2446205.5 -1.58565 4.01517 -22395736.2 0.01205 0.00631 37.7 0.000 0.000 0.000 +2446206.5 -1.55559 4.04237 -22396892.6 0.01130 0.00641 46.1 0.000 0.000 0.000 +2446207.5 -1.52348 4.06969 -22397908.5 0.01011 0.00637 38.5 0.000 0.000 0.000 +2446208.5 -1.49051 4.09712 -22398838.4 0.00702 0.00652 46.0 0.000 0.000 0.000 +2446209.5 -1.45792 4.12454 -22399758.0 0.00702 0.00652 58.4 0.000 0.000 0.000 +2446210.5 -1.42668 4.15178 -22400756.5 0.00757 0.00582 66.0 0.000 0.000 0.000 +2446211.5 -1.39696 4.17871 -22401931.1 0.00679 0.00555 62.5 0.000 0.000 0.000 +2446212.5 -1.36879 4.20529 -22403363.0 0.00376 0.00533 54.2 0.000 0.000 0.000 +2446213.5 -1.34220 4.23146 -22405095.7 0.00421 0.00555 68.4 0.000 0.000 0.000 +2446214.5 -1.31691 4.25706 -22407113.2 0.00421 0.00555 69.3 0.000 0.000 0.000 +2446215.5 -1.29249 4.28189 -22409330.2 0.00393 0.00511 59.8 0.000 0.000 0.000 +2446216.5 -1.26843 4.30609 -22411596.2 0.00306 0.00518 58.8 0.000 0.000 0.000 +2446217.5 -1.24447 4.32976 -22413741.0 0.00373 0.00470 45.3 0.000 0.000 0.000 +2446218.5 -1.22043 4.35295 -22415632.0 0.00396 0.00374 56.8 0.000 0.000 0.000 +2446219.5 -1.19608 4.37574 -22417212.3 0.00383 0.00411 58.6 0.000 0.000 0.000 +2446220.5 -1.17119 4.39818 -22418513.3 0.00383 0.00411 57.8 0.000 0.000 0.000 +2446221.5 -1.14610 4.42025 -22419641.3 0.00501 0.00485 57.0 0.000 0.000 0.000 +2446222.5 -1.12137 4.44193 -22420724.6 0.00453 0.00425 43.4 0.000 0.000 0.000 +2446223.5 -1.09746 4.46331 -22421866.6 0.00456 0.00424 48.7 0.000 0.000 0.000 +2446224.5 -1.07473 4.48455 -22423123.3 0.00456 0.00424 50.0 0.000 0.000 0.000 +2446225.5 -1.05338 4.50574 -22424503.3 0.00437 0.00414 47.3 0.000 0.000 0.000 +2446226.5 -1.03306 4.52670 -22425984.0 0.00397 0.00381 40.6 0.000 0.000 0.000 +2446227.5 -1.01333 4.54717 -22427521.2 0.00405 0.00470 23.0 0.000 0.000 0.000 +2446228.5 -0.99374 4.56692 -22429060.8 0.00221 0.00478 37.4 0.000 0.000 0.000 +2446229.5 -0.97385 4.58580 -22430546.2 0.00221 0.00478 36.7 0.000 0.000 0.000 +2446230.5 -0.95316 4.60373 -22431925.1 0.00221 0.00478 34.4 0.000 0.000 0.000 +2446231.5 -0.93130 4.62075 -22433157.4 0.00540 0.00512 42.1 0.000 0.000 0.000 +2446232.5 -0.90806 4.63691 -22434224.3 0.00672 0.00625 61.2 0.000 0.000 0.000 +2446233.5 -0.88330 4.65224 -22435131.8 0.00444 0.00331 32.1 0.000 0.000 0.000 +2446234.5 -0.85692 4.66673 -22435913.0 0.00446 0.00331 30.5 0.000 0.000 0.000 +2446235.5 -0.82917 4.68030 -22436626.4 0.00446 0.00331 32.5 0.000 0.000 0.000 +2446236.5 -0.80103 4.69320 -22437314.3 0.00425 0.00334 34.0 0.000 0.000 0.000 +2446237.5 -0.77342 4.70579 -22438026.8 0.00467 0.00289 36.2 0.000 0.000 0.000 +2446238.5 -0.74591 4.71815 -22438866.6 0.00377 0.00153 29.0 0.000 0.000 0.000 +2446239.5 -0.71774 4.73028 -22439930.6 0.00377 0.00153 39.2 0.000 0.000 0.000 +2446240.5 -0.68820 4.74215 -22441274.5 0.00698 0.00403 109.3 0.000 0.000 0.000 +2446241.5 -0.65734 4.75384 -22442873.3 0.00784 0.00466 91.8 0.000 0.000 0.000 +2446242.5 -0.62557 4.76543 -22444637.2 0.00731 0.00452 81.5 0.000 0.000 0.000 +2446243.5 -0.59335 4.77700 -22446436.3 0.00657 0.00537 91.3 0.000 0.000 0.000 +2446244.5 -0.56134 4.78850 -22448123.9 0.00657 0.00537 89.9 0.000 0.000 0.000 +2446245.5 -0.53015 4.79977 -22449569.7 0.00657 0.00537 69.2 0.000 0.000 0.000 +2446246.5 -0.49990 4.81068 -22450695.0 0.00610 0.00405 64.6 0.000 0.000 0.000 +2446247.5 -0.47050 4.82115 -22451496.2 0.00610 0.00405 65.0 0.000 0.000 0.000 +2446248.5 -0.44182 4.83114 -22452043.3 0.00451 0.00152 80.6 0.000 0.000 0.000 +2446249.5 -0.41373 4.84055 -22452448.3 0.00502 0.00204 74.3 0.000 0.000 0.000 +2446250.5 -0.38593 4.84937 -22452828.5 0.00621 0.00419 80.1 0.000 0.000 0.000 +2446251.5 -0.35765 4.85763 -22453276.2 0.00585 0.00489 65.5 0.000 0.000 0.000 +2446252.5 -0.32808 4.86537 -22453837.7 0.00539 0.00464 60.7 0.000 0.000 0.000 +2446253.5 -0.29668 4.87258 -22454511.1 0.00542 0.00500 61.6 0.000 0.000 0.000 +2446254.5 -0.26314 4.87928 -22455260.2 0.00542 0.00500 70.8 0.000 0.000 0.000 +2446255.5 -0.22781 4.88581 -22456032.5 0.00492 0.00542 69.7 0.000 0.000 0.000 +2446256.5 -0.19111 4.89226 -22456779.9 0.00519 0.00511 49.9 0.000 0.000 0.000 +2446257.5 -0.15352 4.89863 -22457458.8 0.00463 0.00569 51.2 0.000 0.000 0.000 +2446258.5 -0.11553 4.90487 -22458033.6 0.00538 0.00628 57.1 0.000 0.000 0.000 +2446259.5 -0.07773 4.91083 -22458479.6 0.00538 0.00628 57.1 0.000 0.000 0.000 +2446260.5 -0.04063 4.91633 -22458795.3 0.00538 0.00628 46.6 0.000 0.000 0.000 +2446261.5 -0.00445 4.92151 -22458998.9 0.00526 0.00659 45.7 0.000 0.000 0.000 +2446262.5 0.03082 4.92657 -22459125.9 0.00533 0.00573 38.4 0.000 0.000 0.000 +2446263.5 0.06526 4.93168 -22459234.8 0.00674 0.00546 38.1 0.000 0.000 0.000 +2446264.5 0.09891 4.93700 -22459405.1 0.00603 0.00595 37.5 0.000 0.000 0.000 +2446265.5 0.13195 4.94252 -22459725.4 0.00603 0.00595 45.5 0.000 0.000 0.000 +2446266.5 0.16448 4.94785 -22460279.1 0.00573 0.00572 43.0 0.000 0.000 0.000 +2446267.5 0.19666 4.95244 -22461110.2 0.00631 0.00533 39.4 0.000 0.000 0.000 +2446268.5 0.22905 4.95577 -22462198.0 0.00672 0.00535 43.7 0.000 0.000 0.000 +2446269.5 0.26177 4.95798 -22463452.7 0.00546 0.00518 45.6 0.000 0.000 0.000 +2446270.5 0.29478 4.95937 -22464747.7 0.00557 0.00563 45.3 0.000 0.000 0.000 +2446271.5 0.32781 4.96026 -22465949.5 0.00501 0.00441 54.2 0.000 0.000 0.000 +2446272.5 0.36059 4.96088 -22466947.2 0.00556 0.00490 72.6 0.000 0.000 0.000 +2446273.5 0.39290 4.96145 -22467677.8 0.00573 0.00556 91.8 0.000 0.000 0.000 +2446274.5 0.42481 4.96197 -22468144.8 0.00573 0.00556 92.0 0.000 0.000 0.000 +2446275.5 0.45647 4.96235 -22468417.9 0.00573 0.00556 89.2 0.000 0.000 0.000 +2446276.5 0.48783 4.96247 -22468614.9 0.00639 0.00462 79.4 0.000 0.000 0.000 +2446277.5 0.51890 4.96222 -22468856.1 0.00698 0.00632 66.8 0.000 0.000 0.000 +2446278.5 0.54992 4.96143 -22469235.2 0.00788 0.00833 40.0 0.000 0.000 0.000 +2446279.5 0.58118 4.95993 -22469803.1 0.00776 0.00894 31.6 0.000 0.000 0.000 +2446280.5 0.61341 4.95750 -22470561.6 0.00776 0.00894 33.9 0.000 0.000 0.000 +2446281.5 0.64676 4.95435 -22471468.3 0.00677 0.00821 40.5 0.000 0.000 0.000 +2446282.5 0.68102 4.95071 -22472455.0 0.00630 0.00784 41.4 0.000 0.000 0.000 +2446283.5 0.71598 4.94667 -22473446.7 0.00565 0.00706 50.1 0.000 0.000 0.000 +2446284.5 0.75140 4.94232 -22474372.3 0.00598 0.00422 65.7 0.000 0.000 0.000 +2446285.5 0.78715 4.93767 -22475174.1 0.00454 0.00467 64.8 0.000 0.000 0.000 +2446286.5 0.82296 4.93248 -22475817.2 0.00602 0.00447 61.5 0.000 0.000 0.000 +2446287.5 0.85846 4.92640 -22476288.3 0.00586 0.00427 60.0 0.000 0.000 0.000 +2446288.5 0.89334 4.91906 -22476596.8 0.00520 0.00602 63.6 0.000 0.000 0.000 +2446289.5 0.92739 4.91020 -22476777.5 0.00520 0.00602 64.5 0.000 0.000 0.000 +2446290.5 0.96029 4.90022 -22476904.2 0.00518 0.00686 56.2 0.000 0.000 0.000 +2446291.5 0.99219 4.88978 -22477068.1 0.00548 0.00680 39.0 0.000 0.000 0.000 +2446292.5 1.02347 4.87942 -22477371.6 0.00824 0.00752 37.8 0.000 0.000 0.000 +2446293.5 1.05462 4.86948 -22477913.8 0.00782 0.00859 30.3 0.000 0.000 0.000 +2446294.5 1.08621 4.86022 -22478761.5 0.00758 0.00698 34.2 0.000 0.000 0.000 +2446295.5 1.11880 4.85163 -22479922.1 0.00758 0.00698 34.0 0.000 0.000 0.000 +2446296.5 1.15209 4.84350 -22481325.9 0.00864 0.00665 29.5 0.000 0.000 0.000 +2446297.5 1.18541 4.83551 -22482842.7 0.00802 0.00877 32.1 0.000 0.000 0.000 +2446298.5 1.21808 4.82726 -22484319.4 0.00696 0.01017 37.5 0.000 0.000 0.000 +2446299.5 1.24943 4.81820 -22485623.5 0.00585 0.01298 47.3 0.000 0.000 0.000 +2446300.5 1.27901 4.80789 -22486677.5 0.00622 0.01369 46.7 0.000 0.000 0.000 +2446301.5 1.30708 4.79653 -22487464.9 0.00614 0.01284 45.6 0.000 0.000 0.000 +2446302.5 1.33397 4.78458 -22488030.0 0.00789 0.01402 57.4 0.000 0.000 0.000 +2446303.5 1.36022 4.77222 -22488467.9 0.00809 0.01369 71.9 0.000 0.000 0.000 +2446304.5 1.38677 4.75887 -22488907.6 0.00809 0.01369 70.1 0.000 0.000 0.000 +2446305.5 1.41447 4.74392 -22489465.4 0.00957 0.01334 69.0 0.000 0.000 0.000 +2446306.5 1.44287 4.72746 -22490210.5 0.01073 0.00972 68.3 0.000 0.000 0.000 +2446307.5 1.47138 4.70991 -22491163.4 0.01039 0.00924 72.4 0.000 0.000 0.000 +2446308.5 1.49959 4.69167 -22492307.1 0.01041 0.00421 78.3 0.000 0.000 0.000 +2446309.5 1.52738 4.67310 -22493594.0 0.00950 0.00411 74.9 0.000 0.000 0.000 +2446310.5 1.55515 4.65448 -22494958.4 0.01175 0.01400 70.0 0.000 0.000 0.000 +2446311.5 1.58293 4.63606 -22496320.2 0.00975 0.01430 74.6 0.000 0.000 0.000 +2446312.5 1.61055 4.61811 -22497604.4 0.00957 0.01131 65.5 0.000 0.000 0.000 +2446313.5 1.63807 4.60089 -22498758.6 0.01020 0.01227 77.6 0.000 0.000 0.000 +2446314.5 1.66554 4.58456 -22499754.1 0.01020 0.01227 77.5 0.000 0.000 0.000 +2446315.5 1.69245 4.56883 -22500582.7 0.01043 0.01237 71.4 0.000 0.000 0.000 +2446316.5 1.71840 4.55321 -22501269.7 0.00959 0.01169 68.6 0.000 0.000 0.000 +2446317.5 1.74300 4.53724 -22501867.7 0.00672 0.00865 60.7 0.000 0.000 0.000 +2446318.5 1.76591 4.52043 -22502452.5 0.00450 0.01043 65.7 0.000 0.000 0.000 +2446319.5 1.78695 4.50227 -22503121.0 0.00450 0.01043 43.2 0.000 0.000 0.000 +2446320.5 1.80629 4.48228 -22503979.6 0.00543 0.00954 53.2 0.000 0.000 0.000 +2446321.5 1.82416 4.46071 -22505125.8 0.00449 0.00957 52.7 0.000 0.000 0.000 +2446322.5 1.84071 4.43800 -22506609.5 0.00505 0.00839 45.4 0.000 0.000 0.000 +2446323.5 1.85610 4.41451 -22508404.8 0.00571 0.00448 54.6 0.000 0.000 0.000 +2446324.5 1.87071 4.39060 -22510403.6 0.00571 0.00359 58.4 0.000 0.000 0.000 +2446325.5 1.88526 4.36659 -22512441.6 0.00571 0.00359 56.6 0.000 0.000 0.000 +2446326.5 1.90016 4.34267 -22514351.0 0.00433 0.00428 49.6 0.000 0.000 0.000 +2446327.5 1.91564 4.31908 -22516012.7 0.00654 0.00385 44.3 0.000 0.000 0.000 +2446328.5 1.93194 4.29592 -22517389.1 0.00719 0.00381 48.4 0.000 0.000 0.000 +2446329.5 1.94930 4.27329 -22518522.2 0.00719 0.00381 49.5 0.000 0.000 0.000 +2446330.5 1.96794 4.25119 -22519510.5 0.00818 0.00457 47.5 0.000 0.000 0.000 +2446331.5 1.98744 4.22935 -22520482.4 0.00723 0.00448 45.3 0.000 0.000 0.000 +2446332.5 2.00703 4.20750 -22521552.7 0.00669 0.00464 40.0 0.000 0.000 0.000 +2446333.5 2.02595 4.18533 -22522799.0 0.00512 0.00542 44.4 0.000 0.000 0.000 +2446334.5 2.04380 4.16239 -22524255.4 0.00512 0.00542 45.2 0.000 0.000 0.000 +2446335.5 2.06036 4.13821 -22525913.7 0.00512 0.00542 43.6 0.000 0.000 0.000 +2446336.5 2.07540 4.11270 -22527727.9 0.00376 0.00372 39.0 0.000 0.000 0.000 +2446337.5 2.08891 4.08594 -22529627.1 0.00507 0.00359 38.4 0.000 0.000 0.000 +2446338.5 2.10097 4.05808 -22531531.1 0.00543 0.00284 46.1 0.000 0.000 0.000 +2446339.5 2.11167 4.02925 -22533364.3 0.00527 0.00278 48.0 0.000 0.000 0.000 +2446340.5 2.12140 3.99966 -22535069.5 0.00527 0.00278 50.8 0.000 0.000 0.000 +2446341.5 2.13085 3.96961 -22536622.0 0.00538 0.00327 52.6 0.000 0.000 0.000 +2446342.5 2.14054 3.93942 -22538021.7 0.00602 0.00251 48.2 0.000 0.000 0.000 +2446343.5 2.15093 3.90932 -22539295.0 0.00683 0.00365 65.6 0.000 0.000 0.000 +2446344.5 2.16246 3.87955 -22540488.9 0.00701 0.00774 64.7 0.000 0.000 0.000 +2446345.5 2.17545 3.85024 -22541665.6 0.00701 0.00774 61.3 0.000 0.000 0.000 +2446346.5 2.18929 3.82134 -22542910.3 0.00738 0.00793 58.4 0.000 0.000 0.000 +2446347.5 2.20298 3.79275 -22544318.9 0.00686 0.01027 53.4 0.000 0.000 0.000 +2446348.5 2.21560 3.76426 -22545979.7 0.00549 0.01256 61.8 0.000 0.000 0.000 +2446349.5 2.22637 3.73533 -22547950.7 0.00549 0.01256 63.1 0.000 0.000 0.000 +2446350.5 2.23473 3.70550 -22550233.0 0.00584 0.01192 61.3 0.000 0.000 0.000 +2446351.5 2.24098 3.67500 -22552753.8 0.00469 0.01083 61.7 0.000 0.000 0.000 +2446352.5 2.24580 3.64425 -22555366.3 0.00588 0.00947 51.3 0.000 0.000 0.000 +2446353.5 2.24984 3.61367 -22557890.4 0.00535 0.00691 55.9 0.000 0.000 0.000 +2446354.5 2.25377 3.58365 -22560173.5 0.00535 0.00691 59.3 0.000 0.000 0.000 +2446355.5 2.25816 3.55433 -22562141.8 0.00535 0.00691 94.2 0.000 0.000 0.000 +2446356.5 2.26303 3.52561 -22563819.3 0.00494 0.00620 83.0 0.000 0.000 0.000 +2446357.5 2.26813 3.49737 -22565307.4 0.00572 0.00554 69.4 0.000 0.000 0.000 +2446358.5 2.27325 3.46927 -22566745.0 0.00499 0.00612 102.7 0.000 0.000 0.000 +2446359.5 2.27818 3.44095 -22568257.4 0.00551 0.00558 106.6 0.000 0.000 0.000 +2446360.5 2.28275 3.41213 -22569928.1 0.00508 0.00568 103.0 0.000 0.000 0.000 +2446361.5 2.28689 3.38293 -22571791.9 0.00466 0.00503 61.2 0.000 0.000 0.000 +2446362.5 2.29048 3.35368 -22573839.2 0.00475 0.00454 53.8 0.000 0.000 0.000 +2446363.5 2.29344 3.32470 -22576030.6 0.00410 0.00354 69.0 0.000 0.000 0.000 +2446364.5 2.29578 3.29614 -22578307.8 0.00410 0.00354 29.6 0.000 0.000 0.000 +2446365.5 2.29754 3.26814 -22580601.7 0.00400 0.00293 25.2 0.000 0.000 0.000 +2446366.5 2.29858 3.24069 -22582835.3 0.00410 0.00239 29.9 0.000 0.000 0.000 +2446367.5 2.29877 3.21360 -22584938.6 0.00512 0.00386 37.3 0.000 0.000 0.000 +2446368.5 2.29803 3.18668 -22586860.4 0.00547 0.00429 43.0 0.000 0.000 0.000 +2446369.5 2.29638 3.15973 -22588575.8 0.00547 0.00429 45.1 0.000 0.000 0.000 +2446370.5 2.29426 3.13264 -22590095.7 0.00547 0.00429 44.7 0.000 0.000 0.000 +2446371.5 2.29189 3.10550 -22591460.4 0.00616 0.00511 53.9 0.000 0.000 0.000 +2446372.5 2.28942 3.07850 -22592728.8 0.00717 0.00551 62.3 0.000 0.000 0.000 +2446373.5 2.28711 3.05184 -22593973.4 0.00657 0.00445 62.7 0.000 0.000 0.000 +2446374.5 2.28522 3.02571 -22595275.0 0.00633 0.00783 67.7 0.000 0.000 0.000 +2446375.5 2.28404 3.00027 -22596717.5 0.00633 0.00783 73.1 0.000 0.000 0.000 +2446376.5 2.28352 2.97551 -22598382.8 0.00637 0.00693 67.0 0.000 0.000 0.000 +2446377.5 2.28338 2.95133 -22600320.7 0.00638 0.00661 65.3 0.000 0.000 0.000 +2446378.5 2.28335 2.92756 -22602521.0 0.00677 0.00737 65.7 0.000 0.000 0.000 +2446379.5 2.28316 2.90371 -22604900.5 0.00677 0.00737 65.7 0.000 0.000 0.000 +2446380.5 2.28265 2.87928 -22607317.6 0.00736 0.00560 65.0 0.000 0.000 0.000 +2446381.5 2.28153 2.85397 -22609605.3 0.00741 0.00485 63.5 0.000 0.000 0.000 +2446382.5 2.27972 2.82774 -22611631.6 0.00777 0.00633 59.4 0.000 0.000 0.000 +2446383.5 2.27740 2.80065 -22613353.6 0.00821 0.00772 58.0 0.000 0.000 0.000 +2446384.5 2.27482 2.77279 -22614826.1 0.00756 0.00781 61.1 0.000 0.000 0.000 +2446385.5 2.27265 2.74428 -22616176.6 0.00756 0.00781 68.5 0.000 0.000 0.000 +2446386.5 2.27125 2.71554 -22617552.2 0.00780 0.00971 55.1 0.000 0.000 0.000 +2446387.5 2.27085 2.68701 -22619068.1 0.00985 0.01078 55.7 0.000 0.000 0.000 +2446388.5 2.27179 2.65894 -22620782.2 0.00543 0.00614 21.9 0.000 0.000 0.000 +2446389.5 2.27440 2.63157 -22622695.2 0.00540 0.00583 22.4 0.000 0.000 0.000 +2446390.5 2.27875 2.60512 -22624764.5 0.00540 0.00583 30.7 0.000 0.000 0.000 +2446391.5 2.28307 2.58006 -22626904.6 0.00539 0.00578 39.0 0.000 0.000 0.000 +2446392.5 2.28531 2.55690 -22629019.5 0.00559 0.00457 38.5 0.000 0.000 0.000 +2446393.5 2.28540 2.53524 -22631049.5 0.00309 0.00305 36.7 0.000 0.000 0.000 +2446394.5 2.28369 2.51448 -22632950.5 0.00309 0.00305 36.8 0.000 0.000 0.000 +2446395.5 2.28052 2.49405 -22634692.8 0.00506 0.00456 108.7 0.000 0.000 0.000 +2446396.5 2.27596 2.47351 -22636260.7 0.00642 0.00422 82.7 0.000 0.000 0.000 +2446397.5 2.26992 2.45261 -22637661.7 0.00593 0.00553 41.3 0.000 0.000 0.000 +2446398.5 2.26232 2.43117 -22638929.1 0.00534 0.00602 51.4 0.000 0.000 0.000 +2446399.5 2.25307 2.40900 -22640118.5 0.00686 0.00554 65.3 0.000 0.000 0.000 +2446400.5 2.24221 2.38603 -22641302.3 0.00686 0.00554 68.7 0.000 0.000 0.000 +2446401.5 2.23003 2.36243 -22642557.9 0.00686 0.00572 63.0 0.000 0.000 0.000 +2446402.5 2.21682 2.33851 -22643958.2 0.00963 0.00528 62.0 0.000 0.000 0.000 +2446403.5 2.20313 2.31455 -22645566.5 0.01076 0.00402 68.6 0.000 0.000 0.000 +2446404.5 2.18983 2.29076 -22647425.5 0.00978 0.00369 74.6 0.000 0.000 0.000 +2446405.5 2.17768 2.26735 -22649537.6 0.00994 0.00388 67.5 0.000 0.000 0.000 +2446406.5 2.16654 2.24431 -22651843.1 0.00992 0.00391 59.5 0.000 0.000 0.000 +2446407.5 2.15581 2.22154 -22654221.0 0.00910 0.00435 55.7 0.000 0.000 0.000 +2446408.5 2.14493 2.19901 -22656518.7 0.00550 0.00409 58.3 0.000 0.000 0.000 +2446409.5 2.13349 2.17667 -22658597.2 0.00550 0.00409 60.9 0.000 0.000 0.000 +2446410.5 2.12118 2.15450 -22660379.2 0.00532 0.00403 56.7 0.000 0.000 0.000 +2446411.5 2.10829 2.13257 -22661870.9 0.00515 0.00434 57.8 0.000 0.000 0.000 +2446412.5 2.09541 2.11093 -22663158.7 0.01023 0.00403 52.7 0.000 0.000 0.000 +2446413.5 2.08321 2.08964 -22664374.6 0.01161 0.00319 59.3 0.000 0.000 0.000 +2446414.5 2.07235 2.06875 -22665645.7 0.01156 0.00635 61.7 0.000 0.000 0.000 +2446415.5 2.06342 2.04825 -22667054.3 0.01156 0.00635 61.3 0.000 0.000 0.000 +2446416.5 2.05605 2.02803 -22668624.7 0.01105 0.00565 60.3 0.000 0.000 0.000 +2446417.5 2.04936 2.00790 -22670328.4 0.00955 0.00926 54.1 0.000 0.000 0.000 +2446418.5 2.04263 1.98746 -22672105.7 0.00571 0.01048 59.2 0.000 0.000 0.000 +2446419.5 2.03523 1.96616 -22673888.4 0.00571 0.01048 61.7 0.000 0.000 0.000 +2446420.5 2.02669 1.94353 -22675616.0 0.00561 0.01030 60.3 0.000 0.000 0.000 +2446421.5 2.01700 1.91979 -22677231.3 0.00561 0.01030 58.7 0.000 0.000 0.000 +2446422.5 2.00617 1.89552 -22678686.9 0.00491 0.01141 49.0 0.000 0.000 0.000 +2446423.5 1.99419 1.87129 -22679955.6 0.00472 0.01061 92.4 0.000 0.000 0.000 +2446424.5 1.98092 1.84742 -22681033.7 0.00472 0.01061 81.3 0.000 0.000 0.000 +2446425.5 1.96620 1.82415 -22681942.2 0.00635 0.00870 54.0 0.000 0.000 0.000 +2446426.5 1.94987 1.80171 -22682726.9 0.00648 0.00787 78.6 0.000 0.000 0.000 +2446427.5 1.93201 1.78010 -22683454.0 0.00748 0.00734 51.6 0.000 0.000 0.000 +2446428.5 1.91286 1.75920 -22684200.8 0.00748 0.00734 51.6 0.000 0.000 0.000 +2446429.5 1.89292 1.73891 -22685043.1 0.00752 0.00740 49.1 0.000 0.000 0.000 +2446430.5 1.87296 1.71913 -22686044.4 0.00752 0.00740 49.2 0.000 0.000 0.000 +2446431.5 1.85330 1.69991 -22687251.2 0.00642 0.00696 49.3 0.000 0.000 0.000 +2446432.5 1.83397 1.68135 -22688672.6 0.00595 0.00660 48.6 0.000 0.000 0.000 +2446433.5 1.81472 1.66330 -22690272.4 0.00475 0.00631 71.2 0.000 0.000 0.000 +2446434.5 1.79521 1.64554 -22691971.6 0.00475 0.00631 76.5 0.000 0.000 0.000 +2446435.5 1.77518 1.62784 -22693661.5 0.00370 0.00611 76.7 0.000 0.000 0.000 +2446436.5 1.75467 1.61010 -22695225.5 0.00429 0.00572 73.5 0.000 0.000 0.000 +2446437.5 1.73371 1.59229 -22696575.1 0.00327 0.00634 65.6 0.000 0.000 0.000 +2446438.5 1.71236 1.57435 -22697689.2 0.00280 0.00652 88.2 0.000 0.000 0.000 +2446439.5 1.69075 1.55604 -22698628.7 0.00280 0.00652 56.3 0.000 0.000 0.000 +2446440.5 1.66909 1.53700 -22699514.0 0.00280 0.00652 40.5 0.000 0.000 0.000 +2446441.5 1.64776 1.51729 -22700480.5 0.00342 0.00543 45.2 0.000 0.000 0.000 +2446442.5 1.62708 1.49708 -22701636.9 0.00556 0.00624 47.3 0.000 0.000 0.000 +2446443.5 1.60740 1.47652 -22703033.1 0.00631 0.00382 74.6 0.000 0.000 0.000 +2446444.5 1.58896 1.45575 -22704653.8 0.00714 0.00459 77.3 0.000 0.000 0.000 +2446445.5 1.57159 1.43499 -22706433.8 0.00714 0.00459 85.6 0.000 0.000 0.000 +2446446.5 1.55390 1.41495 -22708271.9 0.00837 0.00474 82.1 0.000 0.000 0.000 +2446447.5 1.53426 1.39643 -22710066.1 0.00752 0.00382 79.1 0.000 0.000 0.000 +2446448.5 1.51218 1.37966 -22711748.3 0.00744 0.00278 105.1 0.000 0.000 0.000 +2446449.5 1.48745 1.36469 -22713274.8 0.00744 0.00278 104.0 0.000 0.000 0.000 +2446450.5 1.46005 1.35158 -22714625.2 0.00897 0.00254 92.2 0.000 0.000 0.000 +2446451.5 1.43110 1.34022 -22715811.2 0.00835 0.00250 70.2 0.000 0.000 0.000 +2446452.5 1.40186 1.33019 -22716860.6 0.00798 0.00350 58.1 0.000 0.000 0.000 +2446453.5 1.37333 1.32100 -22717819.8 0.00566 0.00310 61.2 0.000 0.000 0.000 +2446454.5 1.34586 1.31210 -22718754.5 0.00745 0.00505 34.5 0.000 0.000 0.000 +2446455.5 1.31958 1.30300 -22719743.3 0.00745 0.00505 35.8 0.000 0.000 0.000 +2446456.5 1.29420 1.29358 -22720870.8 0.00490 0.00538 35.4 0.000 0.000 0.000 +2446457.5 1.26908 1.28393 -22722211.6 0.00501 0.00637 38.3 0.000 0.000 0.000 +2446458.5 1.24363 1.27414 -22723811.8 0.00561 0.00644 47.3 0.000 0.000 0.000 +2446459.5 1.21720 1.26431 -22725673.6 0.00561 0.00644 46.7 0.000 0.000 0.000 +2446460.5 1.18914 1.25461 -22727751.6 0.00561 0.00644 64.8 0.000 0.000 0.000 +2446461.5 1.15927 1.24570 -22729950.9 0.00521 0.00619 56.6 0.000 0.000 0.000 +2446462.5 1.12840 1.23762 -22732146.0 0.00486 0.00563 46.6 0.000 0.000 0.000 +2446463.5 1.09733 1.23011 -22734213.5 0.00475 0.00433 46.5 0.000 0.000 0.000 +2446464.5 1.06680 1.22290 -22736059.8 0.00394 0.00463 49.0 0.000 0.000 0.000 +2446465.5 1.03753 1.21579 -22737648.3 0.00398 0.00452 55.0 0.000 0.000 0.000 +2446466.5 1.00963 1.20914 -22739012.0 0.00411 0.00439 42.9 0.000 0.000 0.000 +2446467.5 0.98310 1.20285 -22740243.1 0.00439 0.00502 40.3 0.000 0.000 0.000 +2446468.5 0.95796 1.19666 -22741463.8 0.00398 0.00407 48.9 0.000 0.000 0.000 +2446469.5 0.93406 1.19027 -22742791.8 0.00515 0.00614 53.2 0.000 0.000 0.000 +2446470.5 0.91122 1.18342 -22744303.0 0.00565 0.00633 53.8 0.000 0.000 0.000 +2446471.5 0.88912 1.17631 -22746014.1 0.00544 0.00601 43.6 0.000 0.000 0.000 +2446472.5 0.86731 1.16945 -22747884.0 0.00525 0.00610 39.5 0.000 0.000 0.000 +2446473.5 0.84537 1.16336 -22749836.9 0.00536 0.00566 44.8 0.000 0.000 0.000 +2446474.5 0.82298 1.15843 -22751787.6 0.00536 0.00566 52.7 0.000 0.000 0.000 +2446475.5 0.80033 1.15443 -22753657.8 0.00536 0.00566 52.7 0.000 0.000 0.000 +2446476.5 0.77747 1.15127 -22755381.3 0.00570 0.00558 55.1 0.000 0.000 0.000 +2446477.5 0.75415 1.14892 -22756911.3 0.00468 0.00587 44.8 0.000 0.000 0.000 +2446478.5 0.72991 1.14726 -22758225.2 0.00541 0.00613 52.6 0.000 0.000 0.000 +2446479.5 0.70426 1.14617 -22759328.3 0.00508 0.00594 56.2 0.000 0.000 0.000 +2446480.5 0.67690 1.14551 -22760254.2 0.00508 0.00594 50.6 0.000 0.000 0.000 +2446481.5 0.64803 1.14524 -22761072.0 0.00612 0.00574 59.4 0.000 0.000 0.000 +2446482.5 0.61788 1.14544 -22761869.2 0.00568 0.00532 50.0 0.000 0.000 0.000 +2446483.5 0.58661 1.14617 -22762740.4 0.00530 0.00354 58.3 0.000 0.000 0.000 +2446484.5 0.55420 1.14738 -22763773.5 0.00530 0.00354 57.8 0.000 0.000 0.000 +2446485.5 0.52073 1.14900 -22765037.3 0.00498 0.00325 60.1 0.000 0.000 0.000 +2446486.5 0.48681 1.15092 -22766563.8 0.00454 0.00304 55.8 0.000 0.000 0.000 +2446487.5 0.45302 1.15299 -22768328.4 0.00569 0.00537 49.2 0.000 0.000 0.000 +2446488.5 0.41984 1.15501 -22770246.7 0.00518 0.00746 79.8 0.000 0.000 0.000 +2446489.5 0.38776 1.15678 -22772197.2 0.00544 0.00792 78.1 0.000 0.000 0.000 +2446490.5 0.35725 1.15819 -22774053.5 0.00544 0.00792 81.7 0.000 0.000 0.000 +2446491.5 0.32810 1.15957 -22775708.3 0.00758 0.00781 75.1 0.000 0.000 0.000 +2446492.5 0.29972 1.16130 -22777109.2 0.00634 0.00748 63.4 0.000 0.000 0.000 +2446493.5 0.27147 1.16356 -22778279.8 0.00616 0.00749 76.6 0.000 0.000 0.000 +2446494.5 0.24272 1.16652 -22779300.9 0.00639 0.00623 47.8 0.000 0.000 0.000 +2446495.5 0.21302 1.17028 -22780283.8 0.00639 0.00623 78.3 0.000 0.000 0.000 +2446496.5 0.18264 1.17474 -22781347.5 0.00581 0.00557 69.6 0.000 0.000 0.000 +2446497.5 0.15203 1.17976 -22782580.2 0.00586 0.00673 64.8 0.000 0.000 0.000 +2446498.5 0.12148 1.18503 -22784017.7 0.00489 0.00678 79.9 0.000 0.000 0.000 +2446499.5 0.09115 1.19017 -22785637.2 0.00632 0.00677 76.2 0.000 0.000 0.000 +2446500.5 0.06125 1.19481 -22787367.9 0.00708 0.00741 89.0 0.000 0.000 0.000 +2446501.5 0.03180 1.19895 -22789107.5 0.00685 0.00721 69.4 0.000 0.000 0.000 +2446502.5 0.00284 1.20279 -22790749.7 0.00709 0.00701 65.3 0.000 0.000 0.000 +2446503.5 -0.02535 1.20645 -22792206.7 0.00816 0.00679 79.7 0.000 0.000 0.000 +2446504.5 -0.05215 1.20995 -22793429.3 0.00792 0.00853 83.4 0.000 0.000 0.000 +2446505.5 -0.07727 1.21339 -22794423.1 0.00792 0.00853 82.8 0.000 0.000 0.000 +2446506.5 -0.10070 1.21721 -22795215.2 0.00697 0.00841 82.8 0.000 0.000 0.000 +2446507.5 -0.12264 1.22187 -22795850.3 0.00481 0.00853 59.2 0.000 0.000 0.000 +2446508.5 -0.14339 1.22756 -22796394.9 0.00340 0.00967 61.8 0.000 0.000 0.000 +2446509.5 -0.16328 1.23434 -22796930.6 0.00455 0.01003 68.7 0.000 0.000 0.000 +2446510.5 -0.18260 1.24225 -22797552.4 0.00485 0.00913 69.9 0.000 0.000 0.000 +2446511.5 -0.20165 1.25121 -22798366.7 0.00664 0.00806 58.4 0.000 0.000 0.000 +2446512.5 -0.22075 1.26121 -22799470.8 0.00562 0.00746 63.2 0.000 0.000 0.000 +2446513.5 -0.24044 1.27206 -22800928.1 0.00663 0.00681 67.4 0.000 0.000 0.000 +2446514.5 -0.26159 1.28338 -22802742.0 0.00663 0.00681 67.1 0.000 0.000 0.000 +2446515.5 -0.28483 1.29476 -22804845.9 0.00612 0.00559 61.9 0.000 0.000 0.000 +2446516.5 -0.30968 1.30605 -22807097.0 0.00551 0.00460 63.7 0.000 0.000 0.000 +2446517.5 -0.33527 1.31739 -22809312.8 0.00551 0.00460 63.5 0.000 0.000 0.000 +2446518.5 -0.36072 1.32894 -22811332.8 0.00432 0.00340 72.2 0.000 0.000 0.000 +2446519.5 -0.38537 1.34100 -22813062.2 0.00707 0.00967 79.4 0.000 0.000 0.000 +2446520.5 -0.40896 1.35385 -22814496.5 0.00707 0.00967 79.5 0.000 0.000 0.000 +2446521.5 -0.43154 1.36766 -22815718.6 0.00851 0.00919 66.9 0.000 0.000 0.000 +2446522.5 -0.45318 1.38257 -22816853.3 0.00693 0.00839 45.2 0.000 0.000 0.000 +2446523.5 -0.47436 1.39847 -22818031.9 0.00739 0.00889 40.7 0.000 0.000 0.000 +2446524.5 -0.49550 1.41479 -22819364.7 0.00739 0.00889 40.3 0.000 0.000 0.000 +2446525.5 -0.51682 1.43098 -22820913.9 0.00666 0.00878 32.8 0.000 0.000 0.000 +2446526.5 -0.53807 1.44733 -22822679.9 0.00585 0.00591 26.5 0.000 0.000 0.000 +2446527.5 -0.55856 1.46434 -22824609.1 0.00509 0.00656 28.3 0.000 0.000 0.000 +2446528.5 -0.57755 1.48252 -22826618.9 0.00441 0.00558 27.0 0.000 0.000 0.000 +2446529.5 -0.59459 1.50222 -22828615.4 0.00481 0.00655 32.9 0.000 0.000 0.000 +2446530.5 -0.60951 1.52358 -22830512.8 0.00456 0.00737 42.3 0.000 0.000 0.000 +2446531.5 -0.62272 1.54617 -22832255.8 0.00459 0.00682 35.5 0.000 0.000 0.000 +2446532.5 -0.63485 1.56934 -22833819.6 0.00407 0.00599 34.8 0.000 0.000 0.000 +2446533.5 -0.64655 1.59248 -22835209.8 0.00372 0.00491 47.6 0.000 0.000 0.000 +2446534.5 -0.65845 1.61515 -22836458.7 0.00384 0.00515 48.0 0.000 0.000 0.000 +2446535.5 -0.67098 1.63711 -22837619.9 0.00384 0.00515 47.9 0.000 0.000 0.000 +2446536.5 -0.68405 1.65828 -22838754.8 0.00363 0.00232 44.3 0.000 0.000 0.000 +2446537.5 -0.69759 1.67867 -22839927.7 0.00392 0.00305 48.7 0.000 0.000 0.000 +2446538.5 -0.71169 1.69842 -22841203.8 0.00382 0.00403 70.7 0.000 0.000 0.000 +2446539.5 -0.72645 1.71764 -22842644.3 0.00355 0.00390 64.9 0.000 0.000 0.000 +2446540.5 -0.74184 1.73642 -22844298.1 0.00402 0.00365 89.3 0.000 0.000 0.000 +2446541.5 -0.75741 1.75486 -22846198.5 0.00378 0.00358 74.9 0.000 0.000 0.000 +2446542.5 -0.77261 1.77312 -22848327.7 0.00376 0.00293 62.0 0.000 0.000 0.000 +2446543.5 -0.78689 1.79133 -22850599.0 0.00373 0.00203 60.9 0.000 0.000 0.000 +2446544.5 -0.79994 1.80971 -22852868.0 0.00373 0.00203 58.2 0.000 0.000 0.000 +2446545.5 -0.81153 1.82847 -22854979.2 0.00373 0.00203 61.1 0.000 0.000 0.000 +2446546.5 -0.82150 1.84778 -22856820.9 0.00382 0.00186 27.4 0.000 0.000 0.000 +2446547.5 -0.82997 1.86779 -22858366.1 0.00386 0.00483 25.1 0.000 0.000 0.000 +2446548.5 -0.83710 1.88864 -22859680.0 0.00445 0.00576 31.9 0.000 0.000 0.000 +2446549.5 -0.84310 1.91050 -22860893.2 0.00445 0.00576 31.9 0.000 0.000 0.000 +2446550.5 -0.84823 1.93347 -22862152.5 0.00455 0.00834 27.8 0.000 0.000 0.000 +2446551.5 -0.85284 1.95720 -22863571.0 0.00636 0.00796 25.0 0.000 0.000 0.000 +2446552.5 -0.85748 1.98101 -22865203.9 0.00660 0.00836 20.3 0.000 0.000 0.000 +2446553.5 -0.86292 2.00412 -22867048.4 0.00888 0.00978 29.7 0.000 0.000 0.000 +2446554.5 -0.86988 2.02594 -22869057.3 0.01011 0.01077 35.9 0.000 0.000 0.000 +2446555.5 -0.87847 2.04656 -22871154.7 0.00839 0.00956 44.5 0.000 0.000 0.000 +2446556.5 -0.88820 2.06621 -22873254.2 0.00672 0.00870 37.4 0.000 0.000 0.000 +2446557.5 -0.89855 2.08511 -22875273.6 0.00225 0.00224 38.8 0.000 0.000 0.000 +2446558.5 -0.90899 2.10346 -22877145.9 0.00225 0.00224 40.4 0.000 0.000 0.000 +2446559.5 -0.91905 2.12145 -22878829.7 0.00225 0.00224 48.6 0.000 0.000 0.000 +2446560.5 -0.92831 2.13926 -22880311.6 0.00225 0.00224 46.1 0.000 0.000 0.000 +2446561.5 -0.93670 2.15721 -22881597.7 0.00275 0.00204 37.0 0.000 0.000 0.000 +2446562.5 -0.94433 2.17561 -22882718.8 0.00623 0.00550 56.9 0.000 0.000 0.000 +2446563.5 -0.95131 2.19480 -22883725.9 0.00771 0.00658 67.3 0.000 0.000 0.000 +2446564.5 -0.95778 2.21510 -22884681.7 0.00726 0.00626 67.9 0.000 0.000 0.000 +2446565.5 -0.96412 2.23677 -22885647.1 0.00617 0.00699 57.5 0.000 0.000 0.000 +2446566.5 -0.97111 2.25985 -22886677.8 0.00617 0.00699 57.8 0.000 0.000 0.000 +2446567.5 -0.97846 2.28356 -22887857.6 0.00627 0.00700 61.6 0.000 0.000 0.000 +2446568.5 -0.98563 2.30688 -22889255.1 0.00702 0.00824 76.0 0.000 0.000 0.000 +2446569.5 -0.99249 2.32925 -22890885.6 0.00362 0.00701 69.2 0.000 0.000 0.000 +2446570.5 -0.99928 2.35071 -22892696.6 0.00418 0.00780 78.7 0.000 0.000 0.000 +2446571.5 -1.00601 2.37138 -22894574.7 0.00345 0.00474 82.1 0.000 0.000 0.000 +2446572.5 -1.01259 2.39138 -22896368.9 0.00516 0.00479 78.9 0.000 0.000 0.000 +2446573.5 -1.01883 2.41091 -22897939.3 0.00508 0.00515 81.6 0.000 0.000 0.000 +2446574.5 -1.02433 2.43034 -22899206.5 0.00508 0.00515 80.6 0.000 0.000 0.000 +2446575.5 -1.02858 2.45007 -22900185.1 0.00508 0.00515 72.3 0.000 0.000 0.000 +2446576.5 -1.03142 2.47016 -22900978.3 0.00430 0.00351 56.5 0.000 0.000 0.000 +2446577.5 -1.03307 2.49047 -22901727.6 0.00412 0.00348 49.3 0.000 0.000 0.000 +2446578.5 -1.03381 2.51086 -22902558.5 0.00294 0.00337 64.0 0.000 0.000 0.000 +2446579.5 -1.03386 2.53119 -22903539.4 0.00294 0.00337 52.3 0.000 0.000 0.000 +2446580.5 -1.03328 2.55131 -22904668.8 0.00294 0.00337 54.5 0.000 0.000 0.000 +2446581.5 -1.03225 2.57131 -22905904.6 0.00340 0.00427 52.3 0.000 0.000 0.000 +2446582.5 -1.03105 2.59147 -22907177.8 0.00329 0.00478 39.0 0.000 0.000 0.000 +2446583.5 -1.02993 2.61217 -22908411.4 0.00363 0.00555 55.4 0.000 0.000 0.000 +2446584.5 -1.02916 2.63375 -22909535.7 0.00361 0.00531 43.9 0.000 0.000 0.000 +2446585.5 -1.02892 2.65648 -22910497.2 0.00361 0.00531 44.2 0.000 0.000 0.000 +2446586.5 -1.02895 2.68007 -22911259.5 0.00325 0.00538 38.3 0.000 0.000 0.000 +2446587.5 -1.02884 2.70400 -22911807.7 0.00303 0.00637 26.1 0.000 0.000 0.000 +2446588.5 -1.02814 2.72773 -22912152.3 0.00277 0.00635 65.7 0.000 0.000 0.000 +2446589.5 -1.02641 2.75065 -22912331.5 0.00277 0.00635 77.6 0.000 0.000 0.000 +2446590.5 -1.02323 2.77227 -22912405.4 0.00308 0.00691 79.3 0.000 0.000 0.000 +2446591.5 -1.01826 2.79262 -22912443.4 0.00295 0.00590 80.1 0.000 0.000 0.000 +2446592.5 -1.01136 2.81205 -22912518.9 0.00745 0.00608 72.1 0.000 0.000 0.000 +2446593.5 -1.00258 2.83089 -22912706.3 0.00891 0.00502 110.4 0.000 0.000 0.000 +2446594.5 -0.99206 2.84944 -22913069.6 0.00948 0.00543 135.2 0.000 0.000 0.000 +2446595.5 -0.98005 2.86798 -22913654.9 0.00948 0.00543 132.9 0.000 0.000 0.000 +2446596.5 -0.96674 2.88686 -22914477.3 0.00804 0.00483 108.0 0.000 0.000 0.000 +2446597.5 -0.95257 2.90625 -22915519.3 0.00468 0.00299 42.5 0.000 0.000 0.000 +2446598.5 -0.93793 2.92618 -22916718.3 0.00488 0.00264 43.3 0.000 0.000 0.000 +2446599.5 -0.92316 2.94662 -22917964.1 0.00253 0.00213 39.4 0.000 0.000 0.000 +2446600.5 -0.90870 2.96760 -22919129.5 0.00253 0.00213 24.6 0.000 0.000 0.000 +2446601.5 -0.89523 2.98919 -22920095.8 0.00276 0.00219 27.5 0.000 0.000 0.000 +2446602.5 -0.88257 3.01123 -22920818.4 0.00304 0.00214 27.1 0.000 0.000 0.000 +2446603.5 -0.87015 3.03352 -22921344.3 0.00261 0.00158 23.7 0.000 0.000 0.000 +2446604.5 -0.85732 3.05597 -22921787.5 0.00473 0.00297 86.1 0.000 0.000 0.000 +2446605.5 -0.84351 3.07849 -22922283.7 0.00482 0.00555 90.1 0.000 0.000 0.000 +2446606.5 -0.82878 3.10109 -22922945.1 0.00437 0.00500 79.5 0.000 0.000 0.000 +2446607.5 -0.81333 3.12379 -22923815.1 0.00387 0.00695 85.0 0.000 0.000 0.000 +2446608.5 -0.79726 3.14656 -22924864.2 0.00223 0.00834 108.9 0.000 0.000 0.000 +2446609.5 -0.78076 3.16928 -22926017.5 0.00337 0.00862 117.1 0.000 0.000 0.000 +2446610.5 -0.76418 3.19164 -22927184.1 0.00337 0.00862 107.8 0.000 0.000 0.000 +2446611.5 -0.74800 3.21366 -22928277.8 0.00515 0.00722 96.8 0.000 0.000 0.000 +2446612.5 -0.73269 3.23557 -22929238.6 0.00485 0.00715 86.7 0.000 0.000 0.000 +2446613.5 -0.71845 3.25747 -22930029.1 0.00618 0.00591 71.7 0.000 0.000 0.000 +2446614.5 -0.70539 3.27944 -22930633.0 0.00571 0.00431 51.6 0.000 0.000 0.000 +2446615.5 -0.69344 3.30149 -22931058.8 0.00568 0.00420 35.8 0.000 0.000 0.000 +2446616.5 -0.68188 3.32355 -22931337.5 0.00531 0.00447 35.1 0.000 0.000 0.000 +2446617.5 -0.66985 3.34561 -22931521.5 0.00402 0.00425 37.6 0.000 0.000 0.000 +2446618.5 -0.65673 3.36759 -22931681.3 0.00478 0.00284 40.4 0.000 0.000 0.000 +2446619.5 -0.64299 3.38929 -22931899.2 0.00478 0.00284 44.2 0.000 0.000 0.000 +2446620.5 -0.62935 3.41044 -22932250.4 0.00899 0.00989 44.4 0.000 0.000 0.000 +2446621.5 -0.61625 3.43057 -22932785.6 0.00820 0.00973 66.6 0.000 0.000 0.000 +2446622.5 -0.60375 3.44909 -22933529.0 0.00826 0.00934 65.2 0.000 0.000 0.000 +2446623.5 -0.59182 3.46539 -22934472.6 0.00921 0.01008 69.8 0.000 0.000 0.000 +2446624.5 -0.57973 3.47925 -22935566.6 0.00905 0.01004 69.0 0.000 0.000 0.000 +2446625.5 -0.56619 3.49108 -22936727.6 0.00905 0.01004 68.5 0.000 0.000 0.000 +2446626.5 -0.55105 3.50161 -22937861.1 0.00455 0.00640 63.9 0.000 0.000 0.000 +2446627.5 -0.53458 3.51160 -22938862.6 0.00449 0.00655 61.9 0.000 0.000 0.000 +2446628.5 -0.51692 3.52175 -22939646.0 0.00343 0.00696 45.8 0.000 0.000 0.000 +2446629.5 -0.49806 3.53276 -22940174.9 0.00343 0.00696 56.0 0.000 0.000 0.000 +2446630.5 -0.47804 3.54515 -22940486.4 0.00337 0.00725 56.6 0.000 0.000 0.000 +2446631.5 -0.45723 3.55871 -22940693.5 0.00314 0.00674 49.9 0.000 0.000 0.000 +2446632.5 -0.43615 3.57301 -22940945.2 0.00447 0.00576 47.1 0.000 0.000 0.000 +2446633.5 -0.41533 3.58761 -22941377.5 0.00504 0.00394 52.7 0.000 0.000 0.000 +2446634.5 -0.39541 3.60216 -22942065.1 0.00504 0.00394 52.2 0.000 0.000 0.000 +2446635.5 -0.37709 3.61637 -22943000.8 0.00341 0.00391 37.4 0.000 0.000 0.000 +2446636.5 -0.36048 3.63003 -22944102.0 0.00542 0.00362 32.9 0.000 0.000 0.000 +2446637.5 -0.34512 3.64294 -22945246.7 0.00524 0.00338 38.5 0.000 0.000 0.000 +2446638.5 -0.33048 3.65489 -22946316.5 0.00538 0.00314 40.7 0.000 0.000 0.000 +2446639.5 -0.31618 3.66581 -22947222.4 0.00538 0.00314 39.6 0.000 0.000 0.000 +2446640.5 -0.30255 3.67602 -22947922.2 0.00538 0.00314 40.3 0.000 0.000 0.000 +2446641.5 -0.28977 3.68579 -22948402.6 0.00495 0.00545 40.5 0.000 0.000 0.000 +2446642.5 -0.27776 3.69532 -22948673.9 0.00367 0.00914 50.1 0.000 0.000 0.000 +2446643.5 -0.26615 3.70483 -22948774.0 0.00390 0.01029 56.5 0.000 0.000 0.000 +2446644.5 -0.25449 3.71456 -22948766.1 0.00348 0.01071 58.5 0.000 0.000 0.000 +2446645.5 -0.24223 3.72458 -22948726.3 0.00334 0.01074 58.3 0.000 0.000 0.000 +2446646.5 -0.22872 3.73411 -22948727.1 0.00315 0.01009 53.3 0.000 0.000 0.000 +2446647.5 -0.21415 3.74315 -22948866.0 0.00340 0.00948 50.1 0.000 0.000 0.000 +2446648.5 -0.19899 3.75198 -22949229.5 0.00366 0.00653 46.7 0.000 0.000 0.000 +2446649.5 -0.18377 3.76067 -22949872.3 0.00306 0.00546 41.5 0.000 0.000 0.000 +2446650.5 -0.16899 3.76914 -22950807.0 0.00306 0.00546 37.5 0.000 0.000 0.000 +2446651.5 -0.15491 3.77738 -22951984.1 0.00422 0.00475 62.6 0.000 0.000 0.000 +2446652.5 -0.14149 3.78554 -22953303.9 0.00409 0.00444 56.4 0.000 0.000 0.000 +2446653.5 -0.12863 3.79375 -22954641.3 0.00525 0.00548 76.2 0.000 0.000 0.000 +2446654.5 -0.11621 3.80219 -22955869.2 0.00455 0.00591 76.0 0.000 0.000 0.000 +2446655.5 -0.10384 3.81099 -22956887.6 0.00455 0.00591 71.7 0.000 0.000 0.000 +2446656.5 -0.09122 3.81996 -22957644.4 0.00380 0.00560 65.8 0.000 0.000 0.000 +2446657.5 -0.07820 3.82883 -22958152.0 0.00200 0.00597 27.7 0.000 0.000 0.000 +2446658.5 -0.06463 3.83750 -22958494.5 0.00084 0.00578 33.6 0.000 0.000 0.000 +2446659.5 -0.05036 3.84594 -22958803.4 0.00259 0.00673 36.4 0.000 0.000 0.000 +2446660.5 -0.03525 3.85406 -22959218.8 0.00287 0.00660 38.1 0.000 0.000 0.000 +2446661.5 -0.01917 3.86198 -22959848.3 0.00312 0.00680 35.6 0.000 0.000 0.000 +2446662.5 -0.00203 3.86989 -22960732.3 0.00346 0.00622 28.4 0.000 0.000 0.000 +2446663.5 0.01621 3.87797 -22961834.0 0.00431 0.00692 37.4 0.000 0.000 0.000 +2446664.5 0.03533 3.88615 -22963058.3 0.00431 0.00692 42.9 0.000 0.000 0.000 +2446665.5 0.05503 3.89427 -22964287.2 0.00369 0.00555 35.9 0.000 0.000 0.000 +2446666.5 0.07492 3.90214 -22965418.2 0.00712 0.00519 29.9 0.000 0.000 0.000 +2446667.5 0.09476 3.90967 -22966382.2 0.00800 0.00540 29.6 0.000 0.000 0.000 +2446668.5 0.11434 3.91677 -22967149.5 0.01113 0.00520 37.8 0.000 0.000 0.000 +2446669.5 0.13343 3.92334 -22967723.8 0.00934 0.00443 41.0 0.000 0.000 0.000 +2446670.5 0.15159 3.92934 -22968134.3 0.00934 0.00443 54.6 0.000 0.000 0.000 +2446671.5 0.16889 3.93492 -22968427.7 0.00765 0.00647 55.3 0.000 0.000 0.000 +2446672.5 0.18557 3.94035 -22968664.9 0.00695 0.00655 50.6 0.000 0.000 0.000 +2446673.5 0.20174 3.94590 -22968914.2 0.00287 0.00653 56.7 0.000 0.000 0.000 +2446674.5 0.21747 3.95184 -22969242.3 0.00374 0.00610 55.0 0.000 0.000 0.000 +2446675.5 0.23284 3.95831 -22969711.8 0.00385 0.00671 53.3 0.000 0.000 0.000 +2446676.5 0.24796 3.96495 -22970390.6 0.00347 0.00553 34.8 0.000 0.000 0.000 +2446677.5 0.26299 3.97124 -22971322.3 0.00345 0.00792 39.4 0.000 0.000 0.000 +2446678.5 0.27795 3.97663 -22972506.4 0.00373 0.00911 48.5 0.000 0.000 0.000 +2446679.5 0.29261 3.98050 -22973893.0 0.00373 0.00911 63.9 0.000 0.000 0.000 +2446680.5 0.30679 3.98230 -22975391.1 0.00315 0.00952 69.9 0.000 0.000 0.000 +2446681.5 0.32059 3.98217 -22976880.4 0.00365 0.01017 65.9 0.000 0.000 0.000 +2446682.5 0.33417 3.98078 -22978247.0 0.00368 0.00983 63.0 0.000 0.000 0.000 +2446683.5 0.34767 3.97882 -22979414.0 0.00417 0.01018 77.6 0.000 0.000 0.000 +2446684.5 0.36128 3.97706 -22980359.5 0.00417 0.01018 74.3 0.000 0.000 0.000 +2446685.5 0.37530 3.97631 -22981126.9 0.00417 0.01018 61.2 0.000 0.000 0.000 +2446686.5 0.38956 3.97668 -22981829.3 0.00375 0.00925 46.6 0.000 0.000 0.000 +2446687.5 0.40388 3.97782 -22982605.6 0.00331 0.00803 44.9 0.000 0.000 0.000 +2446688.5 0.41811 3.97924 -22983578.8 0.00231 0.00610 46.1 0.000 0.000 0.000 +2446689.5 0.43214 3.98046 -22984825.8 0.00173 0.00476 44.8 0.000 0.000 0.000 +2446690.5 0.44584 3.98102 -22986356.0 0.00173 0.00476 36.8 0.000 0.000 0.000 +2446691.5 0.45911 3.98070 -22988104.3 0.00157 0.00500 35.7 0.000 0.000 0.000 +2446692.5 0.47194 3.97944 -22989960.3 0.00265 0.00431 33.3 0.000 0.000 0.000 +2446693.5 0.48431 3.97725 -22991804.2 0.00309 0.00473 37.5 0.000 0.000 0.000 +2446694.5 0.49615 3.97432 -22993534.0 0.00309 0.00473 35.0 0.000 0.000 0.000 +2446695.5 0.50740 3.97079 -22995082.5 0.00351 0.00368 41.4 0.000 0.000 0.000 +2446696.5 0.51806 3.96673 -22996427.0 0.00311 0.00442 34.7 0.000 0.000 0.000 +2446697.5 0.52840 3.96224 -22997584.4 0.00288 0.00430 29.1 0.000 0.000 0.000 +2446698.5 0.53873 3.95744 -22998599.9 0.00196 0.00490 31.3 0.000 0.000 0.000 +2446699.5 0.54936 3.95249 -22999540.8 0.00236 0.00437 49.1 0.000 0.000 0.000 +2446700.5 0.56047 3.94767 -23000487.4 0.00236 0.00437 47.5 0.000 0.000 0.000 +2446701.5 0.57207 3.94330 -23001520.3 0.00210 0.00640 37.5 0.000 0.000 0.000 +2446702.5 0.58409 3.93964 -23002713.9 0.00277 0.00640 37.3 0.000 0.000 0.000 +2446703.5 0.59633 3.93695 -23004128.9 0.00306 0.00758 56.1 0.000 0.000 0.000 +2446704.5 0.60852 3.93555 -23005800.3 0.00288 0.00729 56.5 0.000 0.000 0.000 +2446705.5 0.62042 3.93557 -23007726.3 0.00279 0.00804 37.3 0.000 0.000 0.000 +2446706.5 0.63202 3.93656 -23009860.8 0.00252 0.00711 42.9 0.000 0.000 0.000 +2446707.5 0.64338 3.93783 -23012105.5 0.00229 0.00765 44.2 0.000 0.000 0.000 +2446708.5 0.65458 3.93880 -23014323.9 0.00122 0.00637 50.0 0.000 0.000 0.000 +2446709.5 0.66580 3.93896 -23016380.2 0.00122 0.00637 50.6 0.000 0.000 0.000 +2446710.5 0.67719 3.93790 -23018182.0 0.00188 0.00662 55.1 0.000 0.000 0.000 +2446711.5 0.68875 3.93557 -23019706.4 0.00272 0.00590 48.9 0.000 0.000 0.000 +2446712.5 0.70049 3.93222 -23021004.4 0.00283 0.00507 42.5 0.000 0.000 0.000 +2446713.5 0.71238 3.92814 -23022185.5 0.00339 0.00377 45.0 0.000 0.000 0.000 +2446714.5 0.72450 3.92368 -23023378.8 0.00401 0.00361 44.3 0.000 0.000 0.000 +2446715.5 0.73710 3.91930 -23024692.7 0.00401 0.00361 40.0 0.000 0.000 0.000 +2446716.5 0.75046 3.91522 -23026203.5 0.00596 0.00323 31.1 0.000 0.000 0.000 +2446717.5 0.76484 3.91155 -23027931.3 0.00597 0.00254 29.2 0.000 0.000 0.000 +2446718.5 0.78036 3.90840 -23029839.6 0.00669 0.00259 25.0 0.000 0.000 0.000 +2446719.5 0.79695 3.90579 -23031852.1 0.00669 0.00259 27.4 0.000 0.000 0.000 +2446720.5 0.81436 3.90370 -23033875.8 0.00662 0.00266 27.8 0.000 0.000 0.000 +2446721.5 0.83150 3.90190 -23035812.9 0.00760 0.00255 32.2 0.000 0.000 0.000 +2446722.5 0.84759 3.90020 -23037596.5 0.00716 0.00230 30.5 0.000 0.000 0.000 +2446723.5 0.86212 3.89844 -23039195.8 0.00638 0.00134 31.8 0.000 0.000 0.000 +2446724.5 0.87469 3.89653 -23040614.9 0.00578 0.00126 38.4 0.000 0.000 0.000 +2446725.5 0.88522 3.89442 -23041887.5 0.00654 0.00199 35.7 0.000 0.000 0.000 +2446726.5 0.89449 3.89208 -23043067.4 0.00649 0.00195 41.0 0.000 0.000 0.000 +2446727.5 0.90359 3.88947 -23044221.0 0.00620 0.00205 43.7 0.000 0.000 0.000 +2446728.5 0.91344 3.88655 -23045414.5 0.00501 0.00245 49.1 0.000 0.000 0.000 +2446729.5 0.92406 3.88327 -23046690.8 0.00539 0.00259 48.3 0.000 0.000 0.000 +2446730.5 0.93498 3.87950 -23048084.5 0.00539 0.00259 49.0 0.000 0.000 0.000 +2446731.5 0.94598 3.87508 -23049644.1 0.00535 0.00350 52.7 0.000 0.000 0.000 +2446732.5 0.95703 3.86984 -23051403.3 0.00443 0.00302 45.7 0.000 0.000 0.000 +2446733.5 0.96841 3.86370 -23053355.2 0.00479 0.00309 28.5 0.000 0.000 0.000 +2446734.5 0.98054 3.85659 -23055441.6 0.00479 0.00309 28.6 0.000 0.000 0.000 +2446735.5 0.99367 3.84849 -23057553.1 0.01097 0.00490 28.6 0.000 0.000 0.000 +2446736.5 1.00746 3.83955 -23059546.5 0.00967 0.00541 23.6 0.000 0.000 0.000 +2446737.5 1.02149 3.82992 -23061294.0 0.00565 0.00564 12.0 0.000 0.000 0.000 +2446738.5 1.03539 3.81977 -23062731.8 0.00555 0.00553 9.0 0.000 0.000 0.000 +2446739.5 1.04939 3.80938 -23063884.4 0.00610 0.00589 14.9 0.000 0.000 0.000 +2446740.5 1.06462 3.79934 -23064854.7 0.00619 0.00580 19.9 0.000 0.000 0.000 +2446741.5 1.08179 3.79059 -23065788.8 0.00313 0.00550 20.4 0.000 0.000 0.000 +2446742.5 1.10048 3.78276 -23066827.7 0.00313 0.00550 23.8 0.000 0.000 0.000 +2446743.5 1.11993 3.77515 -23068063.9 0.00337 0.00501 27.9 0.000 0.000 0.000 +2446744.5 1.13902 3.76740 -23069532.4 0.00607 0.00529 93.2 0.000 0.000 0.000 +2446745.5 1.15689 3.75922 -23071206.9 0.00607 0.00529 95.1 0.000 0.000 0.000 +2446746.5 1.17303 3.75039 -23073015.1 0.00555 0.00341 87.5 0.000 0.000 0.000 +2446747.5 1.18700 3.74074 -23074864.0 0.00491 0.00311 55.0 0.000 0.000 0.000 +2446748.5 1.19841 3.73024 -23076657.4 0.00521 0.00301 53.4 0.000 0.000 0.000 +2446749.5 1.20694 3.71888 -23078313.6 0.00521 0.00301 49.4 0.000 0.000 0.000 +2446750.5 1.21241 3.70668 -23079779.0 0.00703 0.00419 27.4 0.000 0.000 0.000 +2446751.5 1.21544 3.69386 -23081036.1 0.00689 0.00388 24.7 0.000 0.000 0.000 +2446752.5 1.21688 3.68074 -23082101.5 0.00649 0.00345 21.7 0.000 0.000 0.000 +2446753.5 1.21750 3.66758 -23083021.0 0.00672 0.00439 30.8 0.000 0.000 0.000 +2446754.5 1.21754 3.65445 -23083860.8 0.00672 0.00439 29.3 0.000 0.000 0.000 +2446755.5 1.21714 3.64136 -23084696.3 0.00672 0.00439 29.6 0.000 0.000 0.000 +2446756.5 1.21664 3.62837 -23085604.2 0.00393 0.00177 20.8 0.000 0.000 0.000 +2446757.5 1.21634 3.61551 -23086650.8 0.00459 0.00166 21.8 0.000 0.000 0.000 +2446758.5 1.21655 3.60274 -23087885.4 0.00352 0.00190 32.6 0.000 0.000 0.000 +2446759.5 1.21756 3.59001 -23089335.9 0.00397 0.00060 36.2 0.000 0.000 0.000 +2446760.5 1.21970 3.57730 -23091002.3 0.00397 0.00060 36.7 0.000 0.000 0.000 +2446761.5 1.22319 3.56459 -23092843.6 0.00318 0.00126 41.8 0.000 0.000 0.000 +2446762.5 1.22821 3.55184 -23094771.9 0.00360 0.00152 32.2 0.000 0.000 0.000 +2446763.5 1.23501 3.53909 -23096659.2 0.00291 0.00173 35.4 0.000 0.000 0.000 +2446764.5 1.24387 3.52633 -23098368.5 0.00304 0.00180 33.9 0.000 0.000 0.000 +2446765.5 1.25498 3.51357 -23099803.0 0.00281 0.00335 34.8 0.000 0.000 0.000 +2446766.5 1.26799 3.50078 -23100951.3 0.00314 0.00330 30.5 0.000 0.000 0.000 +2446767.5 1.28224 3.48795 -23101893.5 0.00423 0.00436 32.1 0.000 0.000 0.000 +2446768.5 1.29707 3.47505 -23102773.8 0.00523 0.00582 43.4 0.000 0.000 0.000 +2446769.5 1.31184 3.46187 -23103746.9 0.00523 0.00582 45.4 0.000 0.000 0.000 +2446770.5 1.32599 3.44816 -23104921.0 0.00523 0.00582 45.4 0.000 0.000 0.000 +2446771.5 1.33943 3.43379 -23106323.5 0.00504 0.00466 39.0 0.000 0.000 0.000 +2446772.5 1.35195 3.41885 -23107917.0 0.00458 0.00433 35.5 0.000 0.000 0.000 +2446773.5 1.36325 3.40348 -23109618.3 0.00468 0.00420 44.5 0.000 0.000 0.000 +2446774.5 1.37305 3.38784 -23111326.9 0.00222 0.00225 32.1 0.000 0.000 0.000 +2446775.5 1.38122 3.37205 -23112951.3 0.00222 0.00225 28.5 0.000 0.000 0.000 +2446776.5 1.38796 3.35626 -23114419.6 0.00231 0.00235 87.7 0.000 0.000 0.000 +2446777.5 1.39353 3.34071 -23115685.0 0.00265 0.00202 73.5 0.000 0.000 0.000 +2446778.5 1.39822 3.32564 -23116727.6 0.00280 0.00167 93.0 0.000 0.000 0.000 +2446779.5 1.40235 3.31133 -23117555.9 0.00305 0.00166 94.3 0.000 0.000 0.000 +2446780.5 1.40624 3.29801 -23118214.1 0.00279 0.00468 97.6 0.000 0.000 0.000 +2446781.5 1.41016 3.28577 -23118784.3 0.00241 0.00424 84.0 0.000 0.000 0.000 +2446782.5 1.41430 3.27462 -23119362.3 0.00302 0.00347 60.7 0.000 0.000 0.000 +2446783.5 1.41887 3.26455 -23120042.1 0.00301 0.00441 74.8 0.000 0.000 0.000 +2446784.5 1.42404 3.25528 -23120900.7 0.00301 0.00441 74.3 0.000 0.000 0.000 +2446785.5 1.42997 3.24648 -23121990.6 0.00369 0.00440 59.7 0.000 0.000 0.000 +2446786.5 1.43628 3.23781 -23123326.0 0.00387 0.00309 56.1 0.000 0.000 0.000 +2446787.5 1.44223 3.22890 -23124890.3 0.00387 0.00309 56.2 0.000 0.000 0.000 +2446788.5 1.44703 3.21938 -23126637.4 0.00450 0.00439 30.3 0.000 0.000 0.000 +2446789.5 1.45032 3.20914 -23128495.0 0.00450 0.00439 59.4 0.000 0.000 0.000 +2446790.5 1.45241 3.19830 -23130368.0 0.00450 0.00439 62.6 0.000 0.000 0.000 +2446791.5 1.45370 3.18701 -23132144.0 0.00366 0.00232 77.9 0.000 0.000 0.000 +2446792.5 1.45462 3.17544 -23133723.8 0.00417 0.00216 62.9 0.000 0.000 0.000 +2446793.5 1.45556 3.16372 -23135057.6 0.00417 0.00216 62.3 0.000 0.000 0.000 +2446794.5 1.45694 3.15201 -23136171.9 0.00417 0.00216 61.7 0.000 0.000 0.000 +2446795.5 1.45910 3.14043 -23137171.9 0.00417 0.00216 28.7 0.000 0.000 0.000 +2446796.5 1.46183 3.12892 -23138210.5 0.00350 0.00374 17.5 0.000 0.000 0.000 +2446797.5 1.46465 3.11733 -23139426.9 0.00350 0.00374 25.6 0.000 0.000 0.000 +2446798.5 1.46711 3.10553 -23140892.9 0.00160 0.00557 38.1 0.000 0.000 0.000 +2446799.5 1.46873 3.09334 -23142592.0 0.00160 0.00557 41.9 0.000 0.000 0.000 +2446800.5 1.46909 3.08070 -23144436.3 0.00443 0.00455 47.1 0.000 0.000 0.000 +2446801.5 1.46781 3.06772 -23146304.4 0.00393 0.00406 36.1 0.000 0.000 0.000 +2446802.5 1.46466 3.05446 -23148079.5 0.00343 0.00346 30.3 0.000 0.000 0.000 +2446803.5 1.45949 3.04085 -23149676.0 0.00362 0.00242 26.5 0.000 0.000 0.000 +2446804.5 1.45235 3.02678 -23151045.1 0.00388 0.00135 31.4 0.000 0.000 0.000 +2446805.5 1.44382 3.01223 -23152172.2 0.00388 0.00135 29.0 0.000 0.000 0.000 +2446806.5 1.43480 2.99722 -23153077.1 0.00389 0.00229 23.8 0.000 0.000 0.000 +2446807.5 1.42611 2.98184 -23153805.3 0.00621 0.00481 27.6 0.000 0.000 0.000 +2446808.5 1.41845 2.96622 -23154422.5 0.00772 0.00587 40.2 0.000 0.000 0.000 +2446809.5 1.41250 2.95054 -23155009.5 0.00762 0.00645 41.0 0.000 0.000 0.000 +2446810.5 1.40874 2.93498 -23155650.2 0.00762 0.00645 37.8 0.000 0.000 0.000 +2446811.5 1.40643 2.91969 -23156414.9 0.00821 0.00630 35.4 0.000 0.000 0.000 +2446812.5 1.40469 2.90447 -23157361.3 0.00806 0.00630 38.4 0.000 0.000 0.000 +2446813.5 1.40281 2.88917 -23158520.8 0.00719 0.00583 41.5 0.000 0.000 0.000 +2446814.5 1.40008 2.87384 -23159893.8 0.00795 0.00449 42.2 0.000 0.000 0.000 +2446815.5 1.39594 2.85857 -23161449.0 0.00887 0.00507 44.1 0.000 0.000 0.000 +2446816.5 1.39045 2.84376 -23163120.0 0.00779 0.00483 38.3 0.000 0.000 0.000 +2446817.5 1.38437 2.82983 -23164812.7 0.00724 0.00512 35.2 0.000 0.000 0.000 +2446818.5 1.37876 2.81699 -23166425.0 0.00663 0.00493 32.9 0.000 0.000 0.000 +2446819.5 1.37450 2.80529 -23167861.7 0.00761 0.00974 35.8 0.000 0.000 0.000 +2446820.5 1.37185 2.79452 -23169063.0 0.00807 0.01125 31.9 0.000 0.000 0.000 +2446821.5 1.37057 2.78474 -23170035.5 0.00710 0.01084 27.8 0.000 0.000 0.000 +2446822.5 1.37030 2.77617 -23170862.1 0.00732 0.00597 26.2 0.000 0.000 0.000 +2446823.5 1.37020 2.76862 -23171685.2 0.00813 0.00608 31.5 0.000 0.000 0.000 +2446824.5 1.36854 2.76121 -23172662.0 0.00769 0.00599 31.3 0.000 0.000 0.000 +2446825.5 1.36354 2.75300 -23173909.5 0.00648 0.00272 27.4 0.000 0.000 0.000 +2446826.5 1.35400 2.74323 -23175463.7 0.00663 0.00333 27.0 0.000 0.000 0.000 +2446827.5 1.34125 2.73179 -23177267.6 0.00779 0.00425 28.5 0.000 0.000 0.000 +2446828.5 1.32726 2.71881 -23179202.6 0.00783 0.00325 28.4 0.000 0.000 0.000 +2446829.5 1.31392 2.70457 -23181134.6 0.00713 0.00400 30.1 0.000 0.000 0.000 +2446830.5 1.30307 2.68947 -23182954.3 0.00755 0.00391 29.7 0.000 0.000 0.000 +2446831.5 1.29591 2.67417 -23184590.7 0.00756 0.00383 27.9 0.000 0.000 0.000 +2446832.5 1.29223 2.65923 -23186015.9 0.00678 0.00329 69.7 0.000 0.000 0.000 +2446833.5 1.29094 2.64499 -23187241.2 0.00661 0.00256 76.1 0.000 0.000 0.000 +2446834.5 1.29053 2.63184 -23188303.9 0.00464 0.00194 84.3 0.000 0.000 0.000 +2446835.5 1.28922 2.62033 -23189257.3 0.00572 0.00247 101.1 0.000 0.000 0.000 +2446836.5 1.28606 2.61080 -23190168.1 0.00512 0.00283 87.9 0.000 0.000 0.000 +2446837.5 1.28169 2.60286 -23191117.5 0.00504 0.00272 80.7 0.000 0.000 0.000 +2446838.5 1.27686 2.59597 -23192183.3 0.00465 0.00266 65.5 0.000 0.000 0.000 +2446839.5 1.27203 2.58960 -23193424.7 0.00435 0.00316 67.5 0.000 0.000 0.000 +2446840.5 1.26766 2.58321 -23194876.3 0.00356 0.00315 70.3 0.000 0.000 0.000 +2446841.5 1.26389 2.57649 -23196548.6 0.00531 0.00338 46.1 0.000 0.000 0.000 +2446842.5 1.26043 2.56926 -23198415.6 0.00444 0.00290 39.8 0.000 0.000 0.000 +2446843.5 1.25692 2.56138 -23200414.4 0.00443 0.00260 46.6 0.000 0.000 0.000 +2446844.5 1.25309 2.55267 -23202454.9 0.00447 0.00286 30.9 0.000 0.000 0.000 +2446845.5 1.24876 2.54304 -23204435.4 0.00442 0.00291 31.3 0.000 0.000 0.000 +2446846.5 1.24418 2.53284 -23206269.4 0.00436 0.00304 22.3 0.000 0.000 0.000 +2446847.5 1.23964 2.52226 -23207906.8 0.00358 0.00329 18.0 0.000 0.000 0.000 +2446848.5 1.23527 2.51141 -23209350.7 0.00276 0.00304 17.3 0.000 0.000 0.000 +2446849.5 1.23106 2.50030 -23210668.2 0.00318 0.00382 16.6 0.000 0.000 0.000 +2446850.5 1.22680 2.48889 -23211981.7 0.00318 0.00382 16.0 0.000 0.000 0.000 +2446851.5 1.22265 2.47757 -23213439.9 0.00355 0.00390 15.7 0.000 0.000 0.000 +2446852.5 1.21891 2.46640 -23215174.4 0.00386 0.00395 17.3 0.000 0.000 0.000 +2446853.5 1.21514 2.45526 -23217251.0 0.00396 0.00288 20.5 0.000 0.000 0.000 +2446854.5 1.21072 2.44395 -23219647.9 0.00572 0.00489 23.9 0.000 0.000 0.000 +2446855.5 1.20493 2.43220 -23222262.0 0.00502 0.00416 26.9 0.000 0.000 0.000 +2446856.5 1.19758 2.41977 -23224935.9 0.00494 0.00392 24.8 0.000 0.000 0.000 +2446857.5 1.18878 2.40650 -23227509.7 0.00602 0.00344 28.5 0.000 0.000 0.000 +2446858.5 1.17865 2.39224 -23229862.2 0.00632 0.00335 38.3 0.000 0.000 0.000 +2446859.5 1.16719 2.37695 -23231925.1 0.00632 0.00335 48.1 0.000 0.000 0.000 +2446860.5 1.15437 2.36069 -23233681.0 0.00632 0.00335 50.7 0.000 0.000 0.000 +2446861.5 1.14104 2.34384 -23235165.3 0.00539 0.00347 40.8 0.000 0.000 0.000 +2446862.5 1.12819 2.32682 -23236445.2 0.00648 0.00373 34.9 0.000 0.000 0.000 +2446863.5 1.11677 2.31007 -23237603.4 0.00608 0.00414 36.8 0.000 0.000 0.000 +2446864.5 1.10771 2.29402 -23238731.2 0.00608 0.00414 36.5 0.000 0.000 0.000 +2446865.5 1.10181 2.27907 -23239920.9 0.00608 0.00414 29.8 0.000 0.000 0.000 +2446866.5 1.09890 2.26567 -23241255.4 0.00516 0.00366 20.9 0.000 0.000 0.000 +2446867.5 1.09799 2.25416 -23242789.8 0.00476 0.00307 16.7 0.000 0.000 0.000 +2446868.5 1.09830 2.24461 -23244548.5 0.00494 0.00323 20.5 0.000 0.000 0.000 +2446869.5 1.09919 2.23707 -23246519.0 0.00220 0.00247 17.8 0.000 0.000 0.000 +2446870.5 1.10008 2.23145 -23248649.2 0.00220 0.00247 16.5 0.000 0.000 0.000 +2446871.5 1.10040 2.22731 -23250854.2 0.00225 0.00342 23.1 0.000 0.000 0.000 +2446872.5 1.09948 2.22408 -23253030.4 0.00465 0.00380 21.3 0.000 0.000 0.000 +2446873.5 1.09657 2.22112 -23255077.9 0.00595 0.00472 34.9 0.000 0.000 0.000 +2446874.5 1.09075 2.21762 -23256929.0 0.00595 0.00472 35.0 0.000 0.000 0.000 +2446875.5 1.08113 2.21280 -23258567.4 0.00642 0.00476 37.0 0.000 0.000 0.000 +2446876.5 1.06748 2.20631 -23260029.7 0.00628 0.00631 32.9 0.000 0.000 0.000 +2446877.5 1.05100 2.19858 -23261405.0 0.00703 0.00615 24.7 0.000 0.000 0.000 +2446878.5 1.03319 2.19019 -23262812.6 0.00849 0.00650 26.2 0.000 0.000 0.000 +2446879.5 1.01557 2.18175 -23264367.8 0.00737 0.00651 27.9 0.000 0.000 0.000 +2446880.5 0.99953 2.17373 -23266148.1 0.00737 0.00651 28.1 0.000 0.000 0.000 +2446881.5 0.98605 2.16625 -23268172.4 0.00740 0.00613 21.8 0.000 0.000 0.000 +2446882.5 0.97560 2.15929 -23270386.7 0.00701 0.00580 19.7 0.000 0.000 0.000 +2446883.5 0.96765 2.15281 -23272682.3 0.00568 0.00214 20.2 0.000 0.000 0.000 +2446884.5 0.96140 2.14671 -23274929.9 0.00574 0.00436 26.5 0.000 0.000 0.000 +2446885.5 0.95617 2.14091 -23277016.2 0.00478 0.00519 28.5 0.000 0.000 0.000 +2446886.5 0.95159 2.13554 -23278871.9 0.00479 0.00606 26.9 0.000 0.000 0.000 +2446887.5 0.94733 2.13091 -23280480.4 0.00526 0.00636 38.1 0.000 0.000 0.000 +2446888.5 0.94290 2.12721 -23281870.2 0.00586 0.00855 60.0 0.000 0.000 0.000 +2446889.5 0.93742 2.12422 -23283100.8 0.00586 0.00855 60.1 0.000 0.000 0.000 +2446890.5 0.93008 2.12176 -23284247.1 0.00581 0.00799 54.5 0.000 0.000 0.000 +2446891.5 0.92084 2.11973 -23285384.2 0.00439 0.00776 37.5 0.000 0.000 0.000 +2446892.5 0.90995 2.11781 -23286584.2 0.00389 0.00591 26.3 0.000 0.000 0.000 +2446893.5 0.89763 2.11563 -23287908.8 0.00262 0.00501 11.3 0.000 0.000 0.000 +2446894.5 0.88414 2.11279 -23289403.5 0.00262 0.00501 13.6 0.000 0.000 0.000 +2446895.5 0.86991 2.10887 -23291091.2 0.00262 0.00501 14.9 0.000 0.000 0.000 +2446896.5 0.85520 2.10404 -23292969.8 0.00245 0.00572 15.1 0.000 0.000 0.000 +2446897.5 0.84011 2.09851 -23295006.6 0.00195 0.00697 17.3 0.000 0.000 0.000 +2446898.5 0.82484 2.09234 -23297130.9 0.00079 0.00755 24.2 0.000 0.000 0.000 +2446899.5 0.80955 2.08554 -23299240.8 0.00075 0.00866 28.5 0.000 0.000 0.000 +2446900.5 0.79444 2.07829 -23301226.6 0.00075 0.00866 26.3 0.000 0.000 0.000 +2446901.5 0.77972 2.07133 -23303000.8 0.00107 0.00774 23.5 0.000 0.000 0.000 +2446902.5 0.76562 2.06508 -23304519.5 0.00107 0.00774 26.6 0.000 0.000 0.000 +2446903.5 0.75239 2.05973 -23305808.8 0.00140 0.00777 53.0 0.000 0.000 0.000 +2446904.5 0.74030 2.05527 -23306959.7 0.00333 0.00467 86.6 0.000 0.000 0.000 +2446905.5 0.72952 2.05168 -23308100.4 0.00381 0.00453 86.1 0.000 0.000 0.000 +2446906.5 0.72010 2.04903 -23309360.3 0.00437 0.00679 72.4 0.000 0.000 0.000 +2446907.5 0.71199 2.04724 -23310828.8 0.00431 0.00663 66.1 0.000 0.000 0.000 +2446908.5 0.70493 2.04603 -23312538.9 0.00461 0.00707 77.7 0.000 0.000 0.000 +2446909.5 0.69830 2.04514 -23314482.8 0.00492 0.00701 70.9 0.000 0.000 0.000 +2446910.5 0.69136 2.04411 -23316599.7 0.00492 0.00701 71.0 0.000 0.000 0.000 +2446911.5 0.68349 2.04297 -23318770.8 0.00484 0.00743 50.8 0.000 0.000 0.000 +2446912.5 0.67416 2.04182 -23320865.6 0.00538 0.00780 46.1 0.000 0.000 0.000 +2446913.5 0.66310 2.04047 -23322779.5 0.00560 0.00855 65.0 0.000 0.000 0.000 +2446914.5 0.65010 2.03868 -23324453.6 0.00469 0.00781 33.7 0.000 0.000 0.000 +2446915.5 0.63509 2.03627 -23325878.3 0.00422 0.00795 32.5 0.000 0.000 0.000 +2446916.5 0.61875 2.03351 -23327090.9 0.00400 0.00720 32.3 0.000 0.000 0.000 +2446917.5 0.60225 2.03062 -23328153.9 0.00490 0.00754 25.3 0.000 0.000 0.000 +2446918.5 0.58689 2.02771 -23329140.3 0.00431 0.00682 27.3 0.000 0.000 0.000 +2446919.5 0.57370 2.02462 -23330118.8 0.00398 0.00674 40.7 0.000 0.000 0.000 +2446920.5 0.56338 2.02093 -23331150.6 0.00420 0.00716 42.8 0.000 0.000 0.000 +2446921.5 0.55554 2.01672 -23332296.2 0.00517 0.00754 41.6 0.000 0.000 0.000 +2446922.5 0.54900 2.01261 -23333595.9 0.00536 0.00707 43.0 0.000 0.000 0.000 +2446923.5 0.54245 2.00918 -23335069.8 0.00469 0.00804 58.3 0.000 0.000 0.000 +2446924.5 0.53452 2.00661 -23336727.1 0.00540 0.00747 74.1 0.000 0.000 0.000 +2446925.5 0.52447 2.00457 -23338540.5 0.00540 0.00747 74.6 0.000 0.000 0.000 +2446926.5 0.51238 2.00282 -23340424.4 0.00467 0.00698 48.8 0.000 0.000 0.000 +2446927.5 0.49859 2.00120 -23342258.0 0.00374 0.00485 41.8 0.000 0.000 0.000 +2446928.5 0.48348 1.99935 -23343920.3 0.00279 0.00507 42.8 0.000 0.000 0.000 +2446929.5 0.46748 1.99691 -23345330.6 0.00254 0.00464 27.5 0.000 0.000 0.000 +2446930.5 0.45110 1.99362 -23346479.4 0.00274 0.00479 60.7 0.000 0.000 0.000 +2446931.5 0.43487 1.98985 -23347443.5 0.00318 0.00469 52.2 0.000 0.000 0.000 +2446932.5 0.41928 1.98617 -23348359.7 0.00513 0.00638 46.6 0.000 0.000 0.000 +2446933.5 0.40482 1.98318 -23349374.4 0.00551 0.00837 66.9 0.000 0.000 0.000 +2446934.5 0.39200 1.98152 -23350596.7 0.00551 0.00837 66.5 0.000 0.000 0.000 +2446935.5 0.38119 1.98178 -23352070.3 0.00622 0.00994 91.7 0.000 0.000 0.000 +2446936.5 0.37187 1.98394 -23353771.2 0.00813 0.01149 59.7 0.000 0.000 0.000 +2446937.5 0.36299 1.98728 -23355623.4 0.00865 0.01210 46.5 0.000 0.000 0.000 +2446938.5 0.35348 1.99094 -23357524.5 0.00895 0.01320 57.6 0.000 0.000 0.000 +2446939.5 0.34242 1.99389 -23359375.4 0.00897 0.01206 57.8 0.000 0.000 0.000 +2446940.5 0.32955 1.99492 -23361099.0 0.00897 0.01206 59.3 0.000 0.000 0.000 +2446941.5 0.31605 1.99405 -23362634.8 0.00867 0.01159 32.4 0.000 0.000 0.000 +2446942.5 0.30287 1.99184 -23363952.8 0.00693 0.01069 33.7 0.000 0.000 0.000 +2446943.5 0.29061 1.98887 -23365060.0 0.00405 0.00674 35.3 0.000 0.000 0.000 +2446944.5 0.27980 1.98572 -23365992.6 0.00237 0.00747 41.0 0.000 0.000 0.000 +2446945.5 0.27088 1.98298 -23366806.5 0.00233 0.00842 40.8 0.000 0.000 0.000 +2446946.5 0.26375 1.98106 -23367578.0 0.00210 0.00781 37.8 0.000 0.000 0.000 +2446947.5 0.25794 1.97997 -23368377.7 0.00224 0.00727 45.7 0.000 0.000 0.000 +2446948.5 0.25298 1.97967 -23369258.8 0.00173 0.00671 54.3 0.000 0.000 0.000 +2446949.5 0.24839 1.98007 -23370252.6 0.00191 0.00419 59.9 0.000 0.000 0.000 +2446950.5 0.24372 1.98113 -23371370.8 0.00268 0.00477 60.8 0.000 0.000 0.000 +2446951.5 0.23874 1.98274 -23372628.6 0.00268 0.00477 62.1 0.000 0.000 0.000 +2446952.5 0.23343 1.98459 -23374026.4 0.00268 0.00477 62.0 0.000 0.000 0.000 +2446953.5 0.22778 1.98629 -23375533.7 0.00811 0.00462 58.6 0.000 0.000 0.000 +2446954.5 0.22149 1.98757 -23377073.0 0.00848 0.00468 63.2 0.000 0.000 0.000 +2446955.5 0.21403 1.98843 -23378524.4 0.00848 0.00468 64.0 0.000 0.000 0.000 +2446956.5 0.20482 1.98890 -23379781.6 0.00920 0.00403 55.9 0.000 0.000 0.000 +2446957.5 0.19353 1.98907 -23380793.5 0.00928 0.00378 36.8 0.000 0.000 0.000 +2446958.5 0.18073 1.98922 -23381590.3 0.00928 0.00378 41.8 0.000 0.000 0.000 +2446959.5 0.16727 1.98974 -23382279.1 0.00928 0.00378 52.5 0.000 0.000 0.000 +2446960.5 0.15401 1.99099 -23383004.8 0.00514 0.00416 52.0 0.000 0.000 0.000 +2446961.5 0.14134 1.99310 -23383900.4 0.00474 0.00386 65.7 0.000 0.000 0.000 +2446962.5 0.12944 1.99610 -23385035.9 0.00470 0.00453 52.1 0.000 0.000 0.000 +2446963.5 0.11847 2.00000 -23386398.1 0.00445 0.00452 70.6 0.000 0.000 0.000 +2446964.5 0.10826 2.00462 -23387904.9 0.00445 0.00452 72.8 0.000 0.000 0.000 +2446965.5 0.09846 2.00971 -23389442.6 0.00445 0.00452 66.9 0.000 0.000 0.000 +2446966.5 0.08854 2.01500 -23390899.6 0.00389 0.00672 56.0 0.000 0.000 0.000 +2446967.5 0.07836 2.02024 -23392182.2 0.00405 0.00738 35.9 0.000 0.000 0.000 +2446968.5 0.06792 2.02522 -23393233.9 0.00227 0.00483 18.3 0.000 0.000 0.000 +2446969.5 0.05721 2.02968 -23394036.0 0.00236 0.00491 13.6 0.000 0.000 0.000 +2446970.5 0.04600 2.03349 -23394603.2 0.00236 0.00491 8.8 0.000 0.000 0.000 +2446971.5 0.03347 2.03721 -23394975.0 0.00253 0.00561 16.2 0.000 0.000 0.000 +2446972.5 0.01898 2.04148 -23395212.3 0.00364 0.00645 19.7 0.000 0.000 0.000 +2446973.5 0.00337 2.04611 -23395402.5 0.00364 0.00554 20.5 0.000 0.000 0.000 +2446974.5 -0.01220 2.05076 -23395634.5 0.00373 0.00580 21.4 0.000 0.000 0.000 +2446975.5 -0.02661 2.05521 -23395982.6 0.00603 0.00943 54.9 0.000 0.000 0.000 +2446976.5 -0.03949 2.05983 -23396493.6 0.00629 0.00923 51.5 0.000 0.000 0.000 +2446977.5 -0.05084 2.06470 -23397187.7 0.00608 0.00784 36.6 0.000 0.000 0.000 +2446978.5 -0.06091 2.06967 -23398057.4 0.00382 0.00896 39.6 0.000 0.000 0.000 +2446979.5 -0.07025 2.07462 -23399066.0 0.00444 0.00632 54.5 0.000 0.000 0.000 +2446980.5 -0.07947 2.07947 -23400152.9 0.00426 0.00457 55.9 0.000 0.000 0.000 +2446981.5 -0.08892 2.08423 -23401237.8 0.00359 0.00314 44.8 0.000 0.000 0.000 +2446982.5 -0.09890 2.08902 -23402227.5 0.00300 0.00275 47.0 0.000 0.000 0.000 +2446983.5 -0.10967 2.09392 -23403037.7 0.00223 0.00207 50.4 0.000 0.000 0.000 +2446984.5 -0.12150 2.09903 -23403621.5 0.00320 0.00400 61.7 0.000 0.000 0.000 +2446985.5 -0.13453 2.10431 -23403992.5 0.00349 0.00487 60.0 0.000 0.000 0.000 +2446986.5 -0.14854 2.10958 -23404229.8 0.00429 0.00464 61.0 0.000 0.000 0.000 +2446987.5 -0.16337 2.11467 -23404470.5 0.00589 0.00454 62.2 0.000 0.000 0.000 +2446988.5 -0.17850 2.11978 -23404866.9 0.00681 0.00521 75.3 0.000 0.000 0.000 +2446989.5 -0.19325 2.12520 -23405533.2 0.00783 0.00599 91.3 0.000 0.000 0.000 +2446990.5 -0.20686 2.13110 -23406493.0 0.00756 0.00479 95.8 0.000 0.000 0.000 +2446991.5 -0.21894 2.13755 -23407660.6 0.00742 0.00532 94.9 0.000 0.000 0.000 +2446992.5 -0.22927 2.14458 -23408892.1 0.00600 0.00297 72.1 0.000 0.000 0.000 +2446993.5 -0.23765 2.15220 -23410043.1 0.00453 0.00302 76.8 0.000 0.000 0.000 +2446994.5 -0.24415 2.16025 -23411008.0 0.00453 0.00302 75.0 0.000 0.000 0.000 +2446995.5 -0.24910 2.16852 -23411737.6 0.00413 0.00327 75.3 0.000 0.000 0.000 +2446996.5 -0.25320 2.17697 -23412216.7 0.00429 0.00392 57.6 0.000 0.000 0.000 +2446997.5 -0.25660 2.18561 -23412466.7 0.00366 0.00366 46.3 0.000 0.000 0.000 +2446998.5 -0.25917 2.19451 -23412538.0 0.00302 0.00334 41.2 0.000 0.000 0.000 +2446999.5 -0.26082 2.20366 -23412503.9 0.00270 0.00394 46.8 0.000 0.000 0.000 +2447000.5 -0.26160 2.21290 -23412444.8 0.00270 0.00394 47.1 0.000 0.000 0.000 +2447001.5 -0.26190 2.22185 -23412440.1 0.00268 0.00388 38.6 0.000 0.000 0.000 +2447002.5 -0.26196 2.23046 -23412553.4 0.00266 0.00432 37.8 0.000 0.000 0.000 +2447003.5 -0.26205 2.23878 -23412827.1 0.00136 0.00322 36.5 0.000 0.000 0.000 +2447004.5 -0.26242 2.24686 -23413282.3 0.00176 0.00483 55.3 0.000 0.000 0.000 +2447005.5 -0.26337 2.25473 -23413916.1 0.00139 0.00398 69.6 0.000 0.000 0.000 +2447006.5 -0.26518 2.26253 -23414694.2 0.00353 0.00367 36.7 0.000 0.000 0.000 +2447007.5 -0.26808 2.27044 -23415559.0 0.00392 0.00548 37.8 0.000 0.000 0.000 +2447008.5 -0.27229 2.27865 -23416437.2 0.00413 0.00608 40.7 0.000 0.000 0.000 +2447009.5 -0.27804 2.28744 -23417250.6 0.00413 0.00608 41.3 0.000 0.000 0.000 +2447010.5 -0.28533 2.29698 -23417930.3 0.00413 0.00608 48.2 0.000 0.000 0.000 +2447011.5 -0.29346 2.30683 -23418424.2 0.00478 0.00672 53.1 0.000 0.000 0.000 +2447012.5 -0.30165 2.31647 -23418722.4 0.00552 0.00647 52.5 0.000 0.000 0.000 +2447013.5 -0.30930 2.32565 -23418879.8 0.00568 0.00627 91.7 0.000 0.000 0.000 +2447014.5 -0.31585 2.33424 -23419018.9 0.00482 0.00421 69.9 0.000 0.000 0.000 +2447015.5 -0.32105 2.34232 -23419302.1 0.00482 0.00421 70.5 0.000 0.000 0.000 +2447016.5 -0.32537 2.35017 -23419855.9 0.00471 0.00414 66.1 0.000 0.000 0.000 +2447017.5 -0.32952 2.35796 -23420730.5 0.00595 0.00593 60.4 0.000 0.000 0.000 +2447018.5 -0.33413 2.36582 -23421884.2 0.00435 0.00552 53.5 0.000 0.000 0.000 +2447019.5 -0.33961 2.37397 -23423204.6 0.00487 0.00592 43.0 0.000 0.000 0.000 +2447020.5 -0.34615 2.38264 -23424542.4 0.00438 0.00530 46.7 0.000 0.000 0.000 +2447021.5 -0.35333 2.39188 -23425753.8 0.00827 0.00758 74.5 0.000 0.000 0.000 +2447022.5 -0.36055 2.40160 -23426746.0 0.00856 0.00732 71.8 0.000 0.000 0.000 +2447023.5 -0.36720 2.41175 -23427492.7 0.00785 0.00407 72.6 0.000 0.000 0.000 +2447024.5 -0.37278 2.42227 -23428023.3 0.00785 0.00407 75.2 0.000 0.000 0.000 +2447025.5 -0.37692 2.43317 -23428402.8 0.00785 0.00407 73.1 0.000 0.000 0.000 +2447026.5 -0.37995 2.44467 -23428706.1 0.00830 0.00469 69.6 0.000 0.000 0.000 +2447027.5 -0.38212 2.45691 -23429010.6 0.00815 0.00529 45.5 0.000 0.000 0.000 +2447028.5 -0.38347 2.46998 -23429393.6 0.00666 0.00493 43.8 0.000 0.000 0.000 +2447029.5 -0.38397 2.48393 -23429929.1 0.00800 0.00512 69.4 0.000 0.000 0.000 +2447030.5 -0.38329 2.49859 -23430676.9 0.00800 0.00512 73.1 0.000 0.000 0.000 +2447031.5 -0.38157 2.51358 -23431662.8 0.00727 0.00659 63.6 0.000 0.000 0.000 +2447032.5 -0.37976 2.52839 -23432869.2 0.00643 0.00899 66.2 0.000 0.000 0.000 +2447033.5 -0.37862 2.54257 -23434253.7 0.00586 0.00889 76.7 0.000 0.000 0.000 +2447034.5 -0.37827 2.55583 -23435753.4 0.00519 0.00950 97.3 0.000 0.000 0.000 +2447035.5 -0.37875 2.56801 -23437291.7 0.00313 0.01041 89.9 0.000 0.000 0.000 +2447036.5 -0.38003 2.57946 -23438785.1 0.00355 0.00954 78.7 0.000 0.000 0.000 +2447037.5 -0.38205 2.59025 -23440139.6 0.00375 0.01024 73.8 0.000 0.000 0.000 +2447038.5 -0.38478 2.60039 -23441286.6 0.00303 0.00969 91.1 0.000 0.000 0.000 +2447039.5 -0.38820 2.61011 -23442202.0 0.00351 0.00696 76.7 0.000 0.000 0.000 +2447040.5 -0.39225 2.61961 -23442922.5 0.00378 0.00682 59.5 0.000 0.000 0.000 +2447041.5 -0.39665 2.62879 -23443550.9 0.00408 0.00782 62.6 0.000 0.000 0.000 +2447042.5 -0.40104 2.63746 -23444234.0 0.00411 0.00746 55.4 0.000 0.000 0.000 +2447043.5 -0.40503 2.64544 -23445124.0 0.00354 0.00626 119.1 0.000 0.000 0.000 +2447044.5 -0.40835 2.65268 -23446333.9 0.00526 0.00657 119.1 0.000 0.000 0.000 +2447045.5 -0.41098 2.65934 -23447895.7 0.00526 0.00657 119.1 0.000 0.000 0.000 +2447046.5 -0.41343 2.66593 -23449729.2 0.00552 0.00644 103.5 0.000 0.000 0.000 +2447047.5 -0.41633 2.67301 -23451681.3 0.00547 0.00655 83.6 0.000 0.000 0.000 +2447048.5 -0.42001 2.68101 -23453581.5 0.00569 0.00561 92.6 0.000 0.000 0.000 +2447049.5 -0.42437 2.69028 -23455292.3 0.00569 0.00561 59.1 0.000 0.000 0.000 +2447050.5 -0.42933 2.70106 -23456741.2 0.00446 0.00563 85.4 0.000 0.000 0.000 +2447051.5 -0.43473 2.71330 -23457915.7 0.00504 0.00723 78.6 0.000 0.000 0.000 +2447052.5 -0.44043 2.72645 -23458852.5 0.00506 0.01045 75.0 0.000 0.000 0.000 +2447053.5 -0.44628 2.73987 -23459622.9 0.00502 0.01134 83.0 0.000 0.000 0.000 +2447054.5 -0.45207 2.75279 -23460319.0 0.00583 0.01194 96.5 0.000 0.000 0.000 +2447055.5 -0.45767 2.76446 -23461044.5 0.00540 0.01062 106.2 0.000 0.000 0.000 +2447056.5 -0.46353 2.77484 -23461891.9 0.00617 0.01111 82.7 0.000 0.000 0.000 +2447057.5 -0.46977 2.78448 -23462924.9 0.00643 0.01047 68.5 0.000 0.000 0.000 +2447058.5 -0.47635 2.79402 -23464184.2 0.00632 0.01034 91.2 0.000 0.000 0.000 +2447059.5 -0.48304 2.80407 -23465685.9 0.00481 0.00494 73.4 0.000 0.000 0.000 +2447060.5 -0.48953 2.81513 -23467419.3 0.00481 0.00494 72.5 0.000 0.000 0.000 +2447061.5 -0.49594 2.82755 -23469326.2 0.00491 0.00577 51.3 0.000 0.000 0.000 +2447062.5 -0.50252 2.84154 -23471317.1 0.00492 0.00634 44.9 0.000 0.000 0.000 +2447063.5 -0.50924 2.85701 -23473289.7 0.00420 0.00679 59.3 0.000 0.000 0.000 +2447064.5 -0.51594 2.87349 -23475146.9 0.00420 0.00679 61.8 0.000 0.000 0.000 +2447065.5 -0.52246 2.89049 -23476812.4 0.00494 0.00754 77.6 0.000 0.000 0.000 +2447066.5 -0.52890 2.90769 -23478245.5 0.00618 0.00780 80.4 0.000 0.000 0.000 +2447067.5 -0.53535 2.92458 -23479464.3 0.00726 0.00861 71.3 0.000 0.000 0.000 +2447068.5 -0.54180 2.94063 -23480548.8 0.00669 0.00798 78.7 0.000 0.000 0.000 +2447069.5 -0.54780 2.95568 -23481627.1 0.00720 0.00744 66.8 0.000 0.000 0.000 +2447070.5 -0.55279 2.96977 -23482847.4 0.00720 0.00744 65.9 0.000 0.000 0.000 +2447071.5 -0.55689 2.98321 -23484329.9 0.00743 0.00497 42.7 0.000 0.000 0.000 +2447072.5 -0.56049 2.99616 -23486132.6 0.00717 0.00478 54.1 0.000 0.000 0.000 +2447073.5 -0.56399 3.00873 -23488233.6 0.00557 0.00379 76.9 0.000 0.000 0.000 +2447074.5 -0.56778 3.02100 -23490534.2 0.00570 0.00027 76.9 0.000 0.000 0.000 +2447075.5 -0.57195 3.03307 -23492886.7 0.00570 0.00027 82.2 0.000 0.000 0.000 +2447076.5 -0.57642 3.04502 -23495129.9 0.00494 0.00144 75.4 0.000 0.000 0.000 +2447077.5 -0.58120 3.05693 -23497141.3 0.00359 0.00249 63.3 0.000 0.000 0.000 +2447078.5 -0.58638 3.06890 -23498865.9 0.00276 0.00268 55.2 0.000 0.000 0.000 +2447079.5 -0.59214 3.08098 -23500313.4 0.00276 0.00268 90.4 0.000 0.000 0.000 +2447080.5 -0.59859 3.09322 -23501541.3 0.00621 0.00643 113.6 0.000 0.000 0.000 +2447081.5 -0.60558 3.10541 -23502638.9 0.00534 0.00544 83.9 0.000 0.000 0.000 +2447082.5 -0.61298 3.11726 -23503702.4 0.00527 0.00542 59.9 0.000 0.000 0.000 +2447083.5 -0.62050 3.12854 -23504819.8 0.00570 0.00562 65.1 0.000 0.000 0.000 +2447084.5 -0.62720 3.13948 -23506062.8 0.00570 0.00562 68.7 0.000 0.000 0.000 +2447085.5 -0.63203 3.15040 -23507482.8 0.00511 0.00550 50.0 0.000 0.000 0.000 +2447086.5 -0.63461 3.16158 -23509099.6 0.00354 0.00459 27.8 0.000 0.000 0.000 +2447087.5 -0.63522 3.17302 -23510900.7 0.00364 0.00478 28.8 0.000 0.000 0.000 +2447088.5 -0.63423 3.18466 -23512849.0 0.00286 0.00537 41.2 0.000 0.000 0.000 +2447089.5 -0.63209 3.19634 -23514883.2 0.00268 0.00567 48.4 0.000 0.000 0.000 +2447090.5 -0.62962 3.20785 -23516926.5 0.00268 0.00567 39.8 0.000 0.000 0.000 +2447091.5 -0.62763 3.21919 -23518900.4 0.00281 0.00537 43.9 0.000 0.000 0.000 +2447092.5 -0.62637 3.23028 -23520729.5 0.00325 0.00574 47.9 0.000 0.000 0.000 +2447093.5 -0.62569 3.24127 -23522352.6 0.00351 0.00599 55.1 0.000 0.000 0.000 +2447094.5 -0.62533 3.25235 -23523759.6 0.00342 0.00373 51.6 0.000 0.000 0.000 +2447095.5 -0.62511 3.26367 -23525004.8 0.00434 0.00453 57.1 0.000 0.000 0.000 +2447096.5 -0.62487 3.27536 -23526205.8 0.00436 0.00406 51.5 0.000 0.000 0.000 +2447097.5 -0.62439 3.28748 -23527499.7 0.00626 0.00365 40.0 0.000 0.000 0.000 +2447098.5 -0.62350 3.30004 -23529000.6 0.00697 0.00266 33.5 0.000 0.000 0.000 +2447099.5 -0.62241 3.31300 -23530769.2 0.00697 0.00266 35.1 0.000 0.000 0.000 +2447100.5 -0.62153 3.32626 -23532799.9 0.00673 0.00724 36.5 0.000 0.000 0.000 +2447101.5 -0.62151 3.33970 -23535024.9 0.00618 0.00734 32.4 0.000 0.000 0.000 +2447102.5 -0.62184 3.35309 -23537326.6 0.00450 0.00654 16.3 0.000 0.000 0.000 +2447103.5 -0.62164 3.36614 -23539571.0 0.00453 0.00690 15.2 0.000 0.000 0.000 +2447104.5 -0.61999 3.37877 -23541645.6 0.00252 0.00725 27.2 0.000 0.000 0.000 +2447105.5 -0.61593 3.39161 -23543484.0 0.00252 0.00725 28.6 0.000 0.000 0.000 +2447106.5 -0.60936 3.40574 -23545065.4 0.00322 0.00564 27.4 0.000 0.000 0.000 +2447107.5 -0.60110 3.42125 -23546429.8 0.00338 0.00560 27.0 0.000 0.000 0.000 +2447108.5 -0.59226 3.43798 -23547658.3 0.00323 0.00539 38.5 0.000 0.000 0.000 +2447109.5 -0.58398 3.45580 -23548847.9 0.00471 0.00435 103.8 0.000 0.000 0.000 +2447110.5 -0.57723 3.47454 -23550089.4 0.00471 0.00435 89.8 0.000 0.000 0.000 +2447111.5 -0.57217 3.49375 -23551456.8 0.00400 0.00473 76.8 0.000 0.000 0.000 +2447112.5 -0.56839 3.51292 -23552996.7 0.00444 0.00526 68.9 0.000 0.000 0.000 +2447113.5 -0.56537 3.53156 -23554723.1 0.00410 0.00442 80.6 0.000 0.000 0.000 +2447114.5 -0.56246 3.54923 -23556618.3 0.00386 0.00494 69.7 0.000 0.000 0.000 +2447115.5 -0.55903 3.56558 -23558641.6 0.00422 0.00569 45.7 0.000 0.000 0.000 +2447116.5 -0.55499 3.58078 -23560746.8 0.00376 0.00520 42.0 0.000 0.000 0.000 +2447117.5 -0.55076 3.59528 -23562872.0 0.00448 0.00501 46.1 0.000 0.000 0.000 +2447118.5 -0.54694 3.60956 -23564938.6 0.00455 0.00320 64.3 0.000 0.000 0.000 +2447119.5 -0.54408 3.62406 -23566865.9 0.00445 0.00355 66.4 0.000 0.000 0.000 +2447120.5 -0.54250 3.63903 -23568593.9 0.00416 0.00365 55.8 0.000 0.000 0.000 +2447121.5 -0.54263 3.65457 -23570103.8 0.00374 0.00334 52.3 0.000 0.000 0.000 +2447122.5 -0.54480 3.67065 -23571437.6 0.00545 0.00462 57.9 0.000 0.000 0.000 +2447123.5 -0.54921 3.68715 -23572693.7 0.00534 0.00491 62.6 0.000 0.000 0.000 +2447124.5 -0.55601 3.70389 -23573998.0 0.00512 0.00759 57.1 0.000 0.000 0.000 +2447125.5 -0.56505 3.72050 -23575468.0 0.00512 0.00759 98.9 0.000 0.000 0.000 +2447126.5 -0.57539 3.73659 -23577183.7 0.00466 0.00688 78.8 0.000 0.000 0.000 +2447127.5 -0.58590 3.75170 -23579155.2 0.00710 0.00722 77.2 0.000 0.000 0.000 +2447128.5 -0.59540 3.76561 -23581324.1 0.00662 0.00700 83.6 0.000 0.000 0.000 +2447129.5 -0.60263 3.77855 -23583584.7 0.00662 0.00700 83.4 0.000 0.000 0.000 +2447130.5 -0.60649 3.79088 -23585809.7 0.00663 0.00354 83.1 0.000 0.000 0.000 +2447131.5 -0.60685 3.80296 -23587881.6 0.00598 0.00326 29.1 0.000 0.000 0.000 +2447132.5 -0.60435 3.81491 -23589723.4 0.00599 0.00330 60.7 0.000 0.000 0.000 +2447133.5 -0.59969 3.82677 -23591307.0 0.00409 0.00332 91.0 0.000 0.000 0.000 +2447134.5 -0.59349 3.83852 -23592650.8 0.00378 0.00367 99.3 0.000 0.000 0.000 +2447135.5 -0.58623 3.85018 -23593810.2 0.00376 0.00434 89.3 0.000 0.000 0.000 +2447136.5 -0.57808 3.86181 -23594868.5 0.00563 0.00417 70.6 0.000 0.000 0.000 +2447137.5 -0.56911 3.87350 -23595911.8 0.00515 0.00439 65.3 0.000 0.000 0.000 +2447138.5 -0.55921 3.88540 -23597013.0 0.00572 0.00474 53.6 0.000 0.000 0.000 +2447139.5 -0.54809 3.89787 -23598229.8 0.00572 0.00474 44.7 0.000 0.000 0.000 +2447140.5 -0.53566 3.91116 -23599601.9 0.00584 0.00584 44.4 0.000 0.000 0.000 +2447141.5 -0.52223 3.92519 -23601140.7 0.00571 0.00492 36.9 0.000 0.000 0.000 +2447142.5 -0.50815 3.93975 -23602833.6 0.00559 0.00426 24.2 0.000 0.000 0.000 +2447143.5 -0.49390 3.95457 -23604645.2 0.00501 0.00574 29.7 0.000 0.000 0.000 +2447144.5 -0.48032 3.96904 -23606519.6 0.00501 0.00574 35.5 0.000 0.000 0.000 +2447145.5 -0.46824 3.98254 -23608384.0 0.00422 0.00476 33.2 0.000 0.000 0.000 +2447146.5 -0.45764 3.99467 -23610161.1 0.00380 0.00423 34.6 0.000 0.000 0.000 +2447147.5 -0.44796 4.00540 -23611782.2 0.00620 0.00408 34.0 0.000 0.000 0.000 +2447148.5 -0.43858 4.01480 -23613211.8 0.00621 0.00398 63.7 0.000 0.000 0.000 +2447149.5 -0.42883 4.02300 -23614471.9 0.00599 0.00261 55.9 0.000 0.000 0.000 +2447150.5 -0.41808 4.03038 -23615651.4 0.00567 0.00252 36.2 0.000 0.000 0.000 +2447151.5 -0.40587 4.03742 -23616884.8 0.00584 0.00252 34.8 0.000 0.000 0.000 +2447152.5 -0.39261 4.04452 -23618305.5 0.00626 0.00213 30.0 0.000 0.000 0.000 +2447153.5 -0.37879 4.05184 -23620001.2 0.00626 0.00213 42.5 0.000 0.000 0.000 +2447154.5 -0.36438 4.05954 -23621984.7 0.00367 0.00222 39.6 0.000 0.000 0.000 +2447155.5 -0.34916 4.06780 -23624188.4 0.00407 0.00201 66.1 0.000 0.000 0.000 +2447156.5 -0.33315 4.07669 -23626488.5 0.00267 0.00421 100.7 0.000 0.000 0.000 +2447157.5 -0.31637 4.08626 -23628746.0 0.00102 0.00430 79.7 0.000 0.000 0.000 +2447158.5 -0.29887 4.09659 -23630843.4 0.00102 0.00430 80.2 0.000 0.000 0.000 +2447159.5 -0.28068 4.10771 -23632704.2 0.00102 0.00430 73.0 0.000 0.000 0.000 +2447160.5 -0.26186 4.11963 -23634301.5 0.00102 0.00430 90.7 0.000 0.000 0.000 +2447161.5 -0.24262 4.13202 -23635660.9 0.00105 0.00466 54.8 0.000 0.000 0.000 +2447162.5 -0.22313 4.14443 -23636842.8 0.00380 0.00515 54.9 0.000 0.000 0.000 +2447163.5 -0.20359 4.15639 -23637926.3 0.00487 0.00509 69.6 0.000 0.000 0.000 +2447164.5 -0.18417 4.16746 -23638995.3 0.00487 0.00509 68.0 0.000 0.000 0.000 +2447165.5 -0.16509 4.17724 -23640121.5 0.00345 0.00284 64.1 0.000 0.000 0.000 +2447166.5 -0.14654 4.18558 -23641360.3 0.00379 0.00650 45.0 0.000 0.000 0.000 +2447167.5 -0.12841 4.19253 -23642749.7 0.00371 0.00643 43.0 0.000 0.000 0.000 +2447168.5 -0.11060 4.19822 -23644302.0 0.00428 0.00749 92.5 0.000 0.000 0.000 +2447169.5 -0.09295 4.20275 -23646005.5 0.00360 0.00778 93.1 0.000 0.000 0.000 +2447170.5 -0.07535 4.20643 -23647830.3 0.00401 0.00743 93.6 0.000 0.000 0.000 +2447171.5 -0.05816 4.21014 -23649719.0 0.00538 0.00731 80.8 0.000 0.000 0.000 +2447172.5 -0.04177 4.21472 -23651596.6 0.00663 0.00736 77.2 0.000 0.000 0.000 +2447173.5 -0.02639 4.22033 -23653392.1 0.00777 0.00736 86.2 0.000 0.000 0.000 +2447174.5 -0.01262 4.22671 -23655042.0 0.00729 0.00635 54.7 0.000 0.000 0.000 +2447175.5 -0.00099 4.23307 -23656503.9 0.00650 0.00395 62.8 0.000 0.000 0.000 +2447176.5 0.00935 4.23881 -23657766.6 0.00608 0.00399 56.2 0.000 0.000 0.000 +2447177.5 0.01991 4.24369 -23658874.3 0.00562 0.00396 50.9 0.000 0.000 0.000 +2447178.5 0.03169 4.24772 -23659929.6 0.00430 0.00370 54.8 0.000 0.000 0.000 +2447179.5 0.04451 4.25107 -23661065.3 0.00410 0.00354 54.2 0.000 0.000 0.000 +2447180.5 0.05815 4.25387 -23662392.3 0.00311 0.00311 55.6 0.000 0.000 0.000 +2447181.5 0.07283 4.25662 -23663963.8 0.00220 0.00327 35.2 0.000 0.000 0.000 +2447182.5 0.08876 4.25975 -23665748.9 0.00229 0.00356 29.3 0.000 0.000 0.000 +2447183.5 0.10611 4.26369 -23667635.3 0.00216 0.00303 34.7 0.000 0.000 0.000 +2447184.5 0.12499 4.26864 -23669474.7 0.00323 0.00298 35.9 0.000 0.000 0.000 +2447185.5 0.14551 4.27400 -23671141.1 0.00369 0.00296 33.5 0.000 0.000 0.000 +2447186.5 0.16749 4.27934 -23672554.6 0.00360 0.00302 32.8 0.000 0.000 0.000 +2447187.5 0.19063 4.28438 -23673696.3 0.00384 0.00384 27.6 0.000 0.000 0.000 +2447188.5 0.21493 4.28893 -23674605.5 0.00470 0.00451 42.7 0.000 0.000 0.000 +2447189.5 0.24070 4.29302 -23675355.7 0.00470 0.00451 36.3 0.000 0.000 0.000 +2447190.5 0.26770 4.29658 -23676030.8 0.00357 0.00412 29.1 0.000 0.000 0.000 +2447191.5 0.29561 4.29967 -23676718.7 0.00348 0.00355 20.5 0.000 0.000 0.000 +2447192.5 0.32400 4.30256 -23677502.8 0.00336 0.00451 16.7 0.000 0.000 0.000 +2447193.5 0.35245 4.30553 -23678451.5 0.00359 0.00408 16.8 0.000 0.000 0.000 +2447194.5 0.38049 4.30887 -23679610.4 0.00359 0.00408 14.5 0.000 0.000 0.000 +2447195.5 0.40737 4.31284 -23680997.6 0.00359 0.00408 14.9 0.000 0.000 0.000 +2447196.5 0.43217 4.31761 -23682600.8 0.00366 0.00498 16.1 0.000 0.000 0.000 +2447197.5 0.45456 4.32298 -23684383.3 0.00358 0.00547 16.4 0.000 0.000 0.000 +2447198.5 0.47437 4.32849 -23686289.8 0.00409 0.00612 19.3 0.000 0.000 0.000 +2447199.5 0.49147 4.33363 -23688254.4 0.00382 0.00685 22.2 0.000 0.000 0.000 +2447200.5 0.50582 4.33798 -23690206.2 0.00518 0.00614 22.5 0.000 0.000 0.000 +2447201.5 0.51792 4.34127 -23692070.9 0.00506 0.00668 23.1 0.000 0.000 0.000 +2447202.5 0.52848 4.34330 -23693786.9 0.00452 0.00635 24.8 0.000 0.000 0.000 +2447203.5 0.53809 4.34387 -23695324.9 0.00480 0.00610 27.1 0.000 0.000 0.000 +2447204.5 0.54680 4.34286 -23696707.6 0.00480 0.00610 38.0 0.000 0.000 0.000 +2447205.5 0.55497 4.33995 -23698026.2 0.00531 0.00638 39.2 0.000 0.000 0.000 +2447206.5 0.56329 4.33541 -23699429.2 0.00411 0.00640 34.3 0.000 0.000 0.000 +2447207.5 0.57240 4.32984 -23701076.5 0.00458 0.00575 30.7 0.000 0.000 0.000 +2447208.5 0.58292 4.32380 -23703078.9 0.00554 0.00478 36.8 0.000 0.000 0.000 +2447209.5 0.59524 4.31775 -23705453.2 0.00501 0.00506 48.9 0.000 0.000 0.000 +2447210.5 0.60914 4.31188 -23708110.2 0.00501 0.00506 41.8 0.000 0.000 0.000 +2447211.5 0.62364 4.30657 -23710878.8 0.00497 0.00468 37.3 0.000 0.000 0.000 +2447212.5 0.63742 4.30230 -23713567.4 0.00415 0.00555 32.8 0.000 0.000 0.000 +2447213.5 0.64948 4.29941 -23716023.7 0.00405 0.00620 39.4 0.000 0.000 0.000 +2447214.5 0.65965 4.29775 -23718164.2 0.00465 0.00593 40.5 0.000 0.000 0.000 +2447215.5 0.66819 4.29710 -23719983.2 0.00489 0.00634 24.3 0.000 0.000 0.000 +2447216.5 0.67616 4.29758 -23721546.6 0.00514 0.00575 67.4 0.000 0.000 0.000 +2447217.5 0.68496 4.29907 -23722955.2 0.00511 0.00573 67.3 0.000 0.000 0.000 +2447218.5 0.69577 4.30141 -23724314.8 0.00579 0.00677 101.1 0.000 0.000 0.000 +2447219.5 0.70923 4.30458 -23725724.8 0.00651 0.00372 115.4 0.000 0.000 0.000 +2447220.5 0.72573 4.30855 -23727266.6 0.00496 0.00434 113.7 0.000 0.000 0.000 +2447221.5 0.74488 4.31320 -23728988.3 0.00541 0.00383 83.0 0.000 0.000 0.000 +2447222.5 0.76585 4.31821 -23730909.9 0.00505 0.00399 13.9 0.000 0.000 0.000 +2447223.5 0.78759 4.32315 -23733021.2 0.00435 0.00413 43.9 0.000 0.000 0.000 +2447224.5 0.80912 4.32748 -23735282.0 0.00427 0.00389 43.2 0.000 0.000 0.000 +2447225.5 0.82976 4.33051 -23737627.4 0.00427 0.00389 42.5 0.000 0.000 0.000 +2447226.5 0.84998 4.33188 -23739976.2 0.00381 0.00360 34.3 0.000 0.000 0.000 +2447227.5 0.87054 4.33139 -23742242.2 0.00445 0.00380 39.7 0.000 0.000 0.000 +2447228.5 0.89202 4.32898 -23744344.3 0.00396 0.00393 51.9 0.000 0.000 0.000 +2447229.5 0.91499 4.32462 -23746218.8 0.00403 0.00530 46.3 0.000 0.000 0.000 +2447230.5 0.93988 4.31839 -23747829.8 0.00403 0.00530 46.5 0.000 0.000 0.000 +2447231.5 0.96636 4.31092 -23749178.1 0.00392 0.00515 49.4 0.000 0.000 0.000 +2447232.5 0.99393 4.30292 -23750330.8 0.00355 0.00777 45.1 0.000 0.000 0.000 +2447233.5 1.02198 4.29487 -23751412.0 0.00341 0.00879 62.6 0.000 0.000 0.000 +2447234.5 1.04974 4.28698 -23752572.5 0.00323 0.00936 57.0 0.000 0.000 0.000 +2447235.5 1.07648 4.27946 -23753950.0 0.00353 0.00676 31.5 0.000 0.000 0.000 +2447236.5 1.10166 4.27239 -23755629.8 0.00327 0.00716 37.1 0.000 0.000 0.000 +2447237.5 1.12483 4.26512 -23757605.2 0.00294 0.00938 26.6 0.000 0.000 0.000 +2447238.5 1.14555 4.25685 -23759776.8 0.00312 0.00979 32.1 0.000 0.000 0.000 +2447239.5 1.16368 4.24678 -23761988.6 0.00272 0.00925 44.4 0.000 0.000 0.000 +2447240.5 1.17977 4.23424 -23764078.0 0.00272 0.00925 45.9 0.000 0.000 0.000 +2447241.5 1.19447 4.21972 -23765923.2 0.00182 0.00900 62.5 0.000 0.000 0.000 +2447242.5 1.20847 4.20394 -23767479.1 0.00354 0.00894 63.9 0.000 0.000 0.000 +2447243.5 1.22249 4.18753 -23768781.1 0.00460 0.00703 84.3 0.000 0.000 0.000 +2447244.5 1.23725 4.17113 -23769915.6 0.00468 0.00628 88.4 0.000 0.000 0.000 +2447245.5 1.25325 4.15528 -23770983.2 0.00468 0.00628 81.0 0.000 0.000 0.000 +2447246.5 1.26980 4.14030 -23772086.0 0.00422 0.00561 66.9 0.000 0.000 0.000 +2447247.5 1.28570 4.12649 -23773308.3 0.00439 0.00472 42.6 0.000 0.000 0.000 +2447248.5 1.30002 4.11376 -23774711.4 0.00359 0.00594 42.2 0.000 0.000 0.000 +2447249.5 1.31199 4.10178 -23776326.5 0.00359 0.00594 42.2 0.000 0.000 0.000 +2447250.5 1.32097 4.09021 -23778155.7 0.00302 0.00235 26.4 0.000 0.000 0.000 +2447251.5 1.32709 4.07884 -23780178.1 0.00256 0.00376 37.4 0.000 0.000 0.000 +2447252.5 1.33080 4.06734 -23782347.4 0.00256 0.00376 36.3 0.000 0.000 0.000 +2447253.5 1.33262 4.05536 -23784597.2 0.00153 0.00461 55.7 0.000 0.000 0.000 +2447254.5 1.33311 4.04246 -23786850.1 0.00329 0.00421 56.9 0.000 0.000 0.000 +2447255.5 1.33296 4.02842 -23789024.5 0.00329 0.00421 56.7 0.000 0.000 0.000 +2447256.5 1.33316 4.01350 -23791051.2 0.00464 0.00411 48.8 0.000 0.000 0.000 +2447257.5 1.33471 3.99800 -23792893.1 0.00520 0.00383 24.6 0.000 0.000 0.000 +2447258.5 1.33816 3.98217 -23794557.2 0.00630 0.00215 41.6 0.000 0.000 0.000 +2447259.5 1.34386 3.96621 -23796098.3 0.00630 0.00215 36.3 0.000 0.000 0.000 +2447260.5 1.35184 3.95022 -23797612.2 0.00719 0.00284 37.9 0.000 0.000 0.000 +2447261.5 1.36125 3.93410 -23799217.5 0.00647 0.00262 31.4 0.000 0.000 0.000 +2447262.5 1.37116 3.91766 -23801029.8 0.00495 0.00211 23.7 0.000 0.000 0.000 +2447263.5 1.38142 3.90084 -23803135.8 0.00527 0.00221 29.8 0.000 0.000 0.000 +2447264.5 1.39272 3.88377 -23805551.2 0.00527 0.00221 27.1 0.000 0.000 0.000 +2447265.5 1.40593 3.86668 -23808204.9 0.00492 0.00236 22.2 0.000 0.000 0.000 +2447266.5 1.42144 3.84993 -23810947.8 0.00372 0.00291 19.6 0.000 0.000 0.000 +2447267.5 1.43859 3.83379 -23813593.8 0.00365 0.00312 23.1 0.000 0.000 0.000 +2447268.5 1.45658 3.81846 -23815982.5 0.00393 0.00377 27.8 0.000 0.000 0.000 +2447269.5 1.47467 3.80418 -23818022.1 0.00417 0.00512 31.3 0.000 0.000 0.000 +2447270.5 1.49248 3.79120 -23819702.6 0.00475 0.00571 48.5 0.000 0.000 0.000 +2447271.5 1.50944 3.77933 -23821086.5 0.00545 0.00570 42.8 0.000 0.000 0.000 +2447272.5 1.52501 3.76822 -23822279.9 0.00547 0.00636 37.2 0.000 0.000 0.000 +2447273.5 1.53904 3.75747 -23823393.0 0.00609 0.00638 43.0 0.000 0.000 0.000 +2447274.5 1.55203 3.74643 -23824521.6 0.00616 0.00619 40.4 0.000 0.000 0.000 +2447275.5 1.56484 3.73438 -23825740.2 0.00638 0.00823 41.5 0.000 0.000 0.000 +2447276.5 1.57773 3.72133 -23827101.4 0.00679 0.00785 25.8 0.000 0.000 0.000 +2447277.5 1.59065 3.70766 -23828632.4 0.00677 0.00735 37.4 0.000 0.000 0.000 +2447278.5 1.60361 3.69376 -23830334.6 0.00560 0.00704 63.1 0.000 0.000 0.000 +2447279.5 1.61692 3.67996 -23832184.4 0.00560 0.00704 63.0 0.000 0.000 0.000 +2447280.5 1.63085 3.66640 -23834133.2 0.00970 0.00795 61.6 0.000 0.000 0.000 +2447281.5 1.64498 3.65304 -23836104.3 0.00896 0.00684 42.3 0.000 0.000 0.000 +2447282.5 1.65876 3.63978 -23838010.2 0.00763 0.00248 31.9 0.000 0.000 0.000 +2447283.5 1.67168 3.62650 -23839772.3 0.00720 0.00456 21.7 0.000 0.000 0.000 +2447284.5 1.68306 3.61309 -23841339.6 0.00780 0.00499 20.8 0.000 0.000 0.000 +2447285.5 1.69183 3.59936 -23842707.4 0.00780 0.00499 22.5 0.000 0.000 0.000 +2447286.5 1.69809 3.58502 -23843926.5 0.00744 0.00447 18.4 0.000 0.000 0.000 +2447287.5 1.70245 3.56986 -23845092.1 0.00606 0.00419 19.8 0.000 0.000 0.000 +2447288.5 1.70593 3.55405 -23846324.8 0.00664 0.00540 27.0 0.000 0.000 0.000 +2447289.5 1.70960 3.53788 -23847740.3 0.00693 0.00207 26.0 0.000 0.000 0.000 +2447290.5 1.71443 3.52161 -23849419.0 0.00657 0.00264 29.0 0.000 0.000 0.000 +2447291.5 1.72052 3.50539 -23851383.2 0.00687 0.00235 24.0 0.000 0.000 0.000 +2447292.5 1.72761 3.48933 -23853585.1 0.00669 0.00241 26.1 0.000 0.000 0.000 +2447293.5 1.73543 3.47356 -23855916.2 0.00650 0.00264 33.1 0.000 0.000 0.000 +2447294.5 1.74336 3.45801 -23858236.3 0.00650 0.00264 34.0 0.000 0.000 0.000 +2447295.5 1.75082 3.44257 -23860410.6 0.00752 0.00698 32.3 0.000 0.000 0.000 +2447296.5 1.75752 3.42705 -23862336.0 0.00747 0.00758 28.8 0.000 0.000 0.000 +2447297.5 1.76290 3.41122 -23863971.2 0.00713 0.00751 39.7 0.000 0.000 0.000 +2447298.5 1.76637 3.39480 -23865342.6 0.00673 0.00879 59.9 0.000 0.000 0.000 +2447299.5 1.76758 3.37754 -23866520.7 0.00673 0.00879 58.8 0.000 0.000 0.000 +2447300.5 1.76710 3.35918 -23867585.9 0.00655 0.00699 47.9 0.000 0.000 0.000 +2447301.5 1.76592 3.33987 -23868625.5 0.00516 0.00661 48.6 0.000 0.000 0.000 +2447302.5 1.76493 3.31993 -23869720.5 0.00520 0.00387 56.1 0.000 0.000 0.000 +2447303.5 1.76474 3.29970 -23870928.5 0.00528 0.00270 68.0 0.000 0.000 0.000 +2447304.5 1.76525 3.27963 -23872279.8 0.00574 0.00290 64.0 0.000 0.000 0.000 +2447305.5 1.76529 3.26012 -23873783.5 0.00623 0.00277 67.4 0.000 0.000 0.000 +2447306.5 1.76392 3.24139 -23875421.2 0.00534 0.00256 73.0 0.000 0.000 0.000 +2447307.5 1.76057 3.22320 -23877147.7 0.00463 0.00337 83.7 0.000 0.000 0.000 +2447308.5 1.75479 3.20524 -23878904.4 0.00428 0.00291 77.6 0.000 0.000 0.000 +2447309.5 1.74671 3.18721 -23880626.8 0.00460 0.00395 72.6 0.000 0.000 0.000 +2447310.5 1.73668 3.16889 -23882249.8 0.00460 0.00395 71.5 0.000 0.000 0.000 +2447311.5 1.72529 3.15023 -23883704.5 0.00183 0.00348 56.0 0.000 0.000 0.000 +2447312.5 1.71334 3.13131 -23884951.5 0.00234 0.00290 45.8 0.000 0.000 0.000 +2447313.5 1.70164 3.11218 -23886001.5 0.00299 0.00159 46.7 0.000 0.000 0.000 +2447314.5 1.69095 3.09293 -23886916.6 0.00282 0.00156 45.0 0.000 0.000 0.000 +2447315.5 1.68181 3.07370 -23887798.3 0.00354 0.00407 54.1 0.000 0.000 0.000 +2447316.5 1.67406 3.05468 -23888777.1 0.00327 0.00430 44.5 0.000 0.000 0.000 +2447317.5 1.66756 3.03601 -23889957.1 0.00302 0.00433 41.3 0.000 0.000 0.000 +2447318.5 1.66234 3.01773 -23891377.8 0.00328 0.00543 50.4 0.000 0.000 0.000 +2447319.5 1.65830 2.99978 -23893004.8 0.00367 0.00534 50.9 0.000 0.000 0.000 +2447320.5 1.65521 2.98200 -23894732.4 0.00367 0.00534 49.6 0.000 0.000 0.000 +2447321.5 1.65281 2.96429 -23896424.2 0.00349 0.00518 51.3 0.000 0.000 0.000 +2447322.5 1.65096 2.94655 -23897953.6 0.00321 0.00302 32.4 0.000 0.000 0.000 +2447323.5 1.64960 2.92868 -23899230.2 0.00373 0.00149 33.5 0.000 0.000 0.000 +2447324.5 1.64912 2.91059 -23900219.1 0.00373 0.00149 34.6 0.000 0.000 0.000 +2447325.5 1.64985 2.89222 -23900943.4 0.00333 0.00248 33.8 0.000 0.000 0.000 +2447326.5 1.65124 2.87359 -23901469.4 0.00555 0.00282 35.9 0.000 0.000 0.000 +2447327.5 1.65241 2.85465 -23901887.4 0.00729 0.00340 21.6 0.000 0.000 0.000 +2447328.5 1.65256 2.83526 -23902289.6 0.00926 0.00331 22.6 0.000 0.000 0.000 +2447329.5 1.65099 2.81524 -23902750.9 0.00930 0.00350 29.2 0.000 0.000 0.000 +2447330.5 1.64761 2.79423 -23903316.4 0.00922 0.00347 33.1 0.000 0.000 0.000 +2447331.5 1.64429 2.77206 -23903993.3 0.00907 0.00332 34.9 0.000 0.000 0.000 +2447332.5 1.64329 2.74890 -23904770.1 0.00884 0.00482 32.7 0.000 0.000 0.000 +2447333.5 1.64480 2.72541 -23905629.1 0.00734 0.00514 37.4 0.000 0.000 0.000 +2447334.5 1.64865 2.70250 -23906538.1 0.00688 0.00546 37.8 0.000 0.000 0.000 +2447335.5 1.65461 2.68095 -23907448.8 0.00701 0.00789 63.9 0.000 0.000 0.000 +2447336.5 1.66219 2.66085 -23908297.4 0.00737 0.00731 51.4 0.000 0.000 0.000 +2447337.5 1.67054 2.64205 -23909019.2 0.00712 0.00713 44.4 0.000 0.000 0.000 +2447338.5 1.67878 2.62409 -23909558.5 0.00651 0.00607 46.0 0.000 0.000 0.000 +2447339.5 1.68598 2.60630 -23909879.2 0.00678 0.00646 47.2 0.000 0.000 0.000 +2447340.5 1.69099 2.58813 -23909982.0 0.00689 0.00503 48.4 0.000 0.000 0.000 +2447341.5 1.69367 2.56967 -23909934.5 0.00636 0.00469 36.2 0.000 0.000 0.000 +2447342.5 1.69428 2.55105 -23909860.0 0.00506 0.00473 22.0 0.000 0.000 0.000 +2447343.5 1.69314 2.53226 -23909903.5 0.00985 0.00510 82.2 0.000 0.000 0.000 +2447344.5 1.69064 2.51327 -23910186.7 0.01107 0.00604 81.2 0.000 0.000 0.000 +2447345.5 1.68739 2.49406 -23910765.2 0.01428 0.00600 88.2 0.000 0.000 0.000 +2447346.5 1.68413 2.47465 -23911611.8 0.01353 0.00649 78.4 0.000 0.000 0.000 +2447347.5 1.68149 2.45501 -23912623.5 0.01305 0.00619 78.5 0.000 0.000 0.000 +2447348.5 1.67967 2.43495 -23913652.8 0.01442 0.00613 81.5 0.000 0.000 0.000 +2447349.5 1.67869 2.41453 -23914563.3 0.01346 0.00564 79.3 0.000 0.000 0.000 +2447350.5 1.67767 2.39398 -23915255.0 0.01246 0.00563 65.3 0.000 0.000 0.000 +2447351.5 1.67580 2.37346 -23915682.7 0.01227 0.00427 59.8 0.000 0.000 0.000 +2447352.5 1.67260 2.35313 -23915864.9 0.01103 0.00458 58.1 0.000 0.000 0.000 +2447353.5 1.66850 2.33304 -23915871.8 0.01311 0.00572 64.9 0.000 0.000 0.000 +2447354.5 1.66381 2.31322 -23915794.3 0.01311 0.00572 66.7 0.000 0.000 0.000 +2447355.5 1.65878 2.29375 -23915729.8 0.01700 0.00641 69.6 0.000 0.000 0.000 +2447356.5 1.65401 2.27489 -23915768.3 0.01451 0.00443 61.2 0.000 0.000 0.000 +2447357.5 1.64957 2.25659 -23915967.9 0.01472 0.00434 65.2 0.000 0.000 0.000 +2447358.5 1.64456 2.23841 -23916349.0 0.01581 0.00403 81.5 0.000 0.000 0.000 +2447359.5 1.63849 2.21977 -23916903.2 0.01510 0.00382 76.7 0.000 0.000 0.000 +2447360.5 1.63229 2.20009 -23917599.2 0.01322 0.00282 80.8 0.000 0.000 0.000 +2447361.5 1.62601 2.17948 -23918395.5 0.00835 0.00323 78.5 0.000 0.000 0.000 +2447362.5 1.61930 2.15823 -23919237.6 0.00803 0.00364 72.7 0.000 0.000 0.000 +2447363.5 1.61176 2.13682 -23920065.1 0.00470 0.00522 81.3 0.000 0.000 0.000 +2447364.5 1.60297 2.11573 -23920823.8 0.00407 0.00525 51.2 0.000 0.000 0.000 +2447365.5 1.59253 2.09532 -23921471.5 0.00391 0.00558 51.8 0.000 0.000 0.000 +2447366.5 1.58066 2.07543 -23921969.9 0.00376 0.00550 38.4 0.000 0.000 0.000 +2447367.5 1.56779 2.05576 -23922305.8 0.00574 0.00508 34.5 0.000 0.000 0.000 +2447368.5 1.55431 2.03602 -23922507.3 0.00676 0.00440 35.0 0.000 0.000 0.000 +2447369.5 1.54087 2.01625 -23922660.7 0.00863 0.00446 38.6 0.000 0.000 0.000 +2447370.5 1.52817 1.99660 -23922900.3 0.00800 0.00353 35.3 0.000 0.000 0.000 +2447371.5 1.51662 1.97717 -23923364.5 0.00799 0.00302 31.6 0.000 0.000 0.000 +2447372.5 1.50633 1.95803 -23924137.7 0.00796 0.00297 31.1 0.000 0.000 0.000 +2447373.5 1.49700 1.93905 -23925207.8 0.00827 0.00295 32.3 0.000 0.000 0.000 +2447374.5 1.48757 1.92007 -23926463.0 0.00793 0.00331 34.0 0.000 0.000 0.000 +2447375.5 1.47699 1.90107 -23927749.5 0.00728 0.00371 34.0 0.000 0.000 0.000 +2447376.5 1.46480 1.88197 -23928912.2 0.00547 0.00349 31.2 0.000 0.000 0.000 +2447377.5 1.45084 1.86273 -23929837.3 0.00496 0.00300 32.3 0.000 0.000 0.000 +2447378.5 1.43569 1.84341 -23930482.0 0.00560 0.00314 41.9 0.000 0.000 0.000 +2447379.5 1.41995 1.82417 -23930869.2 0.00560 0.00314 43.7 0.000 0.000 0.000 +2447380.5 1.40392 1.80502 -23931060.1 0.00436 0.00328 42.9 0.000 0.000 0.000 +2447381.5 1.38731 1.78604 -23931115.1 0.00431 0.00273 39.8 0.000 0.000 0.000 +2447382.5 1.37052 1.76745 -23931128.2 0.00510 0.00240 36.7 0.000 0.000 0.000 +2447383.5 1.35419 1.74950 -23931194.7 0.00487 0.00267 39.7 0.000 0.000 0.000 +2447384.5 1.33903 1.73259 -23931389.7 0.00583 0.00378 26.0 0.000 0.000 0.000 +2447385.5 1.32554 1.71712 -23931762.3 0.00583 0.00378 18.6 0.000 0.000 0.000 +2447386.5 1.31295 1.70311 -23932326.9 0.00616 0.00308 18.2 0.000 0.000 0.000 +2447387.5 1.30028 1.69023 -23933065.2 0.00563 0.00296 21.8 0.000 0.000 0.000 +2447388.5 1.28663 1.67817 -23933933.7 0.00470 0.00138 30.6 0.000 0.000 0.000 +2447389.5 1.27113 1.66656 -23934872.9 0.00445 0.00234 33.1 0.000 0.000 0.000 +2447390.5 1.25351 1.65509 -23935818.2 0.00445 0.00234 29.1 0.000 0.000 0.000 +2447391.5 1.23426 1.64348 -23936702.2 0.00449 0.00206 32.2 0.000 0.000 0.000 +2447392.5 1.21394 1.63155 -23937464.1 0.00301 0.00187 27.2 0.000 0.000 0.000 +2447393.5 1.19294 1.61922 -23938061.7 0.00339 0.00195 28.2 0.000 0.000 0.000 +2447394.5 1.17155 1.60655 -23938479.8 0.00339 0.00195 27.6 0.000 0.000 0.000 +2447395.5 1.14995 1.59357 -23938736.7 0.00367 0.00170 26.1 0.000 0.000 0.000 +2447396.5 1.12806 1.58051 -23938899.9 0.00331 0.00160 24.1 0.000 0.000 0.000 +2447397.5 1.10575 1.56757 -23939086.3 0.00400 0.00173 14.1 0.000 0.000 0.000 +2447398.5 1.08295 1.55496 -23939436.9 0.00463 0.00218 24.1 0.000 0.000 0.000 +2447399.5 1.05986 1.54276 -23940073.6 0.00463 0.00218 23.8 0.000 0.000 0.000 +2447400.5 1.03688 1.53098 -23941051.2 0.00451 0.00226 33.5 0.000 0.000 0.000 +2447401.5 1.01433 1.51963 -23942328.6 0.00389 0.00191 41.8 0.000 0.000 0.000 +2447402.5 0.99199 1.50862 -23943770.2 0.00357 0.00223 43.5 0.000 0.000 0.000 +2447403.5 0.96951 1.49785 -23945190.6 0.00236 0.00259 66.4 0.000 0.000 0.000 +2447404.5 0.94659 1.48723 -23946421.8 0.00313 0.00364 69.2 0.000 0.000 0.000 +2447405.5 0.92309 1.47677 -23947373.6 0.00313 0.00364 68.7 0.000 0.000 0.000 +2447406.5 0.89942 1.46658 -23948038.6 0.00285 0.00373 62.6 0.000 0.000 0.000 +2447407.5 0.87598 1.45677 -23948475.1 0.00295 0.00537 53.5 0.000 0.000 0.000 +2447408.5 0.85288 1.44721 -23948781.1 0.00307 0.00638 65.4 0.000 0.000 0.000 +2447409.5 0.83005 1.43766 -23949056.2 0.00318 0.00673 53.2 0.000 0.000 0.000 +2447410.5 0.80748 1.42792 -23949383.4 0.00257 0.00594 44.8 0.000 0.000 0.000 +2447411.5 0.78511 1.41809 -23949826.5 0.00226 0.00541 35.9 0.000 0.000 0.000 +2447412.5 0.76288 1.40839 -23950424.1 0.00314 0.00476 66.9 0.000 0.000 0.000 +2447413.5 0.74078 1.39905 -23951188.3 0.00347 0.00165 77.0 0.000 0.000 0.000 +2447414.5 0.71907 1.39027 -23952107.4 0.00347 0.00165 76.9 0.000 0.000 0.000 +2447415.5 0.69798 1.38217 -23953147.8 0.00347 0.00165 80.0 0.000 0.000 0.000 +2447416.5 0.67707 1.37472 -23954259.7 0.00406 0.00256 68.6 0.000 0.000 0.000 +2447417.5 0.65567 1.36779 -23955388.1 0.00372 0.00241 63.1 0.000 0.000 0.000 +2447418.5 0.63314 1.36124 -23956479.5 0.00339 0.00241 83.0 0.000 0.000 0.000 +2447419.5 0.60890 1.35492 -23957487.4 0.00350 0.00369 32.1 0.000 0.000 0.000 +2447420.5 0.58286 1.34876 -23958379.2 0.00350 0.00369 33.1 0.000 0.000 0.000 +2447421.5 0.55523 1.34263 -23959143.1 0.00347 0.00426 29.8 0.000 0.000 0.000 +2447422.5 0.52624 1.33638 -23959794.8 0.00157 0.00395 27.7 0.000 0.000 0.000 +2447423.5 0.49602 1.33001 -23960385.1 0.00191 0.00425 33.7 0.000 0.000 0.000 +2447424.5 0.46457 1.32386 -23961003.4 0.00206 0.00460 37.9 0.000 0.000 0.000 +2447425.5 0.43191 1.31828 -23961766.4 0.00204 0.00466 39.4 0.000 0.000 0.000 +2447426.5 0.39845 1.31334 -23962795.8 0.00210 0.00386 56.3 0.000 0.000 0.000 +2447427.5 0.36456 1.30892 -23964170.1 0.00336 0.00351 51.9 0.000 0.000 0.000 +2447428.5 0.33064 1.30493 -23965893.5 0.00377 0.00317 61.6 0.000 0.000 0.000 +2447429.5 0.29718 1.30149 -23967880.6 0.00425 0.00333 64.1 0.000 0.000 0.000 +2447430.5 0.26459 1.29877 -23969969.9 0.00519 0.00468 60.8 0.000 0.000 0.000 +2447431.5 0.23238 1.29683 -23971964.2 0.00537 0.00556 50.3 0.000 0.000 0.000 +2447432.5 0.19979 1.29562 -23973701.0 0.00480 0.00563 16.1 0.000 0.000 0.000 +2447433.5 0.16625 1.29493 -23975105.7 0.00523 0.00643 55.2 0.000 0.000 0.000 +2447434.5 0.13138 1.29440 -23976202.1 0.00549 0.00669 59.0 0.000 0.000 0.000 +2447435.5 0.09558 1.29350 -23977083.9 0.00549 0.00669 58.4 0.000 0.000 0.000 +2447436.5 0.06002 1.29241 -23977871.2 0.00476 0.00550 51.2 0.000 0.000 0.000 +2447437.5 0.02580 1.29165 -23978679.3 0.00523 0.00548 48.6 0.000 0.000 0.000 +2447438.5 -0.00647 1.29184 -23979603.8 0.00851 0.00668 65.9 0.000 0.000 0.000 +2447439.5 -0.03623 1.29361 -23980709.0 0.00847 0.00731 37.7 0.000 0.000 0.000 +2447440.5 -0.06327 1.29746 -23982029.6 0.00833 0.00796 31.5 0.000 0.000 0.000 +2447441.5 -0.08920 1.30334 -23983560.6 0.00775 0.00736 27.3 0.000 0.000 0.000 +2447442.5 -0.11614 1.31099 -23985267.0 0.00721 0.00732 26.9 0.000 0.000 0.000 +2447443.5 -0.14513 1.31984 -23987096.1 0.00788 0.00819 29.0 0.000 0.000 0.000 +2447444.5 -0.17647 1.32898 -23988980.5 0.00788 0.00819 28.5 0.000 0.000 0.000 +2447445.5 -0.21020 1.33749 -23990846.9 0.00312 0.00641 26.6 0.000 0.000 0.000 +2447446.5 -0.24585 1.34508 -23992621.0 0.00361 0.00628 30.4 0.000 0.000 0.000 +2447447.5 -0.28267 1.35180 -23994241.7 0.00335 0.00533 33.9 0.000 0.000 0.000 +2447448.5 -0.31977 1.35775 -23995675.8 0.00399 0.00433 56.1 0.000 0.000 0.000 +2447449.5 -0.35628 1.36304 -23996924.6 0.00462 0.00483 58.4 0.000 0.000 0.000 +2447450.5 -0.39145 1.36800 -23998029.7 0.00550 0.00671 33.1 0.000 0.000 0.000 +2447451.5 -0.42474 1.37314 -23999075.3 0.00600 0.00829 31.8 0.000 0.000 0.000 +2447452.5 -0.45574 1.37901 -24000174.8 0.00713 0.01057 33.2 0.000 0.000 0.000 +2447453.5 -0.48425 1.38606 -24001446.8 0.00713 0.01104 28.2 0.000 0.000 0.000 +2447454.5 -0.51051 1.39450 -24002990.4 0.00713 0.01104 32.7 0.000 0.000 0.000 +2447455.5 -0.53540 1.40418 -24004856.9 0.00771 0.01105 33.5 0.000 0.000 0.000 +2447456.5 -0.56001 1.41495 -24007009.6 0.00790 0.00971 32.7 0.000 0.000 0.000 +2447457.5 -0.58552 1.42668 -24009326.5 0.00718 0.00824 37.0 0.000 0.000 0.000 +2447458.5 -0.61299 1.43920 -24011633.8 0.00661 0.00413 34.8 0.000 0.000 0.000 +2447459.5 -0.64299 1.45221 -24013755.4 0.00661 0.00413 34.8 0.000 0.000 0.000 +2447460.5 -0.67564 1.46538 -24015571.7 0.00603 0.00432 28.3 0.000 0.000 0.000 +2447461.5 -0.70987 1.47857 -24017059.0 0.00511 0.00477 35.8 0.000 0.000 0.000 +2447462.5 -0.74427 1.49198 -24018280.4 0.00511 0.00492 35.9 0.000 0.000 0.000 +2447463.5 -0.77741 1.50584 -24019353.2 0.00455 0.00522 39.7 0.000 0.000 0.000 +2447464.5 -0.80792 1.52051 -24020405.8 0.00750 0.00507 38.7 0.000 0.000 0.000 +2447465.5 -0.83504 1.53633 -24021545.5 0.00750 0.00507 40.1 0.000 0.000 0.000 +2447466.5 -0.86018 1.55312 -24022843.2 0.00685 0.00443 36.1 0.000 0.000 0.000 +2447467.5 -0.88536 1.57063 -24024330.7 0.00640 0.00405 23.3 0.000 0.000 0.000 +2447468.5 -0.91173 1.58863 -24026009.8 0.00758 0.00239 24.5 0.000 0.000 0.000 +2447469.5 -0.93888 1.60694 -24027859.4 0.00714 0.00576 40.8 0.000 0.000 0.000 +2447470.5 -0.96610 1.62542 -24029838.2 0.00657 0.00584 43.2 0.000 0.000 0.000 +2447471.5 -0.99317 1.64417 -24031880.0 0.00303 0.00597 38.3 0.000 0.000 0.000 +2447472.5 -1.02039 1.66333 -24033900.9 0.00318 0.00750 36.3 0.000 0.000 0.000 +2447473.5 -1.04805 1.68289 -24035823.3 0.00283 0.00608 25.3 0.000 0.000 0.000 +2447474.5 -1.07595 1.70237 -24037600.0 0.00265 0.00621 24.9 0.000 0.000 0.000 +2447475.5 -1.10349 1.72135 -24039209.5 0.00265 0.00621 21.5 0.000 0.000 0.000 +2447476.5 -1.12939 1.74017 -24040645.7 0.00250 0.00506 16.8 0.000 0.000 0.000 +2447477.5 -1.15237 1.75988 -24041932.3 0.00247 0.00492 16.9 0.000 0.000 0.000 +2447478.5 -1.17248 1.78061 -24043145.9 0.00220 0.00455 16.2 0.000 0.000 0.000 +2447479.5 -1.19013 1.80224 -24044395.2 0.00221 0.00290 17.4 0.000 0.000 0.000 +2447480.5 -1.20564 1.82465 -24045795.9 0.00244 0.00357 37.4 0.000 0.000 0.000 +2447481.5 -1.21970 1.84800 -24047442.6 0.00239 0.00336 23.4 0.000 0.000 0.000 +2447482.5 -1.23319 1.87247 -24049383.4 0.00242 0.00331 22.9 0.000 0.000 0.000 +2447483.5 -1.24687 1.89803 -24051600.4 0.00235 0.00359 81.7 0.000 0.000 0.000 +2447484.5 -1.26151 1.92456 -24054005.1 0.00235 0.00359 81.3 0.000 0.000 0.000 +2447485.5 -1.27777 1.95185 -24056458.2 0.00564 0.00415 78.9 0.000 0.000 0.000 +2447486.5 -1.29581 1.97958 -24058803.3 0.00515 0.00373 66.1 0.000 0.000 0.000 +2447487.5 -1.31565 2.00748 -24060911.9 0.00565 0.00368 65.6 0.000 0.000 0.000 +2447488.5 -1.33718 2.03529 -24062717.1 0.00626 0.00711 94.4 0.000 0.000 0.000 +2447489.5 -1.35959 2.06307 -24064230.5 0.00626 0.00711 22.2 0.000 0.000 0.000 +2447490.5 -1.38192 2.09099 -24065530.6 0.00626 0.00711 22.5 0.000 0.000 0.000 +2447491.5 -1.40382 2.11928 -24066736.4 0.00331 0.00569 19.9 0.000 0.000 0.000 +2447492.5 -1.42531 2.14776 -24067964.9 0.00305 0.00503 33.9 0.000 0.000 0.000 +2447493.5 -1.44644 2.17613 -24069301.8 0.00241 0.00512 38.6 0.000 0.000 0.000 +2447494.5 -1.46728 2.20408 -24070792.2 0.00229 0.00308 38.9 0.000 0.000 0.000 +2447495.5 -1.48773 2.23143 -24072446.5 0.00229 0.00308 38.6 0.000 0.000 0.000 +2447496.5 -1.50724 2.25844 -24074250.3 0.00592 0.00287 38.4 0.000 0.000 0.000 +2447497.5 -1.52529 2.28538 -24076160.0 0.00616 0.00235 38.2 0.000 0.000 0.000 +2447498.5 -1.54141 2.31252 -24078113.1 0.00691 0.00160 32.1 0.000 0.000 0.000 +2447499.5 -1.55512 2.34013 -24080036.9 0.00965 0.00232 34.4 0.000 0.000 0.000 +2447500.5 -1.56665 2.36843 -24081860.2 0.00931 0.00273 33.3 0.000 0.000 0.000 +2447501.5 -1.57680 2.39744 -24083528.7 0.00787 0.00384 27.6 0.000 0.000 0.000 +2447502.5 -1.58638 2.42716 -24085007.1 0.00318 0.00505 31.6 0.000 0.000 0.000 +2447503.5 -1.59607 2.45756 -24086288.1 0.00298 0.00350 26.3 0.000 0.000 0.000 +2447504.5 -1.60600 2.48846 -24087402.1 0.00298 0.00350 34.6 0.000 0.000 0.000 +2447505.5 -1.61613 2.51957 -24088417.2 0.00298 0.00350 35.5 0.000 0.000 0.000 +2447506.5 -1.62646 2.55023 -24089414.1 0.00200 0.00371 33.5 0.000 0.000 0.000 +2447507.5 -1.63686 2.58000 -24090482.4 0.00493 0.00365 31.5 0.000 0.000 0.000 +2447508.5 -1.64681 2.60901 -24091721.6 0.00577 0.00266 31.9 0.000 0.000 0.000 +2447509.5 -1.65562 2.63750 -24093191.4 0.00577 0.00266 31.7 0.000 0.000 0.000 +2447510.5 -1.66218 2.66564 -24094888.5 0.00696 0.00375 30.3 0.000 0.000 0.000 +2447511.5 -1.66551 2.69378 -24096743.9 0.00586 0.00337 23.8 0.000 0.000 0.000 +2447512.5 -1.66631 2.72214 -24098632.8 0.00594 0.00294 19.9 0.000 0.000 0.000 +2447513.5 -1.66558 2.75081 -24100416.5 0.00652 0.00209 28.5 0.000 0.000 0.000 +2447514.5 -1.66430 2.77987 -24101977.9 0.00447 0.00218 24.3 0.000 0.000 0.000 +2447515.5 -1.66343 2.80943 -24103249.4 0.00446 0.00300 24.2 0.000 0.000 0.000 +2447516.5 -1.66324 2.83953 -24104236.2 0.00389 0.00337 17.4 0.000 0.000 0.000 +2447517.5 -1.66301 2.87005 -24105003.7 0.00389 0.00337 17.5 0.000 0.000 0.000 +2447518.5 -1.66187 2.90093 -24105655.1 0.00474 0.00429 21.0 0.000 0.000 0.000 +2447519.5 -1.65915 2.93240 -24106301.8 0.00322 0.00429 32.1 0.000 0.000 0.000 +2447520.5 -1.65459 2.96448 -24107038.1 0.00322 0.00429 32.2 0.000 0.000 0.000 +2447521.5 -1.64858 2.99671 -24107926.0 0.00247 0.00537 34.6 0.000 0.000 0.000 +2447522.5 -1.64164 3.02858 -24108988.9 0.00250 0.00570 40.4 0.000 0.000 0.000 +2447523.5 -1.63427 3.05957 -24110220.2 0.00364 0.00601 46.7 0.000 0.000 0.000 +2447524.5 -1.62697 3.08915 -24111593.2 0.00364 0.00601 57.8 0.000 0.000 0.000 +2447525.5 -1.61993 3.11686 -24113064.2 0.00364 0.00601 43.2 0.000 0.000 0.000 +2447526.5 -1.61308 3.14294 -24114568.1 0.00386 0.00510 35.6 0.000 0.000 0.000 +2447527.5 -1.60602 3.16783 -24116034.9 0.00365 0.00435 33.7 0.000 0.000 0.000 +2447528.5 -1.59813 3.19194 -24117404.7 0.00411 0.00120 40.5 0.000 0.000 0.000 +2447529.5 -1.58878 3.21566 -24118635.4 0.00368 0.00104 41.5 0.000 0.000 0.000 +2447530.5 -1.57756 3.23936 -24119706.1 0.00368 0.00104 27.7 0.000 0.000 0.000 +2447531.5 -1.56493 3.26321 -24120618.3 0.00324 0.00149 26.2 0.000 0.000 0.000 +2447532.5 -1.55162 3.28732 -24121410.1 0.00292 0.00139 28.8 0.000 0.000 0.000 +2447533.5 -1.53814 3.31176 -24122161.4 0.00396 0.00158 38.6 0.000 0.000 0.000 +2447534.5 -1.52486 3.33660 -24122979.6 0.00396 0.00158 37.7 0.000 0.000 0.000 +2447535.5 -1.51220 3.36188 -24123971.2 0.00398 0.00176 37.2 0.000 0.000 0.000 +2447536.5 -1.50086 3.38744 -24125221.9 0.00336 0.00194 31.6 0.000 0.000 0.000 +2447537.5 -1.49118 3.41304 -24126751.2 0.00263 0.00145 23.8 0.000 0.000 0.000 +2447538.5 -1.48298 3.43840 -24128497.3 0.00302 0.00138 20.2 0.000 0.000 0.000 +2447539.5 -1.47599 3.46326 -24130341.9 0.00155 0.00139 18.1 0.000 0.000 0.000 +2447540.5 -1.46966 3.48747 -24132146.0 0.00155 0.00139 18.0 0.000 0.000 0.000 +2447541.5 -1.46313 3.51106 -24133774.3 0.00134 0.00157 16.5 0.000 0.000 0.000 +2447542.5 -1.45575 3.53416 -24135147.4 0.00165 0.00181 14.7 0.000 0.000 0.000 +2447543.5 -1.44712 3.55699 -24136254.5 0.00187 0.00173 14.1 0.000 0.000 0.000 +2447544.5 -1.43682 3.57978 -24137142.4 0.00202 0.00271 17.8 0.000 0.000 0.000 +2447545.5 -1.42454 3.60275 -24137898.2 0.00202 0.00271 17.8 0.000 0.000 0.000 +2447546.5 -1.41069 3.62591 -24138634.2 0.00279 0.00407 18.3 0.000 0.000 0.000 +2447547.5 -1.39614 3.64911 -24139458.5 0.00437 0.00361 17.2 0.000 0.000 0.000 +2447548.5 -1.38166 3.67207 -24140454.3 0.00567 0.00392 23.0 0.000 0.000 0.000 +2447549.5 -1.36791 3.69445 -24141670.5 0.00567 0.00392 20.1 0.000 0.000 0.000 +2447550.5 -1.35534 3.71599 -24143117.4 0.00602 0.00398 19.3 0.000 0.000 0.000 +2447551.5 -1.34354 3.73685 -24144758.5 0.00558 0.00422 18.3 0.000 0.000 0.000 +2447552.5 -1.33246 3.75712 -24146527.0 0.00519 0.00397 19.0 0.000 0.000 0.000 +2447553.5 -1.32217 3.77685 -24148344.2 0.00635 0.00385 38.5 0.000 0.000 0.000 +2447554.5 -1.31270 3.79614 -24150130.7 0.00326 0.00354 36.4 0.000 0.000 0.000 +2447555.5 -1.30356 3.81536 -24151815.8 0.00326 0.00354 36.5 0.000 0.000 0.000 +2447556.5 -1.29402 3.83499 -24153352.2 0.00460 0.00421 32.7 0.000 0.000 0.000 +2447557.5 -1.28327 3.85549 -24154713.9 0.00378 0.00381 33.1 0.000 0.000 0.000 +2447558.5 -1.27065 3.87734 -24155902.0 0.00460 0.00425 45.2 0.000 0.000 0.000 +2447559.5 -1.25563 3.90104 -24156950.7 0.00454 0.00450 36.2 0.000 0.000 0.000 +2447560.5 -1.23811 3.92689 -24157931.9 0.00478 0.00479 39.6 0.000 0.000 0.000 +2447561.5 -1.21890 3.95441 -24158954.7 0.00425 0.00435 30.4 0.000 0.000 0.000 +2447562.5 -1.19882 3.98270 -24160150.4 0.00220 0.00387 26.6 0.000 0.000 0.000 +2447563.5 -1.17850 4.01072 -24161629.2 0.00194 0.00348 26.4 0.000 0.000 0.000 +2447564.5 -1.15828 4.03719 -24163440.1 0.00189 0.00379 26.3 0.000 0.000 0.000 +2447565.5 -1.13839 4.06093 -24165544.0 0.00143 0.00366 25.8 0.000 0.000 0.000 +2447566.5 -1.11855 4.08178 -24167813.9 0.00141 0.00366 24.4 0.000 0.000 0.000 +2447567.5 -1.09831 4.10047 -24170063.1 0.00261 0.00349 22.8 0.000 0.000 0.000 +2447568.5 -1.07723 4.11785 -24172115.8 0.00334 0.00450 32.9 0.000 0.000 0.000 +2447569.5 -1.05482 4.13482 -24173856.8 0.00409 0.00610 27.7 0.000 0.000 0.000 +2447570.5 -1.03068 4.15224 -24175252.2 0.00409 0.00610 28.4 0.000 0.000 0.000 +2447571.5 -1.00510 4.17062 -24176352.0 0.00487 0.00627 30.3 0.000 0.000 0.000 +2447572.5 -0.97883 4.19014 -24177254.3 0.00451 0.00474 26.6 0.000 0.000 0.000 +2447573.5 -0.95291 4.21047 -24178070.2 0.00372 0.00421 30.8 0.000 0.000 0.000 +2447574.5 -0.92836 4.23126 -24178899.6 0.00366 0.00338 46.6 0.000 0.000 0.000 +2447575.5 -0.90591 4.25199 -24179821.6 0.00607 0.00405 45.8 0.000 0.000 0.000 +2447576.5 -0.88515 4.27185 -24180901.0 0.00571 0.00399 41.7 0.000 0.000 0.000 +2447577.5 -0.86517 4.29035 -24182163.9 0.00559 0.00360 38.7 0.000 0.000 0.000 +2447578.5 -0.84411 4.30848 -24183602.9 0.00574 0.00390 40.5 0.000 0.000 0.000 +2447579.5 -0.82038 4.32713 -24185178.0 0.00620 0.00432 40.9 0.000 0.000 0.000 +2447580.5 -0.79389 4.34673 -24186818.1 0.00759 0.00603 34.9 0.000 0.000 0.000 +2447581.5 -0.76498 4.36741 -24188454.0 0.00777 0.00420 35.0 0.000 0.000 0.000 +2447582.5 -0.73451 4.38900 -24190024.1 0.00378 0.00437 27.7 0.000 0.000 0.000 +2447583.5 -0.70363 4.41116 -24191480.9 0.00611 0.00513 38.9 0.000 0.000 0.000 +2447584.5 -0.67334 4.43340 -24192795.8 0.00590 0.00469 39.9 0.000 0.000 0.000 +2447585.5 -0.64441 4.45506 -24193962.0 0.00590 0.00469 39.4 0.000 0.000 0.000 +2447586.5 -0.61756 4.47570 -24194999.5 0.00496 0.00341 32.0 0.000 0.000 0.000 +2447587.5 -0.59301 4.49506 -24195962.8 0.00503 0.00237 24.0 0.000 0.000 0.000 +2447588.5 -0.57011 4.51308 -24196944.0 0.00527 0.00183 26.4 0.000 0.000 0.000 +2447589.5 -0.54806 4.52972 -24198062.8 0.00415 0.00124 24.4 0.000 0.000 0.000 +2447590.5 -0.52619 4.54500 -24199442.1 0.00405 0.00118 26.1 0.000 0.000 0.000 +2447591.5 -0.50443 4.55913 -24201175.4 0.00372 0.00143 23.6 0.000 0.000 0.000 +2447592.5 -0.48216 4.57234 -24203276.2 0.00456 0.00232 24.8 0.000 0.000 0.000 +2447593.5 -0.45858 4.58482 -24205662.0 0.00485 0.00252 28.1 0.000 0.000 0.000 +2447594.5 -0.43312 4.59678 -24208176.6 0.00470 0.00327 34.0 0.000 0.000 0.000 +2447595.5 -0.40538 4.60844 -24210636.8 0.00470 0.00327 32.2 0.000 0.000 0.000 +2447596.5 -0.37580 4.62024 -24212872.0 0.00500 0.00353 45.1 0.000 0.000 0.000 +2447597.5 -0.34516 4.63244 -24214785.7 0.00500 0.00353 45.1 0.000 0.000 0.000 +2447598.5 -0.31423 4.64525 -24216375.7 0.00485 0.00445 74.1 0.000 0.000 0.000 +2447599.5 -0.28378 4.65888 -24217708.3 0.00485 0.00445 73.4 0.000 0.000 0.000 +2447600.5 -0.25423 4.67334 -24218885.5 0.00485 0.00445 74.3 0.000 0.000 0.000 +2447601.5 -0.22516 4.68839 -24220036.3 0.00373 0.00478 57.7 0.000 0.000 0.000 +2447602.5 -0.19616 4.70363 -24221267.2 0.00359 0.00491 49.7 0.000 0.000 0.000 +2447603.5 -0.16707 4.71840 -24222647.2 0.00253 0.00525 39.4 0.000 0.000 0.000 +2447604.5 -0.13772 4.73207 -24224212.4 0.00195 0.00504 37.7 0.000 0.000 0.000 +2447605.5 -0.10790 4.74405 -24225968.7 0.00180 0.00487 38.6 0.000 0.000 0.000 +2447606.5 -0.07751 4.75439 -24227875.1 0.00178 0.00436 33.6 0.000 0.000 0.000 +2447607.5 -0.04659 4.76339 -24229863.0 0.00169 0.00394 24.4 0.000 0.000 0.000 +2447608.5 -0.01515 4.77137 -24231854.8 0.00165 0.00210 25.8 0.000 0.000 0.000 +2447609.5 0.01683 4.77847 -24233773.5 0.00586 0.00339 44.9 0.000 0.000 0.000 +2447610.5 0.04931 4.78478 -24235556.8 0.00567 0.00360 40.2 0.000 0.000 0.000 +2447611.5 0.08184 4.79033 -24237169.1 0.00514 0.00437 37.9 0.000 0.000 0.000 +2447612.5 0.11379 4.79521 -24238599.8 0.00460 0.00433 35.7 0.000 0.000 0.000 +2447613.5 0.14477 4.79941 -24239859.9 0.00563 0.00526 46.9 0.000 0.000 0.000 +2447614.5 0.17533 4.80260 -24240980.6 0.00597 0.00558 44.1 0.000 0.000 0.000 +2447615.5 0.20593 4.80495 -24242020.7 0.00597 0.00558 28.9 0.000 0.000 0.000 +2447616.5 0.23697 4.80708 -24243080.5 0.00384 0.00506 37.3 0.000 0.000 0.000 +2447617.5 0.26849 4.80933 -24244283.9 0.00419 0.00408 35.4 0.000 0.000 0.000 +2447618.5 0.30023 4.81190 -24245740.4 0.00464 0.00377 38.3 0.000 0.000 0.000 +2447619.5 0.33273 4.81455 -24247510.7 0.00505 0.00405 37.4 0.000 0.000 0.000 +2447620.5 0.36666 4.81690 -24249570.2 0.00445 0.00404 37.6 0.000 0.000 0.000 +2447621.5 0.40177 4.81883 -24251798.6 0.00333 0.00204 35.6 0.000 0.000 0.000 +2447622.5 0.43716 4.82038 -24254016.5 0.00482 0.00244 15.3 0.000 0.000 0.000 +2447623.5 0.47189 4.82160 -24256047.8 0.00609 0.00303 22.4 0.000 0.000 0.000 +2447624.5 0.50518 4.82249 -24257779.8 0.00609 0.00303 23.0 0.000 0.000 0.000 +2447625.5 0.53638 4.82304 -24259196.4 0.00609 0.00303 23.5 0.000 0.000 0.000 +2447626.5 0.56563 4.82333 -24260369.4 0.00461 0.00289 13.6 0.000 0.000 0.000 +2447627.5 0.59378 4.82336 -24261423.1 0.00405 0.00265 9.7 0.000 0.000 0.000 +2447628.5 0.62167 4.82313 -24262487.6 0.00201 0.00212 9.8 0.000 0.000 0.000 +2447629.5 0.65017 4.82263 -24263664.2 0.00201 0.00212 11.4 0.000 0.000 0.000 +2447630.5 0.67995 4.82190 -24265012.8 0.00201 0.00212 21.1 0.000 0.000 0.000 +2447631.5 0.71077 4.82097 -24266555.0 0.00176 0.00209 18.4 0.000 0.000 0.000 +2447632.5 0.74196 4.81999 -24268282.9 0.00259 0.00278 16.5 0.000 0.000 0.000 +2447633.5 0.77282 4.81908 -24270166.5 0.00278 0.00300 24.3 0.000 0.000 0.000 +2447634.5 0.80263 4.81836 -24272161.6 0.00269 0.00346 27.3 0.000 0.000 0.000 +2447635.5 0.83072 4.81796 -24274215.5 0.00384 0.00391 35.2 0.000 0.000 0.000 +2447636.5 0.85675 4.81777 -24276272.5 0.00373 0.00449 28.4 0.000 0.000 0.000 +2447637.5 0.88091 4.81734 -24278285.3 0.00404 0.00480 29.8 0.000 0.000 0.000 +2447638.5 0.90354 4.81631 -24280221.0 0.00398 0.00490 37.5 0.000 0.000 0.000 +2447639.5 0.92507 4.81448 -24282054.8 0.00423 0.00502 39.1 0.000 0.000 0.000 +2447640.5 0.94515 4.81151 -24283769.1 0.00437 0.00498 39.3 0.000 0.000 0.000 +2447641.5 0.96392 4.80749 -24285374.3 0.00412 0.00530 33.9 0.000 0.000 0.000 +2447642.5 0.98184 4.80262 -24286912.9 0.00289 0.00502 21.7 0.000 0.000 0.000 +2447643.5 0.99959 4.79696 -24288463.6 0.00233 0.00386 24.0 0.000 0.000 0.000 +2447644.5 1.01791 4.79060 -24290118.0 0.00233 0.00443 23.9 0.000 0.000 0.000 +2447645.5 1.03702 4.78390 -24291959.9 0.00292 0.00583 23.7 0.000 0.000 0.000 +2447646.5 1.05700 4.77698 -24294050.7 0.00266 0.00577 20.7 0.000 0.000 0.000 +2447647.5 1.07799 4.76978 -24296394.7 0.00283 0.00565 18.3 0.000 0.000 0.000 +2447648.5 1.10036 4.76215 -24298918.6 0.00376 0.00687 24.7 0.000 0.000 0.000 +2447649.5 1.12449 4.75385 -24301482.3 0.00345 0.00721 20.2 0.000 0.000 0.000 +2447650.5 1.15081 4.74460 -24303917.9 0.00345 0.00721 20.2 0.000 0.000 0.000 +2447651.5 1.17895 4.73474 -24306081.3 0.00304 0.00677 15.4 0.000 0.000 0.000 +2447652.5 1.20824 4.72482 -24307902.9 0.00311 0.00522 17.3 0.000 0.000 0.000 +2447653.5 1.23795 4.71530 -24309408.4 0.00281 0.00447 23.0 0.000 0.000 0.000 +2447654.5 1.26732 4.70646 -24310699.6 0.00281 0.00447 22.9 0.000 0.000 0.000 +2447655.5 1.29564 4.69840 -24311911.6 0.00300 0.00431 22.7 0.000 0.000 0.000 +2447656.5 1.32271 4.69071 -24313166.6 0.00245 0.00410 17.7 0.000 0.000 0.000 +2447657.5 1.34894 4.68278 -24314544.5 0.00264 0.00358 23.2 0.000 0.000 0.000 +2447658.5 1.37478 4.67393 -24316078.2 0.00232 0.00276 27.3 0.000 0.000 0.000 +2447659.5 1.40072 4.66354 -24317762.1 0.00284 0.00383 34.8 0.000 0.000 0.000 +2447660.5 1.42713 4.65117 -24319564.7 0.00284 0.00383 37.4 0.000 0.000 0.000 +2447661.5 1.45373 4.63686 -24321436.3 0.00367 0.00501 35.9 0.000 0.000 0.000 +2447662.5 1.47995 4.62080 -24323319.6 0.00432 0.00483 33.7 0.000 0.000 0.000 +2447663.5 1.50557 4.60343 -24325157.1 0.00574 0.00628 45.1 0.000 0.000 0.000 +2447664.5 1.53053 4.58539 -24326901.4 0.00574 0.00580 47.1 0.000 0.000 0.000 +2447665.5 1.55479 4.56728 -24328519.2 0.00576 0.00554 40.9 0.000 0.000 0.000 +2447666.5 1.57813 4.54961 -24329994.2 0.00511 0.00534 33.7 0.000 0.000 0.000 +2447667.5 1.60013 4.53283 -24331336.8 0.00470 0.00576 28.9 0.000 0.000 0.000 +2447668.5 1.62012 4.51709 -24332583.2 0.00454 0.00549 28.1 0.000 0.000 0.000 +2447669.5 1.63818 4.50173 -24333794.5 0.00454 0.00549 28.1 0.000 0.000 0.000 +2447670.5 1.65470 4.48601 -24335051.5 0.00383 0.00565 13.4 0.000 0.000 0.000 +2447671.5 1.67035 4.46974 -24336437.6 0.00349 0.00563 14.6 0.000 0.000 0.000 +2447672.5 1.68651 4.45325 -24338027.6 0.00359 0.00531 15.8 0.000 0.000 0.000 +2447673.5 1.70374 4.43676 -24339875.7 0.00383 0.00436 27.2 0.000 0.000 0.000 +2447674.5 1.72234 4.42053 -24341988.5 0.00408 0.00471 32.3 0.000 0.000 0.000 +2447675.5 1.74244 4.40494 -24344311.3 0.00286 0.00499 37.9 0.000 0.000 0.000 +2447676.5 1.76347 4.38996 -24346727.1 0.00321 0.00507 29.9 0.000 0.000 0.000 +2447677.5 1.78462 4.37533 -24349079.9 0.00313 0.00468 27.1 0.000 0.000 0.000 +2447678.5 1.80524 4.36056 -24351216.4 0.00351 0.00435 36.9 0.000 0.000 0.000 +2447679.5 1.82480 4.34507 -24353029.2 0.00333 0.00469 28.7 0.000 0.000 0.000 +2447680.5 1.84299 4.32848 -24354488.5 0.00333 0.00469 53.5 0.000 0.000 0.000 +2447681.5 1.85990 4.31099 -24355647.9 0.00360 0.00428 46.9 0.000 0.000 0.000 +2447682.5 1.87574 4.29299 -24356619.8 0.00324 0.00373 46.7 0.000 0.000 0.000 +2447683.5 1.89134 4.27496 -24357540.6 0.00373 0.00393 72.2 0.000 0.000 0.000 +2447684.5 1.90762 4.25697 -24358532.1 0.00373 0.00393 70.9 0.000 0.000 0.000 +2447685.5 1.92528 4.23898 -24359668.5 0.00445 0.00278 65.5 0.000 0.000 0.000 +2447686.5 1.94422 4.22078 -24360965.7 0.00407 0.00179 46.2 0.000 0.000 0.000 +2447687.5 1.96415 4.20212 -24362400.6 0.00386 0.00164 41.7 0.000 0.000 0.000 +2447688.5 1.98480 4.18270 -24363925.4 0.00498 0.00136 47.9 0.000 0.000 0.000 +2447689.5 2.00592 4.16232 -24365480.1 0.00498 0.00136 32.6 0.000 0.000 0.000 +2447690.5 2.02688 4.14097 -24366991.1 0.00498 0.00136 34.5 0.000 0.000 0.000 +2447691.5 2.04699 4.11873 -24368395.2 0.00403 0.00103 31.4 0.000 0.000 0.000 +2447692.5 2.06592 4.09571 -24369643.5 0.00362 0.00106 15.5 0.000 0.000 0.000 +2447693.5 2.08403 4.07203 -24370705.3 0.00459 0.00128 28.8 0.000 0.000 0.000 +2447694.5 2.10177 4.04783 -24371574.3 0.00118 0.00141 28.4 0.000 0.000 0.000 +2447695.5 2.11951 4.02323 -24372273.8 0.00143 0.00148 27.7 0.000 0.000 0.000 +2447696.5 2.13748 3.99831 -24372865.5 0.00456 0.00171 24.7 0.000 0.000 0.000 +2447697.5 2.15591 3.97312 -24373441.3 0.00600 0.00233 22.8 0.000 0.000 0.000 +2447698.5 2.17500 3.94772 -24374107.5 0.00753 0.00281 31.8 0.000 0.000 0.000 +2447699.5 2.19482 3.92204 -24374963.1 0.00753 0.00281 24.7 0.000 0.000 0.000 +2447700.5 2.21512 3.89604 -24376071.1 0.00753 0.00281 38.8 0.000 0.000 0.000 +2447701.5 2.23506 3.86966 -24377429.2 0.00684 0.00248 36.8 0.000 0.000 0.000 +2447702.5 2.25465 3.84294 -24378974.4 0.00744 0.00359 33.2 0.000 0.000 0.000 +2447703.5 2.27411 3.81596 -24380594.1 0.00758 0.00374 39.5 0.000 0.000 0.000 +2447704.5 2.29371 3.78877 -24382146.3 0.00672 0.00378 45.1 0.000 0.000 0.000 +2447705.5 2.31380 3.76141 -24383492.8 0.00672 0.00378 45.0 0.000 0.000 0.000 +2447706.5 2.33410 3.73375 -24384546.5 0.00685 0.00363 23.2 0.000 0.000 0.000 +2447707.5 2.35368 3.70577 -24385283.4 0.00718 0.00387 26.7 0.000 0.000 0.000 +2447708.5 2.37196 3.67738 -24385748.7 0.00830 0.00449 26.8 0.000 0.000 0.000 +2447709.5 2.38862 3.64845 -24386045.0 0.00729 0.00326 28.0 0.000 0.000 0.000 +2447710.5 2.40387 3.61902 -24386300.9 0.00633 0.00367 25.3 0.000 0.000 0.000 +2447711.5 2.41838 3.58933 -24386641.6 0.00575 0.00380 24.1 0.000 0.000 0.000 +2447712.5 2.43254 3.55959 -24387154.6 0.00679 0.00464 30.9 0.000 0.000 0.000 +2447713.5 2.44659 3.52999 -24387874.7 0.00700 0.00473 33.9 0.000 0.000 0.000 +2447714.5 2.46051 3.50068 -24388791.4 0.00508 0.00338 24.4 0.000 0.000 0.000 +2447715.5 2.47412 3.47163 -24389860.4 0.00508 0.00338 24.2 0.000 0.000 0.000 +2447716.5 2.48733 3.44262 -24391015.1 0.00480 0.00349 24.4 0.000 0.000 0.000 +2447717.5 2.50003 3.41339 -24392175.7 0.00556 0.00323 26.6 0.000 0.000 0.000 +2447718.5 2.51236 3.38391 -24393272.2 0.00534 0.00257 29.1 0.000 0.000 0.000 +2447719.5 2.52400 3.35421 -24394266.9 0.00535 0.00237 30.0 0.000 0.000 0.000 +2447720.5 2.53463 3.32454 -24395141.6 0.00629 0.00350 34.2 0.000 0.000 0.000 +2447721.5 2.54470 3.29533 -24395900.8 0.00803 0.00442 61.1 0.000 0.000 0.000 +2447722.5 2.55493 3.26699 -24396576.3 0.00864 0.00453 59.4 0.000 0.000 0.000 +2447723.5 2.56545 3.23965 -24397213.5 0.00804 0.00491 50.4 0.000 0.000 0.000 +2447724.5 2.57532 3.21309 -24397862.8 0.00798 0.00499 51.1 0.000 0.000 0.000 +2447725.5 2.58302 3.18667 -24398589.7 0.00782 0.00522 50.2 0.000 0.000 0.000 +2447726.5 2.58856 3.15975 -24399486.5 0.00604 0.00495 46.0 0.000 0.000 0.000 +2447727.5 2.59264 3.13189 -24400631.0 0.00486 0.00520 30.3 0.000 0.000 0.000 +2447728.5 2.59542 3.10293 -24402054.5 0.00908 0.00880 52.5 0.000 0.000 0.000 +2447729.5 2.59699 3.07289 -24403719.7 0.00894 0.00812 63.7 0.000 0.000 0.000 +2447730.5 2.59743 3.04176 -24405520.8 0.01211 0.00887 82.5 0.000 0.000 0.000 +2447731.5 2.59678 3.00961 -24407298.8 0.00970 0.00750 68.1 0.000 0.000 0.000 +2447732.5 2.59538 2.97671 -24408902.1 0.00946 0.00746 65.1 0.000 0.000 0.000 +2447733.5 2.59433 2.94313 -24410240.2 0.01136 0.00786 70.7 0.000 0.000 0.000 +2447734.5 2.59422 2.90896 -24411280.8 0.00986 0.00721 61.1 0.000 0.000 0.000 +2447735.5 2.59497 2.87466 -24412047.2 0.00723 0.00526 54.2 0.000 0.000 0.000 +2447736.5 2.59600 2.84069 -24412626.4 0.00669 0.00535 49.4 0.000 0.000 0.000 +2447737.5 2.59620 2.80742 -24413127.5 0.00484 0.00480 45.0 0.000 0.000 0.000 +2447738.5 2.59508 2.77534 -24413658.4 0.00634 0.00540 48.0 0.000 0.000 0.000 +2447739.5 2.59305 2.74433 -24414310.2 0.00634 0.00420 46.3 0.000 0.000 0.000 +2447740.5 2.59084 2.71404 -24415129.2 0.00597 0.00399 45.9 0.000 0.000 0.000 +2447741.5 2.58954 2.68398 -24416115.4 0.00620 0.00316 23.7 0.000 0.000 0.000 +2447742.5 2.59003 2.65387 -24417233.4 0.00616 0.00322 41.6 0.000 0.000 0.000 +2447743.5 2.59199 2.62368 -24418429.9 0.00731 0.00384 47.8 0.000 0.000 0.000 +2447744.5 2.59404 2.59335 -24419642.6 0.00731 0.00385 48.5 0.000 0.000 0.000 +2447745.5 2.59524 2.56288 -24420816.7 0.00828 0.00395 54.4 0.000 0.000 0.000 +2447746.5 2.59550 2.53224 -24421902.3 0.00722 0.00518 51.5 0.000 0.000 0.000 +2447747.5 2.59536 2.50163 -24422863.2 0.00757 0.00530 51.1 0.000 0.000 0.000 +2447748.5 2.59584 2.47121 -24423692.9 0.00817 0.00590 44.6 0.000 0.000 0.000 +2447749.5 2.59730 2.44120 -24424402.1 0.00849 0.00586 44.4 0.000 0.000 0.000 +2447750.5 2.59863 2.41195 -24425014.4 0.00805 0.00562 44.9 0.000 0.000 0.000 +2447751.5 2.59883 2.38335 -24425595.5 0.00719 0.00647 38.9 0.000 0.000 0.000 +2447752.5 2.59723 2.35501 -24426241.9 0.00415 0.00673 25.9 0.000 0.000 0.000 +2447753.5 2.59353 2.32637 -24427063.9 0.00494 0.00665 38.1 0.000 0.000 0.000 +2447754.5 2.58744 2.29685 -24428160.0 0.00486 0.00628 35.1 0.000 0.000 0.000 +2447755.5 2.57896 2.26589 -24429584.5 0.00486 0.00628 35.1 0.000 0.000 0.000 +2447756.5 2.56888 2.23353 -24431325.8 0.00490 0.00609 34.3 0.000 0.000 0.000 +2447757.5 2.55808 2.20016 -24433293.3 0.00452 0.00549 36.1 0.000 0.000 0.000 +2447758.5 2.54719 2.16613 -24435321.8 0.00638 0.00322 53.9 0.000 0.000 0.000 +2447759.5 2.53709 2.13171 -24437228.7 0.00638 0.00322 54.5 0.000 0.000 0.000 +2447760.5 2.52853 2.09719 -24438871.2 0.00521 0.00354 34.5 0.000 0.000 0.000 +2447761.5 2.52176 2.06296 -24440185.5 0.00387 0.00337 25.5 0.000 0.000 0.000 +2447762.5 2.51642 2.02951 -24441192.8 0.00324 0.00545 20.1 0.000 0.000 0.000 +2447763.5 2.51176 1.99736 -24441976.4 0.00291 0.00563 14.1 0.000 0.000 0.000 +2447764.5 2.50702 1.96705 -24442646.6 0.00298 0.00599 14.4 0.000 0.000 0.000 +2447765.5 2.50153 1.93911 -24443311.7 0.00245 0.00550 13.8 0.000 0.000 0.000 +2447766.5 2.49450 1.91280 -24444071.8 0.00225 0.00552 13.3 0.000 0.000 0.000 +2447767.5 2.48515 1.88686 -24444996.7 0.00286 0.00646 18.1 0.000 0.000 0.000 +2447768.5 2.47311 1.86022 -24446113.5 0.00392 0.00636 25.9 0.000 0.000 0.000 +2447769.5 2.45832 1.83203 -24447409.0 0.00498 0.00599 27.7 0.000 0.000 0.000 +2447770.5 2.44088 1.80195 -24448832.6 0.00452 0.00594 28.1 0.000 0.000 0.000 +2447771.5 2.42152 1.77046 -24450310.4 0.00406 0.00535 32.6 0.000 0.000 0.000 +2447772.5 2.40120 1.73826 -24451759.2 0.00386 0.00496 26.8 0.000 0.000 0.000 +2447773.5 2.38048 1.70602 -24453103.4 0.00377 0.00460 28.7 0.000 0.000 0.000 +2447774.5 2.35943 1.67428 -24454286.1 0.00394 0.00460 28.6 0.000 0.000 0.000 +2447775.5 2.33794 1.64361 -24455279.3 0.00351 0.00454 28.9 0.000 0.000 0.000 +2447776.5 2.31570 1.61444 -24456098.8 0.00317 0.00413 25.9 0.000 0.000 0.000 +2447777.5 2.29244 1.58670 -24456791.2 0.00308 0.00324 22.3 0.000 0.000 0.000 +2447778.5 2.26808 1.56019 -24457423.7 0.00375 0.00387 26.4 0.000 0.000 0.000 +2447779.5 2.24316 1.53470 -24458075.9 0.00366 0.00153 26.4 0.000 0.000 0.000 +2447780.5 2.21852 1.51007 -24458841.3 0.00366 0.00153 27.9 0.000 0.000 0.000 +2447781.5 2.19436 1.48607 -24459814.2 0.00387 0.00149 27.7 0.000 0.000 0.000 +2447782.5 2.17046 1.46264 -24461086.1 0.00383 0.00175 28.8 0.000 0.000 0.000 +2447783.5 2.14669 1.43973 -24462700.8 0.00358 0.00175 29.1 0.000 0.000 0.000 +2447784.5 2.12296 1.41721 -24464625.7 0.00396 0.00200 39.0 0.000 0.000 0.000 +2447785.5 2.09922 1.39492 -24466749.4 0.00396 0.00356 41.6 0.000 0.000 0.000 +2447786.5 2.07511 1.37265 -24468893.6 0.00373 0.00325 34.5 0.000 0.000 0.000 +2447787.5 2.05024 1.35023 -24470879.9 0.00316 0.00362 28.7 0.000 0.000 0.000 +2447788.5 2.02465 1.32750 -24472587.7 0.00251 0.00371 26.1 0.000 0.000 0.000 +2447789.5 1.99839 1.30462 -24473986.4 0.00251 0.00371 23.9 0.000 0.000 0.000 +2447790.5 1.97144 1.28196 -24475134.9 0.00319 0.00439 27.8 0.000 0.000 0.000 +2447791.5 1.94340 1.25952 -24476149.1 0.00297 0.00344 51.6 0.000 0.000 0.000 +2447792.5 1.91420 1.23713 -24477158.0 0.00266 0.00303 41.9 0.000 0.000 0.000 +2447793.5 1.88385 1.21465 -24478265.9 0.00246 0.00236 48.2 0.000 0.000 0.000 +2447794.5 1.85259 1.19184 -24479536.2 0.00284 0.00272 48.4 0.000 0.000 0.000 +2447795.5 1.82099 1.16841 -24480997.6 0.00284 0.00272 50.2 0.000 0.000 0.000 +2447796.5 1.78948 1.14451 -24482640.8 0.00390 0.00361 44.6 0.000 0.000 0.000 +2447797.5 1.75822 1.12059 -24484423.0 0.00368 0.00429 20.1 0.000 0.000 0.000 +2447798.5 1.72713 1.09759 -24486276.7 0.00468 0.00496 26.3 0.000 0.000 0.000 +2447799.5 1.69599 1.07668 -24488122.3 0.00468 0.00496 26.3 0.000 0.000 0.000 +2447800.5 1.66421 1.05880 -24489881.4 0.00509 0.00653 29.3 0.000 0.000 0.000 +2447801.5 1.63161 1.04353 -24491502.5 0.00422 0.00609 18.5 0.000 0.000 0.000 +2447802.5 1.59838 1.02992 -24492965.7 0.00270 0.00633 13.7 0.000 0.000 0.000 +2447803.5 1.56466 1.01700 -24494277.6 0.00252 0.00556 17.8 0.000 0.000 0.000 +2447804.5 1.53051 1.00376 -24495470.8 0.00252 0.00556 24.1 0.000 0.000 0.000 +2447805.5 1.49589 0.98936 -24496601.2 0.00402 0.00503 19.5 0.000 0.000 0.000 +2447806.5 1.46103 0.97409 -24497739.0 0.00354 0.00528 21.0 0.000 0.000 0.000 +2447807.5 1.42629 0.95878 -24498967.9 0.00362 0.00444 18.6 0.000 0.000 0.000 +2447808.5 1.39204 0.94426 -24500376.4 0.00446 0.00395 21.6 0.000 0.000 0.000 +2447809.5 1.35828 0.93121 -24502043.0 0.00444 0.00369 19.8 0.000 0.000 0.000 +2447810.5 1.32346 0.91965 -24504019.0 0.00444 0.00369 16.4 0.000 0.000 0.000 +2447811.5 1.28594 0.90909 -24506309.2 0.00497 0.00385 16.4 0.000 0.000 0.000 +2447812.5 1.24527 0.89884 -24508836.0 0.00547 0.00309 25.0 0.000 0.000 0.000 +2447813.5 1.20240 0.88854 -24511453.5 0.00588 0.00320 27.1 0.000 0.000 0.000 +2447814.5 1.15865 0.87793 -24513988.2 0.00507 0.00279 23.1 0.000 0.000 0.000 +2447815.5 1.11576 0.86693 -24516302.3 0.00468 0.00314 21.7 0.000 0.000 0.000 +2447816.5 1.07615 0.85613 -24518355.2 0.00476 0.00346 23.2 0.000 0.000 0.000 +2447817.5 1.03929 0.84590 -24520180.7 0.00457 0.00484 22.9 0.000 0.000 0.000 +2447818.5 1.00311 0.83594 -24521882.1 0.00445 0.00499 18.8 0.000 0.000 0.000 +2447819.5 0.96552 0.82603 -24523587.5 0.00279 0.00513 17.0 0.000 0.000 0.000 +2447820.5 0.92665 0.81539 -24525396.6 0.00369 0.00515 24.1 0.000 0.000 0.000 +2447821.5 0.88780 0.80431 -24527369.0 0.00374 0.00566 23.5 0.000 0.000 0.000 +2447822.5 0.85021 0.79385 -24529520.1 0.00329 0.00494 23.4 0.000 0.000 0.000 +2447823.5 0.81483 0.78485 -24531823.7 0.00323 0.00341 24.5 0.000 0.000 0.000 +2447824.5 0.78134 0.77733 -24534218.1 0.00322 0.00292 21.1 0.000 0.000 0.000 +2447825.5 0.74828 0.77123 -24536617.5 0.00300 0.00274 17.9 0.000 0.000 0.000 +2447826.5 0.71460 0.76677 -24538973.2 0.00306 0.00328 18.3 0.000 0.000 0.000 +2447827.5 0.68028 0.76406 -24541270.7 0.00271 0.00386 13.3 0.000 0.000 0.000 +2447828.5 0.64402 0.76217 -24543471.5 0.00308 0.00407 10.8 0.000 0.000 0.000 +2447829.5 0.60626 0.75968 -24545534.7 0.00303 0.00429 11.8 0.000 0.000 0.000 +2447830.5 0.56889 0.75578 -24547445.0 0.00350 0.00435 14.0 0.000 0.000 0.000 +2447831.5 0.53328 0.75167 -24549211.6 0.00363 0.00472 15.7 0.000 0.000 0.000 +2447832.5 0.49970 0.74873 -24550862.2 0.00386 0.00480 17.1 0.000 0.000 0.000 +2447833.5 0.46631 0.74694 -24552442.8 0.00392 0.00318 20.2 0.000 0.000 0.000 +2447834.5 0.43084 0.74605 -24554021.7 0.00444 0.00334 23.7 0.000 0.000 0.000 +2447835.5 0.39194 0.74573 -24555688.5 0.00518 0.00191 33.2 0.000 0.000 0.000 +2447836.5 0.34998 0.74567 -24557540.8 0.00518 0.00167 31.0 0.000 0.000 0.000 +2447837.5 0.30616 0.74567 -24559652.4 0.00393 0.00184 26.8 0.000 0.000 0.000 +2447838.5 0.26192 0.74574 -24562048.2 0.00454 0.00210 34.2 0.000 0.000 0.000 +2447839.5 0.21895 0.74601 -24564695.4 0.00578 0.00208 34.2 0.000 0.000 0.000 +2447840.5 0.17796 0.74666 -24567490.7 0.00609 0.00182 37.6 0.000 0.000 0.000 +2447841.5 0.13819 0.74783 -24570270.3 0.00633 0.00178 32.3 0.000 0.000 0.000 +2447842.5 0.09875 0.74968 -24572873.0 0.00591 0.00151 24.8 0.000 0.000 0.000 +2447843.5 0.05957 0.75245 -24575194.7 0.00679 0.00172 27.5 0.000 0.000 0.000 +2447844.5 0.02140 0.75639 -24577222.4 0.00716 0.00189 26.5 0.000 0.000 0.000 +2447845.5 -0.01514 0.76173 -24579028.3 0.00698 0.00225 22.7 0.000 0.000 0.000 +2447846.5 -0.05030 0.76836 -24580743.7 0.00581 0.00233 20.1 0.000 0.000 0.000 +2447847.5 -0.08493 0.77606 -24582505.0 0.00551 0.00217 14.8 0.000 0.000 0.000 +2447848.5 -0.11960 0.78468 -24584412.9 0.00491 0.00268 14.5 0.000 0.000 0.000 +2447849.5 -0.15421 0.79437 -24586515.7 0.00478 0.00323 14.4 0.000 0.000 0.000 +2447850.5 -0.18872 0.80530 -24588807.8 0.00546 0.00361 14.5 0.000 0.000 0.000 +2447851.5 -0.22282 0.81747 -24591249.8 0.00489 0.00332 15.3 0.000 0.000 0.000 +2447852.5 -0.25716 0.83098 -24593782.6 0.00438 0.00273 14.8 0.000 0.000 0.000 +2447853.5 -0.29262 0.84589 -24596342.9 0.00501 0.00215 19.2 0.000 0.000 0.000 +2447854.5 -0.32953 0.86192 -24598871.7 0.00393 0.00230 18.9 0.000 0.000 0.000 +2447855.5 -0.36744 0.87840 -24601319.4 0.00393 0.00230 19.2 0.000 0.000 0.000 +2447856.5 -0.40622 0.89448 -24603632.9 0.00344 0.00183 20.6 0.000 0.000 0.000 +2447857.5 -0.44599 0.90938 -24605772.8 0.00327 0.00211 17.1 0.000 0.000 0.000 +2447858.5 -0.48600 0.92277 -24607748.5 0.00347 0.00242 21.5 0.000 0.000 0.000 +2447859.5 -0.52482 0.93450 -24609599.6 0.00357 0.00237 21.9 0.000 0.000 0.000 +2447860.5 -0.56120 0.94455 -24611382.8 0.00428 0.00440 26.6 0.000 0.000 0.000 +2447861.5 -0.59477 0.95362 -24613159.6 0.00363 0.00369 26.9 0.000 0.000 0.000 +2447862.5 -0.62537 0.96266 -24614996.0 0.00340 0.00367 22.4 0.000 0.000 0.000 +2447863.5 -0.65305 0.97261 -24616952.2 0.00277 0.00301 23.3 0.000 0.000 0.000 +2447864.5 -0.67808 0.98439 -24619070.4 0.00277 0.00301 34.0 0.000 0.000 0.000 +2447865.5 -0.70095 0.99882 -24621362.5 0.00385 0.00330 42.4 0.000 0.000 0.000 +2447866.5 -0.72283 1.01586 -24623814.7 0.00385 0.00330 51.3 0.000 0.000 0.000 +2447867.5 -0.74464 1.03506 -24626369.4 0.00385 0.00330 53.3 0.000 0.000 0.000 +2447868.5 -0.76717 1.05591 -24628923.0 0.00748 0.00318 153.7 0.000 0.000 0.000 +2447869.5 -0.79100 1.07798 -24631351.3 0.01151 0.00538 198.2 0.000 0.000 0.000 +2447870.5 -0.81608 1.10100 -24633546.0 0.00396 0.00207 26.5 0.000 0.000 0.000 +2447871.5 -0.84219 1.12472 -24635456.6 0.00334 0.00231 22.6 0.000 0.000 0.000 +2447872.5 -0.86910 1.14891 -24637114.1 0.00342 0.00227 16.9 0.000 0.000 0.000 +2447873.5 -0.89592 1.17352 -24638616.8 0.00342 0.00227 14.0 0.000 0.000 0.000 +2447874.5 -0.92129 1.19873 -24640092.7 0.00363 0.00221 6.2 0.000 0.000 0.000 +2447875.5 -0.94442 1.22474 -24641650.3 0.00259 0.00174 7.7 0.000 0.000 0.000 +2447876.5 -0.96574 1.25121 -24643364.9 0.00223 0.00155 8.8 0.000 0.000 0.000 +2447877.5 -0.98625 1.27762 -24645257.7 0.00279 0.00160 11.4 0.000 0.000 0.000 +2447878.5 -1.00678 1.30341 -24647304.0 0.00272 0.00132 11.8 0.000 0.000 0.000 +2447879.5 -1.02769 1.32807 -24649453.5 0.00265 0.00156 12.4 0.000 0.000 0.000 +2447880.5 -1.04910 1.35145 -24651645.4 0.00269 0.00159 12.1 0.000 0.000 0.000 +2447881.5 -1.07016 1.37447 -24653810.0 0.00272 0.00155 11.2 0.000 0.000 0.000 +2447882.5 -1.09144 1.39719 -24655884.8 0.00279 0.00156 11.4 0.000 0.000 0.000 +2447883.5 -1.11403 1.41950 -24657820.1 0.00358 0.00182 13.0 0.000 0.000 0.000 +2447884.5 -1.13886 1.44167 -24659577.8 0.00348 0.00249 17.1 0.000 0.000 0.000 +2447885.5 -1.16595 1.46407 -24661146.9 0.00342 0.00244 16.8 0.000 0.000 0.000 +2447886.5 -1.19424 1.48702 -24662553.8 0.00328 0.00110 12.6 0.000 0.000 0.000 +2447887.5 -1.22249 1.51079 -24663851.2 0.00358 0.00239 15.7 0.000 0.000 0.000 +2447888.5 -1.24946 1.53568 -24665109.8 0.00349 0.00260 13.4 0.000 0.000 0.000 +2447889.5 -1.27391 1.56198 -24666409.3 0.00349 0.00260 15.8 0.000 0.000 0.000 +2447890.5 -1.29502 1.58991 -24667827.7 0.00349 0.00260 15.8 0.000 0.000 0.000 +2447891.5 -1.31327 1.61916 -24669434.6 0.00268 0.00202 12.7 0.000 0.000 0.000 +2447892.5 -1.32952 1.64915 -24671270.1 0.00234 0.00286 15.0 0.000 0.000 0.000 +2447893.5 -1.34463 1.67934 -24673324.5 0.00173 0.00291 16.8 0.000 0.000 0.000 +2447894.5 -1.35948 1.70914 -24675538.8 0.00173 0.00291 18.8 0.000 0.000 0.000 +2447895.5 -1.37494 1.73801 -24677817.3 0.00173 0.00291 21.1 0.000 0.000 0.000 +2447896.5 -1.39159 1.76559 -24680033.4 0.00210 0.00295 18.2 0.000 0.000 0.000 +2447897.5 -1.40962 1.79188 -24682067.3 0.00214 0.00312 18.0 0.000 0.000 0.000 +2447898.5 -1.42916 1.81700 -24683844.6 0.00344 0.00529 20.3 0.000 0.000 0.000 +2447899.5 -1.45028 1.84107 -24685352.1 0.00368 0.00570 20.1 0.000 0.000 0.000 +2447900.5 -1.47261 1.86434 -24686641.0 0.00368 0.00570 18.5 0.000 0.000 0.000 +2447901.5 -1.49505 1.88808 -24687825.7 0.00376 0.00491 16.3 0.000 0.000 0.000 +2447902.5 -1.51642 1.91365 -24689040.5 0.00297 0.00431 13.1 0.000 0.000 0.000 +2447903.5 -1.53644 1.94120 -24690398.2 0.00338 0.00459 14.6 0.000 0.000 0.000 +2447904.5 -1.55447 1.97008 -24691961.2 0.00338 0.00459 14.7 0.000 0.000 0.000 +2447905.5 -1.57016 1.99955 -24693729.3 0.00306 0.00379 15.6 0.000 0.000 0.000 +2447906.5 -1.58467 2.02939 -24695637.3 0.00244 0.00149 13.8 0.000 0.000 0.000 +2447907.5 -1.59950 2.05953 -24697597.2 0.00314 0.00165 18.3 0.000 0.000 0.000 +2447908.5 -1.61615 2.08992 -24699526.9 0.00356 0.00196 24.1 0.000 0.000 0.000 +2447909.5 -1.63626 2.12036 -24701362.0 0.00356 0.00196 23.1 0.000 0.000 0.000 +2447910.5 -1.66149 2.15052 -24703060.8 0.00356 0.00196 23.0 0.000 0.000 0.000 +2447911.5 -1.69150 2.18026 -24704615.1 0.00439 0.00309 19.5 0.000 0.000 0.000 +2447912.5 -1.72406 2.20988 -24706030.2 0.00388 0.00324 16.5 0.000 0.000 0.000 +2447913.5 -1.75672 2.23973 -24707332.2 0.00417 0.00493 19.5 0.000 0.000 0.000 +2447914.5 -1.78703 2.27019 -24708571.7 0.00442 0.00542 12.2 0.000 0.000 0.000 +2447915.5 -1.81287 2.30173 -24709818.1 0.00500 0.00623 14.7 0.000 0.000 0.000 +2447916.5 -1.83473 2.33473 -24711158.0 0.00441 0.00565 14.6 0.000 0.000 0.000 +2447917.5 -1.85405 2.36915 -24712685.4 0.00391 0.00491 15.2 0.000 0.000 0.000 +2447918.5 -1.87193 2.40454 -24714477.4 0.00426 0.00473 22.6 0.000 0.000 0.000 +2447919.5 -1.88951 2.44035 -24716573.2 0.00497 0.00507 25.3 0.000 0.000 0.000 +2447920.5 -1.90790 2.47581 -24718962.8 0.00565 0.00613 24.9 0.000 0.000 0.000 +2447921.5 -1.92589 2.51068 -24721593.2 0.00563 0.00585 26.4 0.000 0.000 0.000 +2447922.5 -1.94169 2.54517 -24724366.9 0.00553 0.00497 35.7 0.000 0.000 0.000 +2447923.5 -1.95554 2.57987 -24727137.8 0.00729 0.00590 51.2 0.000 0.000 0.000 +2447924.5 -1.96878 2.61497 -24729772.0 0.00729 0.00590 51.6 0.000 0.000 0.000 +2447925.5 -1.98244 2.65032 -24732183.2 0.00702 0.00732 54.7 0.000 0.000 0.000 +2447926.5 -1.99659 2.68592 -24734361.8 0.00600 0.00605 49.0 0.000 0.000 0.000 +2447927.5 -2.01043 2.72191 -24736372.5 0.00480 0.00274 44.0 0.000 0.000 0.000 +2447928.5 -2.02311 2.75849 -24738321.8 0.00409 0.00393 36.3 0.000 0.000 0.000 +2447929.5 -2.03382 2.79584 -24740326.8 0.00412 0.00396 39.5 0.000 0.000 0.000 +2447930.5 -2.04190 2.83400 -24742479.5 0.00412 0.00396 38.9 0.000 0.000 0.000 +2447931.5 -2.04673 2.87276 -24744834.6 0.00411 0.00390 36.5 0.000 0.000 0.000 +2447932.5 -2.04820 2.91204 -24747388.8 0.00347 0.00274 29.1 0.000 0.000 0.000 +2447933.5 -2.04655 2.95180 -24750092.3 0.00350 0.00311 26.3 0.000 0.000 0.000 +2447934.5 -2.04203 2.99201 -24752872.7 0.00272 0.00324 25.8 0.000 0.000 0.000 +2447935.5 -2.03512 3.03271 -24755649.7 0.00284 0.00268 23.3 0.000 0.000 0.000 +2447936.5 -2.02692 3.07403 -24758349.2 0.00269 0.00269 21.8 0.000 0.000 0.000 +2447937.5 -2.01882 3.11559 -24760914.3 0.00324 0.00284 20.5 0.000 0.000 0.000 +2447938.5 -2.01182 3.15642 -24763310.8 0.00307 0.00271 20.5 0.000 0.000 0.000 +2447939.5 -2.00730 3.19556 -24765532.9 0.00374 0.00354 29.1 0.000 0.000 0.000 +2447940.5 -2.00701 3.23227 -24767581.0 0.00365 0.00303 27.1 0.000 0.000 0.000 +2447941.5 -2.01047 3.26688 -24769470.5 0.00448 0.00282 26.9 0.000 0.000 0.000 +2447942.5 -2.01638 3.30019 -24771223.2 0.00427 0.00285 22.7 0.000 0.000 0.000 +2447943.5 -2.02268 3.33295 -24772893.1 0.00455 0.00237 26.9 0.000 0.000 0.000 +2447944.5 -2.02591 3.36595 -24774594.4 0.00505 0.00228 34.4 0.000 0.000 0.000 +2447945.5 -2.02291 3.39991 -24776446.2 0.00558 0.00252 39.5 0.000 0.000 0.000 +2447946.5 -2.01369 3.43514 -24778532.3 0.00514 0.00252 35.7 0.000 0.000 0.000 +2447947.5 -1.99973 3.47167 -24780888.1 0.00487 0.00302 33.7 0.000 0.000 0.000 +2447948.5 -1.98315 3.50940 -24783479.7 0.00751 0.00359 49.2 0.000 0.000 0.000 +2447949.5 -1.96616 3.54824 -24786205.0 0.00720 0.00364 49.1 0.000 0.000 0.000 +2447950.5 -1.95097 3.58805 -24788921.0 0.00689 0.00626 32.6 0.000 0.000 0.000 +2447951.5 -1.93952 3.62827 -24791472.5 0.00641 0.00538 25.2 0.000 0.000 0.000 +2447952.5 -1.93284 3.66814 -24793755.0 0.00527 0.00465 26.2 0.000 0.000 0.000 +2447953.5 -1.92943 3.70693 -24795752.7 0.00613 0.00539 28.0 0.000 0.000 0.000 +2447954.5 -1.92715 3.74449 -24797525.6 0.00613 0.00539 28.7 0.000 0.000 0.000 +2447955.5 -1.92417 3.78086 -24799179.6 0.00268 0.00536 27.8 0.000 0.000 0.000 +2447956.5 -1.91991 3.81664 -24800837.1 0.00269 0.00316 26.2 0.000 0.000 0.000 +2447957.5 -1.91425 3.85250 -24802610.8 0.00229 0.00330 28.3 0.000 0.000 0.000 +2447958.5 -1.90730 3.88878 -24804577.6 0.00206 0.00386 29.3 0.000 0.000 0.000 +2447959.5 -1.89912 3.92575 -24806769.8 0.00188 0.00293 28.9 0.000 0.000 0.000 +2447960.5 -1.88968 3.96350 -24809174.8 0.00188 0.00293 28.2 0.000 0.000 0.000 +2447961.5 -1.87953 4.00139 -24811719.6 0.00423 0.00516 29.3 0.000 0.000 0.000 +2447962.5 -1.86946 4.03855 -24814309.2 0.00434 0.00509 33.3 0.000 0.000 0.000 +2447963.5 -1.86049 4.07423 -24816851.2 0.00637 0.00690 47.6 0.000 0.000 0.000 +2447964.5 -1.85372 4.10769 -24819269.3 0.00639 0.00680 55.2 0.000 0.000 0.000 +2447965.5 -1.84963 4.13846 -24821518.3 0.00639 0.00680 55.8 0.000 0.000 0.000 +2447966.5 -1.84638 4.16731 -24823611.9 0.00772 0.00652 49.8 0.000 0.000 0.000 +2447967.5 -1.84198 4.19548 -24825586.4 0.00772 0.00652 49.8 0.000 0.000 0.000 +2447968.5 -1.83493 4.22391 -24827486.2 0.00712 0.00493 56.1 0.000 0.000 0.000 +2447969.5 -1.82402 4.25336 -24829372.1 0.00773 0.00587 50.0 0.000 0.000 0.000 +2447970.5 -1.80849 4.28452 -24831315.6 0.00469 0.00234 20.6 0.000 0.000 0.000 +2447971.5 -1.78923 4.31780 -24833385.7 0.00419 0.00231 20.0 0.000 0.000 0.000 +2447972.5 -1.76778 4.35338 -24835649.4 0.00453 0.00293 17.2 0.000 0.000 0.000 +2447973.5 -1.74555 4.39125 -24838161.8 0.00324 0.00285 16.5 0.000 0.000 0.000 +2447974.5 -1.72321 4.43063 -24840954.2 0.00349 0.00315 15.8 0.000 0.000 0.000 +2447975.5 -1.70176 4.46962 -24844017.0 0.00291 0.00249 12.4 0.000 0.000 0.000 +2447976.5 -1.68126 4.50711 -24847258.2 0.00247 0.00234 11.4 0.000 0.000 0.000 +2447977.5 -1.66115 4.54249 -24850524.8 0.00369 0.00375 13.8 0.000 0.000 0.000 +2447978.5 -1.64114 4.57532 -24853644.3 0.00354 0.00354 13.2 0.000 0.000 0.000 +2447979.5 -1.62139 4.60564 -24856474.3 0.00354 0.00354 13.3 0.000 0.000 0.000 +2447980.5 -1.60206 4.63423 -24858944.4 0.00322 0.00351 18.9 0.000 0.000 0.000 +2447981.5 -1.58219 4.66266 -24861105.7 0.00306 0.00337 17.6 0.000 0.000 0.000 +2447982.5 -1.56095 4.69146 -24863077.2 0.00418 0.00441 19.0 0.000 0.000 0.000 +2447983.5 -1.53774 4.72074 -24864999.8 0.00396 0.00493 26.9 0.000 0.000 0.000 +2447984.5 -1.51203 4.75026 -24867002.2 0.00385 0.00307 27.0 0.000 0.000 0.000 +2447985.5 -1.48353 4.77972 -24869170.7 0.00374 0.00296 27.0 0.000 0.000 0.000 +2447986.5 -1.45291 4.80916 -24871517.9 0.00355 0.00164 21.0 0.000 0.000 0.000 +2447987.5 -1.42102 4.83874 -24874008.0 0.00317 0.00242 18.0 0.000 0.000 0.000 +2447988.5 -1.38828 4.86876 -24876596.5 0.00329 0.00319 25.4 0.000 0.000 0.000 +2447989.5 -1.35505 4.89954 -24879227.5 0.00252 0.00293 26.6 0.000 0.000 0.000 +2447990.5 -1.32174 4.93129 -24881836.6 0.00359 0.00316 21.4 0.000 0.000 0.000 +2447991.5 -1.28916 4.96373 -24884358.6 0.00397 0.00358 18.6 0.000 0.000 0.000 +2447992.5 -1.25814 4.99631 -24886743.4 0.00308 0.00340 12.3 0.000 0.000 0.000 +2447993.5 -1.22901 5.02841 -24888965.1 0.00357 0.00341 14.6 0.000 0.000 0.000 +2447994.5 -1.20163 5.05936 -24891024.3 0.00357 0.00341 13.2 0.000 0.000 0.000 +2447995.5 -1.17468 5.08823 -24892936.6 0.00344 0.00342 21.1 0.000 0.000 0.000 +2447996.5 -1.14780 5.11537 -24894740.2 0.00341 0.00319 20.5 0.000 0.000 0.000 +2447997.5 -1.12106 5.14120 -24896500.7 0.00276 0.00299 17.3 0.000 0.000 0.000 +2447998.5 -1.09450 5.16601 -24898294.5 0.00325 0.00294 20.9 0.000 0.000 0.000 +2447999.5 -1.06837 5.19019 -24900202.8 0.00346 0.00319 21.3 0.000 0.000 0.000 +2448000.5 -1.04303 5.21440 -24902314.2 0.00339 0.00348 21.3 0.000 0.000 0.000 +2448001.5 -1.01872 5.23916 -24904684.3 0.00293 0.00333 19.1 0.000 0.000 0.000 +2448002.5 -0.99589 5.26436 -24907324.3 0.00283 0.00305 14.6 0.000 0.000 0.000 +2448003.5 -0.97442 5.28905 -24910183.6 0.00276 0.00358 15.7 0.000 0.000 0.000 +2448004.5 -0.95395 5.31223 -24913147.5 0.00274 0.00368 17.2 0.000 0.000 0.000 +2448005.5 -0.93397 5.33317 -24916056.2 0.00231 0.00354 18.5 0.000 0.000 0.000 +2448006.5 -0.91327 5.35160 -24918755.7 0.00215 0.00316 17.5 0.000 0.000 0.000 +2448007.5 -0.89140 5.36862 -24921132.5 0.00273 0.00300 20.7 0.000 0.000 0.000 +2448008.5 -0.86857 5.38555 -24923159.1 0.00303 0.00332 26.1 0.000 0.000 0.000 +2448009.5 -0.84551 5.40296 -24924899.9 0.00304 0.00348 30.8 0.000 0.000 0.000 +2448010.5 -0.82340 5.42039 -24926461.6 0.00273 0.00345 30.0 0.000 0.000 0.000 +2448011.5 -0.80161 5.43756 -24927990.4 0.00277 0.00270 26.8 0.000 0.000 0.000 +2448012.5 -0.77856 5.45440 -24929612.8 0.00256 0.00262 26.3 0.000 0.000 0.000 +2448013.5 -0.75266 5.47083 -24931397.0 0.00184 0.00300 28.2 0.000 0.000 0.000 +2448014.5 -0.72255 5.48675 -24933352.0 0.00184 0.00300 29.5 0.000 0.000 0.000 +2448015.5 -0.68738 5.50198 -24935441.0 0.00183 0.00242 23.0 0.000 0.000 0.000 +2448016.5 -0.64763 5.51689 -24937601.5 0.00209 0.00244 21.0 0.000 0.000 0.000 +2448017.5 -0.60447 5.53175 -24939757.8 0.00371 0.00220 22.9 0.000 0.000 0.000 +2448018.5 -0.55921 5.54668 -24941839.1 0.00445 0.00241 28.2 0.000 0.000 0.000 +2448019.5 -0.51322 5.56183 -24943789.5 0.00453 0.00227 25.5 0.000 0.000 0.000 +2448020.5 -0.46832 5.57714 -24945577.9 0.00453 0.00227 22.2 0.000 0.000 0.000 +2448021.5 -0.42588 5.59235 -24947217.4 0.00435 0.00288 20.4 0.000 0.000 0.000 +2448022.5 -0.38523 5.60693 -24948733.2 0.00425 0.00336 20.2 0.000 0.000 0.000 +2448023.5 -0.34524 5.62055 -24950166.2 0.00456 0.00391 22.2 0.000 0.000 0.000 +2448024.5 -0.30484 5.63297 -24951575.6 0.00373 0.00472 23.6 0.000 0.000 0.000 +2448025.5 -0.26308 5.64421 -24953031.2 0.00361 0.00478 25.3 0.000 0.000 0.000 +2448026.5 -0.21989 5.65473 -24954613.9 0.00350 0.00391 23.0 0.000 0.000 0.000 +2448027.5 -0.17567 5.66485 -24956395.1 0.00330 0.00387 26.3 0.000 0.000 0.000 +2448028.5 -0.13152 5.67434 -24958403.5 0.00353 0.00398 30.4 0.000 0.000 0.000 +2448029.5 -0.08772 5.68336 -24960650.2 0.00353 0.00398 31.3 0.000 0.000 0.000 +2448030.5 -0.04441 5.69209 -24963109.7 0.00316 0.00294 26.8 0.000 0.000 0.000 +2448031.5 -0.00193 5.70019 -24965716.4 0.00217 0.00291 26.2 0.000 0.000 0.000 +2448032.5 0.03934 5.70729 -24968367.2 0.00183 0.00254 19.3 0.000 0.000 0.000 +2448033.5 0.07900 5.71308 -24970934.7 0.00146 0.00190 15.5 0.000 0.000 0.000 +2448034.5 0.11691 5.71746 -24973303.5 0.00160 0.00189 15.7 0.000 0.000 0.000 +2448035.5 0.15401 5.72121 -24975393.1 0.00160 0.00189 14.9 0.000 0.000 0.000 +2448036.5 0.19100 5.72434 -24977191.9 0.00165 0.00213 14.3 0.000 0.000 0.000 +2448037.5 0.22746 5.72683 -24978783.4 0.00165 0.00271 12.0 0.000 0.000 0.000 +2448038.5 0.26355 5.72897 -24980319.6 0.00192 0.00260 11.4 0.000 0.000 0.000 +2448039.5 0.29962 5.73108 -24981938.9 0.00198 0.00318 30.5 0.000 0.000 0.000 +2448040.5 0.33605 5.73349 -24983718.7 0.00204 0.00511 51.2 0.000 0.000 0.000 +2448041.5 0.37304 5.73613 -24985662.6 0.00228 0.00450 45.1 0.000 0.000 0.000 +2448042.5 0.41051 5.73862 -24987723.4 0.00231 0.00393 38.4 0.000 0.000 0.000 +2448043.5 0.44837 5.74081 -24989831.0 0.00244 0.00259 51.0 0.000 0.000 0.000 +2448044.5 0.48663 5.74271 -24991911.0 0.00236 0.00457 49.9 0.000 0.000 0.000 +2448045.5 0.52552 5.74438 -24993898.6 0.00248 0.00441 36.6 0.000 0.000 0.000 +2448046.5 0.56498 5.74533 -24995744.1 0.00246 0.00406 15.5 0.000 0.000 0.000 +2448047.5 0.60448 5.74476 -24997411.3 0.00241 0.00365 14.3 0.000 0.000 0.000 +2448048.5 0.64346 5.74204 -24998886.9 0.00400 0.00491 14.1 0.000 0.000 0.000 +2448049.5 0.68157 5.73706 -25000192.9 0.00433 0.00485 16.2 0.000 0.000 0.000 +2448050.5 0.71884 5.73005 -25001377.9 0.00440 0.00514 18.4 0.000 0.000 0.000 +2448051.5 0.75642 5.72162 -25002510.5 0.00412 0.00287 15.3 0.000 0.000 0.000 +2448052.5 0.79563 5.71247 -25003670.0 0.00366 0.00403 15.1 0.000 0.000 0.000 +2448053.5 0.83664 5.70336 -25004930.4 0.00411 0.00473 17.7 0.000 0.000 0.000 +2448054.5 0.87890 5.69498 -25006345.4 0.00420 0.00487 17.8 0.000 0.000 0.000 +2448055.5 0.92129 5.68776 -25007939.9 0.00342 0.00464 18.3 0.000 0.000 0.000 +2448056.5 0.96286 5.68140 -25009723.8 0.00276 0.00587 16.4 0.000 0.000 0.000 +2448057.5 1.00330 5.67524 -25011687.4 0.00228 0.00586 13.8 0.000 0.000 0.000 +2448058.5 1.04255 5.66866 -25013784.4 0.00264 0.00681 18.9 0.000 0.000 0.000 +2448059.5 1.08092 5.66114 -25015932.8 0.00251 0.00682 22.6 0.000 0.000 0.000 +2448060.5 1.11891 5.65239 -25018025.4 0.00302 0.00664 25.2 0.000 0.000 0.000 +2448061.5 1.15695 5.64232 -25019960.2 0.00279 0.00629 27.3 0.000 0.000 0.000 +2448062.5 1.19530 5.63064 -25021676.2 0.00319 0.00493 24.4 0.000 0.000 0.000 +2448063.5 1.23368 5.61739 -25023164.3 0.00391 0.00368 33.5 0.000 0.000 0.000 +2448064.5 1.27117 5.60277 -25024473.1 0.00417 0.00373 33.8 0.000 0.000 0.000 +2448065.5 1.30641 5.58707 -25025693.6 0.00492 0.00411 29.8 0.000 0.000 0.000 +2448066.5 1.34039 5.56969 -25026958.7 0.00499 0.00398 27.3 0.000 0.000 0.000 +2448067.5 1.37446 5.55078 -25028370.2 0.00430 0.00371 20.4 0.000 0.000 0.000 +2448068.5 1.40934 5.53067 -25029960.4 0.00396 0.00354 29.8 0.000 0.000 0.000 +2448069.5 1.44540 5.50983 -25031692.5 0.00487 0.00391 28.8 0.000 0.000 0.000 +2448070.5 1.48257 5.48931 -25033487.4 0.00508 0.00400 29.8 0.000 0.000 0.000 +2448071.5 1.52157 5.46987 -25035272.6 0.00472 0.00406 28.1 0.000 0.000 0.000 +2448072.5 1.56324 5.45203 -25036990.6 0.00383 0.00356 30.1 0.000 0.000 0.000 +2448073.5 1.60798 5.43551 -25038606.8 0.00413 0.00384 35.5 0.000 0.000 0.000 +2448074.5 1.65435 5.41976 -25040088.1 0.00413 0.00384 29.3 0.000 0.000 0.000 +2448075.5 1.69968 5.40419 -25041402.2 0.00490 0.00416 33.6 0.000 0.000 0.000 +2448076.5 1.74299 5.38829 -25042561.6 0.00330 0.00387 29.9 0.000 0.000 0.000 +2448077.5 1.78408 5.37152 -25043589.6 0.00231 0.00331 26.0 0.000 0.000 0.000 +2448078.5 1.82271 5.35331 -25044523.3 0.00222 0.00287 35.9 0.000 0.000 0.000 +2448079.5 1.85873 5.33306 -25045411.5 0.00431 0.00291 31.2 0.000 0.000 0.000 +2448080.5 1.89237 5.31030 -25046301.1 0.00440 0.00407 32.0 0.000 0.000 0.000 +2448081.5 1.92484 5.28562 -25047268.2 0.00407 0.00394 27.8 0.000 0.000 0.000 +2448082.5 1.95786 5.26002 -25048388.1 0.00414 0.00360 29.8 0.000 0.000 0.000 +2448083.5 1.99239 5.23436 -25049704.6 0.00546 0.00426 37.1 0.000 0.000 0.000 +2448084.5 2.02764 5.20916 -25051211.9 0.00534 0.00465 32.7 0.000 0.000 0.000 +2448085.5 2.06213 5.18438 -25052848.9 0.00503 0.00463 32.4 0.000 0.000 0.000 +2448086.5 2.09588 5.15973 -25054533.7 0.00392 0.00444 32.0 0.000 0.000 0.000 +2448087.5 2.12911 5.13501 -25056159.3 0.00335 0.00415 28.7 0.000 0.000 0.000 +2448088.5 2.16203 5.11008 -25057620.3 0.00356 0.00591 28.8 0.000 0.000 0.000 +2448089.5 2.19474 5.08512 -25058841.3 0.00200 0.00458 40.9 0.000 0.000 0.000 +2448090.5 2.22726 5.06029 -25059799.6 0.00204 0.00331 37.8 0.000 0.000 0.000 +2448091.5 2.25922 5.03530 -25060540.1 0.00194 0.00323 35.8 0.000 0.000 0.000 +2448092.5 2.29051 5.00954 -25061176.2 0.00173 0.00311 32.3 0.000 0.000 0.000 +2448093.5 2.32116 4.98236 -25061851.4 0.00233 0.00411 36.7 0.000 0.000 0.000 +2448094.5 2.35122 4.95331 -25062692.7 0.00290 0.00398 35.6 0.000 0.000 0.000 +2448095.5 2.38091 4.92264 -25063769.6 0.00286 0.00415 25.2 0.000 0.000 0.000 +2448096.5 2.41074 4.89106 -25065072.7 0.00259 0.00445 25.0 0.000 0.000 0.000 +2448097.5 2.44111 4.85920 -25066532.5 0.00265 0.00452 21.1 0.000 0.000 0.000 +2448098.5 2.47151 4.82698 -25068059.8 0.00317 0.00503 24.6 0.000 0.000 0.000 +2448099.5 2.50090 4.79421 -25069576.0 0.00317 0.00503 32.0 0.000 0.000 0.000 +2448100.5 2.52835 4.76090 -25071035.7 0.00270 0.00331 34.2 0.000 0.000 0.000 +2448101.5 2.55355 4.72716 -25072399.7 0.00245 0.00284 36.5 0.000 0.000 0.000 +2448102.5 2.57680 4.69303 -25073641.4 0.00231 0.00251 32.0 0.000 0.000 0.000 +2448103.5 2.59849 4.65859 -25074751.0 0.00415 0.00403 44.6 0.000 0.000 0.000 +2448104.5 2.61904 4.62390 -25075731.0 0.00374 0.00398 43.7 0.000 0.000 0.000 +2448105.5 2.63882 4.58903 -25076595.4 0.00371 0.00379 35.6 0.000 0.000 0.000 +2448106.5 2.65876 4.55401 -25077408.6 0.00381 0.00394 37.5 0.000 0.000 0.000 +2448107.5 2.67962 4.51910 -25078260.5 0.00393 0.00406 37.3 0.000 0.000 0.000 +2448108.5 2.70143 4.48440 -25079238.2 0.00427 0.00426 30.8 0.000 0.000 0.000 +2448109.5 2.72382 4.45000 -25080416.7 0.00524 0.00560 37.8 0.000 0.000 0.000 +2448110.5 2.74611 4.41601 -25081842.1 0.00390 0.00522 44.4 0.000 0.000 0.000 +2448111.5 2.76763 4.38259 -25083519.3 0.00360 0.00506 46.1 0.000 0.000 0.000 +2448112.5 2.78776 4.34988 -25085407.0 0.00292 0.00648 33.3 0.000 0.000 0.000 +2448113.5 2.80618 4.31817 -25087418.7 0.00292 0.00648 43.0 0.000 0.000 0.000 +2448114.5 2.82301 4.28757 -25089444.5 0.00333 0.00699 41.1 0.000 0.000 0.000 +2448115.5 2.83840 4.25793 -25091372.5 0.00399 0.00724 42.8 0.000 0.000 0.000 +2448116.5 2.85269 4.22886 -25093119.4 0.00319 0.00641 39.6 0.000 0.000 0.000 +2448117.5 2.86607 4.19930 -25094645.5 0.00372 0.00600 28.8 0.000 0.000 0.000 +2448118.5 2.87881 4.16832 -25095973.2 0.00423 0.00672 34.0 0.000 0.000 0.000 +2448119.5 2.89194 4.13620 -25097190.7 0.00436 0.00561 21.7 0.000 0.000 0.000 +2448120.5 2.90708 4.10334 -25098418.1 0.00436 0.00561 29.8 0.000 0.000 0.000 +2448121.5 2.92449 4.06967 -25099778.0 0.00296 0.00291 12.3 0.000 0.000 0.000 +2448122.5 2.94342 4.03534 -25101356.0 0.00452 0.00273 13.7 0.000 0.000 0.000 +2448123.5 2.96306 4.00065 -25103178.0 0.00458 0.00219 17.2 0.000 0.000 0.000 +2448124.5 2.98258 3.96589 -25105207.1 0.00471 0.00117 17.3 0.000 0.000 0.000 +2448125.5 3.00076 3.93133 -25107360.9 0.00471 0.00117 17.3 0.000 0.000 0.000 +2448126.5 3.01666 3.89683 -25109537.7 0.00535 0.00169 14.3 0.000 0.000 0.000 +2448127.5 3.02997 3.86222 -25111648.7 0.00571 0.00172 14.0 0.000 0.000 0.000 +2448128.5 3.04056 3.82740 -25113620.7 0.00774 0.00286 32.7 0.000 0.000 0.000 +2448129.5 3.04834 3.79229 -25115409.8 0.00807 0.00279 27.1 0.000 0.000 0.000 +2448130.5 3.05365 3.75685 -25117003.3 0.00830 0.00344 26.7 0.000 0.000 0.000 +2448131.5 3.05728 3.72110 -25118417.9 0.00725 0.00306 23.5 0.000 0.000 0.000 +2448132.5 3.05979 3.68501 -25119690.6 0.00533 0.00271 16.3 0.000 0.000 0.000 +2448133.5 3.06191 3.64859 -25120875.1 0.00395 0.00212 16.2 0.000 0.000 0.000 +2448134.5 3.06515 3.61197 -25122043.4 0.00395 0.00212 19.1 0.000 0.000 0.000 +2448135.5 3.07101 3.57532 -25123274.2 0.00395 0.00212 20.4 0.000 0.000 0.000 +2448136.5 3.07945 3.53864 -25124653.9 0.00356 0.00293 27.3 0.000 0.000 0.000 +2448137.5 3.08950 3.50175 -25126256.8 0.00368 0.00284 24.7 0.000 0.000 0.000 +2448138.5 3.10014 3.46443 -25128125.1 0.00434 0.00358 33.8 0.000 0.000 0.000 +2448139.5 3.11025 3.42644 -25130254.4 0.00431 0.00340 33.8 0.000 0.000 0.000 +2448140.5 3.11855 3.38754 -25132580.1 0.00403 0.00279 29.4 0.000 0.000 0.000 +2448141.5 3.12492 3.34775 -25134967.4 0.00430 0.00304 30.2 0.000 0.000 0.000 +2448142.5 3.12976 3.30720 -25137263.7 0.00463 0.00370 26.0 0.000 0.000 0.000 +2448143.5 3.13281 3.26605 -25139347.0 0.00442 0.00364 20.9 0.000 0.000 0.000 +2448144.5 3.13359 3.22461 -25141155.5 0.00442 0.00351 24.2 0.000 0.000 0.000 +2448145.5 3.13199 3.18354 -25142702.8 0.00443 0.00365 27.5 0.000 0.000 0.000 +2448146.5 3.12905 3.14294 -25144089.5 0.00413 0.00348 30.7 0.000 0.000 0.000 +2448147.5 3.12545 3.10272 -25145460.3 0.00418 0.00386 29.5 0.000 0.000 0.000 +2448148.5 3.12141 3.06308 -25146947.8 0.00440 0.00372 31.2 0.000 0.000 0.000 +2448149.5 3.11683 3.02417 -25148645.7 0.00307 0.00262 35.2 0.000 0.000 0.000 +2448150.5 3.11153 2.98615 -25150590.8 0.00336 0.00256 33.4 0.000 0.000 0.000 +2448151.5 3.10553 2.94900 -25152756.7 0.00404 0.00247 29.6 0.000 0.000 0.000 +2448152.5 3.09893 2.91264 -25155074.5 0.00464 0.00268 30.3 0.000 0.000 0.000 +2448153.5 3.09182 2.87700 -25157451.1 0.00847 0.00283 34.2 0.000 0.000 0.000 +2448154.5 3.08415 2.84199 -25159791.8 0.00847 0.00283 35.7 0.000 0.000 0.000 +2448155.5 3.07528 2.80739 -25162018.6 0.00847 0.00283 41.2 0.000 0.000 0.000 +2448156.5 3.06419 2.77290 -25164080.8 0.00611 0.00480 29.4 0.000 0.000 0.000 +2448157.5 3.05078 2.73804 -25165968.4 0.00409 0.00460 16.9 0.000 0.000 0.000 +2448158.5 3.03596 2.70220 -25167702.9 0.00416 0.00481 19.6 0.000 0.000 0.000 +2448159.5 3.02085 2.66474 -25169327.4 0.00205 0.00403 15.4 0.000 0.000 0.000 +2448160.5 3.00656 2.62534 -25170899.8 0.00205 0.00403 16.6 0.000 0.000 0.000 +2448161.5 2.99410 2.58504 -25172486.4 0.00186 0.00372 14.9 0.000 0.000 0.000 +2448162.5 2.98386 2.54502 -25174159.7 0.00168 0.00423 19.5 0.000 0.000 0.000 +2448163.5 2.97583 2.50626 -25175990.5 0.00209 0.00353 25.4 0.000 0.000 0.000 +2448164.5 2.96927 2.46947 -25178038.5 0.00196 0.00343 26.4 0.000 0.000 0.000 +2448165.5 2.96324 2.43511 -25180336.8 0.00185 0.00354 26.3 0.000 0.000 0.000 +2448166.5 2.95676 2.40277 -25182873.4 0.00237 0.00444 27.0 0.000 0.000 0.000 +2448167.5 2.94873 2.37158 -25185589.5 0.00270 0.00299 21.6 0.000 0.000 0.000 +2448168.5 2.93804 2.34068 -25188378.0 0.00339 0.00224 18.8 0.000 0.000 0.000 +2448169.5 2.92398 2.30901 -25191107.8 0.00344 0.00227 18.5 0.000 0.000 0.000 +2448170.5 2.90658 2.27557 -25193656.1 0.00344 0.00227 21.4 0.000 0.000 0.000 +2448171.5 2.88733 2.24027 -25195943.5 0.00310 0.00203 19.2 0.000 0.000 0.000 +2448172.5 2.86714 2.20351 -25197965.8 0.00376 0.00196 29.1 0.000 0.000 0.000 +2448173.5 2.84652 2.16577 -25199793.5 0.00383 0.00144 36.9 0.000 0.000 0.000 +2448174.5 2.82594 2.12756 -25201540.4 0.00419 0.00204 42.6 0.000 0.000 0.000 +2448175.5 2.80563 2.08939 -25203325.7 0.00419 0.00204 45.8 0.000 0.000 0.000 +2448176.5 2.78443 2.05188 -25205244.1 0.00375 0.00217 40.2 0.000 0.000 0.000 +2448177.5 2.76164 2.01539 -25207336.6 0.00326 0.00224 33.2 0.000 0.000 0.000 +2448178.5 2.73754 1.97989 -25209589.6 0.00362 0.00311 22.6 0.000 0.000 0.000 +2448179.5 2.71258 1.94530 -25211949.9 0.00285 0.00323 19.5 0.000 0.000 0.000 +2448180.5 2.68709 1.91153 -25214346.0 0.00237 0.00365 20.0 0.000 0.000 0.000 +2448181.5 2.66146 1.87855 -25216707.2 0.00214 0.00336 12.7 0.000 0.000 0.000 +2448182.5 2.63568 1.84626 -25218973.0 0.00232 0.00401 12.8 0.000 0.000 0.000 +2448183.5 2.60931 1.81415 -25221101.7 0.00271 0.00458 16.3 0.000 0.000 0.000 +2448184.5 2.58193 1.78200 -25223076.9 0.00428 0.00459 19.8 0.000 0.000 0.000 +2448185.5 2.55356 1.75068 -25224897.7 0.00448 0.00463 21.4 0.000 0.000 0.000 +2448186.5 2.52551 1.72016 -25226602.8 0.00404 0.00426 19.4 0.000 0.000 0.000 +2448187.5 2.49966 1.68987 -25228259.2 0.00374 0.00357 15.9 0.000 0.000 0.000 +2448188.5 2.47717 1.65947 -25229941.3 0.00424 0.00281 16.5 0.000 0.000 0.000 +2448189.5 2.45689 1.62933 -25231709.7 0.00431 0.00288 27.7 0.000 0.000 0.000 +2448190.5 2.43725 1.59996 -25233616.4 0.00432 0.00377 31.6 0.000 0.000 0.000 +2448191.5 2.41776 1.57166 -25235709.5 0.00251 0.00361 29.1 0.000 0.000 0.000 +2448192.5 2.39873 1.54467 -25238037.6 0.00240 0.00326 25.6 0.000 0.000 0.000 +2448193.5 2.38037 1.51920 -25240624.5 0.00258 0.00377 31.9 0.000 0.000 0.000 +2448194.5 2.36230 1.49509 -25243446.7 0.00272 0.00419 34.6 0.000 0.000 0.000 +2448195.5 2.34432 1.47172 -25246423.9 0.00307 0.00441 27.2 0.000 0.000 0.000 +2448196.5 2.32579 1.44876 -25249428.1 0.00257 0.00404 15.0 0.000 0.000 0.000 +2448197.5 2.30569 1.42598 -25252312.7 0.00360 0.00270 15.7 0.000 0.000 0.000 +2448198.5 2.28284 1.40329 -25254948.4 0.00473 0.00220 19.7 0.000 0.000 0.000 +2448199.5 2.25583 1.38057 -25257265.7 0.00484 0.00201 21.3 0.000 0.000 0.000 +2448200.5 2.22326 1.35751 -25259284.1 0.00514 0.00200 21.2 0.000 0.000 0.000 +2448201.5 2.18662 1.33417 -25261131.2 0.00438 0.00141 30.0 0.000 0.000 0.000 +2448202.5 2.14878 1.31076 -25262978.3 0.00376 0.00170 26.4 0.000 0.000 0.000 +2448203.5 2.11223 1.28741 -25264971.1 0.00292 0.00186 30.6 0.000 0.000 0.000 +2448204.5 2.07809 1.26426 -25267185.3 0.00292 0.00186 30.6 0.000 0.000 0.000 +2448205.5 2.04687 1.24147 -25269619.2 0.00291 0.00226 30.6 0.000 0.000 0.000 +2448206.5 2.01796 1.21905 -25272203.9 0.00188 0.00232 27.8 0.000 0.000 0.000 +2448207.5 1.99038 1.19681 -25274847.9 0.00158 0.00203 15.4 0.000 0.000 0.000 +2448208.5 1.96318 1.17458 -25277459.3 0.00141 0.00204 10.8 0.000 0.000 0.000 +2448209.5 1.93540 1.15226 -25279959.5 0.00141 0.00204 10.7 0.000 0.000 0.000 +2448210.5 1.90629 1.13003 -25282292.3 0.00190 0.00250 12.6 0.000 0.000 0.000 +2448211.5 1.87589 1.10833 -25284432.5 0.00177 0.00220 14.5 0.000 0.000 0.000 +2448212.5 1.84466 1.08770 -25286382.5 0.00189 0.00350 16.1 0.000 0.000 0.000 +2448213.5 1.81307 1.06870 -25288169.6 0.00218 0.00483 20.9 0.000 0.000 0.000 +2448214.5 1.78152 1.05157 -25289845.6 0.00225 0.00506 22.4 0.000 0.000 0.000 +2448215.5 1.75068 1.03517 -25291494.7 0.00225 0.00506 22.1 0.000 0.000 0.000 +2448216.5 1.72047 1.01919 -25293195.1 0.00230 0.00474 19.7 0.000 0.000 0.000 +2448217.5 1.69038 1.00383 -25295008.3 0.00223 0.00494 20.0 0.000 0.000 0.000 +2448218.5 1.65995 0.98909 -25296984.2 0.00244 0.00421 20.4 0.000 0.000 0.000 +2448219.5 1.62875 0.97499 -25299157.1 0.00230 0.00272 15.4 0.000 0.000 0.000 +2448220.5 1.59620 0.96140 -25301542.3 0.00272 0.00143 17.4 0.000 0.000 0.000 +2448221.5 1.56157 0.94818 -25304128.4 0.00258 0.00139 21.1 0.000 0.000 0.000 +2448222.5 1.52434 0.93526 -25306868.8 0.00305 0.00234 18.8 0.000 0.000 0.000 +2448223.5 1.48448 0.92262 -25309680.9 0.00326 0.00242 19.3 0.000 0.000 0.000 +2448224.5 1.44358 0.91020 -25312464.8 0.00326 0.00242 19.9 0.000 0.000 0.000 +2448225.5 1.40339 0.89802 -25315120.1 0.00326 0.00242 19.9 0.000 0.000 0.000 +2448226.5 1.36557 0.88656 -25317574.7 0.00383 0.00354 23.3 0.000 0.000 0.000 +2448227.5 1.32982 0.87585 -25319812.0 0.00365 0.00326 11.9 0.000 0.000 0.000 +2448228.5 1.29526 0.86571 -25321890.9 0.00444 0.00331 17.1 0.000 0.000 0.000 +2448229.5 1.26101 0.85596 -25323924.9 0.00380 0.00266 18.8 0.000 0.000 0.000 +2448230.5 1.22612 0.84639 -25326032.3 0.00380 0.00266 16.5 0.000 0.000 0.000 +2448231.5 1.19072 0.83697 -25328291.8 0.00390 0.00334 16.9 0.000 0.000 0.000 +2448232.5 1.15542 0.82774 -25330715.6 0.00313 0.00347 14.0 0.000 0.000 0.000 +2448233.5 1.12054 0.81857 -25333256.7 0.00233 0.00312 17.3 0.000 0.000 0.000 +2448234.5 1.08616 0.80921 -25335832.3 0.00290 0.00385 16.0 0.000 0.000 0.000 +2448235.5 1.05181 0.79917 -25338351.2 0.00275 0.00365 16.8 0.000 0.000 0.000 +2448236.5 1.01718 0.78870 -25340720.8 0.00249 0.00359 15.3 0.000 0.000 0.000 +2448237.5 0.98199 0.77838 -25342873.5 0.00162 0.00443 11.6 0.000 0.000 0.000 +2448238.5 0.94604 0.76825 -25344792.5 0.00187 0.00480 12.7 0.000 0.000 0.000 +2448239.5 0.91011 0.75756 -25346500.3 0.00187 0.00480 12.5 0.000 0.000 0.000 +2448240.5 0.87515 0.74573 -25348044.6 0.00169 0.00501 17.4 0.000 0.000 0.000 +2448241.5 0.84146 0.73377 -25349482.4 0.00160 0.00484 14.9 0.000 0.000 0.000 +2448242.5 0.80855 0.72261 -25350874.0 0.00146 0.00434 12.8 0.000 0.000 0.000 +2448243.5 0.77583 0.71297 -25352286.1 0.00184 0.00364 16.3 0.000 0.000 0.000 +2448244.5 0.74272 0.70555 -25353787.9 0.00186 0.00308 17.1 0.000 0.000 0.000 +2448245.5 0.70888 0.70063 -25355453.6 0.00186 0.00308 22.2 0.000 0.000 0.000 +2448246.5 0.67399 0.69777 -25357321.2 0.00185 0.00333 22.7 0.000 0.000 0.000 +2448247.5 0.63797 0.69647 -25359397.6 0.00185 0.00375 19.1 0.000 0.000 0.000 +2448248.5 0.60091 0.69622 -25361664.4 0.00201 0.00436 45.2 0.000 0.000 0.000 +2448249.5 0.56292 0.69649 -25364076.6 0.00389 0.00258 43.0 0.000 0.000 0.000 +2448250.5 0.52401 0.69703 -25366569.1 0.00366 0.00243 45.4 0.000 0.000 0.000 +2448251.5 0.48377 0.69786 -25369061.1 0.00299 0.00328 32.2 0.000 0.000 0.000 +2448252.5 0.44167 0.69906 -25371465.8 0.00321 0.00425 23.7 0.000 0.000 0.000 +2448253.5 0.39752 0.70061 -25373711.1 0.00325 0.00434 27.2 0.000 0.000 0.000 +2448254.5 0.35247 0.70226 -25375759.3 0.00325 0.00434 28.5 0.000 0.000 0.000 +2448255.5 0.30798 0.70387 -25377637.3 0.00325 0.00434 28.6 0.000 0.000 0.000 +2448256.5 0.26496 0.70595 -25379443.2 0.00249 0.00529 23.4 0.000 0.000 0.000 +2448257.5 0.22411 0.70903 -25381312.7 0.00235 0.00487 17.0 0.000 0.000 0.000 +2448258.5 0.18613 0.71364 -25383365.5 0.00253 0.00317 19.0 0.000 0.000 0.000 +2448259.5 0.15173 0.72030 -25385660.7 0.00253 0.00317 12.5 0.000 0.000 0.000 +2448260.5 0.12140 0.72935 -25388180.0 0.00334 0.00392 29.2 0.000 0.000 0.000 +2448261.5 0.09404 0.74049 -25390840.3 0.00291 0.00359 23.5 0.000 0.000 0.000 +2448262.5 0.06804 0.75301 -25393532.0 0.00345 0.00278 19.1 0.000 0.000 0.000 +2448263.5 0.04199 0.76608 -25396158.8 0.00391 0.00295 31.0 0.000 0.000 0.000 +2448264.5 0.01440 0.77887 -25398651.4 0.00381 0.00288 31.5 0.000 0.000 0.000 +2448265.5 -0.01639 0.79089 -25400965.1 0.00381 0.00288 31.5 0.000 0.000 0.000 +2448266.5 -0.05028 0.80213 -25403098.5 0.00366 0.00301 33.4 0.000 0.000 0.000 +2448267.5 -0.08631 0.81271 -25405077.3 0.00300 0.00296 25.8 0.000 0.000 0.000 +2448268.5 -0.12355 0.82257 -25406940.7 0.00206 0.00345 38.6 0.000 0.000 0.000 +2448269.5 -0.16100 0.83103 -25408735.9 0.00208 0.00428 29.4 0.000 0.000 0.000 +2448270.5 -0.19784 0.83747 -25410515.3 0.00292 0.00431 26.7 0.000 0.000 0.000 +2448271.5 -0.23442 0.84234 -25412339.7 0.00256 0.00436 23.0 0.000 0.000 0.000 +2448272.5 -0.27153 0.84653 -25414265.2 0.00208 0.00445 10.7 0.000 0.000 0.000 +2448273.5 -0.30989 0.85088 -25416329.5 0.00231 0.00444 13.6 0.000 0.000 0.000 +2448274.5 -0.34973 0.85563 -25418541.0 0.00236 0.00456 15.1 0.000 0.000 0.000 +2448275.5 -0.39022 0.86015 -25420880.0 0.00236 0.00456 22.7 0.000 0.000 0.000 +2448276.5 -0.42995 0.86470 -25423313.0 0.00347 0.00364 22.1 0.000 0.000 0.000 +2448277.5 -0.46754 0.87009 -25425789.2 0.00253 0.00319 19.3 0.000 0.000 0.000 +2448278.5 -0.50193 0.87705 -25428241.8 0.00318 0.00285 24.0 0.000 0.000 0.000 +2448279.5 -0.53214 0.88629 -25430605.9 0.00351 0.00283 25.3 0.000 0.000 0.000 +2448280.5 -0.55790 0.89844 -25432829.0 0.00351 0.00283 24.6 0.000 0.000 0.000 +2448281.5 -0.58151 0.91332 -25434870.5 0.00330 0.00261 21.0 0.000 0.000 0.000 +2448282.5 -0.60566 0.93014 -25436742.3 0.00331 0.00376 19.1 0.000 0.000 0.000 +2448283.5 -0.63267 0.94798 -25438516.8 0.00353 0.00497 24.1 0.000 0.000 0.000 +2448284.5 -0.66429 0.96588 -25440308.8 0.00364 0.00449 18.9 0.000 0.000 0.000 +2448285.5 -0.70186 0.98299 -25442237.4 0.00311 0.00447 16.4 0.000 0.000 0.000 +2448286.5 -0.74420 0.99939 -25444384.0 0.00361 0.00411 18.4 0.000 0.000 0.000 +2448287.5 -0.78888 1.01511 -25446768.0 0.00338 0.00385 12.7 0.000 0.000 0.000 +2448288.5 -0.83367 1.02998 -25449339.6 0.00392 0.00366 15.7 0.000 0.000 0.000 +2448289.5 -0.87718 1.04386 -25452006.3 0.00394 0.00213 15.0 0.000 0.000 0.000 +2448290.5 -0.91863 1.05669 -25454661.6 0.00394 0.00213 15.2 0.000 0.000 0.000 +2448291.5 -0.95762 1.06895 -25457201.2 0.00408 0.00237 20.5 0.000 0.000 0.000 +2448292.5 -0.99355 1.08141 -25459559.1 0.00380 0.00248 17.7 0.000 0.000 0.000 +2448293.5 -1.02636 1.09472 -25461713.2 0.00371 0.00275 19.8 0.000 0.000 0.000 +2448294.5 -1.05681 1.10916 -25463687.1 0.00371 0.00275 20.5 0.000 0.000 0.000 +2448295.5 -1.08598 1.12490 -25465524.7 0.00327 0.00278 21.5 0.000 0.000 0.000 +2448296.5 -1.11469 1.14219 -25467280.8 0.00290 0.00256 15.5 0.000 0.000 0.000 +2448297.5 -1.14345 1.16102 -25469024.6 0.00311 0.00203 11.1 0.000 0.000 0.000 +2448298.5 -1.17293 1.18115 -25470828.0 0.00292 0.00224 9.0 0.000 0.000 0.000 +2448299.5 -1.20382 1.20227 -25472755.1 0.00290 0.00180 8.5 0.000 0.000 0.000 +2448300.5 -1.23642 1.22430 -25474851.6 0.00287 0.00181 8.3 0.000 0.000 0.000 +2448301.5 -1.26886 1.24827 -25477139.5 0.00302 0.00179 7.8 0.000 0.000 0.000 +2448302.5 -1.30090 1.27481 -25479619.8 0.00295 0.00171 11.8 0.000 0.000 0.000 +2448303.5 -1.33248 1.30367 -25482246.4 0.00322 0.00145 14.9 0.000 0.000 0.000 +2448304.5 -1.36346 1.33439 -25484936.5 0.00261 0.00309 21.4 0.000 0.000 0.000 +2448305.5 -1.39383 1.36645 -25487584.9 0.00324 0.00397 25.6 0.000 0.000 0.000 +2448306.5 -1.42367 1.39922 -25490105.1 0.00285 0.00487 22.6 0.000 0.000 0.000 +2448307.5 -1.45303 1.43209 -25492443.7 0.00301 0.00462 20.2 0.000 0.000 0.000 +2448308.5 -1.48228 1.46432 -25494588.7 0.00290 0.00534 26.7 0.000 0.000 0.000 +2448309.5 -1.51168 1.49460 -25496585.3 0.00252 0.00462 26.0 0.000 0.000 0.000 +2448310.5 -1.54153 1.52186 -25498524.4 0.00251 0.00453 27.8 0.000 0.000 0.000 +2448311.5 -1.57155 1.54696 -25500498.6 0.00232 0.00401 26.4 0.000 0.000 0.000 +2448312.5 -1.60076 1.57158 -25502604.8 0.00243 0.00364 24.1 0.000 0.000 0.000 +2448313.5 -1.62828 1.59712 -25504925.8 0.00202 0.00263 29.9 0.000 0.000 0.000 +2448314.5 -1.65354 1.62385 -25507503.3 0.00202 0.00263 22.9 0.000 0.000 0.000 +2448315.5 -1.67625 1.65168 -25510319.4 0.00200 0.00262 20.8 0.000 0.000 0.000 +2448316.5 -1.69698 1.68032 -25513284.4 0.00266 0.00262 21.7 0.000 0.000 0.000 +2448317.5 -1.71657 1.70970 -25516266.4 0.00249 0.00247 20.3 0.000 0.000 0.000 +2448318.5 -1.73574 1.73978 -25519131.4 0.00372 0.00264 28.9 0.000 0.000 0.000 +2448319.5 -1.75523 1.77048 -25521775.6 0.00380 0.00164 32.6 0.000 0.000 0.000 +2448320.5 -1.77563 1.80168 -25524144.6 0.00393 0.00174 32.3 0.000 0.000 0.000 +2448321.5 -1.79669 1.83348 -25526245.4 0.00431 0.00208 27.7 0.000 0.000 0.000 +2448322.5 -1.81792 1.86607 -25528119.9 0.00322 0.00199 18.8 0.000 0.000 0.000 +2448323.5 -1.83851 1.89958 -25529833.7 0.00316 0.00202 19.1 0.000 0.000 0.000 +2448324.5 -1.85693 1.93412 -25531478.3 0.00315 0.00269 19.4 0.000 0.000 0.000 +2448325.5 -1.87225 1.96997 -25533147.9 0.00310 0.00269 20.3 0.000 0.000 0.000 +2448326.5 -1.88530 2.00719 -25534918.9 0.00232 0.00263 13.2 0.000 0.000 0.000 +2448327.5 -1.89727 2.04561 -25536857.4 0.00424 0.00187 16.3 0.000 0.000 0.000 +2448328.5 -1.90939 2.08495 -25539009.9 0.00510 0.00182 18.2 0.000 0.000 0.000 +2448329.5 -1.92319 2.12457 -25541388.5 0.00510 0.00182 18.6 0.000 0.000 0.000 +2448330.5 -1.93972 2.16359 -25543977.2 0.00510 0.00182 18.5 0.000 0.000 0.000 +2448331.5 -1.95645 2.20120 -25546770.5 0.00505 0.00135 17.8 0.000 0.000 0.000 +2448332.5 -1.97270 2.23760 -25549679.8 0.00468 0.00131 17.1 0.000 0.000 0.000 +2448333.5 -1.98791 2.27315 -25552570.9 0.00379 0.00167 21.6 0.000 0.000 0.000 +2448334.5 -2.00126 2.30820 -25555316.2 0.00360 0.00232 32.3 0.000 0.000 0.000 +2448335.5 -2.01225 2.34313 -25557830.4 0.00255 0.00242 32.6 0.000 0.000 0.000 +2448336.5 -2.02173 2.37852 -25560106.5 0.00227 0.00224 31.8 0.000 0.000 0.000 +2448337.5 -2.03091 2.41491 -25562203.1 0.00305 0.00191 26.7 0.000 0.000 0.000 +2448338.5 -2.04133 2.45246 -25564213.2 0.00306 0.00213 37.8 0.000 0.000 0.000 +2448339.5 -2.05461 2.49129 -25566241.5 0.00305 0.00200 31.9 0.000 0.000 0.000 +2448340.5 -2.07215 2.53150 -25568380.7 0.00298 0.00168 31.7 0.000 0.000 0.000 +2448341.5 -2.09322 2.57280 -25570729.8 0.00362 0.00170 25.7 0.000 0.000 0.000 +2448342.5 -2.11520 2.61437 -25573337.7 0.00365 0.00166 26.0 0.000 0.000 0.000 +2448343.5 -2.13574 2.65577 -25576141.4 0.00394 0.00159 28.2 0.000 0.000 0.000 +2448344.5 -2.15276 2.69670 -25579026.4 0.00386 0.00176 30.1 0.000 0.000 0.000 +2448345.5 -2.16487 2.73694 -25581865.8 0.00438 0.00358 22.7 0.000 0.000 0.000 +2448346.5 -2.17298 2.77674 -25584564.3 0.00427 0.00350 18.3 0.000 0.000 0.000 +2448347.5 -2.17835 2.81657 -25587077.4 0.00403 0.00324 17.7 0.000 0.000 0.000 +2448348.5 -2.18227 2.85688 -25589400.0 0.00376 0.00441 12.7 0.000 0.000 0.000 +2448349.5 -2.18588 2.89798 -25591559.2 0.00376 0.00441 12.8 0.000 0.000 0.000 +2448350.5 -2.18984 2.93956 -25593593.8 0.00376 0.00441 12.3 0.000 0.000 0.000 +2448351.5 -2.19427 2.98114 -25595551.1 0.00336 0.00410 17.4 0.000 0.000 0.000 +2448352.5 -2.19884 3.02240 -25597483.9 0.00303 0.00261 16.4 0.000 0.000 0.000 +2448353.5 -2.20281 3.06324 -25599444.0 0.00213 0.00221 22.9 0.000 0.000 0.000 +2448354.5 -2.20536 3.10363 -25601477.2 0.00200 0.00166 24.0 0.000 0.000 0.000 +2448355.5 -2.20576 3.14356 -25603622.2 0.00200 0.00166 24.0 0.000 0.000 0.000 +2448356.5 -2.20351 3.18322 -25605914.2 0.00230 0.00143 21.1 0.000 0.000 0.000 +2448357.5 -2.19835 3.22276 -25608368.3 0.00198 0.00115 11.4 0.000 0.000 0.000 +2448358.5 -2.19034 3.26227 -25610974.0 0.00227 0.00163 12.9 0.000 0.000 0.000 +2448359.5 -2.17992 3.30171 -25613687.3 0.00174 0.00132 11.1 0.000 0.000 0.000 +2448360.5 -2.16784 3.34102 -25616429.0 0.00153 0.00121 11.2 0.000 0.000 0.000 +2448361.5 -2.15523 3.38021 -25619083.6 0.00147 0.00157 11.7 0.000 0.000 0.000 +2448362.5 -2.14333 3.41945 -25621548.6 0.00252 0.00159 13.0 0.000 0.000 0.000 +2448363.5 -2.13329 3.45896 -25623775.0 0.00271 0.00216 14.1 0.000 0.000 0.000 +2448364.5 -2.12575 3.49889 -25625784.7 0.00271 0.00204 14.2 0.000 0.000 0.000 +2448365.5 -2.12093 3.53915 -25627668.5 0.00271 0.00204 15.1 0.000 0.000 0.000 +2448366.5 -2.11689 3.57909 -25629597.5 0.00325 0.00226 13.8 0.000 0.000 0.000 +2448367.5 -2.11330 3.61873 -25631691.5 0.00303 0.00229 13.3 0.000 0.000 0.000 +2448368.5 -2.11070 3.65814 -25634009.3 0.00262 0.00232 11.3 0.000 0.000 0.000 +2448369.5 -2.10964 3.69738 -25636553.5 0.00445 0.00321 12.1 0.000 0.000 0.000 +2448370.5 -2.11005 3.73626 -25639278.6 0.00445 0.00321 12.1 0.000 0.000 0.000 +2448371.5 -2.11054 3.77417 -25642100.6 0.00445 0.00321 8.9 0.000 0.000 0.000 +2448372.5 -2.10978 3.81113 -25644919.5 0.00484 0.00341 15.6 0.000 0.000 0.000 +2448373.5 -2.10693 3.84735 -25647642.6 0.00413 0.00306 12.6 0.000 0.000 0.000 +2448374.5 -2.10212 3.88313 -25650202.8 0.00490 0.00348 13.4 0.000 0.000 0.000 +2448375.5 -2.09558 3.91884 -25652566.8 0.00188 0.00369 13.9 0.000 0.000 0.000 +2448376.5 -2.08757 3.95482 -25654736.2 0.00178 0.00303 15.2 0.000 0.000 0.000 +2448377.5 -2.07832 3.99128 -25656742.7 0.00178 0.00303 15.2 0.000 0.000 0.000 +2448378.5 -2.06768 4.02808 -25658641.8 0.00178 0.00303 13.4 0.000 0.000 0.000 +2448379.5 -2.05549 4.06507 -25660498.7 0.00108 0.00417 19.3 0.000 0.000 0.000 +2448380.5 -2.04182 4.10228 -25662380.3 0.00148 0.00422 16.4 0.000 0.000 0.000 +2448381.5 -2.02679 4.13960 -25664352.6 0.00149 0.00292 10.9 0.000 0.000 0.000 +2448382.5 -2.01052 4.17691 -25666471.2 0.00138 0.00260 11.7 0.000 0.000 0.000 +2448383.5 -1.99304 4.21438 -25668775.8 0.00207 0.00251 10.4 0.000 0.000 0.000 +2448384.5 -1.97452 4.25214 -25671279.9 0.00211 0.00252 9.3 0.000 0.000 0.000 +2448385.5 -1.95546 4.28993 -25673960.7 0.00215 0.00204 9.7 0.000 0.000 0.000 +2448386.5 -1.93620 4.32763 -25676767.6 0.00212 0.00216 10.1 0.000 0.000 0.000 +2448387.5 -1.91684 4.36515 -25679620.9 0.00242 0.00136 11.6 0.000 0.000 0.000 +2448388.5 -1.89702 4.40224 -25682423.2 0.00249 0.00143 12.7 0.000 0.000 0.000 +2448389.5 -1.87632 4.43867 -25685081.3 0.00249 0.00143 12.7 0.000 0.000 0.000 +2448390.5 -1.85430 4.47420 -25687535.4 0.00225 0.00166 17.8 0.000 0.000 0.000 +2448391.5 -1.83038 4.50860 -25689784.5 0.00220 0.00164 17.8 0.000 0.000 0.000 +2448392.5 -1.80419 4.54191 -25691877.6 0.00220 0.00164 17.8 0.000 0.000 0.000 +2448393.5 -1.77583 4.57448 -25693907.1 0.00238 0.00191 24.4 0.000 0.000 0.000 +2448394.5 -1.74563 4.60659 -25695971.3 0.00267 0.00158 18.1 0.000 0.000 0.000 +2448395.5 -1.71449 4.63821 -25698145.4 0.00218 0.00134 12.6 0.000 0.000 0.000 +2448396.5 -1.68348 4.66922 -25700447.1 0.00215 0.00132 13.2 0.000 0.000 0.000 +2448397.5 -1.65365 4.69948 -25702835.3 0.00212 0.00114 9.1 0.000 0.000 0.000 +2448398.5 -1.62533 4.72892 -25705228.0 0.00212 0.00114 8.6 0.000 0.000 0.000 +2448399.5 -1.59736 4.75774 -25707524.3 0.00212 0.00114 8.7 0.000 0.000 0.000 +2448400.5 -1.56901 4.78637 -25709656.3 0.00113 0.00125 9.7 0.000 0.000 0.000 +2448401.5 -1.53992 4.81514 -25711587.2 0.00118 0.00116 8.9 0.000 0.000 0.000 +2448402.5 -1.51032 4.84403 -25713311.0 0.00160 0.00185 12.8 0.000 0.000 0.000 +2448403.5 -1.48058 4.87290 -25714851.9 0.00160 0.00181 12.9 0.000 0.000 0.000 +2448404.5 -1.45092 4.90159 -25716261.6 0.00157 0.00170 16.3 0.000 0.000 0.000 +2448405.5 -1.42154 4.92998 -25717604.0 0.00152 0.00171 19.9 0.000 0.000 0.000 +2448406.5 -1.39250 4.95809 -25718934.3 0.00146 0.00177 30.5 0.000 0.000 0.000 +2448407.5 -1.36374 4.98596 -25720309.0 0.00198 0.00226 46.9 0.000 0.000 0.000 +2448408.5 -1.33507 5.01364 -25721780.1 0.00321 0.00242 28.2 0.000 0.000 0.000 +2448409.5 -1.30609 5.04103 -25723393.2 0.00320 0.00269 29.1 0.000 0.000 0.000 +2448410.5 -1.27628 5.06805 -25725175.7 0.00320 0.00269 29.1 0.000 0.000 0.000 +2448411.5 -1.24514 5.09464 -25727134.3 0.00327 0.00294 26.3 0.000 0.000 0.000 +2448412.5 -1.21214 5.12063 -25729264.2 0.00327 0.00294 19.4 0.000 0.000 0.000 +2448413.5 -1.17777 5.14629 -25731544.8 0.00327 0.00294 19.3 0.000 0.000 0.000 +2448414.5 -1.14287 5.17217 -25733929.4 0.00344 0.00260 20.2 0.000 0.000 0.000 +2448415.5 -1.10805 5.19865 -25736346.8 0.00563 0.00464 16.5 0.000 0.000 0.000 +2448416.5 -1.07299 5.22549 -25738706.2 0.00554 0.00423 15.7 0.000 0.000 0.000 +2448417.5 -1.03716 5.25228 -25740931.0 0.00562 0.00417 15.5 0.000 0.000 0.000 +2448418.5 -1.00001 5.27863 -25742991.2 0.00588 0.00391 14.6 0.000 0.000 0.000 +2448419.5 -0.96150 5.30392 -25744909.1 0.00588 0.00391 14.5 0.000 0.000 0.000 +2448420.5 -0.92385 5.32726 -25746735.6 0.00593 0.00433 14.6 0.000 0.000 0.000 +2448421.5 -0.88675 5.34856 -25748577.2 0.00518 0.00423 16.2 0.000 0.000 0.000 +2448422.5 -0.84926 5.36811 -25750528.7 0.00419 0.00368 14.6 0.000 0.000 0.000 +2448423.5 -0.81195 5.38614 -25752629.2 0.00355 0.00372 14.3 0.000 0.000 0.000 +2448424.5 -0.77558 5.40298 -25754845.2 0.00356 0.00347 15.1 0.000 0.000 0.000 +2448425.5 -0.74049 5.41937 -25757088.2 0.00264 0.00390 17.5 0.000 0.000 0.000 +2448426.5 -0.70679 5.43580 -25759254.9 0.00211 0.00307 17.5 0.000 0.000 0.000 +2448427.5 -0.67451 5.45209 -25761259.4 0.00211 0.00307 17.5 0.000 0.000 0.000 +2448428.5 -0.64398 5.46793 -25763048.2 0.00263 0.00301 24.0 0.000 0.000 0.000 +2448429.5 -0.61541 5.48309 -25764601.5 0.00297 0.00495 23.2 0.000 0.000 0.000 +2448430.5 -0.58804 5.49791 -25765921.0 0.00265 0.00379 21.3 0.000 0.000 0.000 +2448431.5 -0.56081 5.51296 -25767029.0 0.00338 0.00418 23.5 0.000 0.000 0.000 +2448432.5 -0.53268 5.52882 -25767966.7 0.00370 0.00391 24.4 0.000 0.000 0.000 +2448433.5 -0.50279 5.54584 -25768792.3 0.00261 0.00331 13.3 0.000 0.000 0.000 +2448434.5 -0.47109 5.56348 -25769577.3 0.00261 0.00331 13.1 0.000 0.000 0.000 +2448435.5 -0.43777 5.58055 -25770396.6 0.00271 0.00322 15.0 0.000 0.000 0.000 +2448436.5 -0.40290 5.59559 -25771314.7 0.00264 0.00410 15.4 0.000 0.000 0.000 +2448437.5 -0.36668 5.60764 -25772369.0 0.00356 0.00438 18.0 0.000 0.000 0.000 +2448438.5 -0.32991 5.61773 -25773566.3 0.00341 0.00417 18.2 0.000 0.000 0.000 +2448439.5 -0.29344 5.62741 -25774893.9 0.00322 0.00430 18.0 0.000 0.000 0.000 +2448440.5 -0.25705 5.63760 -25776340.7 0.00433 0.00543 26.2 0.000 0.000 0.000 +2448441.5 -0.21919 5.64789 -25777875.9 0.00433 0.00543 26.3 0.000 0.000 0.000 +2448442.5 -0.17972 5.65793 -25779427.8 0.00512 0.00239 33.5 0.000 0.000 0.000 +2448443.5 -0.13928 5.66741 -25780910.8 0.00445 0.00198 29.1 0.000 0.000 0.000 +2448444.5 -0.09856 5.67600 -25782247.1 0.00182 0.00208 20.7 0.000 0.000 0.000 +2448445.5 -0.05824 5.68338 -25783388.5 0.00158 0.00135 10.9 0.000 0.000 0.000 +2448446.5 -0.01892 5.68938 -25784339.6 0.00187 0.00146 10.9 0.000 0.000 0.000 +2448447.5 0.01925 5.69394 -25785173.0 0.00183 0.00280 11.5 0.000 0.000 0.000 +2448448.5 0.05747 5.69729 -25786030.6 0.00317 0.00273 17.2 0.000 0.000 0.000 +2448449.5 0.09692 5.70026 -25787066.4 0.00328 0.00284 18.2 0.000 0.000 0.000 +2448450.5 0.13751 5.70359 -25788375.8 0.00305 0.00518 17.5 0.000 0.000 0.000 +2448451.5 0.17968 5.70775 -25789970.3 0.00282 0.00548 16.3 0.000 0.000 0.000 +2448452.5 0.22397 5.71269 -25791773.8 0.00425 0.00699 24.9 0.000 0.000 0.000 +2448453.5 0.26990 5.71822 -25793647.0 0.00321 0.00611 22.7 0.000 0.000 0.000 +2448454.5 0.31671 5.72336 -25795453.7 0.00327 0.00593 21.7 0.000 0.000 0.000 +2448455.5 0.36380 5.72619 -25797110.0 0.00250 0.00600 22.6 0.000 0.000 0.000 +2448456.5 0.41066 5.72700 -25798568.2 0.00262 0.00406 21.5 0.000 0.000 0.000 +2448457.5 0.45611 5.72657 -25799804.2 0.00312 0.00526 22.3 0.000 0.000 0.000 +2448458.5 0.50051 5.72568 -25800840.1 0.00360 0.00533 26.7 0.000 0.000 0.000 +2448459.5 0.54519 5.72458 -25801732.0 0.00276 0.00537 23.9 0.000 0.000 0.000 +2448460.5 0.59131 5.72335 -25802546.8 0.00440 0.00734 32.9 0.000 0.000 0.000 +2448461.5 0.63839 5.72165 -25803349.0 0.00450 0.00700 21.9 0.000 0.000 0.000 +2448462.5 0.68524 5.71927 -25804200.0 0.00426 0.00698 25.2 0.000 0.000 0.000 +2448463.5 0.73127 5.71636 -25805160.0 0.00320 0.00535 33.5 0.000 0.000 0.000 +2448464.5 0.77612 5.71301 -25806273.3 0.00260 0.00358 27.2 0.000 0.000 0.000 +2448465.5 0.81923 5.70925 -25807554.8 0.00312 0.00318 33.2 0.000 0.000 0.000 +2448466.5 0.85993 5.70501 -25808986.1 0.00323 0.00412 34.4 0.000 0.000 0.000 +2448467.5 0.89732 5.70003 -25810506.9 0.00339 0.00444 38.0 0.000 0.000 0.000 +2448468.5 0.93054 5.69412 -25812028.6 0.00335 0.00501 37.8 0.000 0.000 0.000 +2448469.5 0.96064 5.68695 -25813492.9 0.00322 0.00476 35.4 0.000 0.000 0.000 +2448470.5 0.98955 5.67827 -25814866.7 0.00331 0.00479 37.0 0.000 0.000 0.000 +2448471.5 1.01893 5.66804 -25816121.6 0.00419 0.00584 33.6 0.000 0.000 0.000 +2448472.5 1.04980 5.65623 -25817230.8 0.00412 0.00356 28.1 0.000 0.000 0.000 +2448473.5 1.08239 5.64345 -25818195.9 0.00412 0.00356 27.5 0.000 0.000 0.000 +2448474.5 1.11684 5.63024 -25819057.1 0.00420 0.00306 19.4 0.000 0.000 0.000 +2448475.5 1.15270 5.61696 -25819900.2 0.00432 0.00249 21.6 0.000 0.000 0.000 +2448476.5 1.18838 5.60362 -25820841.2 0.00470 0.00254 21.5 0.000 0.000 0.000 +2448477.5 1.22417 5.59002 -25822000.1 0.00391 0.00128 24.9 0.000 0.000 0.000 +2448478.5 1.26064 5.57598 -25823442.2 0.00293 0.00372 16.1 0.000 0.000 0.000 +2448479.5 1.29743 5.56155 -25825148.2 0.00206 0.00483 17.1 0.000 0.000 0.000 +2448480.5 1.33388 5.54688 -25827028.5 0.00206 0.00483 16.9 0.000 0.000 0.000 +2448481.5 1.36936 5.53208 -25828964.7 0.00108 0.00495 14.5 0.000 0.000 0.000 +2448482.5 1.40338 5.51701 -25830845.6 0.00209 0.00497 17.7 0.000 0.000 0.000 +2448483.5 1.43582 5.50128 -25832579.1 0.00204 0.00519 15.5 0.000 0.000 0.000 +2448484.5 1.46664 5.48458 -25834121.0 0.00233 0.00504 23.1 0.000 0.000 0.000 +2448485.5 1.49565 5.46691 -25835471.7 0.00420 0.00502 29.7 0.000 0.000 0.000 +2448486.5 1.52248 5.44832 -25836665.1 0.00407 0.00434 28.9 0.000 0.000 0.000 +2448487.5 1.54736 5.42892 -25837756.4 0.00316 0.00271 17.3 0.000 0.000 0.000 +2448488.5 1.57074 5.40910 -25838803.9 0.00334 0.00293 21.1 0.000 0.000 0.000 +2448489.5 1.59334 5.38911 -25839865.1 0.00290 0.00235 18.8 0.000 0.000 0.000 +2448490.5 1.61631 5.36857 -25840994.6 0.00290 0.00235 15.9 0.000 0.000 0.000 +2448491.5 1.64076 5.34717 -25842246.3 0.00326 0.00118 19.7 0.000 0.000 0.000 +2448492.5 1.66681 5.32501 -25843679.9 0.00282 0.00292 16.6 0.000 0.000 0.000 +2448493.5 1.69366 5.30256 -25845312.3 0.00285 0.00303 16.7 0.000 0.000 0.000 +2448494.5 1.72019 5.28027 -25847126.3 0.00348 0.00351 29.0 0.000 0.000 0.000 +2448495.5 1.74582 5.25874 -25849077.6 0.00335 0.00357 24.8 0.000 0.000 0.000 +2448496.5 1.77159 5.23853 -25851107.7 0.00329 0.00371 24.6 0.000 0.000 0.000 +2448497.5 1.79748 5.21904 -25853131.1 0.00329 0.00371 21.3 0.000 0.000 0.000 +2448498.5 1.82322 5.19951 -25855068.7 0.00283 0.00311 31.8 0.000 0.000 0.000 +2448499.5 1.84872 5.17930 -25856876.5 0.00307 0.00544 35.8 0.000 0.000 0.000 +2448500.5 1.87421 5.15836 -25858551.7 0.00307 0.00544 29.6 0.000 0.000 0.000 +2448501.5 1.90001 5.13682 -25860135.8 0.00246 0.00420 16.4 0.000 0.000 0.000 +2448502.5 1.92639 5.11484 -25861709.1 0.00243 0.00386 19.4 0.000 0.000 0.000 +2448503.5 1.95360 5.09270 -25863375.6 0.00193 0.00297 13.5 0.000 0.000 0.000 +2448504.5 1.98232 5.07066 -25865240.5 0.00193 0.00297 12.9 0.000 0.000 0.000 +2448505.5 2.01293 5.04894 -25867369.4 0.00208 0.00244 13.7 0.000 0.000 0.000 +2448506.5 2.04411 5.02765 -25869760.6 0.00238 0.00267 15.0 0.000 0.000 0.000 +2448507.5 2.07416 5.00661 -25872341.0 0.00250 0.00270 11.5 0.000 0.000 0.000 +2448508.5 2.10184 4.98524 -25875002.5 0.00252 0.00240 10.8 0.000 0.000 0.000 +2448509.5 2.12589 4.96318 -25877627.9 0.00297 0.00231 10.2 0.000 0.000 0.000 +2448510.5 2.14503 4.94024 -25880120.4 0.00366 0.00365 15.2 0.000 0.000 0.000 +2448511.5 2.16020 4.91626 -25882411.0 0.00375 0.00342 16.4 0.000 0.000 0.000 +2448512.5 2.17335 4.89108 -25884477.5 0.00338 0.00349 16.4 0.000 0.000 0.000 +2448513.5 2.18621 4.86457 -25886337.9 0.00315 0.00256 17.3 0.000 0.000 0.000 +2448514.5 2.19958 4.83681 -25888038.0 0.00309 0.00246 17.5 0.000 0.000 0.000 +2448515.5 2.21437 4.80810 -25889635.3 0.00309 0.00246 17.6 0.000 0.000 0.000 +2448516.5 2.23158 4.77881 -25891184.0 0.00381 0.00258 20.1 0.000 0.000 0.000 +2448517.5 2.25160 4.74926 -25892740.7 0.00394 0.00145 16.0 0.000 0.000 0.000 +2448518.5 2.27313 4.71965 -25894378.0 0.00394 0.00145 15.3 0.000 0.000 0.000 +2448519.5 2.29461 4.69021 -25896157.1 0.00457 0.00174 22.0 0.000 0.000 0.000 +2448520.5 2.31489 4.66114 -25898115.5 0.00403 0.00482 24.3 0.000 0.000 0.000 +2448521.5 2.33447 4.63260 -25900263.4 0.00389 0.00461 23.7 0.000 0.000 0.000 +2448522.5 2.35429 4.60472 -25902584.3 0.00473 0.00503 21.1 0.000 0.000 0.000 +2448523.5 2.37525 4.57764 -25905037.5 0.00402 0.00568 26.8 0.000 0.000 0.000 +2448524.5 2.39771 4.55117 -25907551.3 0.00402 0.00568 27.2 0.000 0.000 0.000 +2448525.5 2.42057 4.52410 -25910021.6 0.00405 0.00560 27.7 0.000 0.000 0.000 +2448526.5 2.44242 4.49531 -25912365.6 0.00444 0.00623 26.0 0.000 0.000 0.000 +2448527.5 2.46231 4.46535 -25914535.5 0.00374 0.00483 23.2 0.000 0.000 0.000 +2448528.5 2.47996 4.43462 -25916544.3 0.00382 0.00494 22.2 0.000 0.000 0.000 +2448529.5 2.49501 4.40328 -25918449.8 0.00306 0.00471 22.5 0.000 0.000 0.000 +2448530.5 2.50687 4.37136 -25920331.9 0.00364 0.00392 20.0 0.000 0.000 0.000 +2448531.5 2.51556 4.33876 -25922279.3 0.00347 0.00384 20.0 0.000 0.000 0.000 +2448532.5 2.52284 4.30529 -25924381.0 0.00347 0.00384 20.0 0.000 0.000 0.000 +2448533.5 2.53049 4.27108 -25926677.1 0.00407 0.00415 23.8 0.000 0.000 0.000 +2448534.5 2.53942 4.23650 -25929144.8 0.00279 0.00271 18.5 0.000 0.000 0.000 +2448535.5 2.54931 4.20164 -25931709.3 0.00281 0.00373 19.1 0.000 0.000 0.000 +2448536.5 2.55957 4.16656 -25934270.3 0.00246 0.00368 18.5 0.000 0.000 0.000 +2448537.5 2.56961 4.13134 -25936733.3 0.00169 0.00377 17.3 0.000 0.000 0.000 +2448538.5 2.57880 4.09612 -25939033.2 0.00190 0.00378 17.3 0.000 0.000 0.000 +2448539.5 2.58676 4.06123 -25941128.1 0.00190 0.00378 13.8 0.000 0.000 0.000 +2448540.5 2.59330 4.02689 -25943012.1 0.00215 0.00454 16.5 0.000 0.000 0.000 +2448541.5 2.59839 3.99319 -25944711.8 0.00249 0.00356 12.3 0.000 0.000 0.000 +2448542.5 2.60238 3.95996 -25946276.5 0.00207 0.00143 7.0 0.000 0.000 0.000 +2448543.5 2.60564 3.92702 -25947759.9 0.00175 0.00122 5.8 0.000 0.000 0.000 +2448544.5 2.60857 3.89415 -25949209.6 0.00189 0.00059 5.6 0.000 0.000 0.000 +2448545.5 2.61154 3.86122 -25950677.6 0.00170 0.00071 5.3 0.000 0.000 0.000 +2448546.5 2.61494 3.82835 -25952240.7 0.00170 0.00071 5.2 0.000 0.000 0.000 +2448547.5 2.61771 3.79591 -25953961.0 0.00161 0.00104 4.1 0.000 0.000 0.000 +2448548.5 2.61901 3.76393 -25955861.5 0.00214 0.00157 7.8 0.000 0.000 0.000 +2448549.5 2.61890 3.73216 -25957935.9 0.00198 0.00181 8.7 0.000 0.000 0.000 +2448550.5 2.61785 3.69983 -25960146.2 0.00206 0.00195 10.1 0.000 0.000 0.000 +2448551.5 2.61608 3.66623 -25962428.5 0.00188 0.00197 10.1 0.000 0.000 0.000 +2448552.5 2.61321 3.63198 -25964702.2 0.00215 0.00223 11.0 0.000 0.000 0.000 +2448553.5 2.60975 3.59844 -25966897.6 0.00217 0.00223 10.9 0.000 0.000 0.000 +2448554.5 2.60588 3.56580 -25968955.4 0.00098 0.00266 15.0 0.000 0.000 0.000 +2448555.5 2.60180 3.53381 -25970882.3 0.00092 0.00178 12.4 0.000 0.000 0.000 +2448556.5 2.59794 3.50228 -25972743.1 0.00149 0.00168 14.7 0.000 0.000 0.000 +2448557.5 2.59480 3.47101 -25974635.9 0.00159 0.00177 15.4 0.000 0.000 0.000 +2448558.5 2.59292 3.43983 -25976656.9 0.00285 0.00169 17.5 0.000 0.000 0.000 +2448559.5 2.59301 3.40852 -25978871.2 0.00242 0.00153 15.0 0.000 0.000 0.000 +2448560.5 2.59598 3.37723 -25981294.3 0.00242 0.00153 11.0 0.000 0.000 0.000 +2448561.5 2.60207 3.34665 -25983912.8 0.00267 0.00159 12.2 0.000 0.000 0.000 +2448562.5 2.61090 3.31749 -25986670.3 0.00325 0.00191 12.2 0.000 0.000 0.000 +2448563.5 2.62044 3.29004 -25989466.7 0.00363 0.00215 14.2 0.000 0.000 0.000 +2448564.5 2.62861 3.26364 -25992186.5 0.00359 0.00227 12.3 0.000 0.000 0.000 +2448565.5 2.63339 3.23742 -25994732.1 0.00286 0.00219 10.7 0.000 0.000 0.000 +2448566.5 2.63374 3.21073 -25997048.4 0.00337 0.00272 11.9 0.000 0.000 0.000 +2448567.5 2.63081 3.18335 -25999146.0 0.00336 0.00350 11.8 0.000 0.000 0.000 +2448568.5 2.62603 3.15518 -26001075.5 0.00304 0.00394 14.6 0.000 0.000 0.000 +2448569.5 2.62042 3.12634 -26002907.6 0.00290 0.00437 8.9 0.000 0.000 0.000 +2448570.5 2.61398 3.09714 -26004710.3 0.00200 0.00277 6.6 0.000 0.000 0.000 +2448571.5 2.60641 3.06803 -26006543.9 0.00200 0.00277 6.8 0.000 0.000 0.000 +2448572.5 2.59756 3.03910 -26008458.4 0.00138 0.00279 5.3 0.000 0.000 0.000 +2448573.5 2.58734 3.01031 -26010490.7 0.00145 0.00274 5.8 0.000 0.000 0.000 +2448574.5 2.57580 2.98135 -26012662.2 0.00145 0.00274 9.0 0.000 0.000 0.000 +2448575.5 2.56347 2.95177 -26014985.1 0.00132 0.00276 9.1 0.000 0.000 0.000 +2448576.5 2.55104 2.92112 -26017453.0 0.00275 0.00336 9.0 0.000 0.000 0.000 +2448577.5 2.53932 2.88935 -26020037.1 0.00412 0.00356 13.9 0.000 0.000 0.000 +2448578.5 2.52943 2.85739 -26022674.7 0.00399 0.00373 13.5 0.000 0.000 0.000 +2448579.5 2.52257 2.82638 -26025284.7 0.00378 0.00381 13.5 0.000 0.000 0.000 +2448580.5 2.51895 2.79690 -26027788.5 0.00399 0.00361 13.6 0.000 0.000 0.000 +2448581.5 2.51594 2.76828 -26030135.5 0.00399 0.00361 13.6 0.000 0.000 0.000 +2448582.5 2.51082 2.74050 -26032300.2 0.00350 0.00274 17.6 0.000 0.000 0.000 +2448583.5 2.50216 2.71316 -26034329.7 0.00409 0.00419 22.3 0.000 0.000 0.000 +2448584.5 2.49075 2.68539 -26036335.2 0.00340 0.00541 23.2 0.000 0.000 0.000 +2448585.5 2.47789 2.65624 -26038449.0 0.00355 0.00554 28.0 0.000 0.000 0.000 +2448586.5 2.46487 2.62476 -26040779.2 0.00455 0.00630 34.4 0.000 0.000 0.000 +2448587.5 2.45299 2.59052 -26043371.8 0.00455 0.00630 34.9 0.000 0.000 0.000 +2448588.5 2.44293 2.55481 -26046180.9 0.00455 0.00630 33.6 0.000 0.000 0.000 +2448589.5 2.43468 2.51888 -26049110.2 0.00411 0.00853 34.0 0.000 0.000 0.000 +2448590.5 2.42771 2.48359 -26052052.8 0.00348 0.00682 22.3 0.000 0.000 0.000 +2448591.5 2.42139 2.44979 -26054909.2 0.00386 0.00668 27.0 0.000 0.000 0.000 +2448592.5 2.41506 2.41827 -26057604.3 0.00254 0.00387 13.6 0.000 0.000 0.000 +2448593.5 2.40771 2.38946 -26060095.7 0.00365 0.00423 13.7 0.000 0.000 0.000 +2448594.5 2.39808 2.36297 -26062381.7 0.00367 0.00438 13.7 0.000 0.000 0.000 +2448595.5 2.38427 2.33805 -26064489.1 0.00355 0.00431 13.8 0.000 0.000 0.000 +2448596.5 2.36500 2.31352 -26066470.3 0.00381 0.00310 13.0 0.000 0.000 0.000 +2448597.5 2.34037 2.28817 -26068382.7 0.00394 0.00367 11.4 0.000 0.000 0.000 +2448598.5 2.31225 2.26154 -26070290.3 0.00346 0.00379 7.3 0.000 0.000 0.000 +2448599.5 2.28315 2.23366 -26072251.6 0.00381 0.00385 9.3 0.000 0.000 0.000 +2448600.5 2.25565 2.20463 -26074313.0 0.00270 0.00313 8.4 0.000 0.000 0.000 +2448601.5 2.23165 2.17491 -26076504.8 0.00267 0.00316 10.5 0.000 0.000 0.000 +2448602.5 2.21085 2.14590 -26078834.6 0.00279 0.00328 12.2 0.000 0.000 0.000 +2448603.5 2.19210 2.11857 -26081287.2 0.00274 0.00222 15.4 0.000 0.000 0.000 +2448604.5 2.17389 2.09274 -26083833.3 0.00265 0.00271 18.5 0.000 0.000 0.000 +2448605.5 2.15544 2.06757 -26086431.7 0.00214 0.00232 15.6 0.000 0.000 0.000 +2448606.5 2.13653 2.04222 -26089032.2 0.00186 0.00223 13.3 0.000 0.000 0.000 +2448607.5 2.11832 2.01659 -26091569.9 0.00191 0.00213 13.8 0.000 0.000 0.000 +2448608.5 2.10214 1.99120 -26093984.3 0.00239 0.00240 12.5 0.000 0.000 0.000 +2448609.5 2.08734 1.96793 -26096223.9 0.00232 0.00243 11.9 0.000 0.000 0.000 +2448610.5 2.07258 1.94714 -26098266.2 0.00244 0.00250 11.4 0.000 0.000 0.000 +2448611.5 2.05530 1.92733 -26100179.4 0.00194 0.00202 8.6 0.000 0.000 0.000 +2448612.5 2.03392 1.90695 -26102094.1 0.00249 0.00238 10.6 0.000 0.000 0.000 +2448613.5 2.00971 1.88573 -26104128.6 0.00400 0.00371 18.4 0.000 0.000 0.000 +2448614.5 1.98477 1.86391 -26106354.4 0.00415 0.00375 13.2 0.000 0.000 0.000 +2448615.5 1.96095 1.84172 -26108780.1 0.00297 0.00251 19.1 0.000 0.000 0.000 +2448616.5 1.93908 1.81931 -26111349.9 0.00297 0.00251 31.7 0.000 0.000 0.000 +2448617.5 1.91952 1.79671 -26113968.4 0.00393 0.00327 51.8 0.000 0.000 0.000 +2448618.5 1.90235 1.77403 -26116535.1 0.00615 0.00274 35.1 0.000 0.000 0.000 +2448619.5 1.88636 1.75159 -26118964.0 0.00711 0.00404 38.3 0.000 0.000 0.000 +2448620.5 1.86995 1.72962 -26121209.8 0.00711 0.00404 37.8 0.000 0.000 0.000 +2448621.5 1.85149 1.70830 -26123268.1 0.00714 0.00381 34.6 0.000 0.000 0.000 +2448622.5 1.82987 1.68775 -26125165.9 0.00672 0.00345 20.7 0.000 0.000 0.000 +2448623.5 1.80614 1.66776 -26126955.1 0.00672 0.00345 20.3 0.000 0.000 0.000 +2448624.5 1.78183 1.64804 -26128699.6 0.00672 0.00345 20.0 0.000 0.000 0.000 +2448625.5 1.75821 1.62834 -26130466.8 0.00264 0.00341 7.0 0.000 0.000 0.000 +2448626.5 1.73528 1.60861 -26132316.6 0.00192 0.00246 6.3 0.000 0.000 0.000 +2448627.5 1.71271 1.58881 -26134295.7 0.00200 0.00246 5.5 0.000 0.000 0.000 +2448628.5 1.69015 1.56898 -26136432.4 0.00169 0.00254 6.1 0.000 0.000 0.000 +2448629.5 1.66685 1.54962 -26138734.4 0.00169 0.00254 6.1 0.000 0.000 0.000 +2448630.5 1.64145 1.53213 -26141186.1 0.00172 0.00254 6.3 0.000 0.000 0.000 +2448631.5 1.61424 1.51633 -26143759.0 0.00185 0.00220 10.2 0.000 0.000 0.000 +2448632.5 1.58607 1.50164 -26146411.1 0.00149 0.00208 8.5 0.000 0.000 0.000 +2448633.5 1.55714 1.48768 -26149083.6 0.00357 0.00334 13.5 0.000 0.000 0.000 +2448634.5 1.52764 1.47413 -26151712.4 0.00365 0.00339 14.1 0.000 0.000 0.000 +2448635.5 1.49786 1.46057 -26154237.1 0.00359 0.00332 15.1 0.000 0.000 0.000 +2448636.5 1.46797 1.44691 -26156617.8 0.00366 0.00263 14.5 0.000 0.000 0.000 +2448637.5 1.43788 1.43388 -26158864.5 0.00366 0.00263 12.6 0.000 0.000 0.000 +2448638.5 1.40677 1.42163 -26161030.4 0.00403 0.00248 14.7 0.000 0.000 0.000 +2448639.5 1.37368 1.41014 -26163213.2 0.00298 0.00326 11.7 0.000 0.000 0.000 +2448640.5 1.33836 1.39916 -26165537.6 0.00193 0.00287 8.6 0.000 0.000 0.000 +2448641.5 1.30243 1.38789 -26168107.3 0.00191 0.00286 7.5 0.000 0.000 0.000 +2448642.5 1.26796 1.37535 -26170964.8 0.00203 0.00282 7.6 0.000 0.000 0.000 +2448643.5 1.23656 1.36141 -26174059.2 0.00164 0.00333 8.4 0.000 0.000 0.000 +2448644.5 1.20861 1.34759 -26177249.0 0.00164 0.00333 8.4 0.000 0.000 0.000 +2448645.5 1.18262 1.33433 -26180385.7 0.00176 0.00294 8.6 0.000 0.000 0.000 +2448646.5 1.15683 1.32165 -26183348.9 0.00171 0.00378 11.2 0.000 0.000 0.000 +2448647.5 1.13054 1.30926 -26186077.5 0.00172 0.00394 14.8 0.000 0.000 0.000 +2448648.5 1.10331 1.29675 -26188565.7 0.00172 0.00394 14.8 0.000 0.000 0.000 +2448649.5 1.07470 1.28369 -26190847.2 0.00190 0.00390 14.1 0.000 0.000 0.000 +2448650.5 1.04506 1.27039 -26192985.6 0.00190 0.00390 14.3 0.000 0.000 0.000 +2448651.5 1.01632 1.25857 -26195068.0 0.00199 0.00387 14.2 0.000 0.000 0.000 +2448652.5 0.98958 1.24866 -26197156.4 0.00227 0.00371 18.9 0.000 0.000 0.000 +2448653.5 0.96541 1.24062 -26199302.1 0.00235 0.00387 18.1 0.000 0.000 0.000 +2448654.5 0.94325 1.23425 -26201541.7 0.00203 0.00278 8.9 0.000 0.000 0.000 +2448655.5 0.92206 1.22927 -26203897.1 0.00204 0.00277 9.6 0.000 0.000 0.000 +2448656.5 0.90050 1.22534 -26206370.6 0.00214 0.00274 10.6 0.000 0.000 0.000 +2448657.5 0.87721 1.22171 -26208952.9 0.00216 0.00272 11.5 0.000 0.000 0.000 +2448658.5 0.85143 1.21668 -26211644.7 0.00216 0.00272 11.9 0.000 0.000 0.000 +2448659.5 0.82448 1.21014 -26214409.6 0.00212 0.00251 11.8 0.000 0.000 0.000 +2448660.5 0.79770 1.20255 -26217189.0 0.00145 0.00202 9.2 0.000 0.000 0.000 +2448661.5 0.77071 1.19457 -26219904.3 0.00177 0.00228 10.0 0.000 0.000 0.000 +2448662.5 0.74277 1.18686 -26222492.6 0.00177 0.00228 10.8 0.000 0.000 0.000 +2448663.5 0.71319 1.18004 -26224911.9 0.00113 0.00239 10.3 0.000 0.000 0.000 +2448664.5 0.68149 1.17430 -26227152.6 0.00124 0.00189 8.0 0.000 0.000 0.000 +2448665.5 0.64792 1.16953 -26229251.0 0.00124 0.00189 8.0 0.000 0.000 0.000 +2448666.5 0.61369 1.16589 -26231285.5 0.00159 0.00140 10.0 0.000 0.000 0.000 +2448667.5 0.58017 1.16360 -26233364.9 0.00218 0.00174 9.5 0.000 0.000 0.000 +2448668.5 0.54826 1.16281 -26235606.3 0.00246 0.00155 15.3 0.000 0.000 0.000 +2448669.5 0.51774 1.16343 -26238091.0 0.00246 0.00155 15.9 0.000 0.000 0.000 +2448670.5 0.48822 1.16523 -26240832.0 0.00290 0.00149 13.4 0.000 0.000 0.000 +2448671.5 0.45911 1.16773 -26243764.4 0.00321 0.00342 11.9 0.000 0.000 0.000 +2448672.5 0.42930 1.17039 -26246765.3 0.00325 0.00331 11.7 0.000 0.000 0.000 +2448673.5 0.39795 1.17260 -26249694.1 0.00332 0.00296 12.2 0.000 0.000 0.000 +2448674.5 0.36491 1.17366 -26252446.4 0.00333 0.00203 14.6 0.000 0.000 0.000 +2448675.5 0.33144 1.17291 -26254985.4 0.00299 0.00194 16.0 0.000 0.000 0.000 +2448676.5 0.29819 1.17052 -26257321.3 0.00295 0.00205 15.9 0.000 0.000 0.000 +2448677.5 0.26535 1.16690 -26259499.8 0.00262 0.00198 19.2 0.000 0.000 0.000 +2448678.5 0.23326 1.16279 -26261576.1 0.00264 0.00149 21.9 0.000 0.000 0.000 +2448679.5 0.20143 1.15959 -26263574.9 0.00267 0.00189 22.8 0.000 0.000 0.000 +2448680.5 0.16893 1.15789 -26265550.1 0.00283 0.00204 30.1 0.000 0.000 0.000 +2448681.5 0.13503 1.15798 -26267560.7 0.00161 0.00229 27.5 0.000 0.000 0.000 +2448682.5 0.10001 1.16005 -26269674.8 0.00153 0.00159 13.6 0.000 0.000 0.000 +2448683.5 0.06416 1.16395 -26271944.3 0.00153 0.00159 9.3 0.000 0.000 0.000 +2448684.5 0.02770 1.16944 -26274393.1 0.00135 0.00169 8.4 0.000 0.000 0.000 +2448685.5 -0.00937 1.17617 -26277016.1 0.00172 0.00122 11.8 0.000 0.000 0.000 +2448686.5 -0.04750 1.18334 -26279775.2 0.00172 0.00122 11.6 0.000 0.000 0.000 +2448687.5 -0.08566 1.19023 -26282608.0 0.00172 0.00122 12.0 0.000 0.000 0.000 +2448688.5 -0.12239 1.19628 -26285446.9 0.00181 0.00131 15.0 0.000 0.000 0.000 +2448689.5 -0.15666 1.20148 -26288230.3 0.00206 0.00146 21.2 0.000 0.000 0.000 +2448690.5 -0.18896 1.20668 -26290900.4 0.00209 0.00143 21.4 0.000 0.000 0.000 +2448691.5 -0.22012 1.21291 -26293421.6 0.00261 0.00134 22.0 0.000 0.000 0.000 +2448692.5 -0.25094 1.22115 -26295820.9 0.00254 0.00140 22.0 0.000 0.000 0.000 +2448693.5 -0.28211 1.23190 -26298213.3 0.00254 0.00140 25.8 0.000 0.000 0.000 +2448694.5 -0.31355 1.24507 -26300697.8 0.00263 0.00118 24.7 0.000 0.000 0.000 +2448695.5 -0.34507 1.26035 -26303366.8 0.00228 0.00114 22.1 0.000 0.000 0.000 +2448696.5 -0.37708 1.27724 -26306286.3 0.00252 0.00135 26.0 0.000 0.000 0.000 +2448697.5 -0.40947 1.29547 -26309485.0 0.00268 0.00200 24.2 0.000 0.000 0.000 +2448698.5 -0.44207 1.31488 -26312922.5 0.00193 0.00220 21.7 0.000 0.000 0.000 +2448699.5 -0.47482 1.33510 -26316492.3 0.00155 0.00206 11.3 0.000 0.000 0.000 +2448700.5 -0.50775 1.35516 -26320052.8 0.00150 0.00207 11.2 0.000 0.000 0.000 +2448701.5 -0.54077 1.37424 -26323472.6 0.00189 0.00215 12.5 0.000 0.000 0.000 +2448702.5 -0.57327 1.39260 -26326668.8 0.00189 0.00226 11.0 0.000 0.000 0.000 +2448703.5 -0.60423 1.41074 -26329610.1 0.00211 0.00229 12.3 0.000 0.000 0.000 +2448704.5 -0.63296 1.42920 -26332329.3 0.00174 0.00157 10.9 0.000 0.000 0.000 +2448705.5 -0.65894 1.44860 -26334894.3 0.00265 0.00164 11.9 0.000 0.000 0.000 +2448706.5 -0.68193 1.46939 -26337378.5 0.00310 0.00196 15.8 0.000 0.000 0.000 +2448707.5 -0.70291 1.49154 -26339838.7 0.00310 0.00196 17.1 0.000 0.000 0.000 +2448708.5 -0.72316 1.51488 -26342320.3 0.00373 0.00240 24.5 0.000 0.000 0.000 +2448709.5 -0.74368 1.53914 -26344860.9 0.00401 0.00305 21.2 0.000 0.000 0.000 +2448710.5 -0.76444 1.56367 -26347501.7 0.00408 0.00302 23.3 0.000 0.000 0.000 +2448711.5 -0.78520 1.58772 -26350267.1 0.00408 0.00302 23.2 0.000 0.000 0.000 +2448712.5 -0.80571 1.61053 -26353156.1 0.00266 0.00331 20.9 0.000 0.000 0.000 +2448713.5 -0.82573 1.63147 -26356143.8 0.00266 0.00331 18.4 0.000 0.000 0.000 +2448714.5 -0.84533 1.65067 -26359178.4 0.00322 0.00316 17.7 0.000 0.000 0.000 +2448715.5 -0.86469 1.66838 -26362193.6 0.00417 0.00264 30.7 0.000 0.000 0.000 +2448716.5 -0.88378 1.68501 -26365122.8 0.00265 0.00385 25.3 0.000 0.000 0.000 +2448717.5 -0.90228 1.70123 -26367915.0 0.00264 0.00376 23.0 0.000 0.000 0.000 +2448718.5 -0.91991 1.71776 -26370545.5 0.00347 0.00359 23.3 0.000 0.000 0.000 +2448719.5 -0.93683 1.73529 -26373025.2 0.00336 0.00324 25.2 0.000 0.000 0.000 +2448720.5 -0.95328 1.75434 -26375407.5 0.00286 0.00343 27.2 0.000 0.000 0.000 +2448721.5 -0.96953 1.77487 -26377786.1 0.00279 0.00327 26.8 0.000 0.000 0.000 +2448722.5 -0.98574 1.79663 -26380265.6 0.00279 0.00327 30.1 0.000 0.000 0.000 +2448723.5 -1.00184 1.81938 -26382936.7 0.00260 0.00220 22.8 0.000 0.000 0.000 +2448724.5 -1.01786 1.84301 -26385860.6 0.00203 0.00152 29.9 0.000 0.000 0.000 +2448725.5 -1.03400 1.86737 -26389045.2 0.00230 0.00191 28.4 0.000 0.000 0.000 +2448726.5 -1.05053 1.89229 -26392441.9 0.00239 0.00237 28.5 0.000 0.000 0.000 +2448727.5 -1.06770 1.91760 -26395951.8 0.00240 0.00240 30.3 0.000 0.000 0.000 +2448728.5 -1.08576 1.94296 -26399431.7 0.00240 0.00240 31.1 0.000 0.000 0.000 +2448729.5 -1.10461 1.96801 -26402739.6 0.00241 0.00233 31.6 0.000 0.000 0.000 +2448730.5 -1.12379 1.99241 -26405793.4 0.00213 0.00253 19.9 0.000 0.000 0.000 +2448731.5 -1.14286 2.01610 -26408572.8 0.00196 0.00292 16.6 0.000 0.000 0.000 +2448732.5 -1.16137 2.03901 -26411109.1 0.00120 0.00278 16.1 0.000 0.000 0.000 +2448733.5 -1.17890 2.06114 -26413463.7 0.00163 0.00264 13.3 0.000 0.000 0.000 +2448734.5 -1.19515 2.08297 -26415713.9 0.00163 0.00264 13.7 0.000 0.000 0.000 +2448735.5 -1.21009 2.10591 -26417954.7 0.00164 0.00278 14.3 0.000 0.000 0.000 +2448736.5 -1.22457 2.12976 -26420252.0 0.00174 0.00288 16.5 0.000 0.000 0.000 +2448737.5 -1.23952 2.15397 -26422647.8 0.00206 0.00249 15.4 0.000 0.000 0.000 +2448738.5 -1.25478 2.17828 -26425166.5 0.00273 0.00244 17.0 0.000 0.000 0.000 +2448739.5 -1.26994 2.20260 -26427807.3 0.00275 0.00249 15.3 0.000 0.000 0.000 +2448740.5 -1.28471 2.22709 -26430545.8 0.00278 0.00292 12.6 0.000 0.000 0.000 +2448741.5 -1.29904 2.25181 -26433334.5 0.00284 0.00283 11.2 0.000 0.000 0.000 +2448742.5 -1.31397 2.27659 -26436099.0 0.00284 0.00283 11.2 0.000 0.000 0.000 +2448743.5 -1.33073 2.30067 -26438771.4 0.00324 0.00304 13.1 0.000 0.000 0.000 +2448744.5 -1.35005 2.32338 -26441294.5 0.00302 0.00382 12.2 0.000 0.000 0.000 +2448745.5 -1.37100 2.34490 -26443637.2 0.00289 0.00262 12.2 0.000 0.000 0.000 +2448746.5 -1.39205 2.36583 -26445804.6 0.00289 0.00262 10.3 0.000 0.000 0.000 +2448747.5 -1.41162 2.38676 -26447841.9 0.00285 0.00302 11.9 0.000 0.000 0.000 +2448748.5 -1.42826 2.40837 -26449829.5 0.00285 0.00302 11.8 0.000 0.000 0.000 +2448749.5 -1.44120 2.43156 -26451866.8 0.00285 0.00302 21.4 0.000 0.000 0.000 +2448750.5 -1.45115 2.45684 -26454054.0 0.00283 0.00257 25.8 0.000 0.000 0.000 +2448751.5 -1.45918 2.48438 -26456452.3 0.00387 0.00284 28.7 0.000 0.000 0.000 +2448752.5 -1.46656 2.51338 -26459057.7 0.00318 0.00297 24.0 0.000 0.000 0.000 +2448753.5 -1.47455 2.54280 -26461812.3 0.00283 0.00232 24.4 0.000 0.000 0.000 +2448754.5 -1.48437 2.57165 -26464618.3 0.00345 0.00198 24.9 0.000 0.000 0.000 +2448755.5 -1.49632 2.59900 -26467373.2 0.00371 0.00224 21.2 0.000 0.000 0.000 +2448756.5 -1.50865 2.62406 -26470010.6 0.00384 0.00233 18.9 0.000 0.000 0.000 +2448757.5 -1.51921 2.64715 -26472464.0 0.00332 0.00219 13.5 0.000 0.000 0.000 +2448758.5 -1.52651 2.66890 -26474702.8 0.00286 0.00205 12.2 0.000 0.000 0.000 +2448759.5 -1.53077 2.69009 -26476751.7 0.00363 0.00249 16.2 0.000 0.000 0.000 +2448760.5 -1.53301 2.71157 -26478672.5 0.00371 0.00247 18.0 0.000 0.000 0.000 +2448761.5 -1.53469 2.73410 -26480543.2 0.00278 0.00426 18.9 0.000 0.000 0.000 +2448762.5 -1.53679 2.75815 -26482438.6 0.00230 0.00335 18.6 0.000 0.000 0.000 +2448763.5 -1.53914 2.78338 -26484406.7 0.00211 0.00325 18.6 0.000 0.000 0.000 +2448764.5 -1.54184 2.80926 -26486466.8 0.00172 0.00357 21.4 0.000 0.000 0.000 +2448765.5 -1.54561 2.83542 -26488613.2 0.00204 0.00449 19.6 0.000 0.000 0.000 +2448766.5 -1.55081 2.86171 -26490852.0 0.00204 0.00449 19.4 0.000 0.000 0.000 +2448767.5 -1.55737 2.88741 -26493168.8 0.00183 0.00442 13.5 0.000 0.000 0.000 +2448768.5 -1.56512 2.91160 -26495530.6 0.00364 0.00355 15.6 0.000 0.000 0.000 +2448769.5 -1.57343 2.93380 -26497887.1 0.00389 0.00460 17.4 0.000 0.000 0.000 +2448770.5 -1.58025 2.95487 -26500165.5 0.00384 0.00530 14.6 0.000 0.000 0.000 +2448771.5 -1.58340 2.97590 -26502298.9 0.00387 0.00451 15.5 0.000 0.000 0.000 +2448772.5 -1.58200 2.99791 -26504261.8 0.00403 0.00431 14.3 0.000 0.000 0.000 +2448773.5 -1.57770 3.02133 -26506045.3 0.00380 0.00367 15.1 0.000 0.000 0.000 +2448774.5 -1.57227 3.04642 -26507666.2 0.00377 0.00406 16.3 0.000 0.000 0.000 +2448775.5 -1.56669 3.07244 -26509195.7 0.00352 0.00450 16.4 0.000 0.000 0.000 +2448776.5 -1.56189 3.09824 -26510734.2 0.00370 0.00462 16.7 0.000 0.000 0.000 +2448777.5 -1.55841 3.12290 -26512388.5 0.00419 0.00384 19.2 0.000 0.000 0.000 +2448778.5 -1.55605 3.14613 -26514229.3 0.00398 0.00394 22.0 0.000 0.000 0.000 +2448779.5 -1.55396 3.16813 -26516259.9 0.00354 0.00381 23.8 0.000 0.000 0.000 +2448780.5 -1.55158 3.18940 -26518426.5 0.00412 0.00533 44.0 0.000 0.000 0.000 +2448781.5 -1.54873 3.21054 -26520636.2 0.00421 0.00431 47.0 0.000 0.000 0.000 +2448782.5 -1.54573 3.23219 -26522785.7 0.00386 0.00289 46.3 0.000 0.000 0.000 +2448783.5 -1.54275 3.25493 -26524794.0 0.00257 0.00366 43.5 0.000 0.000 0.000 +2448784.5 -1.53952 3.27904 -26526619.5 0.00226 0.00404 33.1 0.000 0.000 0.000 +2448785.5 -1.53607 3.30476 -26528255.1 0.00235 0.00464 38.9 0.000 0.000 0.000 +2448786.5 -1.53277 3.33234 -26529729.2 0.00288 0.00424 13.0 0.000 0.000 0.000 +2448787.5 -1.53005 3.36191 -26531095.5 0.00219 0.00432 13.4 0.000 0.000 0.000 +2448788.5 -1.52852 3.39295 -26532414.0 0.00219 0.00432 14.7 0.000 0.000 0.000 +2448789.5 -1.52854 3.42428 -26533739.1 0.00246 0.00504 16.2 0.000 0.000 0.000 +2448790.5 -1.52992 3.45476 -26535115.8 0.00639 0.00575 20.0 0.000 0.000 0.000 +2448791.5 -1.53145 3.48359 -26536576.3 0.00729 0.00574 20.5 0.000 0.000 0.000 +2448792.5 -1.53172 3.51016 -26538141.4 0.00753 0.00566 25.7 0.000 0.000 0.000 +2448793.5 -1.52923 3.53410 -26539817.9 0.00761 0.00584 28.5 0.000 0.000 0.000 +2448794.5 -1.52304 3.55607 -26541601.8 0.00696 0.00419 26.8 0.000 0.000 0.000 +2448795.5 -1.51419 3.57733 -26543458.8 0.00748 0.00401 27.0 0.000 0.000 0.000 +2448796.5 -1.50465 3.59906 -26545338.7 0.00616 0.00336 22.9 0.000 0.000 0.000 +2448797.5 -1.49634 3.62187 -26547185.8 0.00587 0.00327 19.6 0.000 0.000 0.000 +2448798.5 -1.48902 3.64554 -26548943.7 0.00548 0.00317 18.7 0.000 0.000 0.000 +2448799.5 -1.48079 3.66988 -26550569.2 0.00580 0.00288 21.4 0.000 0.000 0.000 +2448800.5 -1.47031 3.69461 -26552037.2 0.00584 0.00262 23.5 0.000 0.000 0.000 +2448801.5 -1.45776 3.71950 -26553350.1 0.00433 0.00236 20.8 0.000 0.000 0.000 +2448802.5 -1.44495 3.74450 -26554551.5 0.00421 0.00214 20.8 0.000 0.000 0.000 +2448803.5 -1.43318 3.76942 -26555722.2 0.00393 0.00216 22.3 0.000 0.000 0.000 +2448804.5 -1.42232 3.79396 -26556962.8 0.00389 0.00214 22.2 0.000 0.000 0.000 +2448805.5 -1.41165 3.81779 -26558334.7 0.00376 0.00187 23.6 0.000 0.000 0.000 +2448806.5 -1.40021 3.84091 -26559883.8 0.00301 0.00200 19.4 0.000 0.000 0.000 +2448807.5 -1.38724 3.86344 -26561596.5 0.00262 0.00242 21.4 0.000 0.000 0.000 +2448808.5 -1.37324 3.88533 -26563388.7 0.00411 0.00349 33.9 0.000 0.000 0.000 +2448809.5 -1.35841 3.90662 -26565147.1 0.00387 0.00267 39.6 0.000 0.000 0.000 +2448810.5 -1.34231 3.92759 -26566773.6 0.00355 0.00256 37.1 0.000 0.000 0.000 +2448811.5 -1.32477 3.94884 -26568214.3 0.00343 0.00255 34.3 0.000 0.000 0.000 +2448812.5 -1.30782 3.97139 -26569454.4 0.00342 0.00241 34.6 0.000 0.000 0.000 +2448813.5 -1.29400 3.99570 -26570510.6 0.00359 0.00284 36.3 0.000 0.000 0.000 +2448814.5 -1.28306 4.02090 -26571440.5 0.00418 0.00254 23.2 0.000 0.000 0.000 +2448815.5 -1.27439 4.04561 -26572300.6 0.00428 0.00263 23.6 0.000 0.000 0.000 +2448816.5 -1.26708 4.06839 -26573142.8 0.00409 0.00243 18.2 0.000 0.000 0.000 +2448817.5 -1.26041 4.08831 -26574012.9 0.00423 0.00245 16.9 0.000 0.000 0.000 +2448818.5 -1.25298 4.10552 -26574962.3 0.00427 0.00287 16.3 0.000 0.000 0.000 +2448819.5 -1.24167 4.12196 -26576036.4 0.00421 0.00272 16.1 0.000 0.000 0.000 +2448820.5 -1.22448 4.13985 -26577250.4 0.00330 0.00295 18.5 0.000 0.000 0.000 +2448821.5 -1.20213 4.16016 -26578591.1 0.00226 0.00278 12.4 0.000 0.000 0.000 +2448822.5 -1.17637 4.18344 -26580036.4 0.00206 0.00237 10.4 0.000 0.000 0.000 +2448823.5 -1.14938 4.20858 -26581553.9 0.00173 0.00237 9.2 0.000 0.000 0.000 +2448824.5 -1.12315 4.23396 -26583103.1 0.00197 0.00249 8.7 0.000 0.000 0.000 +2448825.5 -1.09984 4.25808 -26584643.1 0.00206 0.00194 8.6 0.000 0.000 0.000 +2448826.5 -1.08009 4.28027 -26586133.4 0.00211 0.00198 7.3 0.000 0.000 0.000 +2448827.5 -1.06053 4.30134 -26587544.2 0.00218 0.00178 7.3 0.000 0.000 0.000 +2448828.5 -1.03948 4.32148 -26588865.1 0.00217 0.00185 7.6 0.000 0.000 0.000 +2448829.5 -1.01781 4.34083 -26590116.9 0.00263 0.00173 11.1 0.000 0.000 0.000 +2448830.5 -0.99727 4.35952 -26591353.7 0.00271 0.00263 9.7 0.000 0.000 0.000 +2448831.5 -0.97876 4.37749 -26592640.9 0.00263 0.00254 9.7 0.000 0.000 0.000 +2448832.5 -0.96152 4.39507 -26594058.6 0.00241 0.00222 8.7 0.000 0.000 0.000 +2448833.5 -0.94316 4.41364 -26595690.2 0.00238 0.00225 8.3 0.000 0.000 0.000 +2448834.5 -0.92305 4.43467 -26597560.5 0.00233 0.00221 7.5 0.000 0.000 0.000 +2448835.5 -0.90200 4.45757 -26599618.9 0.00324 0.00240 13.1 0.000 0.000 0.000 +2448836.5 -0.88059 4.48106 -26601759.8 0.00285 0.00237 12.5 0.000 0.000 0.000 +2448837.5 -0.85872 4.50378 -26603855.6 0.00284 0.00166 12.7 0.000 0.000 0.000 +2448838.5 -0.83732 4.52481 -26605802.4 0.00283 0.00180 12.7 0.000 0.000 0.000 +2448839.5 -0.81805 4.54494 -26607541.8 0.00278 0.00184 12.5 0.000 0.000 0.000 +2448840.5 -0.79980 4.56489 -26609100.0 0.00270 0.00182 13.5 0.000 0.000 0.000 +2448841.5 -0.78116 4.58552 -26610493.4 0.00178 0.00144 9.7 0.000 0.000 0.000 +2448842.5 -0.76185 4.60793 -26611766.5 0.00201 0.00172 11.5 0.000 0.000 0.000 +2448843.5 -0.74267 4.63250 -26612968.7 0.00207 0.00186 13.1 0.000 0.000 0.000 +2448844.5 -0.72292 4.65842 -26614156.9 0.00219 0.00210 15.7 0.000 0.000 0.000 +2448845.5 -0.70218 4.68459 -26615395.4 0.00222 0.00207 16.1 0.000 0.000 0.000 +2448846.5 -0.68238 4.70980 -26616791.6 0.00235 0.00240 17.8 0.000 0.000 0.000 +2448847.5 -0.66374 4.73243 -26618383.7 0.00236 0.00232 18.1 0.000 0.000 0.000 +2448848.5 -0.64443 4.75225 -26620139.0 0.00200 0.00290 20.1 0.000 0.000 0.000 +2448849.5 -0.62310 4.77006 -26621998.6 0.00208 0.00358 15.7 0.000 0.000 0.000 +2448850.5 -0.59982 4.78694 -26623908.9 0.00234 0.00329 16.2 0.000 0.000 0.000 +2448851.5 -0.57451 4.80372 -26625820.1 0.00241 0.00313 18.5 0.000 0.000 0.000 +2448852.5 -0.54707 4.82038 -26627688.1 0.00224 0.00313 16.3 0.000 0.000 0.000 +2448853.5 -0.51787 4.83617 -26629486.5 0.00200 0.00302 14.8 0.000 0.000 0.000 +2448854.5 -0.48760 4.85080 -26631210.0 0.00190 0.00241 21.3 0.000 0.000 0.000 +2448855.5 -0.45641 4.86409 -26632856.1 0.00274 0.00200 28.9 0.000 0.000 0.000 +2448856.5 -0.42476 4.87601 -26634444.3 0.00354 0.00395 31.4 0.000 0.000 0.000 +2448857.5 -0.39331 4.88707 -26636023.4 0.00484 0.00510 31.6 0.000 0.000 0.000 +2448858.5 -0.36229 4.89806 -26637665.5 0.00463 0.00498 26.2 0.000 0.000 0.000 +2448859.5 -0.33123 4.91003 -26639450.5 0.00462 0.00495 26.8 0.000 0.000 0.000 +2448860.5 -0.30013 4.92382 -26641458.1 0.00388 0.00551 19.9 0.000 0.000 0.000 +2448861.5 -0.26934 4.93897 -26643750.3 0.00302 0.00507 17.9 0.000 0.000 0.000 +2448862.5 -0.23880 4.95511 -26646313.9 0.00203 0.00344 13.6 0.000 0.000 0.000 +2448863.5 -0.20835 4.97220 -26649039.8 0.00309 0.00425 12.4 0.000 0.000 0.000 +2448864.5 -0.17880 4.98959 -26651761.2 0.00323 0.00391 12.7 0.000 0.000 0.000 +2448865.5 -0.15169 5.00511 -26654306.5 0.00345 0.00399 13.4 0.000 0.000 0.000 +2448866.5 -0.12863 5.01628 -26656554.3 0.00353 0.00449 13.7 0.000 0.000 0.000 +2448867.5 -0.10943 5.02138 -26658477.4 0.00387 0.00438 14.2 0.000 0.000 0.000 +2448868.5 -0.08916 5.02196 -26660137.9 0.00416 0.00473 16.0 0.000 0.000 0.000 +2448869.5 -0.06726 5.02153 -26661614.4 0.00354 0.00546 19.1 0.000 0.000 0.000 +2448870.5 -0.04431 5.02308 -26662991.5 0.00335 0.00385 14.6 0.000 0.000 0.000 +2448871.5 -0.02005 5.02749 -26664362.2 0.00303 0.00447 16.8 0.000 0.000 0.000 +2448872.5 0.00536 5.03427 -26665808.2 0.00303 0.00390 16.7 0.000 0.000 0.000 +2448873.5 0.03082 5.04197 -26667392.1 0.00287 0.00318 15.8 0.000 0.000 0.000 +2448874.5 0.05499 5.04908 -26669147.4 0.00276 0.00274 16.3 0.000 0.000 0.000 +2448875.5 0.07837 5.05493 -26671060.7 0.00433 0.00346 15.8 0.000 0.000 0.000 +2448876.5 0.10121 5.05925 -26673098.3 0.00561 0.00397 15.7 0.000 0.000 0.000 +2448877.5 0.12386 5.06184 -26675213.3 0.00451 0.00560 10.0 0.000 0.000 0.000 +2448878.5 0.14732 5.06306 -26677351.4 0.00446 0.00563 8.4 0.000 0.000 0.000 +2448879.5 0.17145 5.06403 -26679453.2 0.00428 0.00554 8.3 0.000 0.000 0.000 +2448880.5 0.19580 5.06630 -26681464.1 0.00390 0.00547 5.6 0.000 0.000 0.000 +2448881.5 0.22066 5.07026 -26683350.2 0.00267 0.00505 7.2 0.000 0.000 0.000 +2448882.5 0.24614 5.07398 -26685115.9 0.00160 0.00515 7.8 0.000 0.000 0.000 +2448883.5 0.27162 5.07593 -26686791.5 0.00188 0.00351 9.0 0.000 0.000 0.000 +2448884.5 0.29646 5.07535 -26688418.2 0.00331 0.00414 11.4 0.000 0.000 0.000 +2448885.5 0.32026 5.07309 -26690053.2 0.00308 0.00330 11.3 0.000 0.000 0.000 +2448886.5 0.34261 5.07053 -26691766.3 0.00321 0.00336 10.7 0.000 0.000 0.000 +2448887.5 0.36296 5.06923 -26693622.8 0.00345 0.00324 11.1 0.000 0.000 0.000 +2448888.5 0.38170 5.06966 -26695684.8 0.00346 0.00314 11.0 0.000 0.000 0.000 +2448889.5 0.40121 5.07011 -26698004.6 0.00340 0.00325 11.0 0.000 0.000 0.000 +2448890.5 0.42197 5.06999 -26700542.1 0.00265 0.00320 9.6 0.000 0.000 0.000 +2448891.5 0.44362 5.06901 -26703192.0 0.00247 0.00330 8.7 0.000 0.000 0.000 +2448892.5 0.46554 5.06633 -26705817.3 0.00269 0.00420 7.8 0.000 0.000 0.000 +2448893.5 0.48730 5.06135 -26708301.5 0.00269 0.00405 8.8 0.000 0.000 0.000 +2448894.5 0.50961 5.05446 -26710584.5 0.00271 0.00409 9.6 0.000 0.000 0.000 +2448895.5 0.53315 5.04709 -26712664.0 0.00280 0.00387 9.5 0.000 0.000 0.000 +2448896.5 0.55715 5.04063 -26714579.0 0.00242 0.00345 8.6 0.000 0.000 0.000 +2448897.5 0.58141 5.03598 -26716391.2 0.00308 0.00361 10.4 0.000 0.000 0.000 +2448898.5 0.60631 5.03328 -26718165.2 0.00308 0.00368 8.5 0.000 0.000 0.000 +2448899.5 0.63257 5.03147 -26719972.8 0.00303 0.00389 7.2 0.000 0.000 0.000 +2448900.5 0.66075 5.02969 -26721872.3 0.00305 0.00382 9.6 0.000 0.000 0.000 +2448901.5 0.69078 5.02771 -26723903.8 0.00326 0.00348 9.0 0.000 0.000 0.000 +2448902.5 0.72158 5.02527 -26726087.4 0.00340 0.00291 9.6 0.000 0.000 0.000 +2448903.5 0.75187 5.02167 -26728412.2 0.00329 0.00357 9.9 0.000 0.000 0.000 +2448904.5 0.78034 5.01637 -26730845.5 0.00336 0.00414 13.3 0.000 0.000 0.000 +2448905.5 0.80615 5.00893 -26733338.4 0.00333 0.00368 8.5 0.000 0.000 0.000 +2448906.5 0.82961 4.99923 -26735828.6 0.00227 0.00273 5.1 0.000 0.000 0.000 +2448907.5 0.85205 4.98783 -26738256.3 0.00227 0.00273 5.2 0.000 0.000 0.000 +2448908.5 0.87558 4.97632 -26740573.7 0.00215 0.00255 4.5 0.000 0.000 0.000 +2448909.5 0.90161 4.96671 -26742764.3 0.00191 0.00206 4.8 0.000 0.000 0.000 +2448910.5 0.92893 4.96016 -26744864.4 0.00181 0.00161 5.2 0.000 0.000 0.000 +2448911.5 0.95548 4.95574 -26746908.2 0.00153 0.00176 6.4 0.000 0.000 0.000 +2448912.5 0.97983 4.95219 -26748950.0 0.00186 0.00184 7.4 0.000 0.000 0.000 +2448913.5 1.00201 4.94831 -26751079.0 0.00242 0.00177 10.6 0.000 0.000 0.000 +2448914.5 1.02266 4.94304 -26753383.2 0.00251 0.00198 10.8 0.000 0.000 0.000 +2448915.5 1.04255 4.93560 -26755926.5 0.00250 0.00242 10.5 0.000 0.000 0.000 +2448916.5 1.06245 4.92588 -26758744.2 0.00257 0.00269 10.4 0.000 0.000 0.000 +2448917.5 1.08373 4.91494 -26761810.1 0.00293 0.00269 10.6 0.000 0.000 0.000 +2448918.5 1.10656 4.90436 -26765005.1 0.00297 0.00304 13.4 0.000 0.000 0.000 +2448919.5 1.13008 4.89512 -26768176.1 0.00304 0.00324 11.8 0.000 0.000 0.000 +2448920.5 1.15267 4.88692 -26771199.0 0.00322 0.00379 10.1 0.000 0.000 0.000 +2448921.5 1.17321 4.87867 -26773990.0 0.00301 0.00331 10.5 0.000 0.000 0.000 +2448922.5 1.19089 4.86915 -26776518.2 0.00291 0.00282 9.9 0.000 0.000 0.000 +2448923.5 1.20568 4.85775 -26778818.7 0.00258 0.00302 11.3 0.000 0.000 0.000 +2448924.5 1.21960 4.84479 -26780974.4 0.00290 0.00303 11.9 0.000 0.000 0.000 +2448925.5 1.23481 4.83075 -26783072.1 0.00259 0.00359 13.5 0.000 0.000 0.000 +2448926.5 1.25291 4.81599 -26785185.9 0.00347 0.00326 11.0 0.000 0.000 0.000 +2448927.5 1.27432 4.80101 -26787367.8 0.00345 0.00359 11.7 0.000 0.000 0.000 +2448928.5 1.29760 4.78608 -26789626.1 0.00330 0.00348 13.1 0.000 0.000 0.000 +2448929.5 1.32042 4.77212 -26791941.1 0.00301 0.00348 11.3 0.000 0.000 0.000 +2448930.5 1.34058 4.75990 -26794297.0 0.00269 0.00330 9.6 0.000 0.000 0.000 +2448931.5 1.35754 4.74835 -26796717.3 0.00275 0.00299 9.6 0.000 0.000 0.000 +2448932.5 1.37188 4.73595 -26799211.0 0.00181 0.00284 9.5 0.000 0.000 0.000 +2448933.5 1.38563 4.72189 -26801723.4 0.00217 0.00266 8.5 0.000 0.000 0.000 +2448934.5 1.40037 4.70628 -26804200.4 0.00204 0.00214 8.4 0.000 0.000 0.000 +2448935.5 1.41661 4.68946 -26806598.7 0.00290 0.00222 11.2 0.000 0.000 0.000 +2448936.5 1.43399 4.67184 -26808888.3 0.00321 0.00250 13.9 0.000 0.000 0.000 +2448937.5 1.45239 4.65406 -26811070.6 0.00299 0.00244 13.3 0.000 0.000 0.000 +2448938.5 1.47235 4.63714 -26813178.1 0.00334 0.00244 13.7 0.000 0.000 0.000 +2448939.5 1.49332 4.62164 -26815255.6 0.00353 0.00264 20.2 0.000 0.000 0.000 +2448940.5 1.51483 4.60762 -26817375.2 0.00315 0.00272 15.6 0.000 0.000 0.000 +2448941.5 1.53712 4.59459 -26819619.5 0.00336 0.00290 14.6 0.000 0.000 0.000 +2448942.5 1.56017 4.58210 -26822064.6 0.00267 0.00235 10.6 0.000 0.000 0.000 +2448943.5 1.58301 4.57007 -26824745.1 0.00331 0.00228 14.3 0.000 0.000 0.000 +2448944.5 1.60504 4.55843 -26827642.0 0.00250 0.00207 13.4 0.000 0.000 0.000 +2448945.5 1.62687 4.54670 -26830673.0 0.00270 0.00216 12.8 0.000 0.000 0.000 +2448946.5 1.64805 4.53419 -26833721.4 0.00328 0.00210 16.0 0.000 0.000 0.000 +2448947.5 1.66730 4.51991 -26836669.2 0.00318 0.00244 12.4 0.000 0.000 0.000 +2448948.5 1.68376 4.50317 -26839437.1 0.00314 0.00256 11.8 0.000 0.000 0.000 +2448949.5 1.69616 4.48429 -26841987.0 0.00324 0.00255 12.0 0.000 0.000 0.000 +2448950.5 1.70433 4.46381 -26844326.8 0.00294 0.00247 4.4 0.000 0.000 0.000 +2448951.5 1.70933 4.44198 -26846508.0 0.00326 0.00286 5.6 0.000 0.000 0.000 +2448952.5 1.71353 4.41890 -26848608.0 0.00285 0.00279 6.1 0.000 0.000 0.000 +2448953.5 1.71895 4.39501 -26850702.8 0.00348 0.00265 9.7 0.000 0.000 0.000 +2448954.5 1.72610 4.37100 -26852848.8 0.00311 0.00229 8.1 0.000 0.000 0.000 +2448955.5 1.73443 4.34748 -26855080.0 0.00420 0.00254 14.9 0.000 0.000 0.000 +2448956.5 1.74312 4.32486 -26857412.1 0.00399 0.00291 14.9 0.000 0.000 0.000 +2448957.5 1.75026 4.30431 -26859837.0 0.00426 0.00329 15.8 0.000 0.000 0.000 +2448958.5 1.75811 4.28384 -26862366.4 0.00437 0.00331 15.8 0.000 0.000 0.000 +2448959.5 1.76713 4.26443 -26864999.3 0.00414 0.00331 13.6 0.000 0.000 0.000 +2448960.5 1.77908 4.24617 -26867700.9 0.00457 0.00360 17.2 0.000 0.000 0.000 +2448961.5 1.79163 4.22850 -26870401.9 0.00406 0.00335 13.3 0.000 0.000 0.000 +2448962.5 1.80344 4.21031 -26873058.3 0.00356 0.00320 10.1 0.000 0.000 0.000 +2448963.5 1.81409 4.19063 -26875640.4 0.00358 0.00275 9.7 0.000 0.000 0.000 +2448964.5 1.82326 4.16996 -26878115.8 0.00332 0.00277 9.0 0.000 0.000 0.000 +2448965.5 1.83136 4.14911 -26880488.0 0.00320 0.00283 8.9 0.000 0.000 0.000 +2448966.5 1.83977 4.12796 -26882806.1 0.00322 0.00254 10.1 0.000 0.000 0.000 +2448967.5 1.85016 4.10668 -26885139.2 0.00334 0.00234 15.4 0.000 0.000 0.000 +2448968.5 1.86293 4.08575 -26887565.3 0.00267 0.00296 9.8 0.000 0.000 0.000 +2448969.5 1.87674 4.06545 -26890150.6 0.00286 0.00273 10.4 0.000 0.000 0.000 +2448970.5 1.88970 4.04563 -26892922.4 0.00243 0.00264 9.7 0.000 0.000 0.000 +2448971.5 1.90058 4.02580 -26895859.0 0.00223 0.00254 9.7 0.000 0.000 0.000 +2448972.5 1.90897 4.00519 -26898895.7 0.00233 0.00243 10.4 0.000 0.000 0.000 +2448973.5 1.91643 3.98328 -26901925.5 0.00264 0.00254 11.9 0.000 0.000 0.000 +2448974.5 1.92366 3.95989 -26904841.8 0.00295 0.00268 16.7 0.000 0.000 0.000 +2448975.5 1.93041 3.93508 -26907563.4 0.00313 0.00203 14.4 0.000 0.000 0.000 +2448976.5 1.93622 3.90910 -26910048.6 0.00258 0.00276 13.7 0.000 0.000 0.000 +2448977.5 1.94136 3.88243 -26912301.7 0.00265 0.00275 14.2 0.000 0.000 0.000 +2448978.5 1.94729 3.85581 -26914371.4 0.00266 0.00272 11.4 0.000 0.000 0.000 +2448979.5 1.95540 3.82978 -26916339.3 0.00224 0.00270 10.0 0.000 0.000 0.000 +2448980.5 1.96553 3.80410 -26918298.5 0.00235 0.00261 7.8 0.000 0.000 0.000 +2448981.5 1.97803 3.77851 -26920324.2 0.00240 0.00272 10.6 0.000 0.000 0.000 +2448982.5 1.99341 3.75302 -26922467.2 0.00187 0.00213 7.5 0.000 0.000 0.000 +2448983.5 2.01154 3.72780 -26924754.4 0.00152 0.00191 9.0 0.000 0.000 0.000 +2448984.5 2.03112 3.70299 -26927189.6 0.00172 0.00214 10.0 0.000 0.000 0.000 +2448985.5 2.04976 3.67852 -26929756.1 0.00173 0.00218 10.4 0.000 0.000 0.000 +2448986.5 2.06501 3.65346 -26932419.4 0.00146 0.00225 10.6 0.000 0.000 0.000 +2448987.5 2.07533 3.62619 -26935128.0 0.00152 0.00242 10.3 0.000 0.000 0.000 +2448988.5 2.08096 3.59663 -26937841.4 0.00172 0.00240 14.1 0.000 0.000 0.000 +2448989.5 2.08333 3.56577 -26940524.6 0.00166 0.00241 10.8 0.000 0.000 0.000 +2448990.5 2.08428 3.53464 -26943148.4 0.00197 0.00252 12.4 0.000 0.000 0.000 +2448991.5 2.08549 3.50411 -26945696.1 0.00207 0.00251 12.0 0.000 0.000 0.000 +2448992.5 2.08823 3.47446 -26948170.2 0.00289 0.00241 17.0 0.000 0.000 0.000 +2448993.5 2.09323 3.44545 -26950595.5 0.00313 0.00237 16.9 0.000 0.000 0.000 +2448994.5 2.10061 3.41710 -26953003.0 0.00312 0.00223 15.8 0.000 0.000 0.000 +2448995.5 2.10969 3.38940 -26955443.9 0.00323 0.00221 18.7 0.000 0.000 0.000 +2448996.5 2.11951 3.36249 -26957977.6 0.00299 0.00240 14.9 0.000 0.000 0.000 +2448997.5 2.12947 3.33656 -26960665.2 0.00365 0.00276 15.8 0.000 0.000 0.000 +2448998.5 2.13857 3.31169 -26963519.0 0.00354 0.00273 22.7 0.000 0.000 0.000 +2448999.5 2.14586 3.28799 -26966491.1 0.00225 0.00464 19.9 0.000 0.000 0.000 +2449000.5 2.15034 3.26512 -26969492.2 0.00204 0.00462 19.8 0.000 0.000 0.000 +2449001.5 2.15128 3.24198 -26972420.7 0.00206 0.00462 19.6 0.000 0.000 0.000 +2449002.5 2.14880 3.21752 -26975193.8 0.00303 0.00557 29.3 0.000 0.000 0.000 +2449003.5 2.14363 3.19106 -26977770.9 0.00289 0.00435 19.0 0.000 0.000 0.000 +2449004.5 2.13717 3.16321 -26980148.8 0.00202 0.00317 5.6 0.000 0.000 0.000 +2449005.5 2.13086 3.13469 -26982358.6 0.00208 0.00306 5.5 0.000 0.000 0.000 +2449006.5 2.12541 3.10595 -26984450.5 0.00206 0.00242 5.3 0.000 0.000 0.000 +2449007.5 2.12082 3.07705 -26986489.8 0.00206 0.00254 5.6 0.000 0.000 0.000 +2449008.5 2.11827 3.04837 -26988556.4 0.00182 0.00258 5.9 0.000 0.000 0.000 +2449009.5 2.11800 3.02104 -26990700.6 0.00133 0.00223 6.6 0.000 0.000 0.000 +2449010.5 2.11901 2.99585 -26992949.8 0.00142 0.00282 8.3 0.000 0.000 0.000 +2449011.5 2.12012 2.97327 -26995320.1 0.00240 0.00313 14.1 0.000 0.000 0.000 +2449012.5 2.12046 2.95294 -26997813.5 0.00228 0.00312 14.0 0.000 0.000 0.000 +2449013.5 2.11939 2.93351 -27000418.8 0.00245 0.00316 13.8 0.000 0.000 0.000 +2449014.5 2.11653 2.91333 -27003116.9 0.00254 0.00305 15.8 0.000 0.000 0.000 +2449015.5 2.11206 2.89170 -27005858.7 0.00267 0.00302 15.4 0.000 0.000 0.000 +2449016.5 2.10514 2.86858 -27008579.8 0.00316 0.00326 20.0 0.000 0.000 0.000 +2449017.5 2.09537 2.84389 -27011236.9 0.00364 0.00254 17.3 0.000 0.000 0.000 +2449018.5 2.08296 2.81782 -27013802.0 0.00343 0.00275 15.8 0.000 0.000 0.000 +2449019.5 2.06943 2.79038 -27016268.7 0.00355 0.00271 17.7 0.000 0.000 0.000 +2449020.5 2.05792 2.76176 -27018653.2 0.00341 0.00271 15.1 0.000 0.000 0.000 +2449021.5 2.05174 2.73287 -27021006.0 0.00326 0.00285 15.0 0.000 0.000 0.000 +2449022.5 2.05083 2.70516 -27023410.8 0.00303 0.00277 15.0 0.000 0.000 0.000 +2449023.5 2.05312 2.67938 -27025959.8 0.00354 0.00288 18.6 0.000 0.000 0.000 +2449024.5 2.05576 2.65567 -27028732.6 0.00251 0.00266 11.2 0.000 0.000 0.000 +2449025.5 2.05630 2.63332 -27031762.2 0.00216 0.00278 12.7 0.000 0.000 0.000 +2449026.5 2.05302 2.61119 -27035012.3 0.00200 0.00271 12.2 0.000 0.000 0.000 +2449027.5 2.04595 2.58809 -27038380.1 0.00244 0.00243 13.3 0.000 0.000 0.000 +2449028.5 2.03681 2.56331 -27041731.3 0.00228 0.00213 10.0 0.000 0.000 0.000 +2449029.5 2.02663 2.53778 -27044927.4 0.00220 0.00218 9.9 0.000 0.000 0.000 +2449030.5 2.01518 2.51210 -27047868.2 0.00226 0.00215 11.2 0.000 0.000 0.000 +2449031.5 2.00287 2.48603 -27050524.1 0.00208 0.00190 10.5 0.000 0.000 0.000 +2449032.5 1.99217 2.45923 -27052942.0 0.00256 0.00186 9.2 0.000 0.000 0.000 +2449033.5 1.98319 2.43239 -27055206.2 0.00267 0.00178 9.2 0.000 0.000 0.000 +2449034.5 1.97594 2.40605 -27057408.6 0.00252 0.00178 8.1 0.000 0.000 0.000 +2449035.5 1.97012 2.38081 -27059637.1 0.00271 0.00256 11.5 0.000 0.000 0.000 +2449036.5 1.96483 2.35773 -27061948.4 0.00298 0.00255 11.4 0.000 0.000 0.000 +2449037.5 1.95788 2.33742 -27064384.3 0.00367 0.00297 15.1 0.000 0.000 0.000 +2449038.5 1.94705 2.32015 -27066965.4 0.00374 0.00347 12.4 0.000 0.000 0.000 +2449039.5 1.93166 2.30526 -27069676.7 0.00290 0.00308 10.2 0.000 0.000 0.000 +2449040.5 1.91223 2.29107 -27072479.4 0.00291 0.00313 9.7 0.000 0.000 0.000 +2449041.5 1.89007 2.27556 -27075317.5 0.00232 0.00294 9.1 0.000 0.000 0.000 +2449042.5 1.86692 2.25720 -27078131.9 0.00206 0.00282 8.7 0.000 0.000 0.000 +2449043.5 1.84399 2.23653 -27080878.8 0.00205 0.00279 5.9 0.000 0.000 0.000 +2449044.5 1.82216 2.21466 -27083524.9 0.00195 0.00305 8.1 0.000 0.000 0.000 +2449045.5 1.80173 2.19270 -27086049.7 0.00174 0.00209 5.6 0.000 0.000 0.000 +2449046.5 1.78226 2.17134 -27088449.1 0.00206 0.00197 5.9 0.000 0.000 0.000 +2449047.5 1.76335 2.15109 -27090737.0 0.00203 0.00201 8.5 0.000 0.000 0.000 +2449048.5 1.74491 2.13230 -27092949.4 0.00224 0.00182 10.4 0.000 0.000 0.000 +2449049.5 1.72739 2.11521 -27095152.0 0.00217 0.00180 10.4 0.000 0.000 0.000 +2449050.5 1.71174 2.09935 -27097437.1 0.00225 0.00175 10.4 0.000 0.000 0.000 +2449051.5 1.69780 2.08409 -27099891.2 0.00277 0.00166 13.3 0.000 0.000 0.000 +2449052.5 1.68477 2.06880 -27102574.3 0.00261 0.00176 14.2 0.000 0.000 0.000 +2449053.5 1.67153 2.05320 -27105510.0 0.00275 0.00209 10.8 0.000 0.000 0.000 +2449054.5 1.65780 2.03725 -27108658.4 0.00279 0.00207 13.1 0.000 0.000 0.000 +2449055.5 1.64523 2.02109 -27111923.2 0.00289 0.00212 10.2 0.000 0.000 0.000 +2449056.5 1.63606 2.00509 -27115183.8 0.00289 0.00211 10.6 0.000 0.000 0.000 +2449057.5 1.63053 1.98966 -27118321.0 0.00260 0.00204 12.8 0.000 0.000 0.000 +2449058.5 1.62498 1.97482 -27121264.6 0.00258 0.00197 12.8 0.000 0.000 0.000 +2449059.5 1.61546 1.96031 -27124009.6 0.00294 0.00192 17.8 0.000 0.000 0.000 +2449060.5 1.60054 1.94601 -27126606.5 0.00258 0.00306 17.9 0.000 0.000 0.000 +2449061.5 1.58073 1.93155 -27129123.4 0.00259 0.00304 17.7 0.000 0.000 0.000 +2449062.5 1.55762 1.91685 -27131618.6 0.00272 0.00310 17.1 0.000 0.000 0.000 +2449063.5 1.53310 1.90218 -27134141.7 0.00283 0.00311 15.9 0.000 0.000 0.000 +2449064.5 1.50863 1.88771 -27136727.7 0.00286 0.00311 16.3 0.000 0.000 0.000 +2449065.5 1.48548 1.87334 -27139397.4 0.00274 0.00331 14.2 0.000 0.000 0.000 +2449066.5 1.46424 1.85898 -27142155.8 0.00303 0.00328 12.1 0.000 0.000 0.000 +2449067.5 1.44480 1.84474 -27144990.6 0.00329 0.00195 14.4 0.000 0.000 0.000 +2449068.5 1.42613 1.83072 -27147873.2 0.00254 0.00178 7.7 0.000 0.000 0.000 +2449069.5 1.40686 1.81698 -27150764.2 0.00245 0.00176 8.0 0.000 0.000 0.000 +2449070.5 1.38552 1.80365 -27153625.1 0.00249 0.00178 7.8 0.000 0.000 0.000 +2449071.5 1.36092 1.79123 -27156411.0 0.00258 0.00178 8.1 0.000 0.000 0.000 +2449072.5 1.33202 1.77928 -27159076.3 0.00213 0.00189 8.6 0.000 0.000 0.000 +2449073.5 1.30066 1.76685 -27161616.5 0.00193 0.00221 7.1 0.000 0.000 0.000 +2449074.5 1.26856 1.75381 -27164041.5 0.00190 0.00224 7.0 0.000 0.000 0.000 +2449075.5 1.23697 1.74046 -27166377.3 0.00206 0.00268 13.4 0.000 0.000 0.000 +2449076.5 1.20710 1.72750 -27168667.9 0.00168 0.00260 13.5 0.000 0.000 0.000 +2449077.5 1.17967 1.71587 -27170982.4 0.00182 0.00256 12.9 0.000 0.000 0.000 +2449078.5 1.15363 1.70624 -27173413.4 0.00161 0.00249 11.3 0.000 0.000 0.000 +2449079.5 1.12721 1.69866 -27176042.4 0.00189 0.00226 20.4 0.000 0.000 0.000 +2449080.5 1.09887 1.69250 -27178915.3 0.00251 0.00161 18.9 0.000 0.000 0.000 +2449081.5 1.06831 1.68688 -27182024.2 0.00258 0.00135 15.5 0.000 0.000 0.000 +2449082.5 1.03644 1.68123 -27185302.1 0.00253 0.00178 16.0 0.000 0.000 0.000 +2449083.5 1.00399 1.67559 -27188642.1 0.00243 0.00195 16.0 0.000 0.000 0.000 +2449084.5 0.97092 1.67015 -27191933.8 0.00266 0.00196 15.9 0.000 0.000 0.000 +2449085.5 0.93772 1.66476 -27195078.9 0.00272 0.00200 14.3 0.000 0.000 0.000 +2449086.5 0.90519 1.65940 -27198033.4 0.00223 0.00225 19.8 0.000 0.000 0.000 +2449087.5 0.87405 1.65450 -27200817.6 0.00279 0.00265 15.8 0.000 0.000 0.000 +2449088.5 0.84501 1.65047 -27203491.8 0.00288 0.00277 16.5 0.000 0.000 0.000 +2449089.5 0.81882 1.64765 -27206123.7 0.00304 0.00212 20.8 0.000 0.000 0.000 +2449090.5 0.79593 1.64599 -27208762.9 0.00297 0.00244 19.5 0.000 0.000 0.000 +2449091.5 0.77655 1.64517 -27211455.9 0.00287 0.00247 19.4 0.000 0.000 0.000 +2449092.5 0.75939 1.64448 -27214249.2 0.00287 0.00236 19.5 0.000 0.000 0.000 +2449093.5 0.74199 1.64327 -27217134.3 0.00303 0.00202 25.0 0.000 0.000 0.000 +2449094.5 0.72266 1.64146 -27220078.6 0.00233 0.00208 14.2 0.000 0.000 0.000 +2449095.5 0.70069 1.63968 -27223048.1 0.00252 0.00226 9.6 0.000 0.000 0.000 +2449096.5 0.67580 1.63870 -27226004.8 0.00203 0.00248 14.6 0.000 0.000 0.000 +2449097.5 0.64893 1.63902 -27228909.1 0.00208 0.00265 15.5 0.000 0.000 0.000 +2449098.5 0.62171 1.64062 -27231742.2 0.00234 0.00266 15.6 0.000 0.000 0.000 +2449099.5 0.59462 1.64230 -27234521.2 0.00208 0.00266 15.9 0.000 0.000 0.000 +2449100.5 0.56717 1.64307 -27237253.8 0.00247 0.00279 24.8 0.000 0.000 0.000 +2449101.5 0.53919 1.64265 -27239912.5 0.00269 0.00247 21.2 0.000 0.000 0.000 +2449102.5 0.51137 1.64174 -27242499.5 0.00294 0.00262 21.8 0.000 0.000 0.000 +2449103.5 0.48470 1.64118 -27245043.6 0.00275 0.00202 15.3 0.000 0.000 0.000 +2449104.5 0.45985 1.64163 -27247587.1 0.00262 0.00183 14.9 0.000 0.000 0.000 +2449105.5 0.43730 1.64351 -27250213.2 0.00260 0.00186 14.8 0.000 0.000 0.000 +2449106.5 0.41689 1.64681 -27253030.2 0.00279 0.00190 15.1 0.000 0.000 0.000 +2449107.5 0.39813 1.65089 -27256094.4 0.00278 0.00192 15.1 0.000 0.000 0.000 +2449108.5 0.38064 1.65501 -27259382.7 0.00254 0.00180 12.9 0.000 0.000 0.000 +2449109.5 0.36432 1.65887 -27262825.3 0.00228 0.00096 9.5 0.000 0.000 0.000 +2449110.5 0.34839 1.66216 -27266309.7 0.00282 0.00124 12.6 0.000 0.000 0.000 +2449111.5 0.33145 1.66470 -27269700.7 0.00329 0.00202 15.6 0.000 0.000 0.000 +2449112.5 0.31281 1.66635 -27272881.8 0.00322 0.00197 15.2 0.000 0.000 0.000 +2449113.5 0.29380 1.66694 -27275803.1 0.00322 0.00199 15.1 0.000 0.000 0.000 +2449114.5 0.27447 1.66625 -27278472.8 0.00315 0.00212 15.2 0.000 0.000 0.000 +2449115.5 0.25485 1.66490 -27280958.6 0.00327 0.00238 16.7 0.000 0.000 0.000 +2449116.5 0.23469 1.66372 -27283345.0 0.00292 0.00262 17.8 0.000 0.000 0.000 +2449117.5 0.21486 1.66348 -27285706.2 0.00244 0.00218 14.4 0.000 0.000 0.000 +2449118.5 0.19672 1.66478 -27288091.3 0.00179 0.00185 10.6 0.000 0.000 0.000 +2449119.5 0.18056 1.66765 -27290514.8 0.00181 0.00181 10.6 0.000 0.000 0.000 +2449120.5 0.16561 1.67207 -27292970.5 0.00192 0.00169 10.8 0.000 0.000 0.000 +2449121.5 0.15182 1.67781 -27295471.4 0.00186 0.00158 9.2 0.000 0.000 0.000 +2449122.5 0.13902 1.68456 -27298026.7 0.00185 0.00164 8.7 0.000 0.000 0.000 +2449123.5 0.12617 1.69209 -27300616.1 0.00192 0.00153 8.6 0.000 0.000 0.000 +2449124.5 0.11297 1.70018 -27303206.8 0.00270 0.00179 12.7 0.000 0.000 0.000 +2449125.5 0.10024 1.70867 -27305762.1 0.00263 0.00161 9.4 0.000 0.000 0.000 +2449126.5 0.08864 1.71760 -27308249.5 0.00260 0.00138 8.3 0.000 0.000 0.000 +2449127.5 0.07704 1.72685 -27310637.7 0.00272 0.00138 7.4 0.000 0.000 0.000 +2449128.5 0.06390 1.73621 -27312912.5 0.00306 0.00145 7.4 0.000 0.000 0.000 +2449129.5 0.04864 1.74545 -27315090.9 0.00323 0.00121 8.5 0.000 0.000 0.000 +2449130.5 0.03082 1.75451 -27317210.9 0.00307 0.00147 8.3 0.000 0.000 0.000 +2449131.5 0.00903 1.76280 -27319335.1 0.00288 0.00158 5.1 0.000 0.000 0.000 +2449132.5 -0.01641 1.76984 -27321535.6 0.00293 0.00147 5.2 0.000 0.000 0.000 +2449133.5 -0.04284 1.77568 -27323875.2 0.00271 0.00173 5.8 0.000 0.000 0.000 +2449134.5 -0.06710 1.78055 -27326383.1 0.00255 0.00168 5.8 0.000 0.000 0.000 +2449135.5 -0.08762 1.78501 -27329058.9 0.00254 0.00165 9.5 0.000 0.000 0.000 +2449136.5 -0.10524 1.78951 -27331864.6 0.00279 0.00144 11.0 0.000 0.000 0.000 +2449137.5 -0.12144 1.79421 -27334726.0 0.00327 0.00164 17.6 0.000 0.000 0.000 +2449138.5 -0.13791 1.79900 -27337549.3 0.00317 0.00236 15.6 0.000 0.000 0.000 +2449139.5 -0.15555 1.80349 -27340241.6 0.00320 0.00303 14.5 0.000 0.000 0.000 +2449140.5 -0.17404 1.80737 -27342731.0 0.00327 0.00305 15.4 0.000 0.000 0.000 +2449141.5 -0.19260 1.81062 -27344985.2 0.00308 0.00313 13.1 0.000 0.000 0.000 +2449142.5 -0.21092 1.81470 -27347030.6 0.00281 0.00317 11.7 0.000 0.000 0.000 +2449143.5 -0.22919 1.82107 -27348937.4 0.00274 0.00324 12.6 0.000 0.000 0.000 +2449144.5 -0.24749 1.82961 -27350792.6 0.00361 0.00336 19.6 0.000 0.000 0.000 +2449145.5 -0.26570 1.83960 -27352674.8 0.00260 0.00245 12.2 0.000 0.000 0.000 +2449146.5 -0.28358 1.85012 -27354635.6 0.00292 0.00179 12.9 0.000 0.000 0.000 +2449147.5 -0.30084 1.86026 -27356693.4 0.00296 0.00178 13.0 0.000 0.000 0.000 +2449148.5 -0.31753 1.86944 -27358832.2 0.00290 0.00197 14.9 0.000 0.000 0.000 +2449149.5 -0.33327 1.87832 -27361040.0 0.00292 0.00194 14.8 0.000 0.000 0.000 +2449150.5 -0.34626 1.88798 -27363285.9 0.00240 0.00156 10.6 0.000 0.000 0.000 +2449151.5 -0.35676 1.89946 -27365527.0 0.00210 0.00218 16.1 0.000 0.000 0.000 +2449152.5 -0.36641 1.91304 -27367718.4 0.00172 0.00197 11.9 0.000 0.000 0.000 +2449153.5 -0.37749 1.92803 -27369819.9 0.00163 0.00205 12.2 0.000 0.000 0.000 +2449154.5 -0.39181 1.94324 -27371803.2 0.00163 0.00190 11.4 0.000 0.000 0.000 +2449155.5 -0.40903 1.95698 -27373666.8 0.00159 0.00185 11.1 0.000 0.000 0.000 +2449156.5 -0.42902 1.96867 -27375431.8 0.00146 0.00181 10.4 0.000 0.000 0.000 +2449157.5 -0.45104 1.97839 -27377128.1 0.00178 0.00239 10.1 0.000 0.000 0.000 +2449158.5 -0.47376 1.98674 -27378809.3 0.00179 0.00185 13.2 0.000 0.000 0.000 +2449159.5 -0.49598 1.99445 -27380545.2 0.00171 0.00186 13.2 0.000 0.000 0.000 +2449160.5 -0.51605 2.00224 -27382401.1 0.00202 0.00178 9.0 0.000 0.000 0.000 +2449161.5 -0.53237 2.01125 -27384417.0 0.00189 0.00146 7.6 0.000 0.000 0.000 +2449162.5 -0.54482 2.02177 -27386582.8 0.00192 0.00157 8.4 0.000 0.000 0.000 +2449163.5 -0.55476 2.03323 -27388856.4 0.00192 0.00153 8.5 0.000 0.000 0.000 +2449164.5 -0.56371 2.04495 -27391178.3 0.00190 0.00159 8.7 0.000 0.000 0.000 +2449165.5 -0.57431 2.05631 -27393470.3 0.00176 0.00149 7.5 0.000 0.000 0.000 +2449166.5 -0.58649 2.06716 -27395643.0 0.00209 0.00193 7.3 0.000 0.000 0.000 +2449167.5 -0.59926 2.07776 -27397626.6 0.00181 0.00201 7.7 0.000 0.000 0.000 +2449168.5 -0.61210 2.08862 -27399394.8 0.00200 0.00269 6.9 0.000 0.000 0.000 +2449169.5 -0.62535 2.10063 -27400978.7 0.00190 0.00264 7.9 0.000 0.000 0.000 +2449170.5 -0.63837 2.11344 -27402433.5 0.00190 0.00263 8.0 0.000 0.000 0.000 +2449171.5 -0.65024 2.12612 -27403825.6 0.00177 0.00240 6.0 0.000 0.000 0.000 +2449172.5 -0.66046 2.13810 -27405219.1 0.00087 0.00140 8.4 0.000 0.000 0.000 +2449173.5 -0.66862 2.14914 -27406660.2 0.00179 0.00198 7.9 0.000 0.000 0.000 +2449174.5 -0.67449 2.15922 -27408171.2 0.00224 0.00200 13.6 0.000 0.000 0.000 +2449175.5 -0.67849 2.16838 -27409749.4 0.00238 0.00198 14.2 0.000 0.000 0.000 +2449176.5 -0.68120 2.17687 -27411372.5 0.00234 0.00199 15.1 0.000 0.000 0.000 +2449177.5 -0.68225 2.18554 -27413006.7 0.00242 0.00195 16.3 0.000 0.000 0.000 +2449178.5 -0.68189 2.19482 -27414620.8 0.00226 0.00175 15.1 0.000 0.000 0.000 +2449179.5 -0.68127 2.20494 -27416191.4 0.00196 0.00137 15.7 0.000 0.000 0.000 +2449180.5 -0.68265 2.21613 -27417703.0 0.00183 0.00096 10.8 0.000 0.000 0.000 +2449181.5 -0.68735 2.22867 -27419149.7 0.00162 0.00095 9.3 0.000 0.000 0.000 +2449182.5 -0.69493 2.24277 -27420539.4 0.00163 0.00143 9.6 0.000 0.000 0.000 +2449183.5 -0.70390 2.25776 -27421879.5 0.00161 0.00142 9.6 0.000 0.000 0.000 +2449184.5 -0.71233 2.27344 -27423164.0 0.00161 0.00144 9.6 0.000 0.000 0.000 +2449185.5 -0.71901 2.28967 -27424416.6 0.00215 0.00177 9.9 0.000 0.000 0.000 +2449186.5 -0.72260 2.30633 -27425693.9 0.00256 0.00215 14.7 0.000 0.000 0.000 +2449187.5 -0.72473 2.32344 -27427081.5 0.00219 0.00235 10.0 0.000 0.000 0.000 +2449188.5 -0.72756 2.34087 -27428656.0 0.00216 0.00224 9.6 0.000 0.000 0.000 +2449189.5 -0.73259 2.35831 -27430461.4 0.00228 0.00201 7.4 0.000 0.000 0.000 +2449190.5 -0.73858 2.37565 -27432505.4 0.00231 0.00190 7.1 0.000 0.000 0.000 +2449191.5 -0.74428 2.39321 -27434712.6 0.00234 0.00193 8.2 0.000 0.000 0.000 +2449192.5 -0.75022 2.41039 -27436957.3 0.00150 0.00158 9.3 0.000 0.000 0.000 +2449193.5 -0.75765 2.42656 -27439117.4 0.00146 0.00135 19.0 0.000 0.000 0.000 +2449194.5 -0.76728 2.44164 -27441106.4 0.00150 0.00158 25.0 0.000 0.000 0.000 +2449195.5 -0.77875 2.45640 -27442888.5 0.00133 0.00153 17.1 0.000 0.000 0.000 +2449196.5 -0.79078 2.47207 -27444479.3 0.00129 0.00156 17.1 0.000 0.000 0.000 +2449197.5 -0.80215 2.48951 -27445942.7 0.00138 0.00159 16.6 0.000 0.000 0.000 +2449198.5 -0.81324 2.50776 -27447370.8 0.00132 0.00163 16.3 0.000 0.000 0.000 +2449199.5 -0.82463 2.52526 -27448822.5 0.00211 0.00201 15.9 0.000 0.000 0.000 +2449200.5 -0.83558 2.54228 -27450349.7 0.00233 0.00223 11.3 0.000 0.000 0.000 +2449201.5 -0.84548 2.55972 -27451985.2 0.00305 0.00259 9.6 0.000 0.000 0.000 +2449202.5 -0.85448 2.57823 -27453739.4 0.00369 0.00301 14.9 0.000 0.000 0.000 +2449203.5 -0.86357 2.59768 -27455603.6 0.00372 0.00304 14.7 0.000 0.000 0.000 +2449204.5 -0.87596 2.61748 -27457560.0 0.00376 0.00301 14.7 0.000 0.000 0.000 +2449205.5 -0.89120 2.63738 -27459567.4 0.00378 0.00271 14.6 0.000 0.000 0.000 +2449206.5 -0.90737 2.65711 -27461557.2 0.00330 0.00231 18.5 0.000 0.000 0.000 +2449207.5 -0.92250 2.67674 -27463478.3 0.00247 0.00183 23.5 0.000 0.000 0.000 +2449208.5 -0.93534 2.69663 -27465296.1 0.00225 0.00135 27.3 0.000 0.000 0.000 +2449209.5 -0.94514 2.71715 -27466990.9 0.00248 0.00134 29.1 0.000 0.000 0.000 +2449210.5 -0.95210 2.73855 -27468560.6 0.00241 0.00134 30.2 0.000 0.000 0.000 +2449211.5 -0.95773 2.76093 -27470041.9 0.00242 0.00128 34.0 0.000 0.000 0.000 +2449212.5 -0.96297 2.78380 -27471495.0 0.00228 0.00122 29.9 0.000 0.000 0.000 +2449213.5 -0.96849 2.80638 -27472991.3 0.00187 0.00106 26.6 0.000 0.000 0.000 +2449214.5 -0.97509 2.82807 -27474612.2 0.00160 0.00094 21.7 0.000 0.000 0.000 +2449215.5 -0.98275 2.84824 -27476426.7 0.00209 0.00167 26.0 0.000 0.000 0.000 +2449216.5 -0.99061 2.86641 -27478473.2 0.00158 0.00135 15.5 0.000 0.000 0.000 +2449217.5 -0.99817 2.88275 -27480748.3 0.00155 0.00134 12.5 0.000 0.000 0.000 +2449218.5 -1.00505 2.89813 -27483214.0 0.00153 0.00136 13.4 0.000 0.000 0.000 +2449219.5 -1.01129 2.91334 -27485782.3 0.00140 0.00134 12.9 0.000 0.000 0.000 +2449220.5 -1.01646 2.92906 -27488326.9 0.00162 0.00180 12.8 0.000 0.000 0.000 +2449221.5 -1.01982 2.94576 -27490730.9 0.00154 0.00187 14.0 0.000 0.000 0.000 +2449222.5 -1.02109 2.96358 -27492925.0 0.00155 0.00245 10.2 0.000 0.000 0.000 +2449223.5 -1.02039 2.98250 -27494894.5 0.00202 0.00312 16.6 0.000 0.000 0.000 +2449224.5 -1.01816 3.00286 -27496669.4 0.00205 0.00311 15.1 0.000 0.000 0.000 +2449225.5 -1.01499 3.02513 -27498312.2 0.00213 0.00320 14.1 0.000 0.000 0.000 +2449226.5 -1.01169 3.04868 -27499893.3 0.00241 0.00309 13.8 0.000 0.000 0.000 +2449227.5 -1.00830 3.07250 -27501485.9 0.00300 0.00306 15.2 0.000 0.000 0.000 +2449228.5 -1.00459 3.09594 -27503146.8 0.00302 0.00261 16.3 0.000 0.000 0.000 +2449229.5 -1.00069 3.11849 -27504911.0 0.00246 0.00224 14.0 0.000 0.000 0.000 +2449230.5 -0.99768 3.13963 -27506791.7 0.00258 0.00242 13.5 0.000 0.000 0.000 +2449231.5 -0.99681 3.15908 -27508782.7 0.00250 0.00248 13.7 0.000 0.000 0.000 +2449232.5 -0.99647 3.17765 -27510856.6 0.00241 0.00249 14.9 0.000 0.000 0.000 +2449233.5 -0.99573 3.19614 -27512960.4 0.00251 0.00249 15.2 0.000 0.000 0.000 +2449234.5 -0.99514 3.21470 -27515041.5 0.00231 0.00216 13.6 0.000 0.000 0.000 +2449235.5 -0.99605 3.23299 -27517060.1 0.00242 0.00169 17.6 0.000 0.000 0.000 +2449236.5 -0.99926 3.25054 -27518994.1 0.00223 0.00160 12.3 0.000 0.000 0.000 +2449237.5 -1.00416 3.26679 -27520842.0 0.00228 0.00149 12.0 0.000 0.000 0.000 +2449238.5 -1.00880 3.28176 -27522618.2 0.00217 0.00144 9.7 0.000 0.000 0.000 +2449239.5 -1.01238 3.29705 -27524343.7 0.00274 0.00144 9.1 0.000 0.000 0.000 +2449240.5 -1.01366 3.31326 -27526072.8 0.00250 0.00159 12.0 0.000 0.000 0.000 +2449241.5 -1.01186 3.33053 -27527880.9 0.00237 0.00156 11.1 0.000 0.000 0.000 +2449242.5 -1.00662 3.34919 -27529848.0 0.00275 0.00139 11.9 0.000 0.000 0.000 +2449243.5 -0.99825 3.36989 -27532041.6 0.00235 0.00117 7.6 0.000 0.000 0.000 +2449244.5 -0.98875 3.39266 -27534490.5 0.00246 0.00156 10.3 0.000 0.000 0.000 +2449245.5 -0.98017 3.41652 -27537168.3 0.00227 0.00166 10.6 0.000 0.000 0.000 +2449246.5 -0.97404 3.44027 -27539986.7 0.00211 0.00146 9.5 0.000 0.000 0.000 +2449247.5 -0.97011 3.46244 -27542814.7 0.00224 0.00166 9.7 0.000 0.000 0.000 +2449248.5 -0.96806 3.48167 -27545523.1 0.00224 0.00175 9.5 0.000 0.000 0.000 +2449249.5 -0.96747 3.49783 -27548029.1 0.00225 0.00236 17.3 0.000 0.000 0.000 +2449250.5 -0.96854 3.51146 -27550316.8 0.00183 0.00192 8.9 0.000 0.000 0.000 +2449251.5 -0.97058 3.52380 -27552433.9 0.00189 0.00187 10.6 0.000 0.000 0.000 +2449252.5 -0.97234 3.53676 -27554467.1 0.00166 0.00186 10.6 0.000 0.000 0.000 +2449253.5 -0.97323 3.55214 -27556492.4 0.00156 0.00177 10.8 0.000 0.000 0.000 +2449254.5 -0.97251 3.56960 -27558555.6 0.00176 0.00175 10.9 0.000 0.000 0.000 +2449255.5 -0.96943 3.58832 -27560698.5 0.00165 0.00183 10.2 0.000 0.000 0.000 +2449256.5 -0.96481 3.60765 -27562936.1 0.00227 0.00236 22.6 0.000 0.000 0.000 +2449257.5 -0.95984 3.62723 -27565261.9 0.00291 0.00215 18.0 0.000 0.000 0.000 +2449258.5 -0.95584 3.64695 -27567652.3 0.00216 0.00178 9.2 0.000 0.000 0.000 +2449259.5 -0.95442 3.66656 -27570068.7 0.00215 0.00172 8.9 0.000 0.000 0.000 +2449260.5 -0.95663 3.68568 -27572461.2 0.00219 0.00172 8.8 0.000 0.000 0.000 +2449261.5 -0.95858 3.70421 -27574805.0 0.00218 0.00176 8.8 0.000 0.000 0.000 +2449262.5 -0.95598 3.72259 -27577086.9 0.00226 0.00166 7.0 0.000 0.000 0.000 +2449263.5 -0.95023 3.74125 -27579298.2 0.00203 0.00172 8.4 0.000 0.000 0.000 +2449264.5 -0.94323 3.76044 -27581445.7 0.00169 0.00164 6.1 0.000 0.000 0.000 +2449265.5 -0.93666 3.77991 -27583553.4 0.00206 0.00149 14.4 0.000 0.000 0.000 +2449266.5 -0.93125 3.79913 -27585659.6 0.00228 0.00142 16.5 0.000 0.000 0.000 +2449267.5 -0.92634 3.81758 -27587806.3 0.00212 0.00134 16.9 0.000 0.000 0.000 +2449268.5 -0.92033 3.83516 -27590016.2 0.00197 0.00125 16.8 0.000 0.000 0.000 +2449269.5 -0.91174 3.85254 -27592337.5 0.00194 0.00194 15.1 0.000 0.000 0.000 +2449270.5 -0.90010 3.87022 -27594831.7 0.00169 0.00184 15.7 0.000 0.000 0.000 +2449271.5 -0.88639 3.88874 -27597548.0 0.00172 0.00201 13.7 0.000 0.000 0.000 +2449272.5 -0.87191 3.90893 -27600499.6 0.00176 0.00231 10.4 0.000 0.000 0.000 +2449273.5 -0.85785 3.93109 -27603653.5 0.00145 0.00231 10.2 0.000 0.000 0.000 +2449274.5 -0.84531 3.95398 -27606934.8 0.00167 0.00234 10.6 0.000 0.000 0.000 +2449275.5 -0.83487 3.97514 -27610199.4 0.00175 0.00232 10.6 0.000 0.000 0.000 +2449276.5 -0.82695 3.99340 -27613311.7 0.00163 0.00180 6.7 0.000 0.000 0.000 +2449277.5 -0.82164 4.00895 -27616194.1 0.00161 0.00175 4.8 0.000 0.000 0.000 +2449278.5 -0.81795 4.02222 -27618839.7 0.00155 0.00165 4.4 0.000 0.000 0.000 +2449279.5 -0.81347 4.03394 -27621301.1 0.00152 0.00172 4.4 0.000 0.000 0.000 +2449280.5 -0.80599 4.04533 -27623662.3 0.00142 0.00178 4.0 0.000 0.000 0.000 +2449281.5 -0.79878 4.05866 -27626016.5 0.00138 0.00185 4.2 0.000 0.000 0.000 +2449282.5 -0.79353 4.07370 -27628438.5 0.00139 0.00188 4.1 0.000 0.000 0.000 +2449283.5 -0.78946 4.08934 -27630956.4 0.00146 0.00222 3.8 0.000 0.000 0.000 +2449284.5 -0.78493 4.10518 -27633568.7 0.00174 0.00250 5.1 0.000 0.000 0.000 +2449285.5 -0.77851 4.12144 -27636258.8 0.00194 0.00213 7.1 0.000 0.000 0.000 +2449286.5 -0.77012 4.13852 -27639001.7 0.00191 0.00207 7.5 0.000 0.000 0.000 +2449287.5 -0.76129 4.15592 -27641764.9 0.00218 0.00201 7.7 0.000 0.000 0.000 +2449288.5 -0.75468 4.17201 -27644507.5 0.00203 0.00175 7.7 0.000 0.000 0.000 +2449289.5 -0.75052 4.18625 -27647188.8 0.00197 0.00151 7.9 0.000 0.000 0.000 +2449290.5 -0.74733 4.19848 -27649781.1 0.00306 0.00127 7.7 0.000 0.000 0.000 +2449291.5 -0.74311 4.20878 -27652267.7 0.00306 0.00122 11.9 0.000 0.000 0.000 +2449292.5 -0.73590 4.21776 -27654644.8 0.00322 0.00135 10.6 0.000 0.000 0.000 +2449293.5 -0.72368 4.22635 -27656925.4 0.00336 0.00171 10.3 0.000 0.000 0.000 +2449294.5 -0.70553 4.23538 -27659139.0 0.00327 0.00174 10.5 0.000 0.000 0.000 +2449295.5 -0.68556 4.24580 -27661318.8 0.00329 0.00177 10.5 0.000 0.000 0.000 +2449296.5 -0.66507 4.25854 -27663522.7 0.00337 0.00177 11.3 0.000 0.000 0.000 +2449297.5 -0.64401 4.27352 -27665833.7 0.00265 0.00206 11.5 0.000 0.000 0.000 +2449298.5 -0.62286 4.28987 -27668320.1 0.00220 0.00218 10.9 0.000 0.000 0.000 +2449299.5 -0.60181 4.30645 -27671019.7 0.00174 0.00147 7.1 0.000 0.000 0.000 +2449300.5 -0.58149 4.32218 -27673926.5 0.00181 0.00118 6.8 0.000 0.000 0.000 +2449301.5 -0.56330 4.33631 -27676985.1 0.00183 0.00131 6.5 0.000 0.000 0.000 +2449302.5 -0.54817 4.34864 -27680090.1 0.00168 0.00140 6.8 0.000 0.000 0.000 +2449303.5 -0.53481 4.35941 -27683117.6 0.00156 0.00138 6.6 0.000 0.000 0.000 +2449304.5 -0.52171 4.36889 -27685973.5 0.00128 0.00134 7.8 0.000 0.000 0.000 +2449305.5 -0.50855 4.37742 -27688613.8 0.00171 0.00152 19.6 0.000 0.000 0.000 +2449306.5 -0.49570 4.38558 -27691054.0 0.00175 0.00145 9.6 0.000 0.000 0.000 +2449307.5 -0.48377 4.39411 -27693355.8 0.00162 0.00150 9.6 0.000 0.000 0.000 +2449308.5 -0.47386 4.40358 -27695596.3 0.00169 0.00164 8.4 0.000 0.000 0.000 +2449309.5 -0.46708 4.41411 -27697841.4 0.00169 0.00156 8.5 0.000 0.000 0.000 +2449310.5 -0.46213 4.42516 -27700137.5 0.00190 0.00154 8.6 0.000 0.000 0.000 +2449311.5 -0.45784 4.43625 -27702501.1 0.00223 0.00166 11.8 0.000 0.000 0.000 +2449312.5 -0.45274 4.44685 -27704925.8 0.00239 0.00186 18.8 0.000 0.000 0.000 +2449313.5 -0.44510 4.45687 -27707392.0 0.00252 0.00164 18.5 0.000 0.000 0.000 +2449314.5 -0.43457 4.46654 -27709873.8 0.00254 0.00168 18.7 0.000 0.000 0.000 +2449315.5 -0.42288 4.47612 -27712340.8 0.00257 0.00157 19.5 0.000 0.000 0.000 +2449316.5 -0.41352 4.48564 -27714757.1 0.00245 0.00155 19.1 0.000 0.000 0.000 +2449317.5 -0.40657 4.49450 -27717084.3 0.00237 0.00162 18.2 0.000 0.000 0.000 +2449318.5 -0.40077 4.50232 -27719303.1 0.00226 0.00121 10.6 0.000 0.000 0.000 +2449319.5 -0.39537 4.50923 -27721404.9 0.00209 0.00127 11.3 0.000 0.000 0.000 +2449320.5 -0.38910 4.51540 -27723389.8 0.00222 0.00099 10.2 0.000 0.000 0.000 +2449321.5 -0.37983 4.52134 -27725262.9 0.00229 0.00088 9.8 0.000 0.000 0.000 +2449322.5 -0.36588 4.52783 -27727056.7 0.00226 0.00087 9.5 0.000 0.000 0.000 +2449323.5 -0.35134 4.53518 -27728868.9 0.00221 0.00081 7.4 0.000 0.000 0.000 +2449324.5 -0.33726 4.54336 -27730754.4 0.00216 0.00080 7.4 0.000 0.000 0.000 +2449325.5 -0.32281 4.55235 -27732776.0 0.00207 0.00093 10.8 0.000 0.000 0.000 +2449326.5 -0.30792 4.56199 -27734979.8 0.00292 0.00199 13.7 0.000 0.000 0.000 +2449327.5 -0.29294 4.57205 -27737379.6 0.00284 0.00184 11.3 0.000 0.000 0.000 +2449328.5 -0.27786 4.58240 -27739955.1 0.00286 0.00189 11.0 0.000 0.000 0.000 +2449329.5 -0.26266 4.59312 -27742652.3 0.00294 0.00202 11.0 0.000 0.000 0.000 +2449330.5 -0.24973 4.60365 -27745368.9 0.00313 0.00201 11.5 0.000 0.000 0.000 +2449331.5 -0.23751 4.61384 -27748012.4 0.00316 0.00221 12.0 0.000 0.000 0.000 +2449332.5 -0.22470 4.62405 -27750521.5 0.00323 0.00273 13.5 0.000 0.000 0.000 +2449333.5 -0.21213 4.63475 -27752881.6 0.00199 0.00226 13.6 0.000 0.000 0.000 +2449334.5 -0.20075 4.64635 -27755124.7 0.00171 0.00189 10.1 0.000 0.000 0.000 +2449335.5 -0.19035 4.65891 -27757322.3 0.00200 0.00240 10.9 0.000 0.000 0.000 +2449336.5 -0.18075 4.67146 -27759556.3 0.00189 0.00238 11.7 0.000 0.000 0.000 +2449337.5 -0.17096 4.68249 -27761899.4 0.00162 0.00226 10.1 0.000 0.000 0.000 +2449338.5 -0.15978 4.69178 -27764367.1 0.00177 0.00207 10.6 0.000 0.000 0.000 +2449339.5 -0.14732 4.69971 -27766924.8 0.00223 0.00259 8.8 0.000 0.000 0.000 +2449340.5 -0.13355 4.70699 -27769537.0 0.00252 0.00292 13.8 0.000 0.000 0.000 +2449341.5 -0.11788 4.71449 -27772174.4 0.00209 0.00245 10.9 0.000 0.000 0.000 +2449342.5 -0.09849 4.72300 -27774817.2 0.00176 0.00203 10.7 0.000 0.000 0.000 +2449343.5 -0.07439 4.73296 -27777439.8 0.00180 0.00202 10.1 0.000 0.000 0.000 +2449344.5 -0.04855 4.74381 -27779974.7 0.00189 0.00201 9.6 0.000 0.000 0.000 +2449345.5 -0.02357 4.75373 -27782402.5 0.00188 0.00198 9.4 0.000 0.000 0.000 +2449346.5 -0.00176 4.76121 -27784729.9 0.00128 0.00129 7.8 0.000 0.000 0.000 +2449347.5 0.01548 4.76554 -27786961.5 0.00162 0.00152 15.8 0.000 0.000 0.000 +2449348.5 0.02882 4.76663 -27789116.1 0.00134 0.00114 5.9 0.000 0.000 0.000 +2449349.5 0.04033 4.76525 -27791229.3 0.00125 0.00113 5.9 0.000 0.000 0.000 +2449350.5 0.05229 4.76284 -27793351.7 0.00128 0.00110 6.3 0.000 0.000 0.000 +2449351.5 0.06639 4.76115 -27795547.8 0.00104 0.00089 6.3 0.000 0.000 0.000 +2449352.5 0.08351 4.76163 -27797907.8 0.00106 0.00089 6.2 0.000 0.000 0.000 +2449353.5 0.10391 4.76415 -27800453.7 0.00152 0.00131 6.7 0.000 0.000 0.000 +2449354.5 0.12726 4.76832 -27803157.7 0.00198 0.00148 7.6 0.000 0.000 0.000 +2449355.5 0.15285 4.77374 -27805956.9 0.00219 0.00131 8.7 0.000 0.000 0.000 +2449356.5 0.18033 4.77992 -27808763.6 0.00221 0.00131 8.2 0.000 0.000 0.000 +2449357.5 0.20923 4.78655 -27811485.5 0.00223 0.00131 8.8 0.000 0.000 0.000 +2449358.5 0.23790 4.79303 -27814056.6 0.00233 0.00129 9.1 0.000 0.000 0.000 +2449359.5 0.26609 4.79821 -27816450.9 0.00226 0.00138 9.2 0.000 0.000 0.000 +2449360.5 0.29332 4.80147 -27818663.8 0.00197 0.00128 9.8 0.000 0.000 0.000 +2449361.5 0.31818 4.80251 -27820730.7 0.00185 0.00174 12.9 0.000 0.000 0.000 +2449362.5 0.34038 4.80151 -27822723.9 0.00162 0.00219 8.5 0.000 0.000 0.000 +2449363.5 0.36110 4.79924 -27824717.1 0.00130 0.00191 6.1 0.000 0.000 0.000 +2449364.5 0.38260 4.79680 -27826768.2 0.00117 0.00179 5.2 0.000 0.000 0.000 +2449365.5 0.40709 4.79411 -27828945.3 0.00110 0.00162 4.8 0.000 0.000 0.000 +2449366.5 0.43467 4.79165 -27831256.4 0.00103 0.00151 5.2 0.000 0.000 0.000 +2449367.5 0.46173 4.79049 -27833631.4 0.00103 0.00136 5.2 0.000 0.000 0.000 +2449368.5 0.48517 4.79108 -27835976.5 0.00087 0.00142 5.2 0.000 0.000 0.000 +2449369.5 0.50599 4.79215 -27838267.8 0.00099 0.00136 4.9 0.000 0.000 0.000 +2449370.5 0.52493 4.79174 -27840519.5 0.00105 0.00141 5.7 0.000 0.000 0.000 +2449371.5 0.54183 4.78875 -27842707.0 0.00109 0.00134 5.5 0.000 0.000 0.000 +2449372.5 0.55812 4.78408 -27844782.2 0.00109 0.00172 5.4 0.000 0.000 0.000 +2449373.5 0.57592 4.77796 -27846771.6 0.00106 0.00197 5.4 0.000 0.000 0.000 +2449374.5 0.59725 4.77065 -27848726.8 0.00103 0.00209 4.8 0.000 0.000 0.000 +2449375.5 0.62252 4.76497 -27850654.6 0.00105 0.00219 4.7 0.000 0.000 0.000 +2449376.5 0.65045 4.76279 -27852585.4 0.00101 0.00210 4.9 0.000 0.000 0.000 +2449377.5 0.67841 4.76221 -27854554.5 0.00101 0.00223 4.9 0.000 0.000 0.000 +2449378.5 0.70565 4.75998 -27856632.5 0.00095 0.00238 5.5 0.000 0.000 0.000 +2449379.5 0.73294 4.75418 -27858905.6 0.00096 0.00214 6.3 0.000 0.000 0.000 +2449380.5 0.75986 4.74681 -27861391.4 0.00112 0.00188 7.0 0.000 0.000 0.000 +2449381.5 0.78672 4.73867 -27864059.4 0.00143 0.00179 9.4 0.000 0.000 0.000 +2449382.5 0.81351 4.72967 -27866851.4 0.00162 0.00128 17.5 0.000 0.000 0.000 +2449383.5 0.84051 4.71999 -27869676.3 0.00161 0.00128 11.8 0.000 0.000 0.000 +2449384.5 0.86798 4.71028 -27872435.0 0.00155 0.00109 10.5 0.000 0.000 0.000 +2449385.5 0.89574 4.70146 -27875035.0 0.00170 0.00132 10.1 0.000 0.000 0.000 +2449386.5 0.92345 4.69428 -27877430.0 0.00180 0.00139 10.1 0.000 0.000 0.000 +2449387.5 0.95001 4.68778 -27879630.5 0.00180 0.00143 10.5 0.000 0.000 0.000 +2449388.5 0.97408 4.68073 -27881670.4 0.00183 0.00150 10.8 0.000 0.000 0.000 +2449389.5 0.99577 4.67293 -27883608.4 0.00189 0.00175 14.1 0.000 0.000 0.000 +2449390.5 1.01601 4.66466 -27885523.8 0.00179 0.00133 11.6 0.000 0.000 0.000 +2449391.5 1.03566 4.65596 -27887499.6 0.00198 0.00108 11.8 0.000 0.000 0.000 +2449392.5 1.05531 4.64652 -27889581.0 0.00200 0.00123 11.5 0.000 0.000 0.000 +2449393.5 1.07588 4.63590 -27891772.5 0.00189 0.00119 11.1 0.000 0.000 0.000 +2449394.5 1.09565 4.62467 -27894056.2 0.00184 0.00122 11.7 0.000 0.000 0.000 +2449395.5 1.11332 4.61347 -27896391.9 0.00183 0.00114 8.3 0.000 0.000 0.000 +2449396.5 1.13021 4.60255 -27898745.2 0.00190 0.00142 12.4 0.000 0.000 0.000 +2449397.5 1.14769 4.59188 -27901088.7 0.00193 0.00137 10.2 0.000 0.000 0.000 +2449398.5 1.16644 4.58081 -27903390.8 0.00209 0.00153 9.7 0.000 0.000 0.000 +2449399.5 1.18650 4.56855 -27905620.1 0.00202 0.00140 10.7 0.000 0.000 0.000 +2449400.5 1.20740 4.55507 -27907760.6 0.00212 0.00149 8.9 0.000 0.000 0.000 +2449401.5 1.22670 4.54080 -27909832.1 0.00221 0.00161 10.6 0.000 0.000 0.000 +2449402.5 1.24446 4.52641 -27911856.2 0.00228 0.00170 13.9 0.000 0.000 0.000 +2449403.5 1.26347 4.51342 -27913868.1 0.00223 0.00199 19.7 0.000 0.000 0.000 +2449404.5 1.28585 4.50327 -27915927.6 0.00208 0.00207 16.4 0.000 0.000 0.000 +2449405.5 1.31142 4.49632 -27918100.4 0.00220 0.00208 15.5 0.000 0.000 0.000 +2449406.5 1.33801 4.49170 -27920452.7 0.00213 0.00213 15.4 0.000 0.000 0.000 +2449407.5 1.36243 4.48809 -27923055.5 0.00246 0.00270 13.5 0.000 0.000 0.000 +2449408.5 1.38274 4.48417 -27925937.8 0.00251 0.00257 11.1 0.000 0.000 0.000 +2449409.5 1.39868 4.47882 -27929072.3 0.00254 0.00290 5.5 0.000 0.000 0.000 +2449410.5 1.41114 4.47153 -27932382.0 0.00249 0.00267 12.6 0.000 0.000 0.000 +2449411.5 1.42159 4.46191 -27935753.5 0.00207 0.00230 8.1 0.000 0.000 0.000 +2449412.5 1.43122 4.44915 -27939065.0 0.00197 0.00224 7.8 0.000 0.000 0.000 +2449413.5 1.44093 4.43330 -27942225.1 0.00180 0.00229 9.5 0.000 0.000 0.000 +2449414.5 1.45143 4.41525 -27945196.3 0.00149 0.00185 11.3 0.000 0.000 0.000 +2449415.5 1.46181 4.39641 -27947976.2 0.00148 0.00149 11.7 0.000 0.000 0.000 +2449416.5 1.47114 4.37793 -27950590.9 0.00154 0.00188 11.3 0.000 0.000 0.000 +2449417.5 1.47974 4.36017 -27953097.4 0.00135 0.00188 14.3 0.000 0.000 0.000 +2449418.5 1.48873 4.34323 -27955573.5 0.00145 0.00171 11.2 0.000 0.000 0.000 +2449419.5 1.49821 4.32695 -27958076.9 0.00151 0.00160 9.8 0.000 0.000 0.000 +2449420.5 1.50792 4.31083 -27960641.0 0.00156 0.00164 9.2 0.000 0.000 0.000 +2449421.5 1.51848 4.29431 -27963280.4 0.00155 0.00167 8.9 0.000 0.000 0.000 +2449422.5 1.52998 4.27724 -27965965.4 0.00168 0.00171 9.0 0.000 0.000 0.000 +2449423.5 1.54283 4.25991 -27968629.2 0.00191 0.00140 6.9 0.000 0.000 0.000 +2449424.5 1.55745 4.24313 -27971218.5 0.00215 0.00208 8.9 0.000 0.000 0.000 +2449425.5 1.57296 4.22777 -27973715.3 0.00201 0.00197 12.1 0.000 0.000 0.000 +2449426.5 1.58834 4.21393 -27976114.2 0.00204 0.00203 11.7 0.000 0.000 0.000 +2449427.5 1.60269 4.20023 -27978422.9 0.00209 0.00205 11.9 0.000 0.000 0.000 +2449428.5 1.61626 4.18516 -27980659.0 0.00212 0.00199 12.0 0.000 0.000 0.000 +2449429.5 1.62683 4.16949 -27982816.9 0.00198 0.00193 12.0 0.000 0.000 0.000 +2449430.5 1.63372 4.15350 -27984928.5 0.00193 0.00235 13.7 0.000 0.000 0.000 +2449431.5 1.63798 4.13689 -27987039.4 0.00179 0.00201 17.4 0.000 0.000 0.000 +2449432.5 1.64058 4.11935 -27989207.4 0.00146 0.00205 6.3 0.000 0.000 0.000 +2449433.5 1.64248 4.10082 -27991495.5 0.00159 0.00233 6.1 0.000 0.000 0.000 +2449434.5 1.64567 4.08194 -27993964.6 0.00150 0.00255 5.8 0.000 0.000 0.000 +2449435.5 1.65254 4.06376 -27996664.6 0.00149 0.00248 5.8 0.000 0.000 0.000 +2449436.5 1.66261 4.04619 -27999602.2 0.00135 0.00240 5.9 0.000 0.000 0.000 +2449437.5 1.67371 4.02829 -28002750.1 0.00155 0.00235 5.9 0.000 0.000 0.000 +2449438.5 1.68430 4.00982 -28006005.8 0.00149 0.00268 8.6 0.000 0.000 0.000 +2449439.5 1.69342 3.99069 -28009231.1 0.00181 0.00224 9.0 0.000 0.000 0.000 +2449440.5 1.70081 3.97090 -28012297.8 0.00194 0.00207 8.4 0.000 0.000 0.000 +2449441.5 1.70820 3.95086 -28015132.5 0.00197 0.00188 8.9 0.000 0.000 0.000 +2449442.5 1.71926 3.93195 -28017753.0 0.00217 0.00204 9.2 0.000 0.000 0.000 +2449443.5 1.73382 3.91467 -28020218.5 0.00204 0.00220 8.8 0.000 0.000 0.000 +2449444.5 1.74976 3.89838 -28022600.6 0.00196 0.00165 7.3 0.000 0.000 0.000 +2449445.5 1.76478 3.88211 -28024976.5 0.00191 0.00209 13.7 0.000 0.000 0.000 +2449446.5 1.77753 3.86515 -28027398.2 0.00184 0.00206 8.6 0.000 0.000 0.000 +2449447.5 1.78812 3.84752 -28029875.0 0.00184 0.00239 7.5 0.000 0.000 0.000 +2449448.5 1.79756 3.82954 -28032399.8 0.00164 0.00221 6.4 0.000 0.000 0.000 +2449449.5 1.80686 3.81153 -28034975.7 0.00174 0.00230 6.4 0.000 0.000 0.000 +2449450.5 1.81539 3.79359 -28037591.4 0.00172 0.00241 4.2 0.000 0.000 0.000 +2449451.5 1.82232 3.77588 -28040220.2 0.00218 0.00239 4.4 0.000 0.000 0.000 +2449452.5 1.82770 3.75890 -28042830.0 0.00240 0.00405 4.5 0.000 0.000 0.000 +2449453.5 1.83132 3.74273 -28045386.3 0.00219 0.00344 5.6 0.000 0.000 0.000 +2449454.5 1.83245 3.72639 -28047855.5 0.00212 0.00339 8.7 0.000 0.000 0.000 +2449455.5 1.83152 3.70852 -28050219.0 0.00230 0.00334 9.4 0.000 0.000 0.000 +2449456.5 1.83046 3.68793 -28052478.2 0.00236 0.00321 9.3 0.000 0.000 0.000 +2449457.5 1.82993 3.66558 -28054646.7 0.00200 0.00316 9.2 0.000 0.000 0.000 +2449458.5 1.83059 3.64335 -28056755.0 0.00188 0.00350 10.9 0.000 0.000 0.000 +2449459.5 1.83268 3.62240 -28058865.9 0.00191 0.00243 10.4 0.000 0.000 0.000 +2449460.5 1.83542 3.60327 -28061045.1 0.00193 0.00201 6.8 0.000 0.000 0.000 +2449461.5 1.83755 3.58605 -28063353.0 0.00186 0.00193 6.6 0.000 0.000 0.000 +2449462.5 1.83831 3.57057 -28065831.6 0.00170 0.00191 7.2 0.000 0.000 0.000 +2449463.5 1.83797 3.55609 -28068487.9 0.00169 0.00196 7.9 0.000 0.000 0.000 +2449464.5 1.83687 3.54141 -28071336.9 0.00172 0.00143 7.0 0.000 0.000 0.000 +2449465.5 1.83484 3.52551 -28074367.0 0.00185 0.00137 7.3 0.000 0.000 0.000 +2449466.5 1.83233 3.50767 -28077505.7 0.00200 0.00180 11.7 0.000 0.000 0.000 +2449467.5 1.82980 3.48746 -28080632.6 0.00199 0.00149 11.4 0.000 0.000 0.000 +2449468.5 1.82808 3.46461 -28083623.6 0.00177 0.00155 10.1 0.000 0.000 0.000 +2449469.5 1.82765 3.43941 -28086404.5 0.00178 0.00163 9.8 0.000 0.000 0.000 +2449470.5 1.82787 3.41282 -28088987.0 0.00173 0.00166 9.9 0.000 0.000 0.000 +2449471.5 1.82913 3.38661 -28091454.3 0.00168 0.00153 10.6 0.000 0.000 0.000 +2449472.5 1.83219 3.36224 -28093897.0 0.00151 0.00152 10.6 0.000 0.000 0.000 +2449473.5 1.83654 3.34004 -28096374.5 0.00175 0.00186 10.2 0.000 0.000 0.000 +2449474.5 1.84171 3.31934 -28098911.7 0.00144 0.00169 8.9 0.000 0.000 0.000 +2449475.5 1.84705 3.29926 -28101500.9 0.00148 0.00163 8.8 0.000 0.000 0.000 +2449476.5 1.85151 3.27891 -28104120.2 0.00158 0.00171 8.7 0.000 0.000 0.000 +2449477.5 1.85396 3.25787 -28106754.2 0.00164 0.00175 7.0 0.000 0.000 0.000 +2449478.5 1.85520 3.23576 -28109379.1 0.00167 0.00181 7.0 0.000 0.000 0.000 +2449479.5 1.85690 3.21243 -28111956.0 0.00150 0.00153 5.6 0.000 0.000 0.000 +2449480.5 1.86030 3.18840 -28114458.8 0.00153 0.00169 5.3 0.000 0.000 0.000 +2449481.5 1.86559 3.16471 -28116874.5 0.00118 0.00178 5.3 0.000 0.000 0.000 +2449482.5 1.87241 3.14220 -28119192.4 0.00130 0.00206 7.0 0.000 0.000 0.000 +2449483.5 1.87987 3.12115 -28121421.5 0.00125 0.00195 7.0 0.000 0.000 0.000 +2449484.5 1.88604 3.10114 -28123603.9 0.00131 0.00190 7.1 0.000 0.000 0.000 +2449485.5 1.89052 3.08121 -28125764.3 0.00139 0.00196 7.2 0.000 0.000 0.000 +2449486.5 1.89157 3.06059 -28127912.6 0.00145 0.00202 8.1 0.000 0.000 0.000 +2449487.5 1.88888 3.03945 -28130099.8 0.00130 0.00199 9.2 0.000 0.000 0.000 +2449488.5 1.88374 3.01861 -28132366.9 0.00243 0.00148 16.2 0.000 0.000 0.000 +2449489.5 1.87810 2.99853 -28134745.5 0.00233 0.00120 15.2 0.000 0.000 0.000 +2449490.5 1.87350 2.97860 -28137252.1 0.00226 0.00120 15.5 0.000 0.000 0.000 +2449491.5 1.87161 2.95818 -28139887.7 0.00219 0.00108 15.5 0.000 0.000 0.000 +2449492.5 1.87068 2.93815 -28142627.8 0.00222 0.00125 15.5 0.000 0.000 0.000 +2449493.5 1.86814 2.91952 -28145405.8 0.00221 0.00139 17.0 0.000 0.000 0.000 +2449494.5 1.86284 2.90250 -28148135.4 0.00133 0.00209 18.7 0.000 0.000 0.000 +2449495.5 1.85433 2.88660 -28150730.9 0.00136 0.00188 16.2 0.000 0.000 0.000 +2449496.5 1.84292 2.87079 -28153135.5 0.00139 0.00200 15.7 0.000 0.000 0.000 +2449497.5 1.82958 2.85375 -28155333.0 0.00153 0.00203 15.5 0.000 0.000 0.000 +2449498.5 1.81556 2.83454 -28157352.1 0.00151 0.00200 16.8 0.000 0.000 0.000 +2449499.5 1.80196 2.81347 -28159273.3 0.00163 0.00202 16.0 0.000 0.000 0.000 +2449500.5 1.78915 2.79106 -28161164.5 0.00173 0.00188 16.4 0.000 0.000 0.000 +2449501.5 1.77703 2.76758 -28163074.6 0.00187 0.00174 22.0 0.000 0.000 0.000 +2449502.5 1.76538 2.74333 -28165025.2 0.00174 0.00121 15.6 0.000 0.000 0.000 +2449503.5 1.75416 2.71896 -28167017.3 0.00231 0.00103 15.8 0.000 0.000 0.000 +2449504.5 1.74390 2.69544 -28169035.2 0.00230 0.00095 14.0 0.000 0.000 0.000 +2449505.5 1.73513 2.67361 -28171041.5 0.00218 0.00087 13.4 0.000 0.000 0.000 +2449506.5 1.72633 2.65355 -28172994.9 0.00204 0.00102 12.2 0.000 0.000 0.000 +2449507.5 1.71572 2.63490 -28174865.3 0.00195 0.00095 5.1 0.000 0.000 0.000 +2449508.5 1.70356 2.61718 -28176634.4 0.00245 0.00155 10.4 0.000 0.000 0.000 +2449509.5 1.69037 2.59989 -28178292.9 0.00261 0.00143 7.6 0.000 0.000 0.000 +2449510.5 1.67682 2.58242 -28179840.0 0.00220 0.00159 8.1 0.000 0.000 0.000 +2449511.5 1.66445 2.56411 -28181293.9 0.00220 0.00161 8.5 0.000 0.000 0.000 +2449512.5 1.65464 2.54475 -28182688.2 0.00220 0.00146 8.4 0.000 0.000 0.000 +2449513.5 1.64562 2.52464 -28184074.6 0.00222 0.00149 8.8 0.000 0.000 0.000 +2449514.5 1.63622 2.50383 -28185520.6 0.00226 0.00146 7.4 0.000 0.000 0.000 +2449515.5 1.62666 2.48224 -28187076.3 0.00227 0.00185 12.5 0.000 0.000 0.000 +2449516.5 1.61754 2.45994 -28188773.0 0.00150 0.00231 8.0 0.000 0.000 0.000 +2449517.5 1.60929 2.43768 -28190626.4 0.00149 0.00232 7.8 0.000 0.000 0.000 +2449518.5 1.60184 2.41658 -28192626.0 0.00153 0.00241 9.4 0.000 0.000 0.000 +2449519.5 1.59437 2.39763 -28194722.8 0.00141 0.00235 8.5 0.000 0.000 0.000 +2449520.5 1.58579 2.38008 -28196859.0 0.00159 0.00257 8.2 0.000 0.000 0.000 +2449521.5 1.57514 2.36243 -28198966.2 0.00147 0.00220 4.9 0.000 0.000 0.000 +2449522.5 1.56179 2.34366 -28200967.8 0.00146 0.00184 6.5 0.000 0.000 0.000 +2449523.5 1.54592 2.32333 -28202794.8 0.00127 0.00179 5.7 0.000 0.000 0.000 +2449524.5 1.52901 2.30163 -28204408.7 0.00139 0.00171 4.9 0.000 0.000 0.000 +2449525.5 1.51335 2.27954 -28205821.8 0.00135 0.00170 4.9 0.000 0.000 0.000 +2449526.5 1.49889 2.25860 -28207102.5 0.00123 0.00155 6.1 0.000 0.000 0.000 +2449527.5 1.48436 2.23901 -28208322.5 0.00122 0.00147 6.2 0.000 0.000 0.000 +2449528.5 1.46876 2.22028 -28209543.7 0.00158 0.00151 10.2 0.000 0.000 0.000 +2449529.5 1.45201 2.20194 -28210808.3 0.00261 0.00205 14.5 0.000 0.000 0.000 +2449530.5 1.43468 2.18377 -28212121.0 0.00270 0.00251 14.4 0.000 0.000 0.000 +2449531.5 1.41716 2.16599 -28213461.5 0.00248 0.00252 15.6 0.000 0.000 0.000 +2449532.5 1.39939 2.14926 -28214782.8 0.00246 0.00253 15.3 0.000 0.000 0.000 +2449533.5 1.38216 2.13455 -28216022.8 0.00256 0.00261 16.0 0.000 0.000 0.000 +2449534.5 1.36607 2.12140 -28217189.1 0.00246 0.00260 15.1 0.000 0.000 0.000 +2449535.5 1.34993 2.10891 -28218302.5 0.00228 0.00257 15.8 0.000 0.000 0.000 +2449536.5 1.33273 2.09644 -28219348.5 0.00217 0.00206 16.4 0.000 0.000 0.000 +2449537.5 1.31424 2.08355 -28220321.1 0.00171 0.00169 11.6 0.000 0.000 0.000 +2449538.5 1.29516 2.06991 -28221229.5 0.00140 0.00120 9.3 0.000 0.000 0.000 +2449539.5 1.27629 2.05537 -28222096.5 0.00134 0.00147 9.2 0.000 0.000 0.000 +2449540.5 1.25793 2.03989 -28222955.3 0.00123 0.00139 9.0 0.000 0.000 0.000 +2449541.5 1.24003 2.02446 -28223870.3 0.00119 0.00137 9.1 0.000 0.000 0.000 +2449542.5 1.22219 2.01015 -28224925.9 0.00122 0.00145 11.4 0.000 0.000 0.000 +2449543.5 1.20485 1.99719 -28226167.2 0.00120 0.00172 13.3 0.000 0.000 0.000 +2449544.5 1.18803 1.98521 -28227610.0 0.00197 0.00149 12.9 0.000 0.000 0.000 +2449545.5 1.17165 1.97384 -28229244.7 0.00212 0.00155 14.4 0.000 0.000 0.000 +2449546.5 1.15488 1.96271 -28231033.1 0.00219 0.00144 14.7 0.000 0.000 0.000 +2449547.5 1.13677 1.95131 -28232920.9 0.00210 0.00147 16.2 0.000 0.000 0.000 +2449548.5 1.11820 1.93903 -28234839.5 0.00204 0.00157 15.9 0.000 0.000 0.000 +2449549.5 1.09963 1.92544 -28236744.3 0.00186 0.00164 15.6 0.000 0.000 0.000 +2449550.5 1.08060 1.91026 -28238570.7 0.00190 0.00196 16.0 0.000 0.000 0.000 +2449551.5 1.06075 1.89331 -28240267.6 0.00114 0.00232 14.2 0.000 0.000 0.000 +2449552.5 1.04037 1.87505 -28241811.7 0.00078 0.00220 13.2 0.000 0.000 0.000 +2449553.5 1.02068 1.85714 -28243211.8 0.00080 0.00223 13.1 0.000 0.000 0.000 +2449554.5 1.00172 1.84126 -28244510.7 0.00084 0.00224 13.3 0.000 0.000 0.000 +2449555.5 0.98294 1.82726 -28245790.9 0.00080 0.00195 10.2 0.000 0.000 0.000 +2449556.5 0.96440 1.81409 -28247135.2 0.00087 0.00201 15.0 0.000 0.000 0.000 +2449557.5 0.94658 1.80157 -28248580.2 0.00094 0.00155 22.7 0.000 0.000 0.000 +2449558.5 0.92864 1.79000 -28250101.9 0.00095 0.00129 16.1 0.000 0.000 0.000 +2449559.5 0.90920 1.77969 -28251655.2 0.00095 0.00101 12.3 0.000 0.000 0.000 +2449560.5 0.88794 1.77097 -28253188.5 0.00094 0.00117 11.4 0.000 0.000 0.000 +2449561.5 0.86608 1.76402 -28254660.0 0.00104 0.00121 12.0 0.000 0.000 0.000 +2449562.5 0.84519 1.75820 -28256073.4 0.00106 0.00130 8.3 0.000 0.000 0.000 +2449563.5 0.82538 1.75271 -28257445.8 0.00104 0.00134 12.2 0.000 0.000 0.000 +2449564.5 0.80563 1.74727 -28258758.8 0.00113 0.00181 17.2 0.000 0.000 0.000 +2449565.5 0.78610 1.74234 -28259995.9 0.00115 0.00167 12.2 0.000 0.000 0.000 +2449566.5 0.76738 1.73832 -28261154.9 0.00114 0.00233 12.2 0.000 0.000 0.000 +2449567.5 0.74977 1.73517 -28262263.4 0.00115 0.00238 13.0 0.000 0.000 0.000 +2449568.5 0.73363 1.73249 -28263402.2 0.00112 0.00230 13.0 0.000 0.000 0.000 +2449569.5 0.71769 1.72987 -28264624.9 0.00127 0.00229 11.9 0.000 0.000 0.000 +2449570.5 0.70136 1.72683 -28265965.5 0.00141 0.00192 13.7 0.000 0.000 0.000 +2449571.5 0.68491 1.72326 -28267446.6 0.00160 0.00195 16.9 0.000 0.000 0.000 +2449572.5 0.66933 1.71971 -28269063.1 0.00164 0.00213 15.1 0.000 0.000 0.000 +2449573.5 0.65559 1.71701 -28270782.2 0.00172 0.00181 15.3 0.000 0.000 0.000 +2449574.5 0.64361 1.71564 -28272543.2 0.00175 0.00180 15.5 0.000 0.000 0.000 +2449575.5 0.63080 1.71541 -28274310.4 0.00176 0.00190 16.2 0.000 0.000 0.000 +2449576.5 0.61542 1.71522 -28276021.1 0.00167 0.00195 14.5 0.000 0.000 0.000 +2449577.5 0.59584 1.71370 -28277607.4 0.00189 0.00175 12.6 0.000 0.000 0.000 +2449578.5 0.57211 1.70998 -28279036.3 0.00206 0.00140 17.0 0.000 0.000 0.000 +2449579.5 0.54568 1.70403 -28280326.8 0.00188 0.00139 13.2 0.000 0.000 0.000 +2449580.5 0.51953 1.69705 -28281542.2 0.00176 0.00119 13.0 0.000 0.000 0.000 +2449581.5 0.49662 1.69101 -28282755.7 0.00195 0.00115 11.8 0.000 0.000 0.000 +2449582.5 0.47564 1.68766 -28284012.1 0.00195 0.00091 11.9 0.000 0.000 0.000 +2449583.5 0.45405 1.68687 -28285359.5 0.00198 0.00093 11.9 0.000 0.000 0.000 +2449584.5 0.42906 1.68756 -28286828.0 0.00174 0.00106 10.5 0.000 0.000 0.000 +2449585.5 0.40008 1.68857 -28288422.7 0.00156 0.00130 7.8 0.000 0.000 0.000 +2449586.5 0.36869 1.68886 -28290122.7 0.00256 0.00241 11.4 0.000 0.000 0.000 +2449587.5 0.33720 1.68804 -28291886.6 0.00249 0.00242 11.8 0.000 0.000 0.000 +2449588.5 0.30813 1.68625 -28293665.6 0.00250 0.00243 12.2 0.000 0.000 0.000 +2449589.5 0.28369 1.68441 -28295405.9 0.00253 0.00243 12.3 0.000 0.000 0.000 +2449590.5 0.26405 1.68379 -28297064.7 0.00277 0.00243 12.2 0.000 0.000 0.000 +2449591.5 0.24582 1.68488 -28298661.2 0.00269 0.00226 11.4 0.000 0.000 0.000 +2449592.5 0.22703 1.68715 -28300198.9 0.00288 0.00224 13.2 0.000 0.000 0.000 +2449593.5 0.20698 1.69024 -28301681.1 0.00197 0.00125 9.7 0.000 0.000 0.000 +2449594.5 0.18512 1.69432 -28303120.1 0.00185 0.00116 9.3 0.000 0.000 0.000 +2449595.5 0.16086 1.69924 -28304545.2 0.00172 0.00115 9.0 0.000 0.000 0.000 +2449596.5 0.13455 1.70372 -28306025.7 0.00149 0.00120 8.9 0.000 0.000 0.000 +2449597.5 0.10855 1.70734 -28307634.2 0.00128 0.00126 8.3 0.000 0.000 0.000 +2449598.5 0.08477 1.71061 -28309423.8 0.00125 0.00126 9.7 0.000 0.000 0.000 +2449599.5 0.06334 1.71443 -28311432.9 0.00122 0.00121 10.1 0.000 0.000 0.000 +2449600.5 0.04226 1.71952 -28313665.3 0.00130 0.00116 11.1 0.000 0.000 0.000 +2449601.5 0.01905 1.72614 -28316078.7 0.00148 0.00123 11.7 0.000 0.000 0.000 +2449602.5 -0.00713 1.73402 -28318592.7 0.00165 0.00129 11.9 0.000 0.000 0.000 +2449603.5 -0.03553 1.74266 -28321124.1 0.00162 0.00122 12.2 0.000 0.000 0.000 +2449604.5 -0.06245 1.75152 -28323655.5 0.00167 0.00119 12.2 0.000 0.000 0.000 +2449605.5 -0.08693 1.76102 -28326109.5 0.00172 0.00124 12.2 0.000 0.000 0.000 +2449606.5 -0.10930 1.77136 -28328456.5 0.00180 0.00121 15.0 0.000 0.000 0.000 +2449607.5 -0.13169 1.78186 -28330712.4 0.00198 0.00123 10.1 0.000 0.000 0.000 +2449608.5 -0.15653 1.79160 -28332923.7 0.00172 0.00122 10.6 0.000 0.000 0.000 +2449609.5 -0.18519 1.79997 -28335146.2 0.00167 0.00116 9.4 0.000 0.000 0.000 +2449610.5 -0.21696 1.80807 -28337424.8 0.00162 0.00122 9.5 0.000 0.000 0.000 +2449611.5 -0.24910 1.81594 -28339802.8 0.00164 0.00124 9.1 0.000 0.000 0.000 +2449612.5 -0.27895 1.82349 -28342306.5 0.00153 0.00142 9.2 0.000 0.000 0.000 +2449613.5 -0.30602 1.83106 -28344901.4 0.00136 0.00153 9.8 0.000 0.000 0.000 +2449614.5 -0.33104 1.83951 -28347528.6 0.00153 0.00145 5.7 0.000 0.000 0.000 +2449615.5 -0.35558 1.84979 -28350127.1 0.00150 0.00153 5.0 0.000 0.000 0.000 +2449616.5 -0.38112 1.86164 -28352648.8 0.00154 0.00148 5.3 0.000 0.000 0.000 +2449617.5 -0.40929 1.87313 -28355081.7 0.00163 0.00151 5.3 0.000 0.000 0.000 +2449618.5 -0.43915 1.88392 -28357401.1 0.00160 0.00146 6.0 0.000 0.000 0.000 +2449619.5 -0.46872 1.89487 -28359590.7 0.00165 0.00129 5.9 0.000 0.000 0.000 +2449620.5 -0.49682 1.90643 -28361663.7 0.00145 0.00157 7.8 0.000 0.000 0.000 +2449621.5 -0.52377 1.91865 -28363651.9 0.00127 0.00143 5.6 0.000 0.000 0.000 +2449622.5 -0.55006 1.93122 -28365595.6 0.00132 0.00143 5.4 0.000 0.000 0.000 +2449623.5 -0.57618 1.94422 -28367537.8 0.00134 0.00155 6.1 0.000 0.000 0.000 +2449624.5 -0.60330 1.95882 -28369516.8 0.00131 0.00160 8.8 0.000 0.000 0.000 +2449625.5 -0.62954 1.97501 -28371586.7 0.00132 0.00168 8.6 0.000 0.000 0.000 +2449626.5 -0.65261 1.99234 -28373805.4 0.00139 0.00171 9.6 0.000 0.000 0.000 +2449627.5 -0.67246 2.01064 -28376208.3 0.00138 0.00165 11.4 0.000 0.000 0.000 +2449628.5 -0.69086 2.02961 -28378797.5 0.00137 0.00165 10.1 0.000 0.000 0.000 +2449629.5 -0.71073 2.04854 -28381549.3 0.00189 0.00163 10.0 0.000 0.000 0.000 +2449630.5 -0.73521 2.06646 -28384402.7 0.00189 0.00149 7.7 0.000 0.000 0.000 +2449631.5 -0.76543 2.08230 -28387256.4 0.00186 0.00149 7.7 0.000 0.000 0.000 +2449632.5 -0.79935 2.09618 -28389996.7 0.00186 0.00144 7.0 0.000 0.000 0.000 +2449633.5 -0.83359 2.10902 -28392564.0 0.00194 0.00134 6.0 0.000 0.000 0.000 +2449634.5 -0.86576 2.12146 -28394973.9 0.00211 0.00184 5.7 0.000 0.000 0.000 +2449635.5 -0.89387 2.13396 -28397286.1 0.00169 0.00144 4.6 0.000 0.000 0.000 +2449636.5 -0.91602 2.14709 -28399574.1 0.00134 0.00114 4.7 0.000 0.000 0.000 +2449637.5 -0.93263 2.16176 -28401899.8 0.00133 0.00114 4.7 0.000 0.000 0.000 +2449638.5 -0.94635 2.17897 -28404296.3 0.00137 0.00124 8.8 0.000 0.000 0.000 +2449639.5 -0.95847 2.19856 -28406765.2 0.00120 0.00120 9.2 0.000 0.000 0.000 +2449640.5 -0.96986 2.22006 -28409287.4 0.00115 0.00123 9.1 0.000 0.000 0.000 +2449641.5 -0.98175 2.24280 -28411825.3 0.00120 0.00151 10.6 0.000 0.000 0.000 +2449642.5 -0.99598 2.26620 -28414327.2 0.00137 0.00138 10.1 0.000 0.000 0.000 +2449643.5 -1.01474 2.28971 -28416737.0 0.00139 0.00166 11.7 0.000 0.000 0.000 +2449644.5 -1.03938 2.31284 -28419009.6 0.00157 0.00168 8.4 0.000 0.000 0.000 +2449645.5 -1.06849 2.33482 -28421142.8 0.00150 0.00159 9.9 0.000 0.000 0.000 +2449646.5 -1.09847 2.35615 -28423176.5 0.00145 0.00154 10.0 0.000 0.000 0.000 +2449647.5 -1.12627 2.37786 -28425147.4 0.00130 0.00135 8.5 0.000 0.000 0.000 +2449648.5 -1.15070 2.39963 -28427082.9 0.00108 0.00137 12.4 0.000 0.000 0.000 +2449649.5 -1.17189 2.42116 -28429017.5 0.00113 0.00147 8.5 0.000 0.000 0.000 +2449650.5 -1.19181 2.44233 -28430991.4 0.00118 0.00210 9.0 0.000 0.000 0.000 +2449651.5 -1.21292 2.46316 -28433048.1 0.00117 0.00210 7.8 0.000 0.000 0.000 +2449652.5 -1.23622 2.48406 -28435223.5 0.00121 0.00209 7.9 0.000 0.000 0.000 +2449653.5 -1.26046 2.50493 -28437539.9 0.00123 0.00214 7.9 0.000 0.000 0.000 +2449654.5 -1.28249 2.52544 -28440024.2 0.00152 0.00235 7.4 0.000 0.000 0.000 +2449655.5 -1.30098 2.54599 -28442688.6 0.00159 0.00231 9.4 0.000 0.000 0.000 +2449656.5 -1.31617 2.56726 -28445513.2 0.00155 0.00201 7.1 0.000 0.000 0.000 +2449657.5 -1.32956 2.58929 -28448444.6 0.00160 0.00127 6.5 0.000 0.000 0.000 +2449658.5 -1.34276 2.61103 -28451404.3 0.00156 0.00129 7.3 0.000 0.000 0.000 +2449659.5 -1.35679 2.63171 -28454302.1 0.00161 0.00113 7.9 0.000 0.000 0.000 +2449660.5 -1.37094 2.65203 -28457052.4 0.00157 0.00106 7.7 0.000 0.000 0.000 +2449661.5 -1.38522 2.67302 -28459625.5 0.00121 0.00088 8.1 0.000 0.000 0.000 +2449662.5 -1.39984 2.69520 -28462048.7 0.00157 0.00130 13.7 0.000 0.000 0.000 +2449663.5 -1.41441 2.71839 -28464385.5 0.00139 0.00107 9.4 0.000 0.000 0.000 +2449664.5 -1.42837 2.74237 -28466696.2 0.00149 0.00101 8.9 0.000 0.000 0.000 +2449665.5 -1.44069 2.76710 -28469025.2 0.00163 0.00095 8.1 0.000 0.000 0.000 +2449666.5 -1.44901 2.79302 -28471415.7 0.00165 0.00090 8.5 0.000 0.000 0.000 +2449667.5 -1.45384 2.82000 -28473871.0 0.00167 0.00089 8.4 0.000 0.000 0.000 +2449668.5 -1.45750 2.84761 -28476370.4 0.00176 0.00100 8.4 0.000 0.000 0.000 +2449669.5 -1.46182 2.87546 -28478879.9 0.00137 0.00106 16.6 0.000 0.000 0.000 +2449670.5 -1.46720 2.90284 -28481365.1 0.00138 0.00131 10.4 0.000 0.000 0.000 +2449671.5 -1.47310 2.92919 -28483799.3 0.00135 0.00140 10.5 0.000 0.000 0.000 +2449672.5 -1.47905 2.95481 -28486163.0 0.00101 0.00142 11.6 0.000 0.000 0.000 +2449673.5 -1.48585 2.98092 -28488440.1 0.00101 0.00147 12.2 0.000 0.000 0.000 +2449674.5 -1.49428 3.00777 -28490620.9 0.00109 0.00141 12.2 0.000 0.000 0.000 +2449675.5 -1.50405 3.03494 -28492713.0 0.00100 0.00122 7.9 0.000 0.000 0.000 +2449676.5 -1.51432 3.06208 -28494743.0 0.00092 0.00112 16.6 0.000 0.000 0.000 +2449677.5 -1.52433 3.08958 -28496757.0 0.00133 0.00110 10.2 0.000 0.000 0.000 +2449678.5 -1.53233 3.11810 -28498809.0 0.00129 0.00113 8.2 0.000 0.000 0.000 +2449679.5 -1.53608 3.14737 -28500953.1 0.00141 0.00109 7.5 0.000 0.000 0.000 +2449680.5 -1.53451 3.17596 -28503236.9 0.00165 0.00122 7.8 0.000 0.000 0.000 +2449681.5 -1.52874 3.20398 -28505678.0 0.00179 0.00118 5.7 0.000 0.000 0.000 +2449682.5 -1.52210 3.23177 -28508266.6 0.00199 0.00175 11.3 0.000 0.000 0.000 +2449683.5 -1.51747 3.25926 -28510973.9 0.00230 0.00179 12.0 0.000 0.000 0.000 +2449684.5 -1.51558 3.28652 -28513751.4 0.00193 0.00162 10.6 0.000 0.000 0.000 +2449685.5 -1.51481 3.31377 -28516527.1 0.00184 0.00163 10.7 0.000 0.000 0.000 +2449686.5 -1.51373 3.34091 -28519232.3 0.00171 0.00169 10.9 0.000 0.000 0.000 +2449687.5 -1.51596 3.36744 -28521856.9 0.00148 0.00158 10.9 0.000 0.000 0.000 +2449688.5 -1.52101 3.39279 -28524377.9 0.00145 0.00158 10.0 0.000 0.000 0.000 +2449689.5 -1.52654 3.41669 -28526784.0 0.00125 0.00123 7.6 0.000 0.000 0.000 +2449690.5 -1.52963 3.43905 -28529107.3 0.00092 0.00153 11.1 0.000 0.000 0.000 +2449691.5 -1.52835 3.46035 -28531406.9 0.00097 0.00149 7.2 0.000 0.000 0.000 +2449692.5 -1.52417 3.48150 -28533747.0 0.00106 0.00148 7.9 0.000 0.000 0.000 +2449693.5 -1.51953 3.50355 -28536160.6 0.00104 0.00142 7.9 0.000 0.000 0.000 +2449694.5 -1.51600 3.52779 -28538636.7 0.00124 0.00150 7.5 0.000 0.000 0.000 +2449695.5 -1.51475 3.55430 -28541142.7 0.00150 0.00160 7.7 0.000 0.000 0.000 +2449696.5 -1.51617 3.58244 -28543649.0 0.00160 0.00137 5.2 0.000 0.000 0.000 +2449697.5 -1.52116 3.61108 -28546134.0 0.00164 0.00124 6.9 0.000 0.000 0.000 +2449698.5 -1.52911 3.63897 -28548583.5 0.00156 0.00124 5.2 0.000 0.000 0.000 +2449699.5 -1.53601 3.66548 -28550991.3 0.00156 0.00131 5.2 0.000 0.000 0.000 +2449700.5 -1.53879 3.69123 -28553348.0 0.00150 0.00142 6.2 0.000 0.000 0.000 +2449701.5 -1.54071 3.71764 -28555616.7 0.00146 0.00149 6.2 0.000 0.000 0.000 +2449702.5 -1.54338 3.74486 -28557830.2 0.00148 0.00154 5.9 0.000 0.000 0.000 +2449703.5 -1.54760 3.77262 -28560034.6 0.00116 0.00159 6.4 0.000 0.000 0.000 +2449704.5 -1.55370 3.80031 -28562284.4 0.00130 0.00181 7.7 0.000 0.000 0.000 +2449705.5 -1.56158 3.82732 -28564628.1 0.00119 0.00166 7.0 0.000 0.000 0.000 +2449706.5 -1.57030 3.85280 -28567109.9 0.00122 0.00184 5.5 0.000 0.000 0.000 +2449707.5 -1.57807 3.87619 -28569753.5 0.00119 0.00171 5.6 0.000 0.000 0.000 +2449708.5 -1.58369 3.89880 -28572518.4 0.00100 0.00142 5.5 0.000 0.000 0.000 +2449709.5 -1.58772 3.92144 -28575389.3 0.00098 0.00145 5.5 0.000 0.000 0.000 +2449710.5 -1.59044 3.94500 -28578362.8 0.00107 0.00172 6.5 0.000 0.000 0.000 +2449711.5 -1.59130 3.97060 -28581411.9 0.00143 0.00170 8.7 0.000 0.000 0.000 +2449712.5 -1.59010 3.99878 -28584489.1 0.00146 0.00124 7.0 0.000 0.000 0.000 +2449713.5 -1.58754 4.02935 -28587535.9 0.00148 0.00211 8.0 0.000 0.000 0.000 +2449714.5 -1.58434 4.06129 -28590495.2 0.00147 0.00211 8.1 0.000 0.000 0.000 +2449715.5 -1.57989 4.09311 -28593334.1 0.00153 0.00210 8.2 0.000 0.000 0.000 +2449716.5 -1.57003 4.12443 -28596044.4 0.00153 0.00207 8.1 0.000 0.000 0.000 +2449717.5 -1.55396 4.15536 -28598693.0 0.00148 0.00209 8.1 0.000 0.000 0.000 +2449718.5 -1.53287 4.18576 -28601348.2 0.00141 0.00222 8.5 0.000 0.000 0.000 +2449719.5 -1.50923 4.21499 -28604069.7 0.00118 0.00225 7.5 0.000 0.000 0.000 +2449720.5 -1.48591 4.24239 -28606897.2 0.00091 0.00141 9.5 0.000 0.000 0.000 +2449721.5 -1.46459 4.26788 -28609830.7 0.00074 0.00140 9.2 0.000 0.000 0.000 +2449722.5 -1.44577 4.29191 -28612826.5 0.00075 0.00140 9.9 0.000 0.000 0.000 +2449723.5 -1.42926 4.31415 -28615809.1 0.00071 0.00139 10.4 0.000 0.000 0.000 +2449724.5 -1.41472 4.33451 -28618716.6 0.00109 0.00199 11.3 0.000 0.000 0.000 +2449725.5 -1.40143 4.35354 -28621501.9 0.00146 0.00266 16.2 0.000 0.000 0.000 +2449726.5 -1.38787 4.37235 -28624135.2 0.00123 0.00223 8.0 0.000 0.000 0.000 +2449727.5 -1.37236 4.39282 -28626602.4 0.00123 0.00231 8.1 0.000 0.000 0.000 +2449728.5 -1.35489 4.41672 -28628908.2 0.00122 0.00235 7.8 0.000 0.000 0.000 +2449729.5 -1.33806 4.44262 -28631094.8 0.00124 0.00232 7.2 0.000 0.000 0.000 +2449730.5 -1.32264 4.46893 -28633208.4 0.00114 0.00228 6.7 0.000 0.000 0.000 +2449731.5 -1.30917 4.49500 -28635288.0 0.00091 0.00178 8.3 0.000 0.000 0.000 +2449732.5 -1.29868 4.52070 -28637379.7 0.00120 0.00158 15.2 0.000 0.000 0.000 +2449733.5 -1.29147 4.54566 -28639521.0 0.00211 0.00164 12.0 0.000 0.000 0.000 +2449734.5 -1.28649 4.56912 -28641740.6 0.00213 0.00160 11.7 0.000 0.000 0.000 +2449735.5 -1.28172 4.59053 -28644070.1 0.00216 0.00143 11.9 0.000 0.000 0.000 +2449736.5 -1.27371 4.60996 -28646553.5 0.00216 0.00134 12.0 0.000 0.000 0.000 +2449737.5 -1.26270 4.62758 -28649176.1 0.00222 0.00144 9.7 0.000 0.000 0.000 +2449738.5 -1.25024 4.64414 -28651911.1 0.00169 0.00124 7.3 0.000 0.000 0.000 +2449739.5 -1.23694 4.66111 -28654721.6 0.00096 0.00096 7.0 0.000 0.000 0.000 +2449740.5 -1.22273 4.68017 -28657565.6 0.00098 0.00105 6.9 0.000 0.000 0.000 +2449741.5 -1.20794 4.70207 -28660394.5 0.00099 0.00110 7.9 0.000 0.000 0.000 +2449742.5 -1.19340 4.72603 -28663167.3 0.00101 0.00109 7.8 0.000 0.000 0.000 +2449743.5 -1.17953 4.75118 -28665879.7 0.00104 0.00110 7.7 0.000 0.000 0.000 +2449744.5 -1.16755 4.77532 -28668551.4 0.00100 0.00108 7.1 0.000 0.000 0.000 +2449745.5 -1.15875 4.79697 -28671202.7 0.00118 0.00113 9.3 0.000 0.000 0.000 +2449746.5 -1.15313 4.81631 -28673884.6 0.00159 0.00120 12.3 0.000 0.000 0.000 +2449747.5 -1.15083 4.83355 -28676637.3 0.00179 0.00179 6.9 0.000 0.000 0.000 +2449748.5 -1.15184 4.84930 -28679469.0 0.00228 0.00183 11.4 0.000 0.000 0.000 +2449749.5 -1.15528 4.86440 -28682350.4 0.00254 0.00184 11.3 0.000 0.000 0.000 +2449750.5 -1.15867 4.87946 -28685234.2 0.00254 0.00181 11.7 0.000 0.000 0.000 +2449751.5 -1.15847 4.89401 -28688095.6 0.00254 0.00183 11.6 0.000 0.000 0.000 +2449752.5 -1.15134 4.90774 -28690918.0 0.00257 0.00184 12.3 0.000 0.000 0.000 +2449753.5 -1.13836 4.92124 -28693666.5 0.00256 0.00188 14.4 0.000 0.000 0.000 +2449754.5 -1.11941 4.93579 -28696316.8 0.00240 0.00164 12.5 0.000 0.000 0.000 +2449755.5 -1.09396 4.95272 -28698846.3 0.00204 0.00188 13.1 0.000 0.000 0.000 +2449756.5 -1.06373 4.97297 -28701237.4 0.00199 0.00189 13.3 0.000 0.000 0.000 +2449757.5 -1.03189 4.99670 -28703499.0 0.00192 0.00191 13.3 0.000 0.000 0.000 +2449758.5 -1.00256 5.02165 -28705692.0 0.00195 0.00184 13.3 0.000 0.000 0.000 +2449759.5 -0.97905 5.04482 -28707857.0 0.00179 0.00170 12.7 0.000 0.000 0.000 +2449760.5 -0.96191 5.06464 -28710031.1 0.00176 0.00116 16.0 0.000 0.000 0.000 +2449761.5 -0.94990 5.08104 -28712264.8 0.00205 0.00126 10.0 0.000 0.000 0.000 +2449762.5 -0.94017 5.09489 -28714603.5 0.00195 0.00118 10.2 0.000 0.000 0.000 +2449763.5 -0.92852 5.10774 -28717084.3 0.00186 0.00109 10.2 0.000 0.000 0.000 +2449764.5 -0.91097 5.12182 -28719734.5 0.00187 0.00108 9.5 0.000 0.000 0.000 +2449765.5 -0.89000 5.13717 -28722517.4 0.00188 0.00117 8.5 0.000 0.000 0.000 +2449766.5 -0.86917 5.15258 -28725361.1 0.00187 0.00112 10.5 0.000 0.000 0.000 +2449767.5 -0.85056 5.16752 -28728199.8 0.00152 0.00116 12.8 0.000 0.000 0.000 +2449768.5 -0.83440 5.18095 -28730974.0 0.00119 0.00151 5.5 0.000 0.000 0.000 +2449769.5 -0.81966 5.19256 -28733644.9 0.00138 0.00157 6.6 0.000 0.000 0.000 +2449770.5 -0.80493 5.20348 -28736205.0 0.00138 0.00168 6.6 0.000 0.000 0.000 +2449771.5 -0.78831 5.21587 -28738677.6 0.00126 0.00165 7.1 0.000 0.000 0.000 +2449772.5 -0.76735 5.23079 -28741117.7 0.00133 0.00185 6.2 0.000 0.000 0.000 +2449773.5 -0.73988 5.24853 -28743601.5 0.00140 0.00192 7.4 0.000 0.000 0.000 +2449774.5 -0.70705 5.26826 -28746184.5 0.00164 0.00182 14.5 0.000 0.000 0.000 +2449775.5 -0.67138 5.28804 -28748896.4 0.00180 0.00183 12.3 0.000 0.000 0.000 +2449776.5 -0.63501 5.30631 -28751732.8 0.00248 0.00173 20.8 0.000 0.000 0.000 +2449777.5 -0.59931 5.32261 -28754667.2 0.00244 0.00179 20.4 0.000 0.000 0.000 +2449778.5 -0.56518 5.33684 -28757672.2 0.00241 0.00166 18.2 0.000 0.000 0.000 +2449779.5 -0.53247 5.34960 -28760716.8 0.00235 0.00164 17.3 0.000 0.000 0.000 +2449780.5 -0.49956 5.36176 -28763770.7 0.00199 0.00119 7.8 0.000 0.000 0.000 +2449781.5 -0.46630 5.37386 -28766780.4 0.00180 0.00118 7.0 0.000 0.000 0.000 +2449782.5 -0.43307 5.38637 -28769697.5 0.00146 0.00118 6.3 0.000 0.000 0.000 +2449783.5 -0.40057 5.39959 -28772492.3 0.00117 0.00115 4.4 0.000 0.000 0.000 +2449784.5 -0.36954 5.41318 -28775163.5 0.00115 0.00111 5.1 0.000 0.000 0.000 +2449785.5 -0.34151 5.42601 -28777785.6 0.00114 0.00113 5.8 0.000 0.000 0.000 +2449786.5 -0.31683 5.43714 -28780429.4 0.00115 0.00122 5.7 0.000 0.000 0.000 +2449787.5 -0.29546 5.44601 -28783128.8 0.00176 0.00129 8.9 0.000 0.000 0.000 +2449788.5 -0.27693 5.45246 -28785901.5 0.00253 0.00117 13.1 0.000 0.000 0.000 +2449789.5 -0.26064 5.45591 -28788762.6 0.00243 0.00124 11.0 0.000 0.000 0.000 +2449790.5 -0.24415 5.45717 -28791712.3 0.00251 0.00124 10.7 0.000 0.000 0.000 +2449791.5 -0.22327 5.45875 -28794753.0 0.00250 0.00126 9.9 0.000 0.000 0.000 +2449792.5 -0.19667 5.46308 -28797912.9 0.00241 0.00101 13.4 0.000 0.000 0.000 +2449793.5 -0.16735 5.47039 -28801169.6 0.00245 0.00103 13.3 0.000 0.000 0.000 +2449794.5 -0.13809 5.47944 -28804465.2 0.00197 0.00102 14.4 0.000 0.000 0.000 +2449795.5 -0.11067 5.48928 -28807719.9 0.00160 0.00093 18.1 0.000 0.000 0.000 +2449796.5 -0.08706 5.49929 -28810859.5 0.00144 0.00087 12.9 0.000 0.000 0.000 +2449797.5 -0.06761 5.50869 -28813810.9 0.00206 0.00085 12.9 0.000 0.000 0.000 +2449798.5 -0.05012 5.51642 -28816537.2 0.00209 0.00086 9.5 0.000 0.000 0.000 +2449799.5 -0.03177 5.52184 -28819077.0 0.00214 0.00111 9.3 0.000 0.000 0.000 +2449800.5 -0.00815 5.52575 -28821550.6 0.00208 0.00117 9.3 0.000 0.000 0.000 +2449801.5 0.02568 5.52962 -28824063.1 0.00211 0.00137 7.7 0.000 0.000 0.000 +2449802.5 0.06971 5.53543 -28826667.9 0.00233 0.00191 9.2 0.000 0.000 0.000 +2449803.5 0.12028 5.54441 -28829382.3 0.00209 0.00185 6.6 0.000 0.000 0.000 +2449804.5 0.17112 5.55626 -28832195.1 0.00170 0.00213 4.5 0.000 0.000 0.000 +2449805.5 0.21686 5.56898 -28835072.3 0.00146 0.00202 4.5 0.000 0.000 0.000 +2449806.5 0.25640 5.57870 -28837975.4 0.00154 0.00196 5.3 0.000 0.000 0.000 +2449807.5 0.29048 5.58428 -28840856.8 0.00154 0.00200 5.1 0.000 0.000 0.000 +2449808.5 0.32126 5.58623 -28843675.7 0.00131 0.00178 5.0 0.000 0.000 0.000 +2449809.5 0.35156 5.58580 -28846410.4 0.00123 0.00124 11.8 0.000 0.000 0.000 +2449810.5 0.38298 5.58432 -28849051.7 0.00124 0.00121 13.9 0.000 0.000 0.000 +2449811.5 0.41513 5.58208 -28851601.8 0.00121 0.00127 14.0 0.000 0.000 0.000 +2449812.5 0.44702 5.57894 -28854067.7 0.00114 0.00129 14.4 0.000 0.000 0.000 +2449813.5 0.47958 5.57675 -28856487.6 0.00105 0.00118 15.3 0.000 0.000 0.000 +2449814.5 0.51233 5.57664 -28858930.3 0.00106 0.00117 15.5 0.000 0.000 0.000 +2449815.5 0.54374 5.57814 -28861437.3 0.00086 0.00160 13.7 0.000 0.000 0.000 +2449816.5 0.57320 5.57990 -28864021.5 0.00111 0.00177 18.0 0.000 0.000 0.000 +2449817.5 0.60190 5.58074 -28866692.8 0.00181 0.00180 17.3 0.000 0.000 0.000 +2449818.5 0.63089 5.58016 -28869489.9 0.00199 0.00181 16.2 0.000 0.000 0.000 +2449819.5 0.66009 5.57813 -28872437.5 0.00203 0.00180 15.0 0.000 0.000 0.000 +2449820.5 0.69065 5.57495 -28875529.1 0.00206 0.00186 15.5 0.000 0.000 0.000 +2449821.5 0.72222 5.57077 -28878682.4 0.00220 0.00188 15.6 0.000 0.000 0.000 +2449822.5 0.75549 5.56641 -28881828.4 0.00222 0.00130 15.2 0.000 0.000 0.000 +2449823.5 0.79018 5.56292 -28884916.1 0.00187 0.00143 15.0 0.000 0.000 0.000 +2449824.5 0.82491 5.56054 -28887908.4 0.00187 0.00088 7.4 0.000 0.000 0.000 +2449825.5 0.85807 5.55889 -28890781.5 0.00165 0.00118 6.7 0.000 0.000 0.000 +2449826.5 0.88898 5.55777 -28893544.8 0.00164 0.00123 6.1 0.000 0.000 0.000 +2449827.5 0.91762 5.55705 -28896219.3 0.00167 0.00126 6.1 0.000 0.000 0.000 +2449828.5 0.94743 5.55506 -28898868.6 0.00154 0.00128 5.5 0.000 0.000 0.000 +2449829.5 0.98185 5.55045 -28901563.4 0.00142 0.00123 5.5 0.000 0.000 0.000 +2449830.5 1.01826 5.54331 -28904327.4 0.00120 0.00155 5.6 0.000 0.000 0.000 +2449831.5 1.05580 5.53439 -28907166.3 0.00118 0.00134 5.9 0.000 0.000 0.000 +2449832.5 1.09551 5.52427 -28910066.2 0.00110 0.00117 6.5 0.000 0.000 0.000 +2449833.5 1.13731 5.51313 -28912996.4 0.00093 0.00118 6.6 0.000 0.000 0.000 +2449834.5 1.17955 5.50101 -28915898.1 0.00094 0.00113 9.8 0.000 0.000 0.000 +2449835.5 1.22104 5.48799 -28918709.1 0.00095 0.00115 9.6 0.000 0.000 0.000 +2449836.5 1.26103 5.47418 -28921392.0 0.00085 0.00115 10.0 0.000 0.000 0.000 +2449837.5 1.29907 5.45981 -28923934.1 0.00104 0.00085 10.2 0.000 0.000 0.000 +2449838.5 1.33528 5.44490 -28926344.8 0.00099 0.00076 7.7 0.000 0.000 0.000 +2449839.5 1.37054 5.42996 -28928679.7 0.00102 0.00085 7.8 0.000 0.000 0.000 +2449840.5 1.40555 5.41558 -28931005.2 0.00105 0.00084 4.1 0.000 0.000 0.000 +2449841.5 1.44053 5.40119 -28933368.3 0.00115 0.00081 10.8 0.000 0.000 0.000 +2449842.5 1.47592 5.38616 -28935790.4 0.00127 0.00080 12.2 0.000 0.000 0.000 +2449843.5 1.51289 5.37058 -28938278.2 0.00099 0.00079 13.5 0.000 0.000 0.000 +2449844.5 1.55256 5.35515 -28940832.1 0.00183 0.00096 32.5 0.000 0.000 0.000 +2449845.5 1.59463 5.34017 -28943459.8 0.00268 0.00154 21.1 0.000 0.000 0.000 +2449846.5 1.63727 5.32545 -28946200.2 0.00268 0.00154 21.3 0.000 0.000 0.000 +2449847.5 1.67789 5.31051 -28949072.6 0.00258 0.00152 16.9 0.000 0.000 0.000 +2449848.5 1.71501 5.29491 -28952058.1 0.00255 0.00154 16.8 0.000 0.000 0.000 +2449849.5 1.74834 5.27838 -28955095.6 0.00252 0.00159 16.4 0.000 0.000 0.000 +2449850.5 1.77945 5.26138 -28958097.5 0.00252 0.00170 16.4 0.000 0.000 0.000 +2449851.5 1.81007 5.24476 -28961017.7 0.00127 0.00133 13.2 0.000 0.000 0.000 +2449852.5 1.84026 5.22890 -28963841.1 0.00119 0.00105 7.9 0.000 0.000 0.000 +2449853.5 1.86930 5.21359 -28966554.3 0.00113 0.00116 8.0 0.000 0.000 0.000 +2449854.5 1.89591 5.19800 -28969174.4 0.00112 0.00143 5.0 0.000 0.000 0.000 +2449855.5 1.91861 5.18073 -28971737.7 0.00104 0.00144 3.5 0.000 0.000 0.000 +2449856.5 1.93793 5.16125 -28974287.3 0.00110 0.00149 5.1 0.000 0.000 0.000 +2449857.5 1.95526 5.13921 -28976848.6 0.00096 0.00139 4.9 0.000 0.000 0.000 +2449858.5 1.97239 5.11487 -28979419.2 0.00114 0.00163 11.9 0.000 0.000 0.000 +2449859.5 1.99128 5.08978 -28981969.6 0.00111 0.00140 10.4 0.000 0.000 0.000 +2449860.5 2.01242 5.06518 -28984461.4 0.00112 0.00116 14.7 0.000 0.000 0.000 +2449861.5 2.03433 5.04134 -28986856.0 0.00114 0.00113 15.6 0.000 0.000 0.000 +2449862.5 2.05518 5.01806 -28989131.9 0.00105 0.00100 14.5 0.000 0.000 0.000 +2449863.5 2.07517 4.99469 -28991316.4 0.00104 0.00097 16.4 0.000 0.000 0.000 +2449864.5 2.09485 4.97044 -28993418.6 0.00104 0.00089 16.4 0.000 0.000 0.000 +2449865.5 2.11434 4.94507 -28995429.9 0.00060 0.00106 14.3 0.000 0.000 0.000 +2449866.5 2.13405 4.91842 -28997369.7 0.00074 0.00139 9.6 0.000 0.000 0.000 +2449867.5 2.15435 4.89041 -28999265.0 0.00072 0.00150 9.2 0.000 0.000 0.000 +2449868.5 2.17528 4.86146 -29001146.0 0.00069 0.00154 10.2 0.000 0.000 0.000 +2449869.5 2.19743 4.83245 -29003045.8 0.00068 0.00154 10.7 0.000 0.000 0.000 +2449870.5 2.22205 4.80299 -29005009.4 0.00067 0.00151 10.7 0.000 0.000 0.000 +2449871.5 2.25012 4.77211 -29007072.1 0.00070 0.00153 10.8 0.000 0.000 0.000 +2449872.5 2.28109 4.73995 -29009248.2 0.00095 0.00167 15.3 0.000 0.000 0.000 +2449873.5 2.31354 4.70749 -29011522.8 0.00116 0.00189 12.4 0.000 0.000 0.000 +2449874.5 2.34537 4.67620 -29013879.8 0.00122 0.00186 11.8 0.000 0.000 0.000 +2449875.5 2.37545 4.64732 -29016297.4 0.00132 0.00187 10.1 0.000 0.000 0.000 +2449876.5 2.40498 4.62064 -29018757.3 0.00133 0.00191 10.9 0.000 0.000 0.000 +2449877.5 2.43343 4.59279 -29021203.5 0.00131 0.00186 10.7 0.000 0.000 0.000 +2449878.5 2.45955 4.56341 -29023574.2 0.00125 0.00186 9.9 0.000 0.000 0.000 +2449879.5 2.48290 4.53361 -29025833.2 0.00079 0.00162 12.3 0.000 0.000 0.000 +2449880.5 2.50356 4.50358 -29027975.6 0.00088 0.00155 13.6 0.000 0.000 0.000 +2449881.5 2.52254 4.47266 -29030031.2 0.00068 0.00142 13.0 0.000 0.000 0.000 +2449882.5 2.54171 4.44045 -29032068.3 0.00068 0.00135 12.5 0.000 0.000 0.000 +2449883.5 2.56214 4.40757 -29034148.9 0.00064 0.00132 13.8 0.000 0.000 0.000 +2449884.5 2.58413 4.37499 -29036273.8 0.00068 0.00131 13.9 0.000 0.000 0.000 +2449885.5 2.60743 4.34295 -29038465.6 0.00064 0.00136 13.9 0.000 0.000 0.000 +2449886.5 2.63119 4.31124 -29040708.7 0.00076 0.00130 23.5 0.000 0.000 0.000 +2449887.5 2.65449 4.27914 -29042955.8 0.00112 0.00148 23.7 0.000 0.000 0.000 +2449888.5 2.67601 4.24571 -29045157.1 0.00117 0.00151 21.4 0.000 0.000 0.000 +2449889.5 2.69481 4.21036 -29047268.9 0.00126 0.00161 18.6 0.000 0.000 0.000 +2449890.5 2.71058 4.17416 -29049251.1 0.00126 0.00173 22.5 0.000 0.000 0.000 +2449891.5 2.72296 4.13814 -29051065.0 0.00107 0.00169 23.8 0.000 0.000 0.000 +2449892.5 2.73194 4.10285 -29052678.7 0.00101 0.00169 23.2 0.000 0.000 0.000 +2449893.5 2.73870 4.06829 -29054095.5 0.00136 0.00169 15.4 0.000 0.000 0.000 +2449894.5 2.74541 4.03355 -29055363.8 0.00145 0.00153 12.9 0.000 0.000 0.000 +2449895.5 2.75357 3.99739 -29056532.8 0.00145 0.00150 12.6 0.000 0.000 0.000 +2449896.5 2.76349 3.95981 -29057658.0 0.00144 0.00144 11.1 0.000 0.000 0.000 +2449897.5 2.77477 3.92228 -29058806.5 0.00151 0.00148 12.1 0.000 0.000 0.000 +2449898.5 2.78742 3.88481 -29060036.8 0.00162 0.00144 12.1 0.000 0.000 0.000 +2449899.5 2.80038 3.84641 -29061389.1 0.00175 0.00138 11.8 0.000 0.000 0.000 +2449900.5 2.81210 3.80678 -29062884.6 0.00150 0.00089 17.4 0.000 0.000 0.000 +2449901.5 2.82182 3.76587 -29064522.5 0.00132 0.00109 21.5 0.000 0.000 0.000 +2449902.5 2.83058 3.72384 -29066256.1 0.00160 0.00099 20.5 0.000 0.000 0.000 +2449903.5 2.83983 3.68178 -29068020.9 0.00157 0.00105 14.6 0.000 0.000 0.000 +2449904.5 2.84901 3.64089 -29069760.9 0.00146 0.00101 14.8 0.000 0.000 0.000 +2449905.5 2.85655 3.60114 -29071446.9 0.00113 0.00104 18.2 0.000 0.000 0.000 +2449906.5 2.86167 3.56162 -29073054.2 0.00126 0.00107 17.2 0.000 0.000 0.000 +2449907.5 2.86495 3.52203 -29074572.4 0.00155 0.00101 17.9 0.000 0.000 0.000 +2449908.5 2.86750 3.48289 -29076018.2 0.00152 0.00101 14.0 0.000 0.000 0.000 +2449909.5 2.87070 3.44474 -29077433.6 0.00150 0.00090 15.0 0.000 0.000 0.000 +2449910.5 2.87425 3.40788 -29078877.2 0.00146 0.00095 14.7 0.000 0.000 0.000 +2449911.5 2.87594 3.37202 -29080394.2 0.00147 0.00124 14.4 0.000 0.000 0.000 +2449912.5 2.87627 3.33653 -29081998.7 0.00131 0.00125 14.3 0.000 0.000 0.000 +2449913.5 2.87698 3.30058 -29083699.4 0.00125 0.00134 11.0 0.000 0.000 0.000 +2449914.5 2.87852 3.26362 -29085456.4 0.00102 0.00170 14.9 0.000 0.000 0.000 +2449915.5 2.87985 3.22574 -29087202.9 0.00135 0.00174 11.4 0.000 0.000 0.000 +2449916.5 2.87965 3.18761 -29088868.7 0.00140 0.00174 12.4 0.000 0.000 0.000 +2449917.5 2.87771 3.14968 -29090403.1 0.00139 0.00156 11.3 0.000 0.000 0.000 +2449918.5 2.87592 3.11163 -29091780.9 0.00148 0.00156 11.4 0.000 0.000 0.000 +2449919.5 2.87468 3.07310 -29092999.9 0.00154 0.00155 9.9 0.000 0.000 0.000 +2449920.5 2.87290 3.03414 -29094066.3 0.00132 0.00155 7.5 0.000 0.000 0.000 +2449921.5 2.86934 2.99489 -29095007.8 0.00127 0.00155 6.5 0.000 0.000 0.000 +2449922.5 2.86469 2.95539 -29095867.4 0.00138 0.00170 6.3 0.000 0.000 0.000 +2449923.5 2.85998 2.91593 -29096687.5 0.00149 0.00168 7.4 0.000 0.000 0.000 +2449924.5 2.85408 2.87678 -29097508.6 0.00144 0.00163 7.5 0.000 0.000 0.000 +2449925.5 2.84548 2.83810 -29098368.0 0.00141 0.00157 8.8 0.000 0.000 0.000 +2449926.5 2.83561 2.80019 -29099294.0 0.00138 0.00145 10.4 0.000 0.000 0.000 +2449927.5 2.82498 2.76281 -29100314.3 0.00165 0.00102 14.4 0.000 0.000 0.000 +2449928.5 2.81351 2.72495 -29101453.0 0.00113 0.00062 24.9 0.000 0.000 0.000 +2449929.5 2.80271 2.68604 -29102723.0 0.00091 0.00071 15.4 0.000 0.000 0.000 +2449930.5 2.79444 2.64662 -29104102.4 0.00088 0.00075 15.3 0.000 0.000 0.000 +2449931.5 2.78855 2.60726 -29105541.8 0.00083 0.00068 14.0 0.000 0.000 0.000 +2449932.5 2.78263 2.56817 -29106973.9 0.00084 0.00081 13.0 0.000 0.000 0.000 +2449933.5 2.77534 2.52879 -29108359.2 0.00069 0.00085 10.9 0.000 0.000 0.000 +2449934.5 2.76694 2.48930 -29109690.3 0.00065 0.00099 11.0 0.000 0.000 0.000 +2449935.5 2.75795 2.45061 -29110989.8 0.00094 0.00144 11.3 0.000 0.000 0.000 +2449936.5 2.74818 2.41321 -29112295.1 0.00117 0.00159 10.0 0.000 0.000 0.000 +2449937.5 2.73674 2.37691 -29113648.3 0.00126 0.00152 10.1 0.000 0.000 0.000 +2449938.5 2.72262 2.34117 -29115092.2 0.00128 0.00141 7.9 0.000 0.000 0.000 +2449939.5 2.70566 2.30538 -29116654.4 0.00124 0.00137 8.2 0.000 0.000 0.000 +2449940.5 2.68904 2.26952 -29118335.5 0.00119 0.00142 7.8 0.000 0.000 0.000 +2449941.5 2.67444 2.23360 -29120095.9 0.00124 0.00134 7.8 0.000 0.000 0.000 +2449942.5 2.66069 2.19782 -29121879.1 0.00126 0.00117 10.3 0.000 0.000 0.000 +2449943.5 2.64547 2.16302 -29123625.8 0.00100 0.00150 4.8 0.000 0.000 0.000 +2449944.5 2.62594 2.12951 -29125291.9 0.00095 0.00155 5.0 0.000 0.000 0.000 +2449945.5 2.60144 2.09660 -29126858.9 0.00091 0.00156 7.2 0.000 0.000 0.000 +2449946.5 2.57594 2.06467 -29128326.3 0.00095 0.00149 7.5 0.000 0.000 0.000 +2449947.5 2.55239 2.03430 -29129700.7 0.00102 0.00147 8.8 0.000 0.000 0.000 +2449948.5 2.53082 2.00524 -29131015.3 0.00098 0.00137 9.8 0.000 0.000 0.000 +2449949.5 2.51000 1.97703 -29132313.9 0.00111 0.00081 9.7 0.000 0.000 0.000 +2449950.5 2.49010 1.94922 -29133633.6 0.00162 0.00115 7.6 0.000 0.000 0.000 +2449951.5 2.47104 1.92109 -29135007.3 0.00178 0.00122 6.7 0.000 0.000 0.000 +2449952.5 2.45086 1.89226 -29136459.0 0.00187 0.00122 7.2 0.000 0.000 0.000 +2449953.5 2.42781 1.86366 -29137997.5 0.00175 0.00176 6.3 0.000 0.000 0.000 +2449954.5 2.40341 1.83468 -29139644.8 0.00168 0.00174 5.8 0.000 0.000 0.000 +2449955.5 2.38059 1.80495 -29141440.1 0.00165 0.00169 7.9 0.000 0.000 0.000 +2449956.5 2.36004 1.77564 -29143390.3 0.00158 0.00167 8.2 0.000 0.000 0.000 +2449957.5 2.34009 1.74771 -29145453.6 0.00107 0.00163 8.1 0.000 0.000 0.000 +2449958.5 2.32027 1.72138 -29147588.1 0.00099 0.00177 8.6 0.000 0.000 0.000 +2449959.5 2.29874 1.69566 -29149699.9 0.00107 0.00176 9.4 0.000 0.000 0.000 +2449960.5 2.27340 1.66976 -29151764.4 0.00105 0.00120 10.6 0.000 0.000 0.000 +2449961.5 2.24575 1.64382 -29153779.9 0.00120 0.00112 8.5 0.000 0.000 0.000 +2449962.5 2.21846 1.61831 -29155758.4 0.00131 0.00119 12.5 0.000 0.000 0.000 +2449963.5 2.19311 1.59407 -29157719.0 0.00149 0.00131 19.3 0.000 0.000 0.000 +2449964.5 2.17031 1.57159 -29159693.5 0.00142 0.00126 12.1 0.000 0.000 0.000 +2449965.5 2.14905 1.55077 -29161719.4 0.00142 0.00111 12.4 0.000 0.000 0.000 +2449966.5 2.12643 1.53088 -29163825.7 0.00142 0.00109 12.1 0.000 0.000 0.000 +2449967.5 2.09932 1.51094 -29166018.7 0.00131 0.00109 13.4 0.000 0.000 0.000 +2449968.5 2.06872 1.48871 -29168300.0 0.00128 0.00109 11.0 0.000 0.000 0.000 +2449969.5 2.03698 1.46394 -29170645.4 0.00118 0.00110 10.9 0.000 0.000 0.000 +2449970.5 2.00473 1.43761 -29172986.9 0.00147 0.00112 21.5 0.000 0.000 0.000 +2449971.5 1.97208 1.41003 -29175255.9 0.00134 0.00123 11.6 0.000 0.000 0.000 +2449972.5 1.93977 1.38129 -29177411.4 0.00119 0.00129 13.4 0.000 0.000 0.000 +2449973.5 1.90938 1.35312 -29179441.7 0.00115 0.00134 11.7 0.000 0.000 0.000 +2449974.5 1.88172 1.32879 -29181363.4 0.00110 0.00142 11.1 0.000 0.000 0.000 +2449975.5 1.85565 1.30880 -29183215.0 0.00101 0.00132 11.2 0.000 0.000 0.000 +2449976.5 1.82900 1.29136 -29185038.6 0.00104 0.00146 7.2 0.000 0.000 0.000 +2449977.5 1.80043 1.27414 -29186866.1 0.00133 0.00142 7.3 0.000 0.000 0.000 +2449978.5 1.77045 1.25588 -29188719.2 0.00144 0.00181 5.9 0.000 0.000 0.000 +2449979.5 1.74130 1.23648 -29190616.7 0.00150 0.00197 5.0 0.000 0.000 0.000 +2449980.5 1.71329 1.21680 -29192586.5 0.00156 0.00205 4.8 0.000 0.000 0.000 +2449981.5 1.68336 1.19818 -29194699.6 0.00161 0.00208 4.8 0.000 0.000 0.000 +2449982.5 1.65130 1.18085 -29196985.4 0.00150 0.00205 4.7 0.000 0.000 0.000 +2449983.5 1.61791 1.16488 -29199433.9 0.00153 0.00202 5.5 0.000 0.000 0.000 +2449984.5 1.58569 1.14936 -29202016.1 0.00103 0.00179 8.0 0.000 0.000 0.000 +2449985.5 1.55551 1.13434 -29204683.9 0.00109 0.00199 6.6 0.000 0.000 0.000 +2449986.5 1.52661 1.12041 -29207374.8 0.00088 0.00191 7.8 0.000 0.000 0.000 +2449987.5 1.49789 1.10820 -29210020.4 0.00084 0.00185 8.1 0.000 0.000 0.000 +2449988.5 1.46976 1.09859 -29212556.3 0.00089 0.00186 8.9 0.000 0.000 0.000 +2449989.5 1.44183 1.08989 -29214976.0 0.00091 0.00184 8.1 0.000 0.000 0.000 +2449990.5 1.41239 1.08057 -29217311.4 0.00102 0.00171 10.0 0.000 0.000 0.000 +2449991.5 1.38014 1.07044 -29219616.5 0.00091 0.00131 10.4 0.000 0.000 0.000 +2449992.5 1.34470 1.06006 -29221952.3 0.00131 0.00110 7.9 0.000 0.000 0.000 +2449993.5 1.30598 1.05020 -29224366.0 0.00129 0.00111 7.0 0.000 0.000 0.000 +2449994.5 1.26478 1.04064 -29226874.9 0.00127 0.00111 7.6 0.000 0.000 0.000 +2449995.5 1.22512 1.03081 -29229454.7 0.00128 0.00114 10.0 0.000 0.000 0.000 +2449996.5 1.18676 1.01958 -29232092.7 0.00127 0.00117 9.8 0.000 0.000 0.000 +2449997.5 1.14763 1.00662 -29234768.1 0.00126 0.00105 9.7 0.000 0.000 0.000 +2449998.5 1.10740 0.99220 -29237438.0 0.00098 0.00116 15.4 0.000 0.000 0.000 +2449999.5 1.06593 0.97644 -29240040.3 0.00169 0.00155 15.5 0.000 0.000 0.000 +2450000.5 1.02375 0.95965 -29242510.8 0.00212 0.00161 14.8 0.000 0.000 0.000 +2450001.5 0.98227 0.94297 -29244819.3 0.00219 0.00180 15.4 0.000 0.000 0.000 +2450002.5 0.94376 0.92761 -29246991.2 0.00228 0.00174 15.8 0.000 0.000 0.000 +2450003.5 0.90901 0.91488 -29249038.7 0.00231 0.00182 15.8 0.000 0.000 0.000 +2450004.5 0.87799 0.90613 -29250989.1 0.00229 0.00182 18.3 0.000 0.000 0.000 +2450005.5 0.84631 0.90039 -29252900.3 0.00197 0.00153 16.6 0.000 0.000 0.000 +2450006.5 0.81044 0.89447 -29254819.2 0.00165 0.00142 14.0 0.000 0.000 0.000 +2450007.5 0.77127 0.88652 -29256793.2 0.00152 0.00115 13.6 0.000 0.000 0.000 +2450008.5 0.73223 0.87715 -29258861.4 0.00124 0.00122 14.0 0.000 0.000 0.000 +2450009.5 0.69736 0.86829 -29261021.1 0.00125 0.00106 13.7 0.000 0.000 0.000 +2450010.5 0.66879 0.86123 -29263261.7 0.00143 0.00108 11.0 0.000 0.000 0.000 +2450011.5 0.64465 0.85715 -29265605.0 0.00151 0.00106 10.9 0.000 0.000 0.000 +2450012.5 0.61991 0.85563 -29268035.9 0.00193 0.00129 14.7 0.000 0.000 0.000 +2450013.5 0.59029 0.85459 -29270502.8 0.00151 0.00138 11.4 0.000 0.000 0.000 +2450014.5 0.55439 0.85199 -29272965.2 0.00146 0.00131 9.1 0.000 0.000 0.000 +2450015.5 0.51330 0.84695 -29275390.9 0.00130 0.00130 9.6 0.000 0.000 0.000 +2450016.5 0.47005 0.84053 -29277756.0 0.00122 0.00150 7.9 0.000 0.000 0.000 +2450017.5 0.42706 0.83335 -29280049.7 0.00110 0.00146 6.8 0.000 0.000 0.000 +2450018.5 0.38665 0.82690 -29282302.3 0.00099 0.00148 6.9 0.000 0.000 0.000 +2450019.5 0.34982 0.82314 -29284577.1 0.00106 0.00131 6.7 0.000 0.000 0.000 +2450020.5 0.31569 0.82272 -29286934.2 0.00092 0.00105 6.0 0.000 0.000 0.000 +2450021.5 0.28269 0.82458 -29289415.7 0.00097 0.00106 6.9 0.000 0.000 0.000 +2450022.5 0.25017 0.82744 -29292036.6 0.00097 0.00098 7.1 0.000 0.000 0.000 +2450023.5 0.21850 0.83080 -29294778.1 0.00089 0.00097 7.3 0.000 0.000 0.000 +2450024.5 0.18577 0.83438 -29297551.9 0.00089 0.00100 7.3 0.000 0.000 0.000 +2450025.5 0.15039 0.83799 -29300274.8 0.00085 0.00104 6.9 0.000 0.000 0.000 +2450026.5 0.11291 0.84137 -29302899.6 0.00095 0.00185 12.6 0.000 0.000 0.000 +2450027.5 0.07445 0.84447 -29305397.9 0.00086 0.00184 15.8 0.000 0.000 0.000 +2450028.5 0.03643 0.84770 -29307770.7 0.00098 0.00188 15.6 0.000 0.000 0.000 +2450029.5 -0.00095 0.85143 -29310033.4 0.00104 0.00181 15.1 0.000 0.000 0.000 +2450030.5 -0.03840 0.85507 -29312191.1 0.00106 0.00179 14.9 0.000 0.000 0.000 +2450031.5 -0.07571 0.85809 -29314240.2 0.00111 0.00182 15.4 0.000 0.000 0.000 +2450032.5 -0.11327 0.86096 -29316219.4 0.00132 0.00175 14.3 0.000 0.000 0.000 +2450033.5 -0.15083 0.86427 -29318191.8 0.00180 0.00142 8.1 0.000 0.000 0.000 +2450034.5 -0.18665 0.86823 -29320224.8 0.00198 0.00161 6.2 0.000 0.000 0.000 +2450035.5 -0.21958 0.87346 -29322368.2 0.00177 0.00169 5.8 0.000 0.000 0.000 +2450036.5 -0.25161 0.88145 -29324664.8 0.00182 0.00170 6.3 0.000 0.000 0.000 +2450037.5 -0.28878 0.89310 -29327155.7 0.00189 0.00170 5.4 0.000 0.000 0.000 +2450038.5 -0.33131 0.90672 -29329805.4 0.00171 0.00162 5.4 0.000 0.000 0.000 +2450039.5 -0.37572 0.92109 -29332556.9 0.00174 0.00160 5.0 0.000 0.000 0.000 +2450040.5 -0.41815 0.93534 -29335390.5 0.00156 0.00157 7.9 0.000 0.000 0.000 +2450041.5 -0.45820 0.94867 -29338265.3 0.00152 0.00153 9.7 0.000 0.000 0.000 +2450042.5 -0.49847 0.96031 -29341131.7 0.00177 0.00189 12.5 0.000 0.000 0.000 +2450043.5 -0.54010 0.97003 -29343946.8 0.00163 0.00212 12.2 0.000 0.000 0.000 +2450044.5 -0.58072 0.97996 -29346679.1 0.00171 0.00217 12.2 0.000 0.000 0.000 +2450045.5 -0.61823 0.99147 -29349339.1 0.00179 0.00223 13.3 0.000 0.000 0.000 +2450046.5 -0.65297 1.00504 -29351967.4 0.00197 0.00251 13.1 0.000 0.000 0.000 +2450047.5 -0.68662 1.02043 -29354612.1 0.00211 0.00157 10.1 0.000 0.000 0.000 +2450048.5 -0.72088 1.03692 -29357310.8 0.00199 0.00136 10.2 0.000 0.000 0.000 +2450049.5 -0.75778 1.05403 -29360071.1 0.00271 0.00112 10.9 0.000 0.000 0.000 +2450050.5 -0.79978 1.07151 -29362877.7 0.00284 0.00105 11.0 0.000 0.000 0.000 +2450051.5 -0.84764 1.08904 -29365695.9 0.00292 0.00088 11.5 0.000 0.000 0.000 +2450052.5 -0.89889 1.10598 -29368459.9 0.00278 0.00107 11.2 0.000 0.000 0.000 +2450053.5 -0.95006 1.12207 -29371122.1 0.00269 0.00102 11.0 0.000 0.000 0.000 +2450054.5 -0.99824 1.13827 -29373673.6 0.00269 0.00111 21.6 0.000 0.000 0.000 +2450055.5 -1.04351 1.15595 -29376121.2 0.00249 0.00145 15.3 0.000 0.000 0.000 +2450056.5 -1.08667 1.17545 -29378455.6 0.00228 0.00152 14.6 0.000 0.000 0.000 +2450057.5 -1.12676 1.19584 -29380681.5 0.00228 0.00159 15.1 0.000 0.000 0.000 +2450058.5 -1.16228 1.21622 -29382816.1 0.00230 0.00164 15.1 0.000 0.000 0.000 +2450059.5 -1.19387 1.23599 -29384906.7 0.00224 0.00165 15.1 0.000 0.000 0.000 +2450060.5 -1.22456 1.25539 -29387006.1 0.00237 0.00166 10.5 0.000 0.000 0.000 +2450061.5 -1.25524 1.27470 -29389160.5 0.00269 0.00175 10.6 0.000 0.000 0.000 +2450062.5 -1.28810 1.29456 -29391392.1 0.00217 0.00150 6.5 0.000 0.000 0.000 +2450063.5 -1.32390 1.31562 -29393713.8 0.00191 0.00153 6.3 0.000 0.000 0.000 +2450064.5 -1.35858 1.33889 -29396141.5 0.00195 0.00147 6.8 0.000 0.000 0.000 +2450065.5 -1.38650 1.36559 -29398689.3 0.00179 0.00145 8.4 0.000 0.000 0.000 +2450066.5 -1.41025 1.39502 -29401310.0 0.00162 0.00140 7.7 0.000 0.000 0.000 +2450067.5 -1.43306 1.42590 -29403955.6 0.00193 0.00191 7.7 0.000 0.000 0.000 +2450068.5 -1.45609 1.45748 -29406606.9 0.00210 0.00237 14.6 0.000 0.000 0.000 +2450069.5 -1.47931 1.48890 -29409260.4 0.00228 0.00240 15.5 0.000 0.000 0.000 +2450070.5 -1.50297 1.51925 -29411885.8 0.00257 0.00242 15.0 0.000 0.000 0.000 +2450071.5 -1.52637 1.54816 -29414457.9 0.00252 0.00250 11.0 0.000 0.000 0.000 +2450072.5 -1.54872 1.57683 -29416956.7 0.00258 0.00255 12.8 0.000 0.000 0.000 +2450073.5 -1.56922 1.60682 -29419401.0 0.00233 0.00254 13.3 0.000 0.000 0.000 +2450074.5 -1.58765 1.63929 -29421853.0 0.00175 0.00148 12.0 0.000 0.000 0.000 +2450075.5 -1.60555 1.67404 -29424392.2 0.00145 0.00129 9.0 0.000 0.000 0.000 +2450076.5 -1.62431 1.70968 -29427056.8 0.00113 0.00119 4.9 0.000 0.000 0.000 +2450077.5 -1.64426 1.74460 -29429813.8 0.00069 0.00101 5.3 0.000 0.000 0.000 +2450078.5 -1.66503 1.77759 -29432597.0 0.00055 0.00094 2.4 0.000 0.000 0.000 +2450079.5 -1.68591 1.80815 -29435330.6 0.00074 0.00093 3.9 0.000 0.000 0.000 +2450080.5 -1.70623 1.83650 -29437945.1 0.00064 0.00091 4.2 0.000 0.000 0.000 +2450081.5 -1.72561 1.86367 -29440387.5 0.00108 0.00088 4.3 0.000 0.000 0.000 +2450082.5 -1.74400 1.89094 -29442627.4 0.00169 0.00146 10.3 0.000 0.000 0.000 +2450083.5 -1.76030 1.91891 -29444659.3 0.00172 0.00177 7.6 0.000 0.000 0.000 +2450084.5 -1.77299 1.94750 -29446503.0 0.00171 0.00187 8.0 0.000 0.000 0.000 +2450085.5 -1.78315 1.97678 -29448198.2 0.00167 0.00231 6.6 0.000 0.000 0.000 +2450086.5 -1.79367 2.00786 -29449791.4 0.00201 0.00265 8.2 0.000 0.000 0.000 +2450087.5 -1.80509 2.04078 -29451334.3 0.00175 0.00270 9.6 0.000 0.000 0.000 +2450088.5 -1.81812 2.07453 -29452888.5 0.00200 0.00272 8.9 0.000 0.000 0.000 +2450089.5 -1.83488 2.10687 -29454519.5 0.00165 0.00268 13.7 0.000 0.000 0.000 +2450090.5 -1.85329 2.13592 -29456265.8 0.00158 0.00255 10.2 0.000 0.000 0.000 +2450091.5 -1.86998 2.16188 -29458121.9 0.00161 0.00229 10.3 0.000 0.000 0.000 +2450092.5 -1.88706 2.18650 -29460054.4 0.00139 0.00185 9.8 0.000 0.000 0.000 +2450093.5 -1.90640 2.21340 -29462030.1 0.00143 0.00184 9.6 0.000 0.000 0.000 +2450094.5 -1.92717 2.24346 -29464024.9 0.00131 0.00240 10.1 0.000 0.000 0.000 +2450095.5 -1.94786 2.27489 -29466024.8 0.00122 0.00226 8.2 0.000 0.000 0.000 +2450096.5 -1.96696 2.30499 -29468017.0 0.00139 0.00225 16.0 0.000 0.000 0.000 +2450097.5 -1.98352 2.33216 -29469984.4 0.00192 0.00221 15.4 0.000 0.000 0.000 +2450098.5 -1.99669 2.35763 -29471909.4 0.00179 0.00221 17.3 0.000 0.000 0.000 +2450099.5 -2.00818 2.38451 -29473768.4 0.00180 0.00215 17.3 0.000 0.000 0.000 +2450100.5 -2.02138 2.41592 -29475545.9 0.00179 0.00178 16.9 0.000 0.000 0.000 +2450101.5 -2.03560 2.45207 -29477298.5 0.00175 0.00185 15.7 0.000 0.000 0.000 +2450102.5 -2.05068 2.49090 -29479118.2 0.00215 0.00239 17.3 0.000 0.000 0.000 +2450103.5 -2.06611 2.52907 -29481063.5 0.00183 0.00244 19.3 0.000 0.000 0.000 +2450104.5 -2.08193 2.56454 -29483137.7 0.00203 0.00255 14.3 0.000 0.000 0.000 +2450105.5 -2.09769 2.59799 -29485283.7 0.00198 0.00264 13.1 0.000 0.000 0.000 +2450106.5 -2.11084 2.63193 -29487412.6 0.00196 0.00257 12.9 0.000 0.000 0.000 +2450107.5 -2.12010 2.66768 -29489467.5 0.00199 0.00251 11.5 0.000 0.000 0.000 +2450108.5 -2.12800 2.70473 -29491404.6 0.00195 0.00263 11.8 0.000 0.000 0.000 +2450109.5 -2.13832 2.74314 -29493204.9 0.00128 0.00255 5.8 0.000 0.000 0.000 +2450110.5 -2.15256 2.78200 -29494861.5 0.00098 0.00253 6.1 0.000 0.000 0.000 +2450111.5 -2.16948 2.81918 -29496389.0 0.00099 0.00234 6.9 0.000 0.000 0.000 +2450112.5 -2.18590 2.85380 -29497819.0 0.00109 0.00237 7.8 0.000 0.000 0.000 +2450113.5 -2.19921 2.88743 -29499196.5 0.00099 0.00235 7.8 0.000 0.000 0.000 +2450114.5 -2.20897 2.92203 -29500581.9 0.00088 0.00183 7.5 0.000 0.000 0.000 +2450115.5 -2.21537 2.95842 -29502029.3 0.00087 0.00163 8.5 0.000 0.000 0.000 +2450116.5 -2.21912 2.99604 -29503576.6 0.00102 0.00186 11.7 0.000 0.000 0.000 +2450117.5 -2.22162 3.03402 -29505235.4 0.00106 0.00196 8.8 0.000 0.000 0.000 +2450118.5 -2.22478 3.07205 -29507001.8 0.00097 0.00164 6.1 0.000 0.000 0.000 +2450119.5 -2.22993 3.10960 -29508876.3 0.00103 0.00182 6.6 0.000 0.000 0.000 +2450120.5 -2.23651 3.14592 -29510865.4 0.00137 0.00187 6.6 0.000 0.000 0.000 +2450121.5 -2.24439 3.18041 -29512954.6 0.00139 0.00180 5.6 0.000 0.000 0.000 +2450122.5 -2.25141 3.21189 -29515098.7 0.00162 0.00182 5.1 0.000 0.000 0.000 +2450123.5 -2.25278 3.24001 -29517243.4 0.00161 0.00167 5.6 0.000 0.000 0.000 +2450124.5 -2.24677 3.26699 -29519345.5 0.00171 0.00187 12.7 0.000 0.000 0.000 +2450125.5 -2.23497 3.29488 -29521381.6 0.00164 0.00151 9.1 0.000 0.000 0.000 +2450126.5 -2.22072 3.32515 -29523351.7 0.00135 0.00148 8.3 0.000 0.000 0.000 +2450127.5 -2.20747 3.35912 -29525279.8 0.00133 0.00146 8.6 0.000 0.000 0.000 +2450128.5 -2.19616 3.39765 -29527208.8 0.00084 0.00120 7.9 0.000 0.000 0.000 +2450129.5 -2.18807 3.44069 -29529205.3 0.00092 0.00123 6.4 0.000 0.000 0.000 +2450130.5 -2.18478 3.48625 -29531338.9 0.00093 0.00176 6.5 0.000 0.000 0.000 +2450131.5 -2.18668 3.53144 -29533645.5 0.00096 0.00188 7.8 0.000 0.000 0.000 +2450132.5 -2.19381 3.57387 -29536111.1 0.00139 0.00168 6.7 0.000 0.000 0.000 +2450133.5 -2.20352 3.61239 -29538677.8 0.00132 0.00179 5.0 0.000 0.000 0.000 +2450134.5 -2.21128 3.64712 -29541262.4 0.00133 0.00191 5.5 0.000 0.000 0.000 +2450135.5 -2.21453 3.68000 -29543783.0 0.00127 0.00191 6.2 0.000 0.000 0.000 +2450136.5 -2.21452 3.71374 -29546147.9 0.00128 0.00161 6.8 0.000 0.000 0.000 +2450137.5 -2.21269 3.75083 -29548288.6 0.00122 0.00174 7.4 0.000 0.000 0.000 +2450138.5 -2.20856 3.79126 -29550247.1 0.00100 0.00194 8.2 0.000 0.000 0.000 +2450139.5 -2.20363 3.83259 -29552093.7 0.00096 0.00183 8.4 0.000 0.000 0.000 +2450140.5 -2.19945 3.87248 -29553885.9 0.00130 0.00182 22.0 0.000 0.000 0.000 +2450141.5 -2.19512 3.91093 -29555659.1 0.00138 0.00184 21.2 0.000 0.000 0.000 +2450142.5 -2.18816 3.94895 -29557444.5 0.00146 0.00190 20.2 0.000 0.000 0.000 +2450143.5 -2.17688 3.98742 -29559306.0 0.00138 0.00167 19.0 0.000 0.000 0.000 +2450144.5 -2.16142 4.02727 -29561291.6 0.00143 0.00173 17.3 0.000 0.000 0.000 +2450145.5 -2.14352 4.06838 -29563419.6 0.00143 0.00157 11.3 0.000 0.000 0.000 +2450146.5 -2.12473 4.11007 -29565699.5 0.00114 0.00146 5.2 0.000 0.000 0.000 +2450147.5 -2.10558 4.15183 -29568116.0 0.00108 0.00159 5.2 0.000 0.000 0.000 +2450148.5 -2.08636 4.19360 -29570636.3 0.00104 0.00163 6.5 0.000 0.000 0.000 +2450149.5 -2.06891 4.23398 -29573221.0 0.00103 0.00159 5.7 0.000 0.000 0.000 +2450150.5 -2.05355 4.27231 -29575834.2 0.00102 0.00154 7.3 0.000 0.000 0.000 +2450151.5 -2.04004 4.30885 -29578440.3 0.00117 0.00202 9.0 0.000 0.000 0.000 +2450152.5 -2.02678 4.34395 -29581012.3 0.00126 0.00214 13.3 0.000 0.000 0.000 +2450153.5 -2.01268 4.37805 -29583527.4 0.00142 0.00233 16.0 0.000 0.000 0.000 +2450154.5 -1.99777 4.41177 -29585951.4 0.00153 0.00243 15.0 0.000 0.000 0.000 +2450155.5 -1.98277 4.44573 -29588258.4 0.00161 0.00234 14.8 0.000 0.000 0.000 +2450156.5 -1.96643 4.48080 -29590466.1 0.00168 0.00231 12.5 0.000 0.000 0.000 +2450157.5 -1.94794 4.51564 -29592649.6 0.00164 0.00228 10.5 0.000 0.000 0.000 +2450158.5 -1.92833 4.54972 -29594879.2 0.00188 0.00212 9.8 0.000 0.000 0.000 +2450159.5 -1.90717 4.58405 -29597189.1 0.00202 0.00229 11.1 0.000 0.000 0.000 +2450160.5 -1.88199 4.61995 -29599575.9 0.00190 0.00198 6.7 0.000 0.000 0.000 +2450161.5 -1.85111 4.65970 -29602010.0 0.00175 0.00201 10.3 0.000 0.000 0.000 +2450162.5 -1.81832 4.70292 -29604450.0 0.00174 0.00220 11.8 0.000 0.000 0.000 +2450163.5 -1.79022 4.74542 -29606846.9 0.00199 0.00225 12.9 0.000 0.000 0.000 +2450164.5 -1.76871 4.78419 -29609142.3 0.00150 0.00200 13.1 0.000 0.000 0.000 +2450165.5 -1.75147 4.81757 -29611303.4 0.00160 0.00189 11.8 0.000 0.000 0.000 +2450166.5 -1.73364 4.84624 -29613338.9 0.00164 0.00166 11.7 0.000 0.000 0.000 +2450167.5 -1.71235 4.87267 -29615284.7 0.00176 0.00143 6.7 0.000 0.000 0.000 +2450168.5 -1.68684 4.89934 -29617173.4 0.00169 0.00116 6.1 0.000 0.000 0.000 +2450169.5 -1.65740 4.92763 -29619038.5 0.00155 0.00120 5.5 0.000 0.000 0.000 +2450170.5 -1.62682 4.95689 -29620917.1 0.00142 0.00102 6.0 0.000 0.000 0.000 +2450171.5 -1.59775 4.98668 -29622851.6 0.00133 0.00098 5.7 0.000 0.000 0.000 +2450172.5 -1.57004 5.01621 -29624872.3 0.00114 0.00097 8.8 0.000 0.000 0.000 +2450173.5 -1.54308 5.04557 -29626998.1 0.00101 0.00100 17.1 0.000 0.000 0.000 +2450174.5 -1.51759 5.07537 -29629242.5 0.00117 0.00123 13.1 0.000 0.000 0.000 +2450175.5 -1.49458 5.10519 -29631613.3 0.00124 0.00125 13.7 0.000 0.000 0.000 +2450176.5 -1.47456 5.13307 -29634084.8 0.00128 0.00134 13.3 0.000 0.000 0.000 +2450177.5 -1.45734 5.15663 -29636589.4 0.00137 0.00143 13.3 0.000 0.000 0.000 +2450178.5 -1.44016 5.17597 -29639091.4 0.00148 0.00142 11.0 0.000 0.000 0.000 +2450179.5 -1.42213 5.19336 -29641565.1 0.00183 0.00155 9.3 0.000 0.000 0.000 +2450180.5 -1.40287 5.21081 -29643980.8 0.00181 0.00161 13.1 0.000 0.000 0.000 +2450181.5 -1.38073 5.22977 -29646326.0 0.00180 0.00139 7.1 0.000 0.000 0.000 +2450182.5 -1.35330 5.25206 -29648610.3 0.00179 0.00133 7.5 0.000 0.000 0.000 +2450183.5 -1.32283 5.27834 -29650873.5 0.00195 0.00131 8.5 0.000 0.000 0.000 +2450184.5 -1.29437 5.30720 -29653176.4 0.00205 0.00141 9.0 0.000 0.000 0.000 +2450185.5 -1.26669 5.33672 -29655565.4 0.00181 0.00131 8.5 0.000 0.000 0.000 +2450186.5 -1.23636 5.36528 -29658054.2 0.00182 0.00120 7.6 0.000 0.000 0.000 +2450187.5 -1.20173 5.39247 -29660618.6 0.00180 0.00133 16.8 0.000 0.000 0.000 +2450188.5 -1.16447 5.41853 -29663207.4 0.00192 0.00124 15.4 0.000 0.000 0.000 +2450189.5 -1.12810 5.44389 -29665765.9 0.00165 0.00136 14.7 0.000 0.000 0.000 +2450190.5 -1.09575 5.46908 -29668246.5 0.00154 0.00134 13.8 0.000 0.000 0.000 +2450191.5 -1.06630 5.49371 -29670620.0 0.00154 0.00153 13.6 0.000 0.000 0.000 +2450192.5 -1.03814 5.51708 -29672839.9 0.00163 0.00158 17.6 0.000 0.000 0.000 +2450193.5 -1.00977 5.53918 -29674906.8 0.00147 0.00169 18.4 0.000 0.000 0.000 +2450194.5 -0.98018 5.56038 -29676868.4 0.00130 0.00150 12.6 0.000 0.000 0.000 +2450195.5 -0.94798 5.58076 -29678779.6 0.00133 0.00135 10.4 0.000 0.000 0.000 +2450196.5 -0.91299 5.60003 -29680669.8 0.00148 0.00143 10.4 0.000 0.000 0.000 +2450197.5 -0.87747 5.61740 -29682570.6 0.00165 0.00132 10.4 0.000 0.000 0.000 +2450198.5 -0.84328 5.63216 -29684520.5 0.00163 0.00149 7.1 0.000 0.000 0.000 +2450199.5 -0.80794 5.64558 -29686542.6 0.00158 0.00154 6.6 0.000 0.000 0.000 +2450200.5 -0.76868 5.65977 -29688671.3 0.00158 0.00155 6.4 0.000 0.000 0.000 +2450201.5 -0.72568 5.67711 -29690922.7 0.00156 0.00185 8.4 0.000 0.000 0.000 +2450202.5 -0.68129 5.69859 -29693290.9 0.00137 0.00182 9.6 0.000 0.000 0.000 +2450203.5 -0.63828 5.72255 -29695762.8 0.00100 0.00178 9.9 0.000 0.000 0.000 +2450204.5 -0.59925 5.74565 -29698320.3 0.00118 0.00157 9.9 0.000 0.000 0.000 +2450205.5 -0.56510 5.76505 -29700939.4 0.00130 0.00138 10.2 0.000 0.000 0.000 +2450206.5 -0.53275 5.78115 -29703564.5 0.00140 0.00127 11.1 0.000 0.000 0.000 +2450207.5 -0.49832 5.79530 -29706128.4 0.00144 0.00115 11.2 0.000 0.000 0.000 +2450208.5 -0.46069 5.80847 -29708596.7 0.00147 0.00104 12.8 0.000 0.000 0.000 +2450209.5 -0.42108 5.82120 -29710973.9 0.00153 0.00126 13.3 0.000 0.000 0.000 +2450210.5 -0.38014 5.83365 -29713302.3 0.00135 0.00133 13.5 0.000 0.000 0.000 +2450211.5 -0.33728 5.84612 -29715643.0 0.00123 0.00137 13.6 0.000 0.000 0.000 +2450212.5 -0.29276 5.85866 -29718052.2 0.00115 0.00152 14.1 0.000 0.000 0.000 +2450213.5 -0.24824 5.87043 -29720554.3 0.00110 0.00157 14.4 0.000 0.000 0.000 +2450214.5 -0.20426 5.88111 -29723153.9 0.00086 0.00151 13.5 0.000 0.000 0.000 +2450215.5 -0.16018 5.89143 -29725821.0 0.00091 0.00121 11.7 0.000 0.000 0.000 +2450216.5 -0.11617 5.90172 -29728493.3 0.00088 0.00137 10.1 0.000 0.000 0.000 +2450217.5 -0.07364 5.91117 -29731104.8 0.00104 0.00148 10.3 0.000 0.000 0.000 +2450218.5 -0.03495 5.91929 -29733602.9 0.00112 0.00133 9.5 0.000 0.000 0.000 +2450219.5 -0.00120 5.92644 -29735960.8 0.00114 0.00134 9.5 0.000 0.000 0.000 +2450220.5 0.03048 5.93227 -29738151.7 0.00109 0.00140 9.0 0.000 0.000 0.000 +2450221.5 0.06339 5.93703 -29740174.6 0.00110 0.00131 9.6 0.000 0.000 0.000 +2450222.5 0.09823 5.94145 -29742061.1 0.00123 0.00116 12.5 0.000 0.000 0.000 +2450223.5 0.13395 5.94573 -29743845.9 0.00122 0.00111 9.4 0.000 0.000 0.000 +2450224.5 0.17028 5.94935 -29745554.8 0.00103 0.00120 10.9 0.000 0.000 0.000 +2450225.5 0.20841 5.95182 -29747219.5 0.00098 0.00115 10.2 0.000 0.000 0.000 +2450226.5 0.25056 5.95279 -29748893.1 0.00109 0.00115 11.2 0.000 0.000 0.000 +2450227.5 0.29683 5.95335 -29750611.0 0.00105 0.00111 12.9 0.000 0.000 0.000 +2450228.5 0.34569 5.95487 -29752388.9 0.00098 0.00115 12.2 0.000 0.000 0.000 +2450229.5 0.39657 5.95720 -29754238.9 0.00092 0.00149 18.8 0.000 0.000 0.000 +2450230.5 0.44745 5.95975 -29756154.2 0.00092 0.00175 15.3 0.000 0.000 0.000 +2450231.5 0.49519 5.96256 -29758110.4 0.00087 0.00155 13.4 0.000 0.000 0.000 +2450232.5 0.53786 5.96559 -29760075.2 0.00096 0.00156 12.8 0.000 0.000 0.000 +2450233.5 0.57604 5.96732 -29762019.1 0.00094 0.00163 11.4 0.000 0.000 0.000 +2450234.5 0.61348 5.96660 -29763894.7 0.00097 0.00164 11.1 0.000 0.000 0.000 +2450235.5 0.65407 5.96295 -29765676.2 0.00113 0.00155 10.5 0.000 0.000 0.000 +2450236.5 0.69764 5.95622 -29767369.0 0.00121 0.00121 10.1 0.000 0.000 0.000 +2450237.5 0.74134 5.94714 -29769016.1 0.00146 0.00164 8.5 0.000 0.000 0.000 +2450238.5 0.78371 5.93640 -29770680.9 0.00146 0.00190 10.5 0.000 0.000 0.000 +2450239.5 0.82508 5.92467 -29772423.0 0.00148 0.00190 11.6 0.000 0.000 0.000 +2450240.5 0.86688 5.91341 -29774255.8 0.00143 0.00184 13.8 0.000 0.000 0.000 +2450241.5 0.90720 5.90300 -29776177.9 0.00143 0.00182 13.3 0.000 0.000 0.000 +2450242.5 0.94450 5.89212 -29778176.0 0.00115 0.00162 13.6 0.000 0.000 0.000 +2450243.5 0.97929 5.87975 -29780226.5 0.00073 0.00130 14.8 0.000 0.000 0.000 +2450244.5 1.01361 5.86582 -29782285.3 0.00100 0.00172 12.9 0.000 0.000 0.000 +2450245.5 1.05024 5.85102 -29784287.3 0.00094 0.00178 13.1 0.000 0.000 0.000 +2450246.5 1.09062 5.83593 -29786178.1 0.00086 0.00171 12.1 0.000 0.000 0.000 +2450247.5 1.13372 5.82016 -29787926.1 0.00083 0.00178 13.0 0.000 0.000 0.000 +2450248.5 1.17799 5.80444 -29789520.2 0.00076 0.00178 12.8 0.000 0.000 0.000 +2450249.5 1.22162 5.78863 -29790962.8 0.00086 0.00182 13.4 0.000 0.000 0.000 +2450250.5 1.26371 5.77122 -29792268.5 0.00109 0.00144 15.0 0.000 0.000 0.000 +2450251.5 1.30402 5.75255 -29793498.3 0.00090 0.00125 10.8 0.000 0.000 0.000 +2450252.5 1.34172 5.73349 -29794696.6 0.00094 0.00167 13.6 0.000 0.000 0.000 +2450253.5 1.37766 5.71417 -29795906.6 0.00123 0.00193 15.1 0.000 0.000 0.000 +2450254.5 1.41427 5.69487 -29797174.4 0.00125 0.00193 15.5 0.000 0.000 0.000 +2450255.5 1.45207 5.67692 -29798526.3 0.00121 0.00189 15.1 0.000 0.000 0.000 +2450256.5 1.49076 5.66191 -29799966.5 0.00116 0.00189 15.9 0.000 0.000 0.000 +2450257.5 1.52943 5.64966 -29801487.9 0.00102 0.00191 16.1 0.000 0.000 0.000 +2450258.5 1.56669 5.63769 -29803060.3 0.00108 0.00167 10.3 0.000 0.000 0.000 +2450259.5 1.60089 5.62328 -29804641.9 0.00088 0.00087 5.0 0.000 0.000 0.000 +2450260.5 1.63185 5.60441 -29806192.6 0.00085 0.00094 4.5 0.000 0.000 0.000 +2450261.5 1.66266 5.58043 -29807699.6 0.00090 0.00101 5.0 0.000 0.000 0.000 +2450262.5 1.69397 5.55352 -29809131.2 0.00098 0.00099 5.0 0.000 0.000 0.000 +2450263.5 1.72512 5.52615 -29810459.8 0.00096 0.00113 4.8 0.000 0.000 0.000 +2450264.5 1.75721 5.49933 -29811695.3 0.00090 0.00137 7.4 0.000 0.000 0.000 +2450265.5 1.78974 5.47273 -29812874.3 0.00128 0.00148 8.7 0.000 0.000 0.000 +2450266.5 1.82109 5.44574 -29814054.6 0.00154 0.00191 20.5 0.000 0.000 0.000 +2450267.5 1.85170 5.41823 -29815303.7 0.00151 0.00203 20.9 0.000 0.000 0.000 +2450268.5 1.88391 5.39071 -29816671.6 0.00146 0.00212 21.6 0.000 0.000 0.000 +2450269.5 1.91883 5.36353 -29818121.9 0.00141 0.00193 20.9 0.000 0.000 0.000 +2450270.5 1.95682 5.33748 -29819582.8 0.00138 0.00179 19.5 0.000 0.000 0.000 +2450271.5 1.99696 5.31314 -29820994.2 0.00133 0.00169 14.6 0.000 0.000 0.000 +2450272.5 2.03727 5.29014 -29822317.3 0.00149 0.00150 8.5 0.000 0.000 0.000 +2450273.5 2.07592 5.26731 -29823530.9 0.00170 0.00172 10.5 0.000 0.000 0.000 +2450274.5 2.11293 5.24334 -29824631.0 0.00184 0.00175 10.3 0.000 0.000 0.000 +2450275.5 2.15063 5.21715 -29825632.9 0.00179 0.00172 9.7 0.000 0.000 0.000 +2450276.5 2.18657 5.18885 -29826544.6 0.00171 0.00170 9.7 0.000 0.000 0.000 +2450277.5 2.21794 5.15914 -29827382.5 0.00168 0.00155 9.1 0.000 0.000 0.000 +2450278.5 2.24732 5.12864 -29828192.9 0.00136 0.00160 11.6 0.000 0.000 0.000 +2450279.5 2.27614 5.09731 -29829020.2 0.00132 0.00143 9.2 0.000 0.000 0.000 +2450280.5 2.30424 5.06578 -29829893.2 0.00104 0.00117 6.2 0.000 0.000 0.000 +2450281.5 2.32990 5.03550 -29830829.4 0.00110 0.00097 6.3 0.000 0.000 0.000 +2450282.5 2.35206 5.00720 -29831844.0 0.00117 0.00087 7.4 0.000 0.000 0.000 +2450283.5 2.37180 4.97951 -29832949.7 0.00121 0.00086 7.3 0.000 0.000 0.000 +2450284.5 2.38823 4.95142 -29834132.5 0.00102 0.00149 6.1 0.000 0.000 0.000 +2450285.5 2.40089 4.92279 -29835377.4 0.00110 0.00180 7.9 0.000 0.000 0.000 +2450286.5 2.41219 4.89387 -29836668.3 0.00111 0.00202 7.2 0.000 0.000 0.000 +2450287.5 2.42496 4.86514 -29837988.8 0.00086 0.00169 5.1 0.000 0.000 0.000 +2450288.5 2.43914 4.83693 -29839324.1 0.00084 0.00170 4.9 0.000 0.000 0.000 +2450289.5 2.45374 4.80907 -29840662.0 0.00087 0.00191 5.3 0.000 0.000 0.000 +2450290.5 2.46984 4.78056 -29841966.0 0.00090 0.00195 5.4 0.000 0.000 0.000 +2450291.5 2.48740 4.75078 -29843210.0 0.00088 0.00168 5.3 0.000 0.000 0.000 +2450292.5 2.50639 4.72129 -29844430.2 0.00066 0.00160 5.9 0.000 0.000 0.000 +2450293.5 2.52566 4.69311 -29845694.8 0.00068 0.00148 5.4 0.000 0.000 0.000 +2450294.5 2.54358 4.66562 -29847071.5 0.00072 0.00190 8.0 0.000 0.000 0.000 +2450295.5 2.55992 4.63744 -29848605.6 0.00063 0.00180 8.9 0.000 0.000 0.000 +2450296.5 2.57554 4.60713 -29850293.8 0.00058 0.00139 11.7 0.000 0.000 0.000 +2450297.5 2.59147 4.57401 -29852058.1 0.00055 0.00130 12.1 0.000 0.000 0.000 +2450298.5 2.60659 4.53791 -29853788.4 0.00066 0.00118 11.8 0.000 0.000 0.000 +2450299.5 2.62057 4.49918 -29855381.9 0.00057 0.00094 25.8 0.000 0.000 0.000 +2450300.5 2.63520 4.45884 -29856783.8 0.00070 0.00177 22.5 0.000 0.000 0.000 +2450301.5 2.65228 4.41786 -29857989.9 0.00090 0.00171 26.8 0.000 0.000 0.000 +2450302.5 2.67281 4.37721 -29859013.7 0.00103 0.00177 29.3 0.000 0.000 0.000 +2450303.5 2.69701 4.33861 -29859874.6 0.00111 0.00176 30.8 0.000 0.000 0.000 +2450304.5 2.72203 4.30219 -29860620.3 0.00105 0.00197 31.4 0.000 0.000 0.000 +2450305.5 2.74369 4.26654 -29861308.4 0.00112 0.00172 26.7 0.000 0.000 0.000 +2450306.5 2.76197 4.23101 -29861973.3 0.00104 0.00163 31.4 0.000 0.000 0.000 +2450307.5 2.77953 4.19564 -29862665.2 0.00114 0.00113 21.5 0.000 0.000 0.000 +2450308.5 2.79885 4.16035 -29863415.6 0.00102 0.00103 16.8 0.000 0.000 0.000 +2450309.5 2.82017 4.12525 -29864239.2 0.00117 0.00110 14.2 0.000 0.000 0.000 +2450310.5 2.84099 4.09040 -29865147.3 0.00105 0.00089 13.3 0.000 0.000 0.000 +2450311.5 2.85878 4.05523 -29866147.4 0.00100 0.00084 11.5 0.000 0.000 0.000 +2450312.5 2.87295 4.01932 -29867235.9 0.00103 0.00088 8.3 0.000 0.000 0.000 +2450313.5 2.88572 3.98292 -29868387.4 0.00072 0.00095 8.5 0.000 0.000 0.000 +2450314.5 2.89929 3.94677 -29869561.3 0.00078 0.00078 7.4 0.000 0.000 0.000 +2450315.5 2.91309 3.91127 -29870729.8 0.00066 0.00078 6.6 0.000 0.000 0.000 +2450316.5 2.92597 3.87611 -29871876.1 0.00065 0.00071 8.9 0.000 0.000 0.000 +2450317.5 2.93838 3.84129 -29873001.4 0.00065 0.00067 10.9 0.000 0.000 0.000 +2450318.5 2.94993 3.80681 -29874117.1 0.00063 0.00085 11.1 0.000 0.000 0.000 +2450319.5 2.95992 3.77211 -29875227.4 0.00096 0.00122 12.8 0.000 0.000 0.000 +2450320.5 2.96746 3.73598 -29876360.6 0.00105 0.00148 21.5 0.000 0.000 0.000 +2450321.5 2.97194 3.69742 -29877574.2 0.00157 0.00144 14.8 0.000 0.000 0.000 +2450322.5 2.97397 3.65678 -29878918.3 0.00158 0.00148 13.1 0.000 0.000 0.000 +2450323.5 2.97574 3.61465 -29880420.7 0.00164 0.00146 11.0 0.000 0.000 0.000 +2450324.5 2.97937 3.57055 -29882106.3 0.00165 0.00140 13.0 0.000 0.000 0.000 +2450325.5 2.98084 3.52500 -29883902.1 0.00167 0.00139 12.8 0.000 0.000 0.000 +2450326.5 2.97900 3.47939 -29885702.8 0.00153 0.00095 11.4 0.000 0.000 0.000 +2450327.5 2.97499 3.43458 -29887410.8 0.00102 0.00088 10.7 0.000 0.000 0.000 +2450328.5 2.97015 3.39064 -29888956.1 0.00110 0.00075 8.9 0.000 0.000 0.000 +2450329.5 2.96456 3.34764 -29890311.8 0.00117 0.00077 8.3 0.000 0.000 0.000 +2450330.5 2.95864 3.30542 -29891486.0 0.00112 0.00078 6.7 0.000 0.000 0.000 +2450331.5 2.95377 3.26395 -29892530.3 0.00114 0.00077 6.7 0.000 0.000 0.000 +2450332.5 2.94801 3.22321 -29893489.8 0.00109 0.00078 4.8 0.000 0.000 0.000 +2450333.5 2.94185 3.18292 -29894419.0 0.00118 0.00083 5.1 0.000 0.000 0.000 +2450334.5 2.93485 3.14389 -29895355.7 0.00101 0.00080 6.8 0.000 0.000 0.000 +2450335.5 2.92822 3.10581 -29896354.4 0.00102 0.00082 7.9 0.000 0.000 0.000 +2450336.5 2.92372 3.06833 -29897472.5 0.00093 0.00071 10.3 0.000 0.000 0.000 +2450337.5 2.91982 3.03199 -29898766.0 0.00087 0.00065 17.0 0.000 0.000 0.000 +2450338.5 2.91345 2.99640 -29900273.3 0.00082 0.00075 16.2 0.000 0.000 0.000 +2450339.5 2.90344 2.95992 -29901950.6 0.00076 0.00076 15.4 0.000 0.000 0.000 +2450340.5 2.89070 2.92164 -29903725.2 0.00060 0.00096 9.4 0.000 0.000 0.000 +2450341.5 2.87623 2.88102 -29905538.6 0.00074 0.00095 7.4 0.000 0.000 0.000 +2450342.5 2.86141 2.83838 -29907344.7 0.00072 0.00095 4.8 0.000 0.000 0.000 +2450343.5 2.84825 2.79516 -29909095.6 0.00075 0.00105 3.8 0.000 0.000 0.000 +2450344.5 2.83815 2.75311 -29910759.2 0.00076 0.00097 3.3 0.000 0.000 0.000 +2450345.5 2.83107 2.71219 -29912354.4 0.00081 0.00093 4.2 0.000 0.000 0.000 +2450346.5 2.82561 2.67320 -29913923.4 0.00078 0.00096 3.9 0.000 0.000 0.000 +2450347.5 2.82043 2.63809 -29915521.9 0.00071 0.00096 4.5 0.000 0.000 0.000 +2450348.5 2.81323 2.60568 -29917194.0 0.00060 0.00110 6.9 0.000 0.000 0.000 +2450349.5 2.80276 2.57343 -29919010.3 0.00066 0.00102 6.6 0.000 0.000 0.000 +2450350.5 2.78840 2.53919 -29921017.9 0.00060 0.00086 7.7 0.000 0.000 0.000 +2450351.5 2.77134 2.50258 -29923218.4 0.00067 0.00094 10.1 0.000 0.000 0.000 +2450352.5 2.75420 2.46492 -29925553.0 0.00087 0.00150 10.2 0.000 0.000 0.000 +2450353.5 2.73712 2.42674 -29927914.5 0.00091 0.00150 9.5 0.000 0.000 0.000 +2450354.5 2.72054 2.38882 -29930201.8 0.00094 0.00154 6.4 0.000 0.000 0.000 +2450355.5 2.70420 2.35228 -29932351.6 0.00093 0.00170 6.8 0.000 0.000 0.000 +2450356.5 2.68818 2.31704 -29934352.9 0.00103 0.00142 5.9 0.000 0.000 0.000 +2450357.5 2.67284 2.28160 -29936231.5 0.00095 0.00148 4.3 0.000 0.000 0.000 +2450358.5 2.65658 2.24510 -29938014.7 0.00082 0.00134 4.1 0.000 0.000 0.000 +2450359.5 2.63733 2.20669 -29939672.1 0.00079 0.00110 4.4 0.000 0.000 0.000 +2450360.5 2.61703 2.16765 -29941246.7 0.00074 0.00105 4.3 0.000 0.000 0.000 +2450361.5 2.59755 2.13108 -29942800.5 0.00093 0.00101 4.7 0.000 0.000 0.000 +2450362.5 2.57865 2.09683 -29944390.7 0.00070 0.00114 4.8 0.000 0.000 0.000 +2450363.5 2.55991 2.06455 -29946042.9 0.00067 0.00116 5.3 0.000 0.000 0.000 +2450364.5 2.54048 2.03459 -29947779.3 0.00068 0.00088 5.8 0.000 0.000 0.000 +2450365.5 2.51930 2.00650 -29949615.4 0.00068 0.00093 8.0 0.000 0.000 0.000 +2450366.5 2.49661 1.97880 -29951558.8 0.00067 0.00089 8.1 0.000 0.000 0.000 +2450367.5 2.47262 1.94990 -29953591.5 0.00077 0.00084 7.4 0.000 0.000 0.000 +2450368.5 2.44812 1.91944 -29955681.4 0.00068 0.00084 4.8 0.000 0.000 0.000 +2450369.5 2.42383 1.88850 -29957797.5 0.00074 0.00085 5.6 0.000 0.000 0.000 +2450370.5 2.39885 1.85811 -29959909.9 0.00080 0.00080 4.7 0.000 0.000 0.000 +2450371.5 2.37355 1.82873 -29961984.2 0.00084 0.00086 3.9 0.000 0.000 0.000 +2450372.5 2.35039 1.80046 -29963993.7 0.00084 0.00084 3.7 0.000 0.000 0.000 +2450373.5 2.32779 1.77345 -29965935.0 0.00088 0.00086 4.4 0.000 0.000 0.000 +2450374.5 2.30324 1.74697 -29967824.8 0.00093 0.00087 4.6 0.000 0.000 0.000 +2450375.5 2.27749 1.72050 -29969731.4 0.00088 0.00109 6.2 0.000 0.000 0.000 +2450376.5 2.25154 1.69474 -29971745.4 0.00099 0.00113 7.3 0.000 0.000 0.000 +2450377.5 2.22618 1.66962 -29973889.1 0.00104 0.00105 9.4 0.000 0.000 0.000 +2450378.5 2.20053 1.64418 -29976146.6 0.00108 0.00106 12.0 0.000 0.000 0.000 +2450379.5 2.17251 1.61701 -29978500.6 0.00119 0.00118 15.5 0.000 0.000 0.000 +2450380.5 2.14212 1.58828 -29980943.5 0.00116 0.00111 17.5 0.000 0.000 0.000 +2450381.5 2.11225 1.55834 -29983395.8 0.00120 0.00110 16.4 0.000 0.000 0.000 +2450382.5 2.08651 1.52777 -29985762.2 0.00111 0.00096 15.4 0.000 0.000 0.000 +2450383.5 2.06552 1.49742 -29987982.7 0.00096 0.00113 18.1 0.000 0.000 0.000 +2450384.5 2.04631 1.46801 -29990032.8 0.00077 0.00151 9.6 0.000 0.000 0.000 +2450385.5 2.02520 1.43964 -29991923.3 0.00079 0.00153 11.2 0.000 0.000 0.000 +2450386.5 1.99999 1.41166 -29993677.2 0.00059 0.00163 9.0 0.000 0.000 0.000 +2450387.5 1.97150 1.38320 -29995332.0 0.00058 0.00162 9.6 0.000 0.000 0.000 +2450388.5 1.94264 1.35278 -29996950.8 0.00064 0.00165 9.6 0.000 0.000 0.000 +2450389.5 1.91385 1.32267 -29998581.1 0.00054 0.00148 8.6 0.000 0.000 0.000 +2450390.5 1.88395 1.29490 -30000275.1 0.00062 0.00149 8.7 0.000 0.000 0.000 +2450391.5 1.85221 1.27007 -30002076.0 0.00109 0.00090 6.8 0.000 0.000 0.000 +2450392.5 1.81832 1.24845 -30004005.9 0.00106 0.00082 6.3 0.000 0.000 0.000 +2450393.5 1.78166 1.22958 -30006066.3 0.00102 0.00131 5.3 0.000 0.000 0.000 +2450394.5 1.74068 1.21195 -30008203.4 0.00103 0.00133 5.4 0.000 0.000 0.000 +2450395.5 1.69941 1.19396 -30010382.3 0.00105 0.00142 4.6 0.000 0.000 0.000 +2450396.5 1.66101 1.17475 -30012565.9 0.00103 0.00151 4.8 0.000 0.000 0.000 +2450397.5 1.62370 1.15608 -30014700.6 0.00078 0.00163 4.5 0.000 0.000 0.000 +2450398.5 1.58567 1.13974 -30016780.1 0.00099 0.00160 4.0 0.000 0.000 0.000 +2450399.5 1.54537 1.12563 -30018820.7 0.00103 0.00165 3.9 0.000 0.000 0.000 +2450400.5 1.50326 1.11219 -30020844.7 0.00133 0.00162 4.2 0.000 0.000 0.000 +2450401.5 1.45983 1.09881 -30022816.8 0.00131 0.00152 5.1 0.000 0.000 0.000 +2450402.5 1.41472 1.08393 -30024697.7 0.00135 0.00150 5.2 0.000 0.000 0.000 +2450403.5 1.37361 1.06651 -30026539.1 0.00152 0.00152 5.8 0.000 0.000 0.000 +2450404.5 1.33985 1.04824 -30028454.8 0.00153 0.00166 6.8 0.000 0.000 0.000 +2450405.5 1.30958 1.03124 -30030475.7 0.00146 0.00195 7.2 0.000 0.000 0.000 +2450406.5 1.27930 1.01662 -30032584.2 0.00130 0.00190 6.6 0.000 0.000 0.000 +2450407.5 1.24923 1.00456 -30034742.0 0.00101 0.00173 6.0 0.000 0.000 0.000 +2450408.5 1.22066 0.99526 -30036903.2 0.00095 0.00171 6.5 0.000 0.000 0.000 +2450409.5 1.19174 0.98752 -30039002.1 0.00090 0.00172 6.2 0.000 0.000 0.000 +2450410.5 1.15947 0.97951 -30040981.6 0.00090 0.00158 6.7 0.000 0.000 0.000 +2450411.5 1.12480 0.97026 -30042827.0 0.00075 0.00143 6.7 0.000 0.000 0.000 +2450412.5 1.08800 0.96074 -30044559.3 0.00065 0.00124 5.5 0.000 0.000 0.000 +2450413.5 1.04981 0.95292 -30046208.1 0.00056 0.00104 5.9 0.000 0.000 0.000 +2450414.5 1.01198 0.94720 -30047810.6 0.00054 0.00094 4.4 0.000 0.000 0.000 +2450415.5 0.97370 0.94257 -30049385.9 0.00062 0.00094 4.9 0.000 0.000 0.000 +2450416.5 0.93445 0.93788 -30050959.7 0.00069 0.00087 4.2 0.000 0.000 0.000 +2450417.5 0.89498 0.93219 -30052559.5 0.00068 0.00087 4.3 0.000 0.000 0.000 +2450418.5 0.85732 0.92537 -30054204.6 0.00073 0.00111 6.4 0.000 0.000 0.000 +2450419.5 0.82186 0.91792 -30055894.4 0.00112 0.00131 6.9 0.000 0.000 0.000 +2450420.5 0.78648 0.91093 -30057613.4 0.00120 0.00145 8.5 0.000 0.000 0.000 +2450421.5 0.74889 0.90532 -30059355.5 0.00110 0.00155 8.0 0.000 0.000 0.000 +2450422.5 0.70782 0.90009 -30061137.7 0.00107 0.00148 7.9 0.000 0.000 0.000 +2450423.5 0.66498 0.89387 -30062946.4 0.00114 0.00150 7.3 0.000 0.000 0.000 +2450424.5 0.62316 0.88624 -30064739.5 0.00125 0.00183 9.7 0.000 0.000 0.000 +2450425.5 0.58321 0.87749 -30066487.1 0.00100 0.00146 7.7 0.000 0.000 0.000 +2450426.5 0.54409 0.86845 -30068178.3 0.00107 0.00109 5.6 0.000 0.000 0.000 +2450427.5 0.50479 0.86019 -30069824.6 0.00087 0.00107 5.2 0.000 0.000 0.000 +2450428.5 0.46594 0.85404 -30071456.8 0.00087 0.00136 6.1 0.000 0.000 0.000 +2450429.5 0.42915 0.85102 -30073118.4 0.00072 0.00135 6.7 0.000 0.000 0.000 +2450430.5 0.39593 0.85101 -30074848.2 0.00075 0.00133 6.9 0.000 0.000 0.000 +2450431.5 0.36589 0.85382 -30076688.4 0.00072 0.00110 6.5 0.000 0.000 0.000 +2450432.5 0.33694 0.85890 -30078656.7 0.00075 0.00136 14.7 0.000 0.000 0.000 +2450433.5 0.30727 0.86530 -30080731.2 0.00083 0.00124 9.0 0.000 0.000 0.000 +2450434.5 0.27636 0.87217 -30082872.4 0.00068 0.00091 8.9 0.000 0.000 0.000 +2450435.5 0.24457 0.87915 -30085040.2 0.00067 0.00080 9.1 0.000 0.000 0.000 +2450436.5 0.21289 0.88638 -30087198.0 0.00063 0.00083 9.2 0.000 0.000 0.000 +2450437.5 0.18109 0.89334 -30089283.5 0.00063 0.00083 9.6 0.000 0.000 0.000 +2450438.5 0.15003 0.89958 -30091250.6 0.00069 0.00077 9.5 0.000 0.000 0.000 +2450439.5 0.12169 0.90527 -30093104.9 0.00074 0.00088 14.3 0.000 0.000 0.000 +2450440.5 0.09683 0.91059 -30094882.4 0.00072 0.00090 13.7 0.000 0.000 0.000 +2450441.5 0.07292 0.91553 -30096605.0 0.00072 0.00117 11.8 0.000 0.000 0.000 +2450442.5 0.04588 0.92002 -30098287.8 0.00088 0.00124 11.7 0.000 0.000 0.000 +2450443.5 0.01387 0.92384 -30099962.5 0.00082 0.00119 9.6 0.000 0.000 0.000 +2450444.5 -0.02233 0.92716 -30101663.2 0.00090 0.00124 8.9 0.000 0.000 0.000 +2450445.5 -0.06149 0.93069 -30103416.0 0.00136 0.00178 13.4 0.000 0.000 0.000 +2450446.5 -0.10328 0.93522 -30105234.4 0.00136 0.00167 11.6 0.000 0.000 0.000 +2450447.5 -0.14726 0.94109 -30107120.0 0.00130 0.00157 11.9 0.000 0.000 0.000 +2450448.5 -0.19160 0.94739 -30109063.5 0.00142 0.00174 14.8 0.000 0.000 0.000 +2450449.5 -0.23220 0.95311 -30111048.6 0.00146 0.00182 16.0 0.000 0.000 0.000 +2450450.5 -0.26941 0.95940 -30113053.1 0.00142 0.00187 17.2 0.000 0.000 0.000 +2450451.5 -0.30451 0.96823 -30115055.5 0.00162 0.00162 16.5 0.000 0.000 0.000 +2450452.5 -0.33754 0.98028 -30117029.3 0.00118 0.00196 20.2 0.000 0.000 0.000 +2450453.5 -0.36989 0.99478 -30118955.5 0.00155 0.00190 18.7 0.000 0.000 0.000 +2450454.5 -0.40436 1.00988 -30120832.1 0.00118 0.00158 9.5 0.000 0.000 0.000 +2450455.5 -0.44058 1.02366 -30122672.3 0.00104 0.00140 7.4 0.000 0.000 0.000 +2450456.5 -0.47479 1.03579 -30124512.0 0.00102 0.00133 7.5 0.000 0.000 0.000 +2450457.5 -0.50458 1.04738 -30126397.4 0.00099 0.00127 8.0 0.000 0.000 0.000 +2450458.5 -0.53286 1.05916 -30128363.3 0.00093 0.00096 8.1 0.000 0.000 0.000 +2450459.5 -0.56164 1.07097 -30130434.2 0.00096 0.00093 9.0 0.000 0.000 0.000 +2450460.5 -0.59028 1.08290 -30132594.9 0.00100 0.00094 7.3 0.000 0.000 0.000 +2450461.5 -0.61714 1.09553 -30134811.2 0.00116 0.00101 10.7 0.000 0.000 0.000 +2450462.5 -0.64058 1.10937 -30137046.8 0.00119 0.00107 9.8 0.000 0.000 0.000 +2450463.5 -0.66141 1.12525 -30139248.8 0.00156 0.00139 10.3 0.000 0.000 0.000 +2450464.5 -0.68129 1.14419 -30141363.4 0.00125 0.00139 10.4 0.000 0.000 0.000 +2450465.5 -0.70055 1.16489 -30143344.5 0.00132 0.00138 9.4 0.000 0.000 0.000 +2450466.5 -0.72036 1.18564 -30145164.2 0.00130 0.00136 9.6 0.000 0.000 0.000 +2450467.5 -0.74247 1.20629 -30146822.2 0.00130 0.00244 9.5 0.000 0.000 0.000 +2450468.5 -0.76868 1.22705 -30148350.7 0.00166 0.00205 6.8 0.000 0.000 0.000 +2450469.5 -0.79755 1.24772 -30149794.2 0.00171 0.00176 5.5 0.000 0.000 0.000 +2450470.5 -0.82430 1.26788 -30151206.8 0.00166 0.00179 5.2 0.000 0.000 0.000 +2450471.5 -0.85024 1.28751 -30152650.5 0.00156 0.00181 5.4 0.000 0.000 0.000 +2450472.5 -0.87782 1.30571 -30154128.9 0.00162 0.00187 5.1 0.000 0.000 0.000 +2450473.5 -0.90637 1.32298 -30155619.5 0.00161 0.00096 6.6 0.000 0.000 0.000 +2450474.5 -0.93737 1.34011 -30157145.0 0.00141 0.00107 7.0 0.000 0.000 0.000 +2450475.5 -0.96893 1.35775 -30158726.2 0.00113 0.00122 9.3 0.000 0.000 0.000 +2450476.5 -0.99923 1.37616 -30160364.7 0.00118 0.00122 7.3 0.000 0.000 0.000 +2450477.5 -1.02851 1.39506 -30162023.7 0.00123 0.00119 8.2 0.000 0.000 0.000 +2450478.5 -1.05640 1.41447 -30163627.3 0.00111 0.00117 8.5 0.000 0.000 0.000 +2450479.5 -1.08412 1.43509 -30165165.5 0.00105 0.00121 7.2 0.000 0.000 0.000 +2450480.5 -1.11444 1.45629 -30166647.9 0.00102 0.00116 6.7 0.000 0.000 0.000 +2450481.5 -1.14486 1.47765 -30168034.4 0.00113 0.00155 6.5 0.000 0.000 0.000 +2450482.5 -1.17310 1.49903 -30169331.1 0.00107 0.00140 6.2 0.000 0.000 0.000 +2450483.5 -1.19964 1.52096 -30170592.7 0.00110 0.00176 6.5 0.000 0.000 0.000 +2450484.5 -1.22566 1.54446 -30171897.5 0.00109 0.00179 6.1 0.000 0.000 0.000 +2450485.5 -1.24881 1.56857 -30173339.9 0.00109 0.00172 7.3 0.000 0.000 0.000 +2450486.5 -1.26838 1.59278 -30174965.5 0.00113 0.00180 7.5 0.000 0.000 0.000 +2450487.5 -1.28606 1.61796 -30176784.5 0.00105 0.00137 12.5 0.000 0.000 0.000 +2450488.5 -1.30445 1.64452 -30178749.7 0.00069 0.00142 9.3 0.000 0.000 0.000 +2450489.5 -1.32345 1.67219 -30180788.5 0.00067 0.00123 8.1 0.000 0.000 0.000 +2450490.5 -1.34260 1.70019 -30182861.5 0.00084 0.00171 7.8 0.000 0.000 0.000 +2450491.5 -1.36286 1.72771 -30184924.6 0.00085 0.00174 7.0 0.000 0.000 0.000 +2450492.5 -1.38390 1.75463 -30186869.8 0.00075 0.00183 8.4 0.000 0.000 0.000 +2450493.5 -1.40474 1.78179 -30188667.2 0.00071 0.00181 8.7 0.000 0.000 0.000 +2450494.5 -1.42625 1.80960 -30190349.6 0.00067 0.00181 8.5 0.000 0.000 0.000 +2450495.5 -1.44979 1.83716 -30191942.1 0.00101 0.00184 14.1 0.000 0.000 0.000 +2450496.5 -1.47573 1.86345 -30193471.7 0.00102 0.00174 11.3 0.000 0.000 0.000 +2450497.5 -1.50217 1.88810 -30194994.4 0.00101 0.00102 9.6 0.000 0.000 0.000 +2450498.5 -1.52689 1.91139 -30196550.1 0.00105 0.00090 7.3 0.000 0.000 0.000 +2450499.5 -1.55060 1.93409 -30198159.2 0.00116 0.00078 7.2 0.000 0.000 0.000 +2450500.5 -1.57192 1.95716 -30199847.1 0.00134 0.00078 6.5 0.000 0.000 0.000 +2450501.5 -1.59010 1.98159 -30201624.2 0.00124 0.00088 6.2 0.000 0.000 0.000 +2450502.5 -1.60548 2.00819 -30203498.7 0.00083 0.00118 9.0 0.000 0.000 0.000 +2450503.5 -1.61734 2.03900 -30205455.6 0.00148 0.00118 8.9 0.000 0.000 0.000 +2450504.5 -1.63215 2.07108 -30207475.4 0.00153 0.00124 10.0 0.000 0.000 0.000 +2450505.5 -1.65131 2.10475 -30209506.9 0.00153 0.00136 10.1 0.000 0.000 0.000 +2450506.5 -1.67568 2.13791 -30211519.7 0.00151 0.00136 10.5 0.000 0.000 0.000 +2450507.5 -1.70054 2.17024 -30213526.8 0.00162 0.00122 10.1 0.000 0.000 0.000 +2450508.5 -1.72172 2.20210 -30215538.1 0.00163 0.00110 10.2 0.000 0.000 0.000 +2450509.5 -1.73795 2.23398 -30217555.4 0.00105 0.00067 11.0 0.000 0.000 0.000 +2450510.5 -1.74911 2.26620 -30219580.8 0.00091 0.00089 7.6 0.000 0.000 0.000 +2450511.5 -1.75656 2.29876 -30221631.4 0.00099 0.00083 6.8 0.000 0.000 0.000 +2450512.5 -1.76331 2.33154 -30223747.7 0.00096 0.00080 5.9 0.000 0.000 0.000 +2450513.5 -1.77216 2.36462 -30225985.6 0.00079 0.00083 8.6 0.000 0.000 0.000 +2450514.5 -1.78474 2.39735 -30228408.6 0.00073 0.00090 8.4 0.000 0.000 0.000 +2450515.5 -1.80169 2.42924 -30231037.0 0.00078 0.00087 9.1 0.000 0.000 0.000 +2450516.5 -1.82129 2.46025 -30233830.5 0.00109 0.00072 9.7 0.000 0.000 0.000 +2450517.5 -1.84068 2.49072 -30236696.5 0.00128 0.00135 7.1 0.000 0.000 0.000 +2450518.5 -1.85576 2.52153 -30239539.7 0.00126 0.00127 6.8 0.000 0.000 0.000 +2450519.5 -1.86349 2.55334 -30242282.6 0.00131 0.00121 4.7 0.000 0.000 0.000 +2450520.5 -1.86570 2.58646 -30244879.9 0.00150 0.00124 5.8 0.000 0.000 0.000 +2450521.5 -1.86463 2.62183 -30247343.2 0.00147 0.00128 5.0 0.000 0.000 0.000 +2450522.5 -1.86448 2.66057 -30249717.1 0.00144 0.00134 5.1 0.000 0.000 0.000 +2450523.5 -1.86843 2.70168 -30252052.4 0.00126 0.00109 11.1 0.000 0.000 0.000 +2450524.5 -1.87585 2.74193 -30254387.4 0.00129 0.00103 7.0 0.000 0.000 0.000 +2450525.5 -1.88290 2.77949 -30256743.2 0.00175 0.00095 6.4 0.000 0.000 0.000 +2450526.5 -1.88667 2.81532 -30259140.6 0.00173 0.00092 6.6 0.000 0.000 0.000 +2450527.5 -1.88864 2.85131 -30261592.5 0.00172 0.00075 6.5 0.000 0.000 0.000 +2450528.5 -1.89193 2.88803 -30264062.3 0.00165 0.00056 7.3 0.000 0.000 0.000 +2450529.5 -1.89500 2.92507 -30266560.0 0.00178 0.00082 6.8 0.000 0.000 0.000 +2450530.5 -1.89631 2.96216 -30269100.0 0.00191 0.00073 7.0 0.000 0.000 0.000 +2450531.5 -1.89566 2.99966 -30271666.8 0.00163 0.00107 7.6 0.000 0.000 0.000 +2450532.5 -1.89417 3.03817 -30274239.9 0.00164 0.00113 7.1 0.000 0.000 0.000 +2450533.5 -1.89493 3.07760 -30276793.7 0.00159 0.00127 7.3 0.000 0.000 0.000 +2450534.5 -1.89928 3.11709 -30279303.2 0.00151 0.00132 6.1 0.000 0.000 0.000 +2450535.5 -1.90382 3.15597 -30281759.5 0.00149 0.00127 6.2 0.000 0.000 0.000 +2450536.5 -1.90734 3.19411 -30284175.9 0.00110 0.00137 5.5 0.000 0.000 0.000 +2450537.5 -1.91028 3.23090 -30286568.4 0.00083 0.00142 6.3 0.000 0.000 0.000 +2450538.5 -1.91194 3.26568 -30288962.2 0.00104 0.00163 5.3 0.000 0.000 0.000 +2450539.5 -1.91012 3.29928 -30291395.0 0.00120 0.00156 5.3 0.000 0.000 0.000 +2450540.5 -1.90313 3.33293 -30293902.6 0.00123 0.00160 5.2 0.000 0.000 0.000 +2450541.5 -1.89286 3.36965 -30296517.3 0.00135 0.00177 5.4 0.000 0.000 0.000 +2450542.5 -1.88243 3.40811 -30299266.7 0.00135 0.00164 4.6 0.000 0.000 0.000 +2450543.5 -1.87241 3.44588 -30302150.3 0.00171 0.00165 5.1 0.000 0.000 0.000 +2450544.5 -1.86343 3.48211 -30305114.6 0.00170 0.00128 5.8 0.000 0.000 0.000 +2450545.5 -1.85490 3.51702 -30308071.9 0.00167 0.00123 4.5 0.000 0.000 0.000 +2450546.5 -1.84512 3.55140 -30310933.7 0.00184 0.00117 4.6 0.000 0.000 0.000 +2450547.5 -1.83407 3.58640 -30313639.7 0.00179 0.00107 5.1 0.000 0.000 0.000 +2450548.5 -1.82363 3.62243 -30316188.8 0.00185 0.00103 5.6 0.000 0.000 0.000 +2450549.5 -1.81339 3.65990 -30318595.5 0.00179 0.00104 5.6 0.000 0.000 0.000 +2450550.5 -1.80374 3.69864 -30320891.9 0.00153 0.00100 6.2 0.000 0.000 0.000 +2450551.5 -1.79657 3.73753 -30323114.4 0.00104 0.00106 15.0 0.000 0.000 0.000 +2450552.5 -1.79217 3.77502 -30325301.9 0.00071 0.00092 8.8 0.000 0.000 0.000 +2450553.5 -1.78851 3.81010 -30327485.5 0.00074 0.00086 6.9 0.000 0.000 0.000 +2450554.5 -1.78365 3.84249 -30329693.3 0.00052 0.00085 6.5 0.000 0.000 0.000 +2450555.5 -1.77686 3.87367 -30331967.0 0.00058 0.00086 6.7 0.000 0.000 0.000 +2450556.5 -1.76810 3.90506 -30334286.5 0.00064 0.00084 6.3 0.000 0.000 0.000 +2450557.5 -1.75814 3.93735 -30336625.3 0.00106 0.00075 5.5 0.000 0.000 0.000 +2450558.5 -1.74834 3.97087 -30338985.0 0.00117 0.00067 5.6 0.000 0.000 0.000 +2450559.5 -1.73990 4.00575 -30341347.6 0.00129 0.00141 6.6 0.000 0.000 0.000 +2450560.5 -1.73309 4.04181 -30343669.2 0.00135 0.00143 6.9 0.000 0.000 0.000 +2450561.5 -1.72675 4.07773 -30345916.3 0.00132 0.00146 5.9 0.000 0.000 0.000 +2450562.5 -1.71755 4.11133 -30348081.8 0.00139 0.00142 6.1 0.000 0.000 0.000 +2450563.5 -1.70415 4.14319 -30350169.8 0.00140 0.00134 10.5 0.000 0.000 0.000 +2450564.5 -1.68747 4.17481 -30352190.4 0.00107 0.00137 11.3 0.000 0.000 0.000 +2450565.5 -1.67022 4.20635 -30354157.0 0.00096 0.00094 16.3 0.000 0.000 0.000 +2450566.5 -1.65550 4.23708 -30356102.3 0.00081 0.00096 11.7 0.000 0.000 0.000 +2450567.5 -1.64456 4.26597 -30358078.1 0.00088 0.00106 11.0 0.000 0.000 0.000 +2450568.5 -1.63490 4.29278 -30360135.5 0.00089 0.00123 11.2 0.000 0.000 0.000 +2450569.5 -1.62363 4.31836 -30362309.1 0.00089 0.00129 10.1 0.000 0.000 0.000 +2450570.5 -1.60875 4.34376 -30364590.5 0.00087 0.00131 10.6 0.000 0.000 0.000 +2450571.5 -1.58868 4.37031 -30366978.8 0.00103 0.00138 10.2 0.000 0.000 0.000 +2450572.5 -1.56358 4.39912 -30369456.3 0.00109 0.00143 12.4 0.000 0.000 0.000 +2450573.5 -1.53530 4.43049 -30371966.0 0.00126 0.00121 13.6 0.000 0.000 0.000 +2450574.5 -1.50714 4.46348 -30374439.8 0.00129 0.00107 14.3 0.000 0.000 0.000 +2450575.5 -1.48043 4.49591 -30376836.0 0.00122 0.00102 13.2 0.000 0.000 0.000 +2450576.5 -1.45321 4.52594 -30379092.3 0.00122 0.00094 12.9 0.000 0.000 0.000 +2450577.5 -1.42398 4.55475 -30381215.7 0.00119 0.00094 12.7 0.000 0.000 0.000 +2450578.5 -1.39342 4.58395 -30383260.0 0.00104 0.00094 13.4 0.000 0.000 0.000 +2450579.5 -1.36377 4.61347 -30385249.1 0.00055 0.00059 11.8 0.000 0.000 0.000 +2450580.5 -1.33783 4.64215 -30387207.3 0.00058 0.00065 4.8 0.000 0.000 0.000 +2450581.5 -1.31603 4.66888 -30389157.4 0.00055 0.00053 4.0 0.000 0.000 0.000 +2450582.5 -1.29584 4.69346 -30391111.2 0.00054 0.00053 4.2 0.000 0.000 0.000 +2450583.5 -1.27494 4.71625 -30393071.6 0.00064 0.00066 5.6 0.000 0.000 0.000 +2450584.5 -1.25133 4.73789 -30395048.4 0.00065 0.00072 5.6 0.000 0.000 0.000 +2450585.5 -1.22408 4.75947 -30397059.7 0.00065 0.00070 4.5 0.000 0.000 0.000 +2450586.5 -1.19451 4.78227 -30399110.2 0.00070 0.00106 5.8 0.000 0.000 0.000 +2450587.5 -1.16475 4.80712 -30401186.9 0.00102 0.00135 6.6 0.000 0.000 0.000 +2450588.5 -1.13557 4.83356 -30403277.6 0.00104 0.00134 6.1 0.000 0.000 0.000 +2450589.5 -1.10692 4.86033 -30405366.8 0.00101 0.00136 5.0 0.000 0.000 0.000 +2450590.5 -1.08172 4.88559 -30407421.5 0.00098 0.00130 5.2 0.000 0.000 0.000 +2450591.5 -1.05879 4.90888 -30409427.2 0.00097 0.00133 5.2 0.000 0.000 0.000 +2450592.5 -1.03616 4.93151 -30411400.4 0.00115 0.00123 8.0 0.000 0.000 0.000 +2450593.5 -1.01363 4.95420 -30413370.0 0.00098 0.00136 11.2 0.000 0.000 0.000 +2450594.5 -0.99088 4.97646 -30415375.6 0.00097 0.00145 10.3 0.000 0.000 0.000 +2450595.5 -0.96701 4.99818 -30417468.0 0.00094 0.00144 10.3 0.000 0.000 0.000 +2450596.5 -0.94183 5.01909 -30419691.2 0.00110 0.00136 11.2 0.000 0.000 0.000 +2450597.5 -0.91766 5.03959 -30422063.1 0.00123 0.00125 12.0 0.000 0.000 0.000 +2450598.5 -0.89500 5.05967 -30424554.0 0.00109 0.00132 11.0 0.000 0.000 0.000 +2450599.5 -0.87266 5.07928 -30427092.4 0.00082 0.00100 10.6 0.000 0.000 0.000 +2450600.5 -0.84987 5.09856 -30429603.1 0.00094 0.00110 14.4 0.000 0.000 0.000 +2450601.5 -0.82614 5.11708 -30432024.1 0.00126 0.00111 13.4 0.000 0.000 0.000 +2450602.5 -0.80057 5.13478 -30434291.0 0.00125 0.00102 13.1 0.000 0.000 0.000 +2450603.5 -0.77366 5.15176 -30436362.0 0.00117 0.00106 12.7 0.000 0.000 0.000 +2450604.5 -0.74871 5.16680 -30438218.3 0.00129 0.00110 12.5 0.000 0.000 0.000 +2450605.5 -0.72578 5.17914 -30439888.0 0.00138 0.00111 12.5 0.000 0.000 0.000 +2450606.5 -0.70339 5.18890 -30441440.2 0.00137 0.00113 10.1 0.000 0.000 0.000 +2450607.5 -0.67969 5.19590 -30442925.0 0.00133 0.00101 6.2 0.000 0.000 0.000 +2450608.5 -0.65184 5.20055 -30444385.0 0.00206 0.00104 4.7 0.000 0.000 0.000 +2450609.5 -0.61814 5.20517 -30445859.5 0.00192 0.00101 5.3 0.000 0.000 0.000 +2450610.5 -0.58043 5.21265 -30447378.1 0.00198 0.00100 7.1 0.000 0.000 0.000 +2450611.5 -0.54283 5.22470 -30448949.4 0.00194 0.00102 7.3 0.000 0.000 0.000 +2450612.5 -0.50558 5.24065 -30450554.1 0.00188 0.00099 11.1 0.000 0.000 0.000 +2450613.5 -0.46886 5.25728 -30452163.5 0.00196 0.00130 14.9 0.000 0.000 0.000 +2450614.5 -0.43281 5.27126 -30453748.9 0.00091 0.00122 13.3 0.000 0.000 0.000 +2450615.5 -0.39681 5.28171 -30455278.7 0.00164 0.00117 12.4 0.000 0.000 0.000 +2450616.5 -0.36052 5.28997 -30456726.8 0.00141 0.00118 12.2 0.000 0.000 0.000 +2450617.5 -0.32392 5.29760 -30458071.8 0.00130 0.00112 11.9 0.000 0.000 0.000 +2450618.5 -0.28783 5.30579 -30459270.7 0.00131 0.00105 10.8 0.000 0.000 0.000 +2450619.5 -0.25068 5.31414 -30460335.5 0.00126 0.00092 11.2 0.000 0.000 0.000 +2450620.5 -0.21197 5.32171 -30461324.1 0.00121 0.00070 9.2 0.000 0.000 0.000 +2450621.5 -0.17166 5.32788 -30462302.4 0.00072 0.00070 9.9 0.000 0.000 0.000 +2450622.5 -0.12992 5.33273 -30463340.1 0.00103 0.00076 7.5 0.000 0.000 0.000 +2450623.5 -0.08875 5.33706 -30464480.8 0.00096 0.00073 7.6 0.000 0.000 0.000 +2450624.5 -0.04953 5.34137 -30465732.0 0.00089 0.00079 7.7 0.000 0.000 0.000 +2450625.5 -0.01221 5.34590 -30467069.5 0.00106 0.00086 7.6 0.000 0.000 0.000 +2450626.5 0.02503 5.35018 -30468443.8 0.00096 0.00092 7.8 0.000 0.000 0.000 +2450627.5 0.06406 5.35365 -30469782.8 0.00094 0.00093 8.3 0.000 0.000 0.000 +2450628.5 0.10560 5.35657 -30471024.4 0.00105 0.00106 8.4 0.000 0.000 0.000 +2450629.5 0.14893 5.36051 -30472129.1 0.00151 0.00141 8.9 0.000 0.000 0.000 +2450630.5 0.19289 5.36587 -30473073.9 0.00148 0.00137 8.8 0.000 0.000 0.000 +2450631.5 0.23577 5.37080 -30473858.5 0.00143 0.00142 8.0 0.000 0.000 0.000 +2450632.5 0.27536 5.37309 -30474499.2 0.00138 0.00140 8.3 0.000 0.000 0.000 +2450633.5 0.31307 5.37244 -30475044.4 0.00137 0.00141 8.5 0.000 0.000 0.000 +2450634.5 0.35046 5.36941 -30475561.9 0.00149 0.00149 9.6 0.000 0.000 0.000 +2450635.5 0.38773 5.36459 -30476114.5 0.00134 0.00078 11.1 0.000 0.000 0.000 +2450636.5 0.42618 5.35864 -30476748.3 0.00138 0.00119 7.6 0.000 0.000 0.000 +2450637.5 0.46747 5.35231 -30477480.2 0.00142 0.00132 7.3 0.000 0.000 0.000 +2450638.5 0.50957 5.34655 -30478305.3 0.00151 0.00141 7.3 0.000 0.000 0.000 +2450639.5 0.54834 5.34223 -30479210.2 0.00149 0.00145 8.4 0.000 0.000 0.000 +2450640.5 0.58359 5.33764 -30480188.4 0.00144 0.00152 8.0 0.000 0.000 0.000 +2450641.5 0.61787 5.33138 -30481226.7 0.00152 0.00144 9.9 0.000 0.000 0.000 +2450642.5 0.65334 5.32380 -30482315.7 0.00140 0.00114 10.7 0.000 0.000 0.000 +2450643.5 0.68964 5.31594 -30483431.6 0.00155 0.00113 9.1 0.000 0.000 0.000 +2450644.5 0.72547 5.30866 -30484541.2 0.00151 0.00105 10.4 0.000 0.000 0.000 +2450645.5 0.75867 5.30188 -30485605.6 0.00151 0.00105 9.6 0.000 0.000 0.000 +2450646.5 0.78823 5.29489 -30486636.6 0.00165 0.00102 9.7 0.000 0.000 0.000 +2450647.5 0.81611 5.28746 -30487700.5 0.00162 0.00106 7.9 0.000 0.000 0.000 +2450648.5 0.84566 5.27914 -30488862.4 0.00141 0.00106 8.1 0.000 0.000 0.000 +2450649.5 0.87947 5.26960 -30490169.9 0.00117 0.00101 16.9 0.000 0.000 0.000 +2450650.5 0.91714 5.25899 -30491666.2 0.00118 0.00126 11.0 0.000 0.000 0.000 +2450651.5 0.95546 5.24804 -30493359.4 0.00129 0.00152 9.3 0.000 0.000 0.000 +2450652.5 0.99154 5.23761 -30495216.9 0.00127 0.00153 9.3 0.000 0.000 0.000 +2450653.5 1.02453 5.22800 -30497183.0 0.00116 0.00144 10.8 0.000 0.000 0.000 +2450654.5 1.05490 5.21937 -30499207.4 0.00111 0.00147 10.5 0.000 0.000 0.000 +2450655.5 1.08112 5.21028 -30501180.9 0.00112 0.00139 10.5 0.000 0.000 0.000 +2450656.5 1.10398 5.19983 -30503032.2 0.00115 0.00128 9.9 0.000 0.000 0.000 +2450657.5 1.12599 5.18779 -30504725.4 0.00114 0.00089 6.2 0.000 0.000 0.000 +2450658.5 1.14950 5.17444 -30506261.6 0.00119 0.00095 7.4 0.000 0.000 0.000 +2450659.5 1.17544 5.16086 -30507658.5 0.00113 0.00093 5.0 0.000 0.000 0.000 +2450660.5 1.20329 5.14765 -30508943.5 0.00108 0.00092 6.4 0.000 0.000 0.000 +2450661.5 1.23310 5.13469 -30510174.2 0.00113 0.00116 6.4 0.000 0.000 0.000 +2450662.5 1.26409 5.12172 -30511406.2 0.00131 0.00129 6.5 0.000 0.000 0.000 +2450663.5 1.29457 5.10863 -30512662.0 0.00118 0.00159 9.8 0.000 0.000 0.000 +2450664.5 1.32384 5.09524 -30513950.5 0.00125 0.00172 7.7 0.000 0.000 0.000 +2450665.5 1.35209 5.08164 -30515288.0 0.00131 0.00161 8.3 0.000 0.000 0.000 +2450666.5 1.37874 5.06822 -30516674.5 0.00141 0.00155 7.4 0.000 0.000 0.000 +2450667.5 1.40252 5.05479 -30518101.8 0.00141 0.00147 7.4 0.000 0.000 0.000 +2450668.5 1.42490 5.04031 -30519564.1 0.00119 0.00127 7.1 0.000 0.000 0.000 +2450669.5 1.44740 5.02364 -30521042.0 0.00098 0.00100 5.5 0.000 0.000 0.000 +2450670.5 1.46978 5.00466 -30522496.9 0.00086 0.00107 10.4 0.000 0.000 0.000 +2450671.5 1.49168 4.98436 -30523893.2 0.00121 0.00164 7.1 0.000 0.000 0.000 +2450672.5 1.51346 4.96417 -30525213.5 0.00122 0.00171 7.0 0.000 0.000 0.000 +2450673.5 1.53535 4.94484 -30526460.5 0.00127 0.00178 7.2 0.000 0.000 0.000 +2450674.5 1.55638 4.92431 -30527646.9 0.00128 0.00186 10.2 0.000 0.000 0.000 +2450675.5 1.57602 4.90245 -30528807.8 0.00128 0.00189 10.3 0.000 0.000 0.000 +2450676.5 1.59484 4.88053 -30530011.6 0.00136 0.00192 9.9 0.000 0.000 0.000 +2450677.5 1.61303 4.85924 -30531335.0 0.00099 0.00141 18.4 0.000 0.000 0.000 +2450678.5 1.63106 4.83832 -30532822.5 0.00114 0.00200 13.1 0.000 0.000 0.000 +2450679.5 1.65001 4.81688 -30534475.6 0.00123 0.00219 10.7 0.000 0.000 0.000 +2450680.5 1.67026 4.79467 -30536275.1 0.00116 0.00206 7.8 0.000 0.000 0.000 +2450681.5 1.69225 4.77141 -30538172.8 0.00117 0.00199 8.5 0.000 0.000 0.000 +2450682.5 1.71667 4.74745 -30540058.3 0.00112 0.00210 8.2 0.000 0.000 0.000 +2450683.5 1.74252 4.72429 -30541836.1 0.00121 0.00220 8.2 0.000 0.000 0.000 +2450684.5 1.76863 4.70322 -30543458.9 0.00119 0.00232 11.2 0.000 0.000 0.000 +2450685.5 1.79368 4.68464 -30544920.3 0.00126 0.00231 15.7 0.000 0.000 0.000 +2450686.5 1.81648 4.66809 -30546265.8 0.00124 0.00233 16.4 0.000 0.000 0.000 +2450687.5 1.83789 4.65201 -30547565.4 0.00117 0.00241 15.8 0.000 0.000 0.000 +2450688.5 1.85964 4.63476 -30548867.3 0.00134 0.00248 14.9 0.000 0.000 0.000 +2450689.5 1.88132 4.61683 -30550177.8 0.00144 0.00245 15.2 0.000 0.000 0.000 +2450690.5 1.90267 4.59849 -30551510.4 0.00149 0.00224 13.6 0.000 0.000 0.000 +2450691.5 1.92482 4.58019 -30552885.0 0.00160 0.00154 11.7 0.000 0.000 0.000 +2450692.5 1.94920 4.56243 -30554327.1 0.00174 0.00171 7.6 0.000 0.000 0.000 +2450693.5 1.97597 4.54472 -30555846.8 0.00171 0.00189 7.7 0.000 0.000 0.000 +2450694.5 2.00358 4.52632 -30557428.2 0.00164 0.00209 7.8 0.000 0.000 0.000 +2450695.5 2.02904 4.50699 -30559043.0 0.00142 0.00186 9.0 0.000 0.000 0.000 +2450696.5 2.04919 4.48583 -30560651.8 0.00143 0.00196 8.6 0.000 0.000 0.000 +2450697.5 2.06510 4.46221 -30562231.7 0.00166 0.00203 7.4 0.000 0.000 0.000 +2450698.5 2.08035 4.43676 -30563777.9 0.00174 0.00201 7.4 0.000 0.000 0.000 +2450699.5 2.09698 4.41109 -30565286.8 0.00162 0.00193 6.0 0.000 0.000 0.000 +2450700.5 2.11418 4.38635 -30566724.1 0.00170 0.00190 6.0 0.000 0.000 0.000 +2450701.5 2.12884 4.36117 -30568083.8 0.00167 0.00193 5.7 0.000 0.000 0.000 +2450702.5 2.14214 4.33417 -30569460.4 0.00165 0.00189 6.8 0.000 0.000 0.000 +2450703.5 2.15528 4.30763 -30570920.1 0.00153 0.00177 6.8 0.000 0.000 0.000 +2450704.5 2.16721 4.28377 -30572497.9 0.00129 0.00196 8.2 0.000 0.000 0.000 +2450705.5 2.17532 4.26224 -30574230.5 0.00131 0.00196 16.7 0.000 0.000 0.000 +2450706.5 2.17910 4.24082 -30576171.5 0.00126 0.00238 14.6 0.000 0.000 0.000 +2450707.5 2.18024 4.21746 -30578338.0 0.00126 0.00230 13.0 0.000 0.000 0.000 +2450708.5 2.18127 4.19221 -30580688.7 0.00125 0.00230 10.3 0.000 0.000 0.000 +2450709.5 2.18490 4.16722 -30583129.7 0.00133 0.00223 12.4 0.000 0.000 0.000 +2450710.5 2.19145 4.14288 -30585538.7 0.00129 0.00198 12.6 0.000 0.000 0.000 +2450711.5 2.19909 4.11873 -30587809.9 0.00096 0.00193 11.9 0.000 0.000 0.000 +2450712.5 2.20637 4.09439 -30589897.0 0.00104 0.00134 10.0 0.000 0.000 0.000 +2450713.5 2.21244 4.06927 -30591817.3 0.00144 0.00213 7.4 0.000 0.000 0.000 +2450714.5 2.21629 4.04284 -30593617.5 0.00146 0.00221 8.7 0.000 0.000 0.000 +2450715.5 2.21724 4.01435 -30595354.6 0.00140 0.00227 7.6 0.000 0.000 0.000 +2450716.5 2.21512 3.98243 -30597080.6 0.00141 0.00233 7.8 0.000 0.000 0.000 +2450717.5 2.21233 3.94859 -30598851.3 0.00144 0.00238 7.6 0.000 0.000 0.000 +2450718.5 2.21052 3.91508 -30600708.6 0.00146 0.00234 10.4 0.000 0.000 0.000 +2450719.5 2.20981 3.88310 -30602638.2 0.00092 0.00257 20.3 0.000 0.000 0.000 +2450720.5 2.21021 3.85294 -30604617.8 0.00073 0.00253 17.4 0.000 0.000 0.000 +2450721.5 2.21114 3.82405 -30606618.6 0.00117 0.00255 18.9 0.000 0.000 0.000 +2450722.5 2.21268 3.79508 -30608630.5 0.00102 0.00249 18.4 0.000 0.000 0.000 +2450723.5 2.21523 3.76485 -30610689.4 0.00101 0.00250 16.2 0.000 0.000 0.000 +2450724.5 2.21763 3.73383 -30612761.0 0.00109 0.00250 12.2 0.000 0.000 0.000 +2450725.5 2.21937 3.70302 -30614789.3 0.00108 0.00229 10.3 0.000 0.000 0.000 +2450726.5 2.22151 3.67379 -30616746.6 0.00119 0.00128 12.6 0.000 0.000 0.000 +2450727.5 2.22413 3.64692 -30618633.4 0.00137 0.00163 10.0 0.000 0.000 0.000 +2450728.5 2.22616 3.62213 -30620474.0 0.00105 0.00157 9.7 0.000 0.000 0.000 +2450729.5 2.22668 3.59831 -30622308.0 0.00122 0.00155 10.5 0.000 0.000 0.000 +2450730.5 2.22548 3.57502 -30624187.7 0.00134 0.00156 12.1 0.000 0.000 0.000 +2450731.5 2.22449 3.55141 -30626154.3 0.00146 0.00158 12.7 0.000 0.000 0.000 +2450732.5 2.22631 3.52651 -30628238.5 0.00146 0.00161 11.2 0.000 0.000 0.000 +2450733.5 2.23151 3.50042 -30630471.0 0.00141 0.00130 15.0 0.000 0.000 0.000 +2450734.5 2.23827 3.47415 -30632863.9 0.00163 0.00161 13.3 0.000 0.000 0.000 +2450735.5 2.24435 3.44822 -30635385.7 0.00149 0.00155 12.9 0.000 0.000 0.000 +2450736.5 2.24914 3.42215 -30637975.6 0.00146 0.00165 10.2 0.000 0.000 0.000 +2450737.5 2.25318 3.39509 -30640564.6 0.00116 0.00149 10.7 0.000 0.000 0.000 +2450738.5 2.25598 3.36682 -30643072.0 0.00127 0.00151 9.9 0.000 0.000 0.000 +2450739.5 2.25808 3.33755 -30645425.1 0.00153 0.00161 7.4 0.000 0.000 0.000 +2450740.5 2.26156 3.30785 -30647595.2 0.00166 0.00142 6.1 0.000 0.000 0.000 +2450741.5 2.26819 3.27881 -30649603.3 0.00169 0.00135 8.4 0.000 0.000 0.000 +2450742.5 2.27668 3.25139 -30651488.6 0.00172 0.00135 8.3 0.000 0.000 0.000 +2450743.5 2.28220 3.22545 -30653293.5 0.00168 0.00130 7.8 0.000 0.000 0.000 +2450744.5 2.28158 3.19973 -30655050.6 0.00160 0.00131 8.1 0.000 0.000 0.000 +2450745.5 2.27723 3.17345 -30656806.4 0.00155 0.00124 8.5 0.000 0.000 0.000 +2450746.5 2.27099 3.14619 -30658603.0 0.00136 0.00099 9.1 0.000 0.000 0.000 +2450747.5 2.26344 3.11758 -30660459.2 0.00090 0.00078 10.1 0.000 0.000 0.000 +2450748.5 2.25433 3.08759 -30662379.5 0.00099 0.00118 5.8 0.000 0.000 0.000 +2450749.5 2.24201 3.05632 -30664356.7 0.00108 0.00188 6.7 0.000 0.000 0.000 +2450750.5 2.22637 3.02357 -30666386.8 0.00123 0.00185 6.1 0.000 0.000 0.000 +2450751.5 2.20971 2.98948 -30668460.5 0.00128 0.00192 10.0 0.000 0.000 0.000 +2450752.5 2.19444 2.95607 -30670567.9 0.00133 0.00201 10.0 0.000 0.000 0.000 +2450753.5 2.18281 2.92499 -30672698.6 0.00144 0.00193 10.6 0.000 0.000 0.000 +2450754.5 2.17524 2.89705 -30674816.1 0.00167 0.00207 10.6 0.000 0.000 0.000 +2450755.5 2.16995 2.87228 -30676893.2 0.00178 0.00151 10.9 0.000 0.000 0.000 +2450756.5 2.16497 2.84967 -30678931.9 0.00166 0.00148 10.9 0.000 0.000 0.000 +2450757.5 2.15940 2.82759 -30680972.8 0.00183 0.00139 9.0 0.000 0.000 0.000 +2450758.5 2.15292 2.80481 -30683101.8 0.00179 0.00127 9.2 0.000 0.000 0.000 +2450759.5 2.14659 2.78182 -30685343.6 0.00162 0.00127 8.3 0.000 0.000 0.000 +2450760.5 2.14057 2.75887 -30687695.0 0.00157 0.00131 8.1 0.000 0.000 0.000 +2450761.5 2.13439 2.73556 -30690168.0 0.00122 0.00123 12.7 0.000 0.000 0.000 +2450762.5 2.12705 2.71171 -30692774.0 0.00117 0.00143 9.8 0.000 0.000 0.000 +2450763.5 2.11698 2.68716 -30695453.7 0.00138 0.00158 7.9 0.000 0.000 0.000 +2450764.5 2.10368 2.66211 -30698115.3 0.00105 0.00160 6.7 0.000 0.000 0.000 +2450765.5 2.08814 2.63732 -30700662.9 0.00107 0.00159 8.1 0.000 0.000 0.000 +2450766.5 2.07172 2.61345 -30702999.7 0.00125 0.00153 8.2 0.000 0.000 0.000 +2450767.5 2.05522 2.59087 -30705076.8 0.00123 0.00153 6.8 0.000 0.000 0.000 +2450768.5 2.04002 2.56929 -30706926.9 0.00123 0.00123 6.5 0.000 0.000 0.000 +2450769.5 2.02739 2.54837 -30708617.9 0.00104 0.00127 5.1 0.000 0.000 0.000 +2450770.5 2.01703 2.52732 -30710213.7 0.00108 0.00122 6.0 0.000 0.000 0.000 +2450771.5 2.00668 2.50486 -30711779.5 0.00112 0.00124 5.0 0.000 0.000 0.000 +2450772.5 1.99258 2.48032 -30713367.8 0.00111 0.00127 6.1 0.000 0.000 0.000 +2450773.5 1.97535 2.45377 -30714973.1 0.00106 0.00124 5.9 0.000 0.000 0.000 +2450774.5 1.95811 2.42562 -30716579.6 0.00110 0.00118 6.2 0.000 0.000 0.000 +2450775.5 1.94118 2.39695 -30718199.9 0.00111 0.00111 9.1 0.000 0.000 0.000 +2450776.5 1.92316 2.36935 -30719839.2 0.00123 0.00135 6.8 0.000 0.000 0.000 +2450777.5 1.90387 2.34406 -30721488.1 0.00103 0.00142 6.8 0.000 0.000 0.000 +2450778.5 1.88380 2.32156 -30723125.9 0.00131 0.00160 4.9 0.000 0.000 0.000 +2450779.5 1.86166 2.30211 -30724723.6 0.00138 0.00159 5.5 0.000 0.000 0.000 +2450780.5 1.83683 2.28452 -30726265.5 0.00139 0.00160 5.3 0.000 0.000 0.000 +2450781.5 1.81009 2.26752 -30727745.4 0.00158 0.00185 5.7 0.000 0.000 0.000 +2450782.5 1.78284 2.25019 -30729169.9 0.00180 0.00167 6.6 0.000 0.000 0.000 +2450783.5 1.75756 2.23177 -30730560.7 0.00204 0.00148 6.3 0.000 0.000 0.000 +2450784.5 1.73672 2.21215 -30731945.3 0.00180 0.00138 6.4 0.000 0.000 0.000 +2450785.5 1.72026 2.19221 -30733354.1 0.00168 0.00126 5.0 0.000 0.000 0.000 +2450786.5 1.70428 2.17325 -30734812.7 0.00166 0.00119 7.3 0.000 0.000 0.000 +2450787.5 1.68611 2.15537 -30736377.1 0.00155 0.00116 7.2 0.000 0.000 0.000 +2450788.5 1.66426 2.13794 -30738105.2 0.00185 0.00103 7.2 0.000 0.000 0.000 +2450789.5 1.63987 2.12040 -30740046.3 0.00169 0.00089 9.3 0.000 0.000 0.000 +2450790.5 1.61506 2.10258 -30742196.4 0.00179 0.00105 7.3 0.000 0.000 0.000 +2450791.5 1.59130 2.08474 -30744463.1 0.00187 0.00115 7.7 0.000 0.000 0.000 +2450792.5 1.57100 2.06746 -30746734.7 0.00194 0.00113 5.8 0.000 0.000 0.000 +2450793.5 1.55444 2.05132 -30748916.4 0.00209 0.00149 5.8 0.000 0.000 0.000 +2450794.5 1.53897 2.03590 -30750964.4 0.00205 0.00172 5.8 0.000 0.000 0.000 +2450795.5 1.52044 2.02008 -30752847.4 0.00160 0.00174 5.5 0.000 0.000 0.000 +2450796.5 1.49610 2.00252 -30754558.0 0.00143 0.00214 7.4 0.000 0.000 0.000 +2450797.5 1.46753 1.98247 -30756134.9 0.00119 0.00168 5.2 0.000 0.000 0.000 +2450798.5 1.43852 1.96101 -30757641.4 0.00116 0.00171 5.4 0.000 0.000 0.000 +2450799.5 1.41159 1.94070 -30759120.4 0.00119 0.00158 6.0 0.000 0.000 0.000 +2450800.5 1.38960 1.92362 -30760609.4 0.00106 0.00152 7.9 0.000 0.000 0.000 +2450801.5 1.37131 1.91148 -30762130.0 0.00112 0.00155 7.6 0.000 0.000 0.000 +2450802.5 1.35033 1.90225 -30763708.5 0.00111 0.00154 7.8 0.000 0.000 0.000 +2450803.5 1.32432 1.89298 -30765348.8 0.00123 0.00155 7.5 0.000 0.000 0.000 +2450804.5 1.29582 1.88179 -30767031.9 0.00142 0.00183 9.1 0.000 0.000 0.000 +2450805.5 1.26627 1.86777 -30768746.0 0.00131 0.00184 8.8 0.000 0.000 0.000 +2450806.5 1.23639 1.85075 -30770450.7 0.00132 0.00171 6.2 0.000 0.000 0.000 +2450807.5 1.20807 1.83310 -30772101.5 0.00124 0.00166 6.5 0.000 0.000 0.000 +2450808.5 1.18125 1.81630 -30773672.0 0.00125 0.00170 5.8 0.000 0.000 0.000 +2450809.5 1.15513 1.80094 -30775143.8 0.00087 0.00125 6.3 0.000 0.000 0.000 +2450810.5 1.12866 1.78739 -30776516.3 0.00088 0.00111 5.4 0.000 0.000 0.000 +2450811.5 1.10126 1.77577 -30777816.2 0.00095 0.00110 5.5 0.000 0.000 0.000 +2450812.5 1.07366 1.76588 -30779104.4 0.00105 0.00120 5.5 0.000 0.000 0.000 +2450813.5 1.04753 1.75688 -30780439.0 0.00106 0.00121 5.0 0.000 0.000 0.000 +2450814.5 1.02414 1.74778 -30781868.9 0.00113 0.00130 6.2 0.000 0.000 0.000 +2450815.5 1.00151 1.73924 -30783448.3 0.00111 0.00125 6.3 0.000 0.000 0.000 +2450816.5 0.97801 1.73214 -30785207.7 0.00110 0.00119 7.4 0.000 0.000 0.000 +2450817.5 0.95392 1.72654 -30787143.3 0.00125 0.00151 14.8 0.000 0.000 0.000 +2450818.5 0.92965 1.72200 -30789206.5 0.00076 0.00104 10.4 0.000 0.000 0.000 +2450819.5 0.90510 1.71764 -30791280.1 0.00082 0.00107 11.6 0.000 0.000 0.000 +2450820.5 0.87997 1.71246 -30793261.3 0.00087 0.00123 10.2 0.000 0.000 0.000 +2450821.5 0.85357 1.70606 -30795107.2 0.00073 0.00113 10.5 0.000 0.000 0.000 +2450822.5 0.82492 1.69891 -30796788.5 0.00089 0.00115 8.4 0.000 0.000 0.000 +2450823.5 0.79409 1.69214 -30798305.8 0.00146 0.00104 7.8 0.000 0.000 0.000 +2450824.5 0.76157 1.68683 -30799721.1 0.00175 0.00120 7.4 0.000 0.000 0.000 +2450825.5 0.72760 1.68315 -30801113.7 0.00164 0.00132 5.4 0.000 0.000 0.000 +2450826.5 0.69483 1.68078 -30802538.1 0.00165 0.00141 5.2 0.000 0.000 0.000 +2450827.5 0.66651 1.67936 -30804044.9 0.00164 0.00128 5.0 0.000 0.000 0.000 +2450828.5 0.63742 1.67776 -30805641.3 0.00165 0.00131 5.2 0.000 0.000 0.000 +2450829.5 0.60562 1.67632 -30807295.6 0.00169 0.00144 4.7 0.000 0.000 0.000 +2450830.5 0.57345 1.67590 -30808983.0 0.00124 0.00157 5.5 0.000 0.000 0.000 +2450831.5 0.54236 1.67684 -30810700.5 0.00098 0.00142 8.9 0.000 0.000 0.000 +2450832.5 0.51185 1.67911 -30812448.3 0.00093 0.00212 6.9 0.000 0.000 0.000 +2450833.5 0.48069 1.68154 -30814205.6 0.00098 0.00188 7.2 0.000 0.000 0.000 +2450834.5 0.44800 1.68196 -30815946.5 0.00094 0.00189 7.6 0.000 0.000 0.000 +2450835.5 0.41419 1.67914 -30817666.6 0.00141 0.00194 7.2 0.000 0.000 0.000 +2450836.5 0.38043 1.67482 -30819368.4 0.00129 0.00200 7.4 0.000 0.000 0.000 +2450837.5 0.34773 1.67074 -30821064.1 0.00147 0.00193 8.0 0.000 0.000 0.000 +2450838.5 0.31641 1.66780 -30822763.5 0.00204 0.00198 9.7 0.000 0.000 0.000 +2450839.5 0.28636 1.66702 -30824468.6 0.00255 0.00136 9.6 0.000 0.000 0.000 +2450840.5 0.25880 1.66901 -30826232.5 0.00237 0.00149 8.7 0.000 0.000 0.000 +2450841.5 0.23319 1.67334 -30828142.7 0.00233 0.00172 9.8 0.000 0.000 0.000 +2450842.5 0.20479 1.67885 -30830273.6 0.00227 0.00153 9.9 0.000 0.000 0.000 +2450843.5 0.17428 1.68453 -30832619.5 0.00215 0.00145 9.6 0.000 0.000 0.000 +2450844.5 0.14319 1.68978 -30835115.3 0.00225 0.00174 10.8 0.000 0.000 0.000 +2450845.5 0.11193 1.69526 -30837663.2 0.00100 0.00193 10.3 0.000 0.000 0.000 +2450846.5 0.08040 1.70186 -30840213.6 0.00132 0.00191 9.8 0.000 0.000 0.000 +2450847.5 0.04771 1.71004 -30842723.2 0.00139 0.00204 9.9 0.000 0.000 0.000 +2450848.5 0.01406 1.71858 -30845161.8 0.00137 0.00178 9.9 0.000 0.000 0.000 +2450849.5 -0.01840 1.72577 -30847527.8 0.00138 0.00177 10.5 0.000 0.000 0.000 +2450850.5 -0.04822 1.73281 -30849789.2 0.00126 0.00172 10.6 0.000 0.000 0.000 +2450851.5 -0.07492 1.74036 -30851929.5 0.00105 0.00152 9.6 0.000 0.000 0.000 +2450852.5 -0.09950 1.74733 -30853999.0 0.00090 0.00151 10.7 0.000 0.000 0.000 +2450853.5 -0.12375 1.75246 -30856036.3 0.00097 0.00142 9.3 0.000 0.000 0.000 +2450854.5 -0.15004 1.75501 -30858017.8 0.00090 0.00147 9.2 0.000 0.000 0.000 +2450855.5 -0.17869 1.75568 -30859943.8 0.00089 0.00148 8.5 0.000 0.000 0.000 +2450856.5 -0.20569 1.75784 -30861879.9 0.00094 0.00154 8.4 0.000 0.000 0.000 +2450857.5 -0.22953 1.76203 -30863847.2 0.00090 0.00150 6.2 0.000 0.000 0.000 +2450858.5 -0.25004 1.76761 -30865838.4 0.00118 0.00151 8.0 0.000 0.000 0.000 +2450859.5 -0.26800 1.77538 -30867834.7 0.00111 0.00136 8.6 0.000 0.000 0.000 +2450860.5 -0.28444 1.78596 -30869821.0 0.00171 0.00123 6.7 0.000 0.000 0.000 +2450861.5 -0.30053 1.79910 -30871782.8 0.00190 0.00109 13.7 0.000 0.000 0.000 +2450862.5 -0.31920 1.81371 -30873687.8 0.00202 0.00103 14.9 0.000 0.000 0.000 +2450863.5 -0.34509 1.82799 -30875499.2 0.00199 0.00110 15.7 0.000 0.000 0.000 +2450864.5 -0.37666 1.84081 -30877271.0 0.00197 0.00100 15.3 0.000 0.000 0.000 +2450865.5 -0.41101 1.85189 -30879060.9 0.00192 0.00103 15.1 0.000 0.000 0.000 +2450866.5 -0.44618 1.86127 -30880872.3 0.00143 0.00109 14.4 0.000 0.000 0.000 +2450867.5 -0.47913 1.86974 -30882735.2 0.00131 0.00109 8.5 0.000 0.000 0.000 +2450868.5 -0.50846 1.87801 -30884701.6 0.00139 0.00118 10.0 0.000 0.000 0.000 +2450869.5 -0.53484 1.88605 -30886818.6 0.00134 0.00112 10.1 0.000 0.000 0.000 +2450870.5 -0.55725 1.89445 -30889097.9 0.00128 0.00117 10.6 0.000 0.000 0.000 +2450871.5 -0.57401 1.90451 -30891518.7 0.00137 0.00119 10.9 0.000 0.000 0.000 +2450872.5 -0.58572 1.91766 -30894064.7 0.00135 0.00113 10.8 0.000 0.000 0.000 +2450873.5 -0.59517 1.93373 -30896705.2 0.00103 0.00109 15.4 0.000 0.000 0.000 +2450874.5 -0.60575 1.95128 -30899337.1 0.00087 0.00136 10.8 0.000 0.000 0.000 +2450875.5 -0.61923 1.96897 -30901857.1 0.00077 0.00124 7.7 0.000 0.000 0.000 +2450876.5 -0.63507 1.98644 -30904201.1 0.00074 0.00115 6.0 0.000 0.000 0.000 +2450877.5 -0.65182 2.00528 -30906374.7 0.00080 0.00110 6.2 0.000 0.000 0.000 +2450878.5 -0.66820 2.02487 -30908411.6 0.00067 0.00108 6.7 0.000 0.000 0.000 +2450879.5 -0.68405 2.04480 -30910347.5 0.00066 0.00108 7.6 0.000 0.000 0.000 +2450880.5 -0.70000 2.06554 -30912217.1 0.00086 0.00066 9.8 0.000 0.000 0.000 +2450881.5 -0.71611 2.08677 -30914058.0 0.00104 0.00068 8.5 0.000 0.000 0.000 +2450882.5 -0.73252 2.10772 -30915916.9 0.00111 0.00120 6.6 0.000 0.000 0.000 +2450883.5 -0.74827 2.12770 -30917850.5 0.00123 0.00121 6.6 0.000 0.000 0.000 +2450884.5 -0.76098 2.14704 -30919904.7 0.00114 0.00116 6.4 0.000 0.000 0.000 +2450885.5 -0.77154 2.16817 -30922012.6 0.00124 0.00119 6.1 0.000 0.000 0.000 +2450886.5 -0.78337 2.19025 -30924137.1 0.00136 0.00119 5.9 0.000 0.000 0.000 +2450887.5 -0.80074 2.21120 -30926254.5 0.00123 0.00138 4.8 0.000 0.000 0.000 +2450888.5 -0.82298 2.22984 -30928334.6 0.00121 0.00107 6.8 0.000 0.000 0.000 +2450889.5 -0.84649 2.24651 -30930356.8 0.00121 0.00123 6.3 0.000 0.000 0.000 +2450890.5 -0.86902 2.26253 -30932301.2 0.00126 0.00126 4.8 0.000 0.000 0.000 +2450891.5 -0.88923 2.27860 -30934159.0 0.00130 0.00133 5.5 0.000 0.000 0.000 +2450892.5 -0.90794 2.29553 -30935945.9 0.00139 0.00141 5.3 0.000 0.000 0.000 +2450893.5 -0.92785 2.31284 -30937693.9 0.00157 0.00134 6.4 0.000 0.000 0.000 +2450894.5 -0.94775 2.32844 -30939447.1 0.00153 0.00110 6.9 0.000 0.000 0.000 +2450895.5 -0.96473 2.34215 -30941253.8 0.00146 0.00099 5.0 0.000 0.000 0.000 +2450896.5 -0.97872 2.35613 -30943164.4 0.00140 0.00099 6.3 0.000 0.000 0.000 +2450897.5 -0.99204 2.37237 -30945236.0 0.00141 0.00085 7.0 0.000 0.000 0.000 +2450898.5 -1.00602 2.39038 -30947544.2 0.00151 0.00088 7.9 0.000 0.000 0.000 +2450899.5 -1.02171 2.40991 -30950054.3 0.00142 0.00094 7.9 0.000 0.000 0.000 +2450900.5 -1.03925 2.43083 -30952645.8 0.00132 0.00090 8.9 0.000 0.000 0.000 +2450901.5 -1.05840 2.45313 -30955217.3 0.00136 0.00100 13.1 0.000 0.000 0.000 +2450902.5 -1.07648 2.47612 -30957703.8 0.00123 0.00093 14.5 0.000 0.000 0.000 +2450903.5 -1.08992 2.49909 -30960030.7 0.00114 0.00098 14.2 0.000 0.000 0.000 +2450904.5 -1.09850 2.52271 -30962171.8 0.00111 0.00095 12.9 0.000 0.000 0.000 +2450905.5 -1.10442 2.54716 -30964160.4 0.00083 0.00079 12.0 0.000 0.000 0.000 +2450906.5 -1.11069 2.57129 -30966037.7 0.00073 0.00079 10.9 0.000 0.000 0.000 +2450907.5 -1.11922 2.59422 -30967855.6 0.00086 0.00094 11.2 0.000 0.000 0.000 +2450908.5 -1.12902 2.61579 -30969665.6 0.00120 0.00091 12.7 0.000 0.000 0.000 +2450909.5 -1.13693 2.63681 -30971501.0 0.00166 0.00111 11.7 0.000 0.000 0.000 +2450910.5 -1.14046 2.65910 -30973377.6 0.00163 0.00152 11.1 0.000 0.000 0.000 +2450911.5 -1.14062 2.68377 -30975302.2 0.00163 0.00160 11.2 0.000 0.000 0.000 +2450912.5 -1.13914 2.70998 -30977265.9 0.00165 0.00160 11.1 0.000 0.000 0.000 +2450913.5 -1.13744 2.73817 -30979215.3 0.00164 0.00153 10.9 0.000 0.000 0.000 +2450914.5 -1.13643 2.76774 -30981153.5 0.00177 0.00148 10.2 0.000 0.000 0.000 +2450915.5 -1.13765 2.79697 -30983105.5 0.00138 0.00145 8.8 0.000 0.000 0.000 +2450916.5 -1.14133 2.82484 -30985052.0 0.00141 0.00112 6.8 0.000 0.000 0.000 +2450917.5 -1.14609 2.85141 -30986939.9 0.00144 0.00101 7.4 0.000 0.000 0.000 +2450918.5 -1.14986 2.87762 -30988741.7 0.00147 0.00099 6.7 0.000 0.000 0.000 +2450919.5 -1.14877 2.90379 -30990477.8 0.00153 0.00098 6.9 0.000 0.000 0.000 +2450920.5 -1.14508 2.93075 -30992146.1 0.00156 0.00094 7.2 0.000 0.000 0.000 +2450921.5 -1.14038 2.95906 -30993803.2 0.00135 0.00096 8.5 0.000 0.000 0.000 +2450922.5 -1.13680 2.98767 -30995500.3 0.00095 0.00096 9.2 0.000 0.000 0.000 +2450923.5 -1.13566 3.01544 -30997284.3 0.00105 0.00113 8.9 0.000 0.000 0.000 +2450924.5 -1.13602 3.04269 -30999203.6 0.00096 0.00110 8.2 0.000 0.000 0.000 +2450925.5 -1.13660 3.07042 -31001298.9 0.00092 0.00121 8.0 0.000 0.000 0.000 +2450926.5 -1.13700 3.09931 -31003578.7 0.00082 0.00124 8.2 0.000 0.000 0.000 +2450927.5 -1.13646 3.12695 -31006035.0 0.00085 0.00127 7.7 0.000 0.000 0.000 +2450928.5 -1.13457 3.15123 -31008598.8 0.00083 0.00126 7.5 0.000 0.000 0.000 +2450929.5 -1.13107 3.17256 -31011133.8 0.00051 0.00093 7.4 0.000 0.000 0.000 +2450930.5 -1.12764 3.19347 -31013517.2 0.00081 0.00117 9.3 0.000 0.000 0.000 +2450931.5 -1.12694 3.21591 -31015691.6 0.00081 0.00099 9.9 0.000 0.000 0.000 +2450932.5 -1.12918 3.23952 -31017665.7 0.00070 0.00094 8.9 0.000 0.000 0.000 +2450933.5 -1.13187 3.26212 -31019506.2 0.00070 0.00083 8.5 0.000 0.000 0.000 +2450934.5 -1.13334 3.28310 -31021294.6 0.00076 0.00084 9.1 0.000 0.000 0.000 +2450935.5 -1.13447 3.30308 -31023075.8 0.00086 0.00083 6.9 0.000 0.000 0.000 +2450936.5 -1.13639 3.32314 -31024858.4 0.00063 0.00070 11.5 0.000 0.000 0.000 +2450937.5 -1.13914 3.34418 -31026639.2 0.00076 0.00100 9.7 0.000 0.000 0.000 +2450938.5 -1.14198 3.36679 -31028417.5 0.00077 0.00100 8.6 0.000 0.000 0.000 +2450939.5 -1.14418 3.39078 -31030208.7 0.00074 0.00102 8.6 0.000 0.000 0.000 +2450940.5 -1.14511 3.41387 -31032052.3 0.00078 0.00098 8.3 0.000 0.000 0.000 +2450941.5 -1.14442 3.43535 -31033900.4 0.00073 0.00094 8.3 0.000 0.000 0.000 +2450942.5 -1.14223 3.45574 -31035714.3 0.00066 0.00088 8.5 0.000 0.000 0.000 +2450943.5 -1.13838 3.47585 -31037490.9 0.00064 0.00060 5.0 0.000 0.000 0.000 +2450944.5 -1.13335 3.49644 -31039206.4 0.00059 0.00043 5.2 0.000 0.000 0.000 +2450945.5 -1.12828 3.51762 -31040835.9 0.00064 0.00043 3.8 0.000 0.000 0.000 +2450946.5 -1.12343 3.53906 -31042368.6 0.00064 0.00046 4.9 0.000 0.000 0.000 +2450947.5 -1.11861 3.56000 -31043815.6 0.00060 0.00045 6.9 0.000 0.000 0.000 +2450948.5 -1.11350 3.57980 -31045222.3 0.00061 0.00045 6.9 0.000 0.000 0.000 +2450949.5 -1.10883 3.59833 -31046662.3 0.00058 0.00050 7.1 0.000 0.000 0.000 +2450950.5 -1.10554 3.61601 -31048212.5 0.00053 0.00086 7.9 0.000 0.000 0.000 +2450951.5 -1.10291 3.63357 -31049927.3 0.00062 0.00111 6.0 0.000 0.000 0.000 +2450952.5 -1.10017 3.65186 -31051837.7 0.00065 0.00125 10.9 0.000 0.000 0.000 +2450953.5 -1.09882 3.67169 -31053943.9 0.00063 0.00125 10.6 0.000 0.000 0.000 +2450954.5 -1.09860 3.69339 -31056206.5 0.00065 0.00127 10.4 0.000 0.000 0.000 +2450955.5 -1.09588 3.71866 -31058552.7 0.00079 0.00127 10.4 0.000 0.000 0.000 +2450956.5 -1.09148 3.74623 -31060944.8 0.00075 0.00122 10.3 0.000 0.000 0.000 +2450957.5 -1.08645 3.77386 -31063271.2 0.00069 0.00099 11.8 0.000 0.000 0.000 +2450958.5 -1.08057 3.80019 -31065424.0 0.00074 0.00092 8.7 0.000 0.000 0.000 +2450959.5 -1.07583 3.82463 -31067356.6 0.00073 0.00092 8.6 0.000 0.000 0.000 +2450960.5 -1.07387 3.84660 -31069071.0 0.00072 0.00108 9.5 0.000 0.000 0.000 +2450961.5 -1.07338 3.86526 -31070591.7 0.00062 0.00125 12.4 0.000 0.000 0.000 +2450962.5 -1.07066 3.88152 -31071975.7 0.00056 0.00127 13.0 0.000 0.000 0.000 +2450963.5 -1.06464 3.89807 -31073297.2 0.00057 0.00126 13.7 0.000 0.000 0.000 +2450964.5 -1.05798 3.91687 -31074613.0 0.00054 0.00103 9.9 0.000 0.000 0.000 +2450965.5 -1.05231 3.93736 -31075944.1 0.00050 0.00109 8.1 0.000 0.000 0.000 +2450966.5 -1.04738 3.95791 -31077271.0 0.00055 0.00097 8.5 0.000 0.000 0.000 +2450967.5 -1.04440 3.97713 -31078581.7 0.00053 0.00079 6.8 0.000 0.000 0.000 +2450968.5 -1.04504 3.99420 -31079877.6 0.00055 0.00086 7.6 0.000 0.000 0.000 +2450969.5 -1.04634 4.01005 -31081145.3 0.00054 0.00086 6.8 0.000 0.000 0.000 +2450970.5 -1.04506 4.02570 -31082355.8 0.00055 0.00087 6.7 0.000 0.000 0.000 +2450971.5 -1.04100 4.04149 -31083457.8 0.00051 0.00073 8.4 0.000 0.000 0.000 +2450972.5 -1.03570 4.05745 -31084432.5 0.00047 0.00069 6.9 0.000 0.000 0.000 +2450973.5 -1.02957 4.07350 -31085283.9 0.00047 0.00075 6.6 0.000 0.000 0.000 +2450974.5 -1.02132 4.08969 -31086032.4 0.00050 0.00072 8.6 0.000 0.000 0.000 +2450975.5 -1.01187 4.10576 -31086726.4 0.00059 0.00074 9.9 0.000 0.000 0.000 +2450976.5 -1.00428 4.12094 -31087405.7 0.00063 0.00077 10.6 0.000 0.000 0.000 +2450977.5 -0.99925 4.13470 -31088101.8 0.00067 0.00091 10.2 0.000 0.000 0.000 +2450978.5 -0.99322 4.14735 -31088860.6 0.00072 0.00098 13.3 0.000 0.000 0.000 +2450979.5 -0.98304 4.15998 -31089719.4 0.00094 0.00113 12.9 0.000 0.000 0.000 +2450980.5 -0.96937 4.17343 -31090652.7 0.00098 0.00110 9.7 0.000 0.000 0.000 +2450981.5 -0.95272 4.18808 -31091635.2 0.00093 0.00107 9.1 0.000 0.000 0.000 +2450982.5 -0.93561 4.20497 -31092641.6 0.00092 0.00110 8.9 0.000 0.000 0.000 +2450983.5 -0.91698 4.22158 -31093616.5 0.00089 0.00104 8.9 0.000 0.000 0.000 +2450984.5 -0.89836 4.23658 -31094541.4 0.00082 0.00101 9.0 0.000 0.000 0.000 +2450985.5 -0.88083 4.25020 -31095372.8 0.00060 0.00108 5.1 0.000 0.000 0.000 +2450986.5 -0.86369 4.26311 -31096062.9 0.00066 0.00102 7.1 0.000 0.000 0.000 +2450987.5 -0.84609 4.27641 -31096596.4 0.00068 0.00109 8.2 0.000 0.000 0.000 +2450988.5 -0.82849 4.29108 -31097014.4 0.00075 0.00114 9.0 0.000 0.000 0.000 +2450989.5 -0.81286 4.30675 -31097399.5 0.00074 0.00121 9.1 0.000 0.000 0.000 +2450990.5 -0.79775 4.32119 -31097792.0 0.00077 0.00122 8.3 0.000 0.000 0.000 +2450991.5 -0.78133 4.33395 -31098218.6 0.00080 0.00145 9.7 0.000 0.000 0.000 +2450992.5 -0.76166 4.34576 -31098685.8 0.00088 0.00137 11.4 0.000 0.000 0.000 +2450993.5 -0.73764 4.35815 -31099206.4 0.00085 0.00141 9.8 0.000 0.000 0.000 +2450994.5 -0.71015 4.37250 -31099786.7 0.00086 0.00153 8.6 0.000 0.000 0.000 +2450995.5 -0.68154 4.38862 -31100408.8 0.00082 0.00153 8.5 0.000 0.000 0.000 +2450996.5 -0.65482 4.40515 -31101033.0 0.00082 0.00157 8.6 0.000 0.000 0.000 +2450997.5 -0.62924 4.42164 -31101598.1 0.00079 0.00130 7.3 0.000 0.000 0.000 +2450998.5 -0.60426 4.43842 -31102066.8 0.00080 0.00135 4.9 0.000 0.000 0.000 +2450999.5 -0.57908 4.45549 -31102440.4 0.00063 0.00155 4.6 0.000 0.000 0.000 +2451000.5 -0.55319 4.47216 -31102718.6 0.00098 0.00156 6.9 0.000 0.000 0.000 +2451001.5 -0.52737 4.48736 -31102896.7 0.00104 0.00155 7.1 0.000 0.000 0.000 +2451002.5 -0.50187 4.50077 -31102982.4 0.00103 0.00152 9.9 0.000 0.000 0.000 +2451003.5 -0.47704 4.51339 -31103003.5 0.00113 0.00154 9.9 0.000 0.000 0.000 +2451004.5 -0.45199 4.52727 -31103041.5 0.00107 0.00144 10.2 0.000 0.000 0.000 +2451005.5 -0.42685 4.54322 -31103194.7 0.00103 0.00134 9.0 0.000 0.000 0.000 +2451006.5 -0.40152 4.56003 -31103522.6 0.00073 0.00120 8.3 0.000 0.000 0.000 +2451007.5 -0.37658 4.57634 -31104029.8 0.00061 0.00119 8.4 0.000 0.000 0.000 +2451008.5 -0.35232 4.59166 -31104681.2 0.00060 0.00113 6.2 0.000 0.000 0.000 +2451009.5 -0.32900 4.60556 -31105419.0 0.00056 0.00106 6.3 0.000 0.000 0.000 +2451010.5 -0.30683 4.61674 -31106173.6 0.00055 0.00101 6.9 0.000 0.000 0.000 +2451011.5 -0.28522 4.62551 -31106865.9 0.00060 0.00098 6.6 0.000 0.000 0.000 +2451012.5 -0.26428 4.63344 -31107439.3 0.00066 0.00094 7.0 0.000 0.000 0.000 +2451013.5 -0.24443 4.64166 -31107872.4 0.00079 0.00071 5.9 0.000 0.000 0.000 +2451014.5 -0.22493 4.65026 -31108164.3 0.00108 0.00082 9.7 0.000 0.000 0.000 +2451015.5 -0.20569 4.65900 -31108331.1 0.00115 0.00078 11.0 0.000 0.000 0.000 +2451016.5 -0.18657 4.66777 -31108422.6 0.00107 0.00081 11.2 0.000 0.000 0.000 +2451017.5 -0.16506 4.67629 -31108522.4 0.00104 0.00080 11.2 0.000 0.000 0.000 +2451018.5 -0.14203 4.68402 -31108684.4 0.00101 0.00078 11.2 0.000 0.000 0.000 +2451019.5 -0.11813 4.69131 -31108944.6 0.00096 0.00081 11.9 0.000 0.000 0.000 +2451020.5 -0.09269 4.69958 -31109314.3 0.00054 0.00064 11.3 0.000 0.000 0.000 +2451021.5 -0.06668 4.70972 -31109762.3 0.00057 0.00106 10.2 0.000 0.000 0.000 +2451022.5 -0.04172 4.72121 -31110246.9 0.00119 0.00148 8.8 0.000 0.000 0.000 +2451023.5 -0.01843 4.73337 -31110730.4 0.00122 0.00154 10.6 0.000 0.000 0.000 +2451024.5 0.00226 4.74535 -31111193.5 0.00124 0.00153 10.5 0.000 0.000 0.000 +2451025.5 0.02130 4.75581 -31111670.4 0.00122 0.00157 10.6 0.000 0.000 0.000 +2451026.5 0.03987 4.76456 -31112136.9 0.00118 0.00160 10.5 0.000 0.000 0.000 +2451027.5 0.05895 4.77103 -31112552.2 0.00139 0.00165 9.2 0.000 0.000 0.000 +2451028.5 0.07792 4.77523 -31112917.6 0.00096 0.00122 13.0 0.000 0.000 0.000 +2451029.5 0.09780 4.77858 -31113246.9 0.00101 0.00120 6.0 0.000 0.000 0.000 +2451030.5 0.11973 4.78217 -31113560.5 0.00102 0.00120 6.0 0.000 0.000 0.000 +2451031.5 0.14121 4.78547 -31113883.8 0.00107 0.00108 6.7 0.000 0.000 0.000 +2451032.5 0.16098 4.78733 -31114274.3 0.00116 0.00101 6.5 0.000 0.000 0.000 +2451033.5 0.17942 4.78701 -31114795.4 0.00099 0.00092 3.5 0.000 0.000 0.000 +2451034.5 0.19931 4.78563 -31115484.0 0.00062 0.00090 4.5 0.000 0.000 0.000 +2451035.5 0.22221 4.78518 -31116339.1 0.00106 0.00116 4.0 0.000 0.000 0.000 +2451036.5 0.24768 4.78597 -31117309.1 0.00113 0.00116 4.6 0.000 0.000 0.000 +2451037.5 0.27592 4.78706 -31118317.0 0.00118 0.00120 4.3 0.000 0.000 0.000 +2451038.5 0.30554 4.78659 -31119287.2 0.00115 0.00114 5.3 0.000 0.000 0.000 +2451039.5 0.33246 4.78542 -31120132.9 0.00123 0.00115 6.2 0.000 0.000 0.000 +2451040.5 0.35470 4.78399 -31120799.9 0.00126 0.00116 8.1 0.000 0.000 0.000 +2451041.5 0.37423 4.78123 -31121275.5 0.00076 0.00077 19.8 0.000 0.000 0.000 +2451042.5 0.39468 4.77740 -31121592.6 0.00058 0.00082 19.1 0.000 0.000 0.000 +2451043.5 0.41701 4.77451 -31121826.6 0.00039 0.00079 20.9 0.000 0.000 0.000 +2451044.5 0.43962 4.77339 -31122035.5 0.00038 0.00093 22.1 0.000 0.000 0.000 +2451045.5 0.46203 4.77341 -31122236.7 0.00032 0.00087 20.6 0.000 0.000 0.000 +2451046.5 0.48393 4.77307 -31122495.5 0.00029 0.00083 21.2 0.000 0.000 0.000 +2451047.5 0.50449 4.77095 -31122858.8 0.00033 0.00086 13.4 0.000 0.000 0.000 +2451048.5 0.52365 4.76782 -31123315.0 0.00047 0.00099 11.7 0.000 0.000 0.000 +2451049.5 0.54230 4.76581 -31123841.1 0.00049 0.00124 7.8 0.000 0.000 0.000 +2451050.5 0.56162 4.76579 -31124424.0 0.00065 0.00117 7.2 0.000 0.000 0.000 +2451051.5 0.58239 4.76648 -31125062.4 0.00067 0.00122 7.4 0.000 0.000 0.000 +2451052.5 0.60561 4.76575 -31125742.5 0.00068 0.00123 7.8 0.000 0.000 0.000 +2451053.5 0.63107 4.76470 -31126363.6 0.00067 0.00123 7.5 0.000 0.000 0.000 +2451054.5 0.65542 4.76427 -31126921.2 0.00061 0.00123 8.0 0.000 0.000 0.000 +2451055.5 0.67639 4.76385 -31127467.6 0.00058 0.00070 8.6 0.000 0.000 0.000 +2451056.5 0.69486 4.76194 -31128027.5 0.00048 0.00068 12.0 0.000 0.000 0.000 +2451057.5 0.71205 4.75730 -31128609.2 0.00054 0.00064 12.6 0.000 0.000 0.000 +2451058.5 0.72929 4.74899 -31129234.3 0.00059 0.00062 12.3 0.000 0.000 0.000 +2451059.5 0.74849 4.73720 -31129924.3 0.00068 0.00055 13.7 0.000 0.000 0.000 +2451060.5 0.77185 4.72411 -31130722.0 0.00073 0.00060 13.9 0.000 0.000 0.000 +2451061.5 0.79856 4.71211 -31131683.0 0.00071 0.00062 12.6 0.000 0.000 0.000 +2451062.5 0.82521 4.70178 -31132837.0 0.00081 0.00080 11.3 0.000 0.000 0.000 +2451063.5 0.84989 4.69282 -31134150.1 0.00090 0.00105 9.9 0.000 0.000 0.000 +2451064.5 0.87267 4.68548 -31135572.9 0.00093 0.00112 10.3 0.000 0.000 0.000 +2451065.5 0.89385 4.67967 -31137031.6 0.00094 0.00116 9.9 0.000 0.000 0.000 +2451066.5 0.91423 4.67365 -31138443.2 0.00094 0.00119 10.8 0.000 0.000 0.000 +2451067.5 0.93276 4.66755 -31139702.5 0.00104 0.00113 11.2 0.000 0.000 0.000 +2451068.5 0.95030 4.66214 -31140756.4 0.00100 0.00106 11.2 0.000 0.000 0.000 +2451069.5 0.96923 4.65765 -31141625.1 0.00077 0.00083 16.3 0.000 0.000 0.000 +2451070.5 0.99189 4.65398 -31142353.5 0.00082 0.00089 12.1 0.000 0.000 0.000 +2451071.5 1.01734 4.65113 -31143036.2 0.00086 0.00092 12.7 0.000 0.000 0.000 +2451072.5 1.04219 4.64848 -31143748.4 0.00081 0.00099 13.0 0.000 0.000 0.000 +2451073.5 1.06347 4.64451 -31144525.1 0.00070 0.00096 12.9 0.000 0.000 0.000 +2451074.5 1.07971 4.63764 -31145383.3 0.00062 0.00095 12.8 0.000 0.000 0.000 +2451075.5 1.09242 4.62627 -31146344.1 0.00064 0.00095 12.6 0.000 0.000 0.000 +2451076.5 1.10536 4.61183 -31147409.5 0.00074 0.00077 10.9 0.000 0.000 0.000 +2451077.5 1.12097 4.59663 -31148534.2 0.00069 0.00120 6.8 0.000 0.000 0.000 +2451078.5 1.13945 4.58164 -31149672.6 0.00067 0.00116 4.9 0.000 0.000 0.000 +2451079.5 1.15898 4.56714 -31150780.2 0.00066 0.00116 4.4 0.000 0.000 0.000 +2451080.5 1.17639 4.55268 -31151829.2 0.00070 0.00114 8.0 0.000 0.000 0.000 +2451081.5 1.19140 4.53929 -31152825.8 0.00074 0.00119 8.0 0.000 0.000 0.000 +2451082.5 1.20363 4.52685 -31153774.3 0.00072 0.00114 7.2 0.000 0.000 0.000 +2451083.5 1.21367 4.51340 -31154669.8 0.00062 0.00065 11.0 0.000 0.000 0.000 +2451084.5 1.22315 4.49768 -31155505.5 0.00077 0.00070 9.6 0.000 0.000 0.000 +2451085.5 1.23281 4.48099 -31156318.1 0.00068 0.00083 7.3 0.000 0.000 0.000 +2451086.5 1.24240 4.46551 -31157172.0 0.00072 0.00086 3.2 0.000 0.000 0.000 +2451087.5 1.25313 4.45212 -31158162.2 0.00076 0.00088 4.1 0.000 0.000 0.000 +2451088.5 1.26546 4.44002 -31159345.8 0.00068 0.00088 4.1 0.000 0.000 0.000 +2451089.5 1.28086 4.42694 -31160750.3 0.00074 0.00107 4.1 0.000 0.000 0.000 +2451090.5 1.29807 4.41297 -31162381.9 0.00090 0.00122 5.9 0.000 0.000 0.000 +2451091.5 1.31491 4.39777 -31164199.5 0.00089 0.00122 5.0 0.000 0.000 0.000 +2451092.5 1.32993 4.38061 -31166100.5 0.00097 0.00123 5.2 0.000 0.000 0.000 +2451093.5 1.34309 4.36117 -31167976.8 0.00094 0.00126 5.1 0.000 0.000 0.000 +2451094.5 1.35691 4.34047 -31169771.7 0.00097 0.00128 6.9 0.000 0.000 0.000 +2451095.5 1.37243 4.32143 -31171429.8 0.00103 0.00127 6.9 0.000 0.000 0.000 +2451096.5 1.38834 4.30689 -31172952.1 0.00101 0.00117 8.5 0.000 0.000 0.000 +2451097.5 1.40203 4.29638 -31174344.3 0.00083 0.00105 9.8 0.000 0.000 0.000 +2451098.5 1.41286 4.28686 -31175627.2 0.00072 0.00099 14.3 0.000 0.000 0.000 +2451099.5 1.42092 4.27576 -31176859.0 0.00072 0.00091 16.2 0.000 0.000 0.000 +2451100.5 1.42884 4.26172 -31178108.4 0.00065 0.00093 14.6 0.000 0.000 0.000 +2451101.5 1.43986 4.24662 -31179439.6 0.00067 0.00097 15.8 0.000 0.000 0.000 +2451102.5 1.45307 4.23321 -31180827.1 0.00060 0.00084 14.4 0.000 0.000 0.000 +2451103.5 1.46704 4.22172 -31182243.7 0.00044 0.00070 14.5 0.000 0.000 0.000 +2451104.5 1.48080 4.21079 -31183688.8 0.00079 0.00066 14.0 0.000 0.000 0.000 +2451105.5 1.49294 4.19907 -31185153.6 0.00080 0.00108 7.1 0.000 0.000 0.000 +2451106.5 1.50293 4.18568 -31186616.1 0.00089 0.00108 6.5 0.000 0.000 0.000 +2451107.5 1.51198 4.16990 -31188064.7 0.00088 0.00109 5.3 0.000 0.000 0.000 +2451108.5 1.51837 4.15086 -31189479.3 0.00102 0.00124 5.6 0.000 0.000 0.000 +2451109.5 1.52237 4.13073 -31190813.7 0.00102 0.00123 5.3 0.000 0.000 0.000 +2451110.5 1.52536 4.11208 -31192073.5 0.00095 0.00121 5.8 0.000 0.000 0.000 +2451111.5 1.52953 4.09564 -31193303.5 0.00075 0.00106 8.7 0.000 0.000 0.000 +2451112.5 1.53505 4.08006 -31194523.2 0.00061 0.00105 14.2 0.000 0.000 0.000 +2451113.5 1.54186 4.06375 -31195716.2 0.00056 0.00097 17.7 0.000 0.000 0.000 +2451114.5 1.55037 4.04651 -31196901.4 0.00043 0.00084 20.4 0.000 0.000 0.000 +2451115.5 1.56074 4.02921 -31198160.1 0.00040 0.00080 20.9 0.000 0.000 0.000 +2451116.5 1.57185 4.01316 -31199590.0 0.00041 0.00081 20.3 0.000 0.000 0.000 +2451117.5 1.58291 3.99825 -31201245.4 0.00047 0.00085 15.6 0.000 0.000 0.000 +2451118.5 1.59458 3.98396 -31203130.3 0.00050 0.00101 13.3 0.000 0.000 0.000 +2451119.5 1.60694 3.96965 -31205192.6 0.00060 0.00095 7.4 0.000 0.000 0.000 +2451120.5 1.61886 3.95519 -31207325.1 0.00099 0.00114 6.9 0.000 0.000 0.000 +2451121.5 1.62845 3.94035 -31209409.3 0.00108 0.00116 6.5 0.000 0.000 0.000 +2451122.5 1.63272 3.92375 -31211365.0 0.00105 0.00121 7.8 0.000 0.000 0.000 +2451123.5 1.63213 3.90507 -31213140.7 0.00107 0.00130 8.2 0.000 0.000 0.000 +2451124.5 1.63263 3.88362 -31214755.1 0.00103 0.00131 8.3 0.000 0.000 0.000 +2451125.5 1.63626 3.86009 -31216248.7 0.00100 0.00108 7.7 0.000 0.000 0.000 +2451126.5 1.64221 3.83613 -31217681.9 0.00088 0.00093 9.7 0.000 0.000 0.000 +2451127.5 1.64879 3.81264 -31219120.2 0.00054 0.00082 9.4 0.000 0.000 0.000 +2451128.5 1.65517 3.79013 -31220590.9 0.00047 0.00080 6.7 0.000 0.000 0.000 +2451129.5 1.66180 3.76921 -31222089.6 0.00042 0.00078 7.2 0.000 0.000 0.000 +2451130.5 1.66646 3.74893 -31223608.1 0.00039 0.00068 7.1 0.000 0.000 0.000 +2451131.5 1.66663 3.72843 -31225131.9 0.00039 0.00077 7.1 0.000 0.000 0.000 +2451132.5 1.66215 3.70790 -31226641.4 0.00059 0.00104 11.3 0.000 0.000 0.000 +2451133.5 1.65475 3.68736 -31228114.3 0.00074 0.00127 10.8 0.000 0.000 0.000 +2451134.5 1.64702 3.66734 -31229545.2 0.00078 0.00147 10.8 0.000 0.000 0.000 +2451135.5 1.64178 3.64813 -31230933.8 0.00082 0.00150 10.0 0.000 0.000 0.000 +2451136.5 1.63854 3.62880 -31232280.5 0.00094 0.00152 10.0 0.000 0.000 0.000 +2451137.5 1.63280 3.60966 -31233578.2 0.00105 0.00147 10.2 0.000 0.000 0.000 +2451138.5 1.62049 3.59076 -31234833.7 0.00096 0.00136 10.1 0.000 0.000 0.000 +2451139.5 1.60171 3.57115 -31236062.2 0.00077 0.00110 12.9 0.000 0.000 0.000 +2451140.5 1.58201 3.55065 -31237288.1 0.00073 0.00096 10.4 0.000 0.000 0.000 +2451141.5 1.56440 3.53082 -31238532.9 0.00073 0.00095 10.6 0.000 0.000 0.000 +2451142.5 1.54900 3.51195 -31239818.8 0.00070 0.00107 11.3 0.000 0.000 0.000 +2451143.5 1.53777 3.49260 -31241204.0 0.00061 0.00104 11.6 0.000 0.000 0.000 +2451144.5 1.52877 3.47211 -31242740.5 0.00066 0.00109 11.7 0.000 0.000 0.000 +2451145.5 1.51920 3.45041 -31244440.4 0.00075 0.00114 8.6 0.000 0.000 0.000 +2451146.5 1.51001 3.42889 -31246269.3 0.00079 0.00125 9.3 0.000 0.000 0.000 +2451147.5 1.50227 3.40948 -31248132.3 0.00120 0.00149 7.6 0.000 0.000 0.000 +2451148.5 1.49270 3.39267 -31249930.2 0.00115 0.00146 6.8 0.000 0.000 0.000 +2451149.5 1.48037 3.37731 -31251593.9 0.00122 0.00148 6.1 0.000 0.000 0.000 +2451150.5 1.47090 3.36315 -31253115.8 0.00127 0.00141 6.1 0.000 0.000 0.000 +2451151.5 1.46541 3.35186 -31254479.8 0.00127 0.00137 5.5 0.000 0.000 0.000 +2451152.5 1.45949 3.34320 -31255706.9 0.00128 0.00152 6.3 0.000 0.000 0.000 +2451153.5 1.45019 3.33489 -31256849.4 0.00091 0.00153 9.7 0.000 0.000 0.000 +2451154.5 1.43781 3.32554 -31257950.3 0.00088 0.00137 9.3 0.000 0.000 0.000 +2451155.5 1.42355 3.31434 -31259032.0 0.00076 0.00131 10.3 0.000 0.000 0.000 +2451156.5 1.40931 3.29945 -31260105.3 0.00072 0.00124 10.9 0.000 0.000 0.000 +2451157.5 1.39740 3.28058 -31261218.4 0.00065 0.00116 11.3 0.000 0.000 0.000 +2451158.5 1.38756 3.25998 -31262390.9 0.00065 0.00111 10.3 0.000 0.000 0.000 +2451159.5 1.37966 3.23979 -31263582.7 0.00067 0.00082 10.2 0.000 0.000 0.000 +2451160.5 1.37430 3.22068 -31264735.7 0.00046 0.00062 9.5 0.000 0.000 0.000 +2451161.5 1.37204 3.20259 -31265827.5 0.00048 0.00090 6.1 0.000 0.000 0.000 +2451162.5 1.37277 3.18608 -31266846.5 0.00056 0.00094 5.4 0.000 0.000 0.000 +2451163.5 1.37568 3.17190 -31267779.1 0.00059 0.00101 4.7 0.000 0.000 0.000 +2451164.5 1.38079 3.15907 -31268615.8 0.00065 0.00105 5.1 0.000 0.000 0.000 +2451165.5 1.38953 3.14663 -31269372.0 0.00071 0.00109 5.1 0.000 0.000 0.000 +2451166.5 1.40156 3.13589 -31270059.5 0.00066 0.00137 4.5 0.000 0.000 0.000 +2451167.5 1.41448 3.12705 -31270700.9 0.00066 0.00132 7.8 0.000 0.000 0.000 +2451168.5 1.42416 3.11710 -31271335.9 0.00074 0.00129 8.7 0.000 0.000 0.000 +2451169.5 1.42881 3.10266 -31272000.6 0.00070 0.00128 8.8 0.000 0.000 0.000 +2451170.5 1.43073 3.08525 -31272744.2 0.00067 0.00126 9.0 0.000 0.000 0.000 +2451171.5 1.43175 3.06879 -31273649.9 0.00066 0.00126 10.0 0.000 0.000 0.000 +2451172.5 1.43165 3.05392 -31274750.2 0.00068 0.00119 9.9 0.000 0.000 0.000 +2451173.5 1.42900 3.03966 -31276000.6 0.00082 0.00074 9.6 0.000 0.000 0.000 +2451174.5 1.42367 3.02614 -31277331.2 0.00099 0.00087 8.5 0.000 0.000 0.000 +2451175.5 1.41806 3.01356 -31278675.3 0.00102 0.00088 7.8 0.000 0.000 0.000 +2451176.5 1.41292 3.00155 -31279977.5 0.00101 0.00105 7.4 0.000 0.000 0.000 +2451177.5 1.40683 2.98896 -31281209.9 0.00106 0.00102 6.0 0.000 0.000 0.000 +2451178.5 1.39760 2.97462 -31282334.1 0.00101 0.00109 6.2 0.000 0.000 0.000 +2451179.5 1.38662 2.95726 -31283336.9 0.00110 0.00106 4.8 0.000 0.000 0.000 +2451180.5 1.37870 2.93747 -31284246.2 0.00081 0.00107 9.1 0.000 0.000 0.000 +2451181.5 1.37506 2.91866 -31285107.1 0.00087 0.00111 13.0 0.000 0.000 0.000 +2451182.5 1.37217 2.90294 -31285957.7 0.00091 0.00104 13.5 0.000 0.000 0.000 +2451183.5 1.36818 2.88984 -31286818.1 0.00083 0.00104 14.9 0.000 0.000 0.000 +2451184.5 1.36482 2.87924 -31287720.5 0.00085 0.00094 16.3 0.000 0.000 0.000 +2451185.5 1.36332 2.87197 -31288734.8 0.00073 0.00097 18.2 0.000 0.000 0.000 +2451186.5 1.36203 2.86724 -31289816.3 0.00062 0.00090 16.9 0.000 0.000 0.000 +2451187.5 1.35837 2.86352 -31290895.3 0.00055 0.00095 17.7 0.000 0.000 0.000 +2451188.5 1.34994 2.85871 -31291964.6 0.00076 0.00092 16.5 0.000 0.000 0.000 +2451189.5 1.33556 2.85043 -31293006.3 0.00118 0.00094 12.5 0.000 0.000 0.000 +2451190.5 1.31549 2.83737 -31293951.6 0.00115 0.00090 13.0 0.000 0.000 0.000 +2451191.5 1.29265 2.82059 -31294765.4 0.00120 0.00095 10.9 0.000 0.000 0.000 +2451192.5 1.27047 2.80160 -31295499.8 0.00119 0.00100 10.9 0.000 0.000 0.000 +2451193.5 1.24936 2.78159 -31296181.7 0.00120 0.00092 9.6 0.000 0.000 0.000 +2451194.5 1.22799 2.76241 -31296792.3 0.00123 0.00093 10.0 0.000 0.000 0.000 +2451195.5 1.20715 2.74526 -31297347.6 0.00073 0.00090 11.3 0.000 0.000 0.000 +2451196.5 1.18972 2.72993 -31297893.0 0.00096 0.00106 8.0 0.000 0.000 0.000 +2451197.5 1.17610 2.71575 -31298509.1 0.00094 0.00098 8.0 0.000 0.000 0.000 +2451198.5 1.16624 2.70192 -31299262.6 0.00099 0.00113 11.2 0.000 0.000 0.000 +2451199.5 1.16168 2.68857 -31300202.7 0.00100 0.00100 14.7 0.000 0.000 0.000 +2451200.5 1.16203 2.67663 -31301328.0 0.00102 0.00102 14.4 0.000 0.000 0.000 +2451201.5 1.16308 2.66590 -31302597.2 0.00124 0.00119 19.3 0.000 0.000 0.000 +2451202.5 1.16022 2.65533 -31303965.5 0.00140 0.00117 24.9 0.000 0.000 0.000 +2451203.5 1.15202 2.64426 -31305374.7 0.00162 0.00133 18.7 0.000 0.000 0.000 +2451204.5 1.14076 2.63344 -31306725.9 0.00180 0.00146 13.3 0.000 0.000 0.000 +2451205.5 1.12911 2.62407 -31307975.0 0.00169 0.00149 10.9 0.000 0.000 0.000 +2451206.5 1.11705 2.61568 -31309157.6 0.00171 0.00146 11.1 0.000 0.000 0.000 +2451207.5 1.10610 2.60696 -31310301.4 0.00159 0.00142 5.7 0.000 0.000 0.000 +2451208.5 1.09464 2.59743 -31311455.0 0.00160 0.00132 7.2 0.000 0.000 0.000 +2451209.5 1.08165 2.58701 -31312638.4 0.00135 0.00117 7.7 0.000 0.000 0.000 +2451210.5 1.06683 2.57511 -31313864.2 0.00138 0.00121 9.2 0.000 0.000 0.000 +2451211.5 1.05089 2.56175 -31315136.2 0.00172 0.00104 15.3 0.000 0.000 0.000 +2451212.5 1.03481 2.54829 -31316445.2 0.00174 0.00128 15.5 0.000 0.000 0.000 +2451213.5 1.02007 2.53609 -31317774.1 0.00189 0.00157 15.3 0.000 0.000 0.000 +2451214.5 1.01001 2.52736 -31319107.5 0.00190 0.00161 14.2 0.000 0.000 0.000 +2451215.5 1.00420 2.52394 -31320428.8 0.00184 0.00166 14.3 0.000 0.000 0.000 +2451216.5 0.99709 2.52408 -31321711.8 0.00192 0.00170 16.5 0.000 0.000 0.000 +2451217.5 0.98469 2.52435 -31322923.9 0.00190 0.00170 12.9 0.000 0.000 0.000 +2451218.5 0.96760 2.52360 -31324044.8 0.00188 0.00162 13.7 0.000 0.000 0.000 +2451219.5 0.94791 2.52095 -31325088.1 0.00186 0.00143 14.2 0.000 0.000 0.000 +2451220.5 0.92707 2.51395 -31326057.2 0.00185 0.00147 15.5 0.000 0.000 0.000 +2451221.5 0.90821 2.50405 -31326963.6 0.00180 0.00147 15.4 0.000 0.000 0.000 +2451222.5 0.89248 2.49387 -31327860.7 0.00171 0.00149 13.5 0.000 0.000 0.000 +2451223.5 0.87966 2.48408 -31328819.6 0.00120 0.00112 18.6 0.000 0.000 0.000 +2451224.5 0.86868 2.47601 -31329886.0 0.00124 0.00101 13.7 0.000 0.000 0.000 +2451225.5 0.85793 2.47135 -31331081.7 0.00113 0.00111 13.1 0.000 0.000 0.000 +2451226.5 0.84530 2.46975 -31332426.4 0.00109 0.00094 11.7 0.000 0.000 0.000 +2451227.5 0.82774 2.46877 -31333947.8 0.00111 0.00096 12.4 0.000 0.000 0.000 +2451228.5 0.80891 2.46595 -31335605.8 0.00104 0.00086 12.1 0.000 0.000 0.000 +2451229.5 0.79399 2.46105 -31337303.2 0.00097 0.00081 12.1 0.000 0.000 0.000 +2451230.5 0.78531 2.45627 -31338958.7 0.00095 0.00104 17.1 0.000 0.000 0.000 +2451231.5 0.78239 2.45304 -31340527.5 0.00092 0.00087 14.7 0.000 0.000 0.000 +2451232.5 0.78164 2.45076 -31341949.2 0.00088 0.00087 14.2 0.000 0.000 0.000 +2451233.5 0.77718 2.44839 -31343188.9 0.00084 0.00081 13.3 0.000 0.000 0.000 +2451234.5 0.76558 2.44484 -31344268.8 0.00088 0.00081 13.7 0.000 0.000 0.000 +2451235.5 0.74961 2.43951 -31345232.1 0.00093 0.00079 13.9 0.000 0.000 0.000 +2451236.5 0.73168 2.43268 -31346124.8 0.00090 0.00081 13.6 0.000 0.000 0.000 +2451237.5 0.71464 2.42554 -31347012.3 0.00063 0.00056 17.0 0.000 0.000 0.000 +2451238.5 0.70069 2.41976 -31347932.7 0.00071 0.00065 11.3 0.000 0.000 0.000 +2451239.5 0.68995 2.41657 -31348874.7 0.00072 0.00067 15.8 0.000 0.000 0.000 +2451240.5 0.68200 2.41639 -31349824.6 0.00078 0.00077 17.1 0.000 0.000 0.000 +2451241.5 0.67493 2.41858 -31350802.3 0.00076 0.00069 16.2 0.000 0.000 0.000 +2451242.5 0.66647 2.42193 -31351816.2 0.00073 0.00068 15.3 0.000 0.000 0.000 +2451243.5 0.65569 2.42524 -31352826.5 0.00102 0.00090 11.0 0.000 0.000 0.000 +2451244.5 0.64434 2.42717 -31353741.7 0.00125 0.00088 11.3 0.000 0.000 0.000 +2451245.5 0.63364 2.42726 -31354570.8 0.00145 0.00090 7.4 0.000 0.000 0.000 +2451246.5 0.62277 2.42547 -31355332.4 0.00158 0.00085 4.9 0.000 0.000 0.000 +2451247.5 0.61117 2.42178 -31356042.6 0.00159 0.00087 4.5 0.000 0.000 0.000 +2451248.5 0.60054 2.41779 -31356735.5 0.00168 0.00090 4.8 0.000 0.000 0.000 +2451249.5 0.58892 2.41408 -31357451.0 0.00157 0.00067 4.7 0.000 0.000 0.000 +2451250.5 0.57599 2.41030 -31358234.8 0.00158 0.00080 5.4 0.000 0.000 0.000 +2451251.5 0.56177 2.40602 -31359135.9 0.00126 0.00098 5.2 0.000 0.000 0.000 +2451252.5 0.54647 2.40153 -31360199.5 0.00114 0.00120 5.5 0.000 0.000 0.000 +2451253.5 0.52992 2.39722 -31361439.2 0.00112 0.00136 6.1 0.000 0.000 0.000 +2451254.5 0.51221 2.39311 -31362839.6 0.00104 0.00136 6.2 0.000 0.000 0.000 +2451255.5 0.49878 2.39101 -31364371.7 0.00103 0.00138 7.3 0.000 0.000 0.000 +2451256.5 0.49026 2.39219 -31365993.3 0.00108 0.00123 7.3 0.000 0.000 0.000 +2451257.5 0.48271 2.39599 -31367655.2 0.00086 0.00114 9.8 0.000 0.000 0.000 +2451258.5 0.47412 2.40100 -31369317.3 0.00075 0.00093 13.0 0.000 0.000 0.000 +2451259.5 0.46599 2.40637 -31370917.7 0.00071 0.00077 9.1 0.000 0.000 0.000 +2451260.5 0.45650 2.41135 -31372379.0 0.00101 0.00097 9.6 0.000 0.000 0.000 +2451261.5 0.44170 2.41474 -31373682.4 0.00107 0.00094 9.0 0.000 0.000 0.000 +2451262.5 0.42102 2.41584 -31374884.6 0.00112 0.00105 8.7 0.000 0.000 0.000 +2451263.5 0.39380 2.41585 -31376033.9 0.00116 0.00107 8.0 0.000 0.000 0.000 +2451264.5 0.36432 2.41526 -31377210.1 0.00107 0.00125 9.0 0.000 0.000 0.000 +2451265.5 0.33832 2.41314 -31378452.5 0.00103 0.00129 10.6 0.000 0.000 0.000 +2451266.5 0.31761 2.41084 -31379772.9 0.00060 0.00124 8.9 0.000 0.000 0.000 +2451267.5 0.29928 2.41071 -31381145.1 0.00062 0.00124 10.8 0.000 0.000 0.000 +2451268.5 0.28037 2.41194 -31382534.3 0.00047 0.00114 11.0 0.000 0.000 0.000 +2451269.5 0.26057 2.41135 -31383944.1 0.00046 0.00119 10.2 0.000 0.000 0.000 +2451270.5 0.23974 2.40832 -31385364.2 0.00045 0.00104 9.1 0.000 0.000 0.000 +2451271.5 0.21905 2.40384 -31386751.2 0.00048 0.00098 9.4 0.000 0.000 0.000 +2451272.5 0.20137 2.39963 -31388056.4 0.00105 0.00087 12.1 0.000 0.000 0.000 +2451273.5 0.18737 2.39710 -31389280.5 0.00146 0.00087 11.0 0.000 0.000 0.000 +2451274.5 0.17469 2.39717 -31390449.8 0.00149 0.00084 10.7 0.000 0.000 0.000 +2451275.5 0.15914 2.40002 -31391593.7 0.00147 0.00081 10.7 0.000 0.000 0.000 +2451276.5 0.13876 2.40334 -31392698.1 0.00150 0.00085 10.3 0.000 0.000 0.000 +2451277.5 0.12140 2.40555 -31393784.0 0.00153 0.00095 9.8 0.000 0.000 0.000 +2451278.5 0.11083 2.40804 -31394920.6 0.00155 0.00095 9.2 0.000 0.000 0.000 +2451279.5 0.10560 2.41312 -31396162.0 0.00088 0.00134 9.5 0.000 0.000 0.000 +2451280.5 0.10204 2.42138 -31397563.3 0.00083 0.00151 12.7 0.000 0.000 0.000 +2451281.5 0.09650 2.43113 -31399168.7 0.00082 0.00147 7.8 0.000 0.000 0.000 +2451282.5 0.08885 2.44125 -31400967.5 0.00080 0.00148 8.4 0.000 0.000 0.000 +2451283.5 0.08159 2.45239 -31402873.3 0.00078 0.00131 9.5 0.000 0.000 0.000 +2451284.5 0.07408 2.46493 -31404810.6 0.00066 0.00126 8.6 0.000 0.000 0.000 +2451285.5 0.06342 2.47681 -31406699.2 0.00079 0.00132 8.8 0.000 0.000 0.000 +2451286.5 0.04867 2.48522 -31408457.5 0.00089 0.00086 9.8 0.000 0.000 0.000 +2451287.5 0.03156 2.48924 -31410063.2 0.00099 0.00092 9.1 0.000 0.000 0.000 +2451288.5 0.01593 2.49017 -31411520.4 0.00100 0.00098 10.8 0.000 0.000 0.000 +2451289.5 0.00275 2.49008 -31412864.3 0.00098 0.00093 10.5 0.000 0.000 0.000 +2451290.5 -0.00972 2.49080 -31414130.0 0.00101 0.00095 10.6 0.000 0.000 0.000 +2451291.5 -0.02186 2.49439 -31415347.6 0.00103 0.00091 11.2 0.000 0.000 0.000 +2451292.5 -0.03566 2.50135 -31416590.4 0.00095 0.00081 11.6 0.000 0.000 0.000 +2451293.5 -0.05254 2.51018 -31417896.2 0.00082 0.00052 13.6 0.000 0.000 0.000 +2451294.5 -0.06900 2.51935 -31419272.8 0.00083 0.00048 17.0 0.000 0.000 0.000 +2451295.5 -0.07942 2.52863 -31420711.7 0.00082 0.00051 16.9 0.000 0.000 0.000 +2451296.5 -0.08277 2.53911 -31422184.7 0.00084 0.00048 17.9 0.000 0.000 0.000 +2451297.5 -0.08387 2.55170 -31423657.5 0.00088 0.00051 14.6 0.000 0.000 0.000 +2451298.5 -0.08588 2.56577 -31425089.0 0.00085 0.00053 12.7 0.000 0.000 0.000 +2451299.5 -0.09185 2.57903 -31426443.2 0.00083 0.00058 9.5 0.000 0.000 0.000 +2451300.5 -0.10347 2.58928 -31427699.1 0.00074 0.00078 9.0 0.000 0.000 0.000 +2451301.5 -0.11873 2.59593 -31428839.2 0.00109 0.00083 8.2 0.000 0.000 0.000 +2451302.5 -0.13458 2.59959 -31429846.9 0.00106 0.00092 8.0 0.000 0.000 0.000 +2451303.5 -0.14797 2.60175 -31430715.1 0.00102 0.00094 8.1 0.000 0.000 0.000 +2451304.5 -0.15724 2.60526 -31431474.7 0.00105 0.00096 8.1 0.000 0.000 0.000 +2451305.5 -0.16426 2.61149 -31432197.7 0.00098 0.00098 8.5 0.000 0.000 0.000 +2451306.5 -0.17119 2.61962 -31432975.8 0.00086 0.00100 7.8 0.000 0.000 0.000 +2451307.5 -0.17870 2.62789 -31433874.0 0.00070 0.00088 7.2 0.000 0.000 0.000 +2451308.5 -0.18477 2.63606 -31434933.8 0.00059 0.00080 7.1 0.000 0.000 0.000 +2451309.5 -0.18823 2.64586 -31436161.7 0.00060 0.00084 7.1 0.000 0.000 0.000 +2451310.5 -0.19059 2.65795 -31437558.3 0.00058 0.00080 7.1 0.000 0.000 0.000 +2451311.5 -0.19187 2.67186 -31439097.9 0.00063 0.00079 8.9 0.000 0.000 0.000 +2451312.5 -0.19149 2.68658 -31440692.3 0.00065 0.00053 7.4 0.000 0.000 0.000 +2451313.5 -0.18973 2.70184 -31442228.9 0.00060 0.00054 12.6 0.000 0.000 0.000 +2451314.5 -0.18976 2.71781 -31443616.2 0.00071 0.00076 13.1 0.000 0.000 0.000 +2451315.5 -0.19324 2.73417 -31444822.4 0.00093 0.00087 11.8 0.000 0.000 0.000 +2451316.5 -0.19787 2.74936 -31445895.3 0.00093 0.00100 11.2 0.000 0.000 0.000 +2451317.5 -0.20128 2.76150 -31446922.9 0.00090 0.00098 9.4 0.000 0.000 0.000 +2451318.5 -0.20332 2.77008 -31447968.8 0.00091 0.00102 10.4 0.000 0.000 0.000 +2451319.5 -0.20438 2.77674 -31449067.4 0.00081 0.00098 11.5 0.000 0.000 0.000 +2451320.5 -0.20450 2.78354 -31450257.7 0.00083 0.00095 12.1 0.000 0.000 0.000 +2451321.5 -0.20467 2.79097 -31451524.8 0.00059 0.00089 14.9 0.000 0.000 0.000 +2451322.5 -0.20683 2.79826 -31452815.8 0.00045 0.00087 16.4 0.000 0.000 0.000 +2451323.5 -0.21262 2.80503 -31454117.1 0.00045 0.00097 16.1 0.000 0.000 0.000 +2451324.5 -0.22165 2.81112 -31455383.1 0.00048 0.00097 16.5 0.000 0.000 0.000 +2451325.5 -0.23053 2.81606 -31456521.0 0.00056 0.00095 14.9 0.000 0.000 0.000 +2451326.5 -0.23667 2.82164 -31457512.3 0.00054 0.00095 14.9 0.000 0.000 0.000 +2451327.5 -0.24033 2.82816 -31458379.3 0.00055 0.00095 13.4 0.000 0.000 0.000 +2451328.5 -0.24333 2.83433 -31459142.7 0.00078 0.00065 16.7 0.000 0.000 0.000 +2451329.5 -0.24652 2.83999 -31459820.8 0.00101 0.00084 14.6 0.000 0.000 0.000 +2451330.5 -0.25079 2.84631 -31460429.1 0.00109 0.00087 15.4 0.000 0.000 0.000 +2451331.5 -0.25754 2.85420 -31461000.9 0.00103 0.00092 17.1 0.000 0.000 0.000 +2451332.5 -0.26578 2.86301 -31461579.0 0.00099 0.00092 16.1 0.000 0.000 0.000 +2451333.5 -0.27285 2.87327 -31462202.9 0.00103 0.00101 16.2 0.000 0.000 0.000 +2451334.5 -0.27871 2.88633 -31462922.4 0.00102 0.00097 14.6 0.000 0.000 0.000 +2451335.5 -0.28523 2.90177 -31463776.0 0.00059 0.00066 14.5 0.000 0.000 0.000 +2451336.5 -0.29186 2.91659 -31464765.5 0.00063 0.00075 11.5 0.000 0.000 0.000 +2451337.5 -0.29754 2.92843 -31465912.4 0.00057 0.00069 12.1 0.000 0.000 0.000 +2451338.5 -0.30300 2.93659 -31467205.6 0.00065 0.00065 12.5 0.000 0.000 0.000 +2451339.5 -0.30738 2.94133 -31468578.8 0.00065 0.00053 16.2 0.000 0.000 0.000 +2451340.5 -0.31038 2.94527 -31469941.8 0.00067 0.00057 16.8 0.000 0.000 0.000 +2451341.5 -0.31309 2.95078 -31471196.4 0.00085 0.00056 15.8 0.000 0.000 0.000 +2451342.5 -0.31514 2.95826 -31472254.9 0.00084 0.00066 14.9 0.000 0.000 0.000 +2451343.5 -0.31656 2.96786 -31473115.8 0.00097 0.00091 13.5 0.000 0.000 0.000 +2451344.5 -0.31975 2.97845 -31473835.3 0.00092 0.00093 13.8 0.000 0.000 0.000 +2451345.5 -0.32548 2.98745 -31474473.6 0.00091 0.00103 11.6 0.000 0.000 0.000 +2451346.5 -0.32920 2.99396 -31475087.7 0.00086 0.00107 11.6 0.000 0.000 0.000 +2451347.5 -0.32979 2.99929 -31475743.6 0.00088 0.00105 10.4 0.000 0.000 0.000 +2451348.5 -0.32827 3.00477 -31476456.9 0.00071 0.00091 8.4 0.000 0.000 0.000 +2451349.5 -0.32548 3.01173 -31477201.5 0.00047 0.00058 6.9 0.000 0.000 0.000 +2451350.5 -0.32331 3.02042 -31477945.7 0.00053 0.00056 5.9 0.000 0.000 0.000 +2451351.5 -0.32297 3.02954 -31478665.6 0.00054 0.00051 6.8 0.000 0.000 0.000 +2451352.5 -0.32329 3.03800 -31479309.8 0.00061 0.00043 6.5 0.000 0.000 0.000 +2451353.5 -0.32152 3.04619 -31479813.1 0.00061 0.00044 8.6 0.000 0.000 0.000 +2451354.5 -0.31924 3.05521 -31480175.5 0.00066 0.00051 7.7 0.000 0.000 0.000 +2451355.5 -0.31987 3.06513 -31480408.0 0.00073 0.00046 13.3 0.000 0.000 0.000 +2451356.5 -0.32339 3.07500 -31480510.8 0.00106 0.00063 15.2 0.000 0.000 0.000 +2451357.5 -0.32596 3.08342 -31480506.6 0.00110 0.00069 11.2 0.000 0.000 0.000 +2451358.5 -0.32558 3.09001 -31480419.5 0.00108 0.00083 11.2 0.000 0.000 0.000 +2451359.5 -0.32354 3.09585 -31480296.0 0.00107 0.00080 12.0 0.000 0.000 0.000 +2451360.5 -0.32226 3.10190 -31480181.5 0.00104 0.00081 13.1 0.000 0.000 0.000 +2451361.5 -0.32068 3.10915 -31480113.4 0.00104 0.00081 13.2 0.000 0.000 0.000 +2451362.5 -0.31699 3.11909 -31480140.9 0.00099 0.00082 12.3 0.000 0.000 0.000 +2451363.5 -0.31085 3.13215 -31480300.3 0.00062 0.00072 15.5 0.000 0.000 0.000 +2451364.5 -0.30357 3.14699 -31480646.7 0.00060 0.00047 19.4 0.000 0.000 0.000 +2451365.5 -0.29618 3.16126 -31481166.2 0.00062 0.00057 13.9 0.000 0.000 0.000 +2451366.5 -0.28824 3.17371 -31481803.6 0.00063 0.00047 10.9 0.000 0.000 0.000 +2451367.5 -0.27897 3.18494 -31482468.1 0.00062 0.00048 15.9 0.000 0.000 0.000 +2451368.5 -0.26951 3.19651 -31483071.0 0.00063 0.00048 16.8 0.000 0.000 0.000 +2451369.5 -0.26138 3.20873 -31483561.0 0.00073 0.00082 16.5 0.000 0.000 0.000 +2451370.5 -0.25471 3.22078 -31483936.5 0.00062 0.00082 13.3 0.000 0.000 0.000 +2451371.5 -0.24933 3.23271 -31484234.2 0.00067 0.00077 10.5 0.000 0.000 0.000 +2451372.5 -0.24581 3.24514 -31484500.8 0.00087 0.00137 10.4 0.000 0.000 0.000 +2451373.5 -0.24449 3.25748 -31484788.6 0.00085 0.00146 7.5 0.000 0.000 0.000 +2451374.5 -0.24658 3.26805 -31485149.8 0.00084 0.00143 11.6 0.000 0.000 0.000 +2451375.5 -0.25152 3.27509 -31485590.2 0.00077 0.00132 11.4 0.000 0.000 0.000 +2451376.5 -0.25622 3.28025 -31486103.7 0.00078 0.00133 12.0 0.000 0.000 0.000 +2451377.5 -0.25806 3.28571 -31486650.7 0.00083 0.00146 15.5 0.000 0.000 0.000 +2451378.5 -0.25684 3.29224 -31487178.3 0.00061 0.00067 18.9 0.000 0.000 0.000 +2451379.5 -0.25298 3.30007 -31487658.7 0.00061 0.00060 19.2 0.000 0.000 0.000 +2451380.5 -0.24717 3.30822 -31488074.1 0.00063 0.00064 13.1 0.000 0.000 0.000 +2451381.5 -0.24080 3.31559 -31488407.5 0.00066 0.00055 15.5 0.000 0.000 0.000 +2451382.5 -0.23527 3.32199 -31488639.9 0.00066 0.00048 17.7 0.000 0.000 0.000 +2451383.5 -0.23351 3.32724 -31488773.2 0.00062 0.00046 18.4 0.000 0.000 0.000 +2451384.5 -0.23605 3.33158 -31488820.5 0.00060 0.00049 17.9 0.000 0.000 0.000 +2451385.5 -0.23900 3.33587 -31488796.6 0.00068 0.00062 15.0 0.000 0.000 0.000 +2451386.5 -0.23941 3.34091 -31488755.3 0.00079 0.00073 13.3 0.000 0.000 0.000 +2451387.5 -0.23772 3.34763 -31488753.5 0.00080 0.00073 15.8 0.000 0.000 0.000 +2451388.5 -0.23425 3.35632 -31488835.9 0.00081 0.00078 19.5 0.000 0.000 0.000 +2451389.5 -0.22915 3.36597 -31489032.6 0.00083 0.00080 19.7 0.000 0.000 0.000 +2451390.5 -0.22277 3.37623 -31489398.1 0.00078 0.00067 14.0 0.000 0.000 0.000 +2451391.5 -0.21555 3.38687 -31489940.3 0.00062 0.00066 14.7 0.000 0.000 0.000 +2451392.5 -0.20774 3.39709 -31490616.5 0.00053 0.00045 15.1 0.000 0.000 0.000 +2451393.5 -0.19793 3.40667 -31491416.6 0.00055 0.00049 13.0 0.000 0.000 0.000 +2451394.5 -0.18498 3.41557 -31492275.2 0.00051 0.00050 7.9 0.000 0.000 0.000 +2451395.5 -0.17027 3.42436 -31493048.3 0.00050 0.00049 8.9 0.000 0.000 0.000 +2451396.5 -0.15672 3.43475 -31493663.7 0.00051 0.00056 7.4 0.000 0.000 0.000 +2451397.5 -0.14696 3.44658 -31494114.5 0.00051 0.00060 11.3 0.000 0.000 0.000 +2451398.5 -0.14084 3.45765 -31494427.4 0.00062 0.00064 15.1 0.000 0.000 0.000 +2451399.5 -0.13742 3.46609 -31494643.4 0.00059 0.00059 13.0 0.000 0.000 0.000 +2451400.5 -0.13485 3.47178 -31494844.6 0.00065 0.00059 13.8 0.000 0.000 0.000 +2451401.5 -0.13144 3.47583 -31495118.2 0.00067 0.00060 13.9 0.000 0.000 0.000 +2451402.5 -0.12658 3.47937 -31495505.7 0.00086 0.00061 13.4 0.000 0.000 0.000 +2451403.5 -0.12154 3.48311 -31495969.4 0.00092 0.00064 13.8 0.000 0.000 0.000 +2451404.5 -0.11750 3.48850 -31496524.5 0.00098 0.00078 12.3 0.000 0.000 0.000 +2451405.5 -0.11634 3.49692 -31497166.5 0.00090 0.00078 19.6 0.000 0.000 0.000 +2451406.5 -0.11505 3.50800 -31497849.4 0.00088 0.00073 19.3 0.000 0.000 0.000 +2451407.5 -0.10949 3.52053 -31498524.4 0.00089 0.00073 22.5 0.000 0.000 0.000 +2451408.5 -0.10234 3.53322 -31499133.5 0.00072 0.00075 26.4 0.000 0.000 0.000 +2451409.5 -0.09712 3.54528 -31499646.2 0.00066 0.00072 26.7 0.000 0.000 0.000 +2451410.5 -0.09212 3.55672 -31500050.3 0.00063 0.00073 27.9 0.000 0.000 0.000 +2451411.5 -0.08586 3.56847 -31500355.4 0.00065 0.00060 21.7 0.000 0.000 0.000 +2451412.5 -0.08163 3.58052 -31500624.3 0.00084 0.00068 24.1 0.000 0.000 0.000 +2451413.5 -0.08158 3.59165 -31500892.1 0.00087 0.00068 18.5 0.000 0.000 0.000 +2451414.5 -0.08398 3.60152 -31501187.2 0.00103 0.00065 15.1 0.000 0.000 0.000 +2451415.5 -0.08609 3.60992 -31501561.5 0.00105 0.00067 13.2 0.000 0.000 0.000 +2451416.5 -0.08513 3.61683 -31502111.5 0.00104 0.00062 15.5 0.000 0.000 0.000 +2451417.5 -0.08308 3.62284 -31502885.9 0.00100 0.00056 15.4 0.000 0.000 0.000 +2451418.5 -0.08097 3.62810 -31503863.3 0.00097 0.00055 15.2 0.000 0.000 0.000 +2451419.5 -0.07738 3.63267 -31504986.8 0.00074 0.00081 15.4 0.000 0.000 0.000 +2451420.5 -0.07204 3.63717 -31506205.0 0.00058 0.00088 13.0 0.000 0.000 0.000 +2451421.5 -0.06686 3.64189 -31507440.3 0.00061 0.00086 12.5 0.000 0.000 0.000 +2451422.5 -0.06403 3.64616 -31508603.0 0.00058 0.00089 5.9 0.000 0.000 0.000 +2451423.5 -0.06301 3.64947 -31509626.4 0.00060 0.00102 13.6 0.000 0.000 0.000 +2451424.5 -0.06135 3.65246 -31510504.1 0.00056 0.00095 14.5 0.000 0.000 0.000 +2451425.5 -0.05666 3.65580 -31511267.0 0.00045 0.00091 14.7 0.000 0.000 0.000 +2451426.5 -0.04795 3.66038 -31511958.4 0.00053 0.00083 16.0 0.000 0.000 0.000 +2451427.5 -0.03618 3.66597 -31512623.3 0.00047 0.00092 14.5 0.000 0.000 0.000 +2451428.5 -0.02379 3.67172 -31513298.2 0.00048 0.00095 14.9 0.000 0.000 0.000 +2451429.5 -0.01224 3.67789 -31514003.1 0.00049 0.00085 9.5 0.000 0.000 0.000 +2451430.5 -0.00326 3.68436 -31514740.6 0.00049 0.00086 10.1 0.000 0.000 0.000 +2451431.5 0.00146 3.69032 -31515510.8 0.00059 0.00087 9.6 0.000 0.000 0.000 +2451432.5 0.00468 3.69566 -31516295.8 0.00065 0.00095 10.1 0.000 0.000 0.000 +2451433.5 0.00948 3.70106 -31517045.3 0.00058 0.00070 10.5 0.000 0.000 0.000 +2451434.5 0.01685 3.70777 -31517727.6 0.00058 0.00102 9.8 0.000 0.000 0.000 +2451435.5 0.02499 3.71659 -31518324.3 0.00058 0.00109 10.8 0.000 0.000 0.000 +2451436.5 0.03125 3.72601 -31518819.6 0.00055 0.00110 10.0 0.000 0.000 0.000 +2451437.5 0.03588 3.73311 -31519198.8 0.00049 0.00117 10.3 0.000 0.000 0.000 +2451438.5 0.03974 3.73768 -31519492.7 0.00044 0.00101 9.9 0.000 0.000 0.000 +2451439.5 0.04269 3.74148 -31519760.0 0.00053 0.00097 9.4 0.000 0.000 0.000 +2451440.5 0.04430 3.74599 -31520062.6 0.00057 0.00069 8.6 0.000 0.000 0.000 +2451441.5 0.04598 3.75082 -31520444.9 0.00061 0.00065 6.6 0.000 0.000 0.000 +2451442.5 0.04972 3.75474 -31520963.4 0.00065 0.00061 5.9 0.000 0.000 0.000 +2451443.5 0.05429 3.75745 -31521665.9 0.00059 0.00057 6.8 0.000 0.000 0.000 +2451444.5 0.05543 3.75947 -31522552.7 0.00058 0.00063 7.6 0.000 0.000 0.000 +2451445.5 0.05295 3.75998 -31523596.0 0.00048 0.00070 7.3 0.000 0.000 0.000 +2451446.5 0.05068 3.75928 -31524731.6 0.00048 0.00060 8.1 0.000 0.000 0.000 +2451447.5 0.05103 3.75956 -31525898.4 0.00048 0.00092 13.4 0.000 0.000 0.000 +2451448.5 0.05347 3.76255 -31527061.5 0.00043 0.00100 15.3 0.000 0.000 0.000 +2451449.5 0.05649 3.76794 -31528148.0 0.00051 0.00102 14.7 0.000 0.000 0.000 +2451450.5 0.05911 3.77476 -31529107.8 0.00056 0.00101 14.7 0.000 0.000 0.000 +2451451.5 0.06184 3.78266 -31529961.1 0.00059 0.00099 15.4 0.000 0.000 0.000 +2451452.5 0.06451 3.79153 -31530706.6 0.00064 0.00099 15.2 0.000 0.000 0.000 +2451453.5 0.06701 3.80059 -31531354.8 0.00061 0.00105 12.1 0.000 0.000 0.000 +2451454.5 0.07176 3.80917 -31532011.3 0.00060 0.00084 9.9 0.000 0.000 0.000 +2451455.5 0.07845 3.81653 -31532799.2 0.00092 0.00097 11.5 0.000 0.000 0.000 +2451456.5 0.08526 3.82203 -31533750.9 0.00096 0.00096 11.0 0.000 0.000 0.000 +2451457.5 0.09241 3.82606 -31534861.5 0.00102 0.00104 9.9 0.000 0.000 0.000 +2451458.5 0.09877 3.82748 -31536103.1 0.00100 0.00105 10.6 0.000 0.000 0.000 +2451459.5 0.10538 3.82652 -31537419.4 0.00102 0.00108 10.9 0.000 0.000 0.000 +2451460.5 0.11387 3.82611 -31538768.3 0.00118 0.00095 13.1 0.000 0.000 0.000 +2451461.5 0.12412 3.82745 -31540102.2 0.00087 0.00077 10.6 0.000 0.000 0.000 +2451462.5 0.13376 3.82881 -31541364.5 0.00088 0.00077 9.4 0.000 0.000 0.000 +2451463.5 0.14018 3.82908 -31542504.8 0.00083 0.00053 11.2 0.000 0.000 0.000 +2451464.5 0.14245 3.82865 -31543525.4 0.00085 0.00052 9.4 0.000 0.000 0.000 +2451465.5 0.14096 3.82789 -31544470.8 0.00090 0.00050 9.2 0.000 0.000 0.000 +2451466.5 0.13849 3.82743 -31545327.4 0.00093 0.00049 9.1 0.000 0.000 0.000 +2451467.5 0.13808 3.82687 -31546092.6 0.00093 0.00048 8.6 0.000 0.000 0.000 +2451468.5 0.14083 3.82548 -31546817.6 0.00082 0.00048 8.9 0.000 0.000 0.000 +2451469.5 0.14566 3.82434 -31547570.2 0.00090 0.00051 7.4 0.000 0.000 0.000 +2451470.5 0.15151 3.82503 -31548408.2 0.00087 0.00050 7.7 0.000 0.000 0.000 +2451471.5 0.15789 3.82739 -31549400.2 0.00088 0.00052 7.3 0.000 0.000 0.000 +2451472.5 0.16420 3.82975 -31550630.9 0.00079 0.00059 7.4 0.000 0.000 0.000 +2451473.5 0.16844 3.83126 -31552120.6 0.00077 0.00053 6.6 0.000 0.000 0.000 +2451474.5 0.17235 3.83226 -31553834.6 0.00065 0.00064 7.6 0.000 0.000 0.000 +2451475.5 0.17787 3.83399 -31555702.2 0.00061 0.00064 9.2 0.000 0.000 0.000 +2451476.5 0.18376 3.83651 -31557619.7 0.00058 0.00062 8.6 0.000 0.000 0.000 +2451477.5 0.18948 3.83791 -31559478.5 0.00064 0.00064 8.9 0.000 0.000 0.000 +2451478.5 0.19537 3.83702 -31561194.3 0.00065 0.00057 8.9 0.000 0.000 0.000 +2451479.5 0.20063 3.83475 -31562699.3 0.00073 0.00058 9.2 0.000 0.000 0.000 +2451480.5 0.20412 3.83298 -31564032.0 0.00077 0.00059 9.5 0.000 0.000 0.000 +2451481.5 0.20587 3.83174 -31565278.0 0.00073 0.00063 10.2 0.000 0.000 0.000 +2451482.5 0.20850 3.82975 -31566517.8 0.00076 0.00106 10.5 0.000 0.000 0.000 +2451483.5 0.21356 3.82619 -31567805.5 0.00102 0.00116 10.2 0.000 0.000 0.000 +2451484.5 0.22003 3.82116 -31569159.6 0.00097 0.00117 10.0 0.000 0.000 0.000 +2451485.5 0.22694 3.81613 -31570593.3 0.00092 0.00121 9.7 0.000 0.000 0.000 +2451486.5 0.23304 3.81075 -31572097.8 0.00089 0.00120 9.8 0.000 0.000 0.000 +2451487.5 0.23842 3.80576 -31573613.6 0.00086 0.00121 9.1 0.000 0.000 0.000 +2451488.5 0.24236 3.80205 -31575106.2 0.00095 0.00121 10.2 0.000 0.000 0.000 +2451489.5 0.24443 3.79776 -31576550.7 0.00091 0.00080 9.2 0.000 0.000 0.000 +2451490.5 0.24586 3.79082 -31577918.1 0.00073 0.00122 9.4 0.000 0.000 0.000 +2451491.5 0.24977 3.78195 -31579224.0 0.00085 0.00132 11.9 0.000 0.000 0.000 +2451492.5 0.25742 3.77315 -31580482.8 0.00089 0.00141 10.7 0.000 0.000 0.000 +2451493.5 0.26826 3.76630 -31581675.5 0.00099 0.00151 11.3 0.000 0.000 0.000 +2451494.5 0.27849 3.76432 -31582803.0 0.00108 0.00156 10.3 0.000 0.000 0.000 +2451495.5 0.28559 3.76779 -31583914.2 0.00113 0.00153 12.0 0.000 0.000 0.000 +2451496.5 0.28894 3.77480 -31585085.8 0.00125 0.00129 11.4 0.000 0.000 0.000 +2451497.5 0.28846 3.78119 -31586343.9 0.00121 0.00113 10.4 0.000 0.000 0.000 +2451498.5 0.28797 3.78394 -31587684.5 0.00105 0.00111 10.0 0.000 0.000 0.000 +2451499.5 0.29314 3.78420 -31589136.3 0.00100 0.00100 9.2 0.000 0.000 0.000 +2451500.5 0.30396 3.78395 -31590751.4 0.00085 0.00091 9.3 0.000 0.000 0.000 +2451501.5 0.31684 3.78468 -31592488.6 0.00085 0.00081 6.9 0.000 0.000 0.000 +2451502.5 0.32716 3.78649 -31594294.6 0.00070 0.00070 6.8 0.000 0.000 0.000 +2451503.5 0.33216 3.78788 -31596118.5 0.00073 0.00055 11.6 0.000 0.000 0.000 +2451504.5 0.33238 3.78788 -31597862.6 0.00080 0.00052 9.2 0.000 0.000 0.000 +2451505.5 0.32965 3.78587 -31599437.0 0.00082 0.00055 9.6 0.000 0.000 0.000 +2451506.5 0.32602 3.78186 -31600800.6 0.00075 0.00054 9.5 0.000 0.000 0.000 +2451507.5 0.32244 3.77748 -31601970.5 0.00081 0.00064 10.2 0.000 0.000 0.000 +2451508.5 0.31926 3.77375 -31602999.8 0.00081 0.00066 10.3 0.000 0.000 0.000 +2451509.5 0.31817 3.77070 -31603972.7 0.00084 0.00065 8.9 0.000 0.000 0.000 +2451510.5 0.32099 3.76886 -31604979.5 0.00080 0.00076 11.2 0.000 0.000 0.000 +2451511.5 0.32710 3.76909 -31606093.3 0.00068 0.00074 10.5 0.000 0.000 0.000 +2451512.5 0.33391 3.77177 -31607349.9 0.00076 0.00074 10.7 0.000 0.000 0.000 +2451513.5 0.33952 3.77681 -31608717.0 0.00080 0.00070 10.1 0.000 0.000 0.000 +2451514.5 0.34329 3.78338 -31610098.3 0.00076 0.00064 12.6 0.000 0.000 0.000 +2451515.5 0.34568 3.78937 -31611430.0 0.00070 0.00060 13.2 0.000 0.000 0.000 +2451516.5 0.34798 3.79315 -31612681.3 0.00069 0.00084 10.1 0.000 0.000 0.000 +2451517.5 0.34892 3.79444 -31613838.3 0.00064 0.00088 13.3 0.000 0.000 0.000 +2451518.5 0.34722 3.79357 -31614892.2 0.00073 0.00085 10.8 0.000 0.000 0.000 +2451519.5 0.34595 3.79161 -31615848.6 0.00074 0.00086 10.9 0.000 0.000 0.000 +2451520.5 0.34925 3.79070 -31616713.1 0.00075 0.00087 9.6 0.000 0.000 0.000 +2451521.5 0.35791 3.79278 -31617513.1 0.00077 0.00089 10.5 0.000 0.000 0.000 +2451522.5 0.36712 3.79712 -31618307.6 0.00078 0.00089 10.9 0.000 0.000 0.000 +2451523.5 0.37243 3.80156 -31619141.7 0.00103 0.00071 11.3 0.000 0.000 0.000 +2451524.5 0.37399 3.80510 -31620038.8 0.00105 0.00073 10.5 0.000 0.000 0.000 +2451525.5 0.37474 3.80820 -31620998.6 0.00116 0.00091 8.6 0.000 0.000 0.000 +2451526.5 0.37795 3.81183 -31622071.3 0.00113 0.00090 7.5 0.000 0.000 0.000 +2451527.5 0.38319 3.81639 -31623281.0 0.00110 0.00086 6.4 0.000 0.000 0.000 +2451528.5 0.38497 3.82001 -31624609.0 0.00118 0.00085 7.3 0.000 0.000 0.000 +2451529.5 0.38393 3.82153 -31626051.0 0.00124 0.00091 6.3 0.000 0.000 0.000 +2451530.5 0.38237 3.82190 -31627572.0 0.00112 0.00084 4.5 0.000 0.000 0.000 +2451531.5 0.38052 3.82189 -31629108.6 0.00114 0.00076 6.8 0.000 0.000 0.000 +2451532.5 0.37699 3.82033 -31630581.7 0.00104 0.00104 8.3 0.000 0.000 0.000 +2451533.5 0.37162 3.81590 -31631921.9 0.00112 0.00101 8.2 0.000 0.000 0.000 +2451534.5 0.36694 3.80852 -31633101.4 0.00121 0.00118 7.4 0.000 0.000 0.000 +2451535.5 0.36656 3.79836 -31634165.6 0.00122 0.00122 7.4 0.000 0.000 0.000 +2451536.5 0.37198 3.78788 -31635186.6 0.00109 0.00115 7.4 0.000 0.000 0.000 +2451537.5 0.38090 3.78015 -31636232.4 0.00116 0.00126 13.9 0.000 0.000 0.000 +2451538.5 0.39086 3.77680 -31637358.4 0.00125 0.00119 10.3 0.000 0.000 0.000 +2451539.5 0.40135 3.77718 -31638582.4 0.00117 0.00129 7.5 0.000 0.000 0.000 +2451540.5 0.41223 3.77958 -31639880.1 0.00109 0.00125 9.0 0.000 0.000 0.000 +2451541.5 0.42138 3.78276 -31641185.0 0.00088 0.00111 9.9 0.000 0.000 0.000 +2451542.5 0.42633 3.78370 -31642418.0 0.00089 0.00110 10.0 0.000 0.000 0.000 +2451543.5 0.42976 3.78161 -31643532.0 0.00090 0.00108 9.3 0.000 0.000 0.000 +2451544.5 0.43301 3.77867 -31644522.1 0.00092 0.00099 9.9 0.000 0.000 0.000 +2451545.5 0.43541 3.77638 -31645398.7 0.00058 0.00073 11.9 0.000 0.000 0.000 +2451546.5 0.43598 3.77408 -31646148.9 0.00069 0.00077 10.9 0.000 0.000 0.000 +2451547.5 0.43449 3.77115 -31646759.3 0.00071 0.00089 11.5 0.000 0.000 0.000 +2451548.5 0.43220 3.76793 -31647241.6 0.00080 0.00088 18.4 0.000 0.000 0.000 +2451549.5 0.43235 3.76467 -31647652.2 0.00087 0.00093 17.7 0.000 0.000 0.000 +2451550.5 0.43508 3.76274 -31648046.9 0.00076 0.00091 17.6 0.000 0.000 0.000 +2451551.5 0.43745 3.76139 -31648454.9 0.00106 0.00093 16.4 0.000 0.000 0.000 +2451552.5 0.43761 3.75856 -31648898.7 0.00124 0.00099 17.7 0.000 0.000 0.000 +2451553.5 0.43690 3.75424 -31649441.9 0.00128 0.00094 12.5 0.000 0.000 0.000 +2451554.5 0.43831 3.75051 -31650116.3 0.00128 0.00096 8.2 0.000 0.000 0.000 +2451555.5 0.44337 3.74901 -31650942.1 0.00132 0.00092 7.4 0.000 0.000 0.000 +2451556.5 0.45264 3.74896 -31651921.1 0.00133 0.00097 7.8 0.000 0.000 0.000 +2451557.5 0.46464 3.74927 -31653047.0 0.00128 0.00097 7.3 0.000 0.000 0.000 +2451558.5 0.47604 3.74953 -31654247.3 0.00120 0.00091 11.3 0.000 0.000 0.000 +2451559.5 0.48573 3.74959 -31655429.1 0.00104 0.00081 13.6 0.000 0.000 0.000 +2451560.5 0.49570 3.75018 -31656521.4 0.00107 0.00094 14.3 0.000 0.000 0.000 +2451561.5 0.50757 3.75269 -31657505.8 0.00095 0.00098 15.2 0.000 0.000 0.000 +2451562.5 0.52030 3.75638 -31658398.6 0.00097 0.00094 16.9 0.000 0.000 0.000 +2451563.5 0.53201 3.75852 -31659231.9 0.00095 0.00096 15.7 0.000 0.000 0.000 +2451564.5 0.54276 3.76039 -31660076.1 0.00089 0.00089 11.8 0.000 0.000 0.000 +2451565.5 0.55180 3.76399 -31660991.3 0.00090 0.00090 14.3 0.000 0.000 0.000 +2451566.5 0.55866 3.76865 -31662021.2 0.00082 0.00064 15.5 0.000 0.000 0.000 +2451567.5 0.56314 3.77270 -31663177.0 0.00090 0.00063 14.1 0.000 0.000 0.000 +2451568.5 0.56526 3.77491 -31664435.0 0.00089 0.00064 14.5 0.000 0.000 0.000 +2451569.5 0.56655 3.77472 -31665737.0 0.00089 0.00061 15.5 0.000 0.000 0.000 +2451570.5 0.57016 3.77194 -31667029.5 0.00091 0.00065 16.6 0.000 0.000 0.000 +2451571.5 0.57365 3.76861 -31668240.5 0.00089 0.00067 15.3 0.000 0.000 0.000 +2451572.5 0.57346 3.76576 -31669305.7 0.00083 0.00067 15.5 0.000 0.000 0.000 +2451573.5 0.57139 3.76329 -31670219.0 0.00088 0.00060 19.3 0.000 0.000 0.000 +2451574.5 0.57006 3.76069 -31671002.6 0.00110 0.00086 11.7 0.000 0.000 0.000 +2451575.5 0.57041 3.75685 -31671687.1 0.00111 0.00086 10.5 0.000 0.000 0.000 +2451576.5 0.57300 3.75155 -31672297.1 0.00109 0.00084 8.6 0.000 0.000 0.000 +2451577.5 0.57706 3.74511 -31672834.9 0.00109 0.00083 9.1 0.000 0.000 0.000 +2451578.5 0.58308 3.73884 -31673331.3 0.00106 0.00086 8.8 0.000 0.000 0.000 +2451579.5 0.59079 3.73305 -31673864.2 0.00109 0.00091 9.5 0.000 0.000 0.000 +2451580.5 0.60024 3.72794 -31674512.5 0.00098 0.00092 12.3 0.000 0.000 0.000 +2451581.5 0.61103 3.72405 -31675309.5 0.00103 0.00095 10.4 0.000 0.000 0.000 +2451582.5 0.62281 3.72141 -31676277.3 0.00108 0.00091 10.1 0.000 0.000 0.000 +2451583.5 0.63588 3.71993 -31677405.2 0.00107 0.00091 12.8 0.000 0.000 0.000 +2451584.5 0.64857 3.71750 -31678629.7 0.00109 0.00086 13.6 0.000 0.000 0.000 +2451585.5 0.65847 3.71323 -31679847.7 0.00109 0.00089 13.2 0.000 0.000 0.000 +2451586.5 0.66288 3.70819 -31680950.5 0.00092 0.00093 10.8 0.000 0.000 0.000 +2451587.5 0.66243 3.70341 -31681883.6 0.00113 0.00074 13.3 0.000 0.000 0.000 +2451588.5 0.66086 3.69892 -31682677.5 0.00151 0.00093 10.9 0.000 0.000 0.000 +2451589.5 0.66222 3.69424 -31683365.5 0.00148 0.00097 9.0 0.000 0.000 0.000 +2451590.5 0.66785 3.68992 -31684006.7 0.00155 0.00099 6.9 0.000 0.000 0.000 +2451591.5 0.67415 3.68679 -31684657.5 0.00159 0.00103 9.7 0.000 0.000 0.000 +2451592.5 0.68025 3.68539 -31685367.7 0.00142 0.00104 9.6 0.000 0.000 0.000 +2451593.5 0.68602 3.68461 -31686200.1 0.00127 0.00092 10.7 0.000 0.000 0.000 +2451594.5 0.69113 3.68316 -31687211.7 0.00069 0.00076 17.9 0.000 0.000 0.000 +2451595.5 0.69299 3.68014 -31688390.7 0.00071 0.00076 17.2 0.000 0.000 0.000 +2451596.5 0.69120 3.67526 -31689646.6 0.00071 0.00078 17.3 0.000 0.000 0.000 +2451597.5 0.68815 3.66916 -31690880.3 0.00069 0.00074 16.9 0.000 0.000 0.000 +2451598.5 0.68446 3.66194 -31692023.8 0.00058 0.00067 16.4 0.000 0.000 0.000 +2451599.5 0.67975 3.65367 -31693038.9 0.00060 0.00066 16.3 0.000 0.000 0.000 +2451600.5 0.67475 3.64458 -31693908.8 0.00070 0.00067 18.8 0.000 0.000 0.000 +2451601.5 0.67036 3.63552 -31694648.6 0.00060 0.00069 19.0 0.000 0.000 0.000 +2451602.5 0.66702 3.62736 -31695288.8 0.00067 0.00102 14.7 0.000 0.000 0.000 +2451603.5 0.66507 3.62075 -31695852.5 0.00081 0.00110 12.4 0.000 0.000 0.000 +2451604.5 0.66486 3.61558 -31696385.4 0.00092 0.00115 12.3 0.000 0.000 0.000 +2451605.5 0.66733 3.61060 -31696951.6 0.00097 0.00117 18.4 0.000 0.000 0.000 +2451606.5 0.67215 3.60647 -31697587.3 0.00097 0.00115 15.6 0.000 0.000 0.000 +2451607.5 0.67705 3.60406 -31698330.6 0.00095 0.00123 14.9 0.000 0.000 0.000 +2451608.5 0.68033 3.60269 -31699226.1 0.00130 0.00108 18.7 0.000 0.000 0.000 +2451609.5 0.68301 3.60131 -31700301.2 0.00141 0.00113 14.8 0.000 0.000 0.000 +2451610.5 0.68610 3.59971 -31701543.4 0.00136 0.00111 14.9 0.000 0.000 0.000 +2451611.5 0.68913 3.59756 -31702903.4 0.00132 0.00115 6.1 0.000 0.000 0.000 +2451612.5 0.69472 3.59387 -31704303.3 0.00128 0.00117 9.5 0.000 0.000 0.000 +2451613.5 0.70487 3.59036 -31705668.9 0.00135 0.00109 10.7 0.000 0.000 0.000 +2451614.5 0.71858 3.58856 -31706940.8 0.00106 0.00135 6.1 0.000 0.000 0.000 +2451615.5 0.73168 3.58769 -31708082.4 0.00099 0.00130 7.0 0.000 0.000 0.000 +2451616.5 0.74075 3.58534 -31709077.8 0.00101 0.00130 7.6 0.000 0.000 0.000 +2451617.5 0.74565 3.58024 -31709941.0 0.00102 0.00132 7.7 0.000 0.000 0.000 +2451618.5 0.74756 3.57281 -31710719.1 0.00109 0.00133 6.7 0.000 0.000 0.000 +2451619.5 0.74843 3.56411 -31711510.4 0.00099 0.00136 7.1 0.000 0.000 0.000 +2451620.5 0.74681 3.55571 -31712367.1 0.00088 0.00127 6.8 0.000 0.000 0.000 +2451621.5 0.74330 3.54786 -31713290.9 0.00098 0.00106 13.0 0.000 0.000 0.000 +2451622.5 0.73998 3.54029 -31714265.2 0.00081 0.00087 12.6 0.000 0.000 0.000 +2451623.5 0.73832 3.53342 -31715269.8 0.00083 0.00077 11.7 0.000 0.000 0.000 +2451624.5 0.73911 3.52776 -31716307.7 0.00089 0.00074 12.0 0.000 0.000 0.000 +2451625.5 0.74071 3.52271 -31717365.0 0.00082 0.00070 12.1 0.000 0.000 0.000 +2451626.5 0.74075 3.51746 -31718380.6 0.00085 0.00076 15.8 0.000 0.000 0.000 +2451627.5 0.74034 3.51199 -31719280.7 0.00092 0.00071 15.4 0.000 0.000 0.000 +2451628.5 0.73847 3.50565 -31720037.3 0.00089 0.00081 16.9 0.000 0.000 0.000 +2451629.5 0.73505 3.49767 -31720646.5 0.00085 0.00075 23.4 0.000 0.000 0.000 +2451630.5 0.73165 3.48911 -31721110.1 0.00079 0.00068 20.1 0.000 0.000 0.000 +2451631.5 0.72857 3.48106 -31721507.5 0.00078 0.00072 20.4 0.000 0.000 0.000 +2451632.5 0.72842 3.47306 -31721906.3 0.00081 0.00068 14.9 0.000 0.000 0.000 +2451633.5 0.73465 3.46586 -31722327.5 0.00091 0.00064 14.5 0.000 0.000 0.000 +2451634.5 0.74459 3.46148 -31722833.6 0.00102 0.00056 8.6 0.000 0.000 0.000 +2451635.5 0.75283 3.46075 -31723502.5 0.00105 0.00046 9.6 0.000 0.000 0.000 +2451636.5 0.75893 3.46302 -31724381.9 0.00117 0.00055 13.0 0.000 0.000 0.000 +2451637.5 0.76566 3.46681 -31725467.6 0.00128 0.00060 11.3 0.000 0.000 0.000 +2451638.5 0.77071 3.46999 -31726717.9 0.00129 0.00063 11.9 0.000 0.000 0.000 +2451639.5 0.77145 3.47085 -31728055.3 0.00113 0.00075 11.2 0.000 0.000 0.000 +2451640.5 0.77179 3.46878 -31729370.2 0.00094 0.00077 11.3 0.000 0.000 0.000 +2451641.5 0.77382 3.46433 -31730580.6 0.00096 0.00083 10.5 0.000 0.000 0.000 +2451642.5 0.77659 3.45856 -31731653.7 0.00097 0.00098 10.4 0.000 0.000 0.000 +2451643.5 0.77892 3.45186 -31732588.5 0.00093 0.00092 11.3 0.000 0.000 0.000 +2451644.5 0.78324 3.44433 -31733419.3 0.00094 0.00097 7.8 0.000 0.000 0.000 +2451645.5 0.79228 3.43809 -31734211.9 0.00110 0.00098 7.8 0.000 0.000 0.000 +2451646.5 0.80416 3.43536 -31735041.1 0.00125 0.00091 8.0 0.000 0.000 0.000 +2451647.5 0.81419 3.43551 -31735970.1 0.00126 0.00089 9.3 0.000 0.000 0.000 +2451648.5 0.81992 3.43747 -31737044.0 0.00121 0.00084 9.1 0.000 0.000 0.000 +2451649.5 0.82172 3.44020 -31738280.8 0.00111 0.00077 9.2 0.000 0.000 0.000 +2451650.5 0.82222 3.44239 -31739656.9 0.00096 0.00100 11.7 0.000 0.000 0.000 +2451651.5 0.82312 3.44320 -31741115.8 0.00127 0.00109 10.9 0.000 0.000 0.000 +2451652.5 0.82362 3.44214 -31742575.5 0.00131 0.00108 12.2 0.000 0.000 0.000 +2451653.5 0.82305 3.43885 -31743964.4 0.00131 0.00108 12.4 0.000 0.000 0.000 +2451654.5 0.82380 3.43331 -31745236.1 0.00139 0.00107 12.4 0.000 0.000 0.000 +2451655.5 0.82510 3.42631 -31746390.6 0.00141 0.00101 12.3 0.000 0.000 0.000 +2451656.5 0.82627 3.41866 -31747425.2 0.00134 0.00093 11.8 0.000 0.000 0.000 +2451657.5 0.82924 3.41093 -31748323.9 0.00127 0.00060 14.9 0.000 0.000 0.000 +2451658.5 0.83482 3.40399 -31749093.2 0.00099 0.00058 8.3 0.000 0.000 0.000 +2451659.5 0.84215 3.39864 -31749764.1 0.00080 0.00057 11.1 0.000 0.000 0.000 +2451660.5 0.85028 3.39475 -31750387.3 0.00061 0.00058 11.9 0.000 0.000 0.000 +2451661.5 0.85862 3.39149 -31751040.5 0.00055 0.00069 14.2 0.000 0.000 0.000 +2451662.5 0.86682 3.38847 -31751818.5 0.00053 0.00074 14.4 0.000 0.000 0.000 +2451663.5 0.87524 3.38505 -31752784.9 0.00097 0.00089 14.2 0.000 0.000 0.000 +2451664.5 0.88396 3.38082 -31753948.4 0.00091 0.00088 20.2 0.000 0.000 0.000 +2451665.5 0.89160 3.37671 -31755278.7 0.00090 0.00097 14.8 0.000 0.000 0.000 +2451666.5 0.89732 3.37289 -31756740.2 0.00093 0.00103 17.2 0.000 0.000 0.000 +2451667.5 0.90029 3.36823 -31758254.8 0.00096 0.00107 14.9 0.000 0.000 0.000 +2451668.5 0.89962 3.36137 -31759745.4 0.00100 0.00104 14.3 0.000 0.000 0.000 +2451669.5 0.89598 3.35198 -31761115.5 0.00061 0.00093 13.7 0.000 0.000 0.000 +2451670.5 0.89126 3.34137 -31762300.2 0.00060 0.00084 13.1 0.000 0.000 0.000 +2451671.5 0.88582 3.33077 -31763311.1 0.00057 0.00085 15.9 0.000 0.000 0.000 +2451672.5 0.88012 3.32027 -31764204.2 0.00071 0.00107 11.5 0.000 0.000 0.000 +2451673.5 0.87555 3.31056 -31765057.0 0.00061 0.00093 11.3 0.000 0.000 0.000 +2451674.5 0.87307 3.30318 -31765950.9 0.00051 0.00083 11.8 0.000 0.000 0.000 +2451675.5 0.87474 3.29847 -31766963.0 0.00050 0.00082 14.3 0.000 0.000 0.000 +2451676.5 0.88111 3.29745 -31768084.4 0.00069 0.00088 14.4 0.000 0.000 0.000 +2451677.5 0.88898 3.29787 -31769294.0 0.00067 0.00091 19.6 0.000 0.000 0.000 +2451678.5 0.89561 3.29838 -31770559.1 0.00070 0.00078 27.8 0.000 0.000 0.000 +2451679.5 0.90114 3.29758 -31771826.5 0.00086 0.00044 27.8 0.000 0.000 0.000 +2451680.5 0.90574 3.29357 -31773025.4 0.00085 0.00044 28.8 0.000 0.000 0.000 +2451681.5 0.90932 3.28647 -31774112.6 0.00086 0.00042 27.2 0.000 0.000 0.000 +2451682.5 0.91479 3.27925 -31775102.4 0.00068 0.00039 26.2 0.000 0.000 0.000 +2451683.5 0.92303 3.27324 -31775975.8 0.00068 0.00038 16.3 0.000 0.000 0.000 +2451684.5 0.93273 3.26806 -31776715.4 0.00087 0.00045 7.4 0.000 0.000 0.000 +2451685.5 0.94080 3.26357 -31777332.1 0.00065 0.00045 5.6 0.000 0.000 0.000 +2451686.5 0.94543 3.25845 -31777863.8 0.00067 0.00053 5.6 0.000 0.000 0.000 +2451687.5 0.94627 3.24975 -31778365.1 0.00067 0.00055 6.9 0.000 0.000 0.000 +2451688.5 0.94851 3.23677 -31778882.7 0.00064 0.00053 7.4 0.000 0.000 0.000 +2451689.5 0.95390 3.22561 -31779430.4 0.00062 0.00053 7.7 0.000 0.000 0.000 +2451690.5 0.96198 3.21741 -31780028.4 0.00055 0.00055 7.6 0.000 0.000 0.000 +2451691.5 0.97398 3.21005 -31780701.2 0.00036 0.00054 12.7 0.000 0.000 0.000 +2451692.5 0.99004 3.20263 -31781472.1 0.00035 0.00035 20.5 0.000 0.000 0.000 +2451693.5 1.00764 3.19529 -31782340.1 0.00044 0.00037 17.4 0.000 0.000 0.000 +2451694.5 1.02417 3.18861 -31783270.8 0.00055 0.00051 17.5 0.000 0.000 0.000 +2451695.5 1.03886 3.18225 -31784206.5 0.00060 0.00053 18.5 0.000 0.000 0.000 +2451696.5 1.05173 3.17511 -31785074.4 0.00063 0.00055 18.0 0.000 0.000 0.000 +2451697.5 1.06486 3.16662 -31785819.2 0.00062 0.00053 19.3 0.000 0.000 0.000 +2451698.5 1.07770 3.15677 -31786423.7 0.00054 0.00055 14.2 0.000 0.000 0.000 +2451699.5 1.08856 3.14656 -31786910.7 0.00048 0.00074 13.9 0.000 0.000 0.000 +2451700.5 1.09831 3.13695 -31787342.5 0.00055 0.00073 10.1 0.000 0.000 0.000 +2451701.5 1.10941 3.12824 -31787820.7 0.00054 0.00077 9.2 0.000 0.000 0.000 +2451702.5 1.11950 3.12045 -31788414.6 0.00063 0.00087 12.3 0.000 0.000 0.000 +2451703.5 1.12474 3.11255 -31789163.6 0.00059 0.00088 13.1 0.000 0.000 0.000 +2451704.5 1.12548 3.10328 -31790037.6 0.00063 0.00085 13.4 0.000 0.000 0.000 +2451705.5 1.12503 3.09099 -31790959.9 0.00070 0.00079 12.8 0.000 0.000 0.000 +2451706.5 1.12742 3.07660 -31791847.6 0.00070 0.00066 20.2 0.000 0.000 0.000 +2451707.5 1.13207 3.06284 -31792639.2 0.00112 0.00065 21.4 0.000 0.000 0.000 +2451708.5 1.13513 3.05049 -31793285.0 0.00106 0.00059 22.5 0.000 0.000 0.000 +2451709.5 1.13590 3.03824 -31793742.3 0.00106 0.00060 32.0 0.000 0.000 0.000 +2451710.5 1.13658 3.02657 -31793988.9 0.00101 0.00061 33.9 0.000 0.000 0.000 +2451711.5 1.13174 3.01517 -31794037.8 0.00093 0.00067 36.7 0.000 0.000 0.000 +2451712.5 1.12202 3.00452 -31793944.9 0.00089 0.00086 31.9 0.000 0.000 0.000 +2451713.5 1.11012 2.99320 -31793778.3 0.00056 0.00090 27.4 0.000 0.000 0.000 +2451714.5 1.09844 2.97829 -31793583.6 0.00049 0.00093 22.7 0.000 0.000 0.000 +2451715.5 1.08893 2.96157 -31793403.9 0.00040 0.00092 22.1 0.000 0.000 0.000 +2451716.5 1.08137 2.94502 -31793291.4 0.00037 0.00092 18.2 0.000 0.000 0.000 +2451717.5 1.07754 2.92742 -31793289.6 0.00036 0.00087 17.6 0.000 0.000 0.000 +2451718.5 1.07648 2.90957 -31793394.9 0.00032 0.00074 14.2 0.000 0.000 0.000 +2451719.5 1.07835 2.89344 -31793594.8 0.00023 0.00053 15.3 0.000 0.000 0.000 +2451720.5 1.08198 2.88070 -31793889.7 0.00024 0.00045 22.0 0.000 0.000 0.000 +2451721.5 1.08567 2.86850 -31794275.9 0.00038 0.00076 13.5 0.000 0.000 0.000 +2451722.5 1.09008 2.85510 -31794711.4 0.00037 0.00078 13.7 0.000 0.000 0.000 +2451723.5 1.09544 2.84175 -31795148.2 0.00041 0.00077 15.6 0.000 0.000 0.000 +2451724.5 1.10057 2.83007 -31795518.1 0.00040 0.00076 15.5 0.000 0.000 0.000 +2451725.5 1.10234 2.81721 -31795759.3 0.00041 0.00076 15.7 0.000 0.000 0.000 +2451726.5 1.10182 2.80225 -31795860.4 0.00046 0.00081 13.3 0.000 0.000 0.000 +2451727.5 1.09980 2.78803 -31795873.1 0.00048 0.00054 23.6 0.000 0.000 0.000 +2451728.5 1.09559 2.77573 -31795898.0 0.00047 0.00044 24.4 0.000 0.000 0.000 +2451729.5 1.08976 2.76508 -31796032.9 0.00068 0.00064 15.7 0.000 0.000 0.000 +2451730.5 1.08208 2.75634 -31796336.4 0.00068 0.00064 15.1 0.000 0.000 0.000 +2451731.5 1.07399 2.74868 -31796814.2 0.00068 0.00062 15.7 0.000 0.000 0.000 +2451732.5 1.07025 2.74096 -31797427.8 0.00068 0.00062 15.7 0.000 0.000 0.000 +2451733.5 1.06843 2.73421 -31798093.3 0.00058 0.00070 15.6 0.000 0.000 0.000 +2451734.5 1.06358 2.72862 -31798732.3 0.00056 0.00075 10.5 0.000 0.000 0.000 +2451735.5 1.05485 2.72267 -31799293.2 0.00041 0.00062 8.8 0.000 0.000 0.000 +2451736.5 1.04484 2.71552 -31799745.2 0.00049 0.00070 8.7 0.000 0.000 0.000 +2451737.5 1.03671 2.70569 -31800084.6 0.00051 0.00072 10.3 0.000 0.000 0.000 +2451738.5 1.02894 2.69393 -31800294.4 0.00054 0.00075 10.6 0.000 0.000 0.000 +2451739.5 1.02140 2.68264 -31800385.9 0.00065 0.00082 10.8 0.000 0.000 0.000 +2451740.5 1.01226 2.67158 -31800360.0 0.00073 0.00078 12.3 0.000 0.000 0.000 +2451741.5 1.00176 2.66029 -31800229.5 0.00071 0.00081 13.3 0.000 0.000 0.000 +2451742.5 0.99248 2.65023 -31800045.9 0.00060 0.00089 12.6 0.000 0.000 0.000 +2451743.5 0.98298 2.64134 -31799851.4 0.00059 0.00091 11.4 0.000 0.000 0.000 +2451744.5 0.97174 2.63133 -31799676.8 0.00061 0.00094 9.6 0.000 0.000 0.000 +2451745.5 0.96032 2.61820 -31799548.3 0.00039 0.00077 9.1 0.000 0.000 0.000 +2451746.5 0.94831 2.60443 -31799468.4 0.00032 0.00076 9.1 0.000 0.000 0.000 +2451747.5 0.93452 2.59260 -31799434.1 0.00036 0.00087 11.6 0.000 0.000 0.000 +2451748.5 0.92125 2.58203 -31799459.9 0.00070 0.00080 15.7 0.000 0.000 0.000 +2451749.5 0.91262 2.57161 -31799537.5 0.00083 0.00078 10.5 0.000 0.000 0.000 +2451750.5 0.90787 2.56326 -31799632.9 0.00082 0.00077 12.4 0.000 0.000 0.000 +2451751.5 0.90480 2.55733 -31799709.5 0.00078 0.00079 12.4 0.000 0.000 0.000 +2451752.5 0.90304 2.55235 -31799723.7 0.00079 0.00082 12.3 0.000 0.000 0.000 +2451753.5 0.89890 2.54702 -31799650.5 0.00082 0.00073 9.6 0.000 0.000 0.000 +2451754.5 0.89130 2.54093 -31799503.0 0.00059 0.00077 8.0 0.000 0.000 0.000 +2451755.5 0.88366 2.53350 -31799341.4 0.00032 0.00072 11.9 0.000 0.000 0.000 +2451756.5 0.87637 2.52555 -31799252.9 0.00072 0.00069 10.0 0.000 0.000 0.000 +2451757.5 0.86935 2.51878 -31799307.7 0.00075 0.00063 9.1 0.000 0.000 0.000 +2451758.5 0.86429 2.51313 -31799526.7 0.00080 0.00061 9.3 0.000 0.000 0.000 +2451759.5 0.85892 2.50861 -31799875.6 0.00081 0.00062 9.5 0.000 0.000 0.000 +2451760.5 0.85290 2.50414 -31800281.5 0.00084 0.00029 10.7 0.000 0.000 0.000 +2451761.5 0.84596 2.49841 -31800670.4 0.00083 0.00030 10.3 0.000 0.000 0.000 +2451762.5 0.83922 2.49228 -31800978.7 0.00039 0.00030 11.6 0.000 0.000 0.000 +2451763.5 0.83221 2.48711 -31801162.0 0.00040 0.00053 9.4 0.000 0.000 0.000 +2451764.5 0.82318 2.48301 -31801200.6 0.00039 0.00054 8.9 0.000 0.000 0.000 +2451765.5 0.81280 2.47959 -31801102.2 0.00037 0.00056 8.6 0.000 0.000 0.000 +2451766.5 0.79989 2.47673 -31800911.4 0.00035 0.00060 8.6 0.000 0.000 0.000 +2451767.5 0.78359 2.47275 -31800671.1 0.00038 0.00058 8.1 0.000 0.000 0.000 +2451768.5 0.76620 2.46584 -31800421.4 0.00037 0.00061 7.2 0.000 0.000 0.000 +2451769.5 0.75063 2.45824 -31800203.2 0.00033 0.00053 12.2 0.000 0.000 0.000 +2451770.5 0.73698 2.45226 -31800053.9 0.00070 0.00049 13.0 0.000 0.000 0.000 +2451771.5 0.72663 2.44721 -31800008.4 0.00075 0.00046 14.5 0.000 0.000 0.000 +2451772.5 0.71952 2.44377 -31800097.3 0.00079 0.00043 12.4 0.000 0.000 0.000 +2451773.5 0.71328 2.44293 -31800353.8 0.00076 0.00044 12.3 0.000 0.000 0.000 +2451774.5 0.70387 2.44331 -31800775.9 0.00074 0.00044 13.1 0.000 0.000 0.000 +2451775.5 0.69097 2.44325 -31801329.8 0.00076 0.00033 14.4 0.000 0.000 0.000 +2451776.5 0.67543 2.44193 -31801971.7 0.00032 0.00031 7.7 0.000 0.000 0.000 +2451777.5 0.65857 2.44000 -31802652.1 0.00033 0.00036 7.1 0.000 0.000 0.000 +2451778.5 0.63923 2.43806 -31803321.0 0.00033 0.00044 10.8 0.000 0.000 0.000 +2451779.5 0.62089 2.43537 -31803936.7 0.00034 0.00045 10.9 0.000 0.000 0.000 +2451780.5 0.60609 2.43215 -31804480.1 0.00037 0.00053 10.8 0.000 0.000 0.000 +2451781.5 0.59131 2.42958 -31804925.9 0.00031 0.00052 10.2 0.000 0.000 0.000 +2451782.5 0.57466 2.42889 -31805321.7 0.00040 0.00055 13.3 0.000 0.000 0.000 +2451783.5 0.55597 2.42825 -31805758.5 0.00041 0.00057 18.7 0.000 0.000 0.000 +2451784.5 0.53775 2.42648 -31806311.2 0.00061 0.00045 10.1 0.000 0.000 0.000 +2451785.5 0.52255 2.42355 -31807025.2 0.00063 0.00040 11.1 0.000 0.000 0.000 +2451786.5 0.51104 2.42016 -31807892.8 0.00062 0.00034 11.3 0.000 0.000 0.000 +2451787.5 0.50039 2.41876 -31808846.7 0.00063 0.00036 11.0 0.000 0.000 0.000 +2451788.5 0.49017 2.41974 -31809801.1 0.00063 0.00036 11.1 0.000 0.000 0.000 +2451789.5 0.47881 2.42065 -31810674.4 0.00064 0.00038 10.4 0.000 0.000 0.000 +2451790.5 0.46640 2.42082 -31811408.1 0.00053 0.00040 15.0 0.000 0.000 0.000 +2451791.5 0.45176 2.42153 -31811972.7 0.00067 0.00053 8.6 0.000 0.000 0.000 +2451792.5 0.43407 2.42228 -31812365.1 0.00068 0.00052 11.6 0.000 0.000 0.000 +2451793.5 0.41266 2.42231 -31812597.2 0.00070 0.00048 10.8 0.000 0.000 0.000 +2451794.5 0.39000 2.42061 -31812690.2 0.00070 0.00050 11.1 0.000 0.000 0.000 +2451795.5 0.36659 2.41706 -31812677.7 0.00072 0.00057 11.0 0.000 0.000 0.000 +2451796.5 0.34241 2.41232 -31812613.9 0.00066 0.00056 12.6 0.000 0.000 0.000 +2451797.5 0.31876 2.40677 -31812573.4 0.00042 0.00049 15.3 0.000 0.000 0.000 +2451798.5 0.29813 2.40229 -31812598.7 0.00047 0.00056 9.2 0.000 0.000 0.000 +2451799.5 0.27769 2.39898 -31812713.1 0.00046 0.00062 9.2 0.000 0.000 0.000 +2451800.5 0.25144 2.39740 -31812950.4 0.00066 0.00069 9.7 0.000 0.000 0.000 +2451801.5 0.22113 2.39800 -31813363.5 0.00068 0.00070 9.7 0.000 0.000 0.000 +2451802.5 0.19248 2.39889 -31813945.0 0.00065 0.00068 7.5 0.000 0.000 0.000 +2451803.5 0.16905 2.39955 -31814644.5 0.00062 0.00070 9.2 0.000 0.000 0.000 +2451804.5 0.15159 2.40113 -31815376.4 0.00050 0.00085 6.9 0.000 0.000 0.000 +2451805.5 0.13686 2.40577 -31816061.6 0.00055 0.00083 7.4 0.000 0.000 0.000 +2451806.5 0.12247 2.41364 -31816641.6 0.00046 0.00078 7.2 0.000 0.000 0.000 +2451807.5 0.10651 2.42294 -31817104.1 0.00049 0.00084 7.7 0.000 0.000 0.000 +2451808.5 0.08796 2.43182 -31817499.5 0.00049 0.00082 7.9 0.000 0.000 0.000 +2451809.5 0.06889 2.43676 -31817857.4 0.00049 0.00079 7.3 0.000 0.000 0.000 +2451810.5 0.05386 2.43708 -31818237.0 0.00058 0.00063 10.2 0.000 0.000 0.000 +2451811.5 0.04192 2.43593 -31818704.9 0.00061 0.00056 9.6 0.000 0.000 0.000 +2451812.5 0.02973 2.43566 -31819325.4 0.00071 0.00042 10.2 0.000 0.000 0.000 +2451813.5 0.01697 2.43709 -31820136.6 0.00068 0.00042 9.4 0.000 0.000 0.000 +2451814.5 0.00649 2.44095 -31821124.4 0.00065 0.00034 10.7 0.000 0.000 0.000 +2451815.5 -0.00606 2.44754 -31822233.8 0.00065 0.00036 10.2 0.000 0.000 0.000 +2451816.5 -0.02315 2.45649 -31823365.6 0.00067 0.00042 10.1 0.000 0.000 0.000 +2451817.5 -0.04212 2.46479 -31824422.9 0.00059 0.00072 12.6 0.000 0.000 0.000 +2451818.5 -0.05813 2.47136 -31825338.4 0.00065 0.00107 25.0 0.000 0.000 0.000 +2451819.5 -0.07305 2.47809 -31826067.8 0.00079 0.00126 12.6 0.000 0.000 0.000 +2451820.5 -0.09212 2.48485 -31826594.6 0.00082 0.00128 10.7 0.000 0.000 0.000 +2451821.5 -0.11131 2.49138 -31826939.6 0.00084 0.00125 11.2 0.000 0.000 0.000 +2451822.5 -0.13057 2.49626 -31827180.8 0.00084 0.00126 11.4 0.000 0.000 0.000 +2451823.5 -0.14653 2.50100 -31827408.2 0.00080 0.00114 11.1 0.000 0.000 0.000 +2451824.5 -0.16127 2.50479 -31827699.2 0.00064 0.00085 8.0 0.000 0.000 0.000 +2451825.5 -0.17624 2.50736 -31828114.1 0.00033 0.00036 29.1 0.000 0.000 0.000 +2451826.5 -0.19053 2.51180 -31828692.3 0.00053 0.00078 13.5 0.000 0.000 0.000 +2451827.5 -0.20482 2.52017 -31829455.5 0.00061 0.00106 10.4 0.000 0.000 0.000 +2451828.5 -0.21750 2.53250 -31830408.6 0.00063 0.00105 10.6 0.000 0.000 0.000 +2451829.5 -0.22943 2.54817 -31831527.4 0.00061 0.00103 11.4 0.000 0.000 0.000 +2451830.5 -0.24322 2.56562 -31832770.7 0.00062 0.00104 11.1 0.000 0.000 0.000 +2451831.5 -0.26187 2.58117 -31834083.5 0.00063 0.00105 9.7 0.000 0.000 0.000 +2451832.5 -0.28264 2.59385 -31835399.8 0.00043 0.00087 9.4 0.000 0.000 0.000 +2451833.5 -0.30352 2.60414 -31836654.0 0.00046 0.00042 9.0 0.000 0.000 0.000 +2451834.5 -0.32225 2.61256 -31837799.2 0.00041 0.00050 7.8 0.000 0.000 0.000 +2451835.5 -0.33994 2.62013 -31838825.7 0.00040 0.00051 8.5 0.000 0.000 0.000 +2451836.5 -0.35685 2.62798 -31839777.6 0.00040 0.00050 8.1 0.000 0.000 0.000 +2451837.5 -0.37428 2.63678 -31840698.1 0.00042 0.00056 6.7 0.000 0.000 0.000 +2451838.5 -0.39107 2.64603 -31841662.7 0.00047 0.00053 8.5 0.000 0.000 0.000 +2451839.5 -0.40582 2.65640 -31842751.1 0.00031 0.00052 5.4 0.000 0.000 0.000 +2451840.5 -0.41987 2.66977 -31844003.1 0.00037 0.00047 4.6 0.000 0.000 0.000 +2451841.5 -0.43313 2.68539 -31845415.8 0.00037 0.00047 3.4 0.000 0.000 0.000 +2451842.5 -0.44295 2.70125 -31846948.6 0.00038 0.00058 3.7 0.000 0.000 0.000 +2451843.5 -0.45547 2.71833 -31848531.3 0.00044 0.00058 3.5 0.000 0.000 0.000 +2451844.5 -0.46935 2.73594 -31850085.5 0.00037 0.00063 2.7 0.000 0.000 0.000 +2451845.5 -0.48300 2.75126 -31851542.1 0.00042 0.00068 6.0 0.000 0.000 0.000 +2451846.5 -0.49246 2.76629 -31852858.2 0.00049 0.00065 6.2 0.000 0.000 0.000 +2451847.5 -0.50017 2.78524 -31854024.8 0.00053 0.00063 7.9 0.000 0.000 0.000 +2451848.5 -0.51233 2.80722 -31855051.8 0.00056 0.00055 7.4 0.000 0.000 0.000 +2451849.5 -0.52353 2.82767 -31855962.1 0.00053 0.00069 7.0 0.000 0.000 0.000 +2451850.5 -0.53756 2.84466 -31856775.5 0.00049 0.00065 7.1 0.000 0.000 0.000 +2451851.5 -0.55156 2.86108 -31857579.4 0.00049 0.00067 7.1 0.000 0.000 0.000 +2451852.5 -0.56454 2.87793 -31858422.1 0.00041 0.00071 8.1 0.000 0.000 0.000 +2451853.5 -0.57689 2.89506 -31859321.0 0.00038 0.00071 5.9 0.000 0.000 0.000 +2451854.5 -0.59185 2.91423 -31860298.0 0.00032 0.00073 5.4 0.000 0.000 0.000 +2451855.5 -0.60723 2.93624 -31861369.3 0.00034 0.00055 7.2 0.000 0.000 0.000 +2451856.5 -0.62195 2.95893 -31862544.2 0.00032 0.00054 8.0 0.000 0.000 0.000 +2451857.5 -0.63692 2.97940 -31863820.6 0.00031 0.00052 7.2 0.000 0.000 0.000 +2451858.5 -0.65059 2.99591 -31865159.3 0.00045 0.00065 10.5 0.000 0.000 0.000 +2451859.5 -0.65960 3.00832 -31866488.5 0.00044 0.00081 17.6 0.000 0.000 0.000 +2451860.5 -0.66256 3.01987 -31867718.5 0.00059 0.00080 22.2 0.000 0.000 0.000 +2451861.5 -0.66481 3.03521 -31868771.2 0.00068 0.00075 12.2 0.000 0.000 0.000 +2451862.5 -0.67482 3.05403 -31869620.5 0.00071 0.00075 11.6 0.000 0.000 0.000 +2451863.5 -0.69096 3.07154 -31870312.0 0.00069 0.00073 11.9 0.000 0.000 0.000 +2451864.5 -0.71241 3.08612 -31870924.8 0.00069 0.00065 11.1 0.000 0.000 0.000 +2451865.5 -0.73143 3.10028 -31871532.7 0.00075 0.00046 7.1 0.000 0.000 0.000 +2451866.5 -0.74716 3.11673 -31872219.7 0.00064 0.00040 7.4 0.000 0.000 0.000 +2451867.5 -0.75642 3.13613 -31873045.0 0.00057 0.00046 12.6 0.000 0.000 0.000 +2451868.5 -0.75891 3.15820 -31874020.4 0.00065 0.00067 12.2 0.000 0.000 0.000 +2451869.5 -0.75821 3.18157 -31875119.0 0.00065 0.00067 12.0 0.000 0.000 0.000 +2451870.5 -0.75836 3.20382 -31876290.6 0.00066 0.00067 12.4 0.000 0.000 0.000 +2451871.5 -0.76115 3.22439 -31877473.9 0.00052 0.00070 12.7 0.000 0.000 0.000 +2451872.5 -0.76558 3.24319 -31878572.7 0.00052 0.00071 12.4 0.000 0.000 0.000 +2451873.5 -0.77079 3.26104 -31879526.3 0.00052 0.00070 12.9 0.000 0.000 0.000 +2451874.5 -0.77723 3.27937 -31880310.8 0.00046 0.00049 7.6 0.000 0.000 0.000 +2451875.5 -0.78453 3.29838 -31880941.8 0.00053 0.00070 6.1 0.000 0.000 0.000 +2451876.5 -0.79145 3.31695 -31881463.4 0.00052 0.00069 7.3 0.000 0.000 0.000 +2451877.5 -0.79376 3.33573 -31881948.9 0.00049 0.00065 7.6 0.000 0.000 0.000 +2451878.5 -0.79561 3.35383 -31882463.8 0.00049 0.00064 7.7 0.000 0.000 0.000 +2451879.5 -0.80066 3.37150 -31883042.9 0.00052 0.00063 7.1 0.000 0.000 0.000 +2451880.5 -0.80622 3.38913 -31883716.3 0.00053 0.00066 9.3 0.000 0.000 0.000 +2451881.5 -0.80863 3.40641 -31884523.4 0.00041 0.00038 17.0 0.000 0.000 0.000 +2451882.5 -0.80948 3.42322 -31885474.2 0.00066 0.00071 10.0 0.000 0.000 0.000 +2451883.5 -0.81266 3.43980 -31886560.4 0.00097 0.00082 10.3 0.000 0.000 0.000 +2451884.5 -0.81767 3.45623 -31887763.1 0.00099 0.00083 10.2 0.000 0.000 0.000 +2451885.5 -0.82310 3.47366 -31889057.6 0.00100 0.00086 10.5 0.000 0.000 0.000 +2451886.5 -0.82753 3.49261 -31890389.8 0.00097 0.00087 10.2 0.000 0.000 0.000 +2451887.5 -0.83338 3.51157 -31891676.1 0.00097 0.00089 10.2 0.000 0.000 0.000 +2451888.5 -0.83703 3.52800 -31892848.7 0.00094 0.00108 7.3 0.000 0.000 0.000 +2451889.5 -0.83818 3.54187 -31893859.8 0.00083 0.00106 4.9 0.000 0.000 0.000 +2451890.5 -0.83638 3.55538 -31894697.9 0.00088 0.00103 4.4 0.000 0.000 0.000 +2451891.5 -0.82738 3.57219 -31895403.8 0.00087 0.00098 5.6 0.000 0.000 0.000 +2451892.5 -0.81443 3.59254 -31896057.5 0.00086 0.00096 5.6 0.000 0.000 0.000 +2451893.5 -0.80176 3.61422 -31896748.2 0.00089 0.00096 5.5 0.000 0.000 0.000 +2451894.5 -0.79077 3.63649 -31897520.9 0.00083 0.00065 6.2 0.000 0.000 0.000 +2451895.5 -0.78129 3.65900 -31898379.2 0.00064 0.00067 7.4 0.000 0.000 0.000 +2451896.5 -0.77827 3.68020 -31899308.0 0.00071 0.00075 11.7 0.000 0.000 0.000 +2451897.5 -0.78172 3.69913 -31900265.8 0.00072 0.00074 10.7 0.000 0.000 0.000 +2451898.5 -0.78682 3.71804 -31901204.6 0.00069 0.00074 11.8 0.000 0.000 0.000 +2451899.5 -0.78645 3.74010 -31902070.3 0.00068 0.00074 11.8 0.000 0.000 0.000 +2451900.5 -0.78386 3.76499 -31902814.9 0.00073 0.00077 11.8 0.000 0.000 0.000 +2451901.5 -0.78004 3.79099 -31903430.4 0.00076 0.00064 12.8 0.000 0.000 0.000 +2451902.5 -0.77557 3.81712 -31903922.9 0.00053 0.00051 15.0 0.000 0.000 0.000 +2451903.5 -0.77041 3.84285 -31904303.8 0.00056 0.00057 17.6 0.000 0.000 0.000 +2451904.5 -0.76616 3.86726 -31904599.9 0.00087 0.00077 5.5 0.000 0.000 0.000 +2451905.5 -0.76302 3.88931 -31904849.2 0.00079 0.00073 6.0 0.000 0.000 0.000 +2451906.5 -0.76047 3.90898 -31905090.4 0.00079 0.00072 6.5 0.000 0.000 0.000 +2451907.5 -0.75329 3.92825 -31905364.1 0.00079 0.00074 6.3 0.000 0.000 0.000 +2451908.5 -0.74856 3.94723 -31905717.2 0.00076 0.00076 7.0 0.000 0.000 0.000 +2451909.5 -0.74221 3.96499 -31906188.0 0.00073 0.00078 6.9 0.000 0.000 0.000 +2451910.5 -0.73464 3.98188 -31906788.1 0.00040 0.00052 3.2 0.000 0.000 0.000 +2451911.5 -0.72604 3.99964 -31907508.6 0.00042 0.00057 2.9 0.000 0.000 0.000 +2451912.5 -0.71562 4.01884 -31908330.8 0.00046 0.00058 2.9 0.000 0.000 0.000 +2451913.5 -0.71031 4.03740 -31909225.0 0.00043 0.00055 3.3 0.000 0.000 0.000 +2451914.5 -0.70715 4.05357 -31910132.2 0.00043 0.00052 3.3 0.000 0.000 0.000 +2451915.5 -0.70363 4.06795 -31910980.8 0.00043 0.00044 6.4 0.000 0.000 0.000 +2451916.5 -0.70163 4.08143 -31911708.7 0.00047 0.00050 11.7 0.000 0.000 0.000 +2451917.5 -0.70190 4.09474 -31912290.0 0.00045 0.00070 8.4 0.000 0.000 0.000 +2451918.5 -0.70098 4.10844 -31912758.8 0.00056 0.00066 6.9 0.000 0.000 0.000 +2451919.5 -0.69855 4.12310 -31913178.6 0.00052 0.00066 7.5 0.000 0.000 0.000 +2451920.5 -0.69241 4.14102 -31913602.2 0.00052 0.00065 7.4 0.000 0.000 0.000 +2451921.5 -0.68479 4.16135 -31914108.2 0.00054 0.00067 6.1 0.000 0.000 0.000 +2451922.5 -0.67464 4.18224 -31914772.2 0.00048 0.00067 7.5 0.000 0.000 0.000 +2451923.5 -0.66427 4.20225 -31915603.1 0.00049 0.00049 10.1 0.000 0.000 0.000 +2451924.5 -0.65318 4.22026 -31916534.9 0.00036 0.00061 6.7 0.000 0.000 0.000 +2451925.5 -0.63984 4.23622 -31917480.0 0.00041 0.00081 7.2 0.000 0.000 0.000 +2451926.5 -0.62695 4.25118 -31918337.6 0.00040 0.00081 8.8 0.000 0.000 0.000 +2451927.5 -0.61456 4.26495 -31919020.5 0.00041 0.00081 8.5 0.000 0.000 0.000 +2451928.5 -0.60299 4.27937 -31919507.9 0.00045 0.00088 8.0 0.000 0.000 0.000 +2451929.5 -0.59217 4.29302 -31919821.3 0.00050 0.00088 7.8 0.000 0.000 0.000 +2451930.5 -0.58096 4.30369 -31919979.9 0.00049 0.00088 9.3 0.000 0.000 0.000 +2451931.5 -0.56790 4.31333 -31920019.4 0.00062 0.00063 9.0 0.000 0.000 0.000 +2451932.5 -0.55421 4.32589 -31919976.0 0.00062 0.00068 6.5 0.000 0.000 0.000 +2451933.5 -0.54093 4.34278 -31919892.6 0.00061 0.00066 6.4 0.000 0.000 0.000 +2451934.5 -0.52232 4.36097 -31919882.6 0.00061 0.00063 6.4 0.000 0.000 0.000 +2451935.5 -0.50468 4.37985 -31919999.5 0.00061 0.00065 6.2 0.000 0.000 0.000 +2451936.5 -0.49060 4.39843 -31920251.5 0.00061 0.00076 8.3 0.000 0.000 0.000 +2451937.5 -0.47505 4.41647 -31920640.3 0.00040 0.00081 7.0 0.000 0.000 0.000 +2451938.5 -0.45580 4.43392 -31921142.9 0.00037 0.00100 6.8 0.000 0.000 0.000 +2451939.5 -0.43682 4.44988 -31921713.9 0.00038 0.00100 6.7 0.000 0.000 0.000 +2451940.5 -0.42022 4.46396 -31922293.4 0.00035 0.00097 6.9 0.000 0.000 0.000 +2451941.5 -0.40625 4.47380 -31922807.7 0.00032 0.00096 6.9 0.000 0.000 0.000 +2451942.5 -0.39115 4.48121 -31923223.3 0.00029 0.00089 5.3 0.000 0.000 0.000 +2451943.5 -0.37692 4.48816 -31923509.5 0.00032 0.00084 5.1 0.000 0.000 0.000 +2451944.5 -0.36050 4.49558 -31923653.7 0.00043 0.00035 4.9 0.000 0.000 0.000 +2451945.5 -0.34009 4.50531 -31923693.0 0.00069 0.00038 5.5 0.000 0.000 0.000 +2451946.5 -0.32169 4.51779 -31923709.6 0.00068 0.00039 4.9 0.000 0.000 0.000 +2451947.5 -0.30354 4.53190 -31923821.4 0.00068 0.00040 5.3 0.000 0.000 0.000 +2451948.5 -0.28358 4.54713 -31924163.0 0.00069 0.00037 5.6 0.000 0.000 0.000 +2451949.5 -0.26502 4.56264 -31924779.3 0.00069 0.00063 5.7 0.000 0.000 0.000 +2451950.5 -0.24689 4.57728 -31925645.0 0.00065 0.00069 7.4 0.000 0.000 0.000 +2451951.5 -0.23422 4.58999 -31926686.7 0.00034 0.00078 7.6 0.000 0.000 0.000 +2451952.5 -0.22352 4.59982 -31927815.3 0.00038 0.00083 6.9 0.000 0.000 0.000 +2451953.5 -0.20895 4.60915 -31928962.1 0.00039 0.00082 7.1 0.000 0.000 0.000 +2451954.5 -0.19193 4.62127 -31930070.7 0.00041 0.00080 8.4 0.000 0.000 0.000 +2451955.5 -0.17617 4.63422 -31931050.7 0.00038 0.00068 8.9 0.000 0.000 0.000 +2451956.5 -0.15899 4.64746 -31931880.4 0.00038 0.00068 8.5 0.000 0.000 0.000 +2451957.5 -0.14059 4.66055 -31932583.5 0.00038 0.00067 9.2 0.000 0.000 0.000 +2451958.5 -0.12271 4.67266 -31933194.7 0.00030 0.00057 20.0 0.000 0.000 0.000 +2451959.5 -0.10490 4.68387 -31933777.8 0.00041 0.00057 9.7 0.000 0.000 0.000 +2451960.5 -0.08307 4.69563 -31934382.0 0.00059 0.00058 5.9 0.000 0.000 0.000 +2451961.5 -0.05509 4.70888 -31935030.7 0.00056 0.00052 5.4 0.000 0.000 0.000 +2451962.5 -0.02285 4.72355 -31935728.5 0.00056 0.00052 4.8 0.000 0.000 0.000 +2451963.5 0.00959 4.74092 -31936525.8 0.00058 0.00050 5.1 0.000 0.000 0.000 +2451964.5 0.04080 4.75913 -31937481.1 0.00059 0.00048 5.3 0.000 0.000 0.000 +2451965.5 0.06814 4.77536 -31938613.5 0.00060 0.00044 5.7 0.000 0.000 0.000 +2451966.5 0.09401 4.78947 -31939909.0 0.00056 0.00069 6.6 0.000 0.000 0.000 +2451967.5 0.12003 4.80176 -31941321.4 0.00059 0.00071 9.3 0.000 0.000 0.000 +2451968.5 0.14211 4.81235 -31942780.5 0.00057 0.00070 9.3 0.000 0.000 0.000 +2451969.5 0.16164 4.82188 -31944212.5 0.00057 0.00072 8.6 0.000 0.000 0.000 +2451970.5 0.17287 4.82890 -31945539.8 0.00071 0.00077 8.7 0.000 0.000 0.000 +2451971.5 0.18507 4.83422 -31946718.1 0.00066 0.00083 8.8 0.000 0.000 0.000 +2451972.5 0.20352 4.84030 -31947762.4 0.00053 0.00087 6.0 0.000 0.000 0.000 +2451973.5 0.22599 4.84748 -31948716.8 0.00087 0.00097 8.4 0.000 0.000 0.000 +2451974.5 0.24514 4.85302 -31949650.5 0.00096 0.00093 8.3 0.000 0.000 0.000 +2451975.5 0.26295 4.85570 -31950655.8 0.00095 0.00093 8.3 0.000 0.000 0.000 +2451976.5 0.28806 4.85624 -31951865.9 0.00088 0.00088 8.3 0.000 0.000 0.000 +2451977.5 0.31029 4.85589 -31953299.0 0.00088 0.00083 8.2 0.000 0.000 0.000 +2451978.5 0.33370 4.85563 -31954877.1 0.00092 0.00062 11.6 0.000 0.000 0.000 +2451979.5 0.35575 4.85603 -31956522.7 0.00055 0.00035 9.6 0.000 0.000 0.000 +2451980.5 0.38033 4.85714 -31958119.8 0.00034 0.00052 7.5 0.000 0.000 0.000 +2451981.5 0.40926 4.85924 -31959562.6 0.00033 0.00052 9.6 0.000 0.000 0.000 +2451982.5 0.43885 4.86293 -31960770.5 0.00028 0.00048 10.4 0.000 0.000 0.000 +2451983.5 0.46417 4.86567 -31961704.8 0.00027 0.00050 10.7 0.000 0.000 0.000 +2451984.5 0.48692 4.86845 -31962427.4 0.00028 0.00054 10.6 0.000 0.000 0.000 +2451985.5 0.50989 4.87233 -31963011.3 0.00030 0.00053 9.9 0.000 0.000 0.000 +2451986.5 0.53566 4.87598 -31963495.0 0.00027 0.00066 12.2 0.000 0.000 0.000 +2451987.5 0.56340 4.88011 -31963921.5 0.00044 0.00069 10.0 0.000 0.000 0.000 +2451988.5 0.59146 4.88584 -31964346.1 0.00061 0.00086 7.7 0.000 0.000 0.000 +2451989.5 0.61699 4.89054 -31964832.3 0.00061 0.00087 8.8 0.000 0.000 0.000 +2451990.5 0.64624 4.89240 -31965425.6 0.00062 0.00087 8.8 0.000 0.000 0.000 +2451991.5 0.67329 4.89651 -31966119.3 0.00067 0.00088 9.2 0.000 0.000 0.000 +2451992.5 0.70288 4.90215 -31966905.2 0.00066 0.00073 9.0 0.000 0.000 0.000 +2451993.5 0.73343 4.90687 -31967826.8 0.00083 0.00064 6.9 0.000 0.000 0.000 +2451994.5 0.76402 4.91032 -31968865.6 0.00085 0.00038 5.6 0.000 0.000 0.000 +2451995.5 0.79281 4.91242 -31969963.6 0.00092 0.00038 5.4 0.000 0.000 0.000 +2451996.5 0.81808 4.91307 -31971046.7 0.00092 0.00039 5.4 0.000 0.000 0.000 +2451997.5 0.84192 4.91268 -31972056.9 0.00090 0.00040 5.2 0.000 0.000 0.000 +2451998.5 0.86374 4.90970 -31972941.6 0.00091 0.00043 5.2 0.000 0.000 0.000 +2451999.5 0.88591 4.90453 -31973721.0 0.00077 0.00049 6.1 0.000 0.000 0.000 +2452000.5 0.90668 4.89883 -31974421.1 0.00062 0.00041 7.1 0.000 0.000 0.000 +2452001.5 0.92724 4.89408 -31975091.4 0.00034 0.00061 5.6 0.000 0.000 0.000 +2452002.5 0.94753 4.89009 -31975802.6 0.00033 0.00071 5.0 0.000 0.000 0.000 +2452003.5 0.96981 4.88402 -31976647.5 0.00033 0.00068 5.6 0.000 0.000 0.000 +2452004.5 0.99157 4.87506 -31977705.9 0.00034 0.00068 6.1 0.000 0.000 0.000 +2452005.5 1.01650 4.86879 -31978969.0 0.00034 0.00076 7.8 0.000 0.000 0.000 +2452006.5 1.04383 4.86641 -31980387.2 0.00034 0.00081 9.1 0.000 0.000 0.000 +2452007.5 1.06695 4.86420 -31981882.5 0.00029 0.00070 10.8 0.000 0.000 0.000 +2452008.5 1.08457 4.85867 -31983286.9 0.00054 0.00078 9.5 0.000 0.000 0.000 +2452009.5 1.10419 4.84977 -31984485.4 0.00053 0.00077 10.3 0.000 0.000 0.000 +2452010.5 1.12977 4.84111 -31985440.7 0.00050 0.00076 9.7 0.000 0.000 0.000 +2452011.5 1.15888 4.83463 -31986160.8 0.00049 0.00073 7.8 0.000 0.000 0.000 +2452012.5 1.18563 4.82954 -31986683.0 0.00049 0.00070 6.2 0.000 0.000 0.000 +2452013.5 1.21004 4.82226 -31987051.8 0.00048 0.00069 8.2 0.000 0.000 0.000 +2452014.5 1.23659 4.81328 -31987354.8 0.00030 0.00065 8.9 0.000 0.000 0.000 +2452015.5 1.26531 4.80410 -31987690.8 0.00050 0.00061 7.1 0.000 0.000 0.000 +2452016.5 1.29586 4.79450 -31988151.6 0.00061 0.00069 6.7 0.000 0.000 0.000 +2452017.5 1.32768 4.78769 -31988773.1 0.00060 0.00071 7.0 0.000 0.000 0.000 +2452018.5 1.36414 4.78242 -31989565.0 0.00060 0.00070 7.1 0.000 0.000 0.000 +2452019.5 1.39409 4.77771 -31990471.1 0.00061 0.00070 6.5 0.000 0.000 0.000 +2452020.5 1.42331 4.77108 -31991443.7 0.00063 0.00059 7.5 0.000 0.000 0.000 +2452021.5 1.44954 4.76308 -31992448.0 0.00047 0.00058 9.2 0.000 0.000 0.000 +2452022.5 1.47349 4.75595 -31993422.6 0.00050 0.00049 9.5 0.000 0.000 0.000 +2452023.5 1.49342 4.74871 -31994329.1 0.00050 0.00048 10.2 0.000 0.000 0.000 +2452024.5 1.51023 4.73878 -31995156.0 0.00050 0.00041 10.0 0.000 0.000 0.000 +2452025.5 1.53480 4.72568 -31995921.0 0.00050 0.00041 8.5 0.000 0.000 0.000 +2452026.5 1.55798 4.71217 -31996597.8 0.00051 0.00044 9.1 0.000 0.000 0.000 +2452027.5 1.57815 4.69761 -31997180.9 0.00050 0.00044 10.6 0.000 0.000 0.000 +2452028.5 1.59612 4.68176 -31997757.2 0.00022 0.00029 20.0 0.000 0.000 0.000 +2452029.5 1.61453 4.66434 -31998426.7 0.00040 0.00051 9.0 0.000 0.000 0.000 +2452030.5 1.63365 4.64495 -31999272.2 0.00072 0.00091 8.3 0.000 0.000 0.000 +2452031.5 1.64959 4.62713 -32000325.9 0.00071 0.00090 8.4 0.000 0.000 0.000 +2452032.5 1.67286 4.61474 -32001593.4 0.00072 0.00090 8.3 0.000 0.000 0.000 +2452033.5 1.69460 4.60270 -32003035.2 0.00074 0.00091 7.5 0.000 0.000 0.000 +2452034.5 1.71740 4.58695 -32004593.3 0.00074 0.00091 7.1 0.000 0.000 0.000 +2452035.5 1.73643 4.56731 -32006133.1 0.00070 0.00090 7.5 0.000 0.000 0.000 +2452036.5 1.75779 4.54608 -32007536.9 0.00036 0.00040 5.5 0.000 0.000 0.000 +2452037.5 1.78370 4.52466 -32008740.4 0.00036 0.00039 7.0 0.000 0.000 0.000 +2452038.5 1.81161 4.50246 -32009736.9 0.00037 0.00041 6.7 0.000 0.000 0.000 +2452039.5 1.83908 4.47995 -32010531.9 0.00031 0.00040 6.4 0.000 0.000 0.000 +2452040.5 1.86567 4.45904 -32011176.4 0.00031 0.00041 6.8 0.000 0.000 0.000 +2452041.5 1.89171 4.44225 -32011749.6 0.00028 0.00022 9.5 0.000 0.000 0.000 +2452042.5 1.91408 4.42714 -32012324.7 0.00066 0.00038 8.6 0.000 0.000 0.000 +2452043.5 1.93319 4.40940 -32012960.5 0.00069 0.00046 7.5 0.000 0.000 0.000 +2452044.5 1.94806 4.38786 -32013704.3 0.00077 0.00063 6.2 0.000 0.000 0.000 +2452045.5 1.96894 4.36512 -32014569.5 0.00076 0.00061 6.1 0.000 0.000 0.000 +2452046.5 1.98621 4.33717 -32015537.5 0.00076 0.00061 6.1 0.000 0.000 0.000 +2452047.5 2.00802 4.30915 -32016600.7 0.00076 0.00061 5.1 0.000 0.000 0.000 +2452048.5 2.03171 4.28082 -32017727.0 0.00053 0.00058 6.1 0.000 0.000 0.000 +2452049.5 2.05184 4.25355 -32018862.6 0.00060 0.00072 5.5 0.000 0.000 0.000 +2452050.5 2.06965 4.22748 -32019941.6 0.00057 0.00053 4.9 0.000 0.000 0.000 +2452051.5 2.08756 4.20316 -32020902.5 0.00055 0.00053 5.0 0.000 0.000 0.000 +2452052.5 2.10436 4.18180 -32021678.2 0.00056 0.00061 4.8 0.000 0.000 0.000 +2452053.5 2.12049 4.15803 -32022236.9 0.00057 0.00062 4.8 0.000 0.000 0.000 +2452054.5 2.13266 4.13278 -32022603.2 0.00058 0.00063 4.2 0.000 0.000 0.000 +2452055.5 2.14689 4.10537 -32022823.7 0.00047 0.00042 3.6 0.000 0.000 0.000 +2452056.5 2.15952 4.07562 -32023003.0 0.00032 0.00047 5.6 0.000 0.000 0.000 +2452057.5 2.17336 4.04646 -32023246.4 0.00033 0.00051 5.3 0.000 0.000 0.000 +2452058.5 2.19029 4.01941 -32023617.7 0.00037 0.00063 6.5 0.000 0.000 0.000 +2452059.5 2.20933 3.99343 -32024131.8 0.00039 0.00064 6.2 0.000 0.000 0.000 +2452060.5 2.22854 3.96793 -32024748.3 0.00037 0.00062 6.2 0.000 0.000 0.000 +2452061.5 2.24472 3.94214 -32025397.5 0.00037 0.00063 6.1 0.000 0.000 0.000 +2452062.5 2.25866 3.91491 -32026017.5 0.00043 0.00067 7.5 0.000 0.000 0.000 +2452063.5 2.27218 3.88638 -32026518.4 0.00067 0.00070 7.2 0.000 0.000 0.000 +2452064.5 2.28765 3.85696 -32026828.5 0.00066 0.00065 6.2 0.000 0.000 0.000 +2452065.5 2.30315 3.82651 -32026912.2 0.00066 0.00063 6.9 0.000 0.000 0.000 +2452066.5 2.32404 3.80141 -32026759.0 0.00065 0.00061 7.0 0.000 0.000 0.000 +2452067.5 2.34504 3.77459 -32026401.8 0.00065 0.00062 7.2 0.000 0.000 0.000 +2452068.5 2.36437 3.74949 -32025928.7 0.00064 0.00060 5.8 0.000 0.000 0.000 +2452069.5 2.38010 3.72625 -32025433.3 0.00036 0.00054 6.7 0.000 0.000 0.000 +2452070.5 2.39159 3.70203 -32025000.7 0.00032 0.00053 7.6 0.000 0.000 0.000 +2452071.5 2.40132 3.67574 -32024689.3 0.00057 0.00058 5.4 0.000 0.000 0.000 +2452072.5 2.41085 3.64852 -32024524.3 0.00056 0.00077 6.3 0.000 0.000 0.000 +2452073.5 2.41872 3.61858 -32024499.6 0.00055 0.00077 7.4 0.000 0.000 0.000 +2452074.5 2.43215 3.58549 -32024585.5 0.00058 0.00078 7.4 0.000 0.000 0.000 +2452075.5 2.44819 3.55432 -32024714.9 0.00059 0.00078 7.5 0.000 0.000 0.000 +2452076.5 2.46276 3.52494 -32024884.4 0.00086 0.00074 9.3 0.000 0.000 0.000 +2452077.5 2.47376 3.49634 -32025085.7 0.00074 0.00070 10.4 0.000 0.000 0.000 +2452078.5 2.48199 3.46681 -32025277.0 0.00080 0.00067 11.1 0.000 0.000 0.000 +2452079.5 2.48449 3.43730 -32025409.5 0.00077 0.00069 9.1 0.000 0.000 0.000 +2452080.5 2.48332 3.40917 -32025432.1 0.00073 0.00069 9.4 0.000 0.000 0.000 +2452081.5 2.48219 3.37989 -32025332.0 0.00073 0.00069 9.6 0.000 0.000 0.000 +2452082.5 2.48432 3.35039 -32025178.3 0.00039 0.00063 8.6 0.000 0.000 0.000 +2452083.5 2.48672 3.32019 -32025010.2 0.00040 0.00064 9.2 0.000 0.000 0.000 +2452084.5 2.48941 3.28966 -32024897.1 0.00042 0.00072 7.8 0.000 0.000 0.000 +2452085.5 2.49524 3.25883 -32024920.3 0.00047 0.00079 8.5 0.000 0.000 0.000 +2452086.5 2.50315 3.22772 -32025157.1 0.00066 0.00103 8.0 0.000 0.000 0.000 +2452087.5 2.51273 3.19927 -32025621.9 0.00065 0.00103 7.7 0.000 0.000 0.000 +2452088.5 2.52021 3.17202 -32026234.5 0.00065 0.00103 7.2 0.000 0.000 0.000 +2452089.5 2.52370 3.14124 -32026837.4 0.00066 0.00104 6.6 0.000 0.000 0.000 +2452090.5 2.53002 3.10905 -32027330.5 0.00058 0.00092 7.8 0.000 0.000 0.000 +2452091.5 2.53741 3.07765 -32027662.8 0.00063 0.00087 8.1 0.000 0.000 0.000 +2452092.5 2.53974 3.04584 -32027806.8 0.00047 0.00058 8.6 0.000 0.000 0.000 +2452093.5 2.53762 3.01335 -32027772.4 0.00046 0.00057 8.8 0.000 0.000 0.000 +2452094.5 2.54224 2.98378 -32027591.7 0.00045 0.00056 8.8 0.000 0.000 0.000 +2452095.5 2.54241 2.95658 -32027321.4 0.00044 0.00055 9.2 0.000 0.000 0.000 +2452096.5 2.53920 2.92951 -32027016.8 0.00046 0.00059 9.5 0.000 0.000 0.000 +2452097.5 2.53533 2.90230 -32026717.2 0.00032 0.00051 13.5 0.000 0.000 0.000 +2452098.5 2.52717 2.87446 -32026487.6 0.00038 0.00034 7.5 0.000 0.000 0.000 +2452099.5 2.51822 2.84340 -32026355.9 0.00041 0.00049 7.9 0.000 0.000 0.000 +2452100.5 2.51695 2.80983 -32026295.7 0.00041 0.00052 6.7 0.000 0.000 0.000 +2452101.5 2.51953 2.77810 -32026293.7 0.00042 0.00052 6.6 0.000 0.000 0.000 +2452102.5 2.51516 2.74843 -32026342.0 0.00041 0.00050 6.4 0.000 0.000 0.000 +2452103.5 2.50986 2.71916 -32026442.3 0.00042 0.00050 5.1 0.000 0.000 0.000 +2452104.5 2.50429 2.68990 -32026574.5 0.00038 0.00055 6.2 0.000 0.000 0.000 +2452105.5 2.49498 2.65870 -32026677.6 0.00041 0.00041 6.0 0.000 0.000 0.000 +2452106.5 2.48496 2.62527 -32026699.6 0.00054 0.00040 8.6 0.000 0.000 0.000 +2452107.5 2.48054 2.59234 -32026605.4 0.00064 0.00056 7.4 0.000 0.000 0.000 +2452108.5 2.47908 2.56088 -32026376.7 0.00062 0.00054 7.3 0.000 0.000 0.000 +2452109.5 2.47895 2.52883 -32025994.2 0.00061 0.00054 7.3 0.000 0.000 0.000 +2452110.5 2.47653 2.49811 -32025508.2 0.00062 0.00055 7.3 0.000 0.000 0.000 +2452111.5 2.47133 2.46739 -32025006.0 0.00055 0.00058 6.6 0.000 0.000 0.000 +2452112.5 2.46317 2.43687 -32024613.2 0.00062 0.00077 7.2 0.000 0.000 0.000 +2452113.5 2.45312 2.40794 -32024417.1 0.00050 0.00071 11.5 0.000 0.000 0.000 +2452114.5 2.44190 2.38034 -32024437.8 0.00052 0.00067 10.0 0.000 0.000 0.000 +2452115.5 2.43633 2.35559 -32024625.4 0.00051 0.00063 11.0 0.000 0.000 0.000 +2452116.5 2.42998 2.32834 -32024855.4 0.00051 0.00063 11.0 0.000 0.000 0.000 +2452117.5 2.42031 2.30017 -32025036.2 0.00050 0.00063 11.1 0.000 0.000 0.000 +2452118.5 2.40677 2.27069 -32025071.0 0.00027 0.00040 10.9 0.000 0.000 0.000 +2452119.5 2.39027 2.23969 -32024897.3 0.00029 0.00041 10.7 0.000 0.000 0.000 +2452120.5 2.37317 2.20910 -32024520.3 0.00022 0.00104 9.4 0.000 0.000 0.000 +2452121.5 2.35881 2.18151 -32023975.0 0.00045 0.00107 5.3 0.000 0.000 0.000 +2452122.5 2.34717 2.15651 -32023317.3 0.00045 0.00111 6.0 0.000 0.000 0.000 +2452123.5 2.33422 2.13686 -32022603.1 0.00045 0.00111 6.0 0.000 0.000 0.000 +2452124.5 2.30943 2.11521 -32021930.7 0.00046 0.00113 5.8 0.000 0.000 0.000 +2452125.5 2.28261 2.08859 -32021374.1 0.00047 0.00113 5.9 0.000 0.000 0.000 +2452126.5 2.25857 2.05974 -32020964.7 0.00061 0.00079 5.4 0.000 0.000 0.000 +2452127.5 2.23863 2.03328 -32020713.4 0.00045 0.00065 8.0 0.000 0.000 0.000 +2452128.5 2.21855 2.00886 -32020609.3 0.00052 0.00087 7.3 0.000 0.000 0.000 +2452129.5 2.19650 1.98793 -32020645.3 0.00050 0.00082 8.1 0.000 0.000 0.000 +2452130.5 2.17165 1.96492 -32020828.0 0.00050 0.00081 8.2 0.000 0.000 0.000 +2452131.5 2.14279 1.94239 -32021118.0 0.00052 0.00082 7.9 0.000 0.000 0.000 +2452132.5 2.11301 1.91749 -32021488.3 0.00038 0.00079 8.9 0.000 0.000 0.000 +2452133.5 2.08452 1.89000 -32021858.2 0.00041 0.00082 8.6 0.000 0.000 0.000 +2452134.5 2.05995 1.86346 -32022168.3 0.00044 0.00048 5.9 0.000 0.000 0.000 +2452135.5 2.03670 1.83843 -32022375.9 0.00076 0.00046 4.2 0.000 0.000 0.000 +2452136.5 2.01039 1.81395 -32022471.9 0.00075 0.00047 4.2 0.000 0.000 0.000 +2452137.5 1.98735 1.79169 -32022495.1 0.00076 0.00052 4.2 0.000 0.000 0.000 +2452138.5 1.95944 1.77022 -32022542.4 0.00076 0.00047 4.4 0.000 0.000 0.000 +2452139.5 1.93426 1.74788 -32022734.9 0.00076 0.00045 5.0 0.000 0.000 0.000 +2452140.5 1.90994 1.72531 -32023146.8 0.00121 0.00074 3.7 0.000 0.000 0.000 +2452141.5 1.88808 1.70425 -32023811.0 0.00103 0.00072 4.1 0.000 0.000 0.000 +2452142.5 1.86214 1.68363 -32024671.6 0.00098 0.00069 5.0 0.000 0.000 0.000 +2452143.5 1.83861 1.66102 -32025633.6 0.00096 0.00064 5.1 0.000 0.000 0.000 +2452144.5 1.81219 1.64098 -32026572.2 0.00098 0.00064 4.9 0.000 0.000 0.000 +2452145.5 1.78686 1.62236 -32027330.5 0.00099 0.00065 4.5 0.000 0.000 0.000 +2452146.5 1.76484 1.60322 -32027885.9 0.00040 0.00038 6.4 0.000 0.000 0.000 +2452147.5 1.74370 1.58283 -32028191.2 0.00038 0.00099 7.7 0.000 0.000 0.000 +2452148.5 1.72430 1.56191 -32028270.2 0.00039 0.00101 7.2 0.000 0.000 0.000 +2452149.5 1.70442 1.54081 -32028181.0 0.00045 0.00104 6.8 0.000 0.000 0.000 +2452150.5 1.68331 1.52592 -32027987.5 0.00042 0.00102 7.0 0.000 0.000 0.000 +2452151.5 1.66092 1.51173 -32027769.9 0.00041 0.00102 7.0 0.000 0.000 0.000 +2452152.5 1.63291 1.50174 -32027624.6 0.00042 0.00105 6.6 0.000 0.000 0.000 +2452153.5 1.60299 1.49268 -32027556.5 0.00042 0.00087 7.2 0.000 0.000 0.000 +2452154.5 1.57080 1.47947 -32027623.7 0.00044 0.00091 8.9 0.000 0.000 0.000 +2452155.5 1.53934 1.46421 -32027845.7 0.00051 0.00078 10.1 0.000 0.000 0.000 +2452156.5 1.50813 1.44837 -32028210.1 0.00061 0.00078 8.9 0.000 0.000 0.000 +2452157.5 1.47461 1.42968 -32028679.5 0.00061 0.00078 8.6 0.000 0.000 0.000 +2452158.5 1.44620 1.40961 -32029222.0 0.00061 0.00079 8.6 0.000 0.000 0.000 +2452159.5 1.41821 1.39291 -32029722.8 0.00057 0.00041 7.1 0.000 0.000 0.000 +2452160.5 1.39478 1.37953 -32030125.1 0.00054 0.00045 6.7 0.000 0.000 0.000 +2452161.5 1.37182 1.36871 -32030399.1 0.00049 0.00079 9.3 0.000 0.000 0.000 +2452162.5 1.34802 1.35789 -32030540.7 0.00057 0.00084 9.9 0.000 0.000 0.000 +2452163.5 1.31946 1.34725 -32030558.5 0.00083 0.00088 9.9 0.000 0.000 0.000 +2452164.5 1.28808 1.33382 -32030489.3 0.00081 0.00085 10.0 0.000 0.000 0.000 +2452165.5 1.25578 1.32342 -32030390.2 0.00081 0.00083 10.0 0.000 0.000 0.000 +2452166.5 1.22471 1.31182 -32030376.8 0.00082 0.00082 10.1 0.000 0.000 0.000 +2452167.5 1.18832 1.30112 -32030559.2 0.00083 0.00062 9.9 0.000 0.000 0.000 +2452168.5 1.15143 1.29199 -32031022.7 0.00073 0.00051 9.8 0.000 0.000 0.000 +2452169.5 1.11711 1.28352 -32031771.6 0.00050 0.00040 7.7 0.000 0.000 0.000 +2452170.5 1.08321 1.27496 -32032708.1 0.00050 0.00041 5.1 0.000 0.000 0.000 +2452171.5 1.04569 1.26751 -32033683.3 0.00049 0.00041 5.5 0.000 0.000 0.000 +2452172.5 1.01210 1.26126 -32034578.2 0.00049 0.00041 5.4 0.000 0.000 0.000 +2452173.5 0.97840 1.25600 -32035318.8 0.00051 0.00046 5.2 0.000 0.000 0.000 +2452174.5 0.94523 1.25055 -32035865.0 0.00052 0.00045 8.8 0.000 0.000 0.000 +2452175.5 0.91437 1.24356 -32036228.9 0.00052 0.00040 11.1 0.000 0.000 0.000 +2452176.5 0.88544 1.23373 -32036431.5 0.00068 0.00073 12.7 0.000 0.000 0.000 +2452177.5 0.85419 1.22242 -32036514.8 0.00069 0.00100 9.7 0.000 0.000 0.000 +2452178.5 0.82384 1.21131 -32036571.9 0.00068 0.00099 9.7 0.000 0.000 0.000 +2452179.5 0.78860 1.20169 -32036664.9 0.00069 0.00099 9.8 0.000 0.000 0.000 +2452180.5 0.75383 1.19261 -32036862.6 0.00070 0.00101 7.9 0.000 0.000 0.000 +2452181.5 0.71807 1.18694 -32037207.0 0.00055 0.00103 6.7 0.000 0.000 0.000 +2452182.5 0.68634 1.18290 -32037681.9 0.00038 0.00091 5.2 0.000 0.000 0.000 +2452183.5 0.65436 1.17971 -32038285.8 0.00028 0.00066 6.1 0.000 0.000 0.000 +2452184.5 0.61710 1.17827 -32039026.7 0.00034 0.00064 5.5 0.000 0.000 0.000 +2452185.5 0.57936 1.17588 -32039884.2 0.00034 0.00065 6.1 0.000 0.000 0.000 +2452186.5 0.54774 1.17490 -32040766.4 0.00032 0.00064 6.0 0.000 0.000 0.000 +2452187.5 0.52016 1.17572 -32041659.7 0.00031 0.00064 5.6 0.000 0.000 0.000 +2452188.5 0.48979 1.17791 -32042507.0 0.00030 0.00061 6.3 0.000 0.000 0.000 +2452189.5 0.45990 1.17917 -32043221.2 0.00030 0.00036 7.7 0.000 0.000 0.000 +2452190.5 0.43050 1.17934 -32043809.3 0.00044 0.00038 8.6 0.000 0.000 0.000 +2452191.5 0.39847 1.17912 -32044311.9 0.00051 0.00033 10.6 0.000 0.000 0.000 +2452192.5 0.36038 1.17764 -32044794.6 0.00043 0.00037 10.4 0.000 0.000 0.000 +2452193.5 0.31925 1.17472 -32045347.1 0.00043 0.00037 10.5 0.000 0.000 0.000 +2452194.5 0.27462 1.17429 -32046038.8 0.00044 0.00040 10.2 0.000 0.000 0.000 +2452195.5 0.23104 1.17678 -32046935.2 0.00044 0.00041 10.3 0.000 0.000 0.000 +2452196.5 0.19355 1.17947 -32048104.9 0.00048 0.00045 17.4 0.000 0.000 0.000 +2452197.5 0.15955 1.18424 -32049524.7 0.00043 0.00049 8.7 0.000 0.000 0.000 +2452198.5 0.12840 1.19088 -32051092.3 0.00046 0.00053 8.4 0.000 0.000 0.000 +2452199.5 0.09780 1.19560 -32052675.6 0.00047 0.00051 8.1 0.000 0.000 0.000 +2452200.5 0.06633 1.20106 -32054138.5 0.00051 0.00054 8.7 0.000 0.000 0.000 +2452201.5 0.03126 1.20610 -32055364.1 0.00053 0.00059 8.8 0.000 0.000 0.000 +2452202.5 -0.00624 1.21195 -32056310.0 0.00044 0.00056 8.6 0.000 0.000 0.000 +2452203.5 -0.04539 1.21978 -32057017.3 0.00066 0.00067 7.0 0.000 0.000 0.000 +2452204.5 -0.08583 1.22908 -32057586.5 0.00064 0.00064 6.1 0.000 0.000 0.000 +2452205.5 -0.12755 1.23882 -32058093.8 0.00089 0.00066 5.6 0.000 0.000 0.000 +2452206.5 -0.16462 1.24837 -32058603.4 0.00091 0.00067 5.0 0.000 0.000 0.000 +2452207.5 -0.20048 1.25911 -32059148.2 0.00088 0.00060 4.8 0.000 0.000 0.000 +2452208.5 -0.23583 1.27064 -32059805.8 0.00090 0.00061 3.9 0.000 0.000 0.000 +2452209.5 -0.27007 1.28253 -32060627.1 0.00080 0.00050 8.3 0.000 0.000 0.000 +2452210.5 -0.30354 1.29318 -32061600.5 0.00080 0.00046 6.0 0.000 0.000 0.000 +2452211.5 -0.33480 1.30398 -32062673.1 0.00047 0.00045 5.6 0.000 0.000 0.000 +2452212.5 -0.36303 1.31600 -32063794.1 0.00041 0.00056 5.6 0.000 0.000 0.000 +2452213.5 -0.39714 1.32686 -32064900.4 0.00040 0.00054 5.7 0.000 0.000 0.000 +2452214.5 -0.42989 1.33878 -32065962.5 0.00039 0.00053 5.6 0.000 0.000 0.000 +2452215.5 -0.46629 1.34964 -32066911.4 0.00037 0.00054 4.1 0.000 0.000 0.000 +2452216.5 -0.50408 1.36000 -32067678.8 0.00025 0.00053 5.7 0.000 0.000 0.000 +2452217.5 -0.53921 1.37004 -32068308.7 0.00091 0.00047 6.0 0.000 0.000 0.000 +2452218.5 -0.56865 1.38068 -32068848.5 0.00095 0.00043 5.3 0.000 0.000 0.000 +2452219.5 -0.59558 1.39433 -32069338.3 0.00094 0.00055 5.8 0.000 0.000 0.000 +2452220.5 -0.61627 1.41093 -32069818.5 0.00095 0.00054 5.5 0.000 0.000 0.000 +2452221.5 -0.63456 1.42993 -32070392.5 0.00094 0.00059 5.0 0.000 0.000 0.000 +2452222.5 -0.65474 1.45177 -32071210.7 0.00095 0.00060 5.0 0.000 0.000 0.000 +2452223.5 -0.67784 1.47659 -32072344.7 0.00044 0.00062 5.8 0.000 0.000 0.000 +2452224.5 -0.69801 1.50149 -32073714.9 0.00044 0.00070 7.6 0.000 0.000 0.000 +2452225.5 -0.71459 1.52710 -32075240.2 0.00046 0.00070 5.4 0.000 0.000 0.000 +2452226.5 -0.73341 1.55281 -32076824.2 0.00062 0.00081 5.1 0.000 0.000 0.000 +2452227.5 -0.75323 1.57437 -32078359.8 0.00063 0.00076 5.1 0.000 0.000 0.000 +2452228.5 -0.77741 1.59291 -32079680.1 0.00063 0.00076 5.0 0.000 0.000 0.000 +2452229.5 -0.80448 1.60933 -32080715.2 0.00063 0.00077 4.8 0.000 0.000 0.000 +2452230.5 -0.82621 1.62749 -32081529.9 0.00055 0.00067 4.2 0.000 0.000 0.000 +2452231.5 -0.84528 1.64625 -32082186.8 0.00051 0.00057 5.1 0.000 0.000 0.000 +2452232.5 -0.86591 1.66560 -32082757.1 0.00052 0.00063 4.8 0.000 0.000 0.000 +2452233.5 -0.88953 1.68640 -32083303.8 0.00053 0.00064 5.0 0.000 0.000 0.000 +2452234.5 -0.91658 1.70741 -32083864.2 0.00051 0.00062 5.7 0.000 0.000 0.000 +2452235.5 -0.94431 1.73105 -32084476.0 0.00051 0.00061 5.6 0.000 0.000 0.000 +2452236.5 -0.97409 1.75721 -32085188.7 0.00053 0.00066 6.1 0.000 0.000 0.000 +2452237.5 -1.00602 1.78275 -32085991.3 0.00055 0.00068 5.3 0.000 0.000 0.000 +2452238.5 -1.03613 1.80729 -32086875.9 0.00023 0.00046 12.8 0.000 0.000 0.000 +2452239.5 -1.06089 1.83249 -32087832.3 0.00038 0.00084 6.2 0.000 0.000 0.000 +2452240.5 -1.08153 1.85722 -32088822.6 0.00040 0.00085 4.0 0.000 0.000 0.000 +2452241.5 -1.10176 1.88090 -32089793.2 0.00043 0.00086 4.2 0.000 0.000 0.000 +2452242.5 -1.12618 1.90435 -32090684.4 0.00044 0.00084 4.1 0.000 0.000 0.000 +2452243.5 -1.15311 1.92964 -32091463.4 0.00046 0.00084 4.1 0.000 0.000 0.000 +2452244.5 -1.18464 1.95637 -32092097.3 0.00051 0.00084 4.3 0.000 0.000 0.000 +2452245.5 -1.21678 1.98149 -32092539.0 0.00100 0.00057 2.7 0.000 0.000 0.000 +2452246.5 -1.24530 2.00351 -32092847.8 0.00107 0.00055 2.2 0.000 0.000 0.000 +2452247.5 -1.27359 2.02692 -32093111.3 0.00104 0.00057 1.8 0.000 0.000 0.000 +2452248.5 -1.29416 2.05404 -32093406.6 0.00103 0.00058 2.0 0.000 0.000 0.000 +2452249.5 -1.31738 2.08725 -32093840.9 0.00103 0.00057 2.0 0.000 0.000 0.000 +2452250.5 -1.34551 2.11854 -32094480.7 0.00102 0.00057 2.1 0.000 0.000 0.000 +2452251.5 -1.37789 2.14566 -32095333.9 0.00068 0.00066 4.2 0.000 0.000 0.000 +2452252.5 -1.40986 2.17080 -32096385.6 0.00056 0.00054 5.0 0.000 0.000 0.000 +2452253.5 -1.43838 2.19807 -32097564.3 0.00070 0.00052 8.5 0.000 0.000 0.000 +2452254.5 -1.46656 2.22723 -32098747.9 0.00067 0.00051 9.8 0.000 0.000 0.000 +2452255.5 -1.49948 2.25481 -32099813.4 0.00071 0.00059 9.4 0.000 0.000 0.000 +2452256.5 -1.52612 2.28085 -32100708.2 0.00073 0.00058 9.1 0.000 0.000 0.000 +2452257.5 -1.55305 2.30771 -32101405.9 0.00077 0.00060 9.3 0.000 0.000 0.000 +2452258.5 -1.57714 2.33331 -32101885.8 0.00066 0.00055 8.8 0.000 0.000 0.000 +2452259.5 -1.59978 2.35998 -32102220.3 0.00041 0.00052 11.5 0.000 0.000 0.000 +2452260.5 -1.61980 2.38753 -32102528.1 0.00045 0.00048 6.3 0.000 0.000 0.000 +2452261.5 -1.63905 2.41728 -32102898.0 0.00064 0.00043 5.8 0.000 0.000 0.000 +2452262.5 -1.65854 2.44994 -32103368.8 0.00058 0.00042 6.2 0.000 0.000 0.000 +2452263.5 -1.67843 2.48595 -32103951.7 0.00056 0.00047 5.9 0.000 0.000 0.000 +2452264.5 -1.69223 2.52012 -32104741.2 0.00060 0.00048 5.9 0.000 0.000 0.000 +2452265.5 -1.70323 2.55525 -32105734.0 0.00062 0.00051 5.9 0.000 0.000 0.000 +2452266.5 -1.71332 2.59085 -32106832.5 0.00066 0.00058 6.9 0.000 0.000 0.000 +2452267.5 -1.72075 2.62715 -32107993.3 0.00030 0.00046 11.2 0.000 0.000 0.000 +2452268.5 -1.72603 2.66592 -32109180.1 0.00031 0.00052 7.8 0.000 0.000 0.000 +2452269.5 -1.73022 2.70694 -32110355.0 0.00037 0.00068 2.7 0.000 0.000 0.000 +2452270.5 -1.73557 2.74797 -32111483.1 0.00043 0.00066 2.7 0.000 0.000 0.000 +2452271.5 -1.74562 2.78753 -32112525.1 0.00043 0.00066 3.1 0.000 0.000 0.000 +2452272.5 -1.75309 2.82543 -32113443.7 0.00040 0.00086 6.5 0.000 0.000 0.000 +2452273.5 -1.75977 2.86566 -32114256.2 0.00040 0.00079 6.7 0.000 0.000 0.000 +2452274.5 -1.76646 2.90465 -32115020.9 0.00042 0.00072 7.0 0.000 0.000 0.000 +2452275.5 -1.77009 2.94114 -32115803.7 0.00041 0.00069 17.5 0.000 0.000 0.000 +2452276.5 -1.77488 2.97805 -32116669.3 0.00033 0.00080 9.8 0.000 0.000 0.000 +2452277.5 -1.78329 3.01003 -32117698.5 0.00037 0.00073 10.8 0.000 0.000 0.000 +2452278.5 -1.79094 3.03778 -32118898.6 0.00042 0.00061 9.9 0.000 0.000 0.000 +2452279.5 -1.79525 3.06654 -32120211.3 0.00046 0.00060 9.4 0.000 0.000 0.000 +2452280.5 -1.80013 3.09704 -32121547.3 0.00057 0.00089 7.4 0.000 0.000 0.000 +2452281.5 -1.80668 3.12900 -32122836.5 0.00057 0.00088 7.7 0.000 0.000 0.000 +2452282.5 -1.81812 3.15506 -32123961.0 0.00065 0.00071 8.8 0.000 0.000 0.000 +2452283.5 -1.82654 3.18362 -32124806.7 0.00094 0.00076 8.5 0.000 0.000 0.000 +2452284.5 -1.83027 3.21345 -32125401.2 0.00088 0.00076 8.4 0.000 0.000 0.000 +2452285.5 -1.83117 3.24395 -32125788.8 0.00081 0.00082 8.9 0.000 0.000 0.000 +2452286.5 -1.82599 3.27563 -32125998.9 0.00079 0.00036 11.4 0.000 0.000 0.000 +2452287.5 -1.82283 3.30659 -32126059.0 0.00085 0.00067 8.1 0.000 0.000 0.000 +2452288.5 -1.81728 3.33761 -32126049.1 0.00084 0.00075 8.4 0.000 0.000 0.000 +2452289.5 -1.81298 3.37061 -32126053.0 0.00047 0.00079 6.6 0.000 0.000 0.000 +2452290.5 -1.80659 3.40009 -32126142.7 0.00048 0.00072 4.2 0.000 0.000 0.000 +2452291.5 -1.79792 3.43138 -32126306.7 0.00050 0.00074 4.1 0.000 0.000 0.000 +2452292.5 -1.79228 3.46273 -32126578.7 0.00049 0.00082 4.0 0.000 0.000 0.000 +2452293.5 -1.78749 3.49369 -32127011.6 0.00032 0.00059 4.0 0.000 0.000 0.000 +2452294.5 -1.78413 3.52399 -32127535.1 0.00029 0.00054 3.7 0.000 0.000 0.000 +2452295.5 -1.78168 3.55447 -32128104.6 0.00098 0.00052 3.6 0.000 0.000 0.000 +2452296.5 -1.77710 3.58638 -32128701.4 0.00100 0.00045 3.2 0.000 0.000 0.000 +2452297.5 -1.77113 3.62061 -32129301.4 0.00106 0.00045 3.2 0.000 0.000 0.000 +2452298.5 -1.76572 3.65481 -32129855.2 0.00107 0.00045 3.2 0.000 0.000 0.000 +2452299.5 -1.75461 3.68891 -32130298.9 0.00109 0.00047 3.1 0.000 0.000 0.000 +2452300.5 -1.74991 3.72308 -32130633.3 0.00119 0.00048 3.2 0.000 0.000 0.000 +2452301.5 -1.74309 3.75604 -32130939.7 0.00076 0.00057 5.1 0.000 0.000 0.000 +2452302.5 -1.73591 3.78923 -32131326.9 0.00075 0.00059 5.5 0.000 0.000 0.000 +2452303.5 -1.72600 3.82249 -32131902.2 0.00062 0.00058 7.1 0.000 0.000 0.000 +2452304.5 -1.72382 3.85259 -32132737.8 0.00111 0.00051 7.3 0.000 0.000 0.000 +2452305.5 -1.70712 3.88503 -32133867.6 0.00113 0.00051 7.4 0.000 0.000 0.000 +2452306.5 -1.68868 3.91739 -32135185.8 0.00103 0.00048 7.3 0.000 0.000 0.000 +2452307.5 -1.67470 3.94932 -32136644.1 0.00110 0.00066 5.7 0.000 0.000 0.000 +2452308.5 -1.66418 3.98090 -32138143.9 0.00068 0.00101 4.9 0.000 0.000 0.000 +2452309.5 -1.65561 4.01086 -32139521.3 0.00064 0.00101 4.9 0.000 0.000 0.000 +2452310.5 -1.64211 4.03342 -32140716.9 0.00045 0.00104 4.8 0.000 0.000 0.000 +2452311.5 -1.63269 4.06639 -32141709.1 0.00056 0.00100 4.6 0.000 0.000 0.000 +2452312.5 -1.62277 4.09557 -32142447.6 0.00055 0.00101 4.5 0.000 0.000 0.000 +2452313.5 -1.61015 4.12684 -32143015.6 0.00053 0.00100 4.3 0.000 0.000 0.000 +2452314.5 -1.59835 4.15587 -32143439.8 0.00049 0.00050 7.5 0.000 0.000 0.000 +2452315.5 -1.57936 4.18974 -32143814.9 0.00056 0.00106 8.4 0.000 0.000 0.000 +2452316.5 -1.56063 4.22605 -32144249.1 0.00058 0.00119 7.7 0.000 0.000 0.000 +2452317.5 -1.54324 4.25826 -32144792.9 0.00050 0.00119 7.9 0.000 0.000 0.000 +2452318.5 -1.53341 4.28899 -32145416.3 0.00073 0.00121 7.1 0.000 0.000 0.000 +2452319.5 -1.52464 4.31906 -32146147.7 0.00068 0.00120 6.9 0.000 0.000 0.000 +2452320.5 -1.51424 4.34626 -32146980.3 0.00074 0.00119 5.5 0.000 0.000 0.000 +2452321.5 -1.50081 4.37271 -32147910.9 0.00069 0.00077 3.3 0.000 0.000 0.000 +2452322.5 -1.48477 4.39923 -32148942.0 0.00065 0.00045 3.5 0.000 0.000 0.000 +2452323.5 -1.46810 4.42634 -32150008.8 0.00112 0.00075 5.4 0.000 0.000 0.000 +2452324.5 -1.45240 4.45449 -32151041.2 0.00100 0.00077 6.0 0.000 0.000 0.000 +2452325.5 -1.43900 4.47997 -32151999.9 0.00104 0.00077 6.0 0.000 0.000 0.000 +2452326.5 -1.42009 4.51037 -32152875.8 0.00105 0.00075 6.1 0.000 0.000 0.000 +2452327.5 -1.40228 4.54096 -32153646.6 0.00105 0.00075 6.1 0.000 0.000 0.000 +2452328.5 -1.38462 4.57407 -32154341.3 0.00104 0.00070 5.8 0.000 0.000 0.000 +2452329.5 -1.36557 4.60789 -32154999.9 0.00139 0.00023 4.7 0.000 0.000 0.000 +2452330.5 -1.34087 4.63956 -32155754.4 0.00156 0.00021 4.9 0.000 0.000 0.000 +2452331.5 -1.31068 4.67093 -32156715.3 0.00147 0.00032 4.0 0.000 0.000 0.000 +2452332.5 -1.28404 4.70390 -32157942.7 0.00142 0.00051 3.8 0.000 0.000 0.000 +2452333.5 -1.25969 4.73648 -32159413.9 0.00133 0.00051 3.8 0.000 0.000 0.000 +2452334.5 -1.23466 4.76614 -32161013.0 0.00133 0.00052 3.9 0.000 0.000 0.000 +2452335.5 -1.20766 4.79944 -32162676.3 0.00034 0.00055 3.5 0.000 0.000 0.000 +2452336.5 -1.18530 4.83098 -32164281.1 0.00073 0.00054 2.8 0.000 0.000 0.000 +2452337.5 -1.16655 4.86095 -32165671.4 0.00087 0.00053 2.5 0.000 0.000 0.000 +2452338.5 -1.14395 4.89089 -32166792.3 0.00076 0.00075 3.4 0.000 0.000 0.000 +2452339.5 -1.11594 4.91868 -32167692.4 0.00075 0.00054 2.7 0.000 0.000 0.000 +2452340.5 -1.08714 4.94583 -32168420.4 0.00076 0.00053 2.5 0.000 0.000 0.000 +2452341.5 -1.05532 4.97237 -32169027.1 0.00074 0.00053 2.3 0.000 0.000 0.000 +2452342.5 -1.02290 4.99896 -32169578.3 0.00069 0.00054 2.5 0.000 0.000 0.000 +2452343.5 -0.99233 5.02621 -32170114.7 0.00088 0.00058 3.1 0.000 0.000 0.000 +2452344.5 -0.96900 5.05328 -32170726.5 0.00097 0.00050 3.2 0.000 0.000 0.000 +2452345.5 -0.95003 5.07731 -32171474.2 0.00103 0.00040 3.5 0.000 0.000 0.000 +2452346.5 -0.92696 5.10038 -32172370.3 0.00098 0.00045 3.4 0.000 0.000 0.000 +2452347.5 -0.90273 5.12327 -32173358.7 0.00108 0.00050 3.6 0.000 0.000 0.000 +2452348.5 -0.87640 5.14515 -32174353.4 0.00109 0.00054 3.7 0.000 0.000 0.000 +2452349.5 -0.84880 5.16652 -32175289.8 0.00041 0.00050 3.6 0.000 0.000 0.000 +2452350.5 -0.81865 5.18623 -32176178.9 0.00095 0.00045 4.7 0.000 0.000 0.000 +2452351.5 -0.78743 5.20501 -32177019.1 0.00095 0.00058 4.7 0.000 0.000 0.000 +2452352.5 -0.75573 5.22423 -32177769.2 0.00088 0.00057 4.8 0.000 0.000 0.000 +2452353.5 -0.72557 5.24176 -32178367.7 0.00086 0.00061 4.2 0.000 0.000 0.000 +2452354.5 -0.69248 5.25875 -32178833.5 0.00081 0.00057 4.0 0.000 0.000 0.000 +2452355.5 -0.65792 5.27717 -32179221.9 0.00084 0.00057 3.9 0.000 0.000 0.000 +2452356.5 -0.62322 5.29338 -32179603.2 0.00036 0.00062 2.6 0.000 0.000 0.000 +2452357.5 -0.58830 5.30844 -32180048.7 0.00046 0.00056 2.4 0.000 0.000 0.000 +2452358.5 -0.55239 5.32485 -32180657.8 0.00055 0.00056 2.6 0.000 0.000 0.000 +2452359.5 -0.51305 5.34269 -32181513.9 0.00054 0.00049 3.0 0.000 0.000 0.000 +2452360.5 -0.48003 5.35986 -32182662.5 0.00062 0.00049 3.3 0.000 0.000 0.000 +2452361.5 -0.45024 5.37475 -32184093.5 0.00063 0.00048 3.4 0.000 0.000 0.000 +2452362.5 -0.41711 5.38739 -32185654.5 0.00069 0.00050 3.6 0.000 0.000 0.000 +2452363.5 -0.38229 5.39740 -32187129.0 0.00045 0.00037 4.4 0.000 0.000 0.000 +2452364.5 -0.34505 5.40450 -32188409.7 0.00028 0.00052 4.7 0.000 0.000 0.000 +2452365.5 -0.30777 5.40935 -32189458.4 0.00064 0.00079 7.4 0.000 0.000 0.000 +2452366.5 -0.26999 5.41318 -32190263.2 0.00076 0.00079 5.8 0.000 0.000 0.000 +2452367.5 -0.22756 5.41820 -32190857.6 0.00073 0.00083 5.2 0.000 0.000 0.000 +2452368.5 -0.18609 5.43049 -32191293.8 0.00073 0.00085 5.2 0.000 0.000 0.000 +2452369.5 -0.14929 5.44424 -32191673.3 0.00076 0.00079 5.3 0.000 0.000 0.000 +2452370.5 -0.11577 5.45877 -32192073.2 0.00083 0.00068 4.4 0.000 0.000 0.000 +2452371.5 -0.08811 5.47106 -32192564.1 0.00102 0.00047 3.4 0.000 0.000 0.000 +2452372.5 -0.06170 5.48031 -32193149.1 0.00099 0.00058 3.3 0.000 0.000 0.000 +2452373.5 -0.03464 5.48845 -32193837.6 0.00102 0.00057 3.5 0.000 0.000 0.000 +2452374.5 -0.01632 5.49513 -32194638.6 0.00100 0.00064 3.1 0.000 0.000 0.000 +2452375.5 0.00758 5.49929 -32195543.4 0.00093 0.00065 3.0 0.000 0.000 0.000 +2452376.5 0.03793 5.50584 -32196507.4 0.00091 0.00071 3.0 0.000 0.000 0.000 +2452377.5 0.06866 5.51415 -32197444.3 0.00056 0.00072 4.0 0.000 0.000 0.000 +2452378.5 0.09921 5.52113 -32198290.1 0.00065 0.00060 5.0 0.000 0.000 0.000 +2452379.5 0.12898 5.52750 -32199007.6 0.00066 0.00056 5.0 0.000 0.000 0.000 +2452380.5 0.15673 5.53328 -32199562.9 0.00067 0.00041 5.3 0.000 0.000 0.000 +2452381.5 0.18805 5.53828 -32199915.5 0.00070 0.00042 5.0 0.000 0.000 0.000 +2452382.5 0.22142 5.54317 -32200194.2 0.00072 0.00041 5.0 0.000 0.000 0.000 +2452383.5 0.25472 5.54749 -32200454.4 0.00075 0.00042 4.5 0.000 0.000 0.000 +2452384.5 0.28900 5.55014 -32200674.3 0.00034 0.00040 3.9 0.000 0.000 0.000 +2452385.5 0.32013 5.55143 -32200965.9 0.00078 0.00052 3.3 0.000 0.000 0.000 +2452386.5 0.34844 5.55118 -32201462.4 0.00078 0.00056 3.5 0.000 0.000 0.000 +2452387.5 0.37865 5.54978 -32202253.9 0.00075 0.00059 3.4 0.000 0.000 0.000 +2452388.5 0.41223 5.54815 -32203312.8 0.00076 0.00066 4.0 0.000 0.000 0.000 +2452389.5 0.44882 5.54666 -32204586.6 0.00076 0.00066 4.0 0.000 0.000 0.000 +2452390.5 0.48633 5.54488 -32205993.8 0.00078 0.00069 3.7 0.000 0.000 0.000 +2452391.5 0.52521 5.54098 -32207365.4 0.00059 0.00073 6.3 0.000 0.000 0.000 +2452392.5 0.56214 5.53539 -32208533.1 0.00067 0.00098 6.0 0.000 0.000 0.000 +2452393.5 0.59902 5.53037 -32209407.4 0.00068 0.00098 6.0 0.000 0.000 0.000 +2452394.5 0.63464 5.52628 -32209995.7 0.00058 0.00099 6.1 0.000 0.000 0.000 +2452395.5 0.66770 5.52581 -32210329.1 0.00059 0.00099 5.5 0.000 0.000 0.000 +2452396.5 0.69975 5.52429 -32210553.1 0.00057 0.00095 5.5 0.000 0.000 0.000 +2452397.5 0.73295 5.52116 -32210753.8 0.00052 0.00090 4.1 0.000 0.000 0.000 +2452398.5 0.76882 5.51991 -32210991.9 0.00043 0.00056 3.7 0.000 0.000 0.000 +2452399.5 0.80655 5.51930 -32211362.9 0.00051 0.00052 4.4 0.000 0.000 0.000 +2452400.5 0.84628 5.51774 -32211910.8 0.00056 0.00048 5.2 0.000 0.000 0.000 +2452401.5 0.88546 5.51389 -32212616.1 0.00060 0.00048 5.5 0.000 0.000 0.000 +2452402.5 0.91569 5.50877 -32213446.1 0.00056 0.00050 5.3 0.000 0.000 0.000 +2452403.5 0.94250 5.50076 -32214360.5 0.00059 0.00051 5.2 0.000 0.000 0.000 +2452404.5 0.97646 5.49314 -32215327.2 0.00059 0.00052 5.1 0.000 0.000 0.000 +2452405.5 1.01076 5.49010 -32216293.7 0.00061 0.00052 6.0 0.000 0.000 0.000 +2452406.5 1.03924 5.48545 -32217196.1 0.00071 0.00060 5.8 0.000 0.000 0.000 +2452407.5 1.06773 5.47827 -32218011.7 0.00072 0.00063 8.6 0.000 0.000 0.000 +2452408.5 1.09828 5.46976 -32218728.9 0.00105 0.00060 8.1 0.000 0.000 0.000 +2452409.5 1.12012 5.45768 -32219316.6 0.00103 0.00055 6.9 0.000 0.000 0.000 +2452410.5 1.14381 5.44209 -32219855.9 0.00097 0.00055 6.9 0.000 0.000 0.000 +2452411.5 1.16544 5.42611 -32220351.4 0.00092 0.00054 6.0 0.000 0.000 0.000 +2452412.5 1.19087 5.41425 -32220863.4 0.00062 0.00045 4.1 0.000 0.000 0.000 +2452413.5 1.21986 5.40673 -32221539.6 0.00062 0.00044 2.8 0.000 0.000 0.000 +2452414.5 1.25209 5.40154 -32222449.0 0.00040 0.00035 2.3 0.000 0.000 0.000 +2452415.5 1.28378 5.39657 -32223619.3 0.00037 0.00033 1.9 0.000 0.000 0.000 +2452416.5 1.31155 5.38993 -32224988.0 0.00049 0.00050 2.0 0.000 0.000 0.000 +2452417.5 1.33616 5.38143 -32226416.8 0.00045 0.00049 2.0 0.000 0.000 0.000 +2452418.5 1.35826 5.37249 -32227797.8 0.00043 0.00049 2.0 0.000 0.000 0.000 +2452419.5 1.38179 5.36216 -32229003.8 0.00036 0.00048 2.6 0.000 0.000 0.000 +2452420.5 1.40463 5.35136 -32229921.6 0.00034 0.00055 2.4 0.000 0.000 0.000 +2452421.5 1.43111 5.33977 -32230523.8 0.00051 0.00060 2.7 0.000 0.000 0.000 +2452422.5 1.46201 5.32847 -32230849.8 0.00046 0.00049 3.1 0.000 0.000 0.000 +2452423.5 1.48926 5.31536 -32230982.2 0.00049 0.00047 3.1 0.000 0.000 0.000 +2452424.5 1.51867 5.30194 -32231022.8 0.00049 0.00047 3.1 0.000 0.000 0.000 +2452425.5 1.54666 5.28719 -32231061.4 0.00052 0.00051 3.2 0.000 0.000 0.000 +2452426.5 1.57260 5.27187 -32231115.6 0.00051 0.00049 3.1 0.000 0.000 0.000 +2452427.5 1.59760 5.25462 -32231221.0 0.00052 0.00059 3.2 0.000 0.000 0.000 +2452428.5 1.62420 5.23575 -32231385.0 0.00051 0.00059 3.0 0.000 0.000 0.000 +2452429.5 1.65137 5.21990 -32231601.1 0.00048 0.00055 2.9 0.000 0.000 0.000 +2452430.5 1.68236 5.20309 -32231816.8 0.00074 0.00054 2.9 0.000 0.000 0.000 +2452431.5 1.71420 5.18637 -32231935.8 0.00075 0.00054 2.9 0.000 0.000 0.000 +2452432.5 1.74120 5.16921 -32231952.7 0.00081 0.00075 3.1 0.000 0.000 0.000 +2452433.5 1.77640 5.15267 -32231865.6 0.00075 0.00060 4.9 0.000 0.000 0.000 +2452434.5 1.80647 5.13652 -32231637.3 0.00078 0.00062 4.6 0.000 0.000 0.000 +2452435.5 1.83536 5.11983 -32231255.8 0.00090 0.00067 6.8 0.000 0.000 0.000 +2452436.5 1.86083 5.10086 -32230725.6 0.00081 0.00077 8.5 0.000 0.000 0.000 +2452437.5 1.88430 5.08001 -32230069.3 0.00085 0.00080 8.3 0.000 0.000 0.000 +2452438.5 1.90966 5.05890 -32229389.6 0.00083 0.00065 8.2 0.000 0.000 0.000 +2452439.5 1.93081 5.04188 -32228700.7 0.00086 0.00071 8.1 0.000 0.000 0.000 +2452440.5 1.95893 5.02376 -32228184.9 0.00082 0.00071 10.5 0.000 0.000 0.000 +2452441.5 1.99056 5.00297 -32227907.9 0.00072 0.00063 7.2 0.000 0.000 0.000 +2452442.5 2.02222 4.97962 -32227893.0 0.00052 0.00062 7.8 0.000 0.000 0.000 +2452443.5 2.04831 4.95542 -32228080.1 0.00041 0.00055 8.2 0.000 0.000 0.000 +2452444.5 2.07400 4.93018 -32228358.9 0.00051 0.00068 8.0 0.000 0.000 0.000 +2452445.5 2.10134 4.90760 -32228683.0 0.00052 0.00066 7.9 0.000 0.000 0.000 +2452446.5 2.12480 4.88976 -32228987.2 0.00055 0.00064 7.2 0.000 0.000 0.000 +2452447.5 2.14570 4.86914 -32229218.2 0.00054 0.00080 8.8 0.000 0.000 0.000 +2452448.5 2.16543 4.84573 -32229302.0 0.00061 0.00075 5.4 0.000 0.000 0.000 +2452449.5 2.18220 4.82045 -32229244.6 0.00057 0.00074 4.4 0.000 0.000 0.000 +2452450.5 2.19493 4.79302 -32229109.8 0.00047 0.00056 3.6 0.000 0.000 0.000 +2452451.5 2.20860 4.76470 -32228962.5 0.00053 0.00048 3.8 0.000 0.000 0.000 +2452452.5 2.22500 4.73429 -32228827.8 0.00050 0.00048 3.8 0.000 0.000 0.000 +2452453.5 2.24480 4.70372 -32228776.7 0.00049 0.00041 3.4 0.000 0.000 0.000 +2452454.5 2.25979 4.67441 -32228835.2 0.00042 0.00030 3.2 0.000 0.000 0.000 +2452455.5 2.27150 4.64692 -32228968.9 0.00056 0.00035 2.5 0.000 0.000 0.000 +2452456.5 2.28090 4.61767 -32229206.4 0.00056 0.00040 2.7 0.000 0.000 0.000 +2452457.5 2.28675 4.58615 -32229563.6 0.00050 0.00045 2.4 0.000 0.000 0.000 +2452458.5 2.29483 4.55852 -32230011.1 0.00054 0.00050 2.5 0.000 0.000 0.000 +2452459.5 2.29935 4.52900 -32230429.4 0.00056 0.00050 2.5 0.000 0.000 0.000 +2452460.5 2.30331 4.49824 -32230786.0 0.00055 0.00047 2.5 0.000 0.000 0.000 +2452461.5 2.30819 4.46530 -32231026.6 0.00042 0.00056 4.0 0.000 0.000 0.000 +2452462.5 2.31544 4.43063 -32231122.7 0.00033 0.00064 3.4 0.000 0.000 0.000 +2452463.5 2.32363 4.39761 -32231079.4 0.00037 0.00096 6.2 0.000 0.000 0.000 +2452464.5 2.33107 4.36494 -32230914.0 0.00043 0.00090 6.0 0.000 0.000 0.000 +2452465.5 2.34042 4.33322 -32230667.9 0.00040 0.00093 5.8 0.000 0.000 0.000 +2452466.5 2.35483 4.30458 -32230390.5 0.00040 0.00093 5.8 0.000 0.000 0.000 +2452467.5 2.36741 4.27594 -32230168.7 0.00037 0.00091 5.6 0.000 0.000 0.000 +2452468.5 2.38127 4.24625 -32230184.2 0.00045 0.00081 6.8 0.000 0.000 0.000 +2452469.5 2.39173 4.21560 -32230434.1 0.00063 0.00053 5.1 0.000 0.000 0.000 +2452470.5 2.40200 4.18503 -32230894.4 0.00061 0.00040 6.4 0.000 0.000 0.000 +2452471.5 2.41192 4.15700 -32231472.8 0.00066 0.00037 6.0 0.000 0.000 0.000 +2452472.5 2.41886 4.12979 -32232046.6 0.00062 0.00043 5.0 0.000 0.000 0.000 +2452473.5 2.42886 4.10539 -32232515.3 0.00069 0.00044 5.0 0.000 0.000 0.000 +2452474.5 2.44022 4.08354 -32232806.4 0.00068 0.00041 4.9 0.000 0.000 0.000 +2452475.5 2.44302 4.05810 -32232825.6 0.00055 0.00045 5.2 0.000 0.000 0.000 +2452476.5 2.44748 4.02920 -32232549.4 0.00064 0.00054 3.4 0.000 0.000 0.000 +2452477.5 2.45501 3.99944 -32232043.2 0.00067 0.00060 3.4 0.000 0.000 0.000 +2452478.5 2.46123 3.97050 -32231399.6 0.00050 0.00064 2.9 0.000 0.000 0.000 +2452479.5 2.46672 3.94290 -32230692.2 0.00063 0.00071 2.9 0.000 0.000 0.000 +2452480.5 2.46906 3.91384 -32229987.9 0.00063 0.00074 3.0 0.000 0.000 0.000 +2452481.5 2.46750 3.88072 -32229406.0 0.00068 0.00069 3.0 0.000 0.000 0.000 +2452482.5 2.46826 3.84541 -32228964.2 0.00061 0.00072 2.7 0.000 0.000 0.000 +2452483.5 2.47102 3.80787 -32228655.4 0.00068 0.00076 2.5 0.000 0.000 0.000 +2452484.5 2.47625 3.77005 -32228457.0 0.00080 0.00076 3.0 0.000 0.000 0.000 +2452485.5 2.48465 3.73314 -32228299.5 0.00054 0.00067 2.9 0.000 0.000 0.000 +2452486.5 2.49772 3.70037 -32228105.9 0.00055 0.00075 2.5 0.000 0.000 0.000 +2452487.5 2.51200 3.67043 -32227846.4 0.00055 0.00072 2.5 0.000 0.000 0.000 +2452488.5 2.52214 3.64305 -32227511.9 0.00059 0.00067 2.5 0.000 0.000 0.000 +2452489.5 2.52956 3.61743 -32227097.3 0.00045 0.00041 4.2 0.000 0.000 0.000 +2452490.5 2.53926 3.59175 -32226556.4 0.00054 0.00054 3.8 0.000 0.000 0.000 +2452491.5 2.54930 3.56520 -32225891.8 0.00055 0.00053 3.6 0.000 0.000 0.000 +2452492.5 2.55638 3.53614 -32225160.3 0.00053 0.00054 4.0 0.000 0.000 0.000 +2452493.5 2.56731 3.50425 -32224444.6 0.00055 0.00068 3.8 0.000 0.000 0.000 +2452494.5 2.57863 3.47605 -32223856.0 0.00050 0.00068 3.8 0.000 0.000 0.000 +2452495.5 2.59018 3.45098 -32223511.1 0.00051 0.00071 3.2 0.000 0.000 0.000 +2452496.5 2.59886 3.42448 -32223477.4 0.00040 0.00065 5.3 0.000 0.000 0.000 +2452497.5 2.60392 3.39887 -32223737.3 0.00055 0.00080 5.7 0.000 0.000 0.000 +2452498.5 2.60498 3.37039 -32224218.1 0.00057 0.00081 5.6 0.000 0.000 0.000 +2452499.5 2.60692 3.33841 -32224797.3 0.00060 0.00067 6.5 0.000 0.000 0.000 +2452500.5 2.60833 3.31054 -32225321.2 0.00066 0.00060 6.2 0.000 0.000 0.000 +2452501.5 2.60779 3.28362 -32225701.9 0.00076 0.00060 6.3 0.000 0.000 0.000 +2452502.5 2.60545 3.25792 -32225859.3 0.00071 0.00060 4.8 0.000 0.000 0.000 +2452503.5 2.60234 3.23170 -32225780.1 0.00064 0.00040 4.9 0.000 0.000 0.000 +2452504.5 2.59733 3.20481 -32225523.9 0.00064 0.00048 3.9 0.000 0.000 0.000 +2452505.5 2.59111 3.17741 -32225163.9 0.00058 0.00044 4.6 0.000 0.000 0.000 +2452506.5 2.58508 3.14915 -32224774.4 0.00059 0.00047 4.1 0.000 0.000 0.000 +2452507.5 2.57799 3.11915 -32224439.8 0.00052 0.00050 3.9 0.000 0.000 0.000 +2452508.5 2.57206 3.08829 -32224267.6 0.00051 0.00050 3.9 0.000 0.000 0.000 +2452509.5 2.56797 3.05581 -32224266.7 0.00051 0.00045 3.6 0.000 0.000 0.000 +2452510.5 2.56227 3.02270 -32224353.7 0.00040 0.00030 4.5 0.000 0.000 0.000 +2452511.5 2.55528 2.98870 -32224556.7 0.00041 0.00044 3.5 0.000 0.000 0.000 +2452512.5 2.54863 2.95365 -32224842.4 0.00039 0.00043 3.5 0.000 0.000 0.000 +2452513.5 2.54468 2.91909 -32225162.1 0.00040 0.00051 3.4 0.000 0.000 0.000 +2452514.5 2.54534 2.88648 -32225468.6 0.00033 0.00053 3.1 0.000 0.000 0.000 +2452515.5 2.54524 2.85591 -32225703.6 0.00036 0.00053 3.2 0.000 0.000 0.000 +2452516.5 2.54096 2.82504 -32225814.1 0.00033 0.00058 3.0 0.000 0.000 0.000 +2452517.5 2.53550 2.79387 -32225790.9 0.00028 0.00059 3.4 0.000 0.000 0.000 +2452518.5 2.52761 2.76251 -32225653.6 0.00028 0.00060 4.7 0.000 0.000 0.000 +2452519.5 2.51583 2.73050 -32225428.1 0.00042 0.00063 5.5 0.000 0.000 0.000 +2452520.5 2.50134 2.69884 -32225167.6 0.00052 0.00070 6.7 0.000 0.000 0.000 +2452521.5 2.48958 2.66871 -32224973.9 0.00054 0.00066 6.4 0.000 0.000 0.000 +2452522.5 2.48308 2.63855 -32224952.8 0.00058 0.00068 6.4 0.000 0.000 0.000 +2452523.5 2.47363 2.60888 -32225158.7 0.00064 0.00059 6.2 0.000 0.000 0.000 +2452524.5 2.46207 2.58223 -32225689.7 0.00078 0.00064 5.7 0.000 0.000 0.000 +2452525.5 2.44628 2.55853 -32226539.0 0.00075 0.00047 5.6 0.000 0.000 0.000 +2452526.5 2.42768 2.53396 -32227564.9 0.00070 0.00041 5.6 0.000 0.000 0.000 +2452527.5 2.41041 2.50771 -32228580.0 0.00074 0.00074 6.2 0.000 0.000 0.000 +2452528.5 2.39277 2.48222 -32229408.5 0.00075 0.00075 5.2 0.000 0.000 0.000 +2452529.5 2.37447 2.45638 -32229958.4 0.00068 0.00075 5.2 0.000 0.000 0.000 +2452530.5 2.35732 2.42976 -32230288.5 0.00062 0.00069 5.1 0.000 0.000 0.000 +2452531.5 2.34200 2.39892 -32230426.4 0.00049 0.00073 3.8 0.000 0.000 0.000 +2452532.5 2.32877 2.37005 -32230432.7 0.00048 0.00070 2.8 0.000 0.000 0.000 +2452533.5 2.31671 2.34730 -32230393.3 0.00046 0.00049 2.9 0.000 0.000 0.000 +2452534.5 2.30139 2.32802 -32230370.1 0.00044 0.00039 3.3 0.000 0.000 0.000 +2452535.5 2.27997 2.31043 -32230397.1 0.00045 0.00039 3.6 0.000 0.000 0.000 +2452536.5 2.25297 2.29348 -32230517.7 0.00045 0.00036 3.6 0.000 0.000 0.000 +2452537.5 2.22321 2.27375 -32230747.7 0.00045 0.00037 3.4 0.000 0.000 0.000 +2452538.5 2.19440 2.25161 -32231079.5 0.00041 0.00036 4.9 0.000 0.000 0.000 +2452539.5 2.16750 2.22899 -32231489.8 0.00051 0.00050 4.2 0.000 0.000 0.000 +2452540.5 2.14373 2.20559 -32231940.8 0.00050 0.00050 5.4 0.000 0.000 0.000 +2452541.5 2.12105 2.17944 -32232384.7 0.00045 0.00053 4.5 0.000 0.000 0.000 +2452542.5 2.10457 2.15643 -32232755.2 0.00047 0.00060 4.8 0.000 0.000 0.000 +2452543.5 2.08772 2.13297 -32233003.9 0.00051 0.00059 4.8 0.000 0.000 0.000 +2452544.5 2.06780 2.11039 -32233103.1 0.00049 0.00060 4.5 0.000 0.000 0.000 +2452545.5 2.04750 2.08668 -32233144.6 0.00034 0.00052 5.0 0.000 0.000 0.000 +2452546.5 2.02682 2.06085 -32233066.0 0.00043 0.00058 4.1 0.000 0.000 0.000 +2452547.5 2.00597 2.03384 -32232912.6 0.00049 0.00058 6.8 0.000 0.000 0.000 +2452548.5 1.98435 2.00642 -32232783.2 0.00053 0.00053 5.2 0.000 0.000 0.000 +2452549.5 1.96569 1.98296 -32232802.1 0.00055 0.00057 4.5 0.000 0.000 0.000 +2452550.5 1.94664 1.95892 -32233001.3 0.00053 0.00059 4.5 0.000 0.000 0.000 +2452551.5 1.92457 1.93664 -32233454.2 0.00050 0.00053 4.2 0.000 0.000 0.000 +2452552.5 1.89859 1.91571 -32234255.5 0.00047 0.00046 5.1 0.000 0.000 0.000 +2452553.5 1.87318 1.89501 -32235306.7 0.00042 0.00053 3.7 0.000 0.000 0.000 +2452554.5 1.84956 1.87394 -32236457.1 0.00051 0.00066 4.2 0.000 0.000 0.000 +2452555.5 1.82527 1.85208 -32237533.0 0.00046 0.00070 5.3 0.000 0.000 0.000 +2452556.5 1.80041 1.82873 -32238403.3 0.00055 0.00067 4.8 0.000 0.000 0.000 +2452557.5 1.77941 1.80874 -32239008.3 0.00056 0.00067 4.9 0.000 0.000 0.000 +2452558.5 1.75529 1.78940 -32239363.1 0.00057 0.00064 5.0 0.000 0.000 0.000 +2452559.5 1.73131 1.77089 -32239540.2 0.00067 0.00062 5.7 0.000 0.000 0.000 +2452560.5 1.70918 1.75265 -32239656.7 0.00055 0.00054 3.8 0.000 0.000 0.000 +2452561.5 1.68486 1.73608 -32239821.7 0.00055 0.00070 5.5 0.000 0.000 0.000 +2452562.5 1.65857 1.71730 -32240091.2 0.00049 0.00064 5.3 0.000 0.000 0.000 +2452563.5 1.63389 1.70329 -32240482.9 0.00053 0.00062 4.3 0.000 0.000 0.000 +2452564.5 1.61188 1.69066 -32241016.3 0.00053 0.00058 3.7 0.000 0.000 0.000 +2452565.5 1.58400 1.68010 -32241696.2 0.00053 0.00057 3.4 0.000 0.000 0.000 +2452566.5 1.54528 1.66894 -32242429.8 0.00049 0.00051 3.9 0.000 0.000 0.000 +2452567.5 1.50249 1.65601 -32243189.1 0.00047 0.00045 3.0 0.000 0.000 0.000 +2452568.5 1.46615 1.64065 -32243945.6 0.00056 0.00047 3.2 0.000 0.000 0.000 +2452569.5 1.43152 1.62785 -32244676.7 0.00054 0.00052 3.4 0.000 0.000 0.000 +2452570.5 1.39892 1.61503 -32245347.5 0.00054 0.00057 3.5 0.000 0.000 0.000 +2452571.5 1.36559 1.60240 -32245909.0 0.00056 0.00065 3.6 0.000 0.000 0.000 +2452572.5 1.32963 1.58562 -32246336.0 0.00059 0.00065 3.1 0.000 0.000 0.000 +2452573.5 1.29483 1.56881 -32246628.8 0.00059 0.00064 3.0 0.000 0.000 0.000 +2452574.5 1.25830 1.55390 -32246846.2 0.00049 0.00067 2.9 0.000 0.000 0.000 +2452575.5 1.22281 1.54214 -32247029.3 0.00045 0.00060 2.9 0.000 0.000 0.000 +2452576.5 1.18733 1.53074 -32247203.4 0.00043 0.00050 2.7 0.000 0.000 0.000 +2452577.5 1.15382 1.52344 -32247516.4 0.00042 0.00042 2.6 0.000 0.000 0.000 +2452578.5 1.11558 1.51649 -32248081.4 0.00040 0.00041 2.6 0.000 0.000 0.000 +2452579.5 1.07460 1.50921 -32248920.0 0.00041 0.00037 2.7 0.000 0.000 0.000 +2452580.5 1.03555 1.50188 -32250021.7 0.00058 0.00053 4.6 0.000 0.000 0.000 +2452581.5 0.99867 1.49581 -32251263.0 0.00070 0.00076 4.9 0.000 0.000 0.000 +2452582.5 0.96367 1.49123 -32252491.0 0.00098 0.00092 5.8 0.000 0.000 0.000 +2452583.5 0.92458 1.48280 -32253586.6 0.00103 0.00102 8.0 0.000 0.000 0.000 +2452584.5 0.88993 1.47764 -32254400.1 0.00093 0.00097 7.2 0.000 0.000 0.000 +2452585.5 0.84737 1.47039 -32254977.3 0.00092 0.00097 7.1 0.000 0.000 0.000 +2452586.5 0.80609 1.46366 -32255326.2 0.00091 0.00104 6.4 0.000 0.000 0.000 +2452587.5 0.76657 1.45597 -32255526.3 0.00088 0.00075 5.9 0.000 0.000 0.000 +2452588.5 0.72796 1.45069 -32255625.3 0.00055 0.00074 5.0 0.000 0.000 0.000 +2452589.5 0.69208 1.44709 -32255733.3 0.00055 0.00072 5.6 0.000 0.000 0.000 +2452590.5 0.65869 1.44437 -32255923.0 0.00057 0.00077 5.6 0.000 0.000 0.000 +2452591.5 0.62935 1.44047 -32256253.1 0.00074 0.00080 5.0 0.000 0.000 0.000 +2452592.5 0.59966 1.43904 -32256744.6 0.00071 0.00079 5.0 0.000 0.000 0.000 +2452593.5 0.56309 1.43871 -32257338.0 0.00067 0.00082 4.9 0.000 0.000 0.000 +2452594.5 0.52988 1.43851 -32257978.4 0.00072 0.00094 7.3 0.000 0.000 0.000 +2452595.5 0.49736 1.43802 -32258628.2 0.00071 0.00106 5.7 0.000 0.000 0.000 +2452596.5 0.46271 1.43361 -32259240.3 0.00075 0.00109 6.3 0.000 0.000 0.000 +2452597.5 0.42673 1.42701 -32259766.9 0.00066 0.00111 7.2 0.000 0.000 0.000 +2452598.5 0.39028 1.42277 -32260139.5 0.00068 0.00100 6.6 0.000 0.000 0.000 +2452599.5 0.35648 1.41842 -32260380.6 0.00069 0.00099 6.6 0.000 0.000 0.000 +2452600.5 0.32387 1.41636 -32260572.3 0.00070 0.00086 6.2 0.000 0.000 0.000 +2452601.5 0.29460 1.41902 -32260733.0 0.00060 0.00056 6.7 0.000 0.000 0.000 +2452602.5 0.26283 1.42116 -32260892.9 0.00057 0.00061 4.7 0.000 0.000 0.000 +2452603.5 0.23151 1.42269 -32261144.0 0.00053 0.00060 4.2 0.000 0.000 0.000 +2452604.5 0.20424 1.42308 -32261565.6 0.00036 0.00058 4.2 0.000 0.000 0.000 +2452605.5 0.17707 1.42169 -32262211.5 0.00038 0.00056 4.2 0.000 0.000 0.000 +2452606.5 0.14603 1.41865 -32263129.8 0.00038 0.00055 4.2 0.000 0.000 0.000 +2452607.5 0.11108 1.41703 -32264283.7 0.00038 0.00058 4.1 0.000 0.000 0.000 +2452608.5 0.07584 1.41581 -32265629.3 0.00035 0.00061 6.7 0.000 0.000 0.000 +2452609.5 0.04195 1.41378 -32267052.9 0.00043 0.00057 2.3 0.000 0.000 0.000 +2452610.5 0.00981 1.41372 -32268407.8 0.00043 0.00064 2.8 0.000 0.000 0.000 +2452611.5 -0.02183 1.41563 -32269566.0 0.00055 0.00082 5.0 0.000 0.000 0.000 +2452612.5 -0.05185 1.42379 -32270447.8 0.00058 0.00082 4.6 0.000 0.000 0.000 +2452613.5 -0.08405 1.43265 -32271056.6 0.00060 0.00080 4.6 0.000 0.000 0.000 +2452614.5 -0.12355 1.44404 -32271423.6 0.00066 0.00078 4.6 0.000 0.000 0.000 +2452615.5 -0.16715 1.45735 -32271739.6 0.00076 0.00076 6.8 0.000 0.000 0.000 +2452616.5 -0.20883 1.46906 -32272120.9 0.00062 0.00092 5.6 0.000 0.000 0.000 +2452617.5 -0.24264 1.47934 -32272641.2 0.00055 0.00096 6.5 0.000 0.000 0.000 +2452618.5 -0.27094 1.49225 -32273335.7 0.00052 0.00066 5.0 0.000 0.000 0.000 +2452619.5 -0.30092 1.50821 -32274190.7 0.00054 0.00068 4.9 0.000 0.000 0.000 +2452620.5 -0.32905 1.52450 -32275185.6 0.00054 0.00070 4.9 0.000 0.000 0.000 +2452621.5 -0.36516 1.53840 -32276197.3 0.00056 0.00074 4.8 0.000 0.000 0.000 +2452622.5 -0.40130 1.55098 -32277257.2 0.00058 0.00064 6.3 0.000 0.000 0.000 +2452623.5 -0.44165 1.56102 -32278259.5 0.00055 0.00084 5.7 0.000 0.000 0.000 +2452624.5 -0.48080 1.56866 -32279142.9 0.00063 0.00091 6.4 0.000 0.000 0.000 +2452625.5 -0.51618 1.57471 -32279866.2 0.00048 0.00096 6.3 0.000 0.000 0.000 +2452626.5 -0.54552 1.58694 -32280432.4 0.00068 0.00091 5.8 0.000 0.000 0.000 +2452627.5 -0.56945 1.60080 -32280806.8 0.00064 0.00092 6.0 0.000 0.000 0.000 +2452628.5 -0.59142 1.61971 -32281029.5 0.00061 0.00082 5.5 0.000 0.000 0.000 +2452629.5 -0.61579 1.64281 -32281210.0 0.00055 0.00047 5.8 0.000 0.000 0.000 +2452630.5 -0.64254 1.66638 -32281387.0 0.00063 0.00043 6.2 0.000 0.000 0.000 +2452631.5 -0.66753 1.68843 -32281638.4 0.00059 0.00046 6.1 0.000 0.000 0.000 +2452632.5 -0.69099 1.71071 -32282081.1 0.00042 0.00042 21.2 0.000 0.000 0.000 +2452633.5 -0.71643 1.73350 -32282800.1 0.00041 0.00039 18.0 0.000 0.000 0.000 +2452634.5 -0.74198 1.75330 -32283764.8 0.00041 0.00034 16.6 0.000 0.000 0.000 +2452635.5 -0.76487 1.77057 -32284896.0 0.00044 0.00026 7.2 0.000 0.000 0.000 +2452636.5 -0.78744 1.79057 -32286082.3 0.00059 0.00039 9.2 0.000 0.000 0.000 +2452637.5 -0.81135 1.81314 -32287207.5 0.00060 0.00050 6.7 0.000 0.000 0.000 +2452638.5 -0.83420 1.83452 -32288164.9 0.00058 0.00051 6.8 0.000 0.000 0.000 +2452639.5 -0.85582 1.85810 -32288901.2 0.00075 0.00050 5.8 0.000 0.000 0.000 +2452640.5 -0.88501 1.88134 -32289427.6 0.00087 0.00054 5.0 0.000 0.000 0.000 +2452641.5 -0.91520 1.90448 -32289784.7 0.00081 0.00054 5.0 0.000 0.000 0.000 +2452642.5 -0.94530 1.92879 -32290090.5 0.00063 0.00051 5.0 0.000 0.000 0.000 +2452643.5 -0.97542 1.95383 -32290429.8 0.00065 0.00044 5.5 0.000 0.000 0.000 +2452644.5 -1.00670 1.97600 -32290811.2 0.00059 0.00045 5.0 0.000 0.000 0.000 +2452645.5 -1.03493 1.99513 -32291324.0 0.00061 0.00044 5.1 0.000 0.000 0.000 +2452646.5 -1.05914 2.01362 -32292018.8 0.00043 0.00043 4.7 0.000 0.000 0.000 +2452647.5 -1.08605 2.03524 -32292840.1 0.00049 0.00045 4.7 0.000 0.000 0.000 +2452648.5 -1.11062 2.05706 -32293714.2 0.00052 0.00044 4.7 0.000 0.000 0.000 +2452649.5 -1.13227 2.08079 -32294625.0 0.00046 0.00043 4.8 0.000 0.000 0.000 +2452650.5 -1.15259 2.10536 -32295555.4 0.00036 0.00038 5.2 0.000 0.000 0.000 +2452651.5 -1.17284 2.12829 -32296459.3 0.00031 0.00038 4.4 0.000 0.000 0.000 +2452652.5 -1.18991 2.14958 -32297253.6 0.00036 0.00036 4.5 0.000 0.000 0.000 +2452653.5 -1.20317 2.17049 -32297902.8 0.00035 0.00046 4.6 0.000 0.000 0.000 +2452654.5 -1.21675 2.19344 -32298409.5 0.00033 0.00044 3.9 0.000 0.000 0.000 +2452655.5 -1.22804 2.21832 -32298761.1 0.00035 0.00041 3.5 0.000 0.000 0.000 +2452656.5 -1.24294 2.24231 -32298994.3 0.00038 0.00040 2.9 0.000 0.000 0.000 +2452657.5 -1.26044 2.26707 -32299202.6 0.00045 0.00041 3.7 0.000 0.000 0.000 +2452658.5 -1.27670 2.29009 -32299484.5 0.00043 0.00045 3.9 0.000 0.000 0.000 +2452659.5 -1.28870 2.31228 -32299895.2 0.00038 0.00050 4.3 0.000 0.000 0.000 +2452660.5 -1.29937 2.33676 -32300451.6 0.00051 0.00061 6.7 0.000 0.000 0.000 +2452661.5 -1.31003 2.36554 -32301157.6 0.00056 0.00068 7.2 0.000 0.000 0.000 +2452662.5 -1.32217 2.39780 -32301979.7 0.00052 0.00070 7.9 0.000 0.000 0.000 +2452663.5 -1.33564 2.42593 -32302861.3 0.00049 0.00071 7.6 0.000 0.000 0.000 +2452664.5 -1.35141 2.45004 -32303753.6 0.00051 0.00067 7.3 0.000 0.000 0.000 +2452665.5 -1.36789 2.47240 -32304515.5 0.00049 0.00053 5.9 0.000 0.000 0.000 +2452666.5 -1.38123 2.49579 -32305042.3 0.00042 0.00044 5.3 0.000 0.000 0.000 +2452667.5 -1.38989 2.52305 -32305321.7 0.00037 0.00042 4.9 0.000 0.000 0.000 +2452668.5 -1.39266 2.55286 -32305400.0 0.00049 0.00043 4.3 0.000 0.000 0.000 +2452669.5 -1.39475 2.58417 -32305388.8 0.00051 0.00043 4.3 0.000 0.000 0.000 +2452670.5 -1.39791 2.61490 -32305353.0 0.00051 0.00044 3.9 0.000 0.000 0.000 +2452671.5 -1.41152 2.64257 -32305337.7 0.00059 0.00065 5.7 0.000 0.000 0.000 +2452672.5 -1.42639 2.66986 -32305421.3 0.00061 0.00072 4.7 0.000 0.000 0.000 +2452673.5 -1.44124 2.69848 -32305683.2 0.00075 0.00076 4.0 0.000 0.000 0.000 +2452674.5 -1.45228 2.72597 -32306172.7 0.00062 0.00079 3.6 0.000 0.000 0.000 +2452675.5 -1.46057 2.75518 -32306868.7 0.00059 0.00074 3.5 0.000 0.000 0.000 +2452676.5 -1.47313 2.78137 -32307645.8 0.00056 0.00075 3.6 0.000 0.000 0.000 +2452677.5 -1.48423 2.80591 -32308424.6 0.00054 0.00067 3.5 0.000 0.000 0.000 +2452678.5 -1.49664 2.83387 -32309132.0 0.00055 0.00061 4.1 0.000 0.000 0.000 +2452679.5 -1.51301 2.86143 -32309734.0 0.00036 0.00063 3.5 0.000 0.000 0.000 +2452680.5 -1.52946 2.88810 -32310225.2 0.00036 0.00061 4.0 0.000 0.000 0.000 +2452681.5 -1.54294 2.91500 -32310588.5 0.00048 0.00062 4.9 0.000 0.000 0.000 +2452682.5 -1.55362 2.94292 -32310842.3 0.00055 0.00057 4.5 0.000 0.000 0.000 +2452683.5 -1.55872 2.97050 -32311079.2 0.00057 0.00058 4.6 0.000 0.000 0.000 +2452684.5 -1.56088 2.99672 -32311372.8 0.00060 0.00055 4.6 0.000 0.000 0.000 +2452685.5 -1.56340 3.02327 -32311730.5 0.00059 0.00032 5.3 0.000 0.000 0.000 +2452686.5 -1.56299 3.04782 -32312182.3 0.00073 0.00039 4.9 0.000 0.000 0.000 +2452687.5 -1.55859 3.07262 -32312852.6 0.00062 0.00046 4.1 0.000 0.000 0.000 +2452688.5 -1.55320 3.10271 -32313786.1 0.00064 0.00049 3.1 0.000 0.000 0.000 +2452689.5 -1.54908 3.13687 -32314935.4 0.00071 0.00054 2.6 0.000 0.000 0.000 +2452690.5 -1.54781 3.17783 -32316186.1 0.00069 0.00051 2.5 0.000 0.000 0.000 +2452691.5 -1.55308 3.21565 -32317426.0 0.00071 0.00048 2.5 0.000 0.000 0.000 +2452692.5 -1.55472 3.24674 -32318517.8 0.00071 0.00045 3.3 0.000 0.000 0.000 +2452693.5 -1.55451 3.27595 -32319362.8 0.00070 0.00056 3.0 0.000 0.000 0.000 +2452694.5 -1.55120 3.30642 -32319957.5 0.00065 0.00054 3.1 0.000 0.000 0.000 +2452695.5 -1.54611 3.33692 -32320347.7 0.00047 0.00050 3.5 0.000 0.000 0.000 +2452696.5 -1.54634 3.36585 -32320605.7 0.00045 0.00053 3.8 0.000 0.000 0.000 +2452697.5 -1.54653 3.39505 -32320827.4 0.00045 0.00059 3.8 0.000 0.000 0.000 +2452698.5 -1.54372 3.42340 -32321061.6 0.00041 0.00060 3.2 0.000 0.000 0.000 +2452699.5 -1.53838 3.44848 -32321334.2 0.00023 0.00029 6.7 0.000 0.000 0.000 +2452700.5 -1.53195 3.47439 -32321728.5 0.00024 0.00031 4.3 0.000 0.000 0.000 +2452701.5 -1.52877 3.50401 -32322276.9 0.00024 0.00029 5.0 0.000 0.000 0.000 +2452702.5 -1.53089 3.53279 -32322933.9 0.00026 0.00025 5.2 0.000 0.000 0.000 +2452703.5 -1.53419 3.56041 -32323598.1 0.00036 0.00018 5.1 0.000 0.000 0.000 +2452704.5 -1.53760 3.58515 -32324283.6 0.00039 0.00018 5.1 0.000 0.000 0.000 +2452705.5 -1.54351 3.60986 -32324988.0 0.00038 0.00017 4.8 0.000 0.000 0.000 +2452706.5 -1.54531 3.63676 -32325633.8 0.00047 0.00020 5.9 0.000 0.000 0.000 +2452707.5 -1.54765 3.66538 -32326204.7 0.00044 0.00024 4.3 0.000 0.000 0.000 +2452708.5 -1.54908 3.69536 -32326699.2 0.00043 0.00029 4.1 0.000 0.000 0.000 +2452709.5 -1.55584 3.72567 -32327113.0 0.00042 0.00040 3.4 0.000 0.000 0.000 +2452710.5 -1.56434 3.75673 -32327441.0 0.00052 0.00041 3.4 0.000 0.000 0.000 +2452711.5 -1.57023 3.78912 -32327766.7 0.00054 0.00041 3.4 0.000 0.000 0.000 +2452712.5 -1.57688 3.81529 -32328121.7 0.00058 0.00041 3.2 0.000 0.000 0.000 +2452713.5 -1.57073 3.84211 -32328622.8 0.00065 0.00042 3.4 0.000 0.000 0.000 +2452714.5 -1.56940 3.87069 -32329353.5 0.00073 0.00040 2.8 0.000 0.000 0.000 +2452715.5 -1.56740 3.89960 -32330382.5 0.00078 0.00063 3.6 0.000 0.000 0.000 +2452716.5 -1.55933 3.92823 -32331706.4 0.00066 0.00065 3.2 0.000 0.000 0.000 +2452717.5 -1.54942 3.95873 -32333214.6 0.00064 0.00066 3.0 0.000 0.000 0.000 +2452718.5 -1.53872 3.99765 -32334755.0 0.00060 0.00065 2.9 0.000 0.000 0.000 +2452719.5 -1.53265 4.03716 -32336154.8 0.00057 0.00069 2.6 0.000 0.000 0.000 +2452720.5 -1.52319 4.06863 -32337291.2 0.00046 0.00083 2.6 0.000 0.000 0.000 +2452721.5 -1.51522 4.09788 -32338120.0 0.00051 0.00049 2.7 0.000 0.000 0.000 +2452722.5 -1.50574 4.12693 -32338663.1 0.00048 0.00048 2.8 0.000 0.000 0.000 +2452723.5 -1.48980 4.15638 -32339002.1 0.00039 0.00048 3.3 0.000 0.000 0.000 +2452724.5 -1.47576 4.18508 -32339243.2 0.00046 0.00058 3.3 0.000 0.000 0.000 +2452725.5 -1.45777 4.21411 -32339530.1 0.00046 0.00059 3.4 0.000 0.000 0.000 +2452726.5 -1.43450 4.24235 -32339935.6 0.00042 0.00052 3.3 0.000 0.000 0.000 +2452727.5 -1.40611 4.27084 -32340478.2 0.00039 0.00055 3.4 0.000 0.000 0.000 +2452728.5 -1.37878 4.30084 -32341174.1 0.00051 0.00054 3.5 0.000 0.000 0.000 +2452729.5 -1.35446 4.33031 -32342002.3 0.00048 0.00050 4.1 0.000 0.000 0.000 +2452730.5 -1.33251 4.35773 -32342918.9 0.00052 0.00036 3.6 0.000 0.000 0.000 +2452731.5 -1.31334 4.38795 -32343875.2 0.00052 0.00042 3.9 0.000 0.000 0.000 +2452732.5 -1.29093 4.41935 -32344858.8 0.00055 0.00043 3.9 0.000 0.000 0.000 +2452733.5 -1.27127 4.44877 -32345788.9 0.00055 0.00040 3.8 0.000 0.000 0.000 +2452734.5 -1.24626 4.47741 -32346602.8 0.00045 0.00035 3.9 0.000 0.000 0.000 +2452735.5 -1.22174 4.50958 -32347322.8 0.00053 0.00034 3.2 0.000 0.000 0.000 +2452736.5 -1.19823 4.54260 -32347915.9 0.00058 0.00046 4.2 0.000 0.000 0.000 +2452737.5 -1.17578 4.57193 -32348363.5 0.00064 0.00053 4.1 0.000 0.000 0.000 +2452738.5 -1.16235 4.59870 -32348696.3 0.00061 0.00056 4.1 0.000 0.000 0.000 +2452739.5 -1.14687 4.62543 -32349016.1 0.00060 0.00060 4.1 0.000 0.000 0.000 +2452740.5 -1.13536 4.65034 -32349410.4 0.00059 0.00059 4.1 0.000 0.000 0.000 +2452741.5 -1.11405 4.67711 -32349956.5 0.00064 0.00063 5.4 0.000 0.000 0.000 +2452742.5 -1.09396 4.70504 -32350756.9 0.00055 0.00041 2.9 0.000 0.000 0.000 +2452743.5 -1.07265 4.73083 -32351858.3 0.00048 0.00034 2.8 0.000 0.000 0.000 +2452744.5 -1.05221 4.75453 -32353221.1 0.00044 0.00038 3.7 0.000 0.000 0.000 +2452745.5 -1.03973 4.77615 -32354705.3 0.00048 0.00038 4.0 0.000 0.000 0.000 +2452746.5 -1.02238 4.79438 -32356126.6 0.00048 0.00039 5.3 0.000 0.000 0.000 +2452747.5 -1.00344 4.81407 -32357295.9 0.00046 0.00040 5.4 0.000 0.000 0.000 +2452748.5 -0.98107 4.83611 -32358153.0 0.00046 0.00051 11.3 0.000 0.000 0.000 +2452749.5 -0.95576 4.85878 -32358636.7 0.00059 0.00071 6.7 0.000 0.000 0.000 +2452750.5 -0.93126 4.87911 -32358822.3 0.00060 0.00085 7.1 0.000 0.000 0.000 +2452751.5 -0.90752 4.89718 -32358880.3 0.00056 0.00091 6.0 0.000 0.000 0.000 +2452752.5 -0.88598 4.91825 -32358912.2 0.00058 0.00089 4.5 0.000 0.000 0.000 +2452753.5 -0.86070 4.93877 -32359029.0 0.00056 0.00089 4.4 0.000 0.000 0.000 +2452754.5 -0.82832 4.96053 -32359289.0 0.00055 0.00083 2.5 0.000 0.000 0.000 +2452755.5 -0.80052 4.98196 -32359682.2 0.00051 0.00080 2.5 0.000 0.000 0.000 +2452756.5 -0.77680 5.00385 -32360228.4 0.00063 0.00068 1.9 0.000 0.000 0.000 +2452757.5 -0.75261 5.02596 -32360898.7 0.00065 0.00062 1.8 0.000 0.000 0.000 +2452758.5 -0.72942 5.04536 -32361644.8 0.00060 0.00057 1.7 0.000 0.000 0.000 +2452759.5 -0.70449 5.06368 -32362402.6 0.00057 0.00059 1.8 0.000 0.000 0.000 +2452760.5 -0.66881 5.08218 -32363094.2 0.00056 0.00058 2.0 0.000 0.000 0.000 +2452761.5 -0.63131 5.10049 -32363628.0 0.00054 0.00043 2.2 0.000 0.000 0.000 +2452762.5 -0.59457 5.11774 -32363973.2 0.00045 0.00040 3.9 0.000 0.000 0.000 +2452763.5 -0.56185 5.13628 -32364127.6 0.00041 0.00044 4.7 0.000 0.000 0.000 +2452764.5 -0.53248 5.15645 -32364114.4 0.00048 0.00043 6.6 0.000 0.000 0.000 +2452765.5 -0.50099 5.17681 -32364018.5 0.00064 0.00047 5.7 0.000 0.000 0.000 +2452766.5 -0.47174 5.19884 -32363916.5 0.00062 0.00067 5.2 0.000 0.000 0.000 +2452767.5 -0.44756 5.21907 -32363832.2 0.00066 0.00067 5.1 0.000 0.000 0.000 +2452768.5 -0.42313 5.23406 -32363905.6 0.00062 0.00065 4.8 0.000 0.000 0.000 +2452769.5 -0.39741 5.25215 -32364200.2 0.00061 0.00067 5.2 0.000 0.000 0.000 +2452770.5 -0.37764 5.26828 -32364730.8 0.00052 0.00061 3.5 0.000 0.000 0.000 +2452771.5 -0.36125 5.28144 -32365519.0 0.00046 0.00077 2.2 0.000 0.000 0.000 +2452772.5 -0.34475 5.29463 -32366553.9 0.00036 0.00063 2.8 0.000 0.000 0.000 +2452773.5 -0.32652 5.30782 -32367757.5 0.00033 0.00072 3.0 0.000 0.000 0.000 +2452774.5 -0.30520 5.32086 -32368942.0 0.00035 0.00073 3.3 0.000 0.000 0.000 +2452775.5 -0.28290 5.33424 -32369909.6 0.00036 0.00075 3.1 0.000 0.000 0.000 +2452776.5 -0.25978 5.34552 -32370540.4 0.00045 0.00088 6.5 0.000 0.000 0.000 +2452777.5 -0.23690 5.35667 -32370887.3 0.00043 0.00064 5.5 0.000 0.000 0.000 +2452778.5 -0.21355 5.36699 -32371057.4 0.00051 0.00059 5.5 0.000 0.000 0.000 +2452779.5 -0.18617 5.37721 -32371209.0 0.00054 0.00045 4.3 0.000 0.000 0.000 +2452780.5 -0.15407 5.38801 -32371425.3 0.00064 0.00043 3.9 0.000 0.000 0.000 +2452781.5 -0.12600 5.39887 -32371742.4 0.00064 0.00042 3.9 0.000 0.000 0.000 +2452782.5 -0.09863 5.40774 -32372197.8 0.00058 0.00035 3.3 0.000 0.000 0.000 +2452783.5 -0.07001 5.41171 -32372768.2 0.00061 0.00036 3.5 0.000 0.000 0.000 +2452784.5 -0.04103 5.41410 -32373413.3 0.00052 0.00052 3.4 0.000 0.000 0.000 +2452785.5 -0.01053 5.41727 -32374060.1 0.00053 0.00074 3.5 0.000 0.000 0.000 +2452786.5 0.02301 5.42176 -32374652.8 0.00052 0.00096 4.2 0.000 0.000 0.000 +2452787.5 0.05840 5.42797 -32375157.9 0.00072 0.00087 3.2 0.000 0.000 0.000 +2452788.5 0.09263 5.43790 -32375540.5 0.00080 0.00086 3.2 0.000 0.000 0.000 +2452789.5 0.12432 5.44706 -32375771.8 0.00072 0.00081 2.9 0.000 0.000 0.000 +2452790.5 0.15579 5.45745 -32375823.3 0.00071 0.00078 2.7 0.000 0.000 0.000 +2452791.5 0.18419 5.46636 -32375672.9 0.00063 0.00067 2.5 0.000 0.000 0.000 +2452792.5 0.21234 5.47299 -32375366.7 0.00064 0.00061 2.5 0.000 0.000 0.000 +2452793.5 0.24314 5.47851 -32374969.9 0.00037 0.00042 3.0 0.000 0.000 0.000 +2452794.5 0.27722 5.48054 -32374514.5 0.00039 0.00057 3.7 0.000 0.000 0.000 +2452795.5 0.31433 5.48081 -32374060.4 0.00044 0.00058 4.0 0.000 0.000 0.000 +2452796.5 0.34920 5.48017 -32373745.0 0.00044 0.00051 4.2 0.000 0.000 0.000 +2452797.5 0.38133 5.48016 -32373661.1 0.00034 0.00051 5.2 0.000 0.000 0.000 +2452798.5 0.41336 5.48054 -32373832.1 0.00064 0.00050 4.1 0.000 0.000 0.000 +2452799.5 0.44739 5.48121 -32374237.7 0.00066 0.00047 4.0 0.000 0.000 0.000 +2452800.5 0.48284 5.48226 -32374770.7 0.00072 0.00046 3.6 0.000 0.000 0.000 +2452801.5 0.51675 5.48260 -32375270.6 0.00073 0.00051 3.3 0.000 0.000 0.000 +2452802.5 0.55141 5.47955 -32375595.5 0.00073 0.00058 2.6 0.000 0.000 0.000 +2452803.5 0.58558 5.47400 -32375628.5 0.00073 0.00053 2.4 0.000 0.000 0.000 +2452804.5 0.62096 5.46888 -32375332.5 0.00037 0.00057 5.4 0.000 0.000 0.000 +2452805.5 0.65804 5.46370 -32374783.0 0.00052 0.00058 4.4 0.000 0.000 0.000 +2452806.5 0.69735 5.45787 -32374104.5 0.00051 0.00054 4.4 0.000 0.000 0.000 +2452807.5 0.74054 5.45278 -32373433.7 0.00069 0.00057 3.3 0.000 0.000 0.000 +2452808.5 0.78549 5.45061 -32372871.8 0.00067 0.00057 3.2 0.000 0.000 0.000 +2452809.5 0.82894 5.44955 -32372471.7 0.00068 0.00066 3.3 0.000 0.000 0.000 +2452810.5 0.87702 5.44731 -32372240.3 0.00069 0.00061 3.2 0.000 0.000 0.000 +2452811.5 0.91958 5.44583 -32372122.1 0.00069 0.00065 3.4 0.000 0.000 0.000 +2452812.5 0.95890 5.44284 -32372050.0 0.00078 0.00066 3.1 0.000 0.000 0.000 +2452813.5 0.99774 5.43815 -32371964.5 0.00063 0.00063 4.1 0.000 0.000 0.000 +2452814.5 1.03556 5.43195 -32371811.1 0.00057 0.00067 3.8 0.000 0.000 0.000 +2452815.5 1.07223 5.42690 -32371541.3 0.00062 0.00075 3.9 0.000 0.000 0.000 +2452816.5 1.10930 5.42275 -32371126.2 0.00058 0.00073 4.6 0.000 0.000 0.000 +2452817.5 1.14724 5.41882 -32370565.9 0.00059 0.00071 4.5 0.000 0.000 0.000 +2452818.5 1.18621 5.41263 -32369861.9 0.00038 0.00064 4.0 0.000 0.000 0.000 +2452819.5 1.22625 5.40646 -32369036.9 0.00072 0.00067 3.2 0.000 0.000 0.000 +2452820.5 1.26691 5.40082 -32368135.2 0.00078 0.00064 2.9 0.000 0.000 0.000 +2452821.5 1.30470 5.39512 -32367229.3 0.00079 0.00048 3.2 0.000 0.000 0.000 +2452822.5 1.33823 5.38781 -32366397.9 0.00080 0.00051 2.7 0.000 0.000 0.000 +2452823.5 1.36815 5.37762 -32365688.3 0.00080 0.00051 2.7 0.000 0.000 0.000 +2452824.5 1.39882 5.36122 -32365134.8 0.00072 0.00049 2.9 0.000 0.000 0.000 +2452825.5 1.43075 5.34356 -32364773.4 0.00046 0.00048 4.6 0.000 0.000 0.000 +2452826.5 1.46405 5.32822 -32364561.2 0.00056 0.00055 5.0 0.000 0.000 0.000 +2452827.5 1.49618 5.31386 -32364420.4 0.00049 0.00055 6.4 0.000 0.000 0.000 +2452828.5 1.53016 5.29916 -32364262.7 0.00057 0.00057 3.8 0.000 0.000 0.000 +2452829.5 1.56654 5.28413 -32364005.0 0.00066 0.00059 3.8 0.000 0.000 0.000 +2452830.5 1.60402 5.26891 -32363533.4 0.00070 0.00060 3.7 0.000 0.000 0.000 +2452831.5 1.63895 5.25407 -32362815.6 0.00069 0.00058 3.3 0.000 0.000 0.000 +2452832.5 1.67449 5.24121 -32361917.2 0.00065 0.00055 2.5 0.000 0.000 0.000 +2452833.5 1.70542 5.22823 -32360952.9 0.00070 0.00054 2.1 0.000 0.000 0.000 +2452834.5 1.73121 5.21400 -32360025.0 0.00070 0.00052 2.5 0.000 0.000 0.000 +2452835.5 1.75617 5.19926 -32359222.8 0.00055 0.00043 2.1 0.000 0.000 0.000 +2452836.5 1.78218 5.18407 -32358619.3 0.00065 0.00044 2.0 0.000 0.000 0.000 +2452837.5 1.80963 5.16817 -32358237.8 0.00061 0.00045 2.1 0.000 0.000 0.000 +2452838.5 1.83444 5.14913 -32358021.9 0.00058 0.00042 1.9 0.000 0.000 0.000 +2452839.5 1.86306 5.12878 -32357893.6 0.00056 0.00044 2.0 0.000 0.000 0.000 +2452840.5 1.89293 5.10845 -32357785.7 0.00067 0.00045 2.0 0.000 0.000 0.000 +2452841.5 1.91972 5.08732 -32357634.1 0.00070 0.00044 2.3 0.000 0.000 0.000 +2452842.5 1.94310 5.06412 -32357399.6 0.00050 0.00049 4.0 0.000 0.000 0.000 +2452843.5 1.97126 5.04069 -32357060.3 0.00062 0.00054 4.7 0.000 0.000 0.000 +2452844.5 1.99923 5.01823 -32356606.7 0.00062 0.00059 4.9 0.000 0.000 0.000 +2452845.5 2.02478 4.99620 -32356044.3 0.00064 0.00064 4.9 0.000 0.000 0.000 +2452846.5 2.04687 4.97421 -32355390.2 0.00051 0.00070 7.9 0.000 0.000 0.000 +2452847.5 2.06811 4.95018 -32354730.0 0.00062 0.00074 7.3 0.000 0.000 0.000 +2452848.5 2.08982 4.92301 -32354123.3 0.00069 0.00073 6.6 0.000 0.000 0.000 +2452849.5 2.11305 4.89343 -32353607.2 0.00059 0.00070 5.6 0.000 0.000 0.000 +2452850.5 2.13817 4.86614 -32353214.3 0.00065 0.00070 5.3 0.000 0.000 0.000 +2452851.5 2.16502 4.84088 -32353033.2 0.00063 0.00055 5.7 0.000 0.000 0.000 +2452852.5 2.19114 4.81739 -32353090.6 0.00056 0.00058 6.0 0.000 0.000 0.000 +2452853.5 2.21388 4.79714 -32353317.9 0.00042 0.00049 7.5 0.000 0.000 0.000 +2452854.5 2.23073 4.77519 -32353656.2 0.00054 0.00053 7.1 0.000 0.000 0.000 +2452855.5 2.24750 4.75062 -32354036.9 0.00056 0.00051 6.9 0.000 0.000 0.000 +2452856.5 2.26445 4.72568 -32354320.7 0.00051 0.00048 8.0 0.000 0.000 0.000 +2452857.5 2.28152 4.69815 -32354359.9 0.00054 0.00060 7.4 0.000 0.000 0.000 +2452858.5 2.30143 4.66813 -32354161.8 0.00059 0.00053 6.9 0.000 0.000 0.000 +2452859.5 2.32126 4.63905 -32353744.0 0.00064 0.00055 5.6 0.000 0.000 0.000 +2452860.5 2.34062 4.61301 -32353178.2 0.00039 0.00076 3.6 0.000 0.000 0.000 +2452861.5 2.35884 4.59065 -32352588.2 0.00049 0.00093 3.5 0.000 0.000 0.000 +2452862.5 2.37709 4.56902 -32352087.4 0.00047 0.00093 3.5 0.000 0.000 0.000 +2452863.5 2.39489 4.54509 -32351768.4 0.00044 0.00095 2.8 0.000 0.000 0.000 +2452864.5 2.41316 4.52288 -32351676.6 0.00053 0.00096 2.7 0.000 0.000 0.000 +2452865.5 2.43095 4.49984 -32351765.6 0.00056 0.00095 3.1 0.000 0.000 0.000 +2452866.5 2.44572 4.47524 -32351988.4 0.00059 0.00091 2.9 0.000 0.000 0.000 +2452867.5 2.46014 4.44952 -32352293.6 0.00053 0.00071 4.2 0.000 0.000 0.000 +2452868.5 2.47535 4.42004 -32352603.3 0.00064 0.00078 4.3 0.000 0.000 0.000 +2452869.5 2.49126 4.38877 -32352838.4 0.00069 0.00078 4.4 0.000 0.000 0.000 +2452870.5 2.50682 4.35617 -32352904.5 0.00060 0.00076 6.0 0.000 0.000 0.000 +2452871.5 2.52256 4.32662 -32352728.9 0.00061 0.00075 5.5 0.000 0.000 0.000 +2452872.5 2.53776 4.29953 -32352360.4 0.00059 0.00077 6.8 0.000 0.000 0.000 +2452873.5 2.54930 4.27462 -32351842.0 0.00054 0.00067 6.4 0.000 0.000 0.000 +2452874.5 2.55949 4.25072 -32351221.1 0.00040 0.00060 8.3 0.000 0.000 0.000 +2452875.5 2.56960 4.22261 -32350580.7 0.00042 0.00081 7.3 0.000 0.000 0.000 +2452876.5 2.58251 4.19080 -32349987.0 0.00045 0.00085 9.9 0.000 0.000 0.000 +2452877.5 2.59212 4.15742 -32349531.4 0.00049 0.00081 8.5 0.000 0.000 0.000 +2452878.5 2.60148 4.12496 -32349292.7 0.00064 0.00080 6.7 0.000 0.000 0.000 +2452879.5 2.61172 4.09238 -32349414.9 0.00065 0.00080 7.0 0.000 0.000 0.000 +2452880.5 2.62135 4.06267 -32349861.6 0.00067 0.00072 6.9 0.000 0.000 0.000 +2452881.5 2.63338 4.03508 -32350525.1 0.00073 0.00053 7.5 0.000 0.000 0.000 +2452882.5 2.64431 4.00696 -32351276.1 0.00064 0.00055 5.0 0.000 0.000 0.000 +2452883.5 2.65245 3.97726 -32351947.2 0.00064 0.00047 4.0 0.000 0.000 0.000 +2452884.5 2.65515 3.94614 -32352416.3 0.00047 0.00040 3.5 0.000 0.000 0.000 +2452885.5 2.65530 3.91395 -32352634.4 0.00049 0.00047 3.1 0.000 0.000 0.000 +2452886.5 2.65387 3.88138 -32352585.6 0.00049 0.00051 3.4 0.000 0.000 0.000 +2452887.5 2.65114 3.84641 -32352358.4 0.00048 0.00050 3.4 0.000 0.000 0.000 +2452888.5 2.65183 3.81110 -32352069.3 0.00048 0.00043 2.7 0.000 0.000 0.000 +2452889.5 2.65054 3.77705 -32351774.8 0.00057 0.00058 2.9 0.000 0.000 0.000 +2452890.5 2.64912 3.74478 -32351575.8 0.00058 0.00057 3.0 0.000 0.000 0.000 +2452891.5 2.64700 3.71356 -32351556.4 0.00054 0.00068 3.0 0.000 0.000 0.000 +2452892.5 2.64512 3.68094 -32351737.0 0.00053 0.00064 2.7 0.000 0.000 0.000 +2452893.5 2.64606 3.64786 -32352060.3 0.00054 0.00065 2.7 0.000 0.000 0.000 +2452894.5 2.64520 3.61480 -32352460.4 0.00052 0.00066 2.4 0.000 0.000 0.000 +2452895.5 2.64234 3.58187 -32352833.0 0.00041 0.00064 4.0 0.000 0.000 0.000 +2452896.5 2.64224 3.55009 -32353131.9 0.00047 0.00067 3.6 0.000 0.000 0.000 +2452897.5 2.64231 3.51972 -32353342.8 0.00044 0.00050 5.0 0.000 0.000 0.000 +2452898.5 2.64142 3.48978 -32353453.5 0.00044 0.00052 4.2 0.000 0.000 0.000 +2452899.5 2.64034 3.46132 -32353457.6 0.00047 0.00049 4.1 0.000 0.000 0.000 +2452900.5 2.64005 3.43195 -32353346.5 0.00050 0.00049 4.4 0.000 0.000 0.000 +2452901.5 2.63699 3.40008 -32353088.7 0.00050 0.00051 4.0 0.000 0.000 0.000 +2452902.5 2.63058 3.36622 -32352796.8 0.00045 0.00048 4.3 0.000 0.000 0.000 +2452903.5 2.62536 3.33148 -32352533.5 0.00056 0.00073 3.5 0.000 0.000 0.000 +2452904.5 2.62588 3.29928 -32352388.5 0.00059 0.00078 4.1 0.000 0.000 0.000 +2452905.5 2.62482 3.27056 -32352468.6 0.00062 0.00106 6.0 0.000 0.000 0.000 +2452906.5 2.61882 3.24286 -32352814.3 0.00072 0.00097 4.5 0.000 0.000 0.000 +2452907.5 2.60917 3.21021 -32353419.2 0.00072 0.00085 4.8 0.000 0.000 0.000 +2452908.5 2.60061 3.17473 -32354241.5 0.00080 0.00087 4.8 0.000 0.000 0.000 +2452909.5 2.59523 3.14220 -32355171.8 0.00071 0.00065 6.9 0.000 0.000 0.000 +2452910.5 2.59357 3.11299 -32356060.3 0.00066 0.00067 5.0 0.000 0.000 0.000 +2452911.5 2.59185 3.08683 -32356776.4 0.00061 0.00064 5.1 0.000 0.000 0.000 +2452912.5 2.59205 3.06413 -32357262.8 0.00041 0.00053 4.5 0.000 0.000 0.000 +2452913.5 2.58441 3.04232 -32357494.7 0.00050 0.00065 3.9 0.000 0.000 0.000 +2452914.5 2.57371 3.01631 -32357543.4 0.00049 0.00066 3.7 0.000 0.000 0.000 +2452915.5 2.56285 2.98832 -32357525.3 0.00047 0.00066 2.4 0.000 0.000 0.000 +2452916.5 2.54920 2.96330 -32357556.3 0.00047 0.00060 4.6 0.000 0.000 0.000 +2452917.5 2.53564 2.93647 -32357711.6 0.00053 0.00059 4.9 0.000 0.000 0.000 +2452918.5 2.52216 2.90658 -32358050.4 0.00054 0.00058 4.8 0.000 0.000 0.000 +2452919.5 2.50917 2.87606 -32358600.5 0.00048 0.00047 8.4 0.000 0.000 0.000 +2452920.5 2.49549 2.84875 -32359307.7 0.00044 0.00052 6.5 0.000 0.000 0.000 +2452921.5 2.48047 2.82276 -32360054.2 0.00042 0.00054 6.5 0.000 0.000 0.000 +2452922.5 2.46394 2.79462 -32360756.9 0.00041 0.00055 5.7 0.000 0.000 0.000 +2452923.5 2.44461 2.76679 -32361405.2 0.00036 0.00058 4.9 0.000 0.000 0.000 +2452924.5 2.42041 2.73875 -32361945.1 0.00040 0.00062 4.1 0.000 0.000 0.000 +2452925.5 2.39767 2.70916 -32362344.4 0.00037 0.00061 2.8 0.000 0.000 0.000 +2452926.5 2.37786 2.67667 -32362594.0 0.00037 0.00059 2.8 0.000 0.000 0.000 +2452927.5 2.35754 2.64452 -32362700.9 0.00051 0.00065 2.5 0.000 0.000 0.000 +2452928.5 2.33833 2.61275 -32362685.5 0.00052 0.00065 2.5 0.000 0.000 0.000 +2452929.5 2.31713 2.58117 -32362599.6 0.00057 0.00066 2.6 0.000 0.000 0.000 +2452930.5 2.29791 2.55261 -32362526.8 0.00053 0.00067 2.9 0.000 0.000 0.000 +2452931.5 2.27912 2.52728 -32362573.5 0.00059 0.00061 2.3 0.000 0.000 0.000 +2452932.5 2.25985 2.50241 -32362835.2 0.00061 0.00060 2.4 0.000 0.000 0.000 +2452933.5 2.24045 2.47563 -32363381.6 0.00069 0.00058 2.3 0.000 0.000 0.000 +2452934.5 2.21840 2.44927 -32364220.7 0.00082 0.00068 2.7 0.000 0.000 0.000 +2452935.5 2.20252 2.42407 -32365318.2 0.00079 0.00067 2.6 0.000 0.000 0.000 +2452936.5 2.19375 2.40155 -32366603.5 0.00077 0.00062 2.6 0.000 0.000 0.000 +2452937.5 2.18588 2.38030 -32367915.2 0.00083 0.00074 4.7 0.000 0.000 0.000 +2452938.5 2.18074 2.36000 -32369074.9 0.00075 0.00082 3.8 0.000 0.000 0.000 +2452939.5 2.17044 2.33964 -32369934.0 0.00065 0.00078 4.9 0.000 0.000 0.000 +2452940.5 2.15526 2.31771 -32370425.7 0.00040 0.00064 5.1 0.000 0.000 0.000 +2452941.5 2.13727 2.29445 -32370584.2 0.00044 0.00065 5.6 0.000 0.000 0.000 +2452942.5 2.12410 2.27190 -32370542.0 0.00046 0.00068 5.6 0.000 0.000 0.000 +2452943.5 2.10964 2.25216 -32370433.6 0.00047 0.00060 5.3 0.000 0.000 0.000 +2452944.5 2.09202 2.23548 -32370363.4 0.00048 0.00042 8.4 0.000 0.000 0.000 +2452945.5 2.07195 2.21831 -32370425.5 0.00054 0.00051 5.8 0.000 0.000 0.000 +2452946.5 2.05026 2.19755 -32370670.0 0.00055 0.00050 5.7 0.000 0.000 0.000 +2452947.5 2.02683 2.17225 -32371094.9 0.00070 0.00066 5.0 0.000 0.000 0.000 +2452948.5 2.00310 2.14365 -32371645.5 0.00064 0.00065 4.9 0.000 0.000 0.000 +2452949.5 1.98074 2.11422 -32372216.5 0.00059 0.00066 4.8 0.000 0.000 0.000 +2452950.5 1.96251 2.08460 -32372737.9 0.00058 0.00067 4.2 0.000 0.000 0.000 +2452951.5 1.94565 2.05916 -32373167.0 0.00056 0.00077 8.5 0.000 0.000 0.000 +2452952.5 1.92663 2.03666 -32373499.1 0.00056 0.00083 7.5 0.000 0.000 0.000 +2452953.5 1.90187 2.01316 -32373710.1 0.00042 0.00072 8.1 0.000 0.000 0.000 +2452954.5 1.87195 1.98710 -32373805.8 0.00039 0.00073 9.1 0.000 0.000 0.000 +2452955.5 1.84474 1.96322 -32373742.3 0.00056 0.00076 8.6 0.000 0.000 0.000 +2452956.5 1.82107 1.93978 -32373684.9 0.00058 0.00074 8.5 0.000 0.000 0.000 +2452957.5 1.79905 1.91589 -32373687.4 0.00056 0.00059 5.3 0.000 0.000 0.000 +2452958.5 1.77365 1.89312 -32373744.5 0.00065 0.00046 6.1 0.000 0.000 0.000 +2452959.5 1.75134 1.87331 -32373904.5 0.00077 0.00052 3.5 0.000 0.000 0.000 +2452960.5 1.72806 1.85669 -32374256.7 0.00082 0.00049 3.7 0.000 0.000 0.000 +2452961.5 1.70302 1.83985 -32374857.6 0.00078 0.00065 3.4 0.000 0.000 0.000 +2452962.5 1.67239 1.82180 -32375673.2 0.00068 0.00074 3.1 0.000 0.000 0.000 +2452963.5 1.64406 1.80580 -32376614.3 0.00071 0.00078 3.1 0.000 0.000 0.000 +2452964.5 1.61878 1.79281 -32377656.9 0.00070 0.00077 3.0 0.000 0.000 0.000 +2452965.5 1.59309 1.78591 -32378759.1 0.00040 0.00072 3.5 0.000 0.000 0.000 +2452966.5 1.56600 1.77988 -32379692.3 0.00047 0.00068 3.1 0.000 0.000 0.000 +2452967.5 1.53406 1.77058 -32380339.5 0.00044 0.00059 3.1 0.000 0.000 0.000 +2452968.5 1.49828 1.75811 -32380691.5 0.00052 0.00048 3.5 0.000 0.000 0.000 +2452969.5 1.45163 1.74415 -32380766.0 0.00052 0.00044 3.6 0.000 0.000 0.000 +2452970.5 1.41259 1.73180 -32380707.9 0.00049 0.00042 3.6 0.000 0.000 0.000 +2452971.5 1.37854 1.72063 -32380673.6 0.00044 0.00039 3.1 0.000 0.000 0.000 +2452972.5 1.34327 1.70804 -32380777.1 0.00048 0.00034 3.7 0.000 0.000 0.000 +2452973.5 1.30324 1.69352 -32381037.8 0.00047 0.00046 2.9 0.000 0.000 0.000 +2452974.5 1.26419 1.68033 -32381429.8 0.00042 0.00044 3.3 0.000 0.000 0.000 +2452975.5 1.23265 1.66874 -32381926.0 0.00047 0.00058 4.3 0.000 0.000 0.000 +2452976.5 1.20075 1.65676 -32382461.1 0.00062 0.00077 3.9 0.000 0.000 0.000 +2452977.5 1.16994 1.64672 -32382960.0 0.00069 0.00075 3.9 0.000 0.000 0.000 +2452978.5 1.13972 1.63979 -32383344.3 0.00066 0.00074 3.8 0.000 0.000 0.000 +2452979.5 1.11333 1.63692 -32383626.4 0.00070 0.00070 5.1 0.000 0.000 0.000 +2452980.5 1.08466 1.63297 -32383789.4 0.00076 0.00072 4.3 0.000 0.000 0.000 +2452981.5 1.05419 1.62735 -32383783.6 0.00073 0.00072 3.5 0.000 0.000 0.000 +2452982.5 1.02487 1.62211 -32383567.0 0.00063 0.00057 3.5 0.000 0.000 0.000 +2452983.5 0.99884 1.61728 -32383196.5 0.00064 0.00066 3.4 0.000 0.000 0.000 +2452984.5 0.96724 1.61212 -32382808.0 0.00064 0.00065 3.5 0.000 0.000 0.000 +2452985.5 0.93247 1.60479 -32382431.2 0.00062 0.00073 3.5 0.000 0.000 0.000 +2452986.5 0.89734 1.59718 -32382143.7 0.00057 0.00079 3.2 0.000 0.000 0.000 +2452987.5 0.86411 1.59061 -32381972.9 0.00049 0.00095 2.9 0.000 0.000 0.000 +2452988.5 0.83455 1.58764 -32381996.4 0.00049 0.00091 3.0 0.000 0.000 0.000 +2452989.5 0.80535 1.58549 -32382250.6 0.00035 0.00077 4.5 0.000 0.000 0.000 +2452990.5 0.77518 1.58355 -32382753.4 0.00043 0.00077 4.6 0.000 0.000 0.000 +2452991.5 0.74447 1.57910 -32383453.5 0.00044 0.00071 4.6 0.000 0.000 0.000 +2452992.5 0.71388 1.57411 -32384227.5 0.00043 0.00066 4.6 0.000 0.000 0.000 +2452993.5 0.68870 1.57089 -32384999.5 0.00046 0.00039 5.4 0.000 0.000 0.000 +2452994.5 0.66299 1.56654 -32385678.5 0.00047 0.00037 5.1 0.000 0.000 0.000 +2452995.5 0.63453 1.56127 -32386128.9 0.00052 0.00040 5.3 0.000 0.000 0.000 +2452996.5 0.60464 1.55701 -32386305.1 0.00049 0.00031 5.3 0.000 0.000 0.000 +2452997.5 0.56582 1.55316 -32386311.8 0.00045 0.00034 5.3 0.000 0.000 0.000 +2452998.5 0.52599 1.54978 -32386380.0 0.00044 0.00036 5.2 0.000 0.000 0.000 +2452999.5 0.48914 1.54723 -32386559.0 0.00049 0.00033 4.0 0.000 0.000 0.000 +2453000.5 0.45816 1.54737 -32386880.9 0.00045 0.00038 4.7 0.000 0.000 0.000 +2453001.5 0.42886 1.54945 -32387343.9 0.00044 0.00035 1.8 0.000 0.000 0.000 +2453002.5 0.39837 1.54967 -32387904.7 0.00044 0.00040 2.6 0.000 0.000 0.000 +2453003.5 0.37040 1.54662 -32388512.2 0.00045 0.00040 2.7 0.000 0.000 0.000 +2453004.5 0.34030 1.54354 -32389093.8 0.00053 0.00039 3.6 0.000 0.000 0.000 +2453005.5 0.31244 1.54039 -32389611.1 0.00048 0.00038 3.6 0.000 0.000 0.000 +2453006.5 0.28844 1.53868 -32390076.7 0.00055 0.00035 3.6 0.000 0.000 0.000 +2453007.5 0.26642 1.54047 -32390425.7 0.00053 0.00027 6.5 0.000 0.000 0.000 +2453008.5 0.24196 1.54498 -32390593.2 0.00061 0.00027 4.5 0.000 0.000 0.000 +2453009.5 0.21488 1.55048 -32390604.0 0.00060 0.00020 4.6 0.000 0.000 0.000 +2453010.5 0.18791 1.55676 -32390521.3 0.00059 0.00036 4.8 0.000 0.000 0.000 +2453011.5 0.15852 1.56415 -32390442.3 0.00062 0.00060 4.9 0.000 0.000 0.000 +2453012.5 0.12904 1.57121 -32390461.8 0.00058 0.00061 5.1 0.000 0.000 0.000 +2453013.5 0.10078 1.57549 -32390610.4 0.00053 0.00057 4.5 0.000 0.000 0.000 +2453014.5 0.07583 1.57870 -32390973.1 0.00062 0.00066 5.5 0.000 0.000 0.000 +2453015.5 0.05354 1.58127 -32391587.5 0.00074 0.00063 4.1 0.000 0.000 0.000 +2453016.5 0.03033 1.58552 -32392462.3 0.00073 0.00062 4.2 0.000 0.000 0.000 +2453017.5 0.01086 1.59231 -32393569.9 0.00063 0.00043 3.3 0.000 0.000 0.000 +2453018.5 -0.01169 1.60281 -32394841.8 0.00065 0.00045 3.5 0.000 0.000 0.000 +2453019.5 -0.03297 1.61594 -32396109.7 0.00071 0.00047 3.5 0.000 0.000 0.000 +2453020.5 -0.05379 1.62833 -32397262.7 0.00066 0.00042 3.4 0.000 0.000 0.000 +2453021.5 -0.07618 1.63971 -32398224.1 0.00035 0.00036 5.0 0.000 0.000 0.000 +2453022.5 -0.10220 1.65282 -32398919.5 0.00037 0.00051 3.9 0.000 0.000 0.000 +2453023.5 -0.13234 1.66546 -32399377.7 0.00039 0.00078 3.5 0.000 0.000 0.000 +2453024.5 -0.16200 1.67456 -32399642.3 0.00045 0.00084 3.4 0.000 0.000 0.000 +2453025.5 -0.18669 1.68458 -32399840.4 0.00052 0.00094 3.4 0.000 0.000 0.000 +2453026.5 -0.21135 1.70228 -32400069.2 0.00054 0.00094 3.4 0.000 0.000 0.000 +2453027.5 -0.24176 1.71981 -32400432.9 0.00050 0.00093 3.3 0.000 0.000 0.000 +2453028.5 -0.26293 1.73397 -32400949.4 0.00051 0.00090 5.2 0.000 0.000 0.000 +2453029.5 -0.27930 1.74708 -32401618.8 0.00071 0.00057 5.7 0.000 0.000 0.000 +2453030.5 -0.29166 1.76124 -32402424.3 0.00074 0.00056 5.7 0.000 0.000 0.000 +2453031.5 -0.30225 1.77665 -32403300.2 0.00058 0.00041 6.2 0.000 0.000 0.000 +2453032.5 -0.31671 1.79421 -32404071.1 0.00059 0.00046 6.3 0.000 0.000 0.000 +2453033.5 -0.33515 1.81289 -32404664.1 0.00061 0.00046 6.3 0.000 0.000 0.000 +2453034.5 -0.36000 1.83170 -32405043.2 0.00061 0.00043 4.1 0.000 0.000 0.000 +2453035.5 -0.38965 1.84837 -32405164.5 0.00043 0.00043 5.4 0.000 0.000 0.000 +2453036.5 -0.42053 1.86149 -32405114.2 0.00061 0.00073 4.7 0.000 0.000 0.000 +2453037.5 -0.45043 1.87268 -32404943.9 0.00060 0.00069 4.8 0.000 0.000 0.000 +2453038.5 -0.47762 1.88356 -32404702.1 0.00053 0.00071 3.0 0.000 0.000 0.000 +2453039.5 -0.51258 1.89240 -32404424.6 0.00057 0.00073 5.3 0.000 0.000 0.000 +2453040.5 -0.54190 1.90072 -32404179.6 0.00060 0.00074 5.3 0.000 0.000 0.000 +2453041.5 -0.56734 1.90888 -32404113.8 0.00058 0.00072 5.4 0.000 0.000 0.000 +2453042.5 -0.58826 1.92239 -32404221.3 0.00042 0.00061 5.9 0.000 0.000 0.000 +2453043.5 -0.60689 1.93828 -32404633.0 0.00053 0.00077 5.6 0.000 0.000 0.000 +2453044.5 -0.62593 1.95562 -32405292.3 0.00057 0.00080 5.9 0.000 0.000 0.000 +2453045.5 -0.64875 1.97280 -32406120.6 0.00054 0.00076 4.8 0.000 0.000 0.000 +2453046.5 -0.67758 1.99314 -32407039.5 0.00055 0.00082 4.9 0.000 0.000 0.000 +2453047.5 -0.70768 2.01136 -32407956.4 0.00053 0.00084 4.9 0.000 0.000 0.000 +2453048.5 -0.73856 2.02805 -32408755.5 0.00054 0.00080 4.8 0.000 0.000 0.000 +2453049.5 -0.76810 2.04687 -32409345.5 0.00038 0.00067 4.7 0.000 0.000 0.000 +2453050.5 -0.79499 2.06473 -32409695.5 0.00046 0.00071 3.0 0.000 0.000 0.000 +2453051.5 -0.81568 2.08271 -32409864.3 0.00047 0.00070 3.2 0.000 0.000 0.000 +2453052.5 -0.82878 2.10245 -32409954.1 0.00049 0.00085 3.3 0.000 0.000 0.000 +2453053.5 -0.84375 2.12582 -32410058.4 0.00063 0.00096 3.3 0.000 0.000 0.000 +2453054.5 -0.86623 2.15038 -32410317.7 0.00059 0.00092 3.4 0.000 0.000 0.000 +2453055.5 -0.90065 2.17273 -32410810.9 0.00056 0.00081 3.1 0.000 0.000 0.000 +2453056.5 -0.93069 2.19760 -32411554.1 0.00059 0.00082 5.4 0.000 0.000 0.000 +2453057.5 -0.95705 2.22243 -32412468.5 0.00067 0.00087 4.4 0.000 0.000 0.000 +2453058.5 -0.97960 2.24498 -32413518.2 0.00061 0.00080 4.3 0.000 0.000 0.000 +2453059.5 -0.99799 2.26596 -32414596.7 0.00054 0.00062 4.2 0.000 0.000 0.000 +2453060.5 -1.01356 2.28863 -32415569.7 0.00073 0.00070 4.3 0.000 0.000 0.000 +2453061.5 -1.02510 2.31218 -32416364.1 0.00070 0.00075 4.4 0.000 0.000 0.000 +2453062.5 -1.04301 2.33647 -32416965.8 0.00067 0.00069 4.2 0.000 0.000 0.000 +2453063.5 -1.05933 2.36061 -32417377.3 0.00064 0.00058 4.7 0.000 0.000 0.000 +2453064.5 -1.08402 2.38117 -32417527.6 0.00061 0.00057 3.6 0.000 0.000 0.000 +2453065.5 -1.10502 2.40109 -32417475.9 0.00057 0.00056 3.8 0.000 0.000 0.000 +2453066.5 -1.12162 2.42327 -32417334.4 0.00043 0.00063 4.8 0.000 0.000 0.000 +2453067.5 -1.14045 2.44430 -32417212.3 0.00053 0.00065 4.6 0.000 0.000 0.000 +2453068.5 -1.15347 2.46612 -32417184.5 0.00054 0.00069 4.8 0.000 0.000 0.000 +2453069.5 -1.17614 2.49083 -32417341.1 0.00051 0.00071 4.6 0.000 0.000 0.000 +2453070.5 -1.18973 2.51747 -32417715.7 0.00062 0.00074 5.3 0.000 0.000 0.000 +2453071.5 -1.20334 2.54282 -32418334.9 0.00070 0.00075 4.5 0.000 0.000 0.000 +2453072.5 -1.21612 2.56438 -32419173.9 0.00083 0.00083 3.4 0.000 0.000 0.000 +2453073.5 -1.22120 2.58302 -32420115.2 0.00070 0.00074 3.6 0.000 0.000 0.000 +2453074.5 -1.23052 2.60283 -32421009.6 0.00073 0.00077 4.1 0.000 0.000 0.000 +2453075.5 -1.23778 2.62321 -32421733.5 0.00078 0.00074 4.4 0.000 0.000 0.000 +2453076.5 -1.24456 2.64260 -32422202.0 0.00074 0.00077 4.3 0.000 0.000 0.000 +2453077.5 -1.25206 2.66451 -32422443.6 0.00056 0.00076 7.1 0.000 0.000 0.000 +2453078.5 -1.26025 2.68690 -32422501.8 0.00052 0.00071 6.8 0.000 0.000 0.000 +2453079.5 -1.26917 2.70869 -32422452.6 0.00052 0.00067 6.9 0.000 0.000 0.000 +2453080.5 -1.28147 2.73038 -32422455.0 0.00050 0.00048 6.8 0.000 0.000 0.000 +2453081.5 -1.29178 2.75080 -32422565.9 0.00055 0.00039 7.3 0.000 0.000 0.000 +2453082.5 -1.30043 2.77324 -32422904.7 0.00057 0.00037 8.4 0.000 0.000 0.000 +2453083.5 -1.31321 2.79785 -32423497.2 0.00060 0.00036 8.3 0.000 0.000 0.000 +2453084.5 -1.31688 2.82188 -32424361.2 0.00063 0.00040 9.7 0.000 0.000 0.000 +2453085.5 -1.31872 2.84930 -32425449.1 0.00061 0.00045 7.2 0.000 0.000 0.000 +2453086.5 -1.31972 2.88092 -32426590.8 0.00069 0.00047 7.2 0.000 0.000 0.000 +2453087.5 -1.31765 2.91469 -32427720.4 0.00055 0.00053 5.9 0.000 0.000 0.000 +2453088.5 -1.32122 2.95095 -32428809.2 0.00055 0.00059 4.6 0.000 0.000 0.000 +2453089.5 -1.32881 2.98595 -32429777.4 0.00056 0.00059 4.5 0.000 0.000 0.000 +2453090.5 -1.34159 3.01963 -32430596.7 0.00056 0.00053 4.0 0.000 0.000 0.000 +2453091.5 -1.35582 3.05407 -32431243.3 0.00047 0.00053 5.0 0.000 0.000 0.000 +2453092.5 -1.36939 3.08590 -32431724.8 0.00066 0.00064 3.4 0.000 0.000 0.000 +2453093.5 -1.37966 3.11722 -32432107.5 0.00067 0.00063 3.4 0.000 0.000 0.000 +2453094.5 -1.38657 3.14874 -32432497.1 0.00067 0.00059 2.6 0.000 0.000 0.000 +2453095.5 -1.39537 3.17974 -32432972.1 0.00083 0.00059 2.7 0.000 0.000 0.000 +2453096.5 -1.40238 3.20846 -32433614.7 0.00084 0.00063 3.0 0.000 0.000 0.000 +2453097.5 -1.40806 3.23584 -32434472.9 0.00090 0.00059 3.0 0.000 0.000 0.000 +2453098.5 -1.40863 3.26256 -32435544.9 0.00084 0.00046 3.4 0.000 0.000 0.000 +2453099.5 -1.40993 3.28862 -32436876.2 0.00083 0.00047 2.8 0.000 0.000 0.000 +2453100.5 -1.41198 3.31215 -32438401.2 0.00079 0.00051 2.7 0.000 0.000 0.000 +2453101.5 -1.40722 3.33536 -32439949.8 0.00071 0.00057 2.8 0.000 0.000 0.000 +2453102.5 -1.40160 3.36396 -32441407.1 0.00067 0.00060 2.6 0.000 0.000 0.000 +2453103.5 -1.39967 3.39514 -32442618.7 0.00065 0.00057 4.0 0.000 0.000 0.000 +2453104.5 -1.39743 3.42746 -32443511.1 0.00056 0.00063 4.1 0.000 0.000 0.000 +2453105.5 -1.39230 3.46017 -32444179.1 0.00060 0.00072 5.5 0.000 0.000 0.000 +2453106.5 -1.38784 3.49374 -32444632.4 0.00059 0.00065 4.6 0.000 0.000 0.000 +2453107.5 -1.38910 3.52547 -32444954.1 0.00046 0.00067 6.0 0.000 0.000 0.000 +2453108.5 -1.39094 3.55419 -32445343.8 0.00053 0.00065 3.8 0.000 0.000 0.000 +2453109.5 -1.39135 3.58234 -32445929.3 0.00060 0.00068 2.2 0.000 0.000 0.000 +2453110.5 -1.38564 3.60998 -32446731.0 0.00059 0.00057 2.2 0.000 0.000 0.000 +2453111.5 -1.37668 3.63910 -32447683.2 0.00060 0.00058 2.3 0.000 0.000 0.000 +2453112.5 -1.35944 3.67270 -32448730.1 0.00071 0.00052 2.2 0.000 0.000 0.000 +2453113.5 -1.34732 3.70652 -32449770.3 0.00074 0.00056 1.7 0.000 0.000 0.000 +2453114.5 -1.33544 3.74003 -32450733.0 0.00072 0.00054 1.6 0.000 0.000 0.000 +2453115.5 -1.32550 3.77447 -32451549.8 0.00070 0.00057 2.5 0.000 0.000 0.000 +2453116.5 -1.33010 3.80542 -32452139.5 0.00081 0.00063 2.5 0.000 0.000 0.000 +2453117.5 -1.33119 3.83054 -32452502.4 0.00075 0.00063 3.0 0.000 0.000 0.000 +2453118.5 -1.32949 3.85373 -32452630.0 0.00073 0.00065 2.9 0.000 0.000 0.000 +2453119.5 -1.32755 3.87515 -32452540.8 0.00065 0.00055 4.3 0.000 0.000 0.000 +2453120.5 -1.32089 3.89312 -32452348.0 0.00068 0.00053 3.1 0.000 0.000 0.000 +2453121.5 -1.30587 3.91105 -32452117.6 0.00068 0.00055 3.0 0.000 0.000 0.000 +2453122.5 -1.28372 3.93103 -32451967.8 0.00061 0.00036 3.0 0.000 0.000 0.000 +2453123.5 -1.26765 3.95432 -32451975.5 0.00076 0.00058 2.5 0.000 0.000 0.000 +2453124.5 -1.25078 3.98211 -32452209.9 0.00077 0.00055 2.5 0.000 0.000 0.000 +2453125.5 -1.23711 4.01294 -32452676.1 0.00069 0.00054 2.1 0.000 0.000 0.000 +2453126.5 -1.21498 4.04466 -32453439.7 0.00054 0.00056 3.8 0.000 0.000 0.000 +2453127.5 -1.19763 4.07638 -32454445.6 0.00049 0.00048 3.1 0.000 0.000 0.000 +2453128.5 -1.18504 4.10728 -32455569.4 0.00048 0.00047 3.5 0.000 0.000 0.000 +2453129.5 -1.17061 4.13732 -32456704.4 0.00042 0.00054 4.4 0.000 0.000 0.000 +2453130.5 -1.15924 4.16653 -32457756.5 0.00041 0.00053 4.5 0.000 0.000 0.000 +2453131.5 -1.15004 4.19475 -32458607.7 0.00041 0.00054 4.8 0.000 0.000 0.000 +2453132.5 -1.13996 4.21766 -32459242.3 0.00043 0.00057 4.7 0.000 0.000 0.000 +2453133.5 -1.12547 4.24109 -32459682.5 0.00046 0.00064 5.9 0.000 0.000 0.000 +2453134.5 -1.11164 4.26460 -32460009.4 0.00039 0.00058 4.7 0.000 0.000 0.000 +2453135.5 -1.09686 4.29017 -32460378.2 0.00024 0.00054 4.9 0.000 0.000 0.000 +2453136.5 -1.07975 4.31883 -32460881.1 0.00037 0.00060 4.6 0.000 0.000 0.000 +2453137.5 -1.06071 4.34708 -32461540.0 0.00063 0.00060 4.8 0.000 0.000 0.000 +2453138.5 -1.04095 4.37352 -32462362.2 0.00065 0.00060 4.8 0.000 0.000 0.000 +2453139.5 -1.02431 4.40228 -32463325.6 0.00063 0.00060 4.7 0.000 0.000 0.000 +2453140.5 -1.01280 4.42589 -32464365.7 0.00079 0.00068 5.3 0.000 0.000 0.000 +2453141.5 -1.00667 4.44377 -32465406.3 0.00068 0.00059 4.3 0.000 0.000 0.000 +2453142.5 -1.00221 4.45845 -32466345.3 0.00062 0.00050 4.9 0.000 0.000 0.000 +2453143.5 -0.99652 4.47060 -32467149.4 0.00047 0.00047 4.6 0.000 0.000 0.000 +2453144.5 -0.98892 4.48421 -32467751.0 0.00046 0.00046 4.6 0.000 0.000 0.000 +2453145.5 -0.97899 4.49717 -32468165.5 0.00043 0.00045 6.3 0.000 0.000 0.000 +2453146.5 -0.96341 4.51251 -32468354.7 0.00042 0.00045 6.2 0.000 0.000 0.000 +2453147.5 -0.95221 4.52574 -32468423.7 0.00045 0.00043 10.3 0.000 0.000 0.000 +2453148.5 -0.94282 4.53830 -32468386.9 0.00049 0.00049 8.2 0.000 0.000 0.000 +2453149.5 -0.93256 4.55270 -32468279.3 0.00040 0.00037 8.6 0.000 0.000 0.000 +2453150.5 -0.91744 4.56853 -32468262.4 0.00040 0.00036 8.6 0.000 0.000 0.000 +2453151.5 -0.90952 4.58574 -32468304.3 0.00057 0.00041 7.6 0.000 0.000 0.000 +2453152.5 -0.90155 4.60126 -32468479.7 0.00059 0.00043 7.7 0.000 0.000 0.000 +2453153.5 -0.89525 4.61724 -32468849.8 0.00056 0.00047 5.9 0.000 0.000 0.000 +2453154.5 -0.88315 4.63292 -32469328.2 0.00050 0.00045 8.6 0.000 0.000 0.000 +2453155.5 -0.87163 4.64639 -32469874.5 0.00050 0.00062 8.1 0.000 0.000 0.000 +2453156.5 -0.85652 4.65907 -32470411.0 0.00056 0.00066 6.3 0.000 0.000 0.000 +2453157.5 -0.83870 4.67423 -32470867.4 0.00040 0.00068 5.9 0.000 0.000 0.000 +2453158.5 -0.81802 4.69153 -32471151.1 0.00042 0.00070 5.8 0.000 0.000 0.000 +2453159.5 -0.79984 4.70941 -32471172.4 0.00046 0.00062 6.6 0.000 0.000 0.000 +2453160.5 -0.77625 4.72418 -32471014.6 0.00049 0.00060 6.7 0.000 0.000 0.000 +2453161.5 -0.75858 4.73980 -32470717.3 0.00044 0.00061 6.1 0.000 0.000 0.000 +2453162.5 -0.74537 4.75644 -32470439.8 0.00053 0.00057 6.4 0.000 0.000 0.000 +2453163.5 -0.73385 4.77176 -32470301.5 0.00056 0.00054 6.4 0.000 0.000 0.000 +2453164.5 -0.71798 4.78511 -32470372.2 0.00059 0.00045 6.2 0.000 0.000 0.000 +2453165.5 -0.70039 4.80144 -32470595.2 0.00058 0.00055 5.0 0.000 0.000 0.000 +2453166.5 -0.68406 4.81767 -32470981.9 0.00057 0.00055 5.1 0.000 0.000 0.000 +2453167.5 -0.66911 4.83253 -32471424.8 0.00059 0.00054 3.4 0.000 0.000 0.000 +2453168.5 -0.64941 4.84690 -32471897.4 0.00041 0.00051 5.1 0.000 0.000 0.000 +2453169.5 -0.62814 4.86137 -32472309.1 0.00044 0.00057 4.5 0.000 0.000 0.000 +2453170.5 -0.60444 4.87491 -32472571.2 0.00043 0.00061 4.5 0.000 0.000 0.000 +2453171.5 -0.57895 4.88752 -32472623.2 0.00050 0.00065 5.5 0.000 0.000 0.000 +2453172.5 -0.54949 4.90191 -32472415.5 0.00053 0.00065 5.1 0.000 0.000 0.000 +2453173.5 -0.51507 4.91782 -32472003.2 0.00052 0.00065 5.3 0.000 0.000 0.000 +2453174.5 -0.48347 4.93576 -32471464.9 0.00055 0.00059 4.7 0.000 0.000 0.000 +2453175.5 -0.45159 4.95559 -32470858.3 0.00058 0.00062 5.7 0.000 0.000 0.000 +2453176.5 -0.41916 4.97220 -32470292.9 0.00070 0.00070 5.4 0.000 0.000 0.000 +2453177.5 -0.38594 4.98591 -32469771.0 0.00059 0.00068 5.6 0.000 0.000 0.000 +2453178.5 -0.35035 4.99891 -32469367.0 0.00064 0.00085 6.0 0.000 0.000 0.000 +2453179.5 -0.31932 5.01187 -32469125.1 0.00075 0.00085 6.4 0.000 0.000 0.000 +2453180.5 -0.28609 5.02289 -32469029.1 0.00075 0.00086 6.6 0.000 0.000 0.000 +2453181.5 -0.25189 5.03416 -32469118.1 0.00074 0.00076 6.5 0.000 0.000 0.000 +2453182.5 -0.22012 5.04968 -32469342.7 0.00063 0.00069 7.2 0.000 0.000 0.000 +2453183.5 -0.19198 5.06289 -32469547.2 0.00089 0.00075 5.8 0.000 0.000 0.000 +2453184.5 -0.16278 5.07308 -32469682.8 0.00083 0.00071 6.4 0.000 0.000 0.000 +2453185.5 -0.13099 5.08173 -32469669.3 0.00079 0.00056 7.7 0.000 0.000 0.000 +2453186.5 -0.10376 5.09270 -32469469.2 0.00076 0.00068 7.2 0.000 0.000 0.000 +2453187.5 -0.07579 5.10356 -32469002.1 0.00076 0.00069 7.5 0.000 0.000 0.000 +2453188.5 -0.04598 5.11126 -32468374.5 0.00078 0.00068 7.5 0.000 0.000 0.000 +2453189.5 -0.01925 5.11872 -32467605.4 0.00041 0.00060 13.6 0.000 0.000 0.000 +2453190.5 0.00398 5.12599 -32466881.0 0.00043 0.00061 8.6 0.000 0.000 0.000 +2453191.5 0.02673 5.13309 -32466358.5 0.00071 0.00066 4.2 0.000 0.000 0.000 +2453192.5 0.05044 5.13965 -32466073.5 0.00072 0.00057 3.1 0.000 0.000 0.000 +2453193.5 0.07428 5.14615 -32465948.2 0.00078 0.00081 2.5 0.000 0.000 0.000 +2453194.5 0.09611 5.14971 -32465865.6 0.00085 0.00077 2.9 0.000 0.000 0.000 +2453195.5 0.12041 5.15424 -32465747.4 0.00084 0.00069 3.0 0.000 0.000 0.000 +2453196.5 0.15283 5.16355 -32465525.4 0.00080 0.00063 3.0 0.000 0.000 0.000 +2453197.5 0.18233 5.17232 -32465147.5 0.00082 0.00071 4.5 0.000 0.000 0.000 +2453198.5 0.21365 5.18034 -32464603.6 0.00085 0.00072 5.4 0.000 0.000 0.000 +2453199.5 0.24093 5.18958 -32463872.7 0.00070 0.00056 5.0 0.000 0.000 0.000 +2453200.5 0.26258 5.19574 -32462948.1 0.00068 0.00055 5.3 0.000 0.000 0.000 +2453201.5 0.28143 5.20112 -32461922.9 0.00066 0.00056 5.5 0.000 0.000 0.000 +2453202.5 0.30205 5.20564 -32460871.4 0.00066 0.00055 5.4 0.000 0.000 0.000 +2453203.5 0.32699 5.20903 -32459860.1 0.00051 0.00042 5.6 0.000 0.000 0.000 +2453204.5 0.35673 5.21042 -32458968.3 0.00056 0.00042 4.2 0.000 0.000 0.000 +2453205.5 0.38658 5.20982 -32458231.1 0.00044 0.00041 4.7 0.000 0.000 0.000 +2453206.5 0.41511 5.20776 -32457669.2 0.00042 0.00043 4.2 0.000 0.000 0.000 +2453207.5 0.43941 5.20431 -32457318.3 0.00046 0.00066 4.4 0.000 0.000 0.000 +2453208.5 0.46942 5.20045 -32457190.7 0.00047 0.00065 4.9 0.000 0.000 0.000 +2453209.5 0.49945 5.19788 -32457210.3 0.00042 0.00057 4.6 0.000 0.000 0.000 +2453210.5 0.53023 5.19456 -32457298.3 0.00038 0.00069 10.5 0.000 0.000 0.000 +2453211.5 0.56046 5.19273 -32457356.8 0.00051 0.00069 8.7 0.000 0.000 0.000 +2453212.5 0.59031 5.19307 -32457282.5 0.00057 0.00068 8.7 0.000 0.000 0.000 +2453213.5 0.61412 5.19333 -32456994.4 0.00058 0.00054 9.1 0.000 0.000 0.000 +2453214.5 0.63961 5.18960 -32456475.9 0.00057 0.00087 8.4 0.000 0.000 0.000 +2453215.5 0.66423 5.18524 -32455774.0 0.00057 0.00097 8.6 0.000 0.000 0.000 +2453216.5 0.68299 5.17819 -32455026.6 0.00058 0.00098 7.5 0.000 0.000 0.000 +2453217.5 0.70356 5.17162 -32454375.4 0.00043 0.00092 7.6 0.000 0.000 0.000 +2453218.5 0.72780 5.16485 -32453927.1 0.00042 0.00083 5.9 0.000 0.000 0.000 +2453219.5 0.75509 5.15915 -32453779.8 0.00039 0.00078 6.0 0.000 0.000 0.000 +2453220.5 0.78329 5.15562 -32453900.5 0.00043 0.00037 7.0 0.000 0.000 0.000 +2453221.5 0.81069 5.15422 -32454151.9 0.00051 0.00056 6.9 0.000 0.000 0.000 +2453222.5 0.83896 5.15316 -32454403.5 0.00048 0.00055 6.8 0.000 0.000 0.000 +2453223.5 0.86292 5.15169 -32454557.3 0.00048 0.00058 6.9 0.000 0.000 0.000 +2453224.5 0.88894 5.14974 -32454614.0 0.00046 0.00055 10.0 0.000 0.000 0.000 +2453225.5 0.91700 5.14460 -32454519.3 0.00049 0.00055 8.0 0.000 0.000 0.000 +2453226.5 0.94711 5.13947 -32454252.1 0.00053 0.00056 7.2 0.000 0.000 0.000 +2453227.5 0.97297 5.13519 -32453818.6 0.00041 0.00050 7.9 0.000 0.000 0.000 +2453228.5 0.99779 5.13120 -32453231.5 0.00037 0.00048 7.7 0.000 0.000 0.000 +2453229.5 1.02675 5.13113 -32452617.8 0.00037 0.00048 7.7 0.000 0.000 0.000 +2453230.5 1.05709 5.13456 -32451964.2 0.00037 0.00053 7.2 0.000 0.000 0.000 +2453231.5 1.08722 5.13787 -32451395.5 0.00023 0.00058 8.3 0.000 0.000 0.000 +2453232.5 1.11597 5.13923 -32450946.1 0.00023 0.00077 5.0 0.000 0.000 0.000 +2453233.5 1.14516 5.13736 -32450689.9 0.00026 0.00082 4.7 0.000 0.000 0.000 +2453234.5 1.17334 5.13300 -32450676.8 0.00053 0.00099 4.8 0.000 0.000 0.000 +2453235.5 1.19677 5.12613 -32450907.1 0.00068 0.00098 4.7 0.000 0.000 0.000 +2453236.5 1.21944 5.11961 -32451323.2 0.00068 0.00096 4.8 0.000 0.000 0.000 +2453237.5 1.24056 5.11386 -32451857.0 0.00069 0.00100 4.8 0.000 0.000 0.000 +2453238.5 1.26389 5.10613 -32452402.4 0.00072 0.00095 5.9 0.000 0.000 0.000 +2453239.5 1.28309 5.09563 -32452818.4 0.00067 0.00085 4.4 0.000 0.000 0.000 +2453240.5 1.30120 5.08188 -32453012.4 0.00059 0.00058 7.2 0.000 0.000 0.000 +2453241.5 1.32320 5.06634 -32452982.6 0.00033 0.00048 6.3 0.000 0.000 0.000 +2453242.5 1.34330 5.05217 -32452811.3 0.00042 0.00057 6.9 0.000 0.000 0.000 +2453243.5 1.36121 5.03972 -32452465.6 0.00045 0.00057 7.1 0.000 0.000 0.000 +2453244.5 1.38481 5.02699 -32452109.7 0.00046 0.00058 7.1 0.000 0.000 0.000 +2453245.5 1.41012 5.01518 -32451839.9 0.00048 0.00063 8.3 0.000 0.000 0.000 +2453246.5 1.43746 5.00267 -32451819.9 0.00054 0.00060 6.3 0.000 0.000 0.000 +2453247.5 1.46758 4.98977 -32452082.7 0.00059 0.00056 8.0 0.000 0.000 0.000 +2453248.5 1.49572 4.97613 -32452575.2 0.00076 0.00031 7.0 0.000 0.000 0.000 +2453249.5 1.52187 4.95987 -32453161.0 0.00088 0.00030 5.5 0.000 0.000 0.000 +2453250.5 1.54797 4.94229 -32453710.6 0.00092 0.00034 6.1 0.000 0.000 0.000 +2453251.5 1.56765 4.92273 -32454086.0 0.00087 0.00036 6.3 0.000 0.000 0.000 +2453252.5 1.59299 4.90050 -32454274.8 0.00087 0.00035 7.2 0.000 0.000 0.000 +2453253.5 1.61596 4.87620 -32454194.6 0.00088 0.00040 6.3 0.000 0.000 0.000 +2453254.5 1.63656 4.85149 -32453811.4 0.00098 0.00058 4.1 0.000 0.000 0.000 +2453255.5 1.65357 4.82952 -32453192.1 0.00074 0.00057 5.9 0.000 0.000 0.000 +2453256.5 1.67615 4.81092 -32452424.2 0.00080 0.00049 5.2 0.000 0.000 0.000 +2453257.5 1.69431 4.79185 -32451621.0 0.00076 0.00050 5.3 0.000 0.000 0.000 +2453258.5 1.71746 4.77392 -32450887.2 0.00076 0.00052 5.3 0.000 0.000 0.000 +2453259.5 1.73943 4.75528 -32450351.1 0.00081 0.00048 5.2 0.000 0.000 0.000 +2453260.5 1.76080 4.73387 -32450080.4 0.00049 0.00028 7.3 0.000 0.000 0.000 +2453261.5 1.78039 4.71074 -32450102.0 0.00049 0.00026 5.5 0.000 0.000 0.000 +2453262.5 1.79686 4.68758 -32450421.8 0.00055 0.00042 6.2 0.000 0.000 0.000 +2453263.5 1.80953 4.66424 -32450972.3 0.00083 0.00039 4.9 0.000 0.000 0.000 +2453264.5 1.82265 4.64089 -32451640.3 0.00083 0.00039 4.9 0.000 0.000 0.000 +2453265.5 1.83474 4.61703 -32452298.2 0.00085 0.00039 5.0 0.000 0.000 0.000 +2453266.5 1.85039 4.59367 -32452857.4 0.00081 0.00042 4.8 0.000 0.000 0.000 +2453267.5 1.86417 4.57117 -32453157.0 0.00083 0.00060 5.8 0.000 0.000 0.000 +2453268.5 1.87896 4.54772 -32453197.3 0.00076 0.00055 6.0 0.000 0.000 0.000 +2453269.5 1.89807 4.52283 -32453032.0 0.00061 0.00054 7.9 0.000 0.000 0.000 +2453270.5 1.91606 4.50181 -32452743.0 0.00064 0.00052 7.4 0.000 0.000 0.000 +2453271.5 1.93442 4.48336 -32452446.2 0.00063 0.00055 7.5 0.000 0.000 0.000 +2453272.5 1.94893 4.46774 -32452267.6 0.00063 0.00058 7.5 0.000 0.000 0.000 +2453273.5 1.95544 4.45058 -32452328.6 0.00058 0.00042 9.3 0.000 0.000 0.000 +2453274.5 1.95824 4.43072 -32452646.4 0.00064 0.00053 9.0 0.000 0.000 0.000 +2453275.5 1.96284 4.41011 -32453184.1 0.00059 0.00053 8.3 0.000 0.000 0.000 +2453276.5 1.97085 4.38850 -32453930.5 0.00064 0.00062 9.7 0.000 0.000 0.000 +2453277.5 1.97798 4.36648 -32454741.6 0.00070 0.00062 8.6 0.000 0.000 0.000 +2453278.5 1.98073 4.34189 -32455437.7 0.00068 0.00062 8.5 0.000 0.000 0.000 +2453279.5 1.98206 4.31855 -32455961.4 0.00069 0.00064 7.7 0.000 0.000 0.000 +2453280.5 1.98972 4.29398 -32456347.8 0.00059 0.00058 6.5 0.000 0.000 0.000 +2453281.5 1.99851 4.26885 -32456559.7 0.00057 0.00066 5.2 0.000 0.000 0.000 +2453282.5 2.00639 4.24413 -32456633.9 0.00055 0.00058 5.6 0.000 0.000 0.000 +2453283.5 2.01331 4.22039 -32456647.2 0.00044 0.00051 5.0 0.000 0.000 0.000 +2453284.5 2.01846 4.19544 -32456654.8 0.00047 0.00048 5.4 0.000 0.000 0.000 +2453285.5 2.02598 4.17069 -32456740.7 0.00043 0.00046 5.5 0.000 0.000 0.000 +2453286.5 2.03210 4.14579 -32456929.0 0.00044 0.00049 5.4 0.000 0.000 0.000 +2453287.5 2.03453 4.12346 -32457137.3 0.00047 0.00036 6.2 0.000 0.000 0.000 +2453288.5 2.03417 4.10201 -32457578.9 0.00043 0.00040 4.9 0.000 0.000 0.000 +2453289.5 2.03235 4.07862 -32458231.3 0.00032 0.00040 5.8 0.000 0.000 0.000 +2453290.5 2.03304 4.05393 -32459094.6 0.00039 0.00054 5.6 0.000 0.000 0.000 +2453291.5 2.03563 4.02882 -32460152.6 0.00060 0.00058 5.2 0.000 0.000 0.000 +2453292.5 2.03809 4.00111 -32461286.9 0.00062 0.00059 5.5 0.000 0.000 0.000 +2453293.5 2.04363 3.97268 -32462351.7 0.00062 0.00061 5.3 0.000 0.000 0.000 +2453294.5 2.05286 3.94972 -32463297.9 0.00069 0.00073 6.6 0.000 0.000 0.000 +2453295.5 2.05762 3.92797 -32463902.4 0.00070 0.00064 5.1 0.000 0.000 0.000 +2453296.5 2.05981 3.90727 -32464175.3 0.00069 0.00057 4.8 0.000 0.000 0.000 +2453297.5 2.05954 3.88801 -32464233.3 0.00051 0.00045 5.0 0.000 0.000 0.000 +2453298.5 2.05897 3.86719 -32464212.5 0.00051 0.00043 3.9 0.000 0.000 0.000 +2453299.5 2.05981 3.84722 -32464265.5 0.00050 0.00044 4.3 0.000 0.000 0.000 +2453300.5 2.05975 3.82777 -32464503.5 0.00054 0.00046 4.3 0.000 0.000 0.000 +2453301.5 2.05902 3.80957 -32464965.5 0.00060 0.00042 5.8 0.000 0.000 0.000 +2453302.5 2.05466 3.79115 -32465619.8 0.00053 0.00053 3.9 0.000 0.000 0.000 +2453303.5 2.05097 3.77045 -32466428.4 0.00052 0.00057 3.7 0.000 0.000 0.000 +2453304.5 2.05330 3.74812 -32467316.9 0.00045 0.00055 3.3 0.000 0.000 0.000 +2453305.5 2.05871 3.72652 -32468220.3 0.00049 0.00052 3.3 0.000 0.000 0.000 +2453306.5 2.06639 3.70386 -32469040.8 0.00049 0.00051 3.3 0.000 0.000 0.000 +2453307.5 2.07154 3.68113 -32469693.2 0.00059 0.00052 3.3 0.000 0.000 0.000 +2453308.5 2.07171 3.65961 -32470107.7 0.00062 0.00049 3.8 0.000 0.000 0.000 +2453309.5 2.07012 3.63810 -32470285.7 0.00071 0.00050 3.1 0.000 0.000 0.000 +2453310.5 2.07332 3.61627 -32470315.2 0.00072 0.00047 3.0 0.000 0.000 0.000 +2453311.5 2.08125 3.59436 -32470287.5 0.00080 0.00049 3.3 0.000 0.000 0.000 +2453312.5 2.08198 3.57371 -32470265.7 0.00070 0.00056 3.0 0.000 0.000 0.000 +2453313.5 2.08033 3.55046 -32470298.0 0.00066 0.00056 3.2 0.000 0.000 0.000 +2453314.5 2.07827 3.52328 -32470460.2 0.00063 0.00062 3.3 0.000 0.000 0.000 +2453315.5 2.07804 3.49632 -32470848.6 0.00051 0.00059 3.4 0.000 0.000 0.000 +2453316.5 2.07930 3.47062 -32471503.0 0.00049 0.00065 2.8 0.000 0.000 0.000 +2453317.5 2.08029 3.44844 -32472418.9 0.00051 0.00064 2.4 0.000 0.000 0.000 +2453318.5 2.07974 3.42945 -32473556.3 0.00070 0.00055 2.7 0.000 0.000 0.000 +2453319.5 2.08034 3.41245 -32474853.4 0.00069 0.00057 2.5 0.000 0.000 0.000 +2453320.5 2.07942 3.39240 -32476163.1 0.00070 0.00057 3.1 0.000 0.000 0.000 +2453321.5 2.07726 3.36830 -32477341.1 0.00071 0.00055 3.2 0.000 0.000 0.000 +2453322.5 2.07983 3.34521 -32478352.4 0.00076 0.00055 4.8 0.000 0.000 0.000 +2453323.5 2.07893 3.32142 -32479058.8 0.00063 0.00081 4.3 0.000 0.000 0.000 +2453324.5 2.07653 3.29534 -32479502.7 0.00065 0.00087 4.3 0.000 0.000 0.000 +2453325.5 2.07511 3.26863 -32479832.7 0.00052 0.00092 5.9 0.000 0.000 0.000 +2453326.5 2.07127 3.24554 -32480173.9 0.00050 0.00091 4.8 0.000 0.000 0.000 +2453327.5 2.06902 3.22274 -32480664.7 0.00048 0.00097 5.0 0.000 0.000 0.000 +2453328.5 2.06678 3.20043 -32481381.8 0.00047 0.00096 5.0 0.000 0.000 0.000 +2453329.5 2.06030 3.17951 -32482304.8 0.00049 0.00060 8.6 0.000 0.000 0.000 +2453330.5 2.05563 3.15798 -32483391.4 0.00054 0.00071 10.1 0.000 0.000 0.000 +2453331.5 2.05040 3.13575 -32484522.0 0.00053 0.00069 10.3 0.000 0.000 0.000 +2453332.5 2.04285 3.11334 -32485622.0 0.00049 0.00066 12.7 0.000 0.000 0.000 +2453333.5 2.03037 3.09182 -32486604.4 0.00048 0.00066 13.7 0.000 0.000 0.000 +2453334.5 2.01773 3.06940 -32487377.0 0.00045 0.00064 14.9 0.000 0.000 0.000 +2453335.5 2.00588 3.04527 -32487944.9 0.00045 0.00064 14.8 0.000 0.000 0.000 +2453336.5 1.99835 3.02171 -32488264.3 0.00036 0.00047 14.9 0.000 0.000 0.000 +2453337.5 1.99468 3.00060 -32488381.2 0.00031 0.00041 11.8 0.000 0.000 0.000 +2453338.5 1.99135 2.98084 -32488390.4 0.00029 0.00043 15.5 0.000 0.000 0.000 +2453339.5 1.98447 2.96030 -32488360.6 0.00037 0.00045 12.0 0.000 0.000 0.000 +2453340.5 1.97382 2.93747 -32488316.4 0.00046 0.00049 9.2 0.000 0.000 0.000 +2453341.5 1.95907 2.91471 -32488446.3 0.00044 0.00049 9.3 0.000 0.000 0.000 +2453342.5 1.94089 2.88962 -32488732.4 0.00048 0.00052 8.6 0.000 0.000 0.000 +2453343.5 1.92197 2.86653 -32489180.1 0.00052 0.00051 8.1 0.000 0.000 0.000 +2453344.5 1.90458 2.84657 -32489842.5 0.00057 0.00053 5.6 0.000 0.000 0.000 +2453345.5 1.88807 2.82688 -32490708.8 0.00065 0.00053 5.5 0.000 0.000 0.000 +2453346.5 1.87412 2.80596 -32491723.0 0.00101 0.00078 6.3 0.000 0.000 0.000 +2453347.5 1.86125 2.78749 -32492816.3 0.00131 0.00075 6.1 0.000 0.000 0.000 +2453348.5 1.84293 2.76964 -32493857.7 0.00118 0.00075 6.2 0.000 0.000 0.000 +2453349.5 1.81877 2.74809 -32494681.0 0.00102 0.00067 6.2 0.000 0.000 0.000 +2453350.5 1.80222 2.72790 -32495312.9 0.00092 0.00067 5.7 0.000 0.000 0.000 +2453351.5 1.78424 2.70839 -32495699.2 0.00087 0.00066 3.6 0.000 0.000 0.000 +2453352.5 1.76539 2.68826 -32495908.9 0.00081 0.00063 3.2 0.000 0.000 0.000 +2453353.5 1.74841 2.66691 -32496103.9 0.00032 0.00035 2.8 0.000 0.000 0.000 +2453354.5 1.73180 2.64538 -32496483.5 0.00039 0.00039 3.2 0.000 0.000 0.000 +2453355.5 1.71726 2.62495 -32497090.5 0.00039 0.00043 3.3 0.000 0.000 0.000 +2453356.5 1.70291 2.60648 -32497906.1 0.00039 0.00041 3.2 0.000 0.000 0.000 +2453357.5 1.69309 2.59044 -32498903.9 0.00025 0.00042 5.0 0.000 0.000 0.000 +2453358.5 1.68572 2.57593 -32499963.3 0.00034 0.00045 4.1 0.000 0.000 0.000 +2453359.5 1.67431 2.56054 -32501022.8 0.00041 0.00049 3.9 0.000 0.000 0.000 +2453360.5 1.65884 2.54261 -32501941.0 0.00045 0.00056 4.1 0.000 0.000 0.000 +2453361.5 1.64448 2.52316 -32502588.7 0.00047 0.00054 4.1 0.000 0.000 0.000 +2453362.5 1.62944 2.50325 -32503074.9 0.00051 0.00060 3.9 0.000 0.000 0.000 +2453363.5 1.61448 2.48770 -32503351.8 0.00055 0.00059 3.4 0.000 0.000 0.000 +2453364.5 1.59805 2.47535 -32503395.1 0.00052 0.00066 3.4 0.000 0.000 0.000 +2453365.5 1.58160 2.46685 -32503288.0 0.00070 0.00067 3.6 0.000 0.000 0.000 +2453366.5 1.56268 2.45675 -32503130.6 0.00084 0.00068 5.8 0.000 0.000 0.000 +2453367.5 1.54638 2.44071 -32503003.6 0.00075 0.00079 4.7 0.000 0.000 0.000 +2453368.5 1.52729 2.42527 -32502948.8 0.00073 0.00085 4.7 0.000 0.000 0.000 +2453369.5 1.51019 2.40966 -32502973.5 0.00070 0.00085 4.7 0.000 0.000 0.000 +2453370.5 1.49983 2.39471 -32503188.2 0.00071 0.00087 4.9 0.000 0.000 0.000 +2453371.5 1.49103 2.38204 -32503631.1 0.00065 0.00095 4.3 0.000 0.000 0.000 +2453372.5 1.48684 2.37071 -32504262.7 0.00065 0.00091 4.5 0.000 0.000 0.000 +2453373.5 1.48631 2.36007 -32505008.8 0.00069 0.00090 8.0 0.000 0.000 0.000 +2453374.5 1.48219 2.34883 -32505848.1 0.00064 0.00088 6.9 0.000 0.000 0.000 +2453375.5 1.47953 2.33559 -32506690.7 0.00059 0.00094 6.6 0.000 0.000 0.000 +2453376.5 1.46790 2.31933 -32507394.7 0.00061 0.00092 7.1 0.000 0.000 0.000 +2453377.5 1.45081 2.29949 -32507877.6 0.00059 0.00073 7.0 0.000 0.000 0.000 +2453378.5 1.43414 2.28291 -32508157.7 0.00030 0.00066 7.7 0.000 0.000 0.000 +2453379.5 1.41811 2.27015 -32508328.3 0.00030 0.00062 6.2 0.000 0.000 0.000 +2453380.5 1.39758 2.25861 -32508506.8 0.00033 0.00054 5.8 0.000 0.000 0.000 +2453381.5 1.37383 2.24662 -32508784.1 0.00038 0.00039 7.1 0.000 0.000 0.000 +2453382.5 1.35175 2.23388 -32509334.9 0.00037 0.00041 5.6 0.000 0.000 0.000 +2453383.5 1.33555 2.22232 -32510180.8 0.00035 0.00048 5.6 0.000 0.000 0.000 +2453384.5 1.31836 2.21176 -32511268.9 0.00034 0.00045 4.7 0.000 0.000 0.000 +2453385.5 1.30035 2.19994 -32512456.1 0.00038 0.00049 5.2 0.000 0.000 0.000 +2453386.5 1.28578 2.18754 -32513654.6 0.00049 0.00052 3.5 0.000 0.000 0.000 +2453387.5 1.27264 2.17568 -32514761.2 0.00061 0.00051 2.6 0.000 0.000 0.000 +2453388.5 1.25789 2.16591 -32515701.9 0.00068 0.00047 2.2 0.000 0.000 0.000 +2453389.5 1.24110 2.15967 -32516415.1 0.00067 0.00044 2.8 0.000 0.000 0.000 +2453390.5 1.21587 2.15335 -32516891.5 0.00071 0.00042 3.1 0.000 0.000 0.000 +2453391.5 1.19257 2.14311 -32517218.0 0.00072 0.00046 3.2 0.000 0.000 0.000 +2453392.5 1.17020 2.13441 -32517403.3 0.00069 0.00048 3.2 0.000 0.000 0.000 +2453393.5 1.14649 2.12629 -32517485.1 0.00050 0.00045 4.2 0.000 0.000 0.000 +2453394.5 1.12299 2.11713 -32517525.3 0.00044 0.00047 5.2 0.000 0.000 0.000 +2453395.5 1.10014 2.10778 -32517581.8 0.00050 0.00049 4.3 0.000 0.000 0.000 +2453396.5 1.07600 2.09935 -32517705.6 0.00055 0.00060 4.0 0.000 0.000 0.000 +2453397.5 1.05401 2.09388 -32517973.0 0.00055 0.00058 4.0 0.000 0.000 0.000 +2453398.5 1.03021 2.09095 -32518436.0 0.00050 0.00058 3.9 0.000 0.000 0.000 +2453399.5 1.00563 2.09104 -32519053.4 0.00057 0.00088 4.5 0.000 0.000 0.000 +2453400.5 0.97537 2.08916 -32519739.7 0.00053 0.00094 3.8 0.000 0.000 0.000 +2453401.5 0.94621 2.08729 -32520463.1 0.00054 0.00092 3.4 0.000 0.000 0.000 +2453402.5 0.91941 2.08723 -32521190.5 0.00068 0.00098 3.8 0.000 0.000 0.000 +2453403.5 0.89201 2.07985 -32521873.8 0.00070 0.00095 4.3 0.000 0.000 0.000 +2453404.5 0.86510 2.07081 -32522404.7 0.00073 0.00093 6.9 0.000 0.000 0.000 +2453405.5 0.83650 2.06335 -32522753.8 0.00074 0.00083 6.9 0.000 0.000 0.000 +2453406.5 0.81496 2.06057 -32522942.5 0.00076 0.00065 7.9 0.000 0.000 0.000 +2453407.5 0.78830 2.06045 -32523175.6 0.00076 0.00062 6.7 0.000 0.000 0.000 +2453408.5 0.76008 2.06009 -32523544.6 0.00073 0.00068 5.9 0.000 0.000 0.000 +2453409.5 0.73096 2.05734 -32524069.5 0.00061 0.00069 6.2 0.000 0.000 0.000 +2453410.5 0.69847 2.05073 -32524876.3 0.00066 0.00079 3.7 0.000 0.000 0.000 +2453411.5 0.66795 2.04555 -32526031.6 0.00066 0.00079 3.6 0.000 0.000 0.000 +2453412.5 0.64072 2.03793 -32527454.7 0.00065 0.00075 3.0 0.000 0.000 0.000 +2453413.5 0.61541 2.03416 -32529023.4 0.00070 0.00081 3.3 0.000 0.000 0.000 +2453414.5 0.59265 2.03310 -32530554.6 0.00064 0.00073 3.3 0.000 0.000 0.000 +2453415.5 0.57156 2.03396 -32531899.2 0.00066 0.00070 3.4 0.000 0.000 0.000 +2453416.5 0.54663 2.03556 -32532978.6 0.00065 0.00064 5.6 0.000 0.000 0.000 +2453417.5 0.51725 2.03364 -32533759.5 0.00070 0.00073 4.7 0.000 0.000 0.000 +2453418.5 0.48504 2.03193 -32534303.9 0.00076 0.00073 4.7 0.000 0.000 0.000 +2453419.5 0.45354 2.03326 -32534695.4 0.00064 0.00072 4.4 0.000 0.000 0.000 +2453420.5 0.42646 2.03953 -32535120.6 0.00064 0.00065 4.3 0.000 0.000 0.000 +2453421.5 0.40099 2.04737 -32535640.5 0.00065 0.00060 3.4 0.000 0.000 0.000 +2453422.5 0.37716 2.05458 -32536288.3 0.00055 0.00056 2.1 0.000 0.000 0.000 +2453423.5 0.35461 2.06039 -32537105.1 0.00055 0.00039 2.4 0.000 0.000 0.000 +2453424.5 0.33294 2.06313 -32538098.7 0.00056 0.00067 2.6 0.000 0.000 0.000 +2453425.5 0.31526 2.06441 -32539294.7 0.00060 0.00066 2.7 0.000 0.000 0.000 +2453426.5 0.30159 2.06817 -32540706.5 0.00061 0.00068 2.6 0.000 0.000 0.000 +2453427.5 0.29182 2.07737 -32542305.1 0.00057 0.00073 4.0 0.000 0.000 0.000 +2453428.5 0.27669 2.08824 -32544027.4 0.00060 0.00067 3.3 0.000 0.000 0.000 +2453429.5 0.25843 2.10049 -32545725.6 0.00058 0.00062 3.2 0.000 0.000 0.000 +2453430.5 0.24087 2.11532 -32547343.3 0.00052 0.00042 3.8 0.000 0.000 0.000 +2453431.5 0.21797 2.13063 -32548825.6 0.00053 0.00102 3.5 0.000 0.000 0.000 +2453432.5 0.19357 2.14329 -32550106.7 0.00049 0.00102 3.8 0.000 0.000 0.000 +2453433.5 0.17013 2.15122 -32551212.1 0.00049 0.00107 3.2 0.000 0.000 0.000 +2453434.5 0.15095 2.16041 -32552216.0 0.00059 0.00113 5.1 0.000 0.000 0.000 +2453435.5 0.12755 2.16728 -32553158.1 0.00055 0.00104 4.3 0.000 0.000 0.000 +2453436.5 0.10581 2.17278 -32554123.9 0.00054 0.00104 4.1 0.000 0.000 0.000 +2453437.5 0.08754 2.17992 -32555229.7 0.00083 0.00040 4.5 0.000 0.000 0.000 +2453438.5 0.06761 2.18834 -32556500.4 0.00107 0.00047 4.2 0.000 0.000 0.000 +2453439.5 0.04604 2.19681 -32557890.6 0.00104 0.00048 4.3 0.000 0.000 0.000 +2453440.5 0.02172 2.20593 -32559377.0 0.00097 0.00053 3.6 0.000 0.000 0.000 +2453441.5 0.00325 2.21425 -32560905.4 0.00091 0.00074 4.3 0.000 0.000 0.000 +2453442.5 -0.01406 2.22157 -32562287.6 0.00083 0.00085 3.9 0.000 0.000 0.000 +2453443.5 -0.02657 2.22745 -32563395.9 0.00074 0.00086 3.6 0.000 0.000 0.000 +2453444.5 -0.03779 2.23387 -32564159.9 0.00039 0.00083 3.6 0.000 0.000 0.000 +2453445.5 -0.05540 2.23588 -32564582.8 0.00043 0.00087 3.5 0.000 0.000 0.000 +2453446.5 -0.06947 2.23799 -32564760.4 0.00044 0.00087 3.6 0.000 0.000 0.000 +2453447.5 -0.08079 2.24214 -32564807.5 0.00045 0.00089 3.1 0.000 0.000 0.000 +2453448.5 -0.09008 2.24982 -32564849.0 0.00038 0.00067 3.0 0.000 0.000 0.000 +2453449.5 -0.09853 2.25975 -32564936.8 0.00039 0.00065 2.6 0.000 0.000 0.000 +2453450.5 -0.10764 2.27061 -32565113.9 0.00043 0.00073 3.2 0.000 0.000 0.000 +2453451.5 -0.11802 2.28437 -32565441.8 0.00055 0.00068 3.4 0.000 0.000 0.000 +2453452.5 -0.13379 2.30308 -32566024.2 0.00054 0.00070 3.5 0.000 0.000 0.000 +2453453.5 -0.15332 2.31933 -32566873.5 0.00059 0.00069 3.5 0.000 0.000 0.000 +2453454.5 -0.16657 2.33247 -32567938.5 0.00061 0.00070 3.4 0.000 0.000 0.000 +2453455.5 -0.17841 2.34702 -32569127.6 0.00073 0.00070 5.4 0.000 0.000 0.000 +2453456.5 -0.19270 2.36386 -32570318.9 0.00074 0.00078 4.3 0.000 0.000 0.000 +2453457.5 -0.20885 2.38041 -32571410.2 0.00063 0.00065 4.9 0.000 0.000 0.000 +2453458.5 -0.22539 2.39426 -32572318.8 0.00081 0.00059 3.5 0.000 0.000 0.000 +2453459.5 -0.24786 2.40396 -32572978.2 0.00082 0.00072 3.3 0.000 0.000 0.000 +2453460.5 -0.26962 2.41493 -32573353.7 0.00084 0.00071 3.3 0.000 0.000 0.000 +2453461.5 -0.28938 2.42724 -32573531.2 0.00090 0.00076 3.3 0.000 0.000 0.000 +2453462.5 -0.30776 2.44095 -32573622.8 0.00087 0.00072 4.1 0.000 0.000 0.000 +2453463.5 -0.32355 2.45109 -32573847.3 0.00078 0.00075 3.9 0.000 0.000 0.000 +2453464.5 -0.33527 2.45775 -32574313.3 0.00062 0.00082 4.6 0.000 0.000 0.000 +2453465.5 -0.34346 2.46200 -32575076.3 0.00065 0.00066 5.1 0.000 0.000 0.000 +2453466.5 -0.35066 2.46755 -32576062.0 0.00071 0.00064 4.9 0.000 0.000 0.000 +2453467.5 -0.35516 2.48215 -32577230.9 0.00069 0.00066 5.2 0.000 0.000 0.000 +2453468.5 -0.36659 2.50320 -32578516.9 0.00063 0.00069 4.5 0.000 0.000 0.000 +2453469.5 -0.38509 2.52405 -32579795.8 0.00060 0.00061 6.1 0.000 0.000 0.000 +2453470.5 -0.40638 2.54066 -32580854.4 0.00063 0.00060 4.8 0.000 0.000 0.000 +2453471.5 -0.42570 2.55477 -32581584.6 0.00057 0.00055 5.1 0.000 0.000 0.000 +2453472.5 -0.44092 2.56969 -32582065.1 0.00048 0.00052 4.9 0.000 0.000 0.000 +2453473.5 -0.45421 2.58746 -32582345.4 0.00051 0.00062 4.1 0.000 0.000 0.000 +2453474.5 -0.46144 2.60565 -32582585.8 0.00051 0.00061 4.1 0.000 0.000 0.000 +2453475.5 -0.46780 2.62514 -32582843.5 0.00052 0.00059 3.0 0.000 0.000 0.000 +2453476.5 -0.47856 2.64901 -32583174.6 0.00064 0.00055 4.2 0.000 0.000 0.000 +2453477.5 -0.49377 2.67350 -32583653.1 0.00065 0.00059 3.3 0.000 0.000 0.000 +2453478.5 -0.50973 2.69640 -32584300.4 0.00071 0.00062 3.2 0.000 0.000 0.000 +2453479.5 -0.52411 2.71913 -32585145.1 0.00077 0.00048 4.5 0.000 0.000 0.000 +2453480.5 -0.53860 2.74234 -32586181.5 0.00076 0.00046 4.6 0.000 0.000 0.000 +2453481.5 -0.54972 2.76470 -32587395.0 0.00068 0.00045 4.4 0.000 0.000 0.000 +2453482.5 -0.55810 2.78723 -32588758.1 0.00069 0.00048 4.0 0.000 0.000 0.000 +2453483.5 -0.56832 2.81039 -32590174.5 0.00046 0.00046 5.2 0.000 0.000 0.000 +2453484.5 -0.57750 2.83308 -32591601.8 0.00047 0.00043 3.9 0.000 0.000 0.000 +2453485.5 -0.58417 2.85289 -32592923.1 0.00042 0.00042 4.4 0.000 0.000 0.000 +2453486.5 -0.58810 2.87014 -32594045.9 0.00037 0.00052 4.0 0.000 0.000 0.000 +2453487.5 -0.58855 2.88701 -32594902.4 0.00035 0.00062 3.6 0.000 0.000 0.000 +2453488.5 -0.58490 2.90551 -32595501.6 0.00038 0.00060 3.5 0.000 0.000 0.000 +2453489.5 -0.57836 2.92526 -32595957.1 0.00034 0.00058 3.5 0.000 0.000 0.000 +2453490.5 -0.57306 2.94932 -32596468.1 0.00027 0.00066 4.5 0.000 0.000 0.000 +2453491.5 -0.57275 2.97626 -32597114.3 0.00031 0.00052 3.3 0.000 0.000 0.000 +2453492.5 -0.57922 3.00111 -32597990.1 0.00035 0.00050 3.8 0.000 0.000 0.000 +2453493.5 -0.59051 3.02180 -32599113.3 0.00049 0.00036 5.3 0.000 0.000 0.000 +2453494.5 -0.60039 3.04104 -32600440.1 0.00057 0.00060 5.3 0.000 0.000 0.000 +2453495.5 -0.60642 3.06002 -32601848.5 0.00057 0.00060 5.3 0.000 0.000 0.000 +2453496.5 -0.60820 3.07844 -32603196.8 0.00056 0.00056 5.4 0.000 0.000 0.000 +2453497.5 -0.60783 3.09773 -32604406.1 0.00066 0.00070 7.2 0.000 0.000 0.000 +2453498.5 -0.60673 3.11581 -32605439.6 0.00073 0.00083 4.8 0.000 0.000 0.000 +2453499.5 -0.60727 3.13192 -32606232.2 0.00067 0.00081 4.2 0.000 0.000 0.000 +2453500.5 -0.60782 3.14776 -32606791.9 0.00074 0.00074 6.5 0.000 0.000 0.000 +2453501.5 -0.61381 3.16241 -32607170.6 0.00075 0.00066 6.0 0.000 0.000 0.000 +2453502.5 -0.62086 3.17622 -32607428.6 0.00078 0.00063 6.0 0.000 0.000 0.000 +2453503.5 -0.63046 3.18995 -32607676.1 0.00077 0.00065 5.8 0.000 0.000 0.000 +2453504.5 -0.64519 3.20363 -32607927.1 0.00066 0.00035 9.0 0.000 0.000 0.000 +2453505.5 -0.65786 3.21880 -32608307.7 0.00069 0.00033 8.3 0.000 0.000 0.000 +2453506.5 -0.66759 3.23563 -32608864.6 0.00067 0.00029 6.2 0.000 0.000 0.000 +2453507.5 -0.67479 3.25126 -32609586.0 0.00048 0.00031 4.4 0.000 0.000 0.000 +2453508.5 -0.68329 3.26504 -32610412.6 0.00046 0.00032 3.7 0.000 0.000 0.000 +2453509.5 -0.69270 3.27867 -32611366.9 0.00050 0.00033 4.3 0.000 0.000 0.000 +2453510.5 -0.70035 3.29302 -32612394.4 0.00051 0.00028 4.4 0.000 0.000 0.000 +2453511.5 -0.70639 3.30752 -32613354.0 0.00037 0.00030 4.5 0.000 0.000 0.000 +2453512.5 -0.71020 3.32347 -32614218.8 0.00040 0.00029 3.5 0.000 0.000 0.000 +2453513.5 -0.71271 3.34026 -32614838.2 0.00039 0.00031 4.4 0.000 0.000 0.000 +2453514.5 -0.71416 3.35682 -32615131.6 0.00069 0.00033 5.0 0.000 0.000 0.000 +2453515.5 -0.71333 3.37415 -32615112.6 0.00065 0.00037 4.1 0.000 0.000 0.000 +2453516.5 -0.70425 3.39380 -32614859.3 0.00064 0.00038 3.9 0.000 0.000 0.000 +2453517.5 -0.69024 3.41625 -32614559.6 0.00057 0.00041 3.7 0.000 0.000 0.000 +2453518.5 -0.68064 3.43782 -32614407.2 0.00057 0.00044 5.0 0.000 0.000 0.000 +2453519.5 -0.67169 3.45896 -32614490.4 0.00059 0.00051 3.8 0.000 0.000 0.000 +2453520.5 -0.66022 3.48007 -32614824.0 0.00057 0.00064 2.2 0.000 0.000 0.000 +2453521.5 -0.64581 3.49788 -32615383.2 0.00052 0.00061 4.1 0.000 0.000 0.000 +2453522.5 -0.62943 3.51150 -32616092.9 0.00056 0.00060 4.1 0.000 0.000 0.000 +2453523.5 -0.61599 3.52716 -32616820.3 0.00057 0.00060 4.0 0.000 0.000 0.000 +2453524.5 -0.60458 3.54586 -32617375.0 0.00059 0.00056 5.7 0.000 0.000 0.000 +2453525.5 -0.59985 3.56535 -32617671.2 0.00069 0.00056 5.6 0.000 0.000 0.000 +2453526.5 -0.59589 3.58315 -32617769.5 0.00065 0.00036 6.0 0.000 0.000 0.000 +2453527.5 -0.59149 3.59863 -32617631.8 0.00063 0.00036 5.3 0.000 0.000 0.000 +2453528.5 -0.58569 3.61226 -32617303.3 0.00049 0.00042 5.1 0.000 0.000 0.000 +2453529.5 -0.58216 3.62393 -32616833.7 0.00055 0.00042 4.6 0.000 0.000 0.000 +2453530.5 -0.57639 3.63466 -32616260.1 0.00055 0.00048 3.3 0.000 0.000 0.000 +2453531.5 -0.56702 3.64908 -32615739.7 0.00048 0.00045 3.4 0.000 0.000 0.000 +2453532.5 -0.55542 3.66921 -32615343.6 0.00034 0.00040 3.7 0.000 0.000 0.000 +2453533.5 -0.54414 3.69019 -32615058.3 0.00035 0.00043 3.1 0.000 0.000 0.000 +2453534.5 -0.53339 3.71144 -32614899.7 0.00036 0.00042 3.1 0.000 0.000 0.000 +2453535.5 -0.52536 3.73231 -32614905.8 0.00034 0.00035 4.8 0.000 0.000 0.000 +2453536.5 -0.52064 3.74991 -32615070.3 0.00030 0.00043 3.7 0.000 0.000 0.000 +2453537.5 -0.51443 3.76490 -32615377.6 0.00029 0.00048 3.7 0.000 0.000 0.000 +2453538.5 -0.50570 3.78003 -32615773.1 0.00031 0.00049 3.7 0.000 0.000 0.000 +2453539.5 -0.49542 3.79545 -32616124.0 0.00066 0.00051 5.9 0.000 0.000 0.000 +2453540.5 -0.48345 3.81167 -32616299.6 0.00067 0.00052 4.8 0.000 0.000 0.000 +2453541.5 -0.47191 3.82819 -32616233.2 0.00072 0.00057 3.6 0.000 0.000 0.000 +2453542.5 -0.46252 3.84430 -32615941.0 0.00078 0.00062 5.1 0.000 0.000 0.000 +2453543.5 -0.45770 3.86043 -32615464.1 0.00075 0.00063 5.3 0.000 0.000 0.000 +2453544.5 -0.45141 3.87328 -32614956.1 0.00068 0.00064 5.3 0.000 0.000 0.000 +2453545.5 -0.44492 3.88402 -32614574.5 0.00065 0.00065 5.1 0.000 0.000 0.000 +2453546.5 -0.43796 3.89644 -32614415.1 0.00041 0.00065 6.6 0.000 0.000 0.000 +2453547.5 -0.42850 3.90808 -32614536.4 0.00029 0.00065 7.6 0.000 0.000 0.000 +2453548.5 -0.41610 3.92004 -32614801.0 0.00028 0.00064 6.8 0.000 0.000 0.000 +2453549.5 -0.40425 3.93497 -32615126.7 0.00045 0.00047 8.0 0.000 0.000 0.000 +2453550.5 -0.39940 3.94906 -32615392.0 0.00054 0.00051 7.2 0.000 0.000 0.000 +2453551.5 -0.39918 3.96151 -32615544.3 0.00056 0.00052 7.2 0.000 0.000 0.000 +2453552.5 -0.40037 3.96998 -32615456.1 0.00055 0.00050 6.8 0.000 0.000 0.000 +2453553.5 -0.39414 3.98012 -32615102.7 0.00063 0.00044 8.0 0.000 0.000 0.000 +2453554.5 -0.38522 3.98984 -32614447.3 0.00070 0.00043 8.1 0.000 0.000 0.000 +2453555.5 -0.37518 4.00010 -32613536.4 0.00070 0.00043 5.3 0.000 0.000 0.000 +2453556.5 -0.36209 4.01339 -32612509.2 0.00055 0.00053 5.1 0.000 0.000 0.000 +2453557.5 -0.34449 4.02902 -32611458.3 0.00051 0.00052 4.6 0.000 0.000 0.000 +2453558.5 -0.32799 4.04660 -32610465.4 0.00050 0.00057 4.6 0.000 0.000 0.000 +2453559.5 -0.31329 4.06212 -32609613.4 0.00050 0.00057 4.7 0.000 0.000 0.000 +2453560.5 -0.29911 4.07459 -32608895.5 0.00051 0.00059 4.1 0.000 0.000 0.000 +2453561.5 -0.28627 4.08243 -32608332.9 0.00048 0.00064 4.6 0.000 0.000 0.000 +2453562.5 -0.27648 4.08860 -32607994.2 0.00050 0.00062 4.8 0.000 0.000 0.000 +2453563.5 -0.26631 4.09498 -32607832.6 0.00052 0.00042 5.6 0.000 0.000 0.000 +2453564.5 -0.25634 4.10330 -32607765.3 0.00050 0.00046 5.0 0.000 0.000 0.000 +2453565.5 -0.24409 4.11445 -32607751.5 0.00051 0.00045 5.4 0.000 0.000 0.000 +2453566.5 -0.23063 4.12744 -32607678.4 0.00050 0.00040 5.4 0.000 0.000 0.000 +2453567.5 -0.21713 4.13793 -32607473.1 0.00050 0.00038 7.5 0.000 0.000 0.000 +2453568.5 -0.20516 4.14493 -32607107.3 0.00044 0.00038 5.8 0.000 0.000 0.000 +2453569.5 -0.19736 4.14988 -32606492.5 0.00044 0.00037 6.1 0.000 0.000 0.000 +2453570.5 -0.19160 4.15322 -32605695.9 0.00049 0.00032 8.4 0.000 0.000 0.000 +2453571.5 -0.18372 4.15455 -32604836.8 0.00052 0.00035 5.5 0.000 0.000 0.000 +2453572.5 -0.16972 4.15730 -32604040.2 0.00052 0.00048 5.4 0.000 0.000 0.000 +2453573.5 -0.15455 4.16392 -32603400.9 0.00051 0.00048 5.1 0.000 0.000 0.000 +2453574.5 -0.14023 4.17203 -32603150.3 0.00052 0.00056 6.0 0.000 0.000 0.000 +2453575.5 -0.12989 4.18037 -32603251.9 0.00049 0.00053 4.7 0.000 0.000 0.000 +2453576.5 -0.12123 4.18770 -32603647.3 0.00047 0.00054 4.0 0.000 0.000 0.000 +2453577.5 -0.11285 4.19292 -32604139.8 0.00041 0.00063 6.9 0.000 0.000 0.000 +2453578.5 -0.10332 4.19761 -32604576.3 0.00048 0.00060 7.6 0.000 0.000 0.000 +2453579.5 -0.09345 4.20133 -32604836.6 0.00045 0.00055 7.5 0.000 0.000 0.000 +2453580.5 -0.08190 4.20340 -32604849.0 0.00042 0.00052 8.2 0.000 0.000 0.000 +2453581.5 -0.06445 4.20572 -32604655.7 0.00038 0.00060 11.2 0.000 0.000 0.000 +2453582.5 -0.04558 4.20945 -32604209.0 0.00045 0.00055 8.8 0.000 0.000 0.000 +2453583.5 -0.02895 4.21352 -32603642.4 0.00044 0.00053 7.8 0.000 0.000 0.000 +2453584.5 -0.01222 4.21609 -32603021.6 0.00041 0.00071 5.5 0.000 0.000 0.000 +2453585.5 0.00794 4.21816 -32602370.7 0.00047 0.00095 4.7 0.000 0.000 0.000 +2453586.5 0.02952 4.22067 -32601761.9 0.00048 0.00093 4.2 0.000 0.000 0.000 +2453587.5 0.04834 4.22240 -32601251.7 0.00048 0.00096 4.2 0.000 0.000 0.000 +2453588.5 0.06638 4.22658 -32600954.6 0.00044 0.00098 5.7 0.000 0.000 0.000 +2453589.5 0.08689 4.23080 -32600888.6 0.00054 0.00096 5.2 0.000 0.000 0.000 +2453590.5 0.11091 4.23578 -32601060.4 0.00048 0.00090 5.3 0.000 0.000 0.000 +2453591.5 0.13809 4.24435 -32601389.8 0.00050 0.00052 6.1 0.000 0.000 0.000 +2453592.5 0.16251 4.25411 -32601836.9 0.00049 0.00055 5.2 0.000 0.000 0.000 +2453593.5 0.18290 4.26461 -32602253.5 0.00045 0.00054 5.3 0.000 0.000 0.000 +2453594.5 0.20021 4.27330 -32602552.3 0.00043 0.00050 5.7 0.000 0.000 0.000 +2453595.5 0.21579 4.27957 -32602665.9 0.00034 0.00036 5.4 0.000 0.000 0.000 +2453596.5 0.22809 4.28542 -32602577.0 0.00043 0.00048 4.8 0.000 0.000 0.000 +2453597.5 0.23864 4.29063 -32602222.3 0.00041 0.00051 5.0 0.000 0.000 0.000 +2453598.5 0.24881 4.29423 -32601756.1 0.00039 0.00049 5.0 0.000 0.000 0.000 +2453599.5 0.26037 4.29536 -32601347.3 0.00042 0.00046 4.2 0.000 0.000 0.000 +2453600.5 0.27206 4.29436 -32600990.6 0.00039 0.00046 4.4 0.000 0.000 0.000 +2453601.5 0.28443 4.29188 -32600890.0 0.00043 0.00044 4.3 0.000 0.000 0.000 +2453602.5 0.29850 4.29077 -32601130.2 0.00041 0.00038 4.9 0.000 0.000 0.000 +2453603.5 0.31317 4.29125 -32601702.8 0.00046 0.00060 4.2 0.000 0.000 0.000 +2453604.5 0.32735 4.29045 -32602445.0 0.00043 0.00063 4.2 0.000 0.000 0.000 +2453605.5 0.34250 4.28709 -32603082.9 0.00037 0.00070 4.1 0.000 0.000 0.000 +2453606.5 0.35612 4.28621 -32603499.4 0.00038 0.00078 3.0 0.000 0.000 0.000 +2453607.5 0.36993 4.28498 -32603651.9 0.00035 0.00078 3.5 0.000 0.000 0.000 +2453608.5 0.38254 4.28091 -32603529.5 0.00034 0.00079 3.6 0.000 0.000 0.000 +2453609.5 0.39438 4.27131 -32603066.9 0.00030 0.00064 4.3 0.000 0.000 0.000 +2453610.5 0.40578 4.26217 -32602404.8 0.00052 0.00067 3.7 0.000 0.000 0.000 +2453611.5 0.41453 4.25720 -32601561.5 0.00055 0.00058 4.2 0.000 0.000 0.000 +2453612.5 0.41927 4.25430 -32600648.8 0.00060 0.00050 5.2 0.000 0.000 0.000 +2453613.5 0.41918 4.25145 -32599793.7 0.00057 0.00052 5.0 0.000 0.000 0.000 +2453614.5 0.42006 4.25254 -32599095.0 0.00062 0.00052 5.9 0.000 0.000 0.000 +2453615.5 0.42100 4.25563 -32598644.4 0.00055 0.00047 6.1 0.000 0.000 0.000 +2453616.5 0.42319 4.25438 -32598493.8 0.00023 0.00036 7.9 0.000 0.000 0.000 +2453617.5 0.42801 4.24895 -32598609.1 0.00027 0.00046 8.0 0.000 0.000 0.000 +2453618.5 0.43599 4.24262 -32598849.3 0.00050 0.00084 7.1 0.000 0.000 0.000 +2453619.5 0.44685 4.23755 -32599217.4 0.00051 0.00098 8.7 0.000 0.000 0.000 +2453620.5 0.46001 4.23430 -32599661.5 0.00046 0.00106 5.3 0.000 0.000 0.000 +2453621.5 0.47237 4.23039 -32600131.1 0.00046 0.00109 5.2 0.000 0.000 0.000 +2453622.5 0.48498 4.23029 -32600513.7 0.00043 0.00098 5.1 0.000 0.000 0.000 +2453623.5 0.49410 4.23186 -32600724.3 0.00047 0.00093 6.1 0.000 0.000 0.000 +2453624.5 0.50090 4.23322 -32600739.4 0.00025 0.00055 4.2 0.000 0.000 0.000 +2453625.5 0.50460 4.23207 -32600568.6 0.00031 0.00053 3.3 0.000 0.000 0.000 +2453626.5 0.50389 4.22582 -32600392.2 0.00029 0.00036 3.1 0.000 0.000 0.000 +2453627.5 0.50149 4.21588 -32600373.5 0.00029 0.00034 2.8 0.000 0.000 0.000 +2453628.5 0.50176 4.21186 -32600592.1 0.00031 0.00034 2.5 0.000 0.000 0.000 +2453629.5 0.50910 4.21292 -32601141.4 0.00033 0.00030 1.8 0.000 0.000 0.000 +2453630.5 0.51902 4.21584 -32602067.0 0.00033 0.00031 1.8 0.000 0.000 0.000 +2453631.5 0.52546 4.21957 -32603275.0 0.00032 0.00028 1.7 0.000 0.000 0.000 +2453632.5 0.52654 4.21819 -32604569.5 0.00035 0.00024 1.5 0.000 0.000 0.000 +2453633.5 0.52656 4.21153 -32605782.9 0.00036 0.00024 1.6 0.000 0.000 0.000 +2453634.5 0.53100 4.20320 -32606744.7 0.00036 0.00024 2.1 0.000 0.000 0.000 +2453635.5 0.53637 4.19502 -32607391.0 0.00038 0.00024 2.7 0.000 0.000 0.000 +2453636.5 0.54382 4.18979 -32607720.3 0.00040 0.00026 2.6 0.000 0.000 0.000 +2453637.5 0.55346 4.18394 -32607771.3 0.00042 0.00025 2.7 0.000 0.000 0.000 +2453638.5 0.56239 4.17810 -32607655.4 0.00040 0.00024 2.7 0.000 0.000 0.000 +2453639.5 0.56778 4.17452 -32607462.1 0.00041 0.00026 2.9 0.000 0.000 0.000 +2453640.5 0.57113 4.17068 -32607312.5 0.00046 0.00033 2.7 0.000 0.000 0.000 +2453641.5 0.57830 4.16901 -32607220.8 0.00042 0.00045 2.2 0.000 0.000 0.000 +2453642.5 0.58555 4.17073 -32607303.5 0.00040 0.00047 2.4 0.000 0.000 0.000 +2453643.5 0.58765 4.17161 -32607603.8 0.00036 0.00046 2.6 0.000 0.000 0.000 +2453644.5 0.58711 4.17235 -32608060.4 0.00051 0.00055 4.2 0.000 0.000 0.000 +2453645.5 0.58630 4.17025 -32608722.9 0.00059 0.00075 3.1 0.000 0.000 0.000 +2453646.5 0.58982 4.16467 -32609474.1 0.00061 0.00081 4.4 0.000 0.000 0.000 +2453647.5 0.59904 4.15718 -32610217.4 0.00056 0.00069 4.7 0.000 0.000 0.000 +2453648.5 0.60894 4.15419 -32610864.9 0.00057 0.00071 5.1 0.000 0.000 0.000 +2453649.5 0.62143 4.15450 -32611353.3 0.00057 0.00076 5.2 0.000 0.000 0.000 +2453650.5 0.63248 4.15803 -32611696.4 0.00053 0.00069 5.5 0.000 0.000 0.000 +2453651.5 0.63982 4.15785 -32611937.3 0.00047 0.00048 6.2 0.000 0.000 0.000 +2453652.5 0.64514 4.15258 -32612021.8 0.00048 0.00054 4.9 0.000 0.000 0.000 +2453653.5 0.64968 4.14491 -32612021.4 0.00057 0.00050 4.7 0.000 0.000 0.000 +2453654.5 0.65136 4.13577 -32612055.4 0.00059 0.00051 4.6 0.000 0.000 0.000 +2453655.5 0.65303 4.12950 -32612224.5 0.00050 0.00051 3.9 0.000 0.000 0.000 +2453656.5 0.65723 4.12225 -32612640.8 0.00052 0.00053 3.7 0.000 0.000 0.000 +2453657.5 0.66275 4.11233 -32613354.8 0.00049 0.00045 3.8 0.000 0.000 0.000 +2453658.5 0.66970 4.09982 -32614384.2 0.00048 0.00037 4.3 0.000 0.000 0.000 +2453659.5 0.67951 4.08837 -32615552.4 0.00059 0.00038 3.7 0.000 0.000 0.000 +2453660.5 0.69216 4.08229 -32616706.0 0.00059 0.00038 3.4 0.000 0.000 0.000 +2453661.5 0.70514 4.07971 -32617740.6 0.00070 0.00038 4.4 0.000 0.000 0.000 +2453662.5 0.70889 4.07773 -32618574.8 0.00062 0.00047 4.1 0.000 0.000 0.000 +2453663.5 0.70991 4.07440 -32619158.3 0.00062 0.00044 4.9 0.000 0.000 0.000 +2453664.5 0.71006 4.07081 -32619512.1 0.00063 0.00041 5.1 0.000 0.000 0.000 +2453665.5 0.71006 4.06493 -32619722.4 0.00038 0.00037 7.2 0.000 0.000 0.000 +2453666.5 0.70930 4.05818 -32619867.5 0.00054 0.00036 5.9 0.000 0.000 0.000 +2453667.5 0.70889 4.05197 -32620003.7 0.00055 0.00035 6.0 0.000 0.000 0.000 +2453668.5 0.70877 4.04618 -32620236.3 0.00060 0.00028 6.0 0.000 0.000 0.000 +2453669.5 0.70557 4.03883 -32620539.7 0.00060 0.00028 4.5 0.000 0.000 0.000 +2453670.5 0.70112 4.03023 -32620977.7 0.00066 0.00030 4.3 0.000 0.000 0.000 +2453671.5 0.69823 4.02265 -32621643.0 0.00069 0.00032 4.1 0.000 0.000 0.000 +2453672.5 0.69508 4.01615 -32622468.9 0.00056 0.00037 3.5 0.000 0.000 0.000 +2453673.5 0.69452 4.00685 -32623485.6 0.00073 0.00036 2.2 0.000 0.000 0.000 +2453674.5 0.70129 3.99748 -32624579.9 0.00068 0.00036 2.0 0.000 0.000 0.000 +2453675.5 0.71146 3.98971 -32625642.1 0.00067 0.00036 5.7 0.000 0.000 0.000 +2453676.5 0.72282 3.98428 -32626568.0 0.00064 0.00048 5.8 0.000 0.000 0.000 +2453677.5 0.72896 3.97780 -32627301.6 0.00066 0.00047 6.3 0.000 0.000 0.000 +2453678.5 0.73059 3.97254 -32627832.8 0.00064 0.00049 6.3 0.000 0.000 0.000 +2453679.5 0.73061 3.96619 -32628082.2 0.00031 0.00067 7.7 0.000 0.000 0.000 +2453680.5 0.72907 3.96114 -32628252.3 0.00034 0.00070 6.7 0.000 0.000 0.000 +2453681.5 0.72668 3.95614 -32628407.6 0.00033 0.00066 5.9 0.000 0.000 0.000 +2453682.5 0.72552 3.95398 -32628730.1 0.00045 0.00066 5.2 0.000 0.000 0.000 +2453683.5 0.72445 3.95027 -32629314.7 0.00051 0.00078 4.2 0.000 0.000 0.000 +2453684.5 0.72209 3.94700 -32630293.1 0.00050 0.00077 4.2 0.000 0.000 0.000 +2453685.5 0.71521 3.93955 -32631548.9 0.00050 0.00079 4.1 0.000 0.000 0.000 +2453686.5 0.70817 3.93504 -32632994.0 0.00056 0.00074 4.0 0.000 0.000 0.000 +2453687.5 0.70006 3.93193 -32634452.5 0.00078 0.00075 3.7 0.000 0.000 0.000 +2453688.5 0.69255 3.92806 -32635795.3 0.00068 0.00064 3.0 0.000 0.000 0.000 +2453689.5 0.69132 3.92252 -32636902.2 0.00077 0.00056 3.3 0.000 0.000 0.000 +2453690.5 0.69490 3.92144 -32637707.4 0.00078 0.00055 3.6 0.000 0.000 0.000 +2453691.5 0.69754 3.92775 -32638261.9 0.00077 0.00055 3.6 0.000 0.000 0.000 +2453692.5 0.69207 3.92897 -32638601.0 0.00072 0.00056 3.5 0.000 0.000 0.000 +2453693.5 0.68856 3.92447 -32638765.3 0.00058 0.00055 3.5 0.000 0.000 0.000 +2453694.5 0.68000 3.92134 -32639000.5 0.00057 0.00048 3.5 0.000 0.000 0.000 +2453695.5 0.66865 3.91647 -32639331.9 0.00048 0.00057 3.0 0.000 0.000 0.000 +2453696.5 0.65914 3.90732 -32639804.6 0.00038 0.00060 2.9 0.000 0.000 0.000 +2453697.5 0.65203 3.89356 -32640405.5 0.00040 0.00058 2.8 0.000 0.000 0.000 +2453698.5 0.65341 3.88562 -32641146.2 0.00044 0.00059 2.9 0.000 0.000 0.000 +2453699.5 0.66101 3.88190 -32642022.4 0.00041 0.00060 2.9 0.000 0.000 0.000 +2453700.5 0.66955 3.88248 -32643011.8 0.00049 0.00065 2.7 0.000 0.000 0.000 +2453701.5 0.67693 3.88236 -32644061.6 0.00071 0.00071 4.2 0.000 0.000 0.000 +2453702.5 0.68386 3.88211 -32645073.9 0.00066 0.00073 4.2 0.000 0.000 0.000 +2453703.5 0.68801 3.88508 -32645953.6 0.00059 0.00071 4.1 0.000 0.000 0.000 +2453704.5 0.69079 3.89097 -32646627.9 0.00054 0.00072 3.5 0.000 0.000 0.000 +2453705.5 0.68915 3.89487 -32647088.8 0.00054 0.00064 3.5 0.000 0.000 0.000 +2453706.5 0.68460 3.89915 -32647353.5 0.00049 0.00066 3.9 0.000 0.000 0.000 +2453707.5 0.67751 3.90293 -32647493.4 0.00038 0.00047 3.8 0.000 0.000 0.000 +2453708.5 0.66972 3.90678 -32647622.9 0.00043 0.00047 3.8 0.000 0.000 0.000 +2453709.5 0.66350 3.90975 -32647739.0 0.00043 0.00046 4.1 0.000 0.000 0.000 +2453710.5 0.66199 3.91201 -32648003.3 0.00046 0.00039 3.3 0.000 0.000 0.000 +2453711.5 0.66089 3.91158 -32648565.2 0.00046 0.00041 3.1 0.000 0.000 0.000 +2453712.5 0.66154 3.91068 -32649323.4 0.00046 0.00041 2.9 0.000 0.000 0.000 +2453713.5 0.65938 3.90592 -32650265.2 0.00047 0.00042 2.9 0.000 0.000 0.000 +2453714.5 0.65290 3.90008 -32651242.0 0.00039 0.00041 2.8 0.000 0.000 0.000 +2453715.5 0.64275 3.89236 -32652127.6 0.00045 0.00043 2.2 0.000 0.000 0.000 +2453716.5 0.63423 3.88478 -32652882.6 0.00045 0.00041 2.7 0.000 0.000 0.000 +2453717.5 0.63163 3.88036 -32653455.5 0.00073 0.00064 4.9 0.000 0.000 0.000 +2453718.5 0.63398 3.87758 -32653805.5 0.00071 0.00060 4.2 0.000 0.000 0.000 +2453719.5 0.64171 3.87909 -32653935.9 0.00069 0.00065 3.8 0.000 0.000 0.000 +2453720.5 0.64672 3.88343 -32654000.2 0.00070 0.00061 3.7 0.000 0.000 0.000 +2453721.5 0.64979 3.88937 -32654038.1 0.00071 0.00066 5.0 0.000 0.000 0.000 +2453722.5 0.65071 3.89391 -32654123.1 0.00086 0.00066 4.9 0.000 0.000 0.000 +2453723.5 0.64724 3.89549 -32654314.7 0.00080 0.00045 4.4 0.000 0.000 0.000 +2453724.5 0.63960 3.89522 -32654658.4 0.00079 0.00055 6.0 0.000 0.000 0.000 +2453725.5 0.62767 3.88749 -32655228.3 0.00088 0.00063 5.4 0.000 0.000 0.000 +2453726.5 0.62247 3.88078 -32655962.8 0.00088 0.00062 5.5 0.000 0.000 0.000 +2453727.5 0.61910 3.87722 -32656824.4 0.00095 0.00061 4.8 0.000 0.000 0.000 +2453728.5 0.61283 3.87417 -32657759.0 0.00060 0.00052 4.6 0.000 0.000 0.000 +2453729.5 0.60546 3.87334 -32658683.0 0.00061 0.00047 5.4 0.000 0.000 0.000 +2453730.5 0.59450 3.87389 -32659546.6 0.00069 0.00059 4.5 0.000 0.000 0.000 +2453731.5 0.58145 3.87251 -32660276.8 0.00042 0.00039 4.6 0.000 0.000 0.000 +2453732.5 0.56941 3.86627 -32660782.8 0.00040 0.00043 4.3 0.000 0.000 0.000 +2453733.5 0.55901 3.85846 -32661094.4 0.00037 0.00042 4.3 0.000 0.000 0.000 +2453734.5 0.54803 3.85104 -32661139.9 0.00038 0.00046 4.3 0.000 0.000 0.000 +2453735.5 0.53710 3.84244 -32661123.6 0.00035 0.00048 3.5 0.000 0.000 0.000 +2453736.5 0.52639 3.83697 -32661182.6 0.00024 0.00035 3.2 0.000 0.000 0.000 +2453737.5 0.51702 3.83339 -32661415.1 0.00047 0.00052 2.7 0.000 0.000 0.000 +2453738.5 0.50874 3.83078 -32661891.9 0.00051 0.00056 2.4 0.000 0.000 0.000 +2453739.5 0.50164 3.82775 -32662589.8 0.00053 0.00051 7.1 0.000 0.000 0.000 +2453740.5 0.49572 3.82473 -32663457.1 0.00053 0.00051 7.4 0.000 0.000 0.000 +2453741.5 0.49395 3.82146 -32664413.5 0.00053 0.00051 7.4 0.000 0.000 0.000 +2453742.5 0.49492 3.82007 -32665321.4 0.00054 0.00052 7.3 0.000 0.000 0.000 +2453743.5 0.49436 3.81914 -32666042.8 0.00039 0.00044 7.4 0.000 0.000 0.000 +2453744.5 0.49401 3.81694 -32666506.2 0.00036 0.00038 7.5 0.000 0.000 0.000 +2453745.5 0.49547 3.81542 -32666709.4 0.00037 0.00039 7.7 0.000 0.000 0.000 +2453746.5 0.49160 3.81463 -32666691.8 0.00043 0.00057 6.1 0.000 0.000 0.000 +2453747.5 0.48667 3.81147 -32666500.1 0.00043 0.00058 6.3 0.000 0.000 0.000 +2453748.5 0.48488 3.80837 -32666226.6 0.00042 0.00057 6.6 0.000 0.000 0.000 +2453749.5 0.48613 3.80466 -32666000.5 0.00036 0.00056 5.9 0.000 0.000 0.000 +2453750.5 0.49144 3.80196 -32665910.6 0.00037 0.00056 6.0 0.000 0.000 0.000 +2453751.5 0.49869 3.80135 -32665924.2 0.00037 0.00065 6.6 0.000 0.000 0.000 +2453752.5 0.50341 3.80395 -32666055.7 0.00027 0.00053 7.6 0.000 0.000 0.000 +2453753.5 0.50533 3.80738 -32666354.0 0.00049 0.00046 4.8 0.000 0.000 0.000 +2453754.5 0.50618 3.81040 -32666867.2 0.00050 0.00046 4.3 0.000 0.000 0.000 +2453755.5 0.50465 3.81342 -32667455.2 0.00050 0.00048 4.3 0.000 0.000 0.000 +2453756.5 0.50176 3.81546 -32668118.0 0.00050 0.00050 4.2 0.000 0.000 0.000 +2453757.5 0.50107 3.81581 -32668809.4 0.00051 0.00056 3.7 0.000 0.000 0.000 +2453758.5 0.50170 3.81082 -32669459.2 0.00051 0.00058 3.3 0.000 0.000 0.000 +2453759.5 0.50323 3.80666 -32670009.9 0.00055 0.00065 5.0 0.000 0.000 0.000 +2453760.5 0.50113 3.80685 -32670483.4 0.00047 0.00066 3.5 0.000 0.000 0.000 +2453761.5 0.50134 3.80801 -32670879.6 0.00047 0.00064 4.0 0.000 0.000 0.000 +2453762.5 0.50236 3.81041 -32671275.5 0.00048 0.00063 4.4 0.000 0.000 0.000 +2453763.5 0.50641 3.81340 -32671725.7 0.00048 0.00062 4.7 0.000 0.000 0.000 +2453764.5 0.51072 3.81722 -32672304.4 0.00053 0.00055 4.2 0.000 0.000 0.000 +2453765.5 0.51404 3.82066 -32673135.0 0.00049 0.00042 4.3 0.000 0.000 0.000 +2453766.5 0.51554 3.82625 -32674271.2 0.00056 0.00033 4.7 0.000 0.000 0.000 +2453767.5 0.51311 3.83380 -32675701.3 0.00053 0.00061 4.1 0.000 0.000 0.000 +2453768.5 0.50710 3.84052 -32677273.9 0.00053 0.00062 3.7 0.000 0.000 0.000 +2453769.5 0.50221 3.84712 -32678817.8 0.00053 0.00062 3.7 0.000 0.000 0.000 +2453770.5 0.50043 3.84878 -32680243.1 0.00048 0.00068 4.0 0.000 0.000 0.000 +2453771.5 0.50306 3.84904 -32681372.3 0.00037 0.00066 3.0 0.000 0.000 0.000 +2453772.5 0.50830 3.84799 -32682212.0 0.00032 0.00068 3.2 0.000 0.000 0.000 +2453773.5 0.51133 3.84843 -32682783.1 0.00050 0.00048 3.1 0.000 0.000 0.000 +2453774.5 0.51486 3.84658 -32683180.9 0.00045 0.00039 3.4 0.000 0.000 0.000 +2453775.5 0.52577 3.84555 -32683531.8 0.00046 0.00039 3.4 0.000 0.000 0.000 +2453776.5 0.53815 3.84800 -32683922.3 0.00046 0.00038 3.3 0.000 0.000 0.000 +2453777.5 0.55014 3.84887 -32684397.5 0.00052 0.00034 4.7 0.000 0.000 0.000 +2453778.5 0.56277 3.84765 -32685005.0 0.00048 0.00033 3.6 0.000 0.000 0.000 +2453779.5 0.57278 3.84451 -32685777.7 0.00040 0.00025 3.6 0.000 0.000 0.000 +2453780.5 0.58093 3.84185 -32686660.2 0.00031 0.00024 3.5 0.000 0.000 0.000 +2453781.5 0.58970 3.83955 -32687623.6 0.00058 0.00043 3.5 0.000 0.000 0.000 +2453782.5 0.60248 3.83943 -32688648.5 0.00058 0.00043 3.6 0.000 0.000 0.000 +2453783.5 0.62123 3.84400 -32689737.6 0.00058 0.00043 3.5 0.000 0.000 0.000 +2453784.5 0.64114 3.84901 -32690854.2 0.00066 0.00047 5.3 0.000 0.000 0.000 +2453785.5 0.65766 3.85229 -32691911.4 0.00070 0.00049 3.4 0.000 0.000 0.000 +2453786.5 0.66782 3.85137 -32692866.5 0.00070 0.00049 3.4 0.000 0.000 0.000 +2453787.5 0.67501 3.84964 -32693626.9 0.00051 0.00034 3.0 0.000 0.000 0.000 +2453788.5 0.67428 3.84551 -32694172.6 0.00045 0.00027 2.6 0.000 0.000 0.000 +2453789.5 0.67619 3.84155 -32694576.5 0.00045 0.00027 2.4 0.000 0.000 0.000 +2453790.5 0.67984 3.83795 -32694949.8 0.00044 0.00027 2.5 0.000 0.000 0.000 +2453791.5 0.68879 3.83387 -32695485.6 0.00025 0.00021 3.8 0.000 0.000 0.000 +2453792.5 0.70133 3.83064 -32696295.3 0.00029 0.00026 2.7 0.000 0.000 0.000 +2453793.5 0.71284 3.83072 -32697507.1 0.00029 0.00026 3.0 0.000 0.000 0.000 +2453794.5 0.71976 3.83261 -32699105.6 0.00029 0.00027 3.5 0.000 0.000 0.000 +2453795.5 0.72384 3.83259 -32700992.9 0.00032 0.00036 3.2 0.000 0.000 0.000 +2453796.5 0.73466 3.83406 -32702990.3 0.00032 0.00037 3.1 0.000 0.000 0.000 +2453797.5 0.74868 3.83512 -32704814.2 0.00031 0.00039 3.2 0.000 0.000 0.000 +2453798.5 0.76805 3.83383 -32706397.7 0.00024 0.00043 4.7 0.000 0.000 0.000 +2453799.5 0.78635 3.83553 -32707668.6 0.00024 0.00045 2.5 0.000 0.000 0.000 +2453800.5 0.79850 3.83740 -32708591.2 0.00025 0.00044 2.5 0.000 0.000 0.000 +2453801.5 0.80676 3.83630 -32709235.8 0.00022 0.00042 2.7 0.000 0.000 0.000 +2453802.5 0.81139 3.83088 -32709697.3 0.00033 0.00040 2.3 0.000 0.000 0.000 +2453803.5 0.80985 3.82701 -32710076.2 0.00034 0.00042 2.7 0.000 0.000 0.000 +2453804.5 0.80597 3.82593 -32710431.3 0.00034 0.00041 3.2 0.000 0.000 0.000 +2453805.5 0.80314 3.82629 -32710825.4 0.00038 0.00037 5.7 0.000 0.000 0.000 +2453806.5 0.80571 3.82521 -32711326.8 0.00037 0.00032 4.8 0.000 0.000 0.000 +2453807.5 0.81182 3.81837 -32712020.4 0.00037 0.00032 4.6 0.000 0.000 0.000 +2453808.5 0.82282 3.81044 -32712881.5 0.00029 0.00031 6.0 0.000 0.000 0.000 +2453809.5 0.83502 3.80412 -32713886.4 0.00064 0.00048 5.3 0.000 0.000 0.000 +2453810.5 0.85435 3.79797 -32714938.6 0.00063 0.00046 4.8 0.000 0.000 0.000 +2453811.5 0.88034 3.79498 -32715962.9 0.00063 0.00045 4.8 0.000 0.000 0.000 +2453812.5 0.89743 3.79203 -32716898.3 0.00071 0.00052 6.1 0.000 0.000 0.000 +2453813.5 0.91253 3.78858 -32717780.6 0.00062 0.00055 3.9 0.000 0.000 0.000 +2453814.5 0.92594 3.78465 -32718529.8 0.00061 0.00052 3.7 0.000 0.000 0.000 +2453815.5 0.93889 3.78066 -32719115.4 0.00022 0.00036 4.5 0.000 0.000 0.000 +2453816.5 0.95001 3.78035 -32719606.3 0.00029 0.00035 3.4 0.000 0.000 0.000 +2453817.5 0.96144 3.77813 -32720103.2 0.00028 0.00035 3.0 0.000 0.000 0.000 +2453818.5 0.97300 3.77435 -32720675.1 0.00028 0.00037 3.0 0.000 0.000 0.000 +2453819.5 0.97944 3.77108 -32721480.0 0.00030 0.00029 3.9 0.000 0.000 0.000 +2453820.5 0.98556 3.76961 -32722663.3 0.00036 0.00039 2.8 0.000 0.000 0.000 +2453821.5 0.99163 3.76689 -32724205.9 0.00036 0.00041 2.4 0.000 0.000 0.000 +2453822.5 1.00062 3.76298 -32726034.9 0.00039 0.00052 2.6 0.000 0.000 0.000 +2453823.5 1.00741 3.75802 -32728082.8 0.00048 0.00052 3.2 0.000 0.000 0.000 +2453824.5 1.01293 3.75279 -32730138.3 0.00049 0.00051 3.5 0.000 0.000 0.000 +2453825.5 1.02020 3.74840 -32731981.8 0.00048 0.00051 3.5 0.000 0.000 0.000 +2453826.5 1.02620 3.74378 -32733499.1 0.00046 0.00050 4.9 0.000 0.000 0.000 +2453827.5 1.03239 3.73807 -32734627.8 0.00040 0.00058 3.9 0.000 0.000 0.000 +2453828.5 1.03581 3.73297 -32735446.3 0.00035 0.00049 4.0 0.000 0.000 0.000 +2453829.5 1.04027 3.73122 -32736040.9 0.00020 0.00053 3.8 0.000 0.000 0.000 +2453830.5 1.04371 3.72658 -32736591.1 0.00024 0.00062 2.9 0.000 0.000 0.000 +2453831.5 1.04397 3.72216 -32737157.7 0.00024 0.00062 2.9 0.000 0.000 0.000 +2453832.5 1.04257 3.72088 -32737806.4 0.00026 0.00062 2.5 0.000 0.000 0.000 +2453833.5 1.04003 3.71730 -32738578.7 0.00030 0.00056 3.8 0.000 0.000 0.000 +2453834.5 1.04208 3.71193 -32739563.5 0.00035 0.00055 2.3 0.000 0.000 0.000 +2453835.5 1.04321 3.70634 -32740741.6 0.00034 0.00053 2.4 0.000 0.000 0.000 +2453836.5 1.04042 3.69748 -32741970.0 0.00033 0.00053 2.4 0.000 0.000 0.000 +2453837.5 1.03475 3.68901 -32743223.3 0.00033 0.00053 2.2 0.000 0.000 0.000 +2453838.5 1.03345 3.68410 -32744464.1 0.00032 0.00053 2.2 0.000 0.000 0.000 +2453839.5 1.03123 3.67810 -32745646.5 0.00031 0.00052 1.9 0.000 0.000 0.000 +2453840.5 1.02441 3.67235 -32746667.7 0.00023 0.00051 3.0 0.000 0.000 0.000 +2453841.5 1.01851 3.66650 -32747489.6 0.00023 0.00052 3.0 0.000 0.000 0.000 +2453842.5 1.01834 3.66299 -32748142.0 0.00021 0.00058 1.0 0.000 0.000 0.000 +2453843.5 1.01963 3.66097 -32748676.3 0.00021 0.00059 1.0 0.000 0.000 0.000 +2453844.5 1.02112 3.65456 -32749169.0 0.00019 0.00060 1.4 0.000 0.000 0.000 +2453845.5 1.02794 3.64893 -32749693.9 0.00019 0.00058 1.5 0.000 0.000 0.000 +2453846.5 1.03645 3.64476 -32750337.5 0.00019 0.00058 1.5 0.000 0.000 0.000 +2453847.5 1.04283 3.64122 -32751220.1 0.00022 0.00057 1.5 0.000 0.000 0.000 +2453848.5 1.04972 3.63734 -32752436.1 0.00053 0.00039 3.7 0.000 0.000 0.000 +2453849.5 1.05522 3.63168 -32753981.9 0.00056 0.00043 4.2 0.000 0.000 0.000 +2453850.5 1.06064 3.62660 -32755741.3 0.00074 0.00038 4.6 0.000 0.000 0.000 +2453851.5 1.06232 3.62301 -32757574.0 0.00080 0.00043 4.2 0.000 0.000 0.000 +2453852.5 1.06554 3.61996 -32759351.8 0.00080 0.00043 4.9 0.000 0.000 0.000 +2453853.5 1.07364 3.61880 -32760957.0 0.00080 0.00043 5.0 0.000 0.000 0.000 +2453854.5 1.08412 3.61549 -32762290.2 0.00071 0.00040 5.0 0.000 0.000 0.000 +2453855.5 1.09344 3.61070 -32763285.5 0.00071 0.00032 5.0 0.000 0.000 0.000 +2453856.5 1.09707 3.60479 -32764029.8 0.00049 0.00035 4.4 0.000 0.000 0.000 +2453857.5 1.09821 3.59927 -32764727.8 0.00029 0.00026 5.2 0.000 0.000 0.000 +2453858.5 1.09796 3.59314 -32765513.8 0.00028 0.00031 5.5 0.000 0.000 0.000 +2453859.5 1.09615 3.58334 -32766380.5 0.00028 0.00032 5.5 0.000 0.000 0.000 +2453860.5 1.09082 3.57249 -32767378.5 0.00028 0.00033 5.5 0.000 0.000 0.000 +2453861.5 1.08685 3.55941 -32768497.9 0.00030 0.00033 5.9 0.000 0.000 0.000 +2453862.5 1.08511 3.54706 -32769780.3 0.00033 0.00040 5.8 0.000 0.000 0.000 +2453863.5 1.08227 3.53829 -32771143.6 0.00033 0.00040 5.7 0.000 0.000 0.000 +2453864.5 1.08028 3.53108 -32772603.0 0.00035 0.00037 4.8 0.000 0.000 0.000 +2453865.5 1.07621 3.52507 -32774113.4 0.00045 0.00037 4.1 0.000 0.000 0.000 +2453866.5 1.07449 3.52138 -32775610.0 0.00045 0.00036 4.2 0.000 0.000 0.000 +2453867.5 1.07336 3.51768 -32777047.7 0.00045 0.00036 3.8 0.000 0.000 0.000 +2453868.5 1.07764 3.51104 -32778368.4 0.00040 0.00022 6.1 0.000 0.000 0.000 +2453869.5 1.08487 3.50232 -32779507.2 0.00064 0.00062 5.9 0.000 0.000 0.000 +2453870.5 1.09611 3.49505 -32780442.5 0.00063 0.00063 5.4 0.000 0.000 0.000 +2453871.5 1.10635 3.48974 -32781275.7 0.00058 0.00067 8.0 0.000 0.000 0.000 +2453872.5 1.10999 3.48261 -32782033.2 0.00053 0.00062 4.8 0.000 0.000 0.000 +2453873.5 1.11117 3.47427 -32782791.5 0.00053 0.00063 4.7 0.000 0.000 0.000 +2453874.5 1.11316 3.46513 -32783708.0 0.00053 0.00063 3.3 0.000 0.000 0.000 +2453875.5 1.11522 3.45832 -32784854.4 0.00026 0.00031 3.7 0.000 0.000 0.000 +2453876.5 1.11841 3.45382 -32786205.4 0.00038 0.00028 2.9 0.000 0.000 0.000 +2453877.5 1.12219 3.44971 -32787709.4 0.00038 0.00027 2.8 0.000 0.000 0.000 +2453878.5 1.12966 3.44465 -32789291.1 0.00039 0.00022 3.9 0.000 0.000 0.000 +2453879.5 1.13533 3.43630 -32790828.3 0.00044 0.00041 3.5 0.000 0.000 0.000 +2453880.5 1.14355 3.42560 -32792191.2 0.00044 0.00042 3.6 0.000 0.000 0.000 +2453881.5 1.15202 3.41513 -32793310.9 0.00043 0.00042 3.6 0.000 0.000 0.000 +2453882.5 1.15929 3.40424 -32794072.4 0.00033 0.00047 4.9 0.000 0.000 0.000 +2453883.5 1.17091 3.39306 -32794503.7 0.00032 0.00047 5.1 0.000 0.000 0.000 +2453884.5 1.18323 3.38264 -32794712.3 0.00032 0.00041 2.8 0.000 0.000 0.000 +2453885.5 1.19280 3.37338 -32794862.1 0.00022 0.00024 3.4 0.000 0.000 0.000 +2453886.5 1.19978 3.36572 -32795083.0 0.00037 0.00037 3.0 0.000 0.000 0.000 +2453887.5 1.20497 3.35727 -32795388.1 0.00037 0.00036 2.7 0.000 0.000 0.000 +2453888.5 1.21119 3.35055 -32795868.0 0.00037 0.00036 2.7 0.000 0.000 0.000 +2453889.5 1.21597 3.34028 -32796502.8 0.00037 0.00036 2.6 0.000 0.000 0.000 +2453890.5 1.22173 3.32782 -32797252.2 0.00040 0.00040 4.5 0.000 0.000 0.000 +2453891.5 1.22505 3.31473 -32798042.3 0.00042 0.00044 2.9 0.000 0.000 0.000 +2453892.5 1.22498 3.30125 -32798800.7 0.00030 0.00035 3.2 0.000 0.000 0.000 +2453893.5 1.22716 3.28829 -32799512.6 0.00032 0.00052 3.0 0.000 0.000 0.000 +2453894.5 1.23065 3.27370 -32800082.1 0.00032 0.00052 3.0 0.000 0.000 0.000 +2453895.5 1.23374 3.26222 -32800434.5 0.00032 0.00052 3.3 0.000 0.000 0.000 +2453896.5 1.23362 3.24874 -32800522.3 0.00032 0.00052 3.6 0.000 0.000 0.000 +2453897.5 1.23529 3.23351 -32800364.8 0.00045 0.00053 3.5 0.000 0.000 0.000 +2453898.5 1.23840 3.21627 -32800016.0 0.00047 0.00051 3.1 0.000 0.000 0.000 +2453899.5 1.24533 3.19857 -32799625.3 0.00048 0.00038 3.3 0.000 0.000 0.000 +2453900.5 1.25098 3.18378 -32799333.7 0.00034 0.00036 3.5 0.000 0.000 0.000 +2453901.5 1.25676 3.17350 -32799226.2 0.00034 0.00036 4.0 0.000 0.000 0.000 +2453902.5 1.25974 3.16510 -32799376.2 0.00035 0.00036 4.1 0.000 0.000 0.000 +2453903.5 1.26148 3.15669 -32799854.4 0.00031 0.00023 7.1 0.000 0.000 0.000 +2453904.5 1.26313 3.14609 -32800599.1 0.00072 0.00021 4.9 0.000 0.000 0.000 +2453905.5 1.26356 3.13424 -32801456.4 0.00072 0.00022 4.9 0.000 0.000 0.000 +2453906.5 1.26362 3.12297 -32802300.0 0.00073 0.00023 4.6 0.000 0.000 0.000 +2453907.5 1.25940 3.11256 -32802985.9 0.00055 0.00022 3.5 0.000 0.000 0.000 +2453908.5 1.25497 3.10412 -32803501.9 0.00055 0.00024 3.3 0.000 0.000 0.000 +2453909.5 1.24967 3.09567 -32803783.5 0.00055 0.00025 3.5 0.000 0.000 0.000 +2453910.5 1.24817 3.08500 -32803886.1 0.00030 0.00024 5.4 0.000 0.000 0.000 +2453911.5 1.25175 3.07298 -32803804.4 0.00030 0.00033 3.6 0.000 0.000 0.000 +2453912.5 1.25642 3.06101 -32803690.2 0.00030 0.00036 3.6 0.000 0.000 0.000 +2453913.5 1.25952 3.04921 -32803681.8 0.00034 0.00067 3.4 0.000 0.000 0.000 +2453914.5 1.26297 3.03843 -32803823.8 0.00033 0.00065 3.3 0.000 0.000 0.000 +2453915.5 1.26650 3.02840 -32804159.9 0.00033 0.00065 3.2 0.000 0.000 0.000 +2453916.5 1.27534 3.01206 -32804728.1 0.00033 0.00066 3.5 0.000 0.000 0.000 +2453917.5 1.28370 2.99980 -32805477.2 0.00032 0.00065 4.6 0.000 0.000 0.000 +2453918.5 1.28803 2.98844 -32806393.6 0.00033 0.00063 4.7 0.000 0.000 0.000 +2453919.5 1.28900 2.97732 -32807360.3 0.00018 0.00029 6.8 0.000 0.000 0.000 +2453920.5 1.28850 2.96529 -32808326.1 0.00029 0.00024 4.5 0.000 0.000 0.000 +2453921.5 1.28832 2.95414 -32809273.5 0.00031 0.00036 3.8 0.000 0.000 0.000 +2453922.5 1.28719 2.94491 -32810091.1 0.00031 0.00035 4.7 0.000 0.000 0.000 +2453923.5 1.28454 2.93714 -32810698.0 0.00032 0.00035 4.9 0.000 0.000 0.000 +2453924.5 1.28096 2.92449 -32811103.2 0.00032 0.00035 7.3 0.000 0.000 0.000 +2453925.5 1.27581 2.91106 -32811236.1 0.00038 0.00037 5.1 0.000 0.000 0.000 +2453926.5 1.26874 2.89749 -32811256.8 0.00033 0.00043 5.7 0.000 0.000 0.000 +2453927.5 1.26243 2.88254 -32811242.1 0.00033 0.00036 6.5 0.000 0.000 0.000 +2453928.5 1.25946 2.86980 -32811323.6 0.00053 0.00052 5.6 0.000 0.000 0.000 +2453929.5 1.25543 2.85760 -32811593.0 0.00053 0.00053 5.7 0.000 0.000 0.000 +2453930.5 1.24479 2.84805 -32812190.8 0.00053 0.00053 4.1 0.000 0.000 0.000 +2453931.5 1.23489 2.84153 -32813099.8 0.00051 0.00054 5.4 0.000 0.000 0.000 +2453932.5 1.22707 2.83238 -32814206.4 0.00052 0.00049 4.5 0.000 0.000 0.000 +2453933.5 1.22142 2.82135 -32815286.9 0.00051 0.00050 3.9 0.000 0.000 0.000 +2453934.5 1.21594 2.81107 -32816208.9 0.00054 0.00059 3.6 0.000 0.000 0.000 +2453935.5 1.21209 2.80272 -32816906.9 0.00061 0.00071 3.1 0.000 0.000 0.000 +2453936.5 1.20806 2.79398 -32817331.8 0.00062 0.00071 3.2 0.000 0.000 0.000 +2453937.5 1.20041 2.78609 -32817485.8 0.00062 0.00072 3.2 0.000 0.000 0.000 +2453938.5 1.19425 2.77824 -32817411.2 0.00065 0.00075 4.5 0.000 0.000 0.000 +2453939.5 1.18762 2.76916 -32817181.3 0.00062 0.00071 3.8 0.000 0.000 0.000 +2453940.5 1.18003 2.75912 -32816918.4 0.00043 0.00055 3.8 0.000 0.000 0.000 +2453941.5 1.17334 2.74682 -32816761.6 0.00025 0.00033 4.5 0.000 0.000 0.000 +2453942.5 1.16951 2.73611 -32816731.2 0.00056 0.00053 4.1 0.000 0.000 0.000 +2453943.5 1.16543 2.72886 -32816865.2 0.00056 0.00053 4.4 0.000 0.000 0.000 +2453944.5 1.16188 2.72405 -32817105.9 0.00057 0.00053 4.1 0.000 0.000 0.000 +2453945.5 1.16005 2.72503 -32817453.8 0.00059 0.00054 9.2 0.000 0.000 0.000 +2453946.5 1.15121 2.72426 -32817886.1 0.00063 0.00051 8.7 0.000 0.000 0.000 +2453947.5 1.13810 2.71849 -32818353.5 0.00063 0.00049 9.0 0.000 0.000 0.000 +2453948.5 1.12591 2.71156 -32818815.5 0.00041 0.00030 11.1 0.000 0.000 0.000 +2453949.5 1.11350 2.70623 -32819205.7 0.00047 0.00042 8.0 0.000 0.000 0.000 +2453950.5 1.10302 2.69937 -32819426.8 0.00047 0.00041 8.2 0.000 0.000 0.000 +2453951.5 1.09321 2.68932 -32819501.2 0.00047 0.00041 7.3 0.000 0.000 0.000 +2453952.5 1.08831 2.67851 -32819454.9 0.00040 0.00044 7.3 0.000 0.000 0.000 +2453953.5 1.08548 2.66536 -32819293.6 0.00038 0.00047 5.2 0.000 0.000 0.000 +2453954.5 1.08392 2.65238 -32819089.8 0.00033 0.00044 4.2 0.000 0.000 0.000 +2453955.5 1.08458 2.64148 -32819006.4 0.00021 0.00030 4.5 0.000 0.000 0.000 +2453956.5 1.08411 2.63491 -32819164.7 0.00039 0.00047 2.7 0.000 0.000 0.000 +2453957.5 1.07844 2.62775 -32819667.7 0.00040 0.00046 2.9 0.000 0.000 0.000 +2453958.5 1.06869 2.61760 -32820505.2 0.00040 0.00047 3.3 0.000 0.000 0.000 +2453959.5 1.06008 2.60862 -32821563.6 0.00041 0.00044 3.9 0.000 0.000 0.000 +2453960.5 1.05182 2.60078 -32822678.8 0.00041 0.00043 3.9 0.000 0.000 0.000 +2453961.5 1.04411 2.59435 -32823641.7 0.00042 0.00043 4.4 0.000 0.000 0.000 +2453962.5 1.03447 2.58983 -32824347.6 0.00033 0.00034 3.2 0.000 0.000 0.000 +2453963.5 1.02109 2.58652 -32824773.2 0.00033 0.00041 3.0 0.000 0.000 0.000 +2453964.5 1.00734 2.58061 -32824946.9 0.00034 0.00042 2.7 0.000 0.000 0.000 +2453965.5 0.99425 2.57341 -32824906.7 0.00034 0.00043 2.7 0.000 0.000 0.000 +2453966.5 0.98089 2.56598 -32824744.9 0.00035 0.00044 2.8 0.000 0.000 0.000 +2453967.5 0.96598 2.55910 -32824568.4 0.00033 0.00042 2.2 0.000 0.000 0.000 +2453968.5 0.95153 2.55492 -32824522.4 0.00024 0.00036 2.8 0.000 0.000 0.000 +2453969.5 0.94029 2.55260 -32824660.7 0.00045 0.00041 2.4 0.000 0.000 0.000 +2453970.5 0.92932 2.54936 -32824969.2 0.00053 0.00058 2.2 0.000 0.000 0.000 +2453971.5 0.91689 2.54445 -32825477.1 0.00053 0.00057 3.0 0.000 0.000 0.000 +2453972.5 0.90497 2.53968 -32826120.3 0.00054 0.00058 3.2 0.000 0.000 0.000 +2453973.5 0.89648 2.54017 -32826831.7 0.00058 0.00063 4.1 0.000 0.000 0.000 +2453974.5 0.88513 2.54198 -32827555.6 0.00056 0.00059 3.2 0.000 0.000 0.000 +2453975.5 0.87126 2.54248 -32828256.6 0.00040 0.00052 3.4 0.000 0.000 0.000 +2453976.5 0.85803 2.54129 -32828877.7 0.00031 0.00023 3.2 0.000 0.000 0.000 +2453977.5 0.84565 2.54153 -32829380.0 0.00040 0.00034 2.4 0.000 0.000 0.000 +2453978.5 0.83416 2.54157 -32829697.4 0.00040 0.00034 2.2 0.000 0.000 0.000 +2453979.5 0.82418 2.54255 -32829819.3 0.00040 0.00034 2.2 0.000 0.000 0.000 +2453980.5 0.81278 2.54310 -32829852.3 0.00040 0.00037 2.6 0.000 0.000 0.000 +2453981.5 0.79778 2.54368 -32829851.2 0.00040 0.00037 4.4 0.000 0.000 0.000 +2453982.5 0.78293 2.54400 -32829958.4 0.00033 0.00039 4.1 0.000 0.000 0.000 +2453983.5 0.77297 2.54409 -32830338.3 0.00013 0.00030 4.6 0.000 0.000 0.000 +2453984.5 0.76804 2.54555 -32831049.1 0.00016 0.00046 3.8 0.000 0.000 0.000 +2453985.5 0.76163 2.54817 -32832127.3 0.00017 0.00046 3.9 0.000 0.000 0.000 +2453986.5 0.75077 2.55008 -32833529.1 0.00017 0.00048 3.8 0.000 0.000 0.000 +2453987.5 0.73805 2.54907 -32835095.6 0.00017 0.00046 3.1 0.000 0.000 0.000 +2453988.5 0.72416 2.54559 -32836623.5 0.00030 0.00055 3.2 0.000 0.000 0.000 +2453989.5 0.70830 2.54186 -32837937.7 0.00041 0.00052 3.3 0.000 0.000 0.000 +2453990.5 0.69126 2.53810 -32838927.5 0.00042 0.00037 3.3 0.000 0.000 0.000 +2453991.5 0.67354 2.53338 -32839631.4 0.00047 0.00040 3.2 0.000 0.000 0.000 +2453992.5 0.65871 2.52662 -32840170.3 0.00047 0.00039 3.2 0.000 0.000 0.000 +2453993.5 0.64634 2.52204 -32840519.0 0.00048 0.00039 2.8 0.000 0.000 0.000 +2453994.5 0.63331 2.52138 -32840820.5 0.00046 0.00028 3.5 0.000 0.000 0.000 +2453995.5 0.61856 2.52203 -32841156.5 0.00044 0.00032 4.6 0.000 0.000 0.000 +2453996.5 0.60270 2.52339 -32841616.4 0.00049 0.00033 4.7 0.000 0.000 0.000 +2453997.5 0.58546 2.52707 -32842271.4 0.00043 0.00027 5.1 0.000 0.000 0.000 +2453998.5 0.56465 2.53012 -32843117.9 0.00066 0.00035 5.4 0.000 0.000 0.000 +2453999.5 0.54218 2.53203 -32844103.7 0.00065 0.00035 5.4 0.000 0.000 0.000 +2454000.5 0.51708 2.53254 -32845228.9 0.00066 0.00036 5.4 0.000 0.000 0.000 +2454001.5 0.49260 2.53118 -32846418.4 0.00065 0.00032 5.2 0.000 0.000 0.000 +2454002.5 0.47099 2.52911 -32847560.3 0.00065 0.00031 4.5 0.000 0.000 0.000 +2454003.5 0.45080 2.52684 -32848633.7 0.00065 0.00031 4.5 0.000 0.000 0.000 +2454004.5 0.43338 2.52347 -32849601.2 0.00039 0.00019 3.3 0.000 0.000 0.000 +2454005.5 0.41665 2.52129 -32850446.5 0.00052 0.00021 3.7 0.000 0.000 0.000 +2454006.5 0.39789 2.52202 -32851167.0 0.00052 0.00020 3.9 0.000 0.000 0.000 +2454007.5 0.37403 2.52294 -32851776.7 0.00051 0.00020 4.2 0.000 0.000 0.000 +2454008.5 0.35040 2.52401 -32852410.3 0.00047 0.00021 6.5 0.000 0.000 0.000 +2454009.5 0.32649 2.52632 -32853143.2 0.00053 0.00034 3.6 0.000 0.000 0.000 +2454010.5 0.30388 2.52861 -32853998.7 0.00052 0.00033 3.7 0.000 0.000 0.000 +2454011.5 0.28350 2.52996 -32855116.4 0.00040 0.00032 3.2 0.000 0.000 0.000 +2454012.5 0.27025 2.53431 -32856591.2 0.00039 0.00039 3.1 0.000 0.000 0.000 +2454013.5 0.26112 2.53915 -32858413.1 0.00040 0.00040 2.9 0.000 0.000 0.000 +2454014.5 0.25235 2.54222 -32860551.2 0.00039 0.00040 2.9 0.000 0.000 0.000 +2454015.5 0.24353 2.54654 -32862818.1 0.00027 0.00035 3.4 0.000 0.000 0.000 +2454016.5 0.23517 2.55276 -32864993.3 0.00032 0.00042 3.0 0.000 0.000 0.000 +2454017.5 0.22280 2.56212 -32866876.3 0.00030 0.00043 3.3 0.000 0.000 0.000 +2454018.5 0.20442 2.57170 -32868413.7 0.00029 0.00037 4.2 0.000 0.000 0.000 +2454019.5 0.18252 2.57951 -32869640.2 0.00048 0.00043 3.8 0.000 0.000 0.000 +2454020.5 0.15681 2.58219 -32870680.2 0.00049 0.00043 3.8 0.000 0.000 0.000 +2454021.5 0.13162 2.58032 -32871605.0 0.00050 0.00042 3.8 0.000 0.000 0.000 +2454022.5 0.11266 2.57769 -32872431.1 0.00050 0.00036 4.9 0.000 0.000 0.000 +2454023.5 0.09844 2.58018 -32873320.1 0.00048 0.00037 3.6 0.000 0.000 0.000 +2454024.5 0.08479 2.58868 -32874327.7 0.00048 0.00037 3.1 0.000 0.000 0.000 +2454025.5 0.07194 2.59823 -32875492.2 0.00027 0.00031 3.4 0.000 0.000 0.000 +2454026.5 0.06189 2.60687 -32876795.9 0.00038 0.00065 4.0 0.000 0.000 0.000 +2454027.5 0.05218 2.61541 -32878209.3 0.00038 0.00066 4.1 0.000 0.000 0.000 +2454028.5 0.04211 2.62188 -32879694.1 0.00038 0.00067 4.1 0.000 0.000 0.000 +2454029.5 0.03490 2.63092 -32881178.7 0.00038 0.00072 5.7 0.000 0.000 0.000 +2454030.5 0.02946 2.64049 -32882625.2 0.00044 0.00073 4.2 0.000 0.000 0.000 +2454031.5 0.02187 2.65080 -32883978.3 0.00045 0.00071 4.0 0.000 0.000 0.000 +2454032.5 0.01036 2.66237 -32885206.4 0.00034 0.00037 3.7 0.000 0.000 0.000 +2454033.5 -0.00545 2.67311 -32886257.7 0.00033 0.00037 4.0 0.000 0.000 0.000 +2454034.5 -0.01843 2.68005 -32887143.9 0.00034 0.00037 4.4 0.000 0.000 0.000 +2454035.5 -0.02496 2.68597 -32887950.2 0.00034 0.00036 4.4 0.000 0.000 0.000 +2454036.5 -0.02906 2.69089 -32888687.2 0.00022 0.00028 6.6 0.000 0.000 0.000 +2454037.5 -0.03159 2.69719 -32889488.1 0.00020 0.00035 3.9 0.000 0.000 0.000 +2454038.5 -0.03379 2.70675 -32890471.3 0.00020 0.00034 3.7 0.000 0.000 0.000 +2454039.5 -0.03803 2.71821 -32891724.4 0.00016 0.00032 1.9 0.000 0.000 0.000 +2454040.5 -0.04148 2.72905 -32893259.7 0.00038 0.00056 2.7 0.000 0.000 0.000 +2454041.5 -0.04310 2.74174 -32895099.5 0.00037 0.00057 2.7 0.000 0.000 0.000 +2454042.5 -0.04560 2.75244 -32897104.8 0.00038 0.00057 2.5 0.000 0.000 0.000 +2454043.5 -0.05121 2.76100 -32899084.0 0.00041 0.00058 3.6 0.000 0.000 0.000 +2454044.5 -0.05829 2.76860 -32900867.8 0.00046 0.00057 2.5 0.000 0.000 0.000 +2454045.5 -0.06550 2.77840 -32902276.3 0.00048 0.00057 3.2 0.000 0.000 0.000 +2454046.5 -0.07352 2.79400 -32903356.0 0.00044 0.00046 3.5 0.000 0.000 0.000 +2454047.5 -0.08866 2.81121 -32904165.4 0.00042 0.00051 3.9 0.000 0.000 0.000 +2454048.5 -0.10617 2.82328 -32904854.8 0.00042 0.00051 4.0 0.000 0.000 0.000 +2454049.5 -0.12427 2.83218 -32905530.6 0.00042 0.00050 4.2 0.000 0.000 0.000 +2454050.5 -0.13886 2.84019 -32906248.9 0.00037 0.00049 6.3 0.000 0.000 0.000 +2454051.5 -0.14876 2.84840 -32907194.7 0.00035 0.00045 4.5 0.000 0.000 0.000 +2454052.5 -0.15804 2.85819 -32908255.9 0.00024 0.00046 4.8 0.000 0.000 0.000 +2454053.5 -0.16853 2.86798 -32909440.1 0.00023 0.00036 4.6 0.000 0.000 0.000 +2454054.5 -0.17780 2.87571 -32910688.0 0.00033 0.00038 4.0 0.000 0.000 0.000 +2454055.5 -0.18619 2.88360 -32911911.5 0.00032 0.00038 3.8 0.000 0.000 0.000 +2454056.5 -0.19777 2.89369 -32913154.9 0.00034 0.00039 3.7 0.000 0.000 0.000 +2454057.5 -0.21255 2.90352 -32914344.0 0.00033 0.00041 4.4 0.000 0.000 0.000 +2454058.5 -0.22719 2.91052 -32915421.8 0.00031 0.00022 2.7 0.000 0.000 0.000 +2454059.5 -0.24216 2.91616 -32916385.3 0.00044 0.00032 2.7 0.000 0.000 0.000 +2454060.5 -0.25691 2.92240 -32917222.3 0.00039 0.00030 2.7 0.000 0.000 0.000 +2454061.5 -0.26869 2.93285 -32917927.8 0.00038 0.00030 2.6 0.000 0.000 0.000 +2454062.5 -0.28136 2.94642 -32918537.2 0.00038 0.00030 2.7 0.000 0.000 0.000 +2454063.5 -0.29671 2.96139 -32919074.9 0.00038 0.00031 2.7 0.000 0.000 0.000 +2454064.5 -0.31289 2.97639 -32919681.2 0.00038 0.00035 3.4 0.000 0.000 0.000 +2454065.5 -0.32942 2.99137 -32920491.1 0.00014 0.00039 2.5 0.000 0.000 0.000 +2454066.5 -0.34528 3.00484 -32921586.5 0.00014 0.00039 2.6 0.000 0.000 0.000 +2454067.5 -0.35827 3.01381 -32922978.7 0.00014 0.00040 2.8 0.000 0.000 0.000 +2454068.5 -0.36702 3.02217 -32924616.4 0.00038 0.00050 4.0 0.000 0.000 0.000 +2454069.5 -0.37462 3.03197 -32926395.1 0.00038 0.00050 4.0 0.000 0.000 0.000 +2454070.5 -0.38200 3.04186 -32928197.0 0.00039 0.00050 3.9 0.000 0.000 0.000 +2454071.5 -0.38559 3.05229 -32929872.2 0.00041 0.00043 5.5 0.000 0.000 0.000 +2454072.5 -0.38619 3.06779 -32931255.4 0.00046 0.00042 3.9 0.000 0.000 0.000 +2454073.5 -0.38682 3.08648 -32932359.0 0.00047 0.00041 3.8 0.000 0.000 0.000 +2454074.5 -0.38893 3.10467 -32933247.5 0.00029 0.00033 2.6 0.000 0.000 0.000 +2454075.5 -0.39326 3.12316 -32933999.9 0.00028 0.00031 2.7 0.000 0.000 0.000 +2454076.5 -0.40301 3.14243 -32934688.2 0.00028 0.00031 3.4 0.000 0.000 0.000 +2454077.5 -0.41515 3.16191 -32935493.0 0.00028 0.00032 3.3 0.000 0.000 0.000 +2454078.5 -0.42564 3.17707 -32936440.1 0.00012 0.00032 5.0 0.000 0.000 0.000 +2454079.5 -0.43433 3.18865 -32937571.3 0.00027 0.00035 3.6 0.000 0.000 0.000 +2454080.5 -0.44219 3.19806 -32938862.4 0.00031 0.00037 3.4 0.000 0.000 0.000 +2454081.5 -0.44924 3.20755 -32940246.2 0.00033 0.00037 3.4 0.000 0.000 0.000 +2454082.5 -0.45627 3.22300 -32941692.6 0.00055 0.00042 2.5 0.000 0.000 0.000 +2454083.5 -0.46672 3.23816 -32943090.3 0.00055 0.00042 3.1 0.000 0.000 0.000 +2454084.5 -0.47993 3.25176 -32944351.5 0.00055 0.00042 3.2 0.000 0.000 0.000 +2454085.5 -0.48960 3.26556 -32945568.0 0.00053 0.00041 4.2 0.000 0.000 0.000 +2454086.5 -0.49622 3.27996 -32946608.8 0.00048 0.00029 5.2 0.000 0.000 0.000 +2454087.5 -0.50128 3.29500 -32947432.2 0.00047 0.00029 5.1 0.000 0.000 0.000 +2454088.5 -0.50563 3.30997 -32948132.8 0.00015 0.00019 6.1 0.000 0.000 0.000 +2454089.5 -0.51154 3.32222 -32948745.7 0.00022 0.00026 4.9 0.000 0.000 0.000 +2454090.5 -0.51995 3.33105 -32949272.6 0.00022 0.00026 4.8 0.000 0.000 0.000 +2454091.5 -0.52579 3.33632 -32949809.4 0.00023 0.00028 4.7 0.000 0.000 0.000 +2454092.5 -0.52614 3.34162 -32950520.6 0.00022 0.00026 4.1 0.000 0.000 0.000 +2454093.5 -0.52092 3.35249 -32951466.1 0.00022 0.00026 4.0 0.000 0.000 0.000 +2454094.5 -0.51348 3.36840 -32952687.2 0.00022 0.00026 3.6 0.000 0.000 0.000 +2454095.5 -0.50775 3.38625 -32954153.0 0.00020 0.00021 3.7 0.000 0.000 0.000 +2454096.5 -0.50466 3.40403 -32955780.7 0.00032 0.00053 3.5 0.000 0.000 0.000 +2454097.5 -0.50261 3.42122 -32957427.9 0.00033 0.00053 3.6 0.000 0.000 0.000 +2454098.5 -0.49857 3.43956 -32958974.6 0.00033 0.00054 3.6 0.000 0.000 0.000 +2454099.5 -0.49538 3.45410 -32960392.3 0.00034 0.00054 3.5 0.000 0.000 0.000 +2454100.5 -0.49415 3.46450 -32961536.3 0.00038 0.00055 3.6 0.000 0.000 0.000 +2454101.5 -0.49474 3.47382 -32962403.4 0.00072 0.00067 4.3 0.000 0.000 0.000 +2454102.5 -0.49987 3.48576 -32963058.6 0.00071 0.00044 5.8 0.000 0.000 0.000 +2454103.5 -0.51319 3.50040 -32963597.3 0.00077 0.00050 3.9 0.000 0.000 0.000 +2454104.5 -0.52954 3.51310 -32964141.8 0.00077 0.00050 4.1 0.000 0.000 0.000 +2454105.5 -0.54532 3.52727 -32964737.7 0.00078 0.00050 4.5 0.000 0.000 0.000 +2454106.5 -0.55920 3.54206 -32965536.2 0.00075 0.00050 5.4 0.000 0.000 0.000 +2454107.5 -0.56752 3.55620 -32966526.1 0.00044 0.00038 8.3 0.000 0.000 0.000 +2454108.5 -0.57197 3.57170 -32967667.6 0.00053 0.00038 4.8 0.000 0.000 0.000 +2454109.5 -0.57585 3.59058 -32968934.1 0.00041 0.00028 5.6 0.000 0.000 0.000 +2454110.5 -0.58132 3.61263 -32970284.5 0.00038 0.00047 5.8 0.000 0.000 0.000 +2454111.5 -0.58971 3.63095 -32971652.4 0.00038 0.00047 5.8 0.000 0.000 0.000 +2454112.5 -0.59159 3.64752 -32972921.1 0.00040 0.00046 5.5 0.000 0.000 0.000 +2454113.5 -0.58723 3.66424 -32974140.6 0.00040 0.00046 4.6 0.000 0.000 0.000 +2454114.5 -0.58380 3.68143 -32975229.1 0.00021 0.00048 5.3 0.000 0.000 0.000 +2454115.5 -0.57992 3.69733 -32976158.7 0.00020 0.00048 5.1 0.000 0.000 0.000 +2454116.5 -0.57396 3.71511 -32976973.2 0.00019 0.00027 3.6 0.000 0.000 0.000 +2454117.5 -0.56979 3.73232 -32977800.1 0.00032 0.00043 3.3 0.000 0.000 0.000 +2454118.5 -0.56520 3.75034 -32978600.7 0.00030 0.00044 3.1 0.000 0.000 0.000 +2454119.5 -0.56002 3.77229 -32979537.4 0.00031 0.00045 3.2 0.000 0.000 0.000 +2454120.5 -0.55732 3.79736 -32980776.7 0.00033 0.00045 4.9 0.000 0.000 0.000 +2454121.5 -0.55614 3.81723 -32982321.0 0.00036 0.00051 3.2 0.000 0.000 0.000 +2454122.5 -0.55358 3.83398 -32984139.8 0.00037 0.00051 3.0 0.000 0.000 0.000 +2454123.5 -0.55054 3.85104 -32986180.8 0.00041 0.00064 2.7 0.000 0.000 0.000 +2454124.5 -0.54841 3.87041 -32988323.6 0.00056 0.00069 2.4 0.000 0.000 0.000 +2454125.5 -0.54716 3.88800 -32990380.9 0.00055 0.00067 2.3 0.000 0.000 0.000 +2454126.5 -0.54431 3.90521 -32992208.7 0.00056 0.00068 2.6 0.000 0.000 0.000 +2454127.5 -0.53761 3.92217 -32993792.5 0.00057 0.00067 3.1 0.000 0.000 0.000 +2454128.5 -0.52927 3.93915 -32995100.6 0.00058 0.00065 3.3 0.000 0.000 0.000 +2454129.5 -0.51903 3.95793 -32996181.6 0.00051 0.00039 4.1 0.000 0.000 0.000 +2454130.5 -0.50909 3.97789 -32997170.1 0.00025 0.00018 7.0 0.000 0.000 0.000 +2454131.5 -0.50266 3.99575 -32998167.5 0.00026 0.00028 5.5 0.000 0.000 0.000 +2454132.5 -0.49839 4.01091 -32999263.8 0.00027 0.00028 5.3 0.000 0.000 0.000 +2454133.5 -0.49180 4.02180 -33000520.1 0.00027 0.00029 5.0 0.000 0.000 0.000 +2454134.5 -0.47728 4.03104 -33001958.9 0.00021 0.00028 5.3 0.000 0.000 0.000 +2454135.5 -0.45739 4.04289 -33003539.1 0.00025 0.00051 3.0 0.000 0.000 0.000 +2454136.5 -0.43569 4.05844 -33005208.0 0.00025 0.00051 3.2 0.000 0.000 0.000 +2454137.5 -0.41289 4.07883 -33006922.0 0.00026 0.00051 2.6 0.000 0.000 0.000 +2454138.5 -0.39595 4.10210 -33008606.6 0.00032 0.00060 2.4 0.000 0.000 0.000 +2454139.5 -0.38567 4.12665 -33010216.3 0.00032 0.00060 2.7 0.000 0.000 0.000 +2454140.5 -0.37808 4.14900 -33011661.4 0.00032 0.00061 2.7 0.000 0.000 0.000 +2454141.5 -0.36918 4.16799 -33012933.1 0.00031 0.00048 4.3 0.000 0.000 0.000 +2454142.5 -0.36027 4.18449 -33014049.9 0.00047 0.00053 4.5 0.000 0.000 0.000 +2454143.5 -0.35009 4.20140 -33015004.0 0.00047 0.00052 4.5 0.000 0.000 0.000 +2454144.5 -0.33804 4.22012 -33015806.1 0.00051 0.00044 5.5 0.000 0.000 0.000 +2454145.5 -0.32684 4.23573 -33016546.8 0.00052 0.00046 5.6 0.000 0.000 0.000 +2454146.5 -0.31549 4.25269 -33017288.6 0.00052 0.00046 5.7 0.000 0.000 0.000 +2454147.5 -0.30903 4.26773 -33018124.3 0.00052 0.00046 6.1 0.000 0.000 0.000 +2454148.5 -0.30353 4.27907 -33019133.7 0.00039 0.00062 7.5 0.000 0.000 0.000 +2454149.5 -0.29565 4.29199 -33020366.5 0.00039 0.00063 7.8 0.000 0.000 0.000 +2454150.5 -0.28635 4.30615 -33021875.6 0.00028 0.00060 6.8 0.000 0.000 0.000 +2454151.5 -0.27789 4.32022 -33023471.9 0.00018 0.00061 8.0 0.000 0.000 0.000 +2454152.5 -0.26992 4.33439 -33025001.6 0.00017 0.00065 5.5 0.000 0.000 0.000 +2454153.5 -0.25599 4.34601 -33026291.5 0.00017 0.00065 4.9 0.000 0.000 0.000 +2454154.5 -0.23559 4.36061 -33027274.7 0.00019 0.00047 4.2 0.000 0.000 0.000 +2454155.5 -0.21326 4.37134 -33028032.5 0.00023 0.00048 4.2 0.000 0.000 0.000 +2454156.5 -0.19248 4.38141 -33028575.6 0.00025 0.00054 3.8 0.000 0.000 0.000 +2454157.5 -0.17525 4.39285 -33029017.0 0.00024 0.00053 3.8 0.000 0.000 0.000 +2454158.5 -0.15946 4.40388 -33029437.7 0.00026 0.00044 4.3 0.000 0.000 0.000 +2454159.5 -0.14705 4.42059 -33029925.2 0.00029 0.00044 3.5 0.000 0.000 0.000 +2454160.5 -0.13828 4.43757 -33030535.8 0.00029 0.00045 3.5 0.000 0.000 0.000 +2454161.5 -0.13171 4.45638 -33031302.1 0.00027 0.00044 2.9 0.000 0.000 0.000 +2454162.5 -0.12819 4.47451 -33032254.6 0.00024 0.00021 3.3 0.000 0.000 0.000 +2454163.5 -0.12347 4.48858 -33033342.6 0.00037 0.00024 2.2 0.000 0.000 0.000 +2454164.5 -0.11691 4.50128 -33034540.1 0.00055 0.00040 2.4 0.000 0.000 0.000 +2454165.5 -0.11174 4.51313 -33035777.5 0.00056 0.00040 2.9 0.000 0.000 0.000 +2454166.5 -0.10685 4.52367 -33036980.6 0.00055 0.00040 2.9 0.000 0.000 0.000 +2454167.5 -0.09906 4.53824 -33038160.4 0.00055 0.00039 2.8 0.000 0.000 0.000 +2454168.5 -0.09073 4.55054 -33039228.7 0.00056 0.00040 3.6 0.000 0.000 0.000 +2454169.5 -0.08185 4.56004 -33040122.7 0.00053 0.00043 7.2 0.000 0.000 0.000 +2454170.5 -0.07308 4.56884 -33040860.1 0.00013 0.00035 3.9 0.000 0.000 0.000 +2454171.5 -0.06482 4.57721 -33041471.0 0.00014 0.00035 3.7 0.000 0.000 0.000 +2454172.5 -0.05836 4.58831 -33042022.7 0.00015 0.00035 3.9 0.000 0.000 0.000 +2454173.5 -0.05328 4.59895 -33042598.9 0.00023 0.00034 3.6 0.000 0.000 0.000 +2454174.5 -0.04464 4.60991 -33043280.1 0.00023 0.00035 2.8 0.000 0.000 0.000 +2454175.5 -0.02891 4.62157 -33044211.9 0.00023 0.00034 2.9 0.000 0.000 0.000 +2454176.5 -0.00921 4.63430 -33045533.6 0.00024 0.00021 5.0 0.000 0.000 0.000 +2454177.5 0.01201 4.64759 -33047270.0 0.00021 0.00027 2.9 0.000 0.000 0.000 +2454178.5 0.03271 4.66619 -33049265.3 0.00020 0.00027 2.8 0.000 0.000 0.000 +2454179.5 0.05051 4.68952 -33051366.4 0.00010 0.00026 3.1 0.000 0.000 0.000 +2454180.5 0.06303 4.70708 -33053399.8 0.00017 0.00056 2.7 0.000 0.000 0.000 +2454181.5 0.06941 4.71711 -33055120.4 0.00018 0.00055 2.8 0.000 0.000 0.000 +2454182.5 0.07397 4.72266 -33056415.2 0.00019 0.00056 2.3 0.000 0.000 0.000 +2454183.5 0.08300 4.72967 -33057354.9 0.00023 0.00058 3.9 0.000 0.000 0.000 +2454184.5 0.09521 4.73507 -33058113.6 0.00028 0.00053 2.5 0.000 0.000 0.000 +2454185.5 0.10645 4.74093 -33058816.4 0.00029 0.00052 2.2 0.000 0.000 0.000 +2454186.5 0.11706 4.74804 -33059543.3 0.00026 0.00024 2.3 0.000 0.000 0.000 +2454187.5 0.13426 4.75557 -33060398.0 0.00028 0.00040 2.0 0.000 0.000 0.000 +2454188.5 0.15713 4.76270 -33061450.3 0.00027 0.00040 2.1 0.000 0.000 0.000 +2454189.5 0.18138 4.77199 -33062653.1 0.00026 0.00040 2.2 0.000 0.000 0.000 +2454190.5 0.20371 4.78027 -33063969.2 0.00021 0.00042 3.4 0.000 0.000 0.000 +2454191.5 0.22655 4.78811 -33065371.3 0.00020 0.00038 2.7 0.000 0.000 0.000 +2454192.5 0.25212 4.79668 -33066889.5 0.00021 0.00038 2.8 0.000 0.000 0.000 +2454193.5 0.27947 4.80759 -33068446.7 0.00041 0.00044 2.9 0.000 0.000 0.000 +2454194.5 0.30672 4.82058 -33069973.5 0.00040 0.00043 2.8 0.000 0.000 0.000 +2454195.5 0.33178 4.83095 -33071422.7 0.00040 0.00043 2.7 0.000 0.000 0.000 +2454196.5 0.35729 4.84200 -33072771.8 0.00041 0.00043 2.4 0.000 0.000 0.000 +2454197.5 0.38109 4.85181 -33074025.4 0.00042 0.00047 3.6 0.000 0.000 0.000 +2454198.5 0.40052 4.85999 -33075252.8 0.00042 0.00046 3.4 0.000 0.000 0.000 +2454199.5 0.41429 4.86755 -33076454.2 0.00022 0.00033 2.2 0.000 0.000 0.000 +2454200.5 0.42599 4.87366 -33077642.4 0.00021 0.00033 2.7 0.000 0.000 0.000 +2454201.5 0.44056 4.87730 -33078893.5 0.00021 0.00041 2.4 0.000 0.000 0.000 +2454202.5 0.45508 4.88387 -33080270.1 0.00021 0.00041 2.4 0.000 0.000 0.000 +2454203.5 0.47043 4.88922 -33081848.6 0.00021 0.00042 2.4 0.000 0.000 0.000 +2454204.5 0.48703 4.89262 -33083749.8 0.00020 0.00042 2.4 0.000 0.000 0.000 +2454205.5 0.50404 4.89656 -33085884.6 0.00014 0.00033 3.7 0.000 0.000 0.000 +2454206.5 0.52239 4.90082 -33088166.8 0.00030 0.00033 2.3 0.000 0.000 0.000 +2454207.5 0.54267 4.90415 -33090420.5 0.00031 0.00020 2.7 0.000 0.000 0.000 +2454208.5 0.56373 4.90461 -33092426.1 0.00042 0.00041 3.5 0.000 0.000 0.000 +2454209.5 0.58153 4.90422 -33094064.7 0.00042 0.00041 3.5 0.000 0.000 0.000 +2454210.5 0.59730 4.90330 -33095311.9 0.00043 0.00041 3.7 0.000 0.000 0.000 +2454211.5 0.61300 4.90419 -33096252.3 0.00043 0.00041 4.2 0.000 0.000 0.000 +2454212.5 0.62603 4.90388 -33097058.9 0.00039 0.00039 3.5 0.000 0.000 0.000 +2454213.5 0.63827 4.90416 -33097887.4 0.00038 0.00039 3.6 0.000 0.000 0.000 +2454214.5 0.65285 4.90443 -33098805.4 0.00025 0.00013 3.6 0.000 0.000 0.000 +2454215.5 0.66853 4.90411 -33099824.7 0.00038 0.00023 3.5 0.000 0.000 0.000 +2454216.5 0.68853 4.90582 -33101004.7 0.00038 0.00023 3.3 0.000 0.000 0.000 +2454217.5 0.70927 4.91013 -33102324.6 0.00038 0.00024 2.8 0.000 0.000 0.000 +2454218.5 0.73099 4.91207 -33103770.2 0.00036 0.00025 5.5 0.000 0.000 0.000 +2454219.5 0.75171 4.91206 -33105252.8 0.00036 0.00025 5.0 0.000 0.000 0.000 +2454220.5 0.77185 4.91163 -33106702.9 0.00035 0.00025 5.7 0.000 0.000 0.000 +2454221.5 0.79102 4.91111 -33108064.5 0.00030 0.00017 7.4 0.000 0.000 0.000 +2454222.5 0.80902 4.90968 -33109293.2 0.00030 0.00041 5.2 0.000 0.000 0.000 +2454223.5 0.82754 4.90557 -33110391.5 0.00030 0.00040 5.1 0.000 0.000 0.000 +2454224.5 0.85064 4.89869 -33111338.4 0.00031 0.00041 5.2 0.000 0.000 0.000 +2454225.5 0.87398 4.89216 -33112161.8 0.00032 0.00041 5.1 0.000 0.000 0.000 +2454226.5 0.89578 4.88298 -33112876.7 0.00031 0.00039 3.2 0.000 0.000 0.000 +2454227.5 0.91650 4.87332 -33113519.5 0.00018 0.00039 2.2 0.000 0.000 0.000 +2454228.5 0.93610 4.86559 -33114218.1 0.00017 0.00012 2.2 0.000 0.000 0.000 +2454229.5 0.95449 4.85840 -33115132.8 0.00026 0.00027 3.4 0.000 0.000 0.000 +2454230.5 0.97459 4.85030 -33116317.8 0.00025 0.00027 3.5 0.000 0.000 0.000 +2454231.5 0.99549 4.84464 -33117820.5 0.00025 0.00028 3.4 0.000 0.000 0.000 +2454232.5 1.01575 4.83900 -33119667.9 0.00025 0.00028 5.9 0.000 0.000 0.000 +2454233.5 1.03851 4.83211 -33121814.7 0.00026 0.00032 3.4 0.000 0.000 0.000 +2454234.5 1.06513 4.82475 -33124026.4 0.00025 0.00031 3.4 0.000 0.000 0.000 +2454235.5 1.09435 4.81694 -33126099.8 0.00018 0.00022 3.2 0.000 0.000 0.000 +2454236.5 1.12281 4.80902 -33127850.1 0.00048 0.00041 2.9 0.000 0.000 0.000 +2454237.5 1.14859 4.80012 -33129220.8 0.00048 0.00042 4.1 0.000 0.000 0.000 +2454238.5 1.17084 4.78982 -33130319.8 0.00049 0.00043 4.0 0.000 0.000 0.000 +2454239.5 1.19159 4.78047 -33131229.4 0.00053 0.00044 8.1 0.000 0.000 0.000 +2454240.5 1.20893 4.76878 -33132101.8 0.00052 0.00045 5.2 0.000 0.000 0.000 +2454241.5 1.22481 4.75484 -33133030.5 0.00052 0.00044 5.5 0.000 0.000 0.000 +2454242.5 1.24333 4.74069 -33133947.0 0.00024 0.00025 6.6 0.000 0.000 0.000 +2454243.5 1.26666 4.73168 -33134925.5 0.00029 0.00031 5.4 0.000 0.000 0.000 +2454244.5 1.29011 4.72662 -33136048.3 0.00028 0.00030 5.4 0.000 0.000 0.000 +2454245.5 1.31426 4.71977 -33137330.6 0.00028 0.00030 4.0 0.000 0.000 0.000 +2454246.5 1.33669 4.71091 -33138634.4 0.00024 0.00025 8.6 0.000 0.000 0.000 +2454247.5 1.35506 4.70179 -33139876.5 0.00023 0.00029 6.2 0.000 0.000 0.000 +2454248.5 1.37145 4.68933 -33141012.3 0.00022 0.00030 3.2 0.000 0.000 0.000 +2454249.5 1.38830 4.67424 -33142000.0 0.00013 0.00022 3.5 0.000 0.000 0.000 +2454250.5 1.40812 4.65685 -33142821.8 0.00029 0.00024 3.7 0.000 0.000 0.000 +2454251.5 1.43398 4.63877 -33143472.8 0.00030 0.00024 4.1 0.000 0.000 0.000 +2454252.5 1.46361 4.62101 -33143940.3 0.00030 0.00024 4.2 0.000 0.000 0.000 +2454253.5 1.49120 4.60482 -33144216.2 0.00031 0.00021 4.3 0.000 0.000 0.000 +2454254.5 1.51563 4.58923 -33144377.2 0.00031 0.00020 4.0 0.000 0.000 0.000 +2454255.5 1.53897 4.57350 -33144563.5 0.00031 0.00020 4.0 0.000 0.000 0.000 +2454256.5 1.56398 4.55993 -33144929.0 0.00017 0.00020 4.0 0.000 0.000 0.000 +2454257.5 1.58704 4.54708 -33145515.6 0.00035 0.00060 3.1 0.000 0.000 0.000 +2454258.5 1.60587 4.53204 -33146287.3 0.00035 0.00060 3.2 0.000 0.000 0.000 +2454259.5 1.62328 4.51350 -33147245.4 0.00035 0.00060 3.5 0.000 0.000 0.000 +2454260.5 1.64433 4.50035 -33148321.0 0.00038 0.00065 6.3 0.000 0.000 0.000 +2454261.5 1.66753 4.48655 -33149450.8 0.00046 0.00065 6.0 0.000 0.000 0.000 +2454262.5 1.69132 4.47205 -33150548.9 0.00046 0.00064 6.0 0.000 0.000 0.000 +2454263.5 1.71365 4.45439 -33151458.6 0.00033 0.00029 7.4 0.000 0.000 0.000 +2454264.5 1.73326 4.43305 -33152053.0 0.00033 0.00040 6.9 0.000 0.000 0.000 +2454265.5 1.75045 4.41191 -33152328.5 0.00033 0.00040 6.7 0.000 0.000 0.000 +2454266.5 1.76641 4.39213 -33152367.2 0.00033 0.00040 6.6 0.000 0.000 0.000 +2454267.5 1.78367 4.37147 -33152297.6 0.00016 0.00035 8.6 0.000 0.000 0.000 +2454268.5 1.80312 4.35329 -33152303.8 0.00036 0.00049 6.9 0.000 0.000 0.000 +2454269.5 1.82490 4.33597 -33152492.7 0.00037 0.00049 6.0 0.000 0.000 0.000 +2454270.5 1.84848 4.32013 -33152866.5 0.00037 0.00042 6.2 0.000 0.000 0.000 +2454271.5 1.87138 4.30645 -33153425.9 0.00042 0.00085 6.1 0.000 0.000 0.000 +2454272.5 1.89388 4.29261 -33154130.7 0.00043 0.00085 6.4 0.000 0.000 0.000 +2454273.5 1.91582 4.27082 -33154883.0 0.00043 0.00086 6.5 0.000 0.000 0.000 +2454274.5 1.93623 4.24956 -33155591.4 0.00031 0.00084 8.5 0.000 0.000 0.000 +2454275.5 1.95700 4.22827 -33156210.5 0.00034 0.00081 6.0 0.000 0.000 0.000 +2454276.5 1.98031 4.20832 -33156727.7 0.00049 0.00081 6.0 0.000 0.000 0.000 +2454277.5 2.00756 4.19153 -33157098.4 0.00063 0.00034 5.9 0.000 0.000 0.000 +2454278.5 2.03313 4.17706 -33157329.8 0.00064 0.00053 5.7 0.000 0.000 0.000 +2454279.5 2.05238 4.16376 -33157424.5 0.00064 0.00054 6.0 0.000 0.000 0.000 +2454280.5 2.06765 4.14905 -33157415.9 0.00065 0.00055 5.6 0.000 0.000 0.000 +2454281.5 2.07924 4.13295 -33157377.3 0.00066 0.00056 8.6 0.000 0.000 0.000 +2454282.5 2.08645 4.11621 -33157336.6 0.00051 0.00049 6.0 0.000 0.000 0.000 +2454283.5 2.09139 4.09537 -33157420.6 0.00028 0.00048 6.0 0.000 0.000 0.000 +2454284.5 2.09813 4.07237 -33157734.1 0.00021 0.00022 5.9 0.000 0.000 0.000 +2454285.5 2.10720 4.05113 -33158300.3 0.00049 0.00028 5.9 0.000 0.000 0.000 +2454286.5 2.11816 4.03046 -33159068.4 0.00049 0.00032 5.7 0.000 0.000 0.000 +2454287.5 2.13182 4.00856 -33159980.5 0.00049 0.00031 5.2 0.000 0.000 0.000 +2454288.5 2.14349 3.98635 -33160938.4 0.00053 0.00031 10.8 0.000 0.000 0.000 +2454289.5 2.15174 3.96274 -33161818.7 0.00049 0.00035 5.6 0.000 0.000 0.000 +2454290.5 2.15842 3.93738 -33162453.2 0.00061 0.00048 5.8 0.000 0.000 0.000 +2454291.5 2.16728 3.91001 -33162775.7 0.00043 0.00044 5.0 0.000 0.000 0.000 +2454292.5 2.17638 3.88246 -33162856.9 0.00045 0.00043 5.4 0.000 0.000 0.000 +2454293.5 2.18507 3.85720 -33162718.9 0.00046 0.00043 5.4 0.000 0.000 0.000 +2454294.5 2.19521 3.83128 -33162471.1 0.00045 0.00042 4.5 0.000 0.000 0.000 +2454295.5 2.20776 3.80459 -33162173.9 0.00046 0.00041 7.3 0.000 0.000 0.000 +2454296.5 2.22031 3.77859 -33161995.9 0.00029 0.00029 4.0 0.000 0.000 0.000 +2454297.5 2.23242 3.75357 -33161989.5 0.00028 0.00029 4.0 0.000 0.000 0.000 +2454298.5 2.24519 3.73000 -33162156.3 0.00021 0.00025 3.0 0.000 0.000 0.000 +2454299.5 2.25911 3.70462 -33162480.5 0.00033 0.00042 3.0 0.000 0.000 0.000 +2454300.5 2.27070 3.67989 -33162882.2 0.00033 0.00043 2.9 0.000 0.000 0.000 +2454301.5 2.27835 3.65454 -33163261.9 0.00034 0.00043 2.9 0.000 0.000 0.000 +2454302.5 2.28525 3.62596 -33163555.0 0.00030 0.00041 6.8 0.000 0.000 0.000 +2454303.5 2.29140 3.59692 -33163723.1 0.00031 0.00043 5.3 0.000 0.000 0.000 +2454304.5 2.29715 3.57067 -33163713.1 0.00031 0.00043 5.2 0.000 0.000 0.000 +2454305.5 2.30134 3.55045 -33163512.2 0.00016 0.00025 6.3 0.000 0.000 0.000 +2454306.5 2.30224 3.52902 -33163126.4 0.00040 0.00024 5.0 0.000 0.000 0.000 +2454307.5 2.30248 3.50657 -33162571.6 0.00040 0.00024 5.2 0.000 0.000 0.000 +2454308.5 2.30096 3.48383 -33161950.7 0.00041 0.00023 4.0 0.000 0.000 0.000 +2454309.5 2.29220 3.45804 -33161355.2 0.00043 0.00015 4.9 0.000 0.000 0.000 +2454310.5 2.28547 3.42913 -33160925.5 0.00042 0.00017 3.7 0.000 0.000 0.000 +2454311.5 2.28111 3.40020 -33160738.7 0.00042 0.00018 3.6 0.000 0.000 0.000 +2454312.5 2.27635 3.37072 -33160823.6 0.00019 0.00016 4.5 0.000 0.000 0.000 +2454313.5 2.27045 3.34183 -33161188.1 0.00024 0.00045 3.9 0.000 0.000 0.000 +2454314.5 2.26613 3.31500 -33161813.8 0.00024 0.00045 4.7 0.000 0.000 0.000 +2454315.5 2.26354 3.29205 -33162607.3 0.00025 0.00045 4.7 0.000 0.000 0.000 +2454316.5 2.25966 3.26478 -33163362.8 0.00024 0.00047 6.5 0.000 0.000 0.000 +2454317.5 2.25300 3.23645 -33163959.5 0.00038 0.00047 5.4 0.000 0.000 0.000 +2454318.5 2.24142 3.20960 -33164303.8 0.00038 0.00048 5.6 0.000 0.000 0.000 +2454319.5 2.22910 3.18526 -33164351.2 0.00040 0.00042 6.6 0.000 0.000 0.000 +2454320.5 2.21390 3.16024 -33164138.3 0.00040 0.00060 4.4 0.000 0.000 0.000 +2454321.5 2.19673 3.13384 -33163750.8 0.00040 0.00060 4.4 0.000 0.000 0.000 +2454322.5 2.18117 3.10963 -33163287.8 0.00040 0.00061 4.3 0.000 0.000 0.000 +2454323.5 2.17263 3.08233 -33162905.5 0.00027 0.00064 5.2 0.000 0.000 0.000 +2454324.5 2.16916 3.05689 -33162726.8 0.00029 0.00062 3.7 0.000 0.000 0.000 +2454325.5 2.16684 3.03303 -33162746.2 0.00022 0.00051 3.4 0.000 0.000 0.000 +2454326.5 2.16231 3.01100 -33162892.2 0.00018 0.00019 5.3 0.000 0.000 0.000 +2454327.5 2.15431 2.99105 -33163132.4 0.00025 0.00023 5.3 0.000 0.000 0.000 +2454328.5 2.14161 2.97396 -33163408.1 0.00025 0.00024 5.2 0.000 0.000 0.000 +2454329.5 2.12706 2.95415 -33163639.3 0.00029 0.00024 4.6 0.000 0.000 0.000 +2454330.5 2.11593 2.92843 -33163856.5 0.00028 0.00021 7.4 0.000 0.000 0.000 +2454331.5 2.10844 2.89919 -33163992.6 0.00027 0.00034 4.1 0.000 0.000 0.000 +2454332.5 2.10429 2.86949 -33164001.4 0.00028 0.00034 3.7 0.000 0.000 0.000 +2454333.5 2.10256 2.84205 -33163852.6 0.00022 0.00033 3.6 0.000 0.000 0.000 +2454334.5 2.09608 2.82009 -33163545.2 0.00023 0.00035 3.3 0.000 0.000 0.000 +2454335.5 2.08351 2.79692 -33163114.9 0.00018 0.00036 3.7 0.000 0.000 0.000 +2454336.5 2.06604 2.77326 -33162611.5 0.00018 0.00036 3.6 0.000 0.000 0.000 +2454337.5 2.04755 2.74955 -33162172.9 0.00016 0.00025 6.8 0.000 0.000 0.000 +2454338.5 2.03034 2.72537 -33161902.1 0.00019 0.00030 4.3 0.000 0.000 0.000 +2454339.5 2.01801 2.70357 -33161899.4 0.00019 0.00029 3.9 0.000 0.000 0.000 +2454340.5 2.00908 2.68540 -33162205.5 0.00017 0.00025 4.8 0.000 0.000 0.000 +2454341.5 2.00103 2.67006 -33162842.6 0.00026 0.00029 4.0 0.000 0.000 0.000 +2454342.5 1.99372 2.65470 -33163711.3 0.00025 0.00029 3.9 0.000 0.000 0.000 +2454343.5 1.98743 2.63727 -33164689.0 0.00025 0.00029 3.3 0.000 0.000 0.000 +2454344.5 1.97876 2.61869 -33165640.0 0.00023 0.00023 4.7 0.000 0.000 0.000 +2454345.5 1.96721 2.59817 -33166397.7 0.00023 0.00022 6.3 0.000 0.000 0.000 +2454346.5 1.95362 2.57807 -33166887.0 0.00031 0.00026 2.9 0.000 0.000 0.000 +2454347.5 1.94048 2.55844 -33167120.3 0.00025 0.00020 3.0 0.000 0.000 0.000 +2454348.5 1.92597 2.53857 -33167183.7 0.00035 0.00043 3.2 0.000 0.000 0.000 +2454349.5 1.90612 2.51795 -33167226.2 0.00034 0.00043 3.7 0.000 0.000 0.000 +2454350.5 1.88584 2.49761 -33167352.5 0.00035 0.00044 3.7 0.000 0.000 0.000 +2454351.5 1.86880 2.47690 -33167645.7 0.00036 0.00044 3.4 0.000 0.000 0.000 +2454352.5 1.85580 2.46004 -33168150.0 0.00036 0.00045 4.4 0.000 0.000 0.000 +2454353.5 1.84350 2.44378 -33168868.7 0.00044 0.00047 4.8 0.000 0.000 0.000 +2454354.5 1.82797 2.42577 -33169697.8 0.00036 0.00029 5.3 0.000 0.000 0.000 +2454355.5 1.81146 2.40536 -33170592.7 0.00041 0.00035 4.1 0.000 0.000 0.000 +2454356.5 1.79256 2.38394 -33171554.7 0.00041 0.00035 4.1 0.000 0.000 0.000 +2454357.5 1.77338 2.36280 -33172451.6 0.00041 0.00036 3.9 0.000 0.000 0.000 +2454358.5 1.75107 2.34224 -33173230.1 0.00037 0.00035 5.1 0.000 0.000 0.000 +2454359.5 1.72379 2.32205 -33173864.5 0.00039 0.00036 3.2 0.000 0.000 0.000 +2454360.5 1.69657 2.30299 -33174347.9 0.00040 0.00032 2.9 0.000 0.000 0.000 +2454361.5 1.67251 2.28466 -33174710.8 0.00035 0.00025 3.1 0.000 0.000 0.000 +2454362.5 1.65189 2.26648 -33174960.8 0.00038 0.00040 3.4 0.000 0.000 0.000 +2454363.5 1.63118 2.24766 -33175177.5 0.00038 0.00040 3.6 0.000 0.000 0.000 +2454364.5 1.60492 2.22988 -33175478.0 0.00038 0.00041 3.5 0.000 0.000 0.000 +2454365.5 1.57650 2.21090 -33175934.6 0.00023 0.00038 4.9 0.000 0.000 0.000 +2454366.5 1.54741 2.19562 -33176599.0 0.00027 0.00038 5.0 0.000 0.000 0.000 +2454367.5 1.51765 2.17971 -33177546.5 0.00026 0.00038 5.0 0.000 0.000 0.000 +2454368.5 1.49064 2.16353 -33178791.2 0.00020 0.00021 6.1 0.000 0.000 0.000 +2454369.5 1.46562 2.14795 -33180395.1 0.00022 0.00048 5.5 0.000 0.000 0.000 +2454370.5 1.44062 2.13028 -33182119.4 0.00023 0.00048 5.7 0.000 0.000 0.000 +2454371.5 1.41528 2.11065 -33183751.3 0.00024 0.00048 5.6 0.000 0.000 0.000 +2454372.5 1.38714 2.09476 -33185170.9 0.00018 0.00051 6.2 0.000 0.000 0.000 +2454373.5 1.36139 2.07792 -33186300.0 0.00026 0.00054 4.0 0.000 0.000 0.000 +2454374.5 1.33597 2.06419 -33187130.7 0.00025 0.00054 3.6 0.000 0.000 0.000 +2454375.5 1.30617 2.05290 -33187715.4 0.00024 0.00032 3.5 0.000 0.000 0.000 +2454376.5 1.27546 2.03981 -33188222.6 0.00026 0.00038 4.2 0.000 0.000 0.000 +2454377.5 1.24555 2.02841 -33188756.2 0.00025 0.00038 4.2 0.000 0.000 0.000 +2454378.5 1.21577 2.01659 -33189370.8 0.00026 0.00038 4.3 0.000 0.000 0.000 +2454379.5 1.18627 2.00495 -33190086.2 0.00018 0.00026 8.2 0.000 0.000 0.000 +2454380.5 1.15711 1.99318 -33190948.6 0.00018 0.00025 8.3 0.000 0.000 0.000 +2454381.5 1.12829 1.98251 -33191932.6 0.00022 0.00045 4.8 0.000 0.000 0.000 +2454382.5 1.09808 1.97497 -33192978.4 0.00017 0.00042 4.5 0.000 0.000 0.000 +2454383.5 1.06647 1.96805 -33194058.5 0.00022 0.00049 4.0 0.000 0.000 0.000 +2454384.5 1.03327 1.95930 -33195157.9 0.00022 0.00048 3.8 0.000 0.000 0.000 +2454385.5 1.00263 1.95016 -33196161.4 0.00022 0.00049 3.7 0.000 0.000 0.000 +2454386.5 0.97552 1.94245 -33197024.0 0.00022 0.00049 3.8 0.000 0.000 0.000 +2454387.5 0.94883 1.93557 -33197702.5 0.00018 0.00036 4.2 0.000 0.000 0.000 +2454388.5 0.92037 1.92965 -33198222.6 0.00018 0.00037 2.8 0.000 0.000 0.000 +2454389.5 0.88959 1.92541 -33198648.7 0.00012 0.00025 4.4 0.000 0.000 0.000 +2454390.5 0.85871 1.92074 -33199032.1 0.00023 0.00044 4.6 0.000 0.000 0.000 +2454391.5 0.82974 1.91843 -33199480.7 0.00023 0.00044 4.9 0.000 0.000 0.000 +2454392.5 0.79938 1.91374 -33200036.3 0.00023 0.00045 5.1 0.000 0.000 0.000 +2454393.5 0.76637 1.91006 -33200752.1 0.00023 0.00044 5.4 0.000 0.000 0.000 +2454394.5 0.73455 1.90498 -33201680.7 0.00030 0.00040 5.3 0.000 0.000 0.000 +2454395.5 0.70780 1.90132 -33202828.4 0.00030 0.00040 4.5 0.000 0.000 0.000 +2454396.5 0.68591 1.90127 -33204218.2 0.00043 0.00019 4.4 0.000 0.000 0.000 +2454397.5 0.66423 1.90366 -33205837.9 0.00042 0.00032 3.6 0.000 0.000 0.000 +2454398.5 0.64153 1.90381 -33207530.4 0.00042 0.00032 3.3 0.000 0.000 0.000 +2454399.5 0.61539 1.90044 -33209062.1 0.00043 0.00032 2.6 0.000 0.000 0.000 +2454400.5 0.58889 1.90138 -33210251.7 0.00042 0.00034 3.7 0.000 0.000 0.000 +2454401.5 0.56213 1.90245 -33211080.0 0.00042 0.00037 2.5 0.000 0.000 0.000 +2454402.5 0.53458 1.90396 -33211662.4 0.00038 0.00050 2.9 0.000 0.000 0.000 +2454403.5 0.50681 1.90639 -33212155.3 0.00039 0.00043 3.1 0.000 0.000 0.000 +2454404.5 0.47686 1.90878 -33212642.7 0.00038 0.00042 3.4 0.000 0.000 0.000 +2454405.5 0.44850 1.91027 -33213199.8 0.00038 0.00042 3.7 0.000 0.000 0.000 +2454406.5 0.42313 1.91080 -33213886.0 0.00038 0.00043 4.2 0.000 0.000 0.000 +2454407.5 0.40320 1.91465 -33214735.9 0.00038 0.00042 7.8 0.000 0.000 0.000 +2454408.5 0.38254 1.92101 -33215722.1 0.00018 0.00025 4.8 0.000 0.000 0.000 +2454409.5 0.35948 1.92525 -33216743.8 0.00021 0.00031 5.1 0.000 0.000 0.000 +2454410.5 0.34071 1.92786 -33217788.9 0.00021 0.00032 5.2 0.000 0.000 0.000 +2454411.5 0.32283 1.93065 -33218841.9 0.00034 0.00039 4.6 0.000 0.000 0.000 +2454412.5 0.30213 1.93234 -33219890.9 0.00033 0.00039 4.2 0.000 0.000 0.000 +2454413.5 0.27904 1.93353 -33220838.5 0.00033 0.00040 3.9 0.000 0.000 0.000 +2454414.5 0.25299 1.93417 -33221599.1 0.00034 0.00037 5.9 0.000 0.000 0.000 +2454415.5 0.22780 1.93540 -33222172.3 0.00034 0.00032 4.1 0.000 0.000 0.000 +2454416.5 0.19998 1.94126 -33222586.2 0.00039 0.00039 3.4 0.000 0.000 0.000 +2454417.5 0.16932 1.94691 -33222908.8 0.00029 0.00036 3.9 0.000 0.000 0.000 +2454418.5 0.14101 1.94886 -33223255.2 0.00027 0.00045 3.1 0.000 0.000 0.000 +2454419.5 0.11094 1.95437 -33223718.1 0.00027 0.00046 3.5 0.000 0.000 0.000 +2454420.5 0.07904 1.96038 -33224438.3 0.00027 0.00047 3.5 0.000 0.000 0.000 +2454421.5 0.04591 1.96403 -33225428.8 0.00025 0.00049 4.1 0.000 0.000 0.000 +2454422.5 0.01403 1.97001 -33226698.5 0.00022 0.00042 3.0 0.000 0.000 0.000 +2454423.5 -0.01526 1.98098 -33228277.2 0.00047 0.00050 4.3 0.000 0.000 0.000 +2454424.5 -0.04178 1.99374 -33230114.5 0.00047 0.00040 4.9 0.000 0.000 0.000 +2454425.5 -0.06895 2.00777 -33232095.1 0.00046 0.00039 4.7 0.000 0.000 0.000 +2454426.5 -0.09440 2.02277 -33234095.4 0.00046 0.00038 4.7 0.000 0.000 0.000 +2454427.5 -0.11904 2.03701 -33235937.7 0.00047 0.00038 4.6 0.000 0.000 0.000 +2454428.5 -0.14866 2.04486 -33237504.8 0.00048 0.00038 7.0 0.000 0.000 0.000 +2454429.5 -0.18112 2.04827 -33238763.8 0.00022 0.00026 1.7 0.000 0.000 0.000 +2454430.5 -0.20813 2.05142 -33239777.0 0.00022 0.00026 1.7 0.000 0.000 0.000 +2454431.5 -0.23043 2.05867 -33240684.3 0.00030 0.00030 1.7 0.000 0.000 0.000 +2454432.5 -0.25267 2.06915 -33241643.9 0.00054 0.00055 2.6 0.000 0.000 0.000 +2454433.5 -0.27241 2.08156 -33242751.6 0.00054 0.00056 2.6 0.000 0.000 0.000 +2454434.5 -0.28714 2.09410 -33244059.5 0.00054 0.00057 2.5 0.000 0.000 0.000 +2454435.5 -0.29590 2.11061 -33245554.7 0.00057 0.00060 5.0 0.000 0.000 0.000 +2454436.5 -0.30663 2.12609 -33247134.5 0.00052 0.00059 3.2 0.000 0.000 0.000 +2454437.5 -0.32023 2.14171 -33248739.1 0.00048 0.00059 3.2 0.000 0.000 0.000 +2454438.5 -0.34009 2.15856 -33250252.3 0.00033 0.00035 2.6 0.000 0.000 0.000 +2454439.5 -0.36712 2.17160 -33251587.7 0.00045 0.00057 3.0 0.000 0.000 0.000 +2454440.5 -0.39743 2.18566 -33252671.8 0.00045 0.00058 3.0 0.000 0.000 0.000 +2454441.5 -0.42326 2.19796 -33253505.9 0.00046 0.00060 2.6 0.000 0.000 0.000 +2454442.5 -0.44541 2.21101 -33254088.0 0.00051 0.00063 4.1 0.000 0.000 0.000 +2454443.5 -0.46242 2.22409 -33254446.2 0.00048 0.00061 2.9 0.000 0.000 0.000 +2454444.5 -0.47671 2.23957 -33254654.7 0.00038 0.00063 3.1 0.000 0.000 0.000 +2454445.5 -0.49141 2.25498 -33254809.3 0.00026 0.00042 3.0 0.000 0.000 0.000 +2454446.5 -0.50280 2.26652 -33255033.7 0.00040 0.00056 2.9 0.000 0.000 0.000 +2454447.5 -0.51598 2.27744 -33255391.0 0.00039 0.00054 2.9 0.000 0.000 0.000 +2454448.5 -0.53184 2.28775 -33255907.7 0.00040 0.00054 2.8 0.000 0.000 0.000 +2454449.5 -0.54652 2.30258 -33256638.2 0.00041 0.00054 5.9 0.000 0.000 0.000 +2454450.5 -0.56153 2.31799 -33257624.6 0.00039 0.00050 3.6 0.000 0.000 0.000 +2454451.5 -0.57550 2.33381 -33258832.9 0.00036 0.00048 3.5 0.000 0.000 0.000 +2454452.5 -0.58930 2.35052 -33260155.3 0.00018 0.00024 3.9 0.000 0.000 0.000 +2454453.5 -0.60030 2.36315 -33261465.4 0.00028 0.00039 3.8 0.000 0.000 0.000 +2454454.5 -0.60988 2.37684 -33262730.8 0.00028 0.00039 3.9 0.000 0.000 0.000 +2454455.5 -0.61913 2.39331 -33263832.8 0.00028 0.00039 3.0 0.000 0.000 0.000 +2454456.5 -0.62762 2.40987 -33264613.8 0.00028 0.00040 5.1 0.000 0.000 0.000 +2454457.5 -0.63840 2.42692 -33265167.2 0.00028 0.00040 4.8 0.000 0.000 0.000 +2454458.5 -0.65293 2.44459 -33265641.3 0.00028 0.00042 4.1 0.000 0.000 0.000 +2454459.5 -0.67317 2.46115 -33266158.2 0.00017 0.00037 1.8 0.000 0.000 0.000 +2454460.5 -0.69503 2.47636 -33266805.6 0.00040 0.00073 4.2 0.000 0.000 0.000 +2454461.5 -0.71303 2.49031 -33267624.8 0.00040 0.00074 4.7 0.000 0.000 0.000 +2454462.5 -0.73044 2.51068 -33268619.8 0.00041 0.00075 4.8 0.000 0.000 0.000 +2454463.5 -0.74652 2.52729 -33269758.3 0.00042 0.00076 4.8 0.000 0.000 0.000 +2454464.5 -0.76460 2.54792 -33271023.5 0.00042 0.00076 4.8 0.000 0.000 0.000 +2454465.5 -0.78553 2.56853 -33272245.4 0.00045 0.00076 11.6 0.000 0.000 0.000 +2454466.5 -0.80462 2.58422 -33273348.7 0.00035 0.00033 3.7 0.000 0.000 0.000 +2454467.5 -0.81876 2.60062 -33274324.6 0.00053 0.00065 3.0 0.000 0.000 0.000 +2454468.5 -0.83288 2.61919 -33275192.3 0.00053 0.00065 2.9 0.000 0.000 0.000 +2454469.5 -0.85471 2.63937 -33275954.1 0.00053 0.00065 2.9 0.000 0.000 0.000 +2454470.5 -0.87896 2.65530 -33276611.2 0.00053 0.00065 3.2 0.000 0.000 0.000 +2454471.5 -0.90269 2.67141 -33277204.6 0.00051 0.00061 2.5 0.000 0.000 0.000 +2454472.5 -0.92571 2.68806 -33277744.3 0.00046 0.00062 2.9 0.000 0.000 0.000 +2454473.5 -0.94411 2.70646 -33278260.2 0.00020 0.00023 3.3 0.000 0.000 0.000 +2454474.5 -0.96017 2.72628 -33278846.6 0.00026 0.00069 4.5 0.000 0.000 0.000 +2454475.5 -0.97648 2.74915 -33279571.7 0.00025 0.00068 4.4 0.000 0.000 0.000 +2454476.5 -0.99582 2.77584 -33280459.3 0.00025 0.00070 4.1 0.000 0.000 0.000 +2454477.5 -1.01585 2.80108 -33281550.2 0.00023 0.00079 9.5 0.000 0.000 0.000 +2454478.5 -1.03380 2.82825 -33282827.0 0.00036 0.00081 6.7 0.000 0.000 0.000 +2454479.5 -1.05004 2.85741 -33284206.3 0.00037 0.00082 6.7 0.000 0.000 0.000 +2454480.5 -1.06828 2.88770 -33285591.9 0.00038 0.00050 4.9 0.000 0.000 0.000 +2454481.5 -1.08837 2.91022 -33286909.6 0.00046 0.00063 4.6 0.000 0.000 0.000 +2454482.5 -1.10486 2.92973 -33288000.6 0.00046 0.00063 5.5 0.000 0.000 0.000 +2454483.5 -1.12104 2.95058 -33288794.6 0.00046 0.00062 5.5 0.000 0.000 0.000 +2454484.5 -1.13954 2.97096 -33289355.7 0.00038 0.00051 6.0 0.000 0.000 0.000 +2454485.5 -1.15026 2.99181 -33289783.8 0.00037 0.00051 6.0 0.000 0.000 0.000 +2454486.5 -1.15120 3.01654 -33290213.8 0.00044 0.00047 4.8 0.000 0.000 0.000 +2454487.5 -1.15057 3.04397 -33290805.8 0.00045 0.00036 5.1 0.000 0.000 0.000 +2454488.5 -1.15450 3.06803 -33291644.8 0.00045 0.00059 3.0 0.000 0.000 0.000 +2454489.5 -1.15886 3.09019 -33292757.8 0.00045 0.00059 2.9 0.000 0.000 0.000 +2454490.5 -1.16625 3.11611 -33294091.1 0.00045 0.00059 2.9 0.000 0.000 0.000 +2454491.5 -1.17433 3.13912 -33295590.0 0.00044 0.00060 2.9 0.000 0.000 0.000 +2454492.5 -1.17815 3.16501 -33297124.5 0.00036 0.00057 2.4 0.000 0.000 0.000 +2454493.5 -1.17993 3.19306 -33298604.1 0.00027 0.00055 2.2 0.000 0.000 0.000 +2454494.5 -1.18517 3.21790 -33299961.6 0.00023 0.00031 2.2 0.000 0.000 0.000 +2454495.5 -1.19144 3.24080 -33301108.6 0.00029 0.00031 1.9 0.000 0.000 0.000 +2454496.5 -1.19634 3.26453 -33302020.1 0.00030 0.00031 2.3 0.000 0.000 0.000 +2454497.5 -1.19613 3.29129 -33302752.0 0.00029 0.00029 2.6 0.000 0.000 0.000 +2454498.5 -1.19554 3.32351 -33303391.6 0.00027 0.00030 4.6 0.000 0.000 0.000 +2454499.5 -1.19860 3.35559 -33303969.6 0.00025 0.00028 3.5 0.000 0.000 0.000 +2454500.5 -1.20495 3.38368 -33304530.4 0.00024 0.00028 3.5 0.000 0.000 0.000 +2454501.5 -1.20832 3.41179 -33305205.1 0.00016 0.00025 4.5 0.000 0.000 0.000 +2454502.5 -1.21308 3.44030 -33306068.7 0.00032 0.00025 3.4 0.000 0.000 0.000 +2454503.5 -1.22030 3.46861 -33307147.4 0.00032 0.00025 3.3 0.000 0.000 0.000 +2454504.5 -1.22950 3.49409 -33308465.9 0.00032 0.00025 3.1 0.000 0.000 0.000 +2454505.5 -1.23483 3.51998 -33309973.3 0.00034 0.00023 4.0 0.000 0.000 0.000 +2454506.5 -1.24003 3.54852 -33311568.6 0.00045 0.00032 3.7 0.000 0.000 0.000 +2454507.5 -1.24763 3.57650 -33313229.4 0.00051 0.00032 3.6 0.000 0.000 0.000 +2454508.5 -1.25566 3.59924 -33314821.0 0.00043 0.00032 5.4 0.000 0.000 0.000 +2454509.5 -1.26062 3.61936 -33316174.7 0.00043 0.00050 3.2 0.000 0.000 0.000 +2454510.5 -1.25762 3.64406 -33317323.1 0.00043 0.00050 2.8 0.000 0.000 0.000 +2454511.5 -1.25369 3.67229 -33318232.7 0.00043 0.00049 2.6 0.000 0.000 0.000 +2454512.5 -1.25276 3.69422 -33318918.6 0.00032 0.00046 2.7 0.000 0.000 0.000 +2454513.5 -1.25733 3.71460 -33319477.5 0.00021 0.00046 2.6 0.000 0.000 0.000 +2454514.5 -1.26432 3.73928 -33320078.5 0.00033 0.00046 2.5 0.000 0.000 0.000 +2454515.5 -1.26911 3.76759 -33320877.0 0.00039 0.00027 3.0 0.000 0.000 0.000 +2454516.5 -1.27228 3.79512 -33321925.2 0.00042 0.00035 2.4 0.000 0.000 0.000 +2454517.5 -1.27420 3.82138 -33323156.8 0.00042 0.00035 2.4 0.000 0.000 0.000 +2454518.5 -1.27344 3.84918 -33324496.0 0.00041 0.00034 2.4 0.000 0.000 0.000 +2454519.5 -1.27443 3.87843 -33325838.1 0.00041 0.00033 2.5 0.000 0.000 0.000 +2454520.5 -1.27217 3.90886 -33327112.1 0.00041 0.00031 2.1 0.000 0.000 0.000 +2454521.5 -1.26853 3.93804 -33328286.5 0.00036 0.00030 2.4 0.000 0.000 0.000 +2454522.5 -1.26370 3.96475 -33329281.9 0.00030 0.00019 2.5 0.000 0.000 0.000 +2454523.5 -1.25402 3.98967 -33330057.5 0.00031 0.00029 2.2 0.000 0.000 0.000 +2454524.5 -1.24182 4.01574 -33330608.6 0.00031 0.00029 2.3 0.000 0.000 0.000 +2454525.5 -1.22795 4.04095 -33330968.3 0.00031 0.00029 2.4 0.000 0.000 0.000 +2454526.5 -1.21360 4.06750 -33331201.2 0.00017 0.00028 4.6 0.000 0.000 0.000 +2454527.5 -1.20115 4.09744 -33331435.8 0.00023 0.00035 2.5 0.000 0.000 0.000 +2454528.5 -1.19086 4.12710 -33331782.1 0.00024 0.00035 2.5 0.000 0.000 0.000 +2454529.5 -1.18141 4.15982 -33332240.1 0.00022 0.00030 2.7 0.000 0.000 0.000 +2454530.5 -1.16976 4.18932 -33332968.1 0.00027 0.00062 2.9 0.000 0.000 0.000 +2454531.5 -1.15738 4.21737 -33333990.2 0.00027 0.00062 3.0 0.000 0.000 0.000 +2454532.5 -1.14705 4.24444 -33335268.3 0.00027 0.00062 2.5 0.000 0.000 0.000 +2454533.5 -1.13400 4.26711 -33336754.9 0.00023 0.00064 4.5 0.000 0.000 0.000 +2454534.5 -1.11945 4.29309 -33338335.1 0.00023 0.00064 4.9 0.000 0.000 0.000 +2454535.5 -1.10663 4.31773 -33339810.1 0.00025 0.00062 4.0 0.000 0.000 0.000 +2454536.5 -1.09345 4.34456 -33341083.0 0.00018 0.00024 4.3 0.000 0.000 0.000 +2454537.5 -1.08011 4.37576 -33342084.6 0.00024 0.00028 3.6 0.000 0.000 0.000 +2454538.5 -1.06522 4.40395 -33342812.2 0.00023 0.00028 3.7 0.000 0.000 0.000 +2454539.5 -1.04904 4.43266 -33343333.1 0.00023 0.00029 3.9 0.000 0.000 0.000 +2454540.5 -1.02986 4.46003 -33343770.4 0.00024 0.00029 4.2 0.000 0.000 0.000 +2454541.5 -1.00901 4.48919 -33344277.2 0.00030 0.00030 3.3 0.000 0.000 0.000 +2454542.5 -0.98577 4.52034 -33344936.9 0.00031 0.00030 3.3 0.000 0.000 0.000 +2454543.5 -0.96316 4.55136 -33345810.7 0.00049 0.00031 3.7 0.000 0.000 0.000 +2454544.5 -0.94084 4.57924 -33346963.6 0.00048 0.00032 3.7 0.000 0.000 0.000 +2454545.5 -0.91425 4.60850 -33348300.0 0.00049 0.00030 3.4 0.000 0.000 0.000 +2454546.5 -0.88903 4.63859 -33349718.1 0.00049 0.00030 2.9 0.000 0.000 0.000 +2454547.5 -0.86133 4.66995 -33351215.0 0.00047 0.00023 5.4 0.000 0.000 0.000 +2454548.5 -0.83345 4.70169 -33352666.4 0.00047 0.00023 4.8 0.000 0.000 0.000 +2454549.5 -0.80745 4.73105 -33354036.2 0.00018 0.00033 2.0 0.000 0.000 0.000 +2454550.5 -0.78447 4.75810 -33355276.1 0.00019 0.00033 2.3 0.000 0.000 0.000 +2454551.5 -0.76246 4.78448 -33356342.2 0.00033 0.00046 2.7 0.000 0.000 0.000 +2454552.5 -0.74096 4.80643 -33357226.3 0.00033 0.00046 2.7 0.000 0.000 0.000 +2454553.5 -0.72219 4.82912 -33357962.3 0.00033 0.00046 2.7 0.000 0.000 0.000 +2454554.5 -0.70605 4.84929 -33358598.8 0.00034 0.00047 2.9 0.000 0.000 0.000 +2454555.5 -0.68712 4.86661 -33359254.4 0.00042 0.00041 3.6 0.000 0.000 0.000 +2454556.5 -0.66565 4.88179 -33360023.6 0.00042 0.00041 3.6 0.000 0.000 0.000 +2454557.5 -0.64498 4.89844 -33360991.6 0.00037 0.00028 4.1 0.000 0.000 0.000 +2454558.5 -0.61963 4.91654 -33362178.5 0.00040 0.00032 4.3 0.000 0.000 0.000 +2454559.5 -0.58943 4.93540 -33363636.4 0.00040 0.00033 4.3 0.000 0.000 0.000 +2454560.5 -0.56114 4.95402 -33365282.2 0.00039 0.00031 4.0 0.000 0.000 0.000 +2454561.5 -0.53593 4.97044 -33367120.0 0.00029 0.00029 5.4 0.000 0.000 0.000 +2454562.5 -0.50871 4.98730 -33369045.1 0.00030 0.00032 4.9 0.000 0.000 0.000 +2454563.5 -0.47922 5.00463 -33370803.8 0.00026 0.00029 4.9 0.000 0.000 0.000 +2454564.5 -0.45085 5.02435 -33372212.1 0.00025 0.00036 4.8 0.000 0.000 0.000 +2454565.5 -0.42956 5.04712 -33373278.3 0.00028 0.00052 4.8 0.000 0.000 0.000 +2454566.5 -0.41083 5.06859 -33374045.0 0.00029 0.00052 4.7 0.000 0.000 0.000 +2454567.5 -0.38896 5.08738 -33374628.2 0.00029 0.00052 4.6 0.000 0.000 0.000 +2454568.5 -0.36612 5.10356 -33375168.0 0.00027 0.00053 4.2 0.000 0.000 0.000 +2454569.5 -0.34182 5.11842 -33375775.0 0.00029 0.00052 2.8 0.000 0.000 0.000 +2454570.5 -0.31616 5.12950 -33376580.4 0.00024 0.00046 2.7 0.000 0.000 0.000 +2454571.5 -0.29046 5.13870 -33377649.3 0.00019 0.00024 2.1 0.000 0.000 0.000 +2454572.5 -0.26486 5.14584 -33378911.2 0.00026 0.00047 2.3 0.000 0.000 0.000 +2454573.5 -0.23645 5.15670 -33380253.4 0.00026 0.00047 2.3 0.000 0.000 0.000 +2454574.5 -0.20364 5.17410 -33381609.5 0.00026 0.00048 2.3 0.000 0.000 0.000 +2454575.5 -0.16966 5.19375 -33382933.7 0.00022 0.00047 5.4 0.000 0.000 0.000 +2454576.5 -0.13754 5.21606 -33384166.6 0.00023 0.00047 5.4 0.000 0.000 0.000 +2454577.5 -0.10941 5.23810 -33385234.7 0.00036 0.00046 5.5 0.000 0.000 0.000 +2454578.5 -0.08296 5.25809 -33386155.7 0.00032 0.00020 8.1 0.000 0.000 0.000 +2454579.5 -0.05684 5.27458 -33386927.4 0.00043 0.00025 5.9 0.000 0.000 0.000 +2454580.5 -0.03111 5.28424 -33387595.0 0.00043 0.00024 5.8 0.000 0.000 0.000 +2454581.5 0.00019 5.29163 -33388198.9 0.00043 0.00025 4.8 0.000 0.000 0.000 +2454582.5 0.03041 5.29905 -33388769.2 0.00043 0.00026 5.0 0.000 0.000 0.000 +2454583.5 0.06199 5.30734 -33389394.2 0.00038 0.00032 3.5 0.000 0.000 0.000 +2454584.5 0.09566 5.31769 -33390198.7 0.00039 0.00039 3.5 0.000 0.000 0.000 +2454585.5 0.12803 5.33267 -33391215.4 0.00027 0.00036 3.3 0.000 0.000 0.000 +2454586.5 0.15971 5.34632 -33392511.5 0.00027 0.00036 3.4 0.000 0.000 0.000 +2454587.5 0.18948 5.36019 -33394076.8 0.00027 0.00036 3.3 0.000 0.000 0.000 +2454588.5 0.21729 5.37002 -33395780.1 0.00027 0.00035 3.2 0.000 0.000 0.000 +2454589.5 0.24409 5.37725 -33397613.9 0.00018 0.00027 5.0 0.000 0.000 0.000 +2454590.5 0.27075 5.38292 -33399463.2 0.00021 0.00016 4.2 0.000 0.000 0.000 +2454591.5 0.30006 5.38563 -33401147.1 0.00021 0.00017 3.9 0.000 0.000 0.000 +2454592.5 0.33550 5.38808 -33402571.0 0.00031 0.00051 4.5 0.000 0.000 0.000 +2454593.5 0.36854 5.39265 -33403662.0 0.00031 0.00050 5.1 0.000 0.000 0.000 +2454594.5 0.39722 5.40008 -33404556.0 0.00031 0.00050 5.4 0.000 0.000 0.000 +2454595.5 0.42456 5.40672 -33405414.3 0.00031 0.00051 5.4 0.000 0.000 0.000 +2454596.5 0.44820 5.41439 -33406353.0 0.00027 0.00052 6.3 0.000 0.000 0.000 +2454597.5 0.47311 5.41861 -33407478.7 0.00027 0.00054 4.0 0.000 0.000 0.000 +2454598.5 0.49993 5.42258 -33408877.5 0.00014 0.00029 3.7 0.000 0.000 0.000 +2454599.5 0.52848 5.42609 -33410466.9 0.00016 0.00029 3.4 0.000 0.000 0.000 +2454600.5 0.56369 5.42633 -33412139.0 0.00036 0.00064 4.2 0.000 0.000 0.000 +2454601.5 0.60224 5.42659 -33413810.8 0.00036 0.00064 4.1 0.000 0.000 0.000 +2454602.5 0.64250 5.42732 -33415407.4 0.00036 0.00064 4.2 0.000 0.000 0.000 +2454603.5 0.67915 5.42658 -33416828.3 0.00039 0.00065 6.3 0.000 0.000 0.000 +2454604.5 0.71421 5.42699 -33418012.6 0.00046 0.00064 6.1 0.000 0.000 0.000 +2454605.5 0.74599 5.42725 -33419015.9 0.00046 0.00064 7.0 0.000 0.000 0.000 +2454606.5 0.77588 5.42689 -33419809.7 0.00036 0.00040 10.6 0.000 0.000 0.000 +2454607.5 0.80950 5.42369 -33420363.2 0.00057 0.00073 5.8 0.000 0.000 0.000 +2454608.5 0.84280 5.41924 -33420738.0 0.00056 0.00074 5.7 0.000 0.000 0.000 +2454609.5 0.88338 5.41659 -33421029.5 0.00056 0.00074 5.4 0.000 0.000 0.000 +2454610.5 0.92167 5.41461 -33421325.4 0.00051 0.00075 5.9 0.000 0.000 0.000 +2454611.5 0.96115 5.41342 -33421720.5 0.00050 0.00075 5.1 0.000 0.000 0.000 +2454612.5 1.00010 5.41325 -33422293.6 0.00047 0.00064 4.7 0.000 0.000 0.000 +2454613.5 1.03791 5.41497 -33423070.7 0.00017 0.00020 7.3 0.000 0.000 0.000 +2454614.5 1.07527 5.41480 -33424022.3 0.00036 0.00029 7.0 0.000 0.000 0.000 +2454615.5 1.11235 5.41194 -33425129.5 0.00036 0.00029 6.9 0.000 0.000 0.000 +2454616.5 1.14462 5.40651 -33426350.5 0.00037 0.00029 6.3 0.000 0.000 0.000 +2454617.5 1.17325 5.40127 -33427594.2 0.00037 0.00029 7.4 0.000 0.000 0.000 +2454618.5 1.19956 5.39768 -33428728.0 0.00036 0.00032 4.2 0.000 0.000 0.000 +2454619.5 1.22628 5.39255 -33429673.0 0.00036 0.00032 4.0 0.000 0.000 0.000 +2454620.5 1.25635 5.38518 -33430332.0 0.00018 0.00024 4.0 0.000 0.000 0.000 +2454621.5 1.29049 5.37406 -33430767.0 0.00020 0.00032 3.6 0.000 0.000 0.000 +2454622.5 1.32802 5.36131 -33431090.2 0.00020 0.00032 3.9 0.000 0.000 0.000 +2454623.5 1.36437 5.34994 -33431439.9 0.00020 0.00032 3.5 0.000 0.000 0.000 +2454624.5 1.39894 5.33796 -33431902.0 0.00017 0.00031 5.2 0.000 0.000 0.000 +2454625.5 1.43239 5.32782 -33432528.8 0.00025 0.00063 4.2 0.000 0.000 0.000 +2454626.5 1.46601 5.31692 -33433315.0 0.00026 0.00061 3.5 0.000 0.000 0.000 +2454627.5 1.50071 5.30719 -33434257.9 0.00025 0.00059 3.8 0.000 0.000 0.000 +2454628.5 1.53759 5.29205 -33435266.3 0.00025 0.00059 3.2 0.000 0.000 0.000 +2454629.5 1.57084 5.27695 -33436183.5 0.00024 0.00058 2.9 0.000 0.000 0.000 +2454630.5 1.60590 5.26112 -33436930.8 0.00024 0.00057 2.7 0.000 0.000 0.000 +2454631.5 1.63884 5.24718 -33437491.9 0.00015 0.00014 2.9 0.000 0.000 0.000 +2454632.5 1.66789 5.23347 -33437821.3 0.00010 0.00036 2.4 0.000 0.000 0.000 +2454633.5 1.69577 5.21941 -33437988.6 0.00010 0.00035 2.2 0.000 0.000 0.000 +2454634.5 1.72432 5.20720 -33438060.1 0.00010 0.00035 2.5 0.000 0.000 0.000 +2454635.5 1.75184 5.19070 -33438026.3 0.00017 0.00043 2.5 0.000 0.000 0.000 +2454636.5 1.77795 5.17453 -33437950.8 0.00017 0.00043 2.7 0.000 0.000 0.000 +2454637.5 1.80377 5.15915 -33437901.9 0.00017 0.00043 2.6 0.000 0.000 0.000 +2454638.5 1.83632 5.14377 -33437908.7 0.00020 0.00034 4.4 0.000 0.000 0.000 +2454639.5 1.87006 5.12908 -33438095.8 0.00042 0.00040 4.0 0.000 0.000 0.000 +2454640.5 1.90239 5.11361 -33438519.6 0.00041 0.00040 3.7 0.000 0.000 0.000 +2454641.5 1.93595 5.09990 -33439194.3 0.00042 0.00027 5.5 0.000 0.000 0.000 +2454642.5 1.96463 5.08423 -33440062.8 0.00048 0.00055 4.0 0.000 0.000 0.000 +2454643.5 1.99439 5.07114 -33441033.2 0.00048 0.00055 4.7 0.000 0.000 0.000 +2454644.5 2.01934 5.05876 -33442062.3 0.00048 0.00055 4.4 0.000 0.000 0.000 +2454645.5 2.04203 5.04038 -33442981.4 0.00028 0.00053 5.0 0.000 0.000 0.000 +2454646.5 2.06550 5.02100 -33443770.3 0.00036 0.00053 3.6 0.000 0.000 0.000 +2454647.5 2.08753 4.99858 -33444379.6 0.00036 0.00053 3.6 0.000 0.000 0.000 +2454648.5 2.11308 4.97606 -33444750.5 0.00049 0.00029 4.6 0.000 0.000 0.000 +2454649.5 2.13565 4.95343 -33444936.5 0.00049 0.00029 4.0 0.000 0.000 0.000 +2454650.5 2.16207 4.93260 -33445079.8 0.00049 0.00030 4.2 0.000 0.000 0.000 +2454651.5 2.18834 4.91204 -33445355.7 0.00049 0.00032 4.1 0.000 0.000 0.000 +2454652.5 2.21731 4.89110 -33445826.0 0.00046 0.00027 9.3 0.000 0.000 0.000 +2454653.5 2.24663 4.87265 -33446466.5 0.00064 0.00033 4.7 0.000 0.000 0.000 +2454654.5 2.27219 4.85421 -33447245.7 0.00049 0.00027 4.2 0.000 0.000 0.000 +2454655.5 2.29853 4.83359 -33448062.5 0.00049 0.00029 5.5 0.000 0.000 0.000 +2454656.5 2.31846 4.81145 -33448746.6 0.00049 0.00030 5.5 0.000 0.000 0.000 +2454657.5 2.34205 4.79230 -33449323.5 0.00049 0.00028 5.4 0.000 0.000 0.000 +2454658.5 2.36485 4.77253 -33449727.5 0.00047 0.00027 5.4 0.000 0.000 0.000 +2454659.5 2.38817 4.74984 -33449867.9 0.00016 0.00019 7.2 0.000 0.000 0.000 +2454660.5 2.41210 4.72502 -33449780.6 0.00019 0.00042 4.9 0.000 0.000 0.000 +2454661.5 2.43362 4.69883 -33449537.7 0.00018 0.00041 4.4 0.000 0.000 0.000 +2454662.5 2.45310 4.67077 -33449184.8 0.00016 0.00040 4.0 0.000 0.000 0.000 +2454663.5 2.47880 4.64090 -33448771.8 0.00020 0.00043 3.8 0.000 0.000 0.000 +2454664.5 2.50576 4.61583 -33448403.1 0.00020 0.00044 3.8 0.000 0.000 0.000 +2454665.5 2.52954 4.59087 -33448160.9 0.00021 0.00045 3.7 0.000 0.000 0.000 +2454666.5 2.54978 4.56591 -33448066.8 0.00018 0.00028 6.2 0.000 0.000 0.000 +2454667.5 2.57205 4.53809 -33448194.5 0.00025 0.00033 5.5 0.000 0.000 0.000 +2454668.5 2.59610 4.50875 -33448612.0 0.00025 0.00033 5.5 0.000 0.000 0.000 +2454669.5 2.62305 4.47706 -33449226.8 0.00022 0.00026 6.4 0.000 0.000 0.000 +2454670.5 2.65064 4.44146 -33449946.5 0.00034 0.00028 5.2 0.000 0.000 0.000 +2454671.5 2.67792 4.40713 -33450716.9 0.00033 0.00026 5.1 0.000 0.000 0.000 +2454672.5 2.70218 4.37414 -33451469.1 0.00033 0.00027 4.3 0.000 0.000 0.000 +2454673.5 2.72838 4.34805 -33452101.1 0.00030 0.00021 3.0 0.000 0.000 0.000 +2454674.5 2.74987 4.32376 -33452516.1 0.00034 0.00045 4.1 0.000 0.000 0.000 +2454675.5 2.76731 4.29656 -33452713.8 0.00034 0.00045 4.0 0.000 0.000 0.000 +2454676.5 2.78336 4.26947 -33452769.3 0.00021 0.00045 4.6 0.000 0.000 0.000 +2454677.5 2.79414 4.24060 -33452734.3 0.00026 0.00049 5.0 0.000 0.000 0.000 +2454678.5 2.80227 4.21339 -33452792.2 0.00026 0.00049 5.0 0.000 0.000 0.000 +2454679.5 2.81020 4.18247 -33453009.1 0.00026 0.00048 5.1 0.000 0.000 0.000 +2454680.5 2.82274 4.15073 -33453439.0 0.00020 0.00028 7.6 0.000 0.000 0.000 +2454681.5 2.83680 4.11613 -33454051.1 0.00025 0.00032 5.2 0.000 0.000 0.000 +2454682.5 2.85265 4.08084 -33454839.4 0.00025 0.00032 5.2 0.000 0.000 0.000 +2454683.5 2.86983 4.04665 -33455626.5 0.00020 0.00025 5.2 0.000 0.000 0.000 +2454684.5 2.88567 4.01336 -33456291.9 0.00048 0.00027 6.2 0.000 0.000 0.000 +2454685.5 2.89932 3.98405 -33456803.8 0.00048 0.00027 6.6 0.000 0.000 0.000 +2454686.5 2.90891 3.95560 -33457135.8 0.00048 0.00025 6.4 0.000 0.000 0.000 +2454687.5 2.91386 3.92661 -33457279.3 0.00048 0.00018 9.3 0.000 0.000 0.000 +2454688.5 2.91940 3.89486 -33457272.8 0.00049 0.00036 6.0 0.000 0.000 0.000 +2454689.5 2.92387 3.86028 -33457142.8 0.00050 0.00038 5.5 0.000 0.000 0.000 +2454690.5 2.92754 3.82698 -33456930.8 0.00032 0.00039 4.2 0.000 0.000 0.000 +2454691.5 2.93000 3.79400 -33456718.3 0.00035 0.00041 4.0 0.000 0.000 0.000 +2454692.5 2.93038 3.76371 -33456597.5 0.00045 0.00051 3.9 0.000 0.000 0.000 +2454693.5 2.92984 3.73416 -33456611.9 0.00052 0.00056 4.1 0.000 0.000 0.000 +2454694.5 2.93546 3.70656 -33456800.4 0.00054 0.00059 4.1 0.000 0.000 0.000 +2454695.5 2.94164 3.68123 -33457147.3 0.00054 0.00062 3.9 0.000 0.000 0.000 +2454696.5 2.94436 3.65176 -33457712.1 0.00056 0.00062 4.2 0.000 0.000 0.000 +2454697.5 2.94788 3.61958 -33458461.8 0.00055 0.00063 3.9 0.000 0.000 0.000 +2454698.5 2.95361 3.58753 -33459321.7 0.00048 0.00059 4.3 0.000 0.000 0.000 +2454699.5 2.96132 3.55646 -33460134.9 0.00043 0.00054 4.5 0.000 0.000 0.000 +2454700.5 2.97062 3.52361 -33460779.9 0.00039 0.00053 4.5 0.000 0.000 0.000 +2454701.5 2.98071 3.49095 -33461245.0 0.00041 0.00050 4.6 0.000 0.000 0.000 +2454702.5 2.98562 3.46155 -33461490.6 0.00042 0.00054 4.5 0.000 0.000 0.000 +2454703.5 2.98205 3.43076 -33461579.4 0.00041 0.00051 4.9 0.000 0.000 0.000 +2454704.5 2.97857 3.39528 -33461635.2 0.00041 0.00048 4.7 0.000 0.000 0.000 +2454705.5 2.98044 3.35931 -33461766.1 0.00039 0.00072 4.2 0.000 0.000 0.000 +2454706.5 2.98245 3.32590 -33462055.3 0.00039 0.00069 4.7 0.000 0.000 0.000 +2454707.5 2.98236 3.29642 -33462539.9 0.00031 0.00071 5.0 0.000 0.000 0.000 +2454708.5 2.98481 3.26142 -33463315.2 0.00023 0.00068 6.4 0.000 0.000 0.000 +2454709.5 2.98618 3.22403 -33464280.1 0.00023 0.00068 8.0 0.000 0.000 0.000 +2454710.5 2.98701 3.18553 -33465337.5 0.00032 0.00066 4.5 0.000 0.000 0.000 +2454711.5 2.98925 3.14664 -33466392.8 0.00042 0.00032 4.0 0.000 0.000 0.000 +2454712.5 2.99199 3.10958 -33467279.7 0.00045 0.00063 4.6 0.000 0.000 0.000 +2454713.5 2.99001 3.07263 -33467958.9 0.00044 0.00063 4.7 0.000 0.000 0.000 +2454714.5 2.98698 3.03700 -33468479.8 0.00044 0.00063 4.7 0.000 0.000 0.000 +2454715.5 2.98271 2.99890 -33468781.3 0.00044 0.00062 4.5 0.000 0.000 0.000 +2454716.5 2.97888 2.96443 -33468961.0 0.00056 0.00065 4.8 0.000 0.000 0.000 +2454717.5 2.97565 2.93038 -33469081.9 0.00051 0.00064 5.8 0.000 0.000 0.000 +2454718.5 2.97249 2.89857 -33469201.5 0.00049 0.00038 4.9 0.000 0.000 0.000 +2454719.5 2.96925 2.86685 -33469446.3 0.00052 0.00056 3.6 0.000 0.000 0.000 +2454720.5 2.96498 2.83737 -33469848.3 0.00052 0.00056 3.4 0.000 0.000 0.000 +2454721.5 2.95766 2.80730 -33470478.4 0.00052 0.00057 2.9 0.000 0.000 0.000 +2454722.5 2.94480 2.77751 -33471408.6 0.00035 0.00053 3.6 0.000 0.000 0.000 +2454723.5 2.92849 2.74570 -33472631.7 0.00065 0.00062 3.0 0.000 0.000 0.000 +2454724.5 2.91434 2.71307 -33474094.6 0.00066 0.00059 2.9 0.000 0.000 0.000 +2454725.5 2.90744 2.68288 -33475709.3 0.00064 0.00039 3.8 0.000 0.000 0.000 +2454726.5 2.89310 2.65032 -33477328.6 0.00067 0.00047 3.3 0.000 0.000 0.000 +2454727.5 2.87897 2.61720 -33478799.2 0.00068 0.00047 3.5 0.000 0.000 0.000 +2454728.5 2.85889 2.58121 -33480021.0 0.00066 0.00046 3.5 0.000 0.000 0.000 +2454729.5 2.84193 2.54673 -33480986.5 0.00030 0.00029 5.2 0.000 0.000 0.000 +2454730.5 2.82213 2.51240 -33481685.1 0.00033 0.00043 5.1 0.000 0.000 0.000 +2454731.5 2.80182 2.47823 -33482261.9 0.00033 0.00042 5.2 0.000 0.000 0.000 +2454732.5 2.78385 2.44377 -33482856.1 0.00019 0.00035 6.3 0.000 0.000 0.000 +2454733.5 2.76520 2.40912 -33483503.5 0.00023 0.00047 5.6 0.000 0.000 0.000 +2454734.5 2.74748 2.37667 -33484301.8 0.00023 0.00047 5.6 0.000 0.000 0.000 +2454735.5 2.73047 2.34332 -33485364.8 0.00023 0.00048 5.2 0.000 0.000 0.000 +2454736.5 2.71318 2.31072 -33486613.5 0.00016 0.00038 6.0 0.000 0.000 0.000 +2454737.5 2.69803 2.27959 -33487983.6 0.00024 0.00040 4.1 0.000 0.000 0.000 +2454738.5 2.68275 2.25373 -33489419.2 0.00025 0.00041 4.1 0.000 0.000 0.000 +2454739.5 2.66471 2.22809 -33490783.5 0.00023 0.00023 4.0 0.000 0.000 0.000 +2454740.5 2.64587 2.20308 -33491992.8 0.00039 0.00030 3.8 0.000 0.000 0.000 +2454741.5 2.62433 2.17688 -33492992.1 0.00039 0.00030 3.6 0.000 0.000 0.000 +2454742.5 2.59886 2.15020 -33493744.9 0.00040 0.00030 3.4 0.000 0.000 0.000 +2454743.5 2.56856 2.12306 -33494284.8 0.00037 0.00024 4.6 0.000 0.000 0.000 +2454744.5 2.54342 2.09773 -33494677.6 0.00036 0.00033 4.3 0.000 0.000 0.000 +2454745.5 2.52085 2.07577 -33495025.1 0.00035 0.00032 4.6 0.000 0.000 0.000 +2454746.5 2.49677 2.05627 -33495358.4 0.00020 0.00026 5.5 0.000 0.000 0.000 +2454747.5 2.47189 2.03449 -33495835.8 0.00040 0.00041 5.2 0.000 0.000 0.000 +2454748.5 2.44829 2.00804 -33496510.2 0.00039 0.00040 5.2 0.000 0.000 0.000 +2454749.5 2.42358 1.97945 -33497413.4 0.00039 0.00041 4.8 0.000 0.000 0.000 +2454750.5 2.39650 1.94684 -33498548.8 0.00040 0.00035 7.2 0.000 0.000 0.000 +2454751.5 2.37103 1.91736 -33499911.6 0.00041 0.00036 6.8 0.000 0.000 0.000 +2454752.5 2.34788 1.89144 -33501434.8 0.00044 0.00043 5.1 0.000 0.000 0.000 +2454753.5 2.32493 1.86805 -33503032.6 0.00027 0.00028 6.2 0.000 0.000 0.000 +2454754.5 2.29737 1.84810 -33504534.8 0.00035 0.00041 6.4 0.000 0.000 0.000 +2454755.5 2.27042 1.82471 -33505923.3 0.00035 0.00041 6.5 0.000 0.000 0.000 +2454756.5 2.24479 1.80370 -33507135.7 0.00035 0.00041 5.5 0.000 0.000 0.000 +2454757.5 2.21608 1.77813 -33508154.8 0.00035 0.00041 5.4 0.000 0.000 0.000 +2454758.5 2.18911 1.75214 -33509054.1 0.00040 0.00045 4.4 0.000 0.000 0.000 +2454759.5 2.16209 1.72772 -33510026.4 0.00039 0.00045 4.0 0.000 0.000 0.000 +2454760.5 2.13735 1.70661 -33511112.2 0.00033 0.00035 3.6 0.000 0.000 0.000 +2454761.5 2.11255 1.68683 -33512327.6 0.00043 0.00047 3.9 0.000 0.000 0.000 +2454762.5 2.08388 1.66870 -33513729.5 0.00043 0.00048 3.8 0.000 0.000 0.000 +2454763.5 2.05056 1.64921 -33515321.8 0.00043 0.00048 3.8 0.000 0.000 0.000 +2454764.5 2.01193 1.62489 -33516977.6 0.00032 0.00039 6.3 0.000 0.000 0.000 +2454765.5 1.97804 1.59939 -33518620.2 0.00040 0.00052 4.8 0.000 0.000 0.000 +2454766.5 1.95242 1.57912 -33520212.1 0.00040 0.00053 4.1 0.000 0.000 0.000 +2454767.5 1.93363 1.56785 -33521696.3 0.00028 0.00042 3.8 0.000 0.000 0.000 +2454768.5 1.91118 1.55765 -33522998.7 0.00043 0.00043 4.0 0.000 0.000 0.000 +2454769.5 1.88450 1.54408 -33524071.1 0.00043 0.00043 3.9 0.000 0.000 0.000 +2454770.5 1.85749 1.52976 -33524950.6 0.00043 0.00044 3.6 0.000 0.000 0.000 +2454771.5 1.82560 1.51437 -33525696.6 0.00036 0.00023 4.6 0.000 0.000 0.000 +2454772.5 1.79459 1.49710 -33526308.9 0.00048 0.00031 4.8 0.000 0.000 0.000 +2454773.5 1.76442 1.48499 -33526926.7 0.00048 0.00030 4.5 0.000 0.000 0.000 +2454774.5 1.73374 1.47718 -33527590.8 0.00035 0.00027 4.6 0.000 0.000 0.000 +2454775.5 1.69752 1.46720 -33528301.6 0.00040 0.00033 4.6 0.000 0.000 0.000 +2454776.5 1.66528 1.45646 -33529143.1 0.00040 0.00032 4.7 0.000 0.000 0.000 +2454777.5 1.63846 1.44712 -33530181.6 0.00041 0.00033 4.9 0.000 0.000 0.000 +2454778.5 1.60873 1.43875 -33531430.1 0.00026 0.00026 5.0 0.000 0.000 0.000 +2454779.5 1.57693 1.43022 -33532882.0 0.00039 0.00027 4.5 0.000 0.000 0.000 +2454780.5 1.54042 1.42217 -33534504.7 0.00039 0.00029 4.5 0.000 0.000 0.000 +2454781.5 1.50380 1.41131 -33536179.5 0.00035 0.00041 4.5 0.000 0.000 0.000 +2454782.5 1.46666 1.40298 -33537797.1 0.00049 0.00043 4.6 0.000 0.000 0.000 +2454783.5 1.42541 1.39285 -33539194.2 0.00048 0.00043 4.7 0.000 0.000 0.000 +2454784.5 1.38483 1.37995 -33540309.7 0.00048 0.00043 4.5 0.000 0.000 0.000 +2454785.5 1.34465 1.36865 -33541169.1 0.00040 0.00044 5.3 0.000 0.000 0.000 +2454786.5 1.30866 1.36164 -33541923.9 0.00045 0.00057 6.3 0.000 0.000 0.000 +2454787.5 1.26955 1.35747 -33542769.8 0.00050 0.00054 6.3 0.000 0.000 0.000 +2454788.5 1.23294 1.35492 -33543856.1 0.00035 0.00054 7.9 0.000 0.000 0.000 +2454789.5 1.20601 1.35099 -33545268.6 0.00043 0.00057 6.4 0.000 0.000 0.000 +2454790.5 1.18505 1.35176 -33546932.3 0.00043 0.00057 6.5 0.000 0.000 0.000 +2454791.5 1.17028 1.35524 -33548762.1 0.00043 0.00057 6.5 0.000 0.000 0.000 +2454792.5 1.15361 1.35985 -33550643.1 0.00039 0.00044 5.5 0.000 0.000 0.000 +2454793.5 1.13346 1.36287 -33552470.1 0.00046 0.00040 4.4 0.000 0.000 0.000 +2454794.5 1.10919 1.36681 -33554166.9 0.00048 0.00042 5.0 0.000 0.000 0.000 +2454795.5 1.07709 1.37352 -33555704.2 0.00042 0.00039 4.9 0.000 0.000 0.000 +2454796.5 1.04448 1.37169 -33557070.2 0.00039 0.00037 4.9 0.000 0.000 0.000 +2454797.5 1.01239 1.36603 -33558314.3 0.00038 0.00037 4.9 0.000 0.000 0.000 +2454798.5 0.98300 1.36227 -33559388.0 0.00038 0.00037 5.0 0.000 0.000 0.000 +2454799.5 0.95117 1.35924 -33560333.2 0.00015 0.00021 7.2 0.000 0.000 0.000 +2454800.5 0.91675 1.35617 -33561201.4 0.00042 0.00032 3.8 0.000 0.000 0.000 +2454801.5 0.88230 1.35360 -33562092.0 0.00048 0.00032 3.7 0.000 0.000 0.000 +2454802.5 0.84608 1.35254 -33563064.3 0.00049 0.00032 3.8 0.000 0.000 0.000 +2454803.5 0.80444 1.35144 -33564117.7 0.00050 0.00039 4.1 0.000 0.000 0.000 +2454804.5 0.76002 1.35112 -33565290.2 0.00050 0.00038 4.2 0.000 0.000 0.000 +2454805.5 0.71845 1.35193 -33566647.3 0.00051 0.00039 4.2 0.000 0.000 0.000 +2454806.5 0.68079 1.35362 -33568187.3 0.00035 0.00030 5.7 0.000 0.000 0.000 +2454807.5 0.64619 1.35149 -33569830.1 0.00026 0.00030 6.5 0.000 0.000 0.000 +2454808.5 0.61523 1.34622 -33571519.0 0.00044 0.00039 4.7 0.000 0.000 0.000 +2454809.5 0.59083 1.34377 -33573121.0 0.00040 0.00030 4.5 0.000 0.000 0.000 +2454810.5 0.56585 1.34836 -33574494.2 0.00040 0.00047 4.2 0.000 0.000 0.000 +2454811.5 0.53673 1.35004 -33575613.8 0.00041 0.00047 4.2 0.000 0.000 0.000 +2454812.5 0.50395 1.34513 -33576486.8 0.00041 0.00048 4.1 0.000 0.000 0.000 +2454813.5 0.47289 1.34464 -33577155.2 0.00041 0.00048 4.6 0.000 0.000 0.000 +2454814.5 0.44777 1.34353 -33577862.4 0.00031 0.00045 4.8 0.000 0.000 0.000 +2454815.5 0.42756 1.34526 -33578761.1 0.00030 0.00045 5.1 0.000 0.000 0.000 +2454816.5 0.40047 1.34890 -33579918.5 0.00040 0.00035 5.5 0.000 0.000 0.000 +2454817.5 0.36894 1.35088 -33581250.7 0.00042 0.00041 5.1 0.000 0.000 0.000 +2454818.5 0.33649 1.35583 -33582667.9 0.00042 0.00040 5.1 0.000 0.000 0.000 +2454819.5 0.30524 1.36008 -33584124.1 0.00042 0.00040 4.6 0.000 0.000 0.000 +2454820.5 0.27497 1.36613 -33585514.2 0.00037 0.00039 5.6 0.000 0.000 0.000 +2454821.5 0.24441 1.37377 -33586736.1 0.00044 0.00044 4.1 0.000 0.000 0.000 +2454822.5 0.21198 1.38167 -33587752.9 0.00035 0.00038 3.9 0.000 0.000 0.000 +2454823.5 0.17941 1.38619 -33588582.9 0.00033 0.00032 4.1 0.000 0.000 0.000 +2454824.5 0.14494 1.39061 -33589212.1 0.00032 0.00034 4.1 0.000 0.000 0.000 +2454825.5 0.10792 1.39471 -33589620.2 0.00032 0.00035 4.4 0.000 0.000 0.000 +2454826.5 0.06725 1.39911 -33589870.3 0.00032 0.00036 4.3 0.000 0.000 0.000 +2454827.5 0.02820 1.40527 -33590062.5 0.00016 0.00025 12.2 0.000 0.000 0.000 +2454828.5 -0.01067 1.41735 -33590316.8 0.00020 0.00036 4.4 0.000 0.000 0.000 +2454829.5 -0.05292 1.43072 -33590666.4 0.00037 0.00036 4.6 0.000 0.000 0.000 +2454830.5 -0.09669 1.44199 -33591149.8 0.00036 0.00035 4.6 0.000 0.000 0.000 +2454831.5 -0.13385 1.45051 -33591869.2 0.00036 0.00033 4.3 0.000 0.000 0.000 +2454832.5 -0.17044 1.46199 -33592836.2 0.00036 0.00033 4.2 0.000 0.000 0.000 +2454833.5 -0.20397 1.47523 -33594016.1 0.00036 0.00033 3.9 0.000 0.000 0.000 +2454834.5 -0.23227 1.49020 -33595322.0 0.00035 0.00019 8.0 0.000 0.000 0.000 +2454835.5 -0.25761 1.50731 -33596647.8 0.00019 0.00045 3.9 0.000 0.000 0.000 +2454836.5 -0.29078 1.52677 -33597925.9 0.00020 0.00046 4.5 0.000 0.000 0.000 +2454837.5 -0.33309 1.54602 -33599089.5 0.00020 0.00046 4.5 0.000 0.000 0.000 +2454838.5 -0.37543 1.56220 -33600054.4 0.00021 0.00044 4.5 0.000 0.000 0.000 +2454839.5 -0.41712 1.58021 -33600773.3 0.00020 0.00044 4.5 0.000 0.000 0.000 +2454840.5 -0.45862 1.59658 -33601311.3 0.00020 0.00044 4.3 0.000 0.000 0.000 +2454841.5 -0.49576 1.61183 -33601868.8 0.00015 0.00018 5.9 0.000 0.000 0.000 +2454842.5 -0.53085 1.62731 -33602542.7 0.00040 0.00050 6.3 0.000 0.000 0.000 +2454843.5 -0.56513 1.64371 -33603489.6 0.00045 0.00052 6.2 0.000 0.000 0.000 +2454844.5 -0.59446 1.66216 -33604717.2 0.00047 0.00055 7.6 0.000 0.000 0.000 +2454845.5 -0.62418 1.67690 -33606147.9 0.00046 0.00058 6.2 0.000 0.000 0.000 +2454846.5 -0.65336 1.69230 -33607657.0 0.00047 0.00059 6.2 0.000 0.000 0.000 +2454847.5 -0.68170 1.70405 -33609110.3 0.00046 0.00059 6.1 0.000 0.000 0.000 +2454848.5 -0.70736 1.71430 -33610382.8 0.00027 0.00035 3.9 0.000 0.000 0.000 +2454849.5 -0.73232 1.73058 -33611446.4 0.00016 0.00032 5.6 0.000 0.000 0.000 +2454850.5 -0.75712 1.74914 -33612236.4 0.00027 0.00033 5.0 0.000 0.000 0.000 +2454851.5 -0.78299 1.77057 -33612748.2 0.00033 0.00025 5.5 0.000 0.000 0.000 +2454852.5 -0.81094 1.79554 -33613026.0 0.00032 0.00027 5.5 0.000 0.000 0.000 +2454853.5 -0.84432 1.81885 -33613157.6 0.00033 0.00027 5.6 0.000 0.000 0.000 +2454854.5 -0.87529 1.84274 -33613213.0 0.00032 0.00028 5.6 0.000 0.000 0.000 +2454855.5 -0.90039 1.86692 -33613259.5 0.00033 0.00030 5.3 0.000 0.000 0.000 +2454856.5 -0.91630 1.89374 -33613382.0 0.00044 0.00050 6.4 0.000 0.000 0.000 +2454857.5 -0.93166 1.92153 -33613670.6 0.00040 0.00050 6.7 0.000 0.000 0.000 +2454858.5 -0.94400 1.94929 -33614130.2 0.00040 0.00050 9.9 0.000 0.000 0.000 +2454859.5 -0.95988 1.97425 -33614801.5 0.00038 0.00049 8.1 0.000 0.000 0.000 +2454860.5 -0.98052 2.00010 -33615632.0 0.00038 0.00049 8.5 0.000 0.000 0.000 +2454861.5 -1.00304 2.02626 -33616566.0 0.00038 0.00048 8.1 0.000 0.000 0.000 +2454862.5 -1.02836 2.05302 -33617549.2 0.00016 0.00024 9.0 0.000 0.000 0.000 +2454863.5 -1.05453 2.07981 -33618461.4 0.00030 0.00033 8.1 0.000 0.000 0.000 +2454864.5 -1.07442 2.10610 -33619289.0 0.00030 0.00033 8.1 0.000 0.000 0.000 +2454865.5 -1.08356 2.13588 -33619957.2 0.00030 0.00031 8.9 0.000 0.000 0.000 +2454866.5 -1.09038 2.16959 -33620489.6 0.00033 0.00032 6.8 0.000 0.000 0.000 +2454867.5 -1.10036 2.20691 -33620925.3 0.00033 0.00031 6.7 0.000 0.000 0.000 +2454868.5 -1.11710 2.24377 -33621370.0 0.00033 0.00031 6.1 0.000 0.000 0.000 +2454869.5 -1.13772 2.27948 -33621909.0 0.00023 0.00020 5.3 0.000 0.000 0.000 +2454870.5 -1.15931 2.31367 -33622669.8 0.00026 0.00024 4.8 0.000 0.000 0.000 +2454871.5 -1.18069 2.34413 -33623693.6 0.00025 0.00024 4.6 0.000 0.000 0.000 +2454872.5 -1.19681 2.37157 -33624977.6 0.00019 0.00022 5.3 0.000 0.000 0.000 +2454873.5 -1.20561 2.40420 -33626409.6 0.00041 0.00037 5.4 0.000 0.000 0.000 +2454874.5 -1.21398 2.44076 -33627844.4 0.00041 0.00038 5.7 0.000 0.000 0.000 +2454875.5 -1.22266 2.47724 -33629116.4 0.00041 0.00039 5.8 0.000 0.000 0.000 +2454876.5 -1.23713 2.51229 -33630076.7 0.00042 0.00038 7.0 0.000 0.000 0.000 +2454877.5 -1.25235 2.54944 -33630788.8 0.00042 0.00038 7.0 0.000 0.000 0.000 +2454878.5 -1.26835 2.58725 -33631321.8 0.00045 0.00041 5.7 0.000 0.000 0.000 +2454879.5 -1.28609 2.62088 -33631695.6 0.00034 0.00048 5.8 0.000 0.000 0.000 +2454880.5 -1.30546 2.65112 -33631934.6 0.00034 0.00046 5.1 0.000 0.000 0.000 +2454881.5 -1.32300 2.67850 -33632081.8 0.00034 0.00046 5.1 0.000 0.000 0.000 +2454882.5 -1.33309 2.70479 -33632224.8 0.00035 0.00046 5.1 0.000 0.000 0.000 +2454883.5 -1.33785 2.73046 -33632401.0 0.00035 0.00045 5.0 0.000 0.000 0.000 +2454884.5 -1.34125 2.75793 -33632665.4 0.00034 0.00044 6.1 0.000 0.000 0.000 +2454885.5 -1.33789 2.78718 -33633138.3 0.00053 0.00034 5.5 0.000 0.000 0.000 +2454886.5 -1.33154 2.82102 -33633855.4 0.00055 0.00035 6.0 0.000 0.000 0.000 +2454887.5 -1.33580 2.85713 -33634786.7 0.00059 0.00047 4.5 0.000 0.000 0.000 +2454888.5 -1.33488 2.88956 -33635908.6 0.00059 0.00047 4.6 0.000 0.000 0.000 +2454889.5 -1.33698 2.92591 -33637163.9 0.00058 0.00046 4.6 0.000 0.000 0.000 +2454890.5 -1.33954 2.96178 -33638440.6 0.00056 0.00045 4.6 0.000 0.000 0.000 +2454891.5 -1.34398 2.99827 -33639669.5 0.00033 0.00044 5.1 0.000 0.000 0.000 +2454892.5 -1.34752 3.03239 -33640803.7 0.00033 0.00050 5.9 0.000 0.000 0.000 +2454893.5 -1.34851 3.06385 -33641806.2 0.00025 0.00041 6.3 0.000 0.000 0.000 +2454894.5 -1.34178 3.09693 -33642693.7 0.00028 0.00046 6.0 0.000 0.000 0.000 +2454895.5 -1.33726 3.13201 -33643459.6 0.00029 0.00046 6.2 0.000 0.000 0.000 +2454896.5 -1.33376 3.16825 -33644219.8 0.00029 0.00046 6.1 0.000 0.000 0.000 +2454897.5 -1.33165 3.20706 -33645122.4 0.00020 0.00038 10.0 0.000 0.000 0.000 +2454898.5 -1.32984 3.24640 -33646230.2 0.00018 0.00027 8.4 0.000 0.000 0.000 +2454899.5 -1.32797 3.28812 -33647610.6 0.00025 0.00034 5.5 0.000 0.000 0.000 +2454900.5 -1.32486 3.32907 -33649241.1 0.00022 0.00027 5.4 0.000 0.000 0.000 +2454901.5 -1.32206 3.36867 -33650984.2 0.00028 0.00034 4.1 0.000 0.000 0.000 +2454902.5 -1.31992 3.40583 -33652713.4 0.00028 0.00035 3.9 0.000 0.000 0.000 +2454903.5 -1.31615 3.43873 -33654298.8 0.00029 0.00035 2.5 0.000 0.000 0.000 +2454904.5 -1.30940 3.46786 -33655666.8 0.00029 0.00037 3.0 0.000 0.000 0.000 +2454905.5 -1.30287 3.50101 -33656803.3 0.00030 0.00044 3.1 0.000 0.000 0.000 +2454906.5 -1.29485 3.53292 -33657723.4 0.00029 0.00043 3.1 0.000 0.000 0.000 +2454907.5 -1.28533 3.56717 -33658457.9 0.00024 0.00039 3.5 0.000 0.000 0.000 +2454908.5 -1.27723 3.59860 -33659073.1 0.00025 0.00040 3.1 0.000 0.000 0.000 +2454909.5 -1.27305 3.63323 -33659652.3 0.00025 0.00040 3.0 0.000 0.000 0.000 +2454910.5 -1.26800 3.66796 -33660290.6 0.00025 0.00038 2.8 0.000 0.000 0.000 +2454911.5 -1.26016 3.70139 -33661067.0 0.00018 0.00025 3.7 0.000 0.000 0.000 +2454912.5 -1.24867 3.73585 -33662077.8 0.00031 0.00030 3.3 0.000 0.000 0.000 +2454913.5 -1.23505 3.76873 -33663323.3 0.00030 0.00031 3.3 0.000 0.000 0.000 +2454914.5 -1.21975 3.80523 -33664777.0 0.00029 0.00027 3.8 0.000 0.000 0.000 +2454915.5 -1.20946 3.84308 -33666380.5 0.00027 0.00047 3.4 0.000 0.000 0.000 +2454916.5 -1.19911 3.87941 -33668040.8 0.00027 0.00047 3.3 0.000 0.000 0.000 +2454917.5 -1.19182 3.91627 -33669701.4 0.00027 0.00046 2.8 0.000 0.000 0.000 +2454918.5 -1.18486 3.94954 -33671277.6 0.00010 0.00045 4.1 0.000 0.000 0.000 +2454919.5 -1.18087 3.98121 -33672654.9 0.00022 0.00050 3.0 0.000 0.000 0.000 +2454920.5 -1.18409 4.00868 -33673786.8 0.00023 0.00049 3.0 0.000 0.000 0.000 +2454921.5 -1.18875 4.03648 -33674707.6 0.00024 0.00031 3.4 0.000 0.000 0.000 +2454922.5 -1.18823 4.05957 -33675503.6 0.00039 0.00037 3.5 0.000 0.000 0.000 +2454923.5 -1.17775 4.08374 -33676291.2 0.00039 0.00038 3.6 0.000 0.000 0.000 +2454924.5 -1.16593 4.10968 -33677166.3 0.00039 0.00036 3.2 0.000 0.000 0.000 +2454925.5 -1.15119 4.13685 -33678187.8 0.00035 0.00026 4.8 0.000 0.000 0.000 +2454926.5 -1.13263 4.16450 -33679386.0 0.00034 0.00031 4.5 0.000 0.000 0.000 +2454927.5 -1.10770 4.19553 -33680831.5 0.00033 0.00031 4.4 0.000 0.000 0.000 +2454928.5 -1.08475 4.23106 -33682504.4 0.00016 0.00039 4.5 0.000 0.000 0.000 +2454929.5 -1.06857 4.26107 -33684283.2 0.00015 0.00039 4.4 0.000 0.000 0.000 +2454930.5 -1.05338 4.28946 -33686018.7 0.00015 0.00039 4.3 0.000 0.000 0.000 +2454931.5 -1.03748 4.31688 -33687592.7 0.00015 0.00040 4.2 0.000 0.000 0.000 +2454932.5 -1.02305 4.34584 -33688977.1 0.00014 0.00036 4.5 0.000 0.000 0.000 +2454933.5 -1.00665 4.37104 -33690139.2 0.00015 0.00037 4.6 0.000 0.000 0.000 +2454934.5 -0.98631 4.39564 -33691067.3 0.00037 0.00032 2.8 0.000 0.000 0.000 +2454935.5 -0.96472 4.42416 -33691833.9 0.00040 0.00058 3.1 0.000 0.000 0.000 +2454936.5 -0.94200 4.45726 -33692562.1 0.00042 0.00060 3.4 0.000 0.000 0.000 +2454937.5 -0.91375 4.49192 -33693346.5 0.00042 0.00060 3.3 0.000 0.000 0.000 +2454938.5 -0.88946 4.52493 -33694247.9 0.00042 0.00060 3.3 0.000 0.000 0.000 +2454939.5 -0.86861 4.55370 -33695272.0 0.00043 0.00059 3.5 0.000 0.000 0.000 +2454940.5 -0.84849 4.58200 -33696452.6 0.00051 0.00055 4.2 0.000 0.000 0.000 +2454941.5 -0.82652 4.60853 -33697820.6 0.00068 0.00040 3.5 0.000 0.000 0.000 +2454942.5 -0.80695 4.63555 -33699409.3 0.00069 0.00035 3.4 0.000 0.000 0.000 +2454943.5 -0.78616 4.66459 -33701169.0 0.00069 0.00037 4.0 0.000 0.000 0.000 +2454944.5 -0.76946 4.69203 -33702987.1 0.00069 0.00037 4.2 0.000 0.000 0.000 +2454945.5 -0.75947 4.71643 -33704743.3 0.00068 0.00037 4.0 0.000 0.000 0.000 +2454946.5 -0.74979 4.73853 -33706351.5 0.00056 0.00034 4.4 0.000 0.000 0.000 +2454947.5 -0.73729 4.76120 -33707770.2 0.00029 0.00033 6.4 0.000 0.000 0.000 +2454948.5 -0.71983 4.78089 -33708976.5 0.00030 0.00033 6.4 0.000 0.000 0.000 +2454949.5 -0.69759 4.80214 -33710028.4 0.00045 0.00048 5.0 0.000 0.000 0.000 +2454950.5 -0.67620 4.82267 -33711030.2 0.00043 0.00049 4.7 0.000 0.000 0.000 +2454951.5 -0.65335 4.84435 -33712096.8 0.00044 0.00049 4.7 0.000 0.000 0.000 +2454952.5 -0.62327 4.86486 -33713300.8 0.00044 0.00049 4.5 0.000 0.000 0.000 +2454953.5 -0.59566 4.88644 -33714703.6 0.00040 0.00045 3.5 0.000 0.000 0.000 +2454954.5 -0.56724 4.90504 -33716315.0 0.00047 0.00048 3.6 0.000 0.000 0.000 +2454955.5 -0.53920 4.92428 -33718074.1 0.00029 0.00025 5.1 0.000 0.000 0.000 +2454956.5 -0.51567 4.94249 -33719865.5 0.00031 0.00045 3.0 0.000 0.000 0.000 +2454957.5 -0.48910 4.95917 -33721568.3 0.00031 0.00044 3.1 0.000 0.000 0.000 +2454958.5 -0.45807 4.97687 -33723099.0 0.00031 0.00044 3.5 0.000 0.000 0.000 +2454959.5 -0.42737 4.99819 -33724354.2 0.00032 0.00044 3.5 0.000 0.000 0.000 +2454960.5 -0.39683 5.02145 -33725324.1 0.00018 0.00040 3.8 0.000 0.000 0.000 +2454961.5 -0.36617 5.04362 -33726077.8 0.00026 0.00041 3.8 0.000 0.000 0.000 +2454962.5 -0.33665 5.06127 -33726687.1 0.00024 0.00021 4.6 0.000 0.000 0.000 +2454963.5 -0.31173 5.07928 -33727226.7 0.00026 0.00025 4.3 0.000 0.000 0.000 +2454964.5 -0.28493 5.09850 -33727760.4 0.00029 0.00043 3.5 0.000 0.000 0.000 +2454965.5 -0.25806 5.11948 -33728348.3 0.00028 0.00043 3.5 0.000 0.000 0.000 +2454966.5 -0.23124 5.13724 -33729057.6 0.00027 0.00043 3.4 0.000 0.000 0.000 +2454967.5 -0.20125 5.15465 -33729909.9 0.00022 0.00043 3.9 0.000 0.000 0.000 +2454968.5 -0.16642 5.16917 -33730893.2 0.00023 0.00040 3.2 0.000 0.000 0.000 +2454969.5 -0.12966 5.18540 -33732010.4 0.00022 0.00039 3.1 0.000 0.000 0.000 +2454970.5 -0.09468 5.20229 -33733300.1 0.00018 0.00017 3.7 0.000 0.000 0.000 +2454971.5 -0.05951 5.21635 -33734738.2 0.00023 0.00020 3.9 0.000 0.000 0.000 +2454972.5 -0.02623 5.22740 -33736222.5 0.00023 0.00020 4.0 0.000 0.000 0.000 +2454973.5 0.00606 5.24070 -33737623.7 0.00023 0.00022 3.5 0.000 0.000 0.000 +2454974.5 0.03645 5.25274 -33738828.5 0.00022 0.00025 5.8 0.000 0.000 0.000 +2454975.5 0.07065 5.26286 -33739856.2 0.00021 0.00026 6.5 0.000 0.000 0.000 +2454976.5 0.10746 5.27493 -33740723.5 0.00023 0.00060 5.8 0.000 0.000 0.000 +2454977.5 0.13816 5.28782 -33741475.0 0.00016 0.00063 6.5 0.000 0.000 0.000 +2454978.5 0.16571 5.30226 -33742215.1 0.00038 0.00071 5.9 0.000 0.000 0.000 +2454979.5 0.19299 5.31538 -33743064.8 0.00038 0.00070 5.9 0.000 0.000 0.000 +2454980.5 0.21808 5.32632 -33744113.7 0.00038 0.00070 6.0 0.000 0.000 0.000 +2454981.5 0.24543 5.33389 -33745392.6 0.00038 0.00070 5.6 0.000 0.000 0.000 +2454982.5 0.27828 5.33681 -33746833.9 0.00038 0.00045 6.8 0.000 0.000 0.000 +2454983.5 0.31524 5.33590 -33748291.0 0.00038 0.00042 5.7 0.000 0.000 0.000 +2454984.5 0.35482 5.33757 -33749644.6 0.00015 0.00023 5.9 0.000 0.000 0.000 +2454985.5 0.39500 5.34387 -33750838.2 0.00049 0.00032 5.7 0.000 0.000 0.000 +2454986.5 0.43757 5.35254 -33751817.9 0.00049 0.00032 5.5 0.000 0.000 0.000 +2454987.5 0.48148 5.36585 -33752576.9 0.00050 0.00031 5.7 0.000 0.000 0.000 +2454988.5 0.51747 5.37815 -33753105.2 0.00050 0.00030 5.4 0.000 0.000 0.000 +2454989.5 0.55246 5.38814 -33753489.6 0.00050 0.00030 4.1 0.000 0.000 0.000 +2454990.5 0.58615 5.39506 -33753768.8 0.00051 0.00030 4.1 0.000 0.000 0.000 +2454991.5 0.61682 5.40091 -33754025.7 0.00024 0.00029 3.5 0.000 0.000 0.000 +2454992.5 0.64355 5.40467 -33754335.0 0.00024 0.00029 3.6 0.000 0.000 0.000 +2454993.5 0.67577 5.40448 -33754750.4 0.00025 0.00029 3.6 0.000 0.000 0.000 +2454994.5 0.71043 5.40584 -33755333.3 0.00024 0.00029 3.6 0.000 0.000 0.000 +2454995.5 0.74723 5.41088 -33756072.3 0.00023 0.00029 4.3 0.000 0.000 0.000 +2454996.5 0.78521 5.41563 -33756920.4 0.00022 0.00032 4.4 0.000 0.000 0.000 +2454997.5 0.82192 5.41836 -33757845.5 0.00017 0.00023 5.9 0.000 0.000 0.000 +2454998.5 0.85633 5.41925 -33758838.6 0.00017 0.00022 5.6 0.000 0.000 0.000 +2454999.5 0.88547 5.41712 -33759875.1 0.00016 0.00043 5.0 0.000 0.000 0.000 +2455000.5 0.91222 5.41207 -33760838.2 0.00017 0.00043 5.0 0.000 0.000 0.000 +2455001.5 0.94081 5.40728 -33761646.5 0.00017 0.00045 4.9 0.000 0.000 0.000 +2455002.5 0.97215 5.40508 -33762258.4 0.00014 0.00044 6.9 0.000 0.000 0.000 +2455003.5 1.00297 5.40338 -33762650.8 0.00017 0.00055 7.0 0.000 0.000 0.000 +2455004.5 1.03108 5.39832 -33762869.0 0.00015 0.00056 7.0 0.000 0.000 0.000 +2455005.5 1.05993 5.39148 -33762998.5 0.00015 0.00045 8.6 0.000 0.000 0.000 +2455006.5 1.09191 5.38461 -33763175.2 0.00018 0.00049 7.3 0.000 0.000 0.000 +2455007.5 1.12438 5.37963 -33763463.8 0.00018 0.00050 7.3 0.000 0.000 0.000 +2455008.5 1.15341 5.37653 -33763958.6 0.00018 0.00052 6.6 0.000 0.000 0.000 +2455009.5 1.18054 5.37240 -33764629.7 0.00015 0.00042 5.7 0.000 0.000 0.000 +2455010.5 1.20823 5.36715 -33765371.8 0.00018 0.00064 4.7 0.000 0.000 0.000 +2455011.5 1.23700 5.35870 -33766069.6 0.00018 0.00065 5.4 0.000 0.000 0.000 +2455012.5 1.26820 5.34936 -33766607.3 0.00016 0.00066 5.2 0.000 0.000 0.000 +2455013.5 1.30432 5.33642 -33766911.0 0.00015 0.00066 5.3 0.000 0.000 0.000 +2455014.5 1.34308 5.32580 -33766974.1 0.00015 0.00064 4.9 0.000 0.000 0.000 +2455015.5 1.38473 5.31668 -33766838.4 0.00015 0.00062 4.8 0.000 0.000 0.000 +2455016.5 1.42482 5.31058 -33766574.2 0.00012 0.00039 6.2 0.000 0.000 0.000 +2455017.5 1.46013 5.30392 -33766207.6 0.00027 0.00035 3.9 0.000 0.000 0.000 +2455018.5 1.49141 5.29603 -33765783.5 0.00027 0.00028 4.5 0.000 0.000 0.000 +2455019.5 1.52186 5.28727 -33765376.1 0.00027 0.00049 5.2 0.000 0.000 0.000 +2455020.5 1.54813 5.27674 -33765038.8 0.00031 0.00058 5.3 0.000 0.000 0.000 +2455021.5 1.57285 5.26784 -33764851.0 0.00032 0.00059 5.4 0.000 0.000 0.000 +2455022.5 1.59851 5.25844 -33764802.9 0.00033 0.00059 5.0 0.000 0.000 0.000 +2455023.5 1.62785 5.24928 -33764880.4 0.00025 0.00061 6.9 0.000 0.000 0.000 +2455024.5 1.65867 5.24197 -33765108.7 0.00044 0.00060 5.4 0.000 0.000 0.000 +2455025.5 1.69019 5.23405 -33765409.2 0.00045 0.00043 4.8 0.000 0.000 0.000 +2455026.5 1.71848 5.22313 -33765711.9 0.00044 0.00026 4.6 0.000 0.000 0.000 +2455027.5 1.75581 5.21253 -33765999.9 0.00057 0.00049 4.3 0.000 0.000 0.000 +2455028.5 1.79230 5.20084 -33766197.1 0.00057 0.00049 4.2 0.000 0.000 0.000 +2455029.5 1.82608 5.19039 -33766254.2 0.00056 0.00049 4.1 0.000 0.000 0.000 +2455030.5 1.85927 5.18284 -33766194.2 0.00044 0.00050 5.5 0.000 0.000 0.000 +2455031.5 1.88855 5.17326 -33766052.1 0.00043 0.00049 5.2 0.000 0.000 0.000 +2455032.5 1.91896 5.16007 -33765899.6 0.00042 0.00048 3.3 0.000 0.000 0.000 +2455033.5 1.94981 5.14830 -33765820.4 0.00016 0.00025 5.0 0.000 0.000 0.000 +2455034.5 1.97874 5.13681 -33765899.7 0.00021 0.00031 5.0 0.000 0.000 0.000 +2455035.5 2.00676 5.12215 -33766181.1 0.00021 0.00030 4.9 0.000 0.000 0.000 +2455036.5 2.03127 5.10643 -33766711.1 0.00021 0.00029 4.7 0.000 0.000 0.000 +2455037.5 2.05417 5.08816 -33767419.6 0.00020 0.00029 5.5 0.000 0.000 0.000 +2455038.5 2.07853 5.06881 -33768186.1 0.00020 0.00038 8.0 0.000 0.000 0.000 +2455039.5 2.10574 5.04827 -33768889.0 0.00019 0.00039 6.6 0.000 0.000 0.000 +2455040.5 2.13265 5.02805 -33769443.6 0.00036 0.00055 5.1 0.000 0.000 0.000 +2455041.5 2.15584 5.00270 -33769748.7 0.00035 0.00064 4.8 0.000 0.000 0.000 +2455042.5 2.17549 4.97980 -33769822.3 0.00035 0.00064 5.2 0.000 0.000 0.000 +2455043.5 2.19582 4.95637 -33769689.0 0.00036 0.00064 5.1 0.000 0.000 0.000 +2455044.5 2.21750 4.92981 -33769410.5 0.00035 0.00059 5.4 0.000 0.000 0.000 +2455045.5 2.23954 4.90355 -33769065.2 0.00040 0.00068 4.8 0.000 0.000 0.000 +2455046.5 2.25914 4.87647 -33768781.2 0.00024 0.00055 6.2 0.000 0.000 0.000 +2455047.5 2.28073 4.85128 -33768604.1 0.00024 0.00043 8.0 0.000 0.000 0.000 +2455048.5 2.29973 4.82399 -33768520.6 0.00024 0.00044 5.5 0.000 0.000 0.000 +2455049.5 2.32043 4.79981 -33768615.8 0.00024 0.00044 5.1 0.000 0.000 0.000 +2455050.5 2.34236 4.77539 -33768940.2 0.00024 0.00044 4.7 0.000 0.000 0.000 +2455051.5 2.36321 4.75365 -33769396.4 0.00011 0.00024 5.3 0.000 0.000 0.000 +2455052.5 2.38378 4.73169 -33769976.7 0.00018 0.00039 4.3 0.000 0.000 0.000 +2455053.5 2.40413 4.70760 -33770644.0 0.00018 0.00039 4.0 0.000 0.000 0.000 +2455054.5 2.42378 4.68361 -33771293.9 0.00017 0.00038 5.7 0.000 0.000 0.000 +2455055.5 2.44506 4.65710 -33771837.0 0.00031 0.00056 3.3 0.000 0.000 0.000 +2455056.5 2.46642 4.63380 -33772214.7 0.00031 0.00056 3.4 0.000 0.000 0.000 +2455057.5 2.48566 4.61251 -33772398.7 0.00031 0.00056 4.2 0.000 0.000 0.000 +2455058.5 2.49933 4.59189 -33772397.1 0.00028 0.00046 5.5 0.000 0.000 0.000 +2455059.5 2.51489 4.56857 -33772324.1 0.00035 0.00049 4.8 0.000 0.000 0.000 +2455060.5 2.52848 4.54430 -33772267.4 0.00036 0.00049 4.7 0.000 0.000 0.000 +2455061.5 2.54007 4.52056 -33772369.4 0.00025 0.00028 6.6 0.000 0.000 0.000 +2455062.5 2.54989 4.49619 -33772756.2 0.00038 0.00045 5.9 0.000 0.000 0.000 +2455063.5 2.56214 4.47158 -33773418.9 0.00038 0.00045 5.3 0.000 0.000 0.000 +2455064.5 2.58103 4.44721 -33774317.6 0.00039 0.00045 5.5 0.000 0.000 0.000 +2455065.5 2.59673 4.42552 -33775325.4 0.00032 0.00041 7.8 0.000 0.000 0.000 +2455066.5 2.60895 4.40352 -33776272.8 0.00057 0.00052 7.5 0.000 0.000 0.000 +2455067.5 2.61875 4.38082 -33777088.0 0.00057 0.00052 7.0 0.000 0.000 0.000 +2455068.5 2.63221 4.35814 -33777690.9 0.00049 0.00036 8.1 0.000 0.000 0.000 +2455069.5 2.64190 4.33572 -33778056.6 0.00048 0.00038 8.3 0.000 0.000 0.000 +2455070.5 2.65370 4.31194 -33778253.0 0.00048 0.00038 8.7 0.000 0.000 0.000 +2455071.5 2.66424 4.28762 -33778356.9 0.00048 0.00037 9.1 0.000 0.000 0.000 +2455072.5 2.67593 4.26208 -33778429.0 0.00010 0.00018 14.8 0.000 0.000 0.000 +2455073.5 2.68844 4.23567 -33778495.5 0.00020 0.00038 6.8 0.000 0.000 0.000 +2455074.5 2.69880 4.20816 -33778613.1 0.00021 0.00038 6.7 0.000 0.000 0.000 +2455075.5 2.70350 4.18119 -33778833.0 0.00042 0.00038 6.5 0.000 0.000 0.000 +2455076.5 2.70914 4.14869 -33779209.6 0.00045 0.00039 5.2 0.000 0.000 0.000 +2455077.5 2.71469 4.11774 -33779767.9 0.00045 0.00039 5.2 0.000 0.000 0.000 +2455078.5 2.72207 4.08874 -33780498.8 0.00046 0.00038 5.1 0.000 0.000 0.000 +2455079.5 2.72691 4.06267 -33781371.1 0.00044 0.00020 5.2 0.000 0.000 0.000 +2455080.5 2.72788 4.03585 -33782327.9 0.00044 0.00020 5.1 0.000 0.000 0.000 +2455081.5 2.72506 4.00618 -33783270.8 0.00029 0.00029 4.7 0.000 0.000 0.000 +2455082.5 2.72311 3.97506 -33784131.8 0.00021 0.00029 5.1 0.000 0.000 0.000 +2455083.5 2.72197 3.94526 -33784837.0 0.00034 0.00030 4.7 0.000 0.000 0.000 +2455084.5 2.71814 3.91792 -33785346.1 0.00035 0.00030 4.7 0.000 0.000 0.000 +2455085.5 2.71664 3.88970 -33785703.1 0.00035 0.00030 4.7 0.000 0.000 0.000 +2455086.5 2.71554 3.85915 -33785965.0 0.00035 0.00030 4.8 0.000 0.000 0.000 +2455087.5 2.71969 3.82805 -33786260.5 0.00033 0.00016 3.6 0.000 0.000 0.000 +2455088.5 2.72475 3.79734 -33786684.9 0.00033 0.00016 3.7 0.000 0.000 0.000 +2455089.5 2.73245 3.76604 -33787311.5 0.00018 0.00012 3.9 0.000 0.000 0.000 +2455090.5 2.74178 3.73679 -33788180.6 0.00032 0.00028 3.9 0.000 0.000 0.000 +2455091.5 2.75149 3.71035 -33789325.6 0.00032 0.00027 4.1 0.000 0.000 0.000 +2455092.5 2.75705 3.68395 -33790668.9 0.00032 0.00028 4.4 0.000 0.000 0.000 +2455093.5 2.75501 3.65821 -33792014.2 0.00031 0.00028 7.4 0.000 0.000 0.000 +2455094.5 2.74923 3.63275 -33793291.1 0.00043 0.00029 6.2 0.000 0.000 0.000 +2455095.5 2.74079 3.60554 -33794378.4 0.00043 0.00029 6.2 0.000 0.000 0.000 +2455096.5 2.73511 3.57604 -33795172.9 0.00036 0.00020 7.4 0.000 0.000 0.000 +2455097.5 2.72723 3.54553 -33795698.2 0.00035 0.00025 4.9 0.000 0.000 0.000 +2455098.5 2.72052 3.51316 -33796080.1 0.00035 0.00026 5.0 0.000 0.000 0.000 +2455099.5 2.71149 3.48078 -33796382.6 0.00035 0.00026 5.5 0.000 0.000 0.000 +2455100.5 2.70258 3.45025 -33796664.1 0.00022 0.00026 6.3 0.000 0.000 0.000 +2455101.5 2.69140 3.41977 -33796944.0 0.00033 0.00029 4.5 0.000 0.000 0.000 +2455102.5 2.68335 3.39035 -33797306.8 0.00030 0.00025 4.2 0.000 0.000 0.000 +2455103.5 2.67335 3.36701 -33797896.0 0.00030 0.00021 4.8 0.000 0.000 0.000 +2455104.5 2.66612 3.34121 -33798758.0 0.00034 0.00043 4.5 0.000 0.000 0.000 +2455105.5 2.65628 3.31356 -33799864.7 0.00034 0.00043 4.1 0.000 0.000 0.000 +2455106.5 2.65054 3.28363 -33801106.0 0.00033 0.00043 3.9 0.000 0.000 0.000 +2455107.5 2.64635 3.25673 -33802398.7 0.00023 0.00042 6.8 0.000 0.000 0.000 +2455108.5 2.64212 3.23000 -33803730.6 0.00033 0.00046 5.9 0.000 0.000 0.000 +2455109.5 2.63676 3.20381 -33805001.7 0.00033 0.00046 6.3 0.000 0.000 0.000 +2455110.5 2.63245 3.17932 -33806094.9 0.00054 0.00023 6.2 0.000 0.000 0.000 +2455111.5 2.62393 3.15577 -33807024.3 0.00054 0.00023 4.7 0.000 0.000 0.000 +2455112.5 2.61917 3.13362 -33807778.2 0.00054 0.00023 4.8 0.000 0.000 0.000 +2455113.5 2.62035 3.10979 -33808406.5 0.00054 0.00023 5.0 0.000 0.000 0.000 +2455114.5 2.61745 3.08519 -33808994.1 0.00050 0.00012 5.3 0.000 0.000 0.000 +2455115.5 2.61110 3.06012 -33809615.2 0.00050 0.00013 5.0 0.000 0.000 0.000 +2455116.5 2.60123 3.03647 -33810328.0 0.00023 0.00021 4.2 0.000 0.000 0.000 +2455117.5 2.58818 3.01406 -33811268.4 0.00022 0.00020 6.0 0.000 0.000 0.000 +2455118.5 2.57135 2.99130 -33812453.1 0.00024 0.00028 4.1 0.000 0.000 0.000 +2455119.5 2.54986 2.96192 -33813826.7 0.00024 0.00028 3.6 0.000 0.000 0.000 +2455120.5 2.53604 2.93070 -33815315.1 0.00024 0.00029 3.8 0.000 0.000 0.000 +2455121.5 2.52719 2.90511 -33816797.4 0.00024 0.00029 3.7 0.000 0.000 0.000 +2455122.5 2.51887 2.87983 -33818121.6 0.00029 0.00039 4.8 0.000 0.000 0.000 +2455123.5 2.50952 2.85575 -33819224.4 0.00025 0.00039 4.1 0.000 0.000 0.000 +2455124.5 2.49946 2.83422 -33820102.5 0.00023 0.00034 7.8 0.000 0.000 0.000 +2455125.5 2.49061 2.81513 -33820802.3 0.00026 0.00039 5.2 0.000 0.000 0.000 +2455126.5 2.48013 2.79264 -33821400.7 0.00026 0.00040 4.6 0.000 0.000 0.000 +2455127.5 2.47299 2.76654 -33821972.6 0.00026 0.00041 4.9 0.000 0.000 0.000 +2455128.5 2.46068 2.73908 -33822493.9 0.00017 0.00029 5.0 0.000 0.000 0.000 +2455129.5 2.44800 2.71104 -33823055.0 0.00028 0.00053 3.7 0.000 0.000 0.000 +2455130.5 2.43965 2.68803 -33823776.0 0.00028 0.00053 3.6 0.000 0.000 0.000 +2455131.5 2.42833 2.66541 -33824664.2 0.00025 0.00051 3.9 0.000 0.000 0.000 +2455132.5 2.41868 2.64333 -33825721.0 0.00025 0.00059 3.6 0.000 0.000 0.000 +2455133.5 2.40651 2.62149 -33826899.0 0.00026 0.00059 4.4 0.000 0.000 0.000 +2455134.5 2.39442 2.59859 -33828147.3 0.00026 0.00057 4.4 0.000 0.000 0.000 +2455135.5 2.37614 2.57657 -33829417.3 0.00013 0.00038 6.3 0.000 0.000 0.000 +2455136.5 2.35681 2.55633 -33830673.3 0.00041 0.00040 4.5 0.000 0.000 0.000 +2455137.5 2.34551 2.53436 -33831796.3 0.00041 0.00040 4.5 0.000 0.000 0.000 +2455138.5 2.34389 2.51681 -33832779.0 0.00042 0.00025 5.5 0.000 0.000 0.000 +2455139.5 2.33972 2.50093 -33833600.1 0.00041 0.00037 3.4 0.000 0.000 0.000 +2455140.5 2.33292 2.48297 -33834301.8 0.00040 0.00037 3.6 0.000 0.000 0.000 +2455141.5 2.31961 2.46303 -33834969.7 0.00041 0.00037 4.2 0.000 0.000 0.000 +2455142.5 2.29712 2.43739 -33835635.5 0.00011 0.00035 6.2 0.000 0.000 0.000 +2455143.5 2.27190 2.41108 -33836391.7 0.00021 0.00042 6.5 0.000 0.000 0.000 +2455144.5 2.24924 2.38656 -33837281.9 0.00021 0.00041 6.5 0.000 0.000 0.000 +2455145.5 2.22921 2.36507 -33838315.4 0.00020 0.00029 9.1 0.000 0.000 0.000 +2455146.5 2.20570 2.34371 -33839538.7 0.00030 0.00050 7.9 0.000 0.000 0.000 +2455147.5 2.18103 2.32290 -33840866.2 0.00030 0.00050 7.9 0.000 0.000 0.000 +2455148.5 2.15701 2.30214 -33842186.8 0.00030 0.00050 7.5 0.000 0.000 0.000 +2455149.5 2.12873 2.28372 -33843339.0 0.00024 0.00044 8.1 0.000 0.000 0.000 +2455150.5 2.09649 2.26676 -33844284.5 0.00041 0.00051 5.0 0.000 0.000 0.000 +2455151.5 2.06281 2.25158 -33845036.2 0.00041 0.00051 5.7 0.000 0.000 0.000 +2455152.5 2.03076 2.23802 -33845596.7 0.00048 0.00032 5.2 0.000 0.000 0.000 +2455153.5 2.00617 2.22364 -33846053.8 0.00078 0.00059 4.9 0.000 0.000 0.000 +2455154.5 1.97881 2.20921 -33846442.0 0.00078 0.00059 4.6 0.000 0.000 0.000 +2455155.5 1.95589 2.19498 -33846779.8 0.00078 0.00058 5.0 0.000 0.000 0.000 +2455156.5 1.93614 2.18076 -33847212.3 0.00076 0.00054 7.2 0.000 0.000 0.000 +2455157.5 1.91487 2.16752 -33847836.4 0.00074 0.00059 5.0 0.000 0.000 0.000 +2455158.5 1.89655 2.15357 -33848685.7 0.00070 0.00061 5.7 0.000 0.000 0.000 +2455159.5 1.87891 2.13901 -33849705.0 0.00023 0.00034 5.3 0.000 0.000 0.000 +2455160.5 1.85801 2.12938 -33850839.3 0.00022 0.00034 5.2 0.000 0.000 0.000 +2455161.5 1.83588 2.12414 -33852086.9 0.00022 0.00034 5.8 0.000 0.000 0.000 +2455162.5 1.80910 2.11951 -33853428.0 0.00022 0.00034 6.7 0.000 0.000 0.000 +2455163.5 1.77989 2.11067 -33854781.6 0.00016 0.00019 11.2 0.000 0.000 0.000 +2455164.5 1.74997 2.10156 -33856043.6 0.00015 0.00032 6.2 0.000 0.000 0.000 +2455165.5 1.72166 2.09470 -33857154.2 0.00014 0.00032 6.2 0.000 0.000 0.000 +2455166.5 1.68713 2.08877 -33858049.0 0.00014 0.00030 5.8 0.000 0.000 0.000 +2455167.5 1.65222 2.07639 -33858756.2 0.00024 0.00032 5.2 0.000 0.000 0.000 +2455168.5 1.61833 2.06239 -33859389.4 0.00024 0.00033 5.4 0.000 0.000 0.000 +2455169.5 1.58973 2.04775 -33860038.3 0.00024 0.00033 6.2 0.000 0.000 0.000 +2455170.5 1.56631 2.03344 -33860820.4 0.00023 0.00022 8.6 0.000 0.000 0.000 +2455171.5 1.54439 2.02158 -33861751.5 0.00042 0.00034 5.4 0.000 0.000 0.000 +2455172.5 1.52193 2.01257 -33862881.0 0.00044 0.00035 5.8 0.000 0.000 0.000 +2455173.5 1.49646 2.00671 -33864162.9 0.00040 0.00034 5.9 0.000 0.000 0.000 +2455174.5 1.47276 1.99623 -33865591.5 0.00042 0.00041 4.5 0.000 0.000 0.000 +2455175.5 1.45047 1.98642 -33866987.0 0.00042 0.00041 4.7 0.000 0.000 0.000 +2455176.5 1.42594 1.97624 -33868233.3 0.00043 0.00040 5.0 0.000 0.000 0.000 +2455177.5 1.40302 1.96807 -33869262.9 0.00022 0.00031 7.7 0.000 0.000 0.000 +2455178.5 1.38331 1.96198 -33870092.1 0.00025 0.00033 5.3 0.000 0.000 0.000 +2455179.5 1.36136 1.95951 -33870794.0 0.00026 0.00033 5.2 0.000 0.000 0.000 +2455180.5 1.33229 1.95655 -33871394.9 0.00048 0.00029 6.0 0.000 0.000 0.000 +2455181.5 1.30451 1.95171 -33871967.7 0.00055 0.00059 4.9 0.000 0.000 0.000 +2455182.5 1.28009 1.94636 -33872570.1 0.00055 0.00059 4.3 0.000 0.000 0.000 +2455183.5 1.25516 1.93945 -33873230.7 0.00055 0.00059 4.1 0.000 0.000 0.000 +2455184.5 1.23345 1.93703 -33873984.1 0.00059 0.00062 7.0 0.000 0.000 0.000 +2455185.5 1.21748 1.93651 -33874876.6 0.00064 0.00062 4.9 0.000 0.000 0.000 +2455186.5 1.20006 1.93558 -33875929.3 0.00048 0.00058 5.1 0.000 0.000 0.000 +2455187.5 1.18167 1.93234 -33877150.5 0.00042 0.00025 5.1 0.000 0.000 0.000 +2455188.5 1.16014 1.92917 -33878460.0 0.00042 0.00027 5.0 0.000 0.000 0.000 +2455189.5 1.13869 1.92503 -33879800.6 0.00042 0.00027 5.0 0.000 0.000 0.000 +2455190.5 1.12058 1.92087 -33881044.2 0.00042 0.00029 4.6 0.000 0.000 0.000 +2455191.5 1.10395 1.91856 -33882192.9 0.00026 0.00033 6.6 0.000 0.000 0.000 +2455192.5 1.08650 1.91790 -33883219.1 0.00037 0.00039 4.9 0.000 0.000 0.000 +2455193.5 1.06776 1.91845 -33884070.0 0.00035 0.00044 4.7 0.000 0.000 0.000 +2455194.5 1.04892 1.91863 -33884705.7 0.00035 0.00045 4.7 0.000 0.000 0.000 +2455195.5 1.02818 1.92050 -33885129.6 0.00036 0.00048 4.8 0.000 0.000 0.000 +2455196.5 1.00708 1.92299 -33885486.3 0.00037 0.00050 5.0 0.000 0.000 0.000 +2455197.5 0.98699 1.92867 -33885921.7 0.00037 0.00044 5.4 0.000 0.000 0.000 +2455198.5 0.96644 1.93191 -33886554.6 0.00020 0.00041 11.0 0.000 0.000 0.000 +2455199.5 0.94685 1.93187 -33887474.1 0.00022 0.00049 3.9 0.000 0.000 0.000 +2455200.5 0.92774 1.93409 -33888628.7 0.00023 0.00047 4.1 0.000 0.000 0.000 +2455201.5 0.90452 1.93906 -33889981.7 0.00022 0.00045 4.1 0.000 0.000 0.000 +2455202.5 0.87640 1.94099 -33891375.5 0.00032 0.00041 3.8 0.000 0.000 0.000 +2455203.5 0.84294 1.94313 -33892653.2 0.00032 0.00041 4.4 0.000 0.000 0.000 +2455204.5 0.81350 1.94435 -33893740.2 0.00032 0.00040 3.9 0.000 0.000 0.000 +2455205.5 0.77878 1.94518 -33894601.6 0.00031 0.00018 6.8 0.000 0.000 0.000 +2455206.5 0.74223 1.94411 -33895184.7 0.00044 0.00037 4.8 0.000 0.000 0.000 +2455207.5 0.70567 1.94299 -33895581.2 0.00044 0.00037 4.8 0.000 0.000 0.000 +2455208.5 0.67585 1.94492 -33895862.3 0.00040 0.00038 4.9 0.000 0.000 0.000 +2455209.5 0.64909 1.94561 -33896119.7 0.00042 0.00037 3.4 0.000 0.000 0.000 +2455210.5 0.62148 1.94910 -33896354.5 0.00043 0.00037 3.4 0.000 0.000 0.000 +2455211.5 0.59114 1.95287 -33896673.1 0.00043 0.00038 4.7 0.000 0.000 0.000 +2455212.5 0.55838 1.95603 -33897143.0 0.00030 0.00019 5.8 0.000 0.000 0.000 +2455213.5 0.52404 1.95805 -33897785.0 0.00031 0.00022 5.8 0.000 0.000 0.000 +2455214.5 0.48856 1.95984 -33898631.9 0.00030 0.00030 4.9 0.000 0.000 0.000 +2455215.5 0.45011 1.96175 -33899587.9 0.00021 0.00031 6.2 0.000 0.000 0.000 +2455216.5 0.40985 1.96541 -33900578.2 0.00050 0.00033 5.5 0.000 0.000 0.000 +2455217.5 0.37081 1.96852 -33901577.8 0.00050 0.00034 4.7 0.000 0.000 0.000 +2455218.5 0.33510 1.97120 -33902602.0 0.00050 0.00033 4.9 0.000 0.000 0.000 +2455219.5 0.30661 1.97192 -33903587.8 0.00050 0.00032 5.0 0.000 0.000 0.000 +2455220.5 0.28105 1.97425 -33904487.1 0.00068 0.00056 6.1 0.000 0.000 0.000 +2455221.5 0.25611 1.97975 -33905274.0 0.00067 0.00056 6.2 0.000 0.000 0.000 +2455222.5 0.22913 1.98684 -33905910.5 0.00053 0.00077 7.3 0.000 0.000 0.000 +2455223.5 0.20713 1.99282 -33906462.4 0.00054 0.00072 5.9 0.000 0.000 0.000 +2455224.5 0.18856 2.00398 -33907070.3 0.00053 0.00073 5.9 0.000 0.000 0.000 +2455225.5 0.17838 2.01928 -33907896.6 0.00054 0.00074 6.8 0.000 0.000 0.000 +2455226.5 0.16357 2.04076 -33908994.2 0.00036 0.00058 7.5 0.000 0.000 0.000 +2455227.5 0.14125 2.06260 -33910403.1 0.00045 0.00071 4.0 0.000 0.000 0.000 +2455228.5 0.11515 2.07984 -33912134.3 0.00039 0.00059 4.4 0.000 0.000 0.000 +2455229.5 0.08717 2.09254 -33914019.3 0.00038 0.00062 4.5 0.000 0.000 0.000 +2455230.5 0.05996 2.10473 -33915876.3 0.00053 0.00067 4.3 0.000 0.000 0.000 +2455231.5 0.03317 2.11796 -33917576.3 0.00054 0.00050 3.2 0.000 0.000 0.000 +2455232.5 0.00882 2.12802 -33918996.4 0.00054 0.00049 2.9 0.000 0.000 0.000 +2455233.5 -0.01076 2.13414 -33920148.9 0.00048 0.00048 7.0 0.000 0.000 0.000 +2455234.5 -0.02912 2.14122 -33921086.0 0.00057 0.00060 2.2 0.000 0.000 0.000 +2455235.5 -0.04784 2.15057 -33921838.1 0.00057 0.00059 2.2 0.000 0.000 0.000 +2455236.5 -0.06463 2.16324 -33922460.5 0.00044 0.00048 2.0 0.000 0.000 0.000 +2455237.5 -0.08330 2.17852 -33923012.4 0.00044 0.00053 2.3 0.000 0.000 0.000 +2455238.5 -0.10785 2.19469 -33923613.0 0.00046 0.00053 2.5 0.000 0.000 0.000 +2455239.5 -0.13564 2.21034 -33924346.9 0.00045 0.00052 2.3 0.000 0.000 0.000 +2455240.5 -0.15952 2.22628 -33925243.0 0.00035 0.00041 4.4 0.000 0.000 0.000 +2455241.5 -0.17856 2.24401 -33926324.7 0.00032 0.00040 4.8 0.000 0.000 0.000 +2455242.5 -0.19564 2.26351 -33927570.7 0.00043 0.00042 4.2 0.000 0.000 0.000 +2455243.5 -0.21184 2.28581 -33928956.3 0.00041 0.00051 4.4 0.000 0.000 0.000 +2455244.5 -0.22561 2.30869 -33930418.4 0.00042 0.00049 3.7 0.000 0.000 0.000 +2455245.5 -0.23462 2.33014 -33931941.4 0.00043 0.00049 3.7 0.000 0.000 0.000 +2455246.5 -0.24202 2.35194 -33933421.1 0.00041 0.00048 3.8 0.000 0.000 0.000 +2455247.5 -0.25135 2.37289 -33934802.6 0.00042 0.00047 3.7 0.000 0.000 0.000 +2455248.5 -0.26351 2.39174 -33936050.6 0.00041 0.00043 2.6 0.000 0.000 0.000 +2455249.5 -0.27503 2.40883 -33937173.1 0.00042 0.00020 2.2 0.000 0.000 0.000 +2455250.5 -0.28363 2.42588 -33938181.9 0.00041 0.00017 3.1 0.000 0.000 0.000 +2455251.5 -0.29225 2.44519 -33939135.9 0.00042 0.00021 3.0 0.000 0.000 0.000 +2455252.5 -0.30416 2.46614 -33940215.5 0.00041 0.00025 3.2 0.000 0.000 0.000 +2455253.5 -0.31504 2.48732 -33941533.8 0.00043 0.00027 3.2 0.000 0.000 0.000 +2455254.5 -0.32611 2.51034 -33943102.0 0.00033 0.00027 6.6 0.000 0.000 0.000 +2455255.5 -0.33979 2.53397 -33944962.2 0.00034 0.00038 5.3 0.000 0.000 0.000 +2455256.5 -0.35078 2.55602 -33947011.6 0.00029 0.00039 4.9 0.000 0.000 0.000 +2455257.5 -0.35911 2.57748 -33949075.8 0.00031 0.00037 5.2 0.000 0.000 0.000 +2455258.5 -0.36976 2.59853 -33950953.9 0.00044 0.00066 5.9 0.000 0.000 0.000 +2455259.5 -0.38212 2.61893 -33952605.4 0.00042 0.00066 7.0 0.000 0.000 0.000 +2455260.5 -0.39071 2.63900 -33953980.3 0.00042 0.00066 7.5 0.000 0.000 0.000 +2455261.5 -0.39971 2.65944 -33955067.7 0.00041 0.00060 12.5 0.000 0.000 0.000 +2455262.5 -0.41316 2.67764 -33955975.0 0.00064 0.00059 6.8 0.000 0.000 0.000 +2455263.5 -0.42995 2.69454 -33956735.0 0.00062 0.00059 7.4 0.000 0.000 0.000 +2455264.5 -0.44848 2.71016 -33957536.7 0.00054 0.00018 7.3 0.000 0.000 0.000 +2455265.5 -0.46160 2.72458 -33958456.0 0.00053 0.00018 5.9 0.000 0.000 0.000 +2455266.5 -0.47123 2.73987 -33959394.2 0.00053 0.00018 5.4 0.000 0.000 0.000 +2455267.5 -0.47999 2.75727 -33960404.4 0.00052 0.00019 5.1 0.000 0.000 0.000 +2455268.5 -0.48754 2.77724 -33961520.5 0.00018 0.00020 7.7 0.000 0.000 0.000 +2455269.5 -0.49676 2.80115 -33962617.8 0.00018 0.00025 6.1 0.000 0.000 0.000 +2455270.5 -0.50839 2.82777 -33963743.9 0.00019 0.00024 6.1 0.000 0.000 0.000 +2455271.5 -0.51851 2.85387 -33964946.7 0.00014 0.00025 7.3 0.000 0.000 0.000 +2455272.5 -0.52573 2.87721 -33966178.4 0.00027 0.00033 6.6 0.000 0.000 0.000 +2455273.5 -0.53229 2.89648 -33967407.5 0.00027 0.00033 6.7 0.000 0.000 0.000 +2455274.5 -0.53914 2.91132 -33968509.6 0.00027 0.00032 5.7 0.000 0.000 0.000 +2455275.5 -0.54405 2.92504 -33969429.1 0.00028 0.00027 7.3 0.000 0.000 0.000 +2455276.5 -0.54503 2.94135 -33970188.7 0.00034 0.00027 3.5 0.000 0.000 0.000 +2455277.5 -0.54475 2.96084 -33970797.5 0.00034 0.00026 3.1 0.000 0.000 0.000 +2455278.5 -0.54703 2.98302 -33971340.8 0.00025 0.00012 2.8 0.000 0.000 0.000 +2455279.5 -0.55178 3.00838 -33971934.9 0.00027 0.00019 3.1 0.000 0.000 0.000 +2455280.5 -0.56019 3.03607 -33972720.8 0.00027 0.00020 3.0 0.000 0.000 0.000 +2455281.5 -0.56964 3.06150 -33973858.3 0.00027 0.00021 2.9 0.000 0.000 0.000 +2455282.5 -0.57665 3.08295 -33975332.9 0.00022 0.00021 4.1 0.000 0.000 0.000 +2455283.5 -0.58260 3.10471 -33977052.2 0.00028 0.00026 3.8 0.000 0.000 0.000 +2455284.5 -0.58945 3.12706 -33978965.5 0.00027 0.00031 4.1 0.000 0.000 0.000 +2455285.5 -0.59938 3.14878 -33980945.5 0.00025 0.00038 4.7 0.000 0.000 0.000 +2455286.5 -0.60754 3.16893 -33982777.2 0.00023 0.00038 4.8 0.000 0.000 0.000 +2455287.5 -0.61148 3.19299 -33984271.3 0.00023 0.00038 4.9 0.000 0.000 0.000 +2455288.5 -0.61573 3.21993 -33985435.4 0.00022 0.00038 4.9 0.000 0.000 0.000 +2455289.5 -0.62155 3.24663 -33986351.5 0.00013 0.00036 7.2 0.000 0.000 0.000 +2455290.5 -0.62939 3.27254 -33987141.9 0.00015 0.00033 6.0 0.000 0.000 0.000 +2455291.5 -0.64190 3.29488 -33987930.1 0.00020 0.00027 3.0 0.000 0.000 0.000 +2455292.5 -0.65810 3.31296 -33988796.5 0.00031 0.00047 2.8 0.000 0.000 0.000 +2455293.5 -0.67110 3.32970 -33989763.8 0.00035 0.00056 2.5 0.000 0.000 0.000 +2455294.5 -0.67829 3.34880 -33990862.7 0.00035 0.00056 2.3 0.000 0.000 0.000 +2455295.5 -0.68213 3.37229 -33992125.0 0.00035 0.00056 2.5 0.000 0.000 0.000 +2455296.5 -0.68444 3.39673 -33993489.6 0.00036 0.00057 2.8 0.000 0.000 0.000 +2455297.5 -0.68337 3.42270 -33994941.3 0.00068 0.00082 4.4 0.000 0.000 0.000 +2455298.5 -0.68146 3.45088 -33996484.0 0.00064 0.00073 4.8 0.000 0.000 0.000 +2455299.5 -0.68052 3.48019 -33998040.7 0.00063 0.00067 6.6 0.000 0.000 0.000 +2455300.5 -0.68459 3.50723 -33999602.3 0.00065 0.00076 7.5 0.000 0.000 0.000 +2455301.5 -0.68837 3.53109 -34001094.8 0.00065 0.00076 7.9 0.000 0.000 0.000 +2455302.5 -0.68933 3.55308 -34002465.0 0.00063 0.00075 8.0 0.000 0.000 0.000 +2455303.5 -0.69051 3.57485 -34003673.7 0.00027 0.00042 8.8 0.000 0.000 0.000 +2455304.5 -0.69188 3.59715 -34004773.2 0.00026 0.00044 7.1 0.000 0.000 0.000 +2455305.5 -0.69015 3.62089 -34005803.6 0.00025 0.00044 7.1 0.000 0.000 0.000 +2455306.5 -0.68840 3.64642 -34006847.3 0.00012 0.00026 6.4 0.000 0.000 0.000 +2455307.5 -0.68924 3.67019 -34008000.7 0.00016 0.00031 5.2 0.000 0.000 0.000 +2455308.5 -0.69356 3.69408 -34009374.6 0.00018 0.00031 4.9 0.000 0.000 0.000 +2455309.5 -0.69936 3.71850 -34010972.1 0.00018 0.00033 5.3 0.000 0.000 0.000 +2455310.5 -0.70333 3.74114 -34012737.0 0.00018 0.00030 7.0 0.000 0.000 0.000 +2455311.5 -0.70762 3.76360 -34014614.6 0.00023 0.00031 5.5 0.000 0.000 0.000 +2455312.5 -0.71057 3.78594 -34016482.8 0.00024 0.00032 5.5 0.000 0.000 0.000 +2455313.5 -0.70830 3.80998 -34018293.7 0.00020 0.00028 6.3 0.000 0.000 0.000 +2455314.5 -0.70809 3.83455 -34019929.3 0.00027 0.00042 5.1 0.000 0.000 0.000 +2455315.5 -0.71055 3.85551 -34021277.3 0.00026 0.00040 4.9 0.000 0.000 0.000 +2455316.5 -0.71124 3.87563 -34022342.4 0.00029 0.00040 3.9 0.000 0.000 0.000 +2455317.5 -0.70842 3.89536 -34023162.7 0.00025 0.00041 5.4 0.000 0.000 0.000 +2455318.5 -0.70305 3.91440 -34023814.5 0.00028 0.00054 3.5 0.000 0.000 0.000 +2455319.5 -0.69542 3.93422 -34024384.4 0.00050 0.00052 3.2 0.000 0.000 0.000 +2455320.5 -0.68372 3.95434 -34024912.3 0.00049 0.00045 3.7 0.000 0.000 0.000 +2455321.5 -0.66693 3.97455 -34025470.7 0.00057 0.00050 3.4 0.000 0.000 0.000 +2455322.5 -0.64944 3.99827 -34026100.2 0.00058 0.00054 3.2 0.000 0.000 0.000 +2455323.5 -0.62865 4.02424 -34026830.9 0.00058 0.00055 2.7 0.000 0.000 0.000 +2455324.5 -0.60583 4.05232 -34027708.6 0.00057 0.00045 5.5 0.000 0.000 0.000 +2455325.5 -0.58944 4.08074 -34028753.4 0.00049 0.00051 4.6 0.000 0.000 0.000 +2455326.5 -0.57819 4.10684 -34029921.9 0.00046 0.00050 4.6 0.000 0.000 0.000 +2455327.5 -0.56686 4.13121 -34031144.0 0.00039 0.00045 4.9 0.000 0.000 0.000 +2455328.5 -0.55555 4.15382 -34032333.6 0.00037 0.00043 4.7 0.000 0.000 0.000 +2455329.5 -0.54514 4.17515 -34033395.9 0.00036 0.00041 5.1 0.000 0.000 0.000 +2455330.5 -0.53338 4.19524 -34034288.1 0.00035 0.00040 4.5 0.000 0.000 0.000 +2455331.5 -0.51946 4.21522 -34034999.7 0.00021 0.00032 5.6 0.000 0.000 0.000 +2455332.5 -0.50576 4.23431 -34035650.3 0.00021 0.00028 4.4 0.000 0.000 0.000 +2455333.5 -0.49140 4.25006 -34036346.7 0.00020 0.00025 4.8 0.000 0.000 0.000 +2455334.5 -0.47434 4.26335 -34037157.5 0.00016 0.00061 5.5 0.000 0.000 0.000 +2455335.5 -0.45450 4.27806 -34038216.5 0.00036 0.00061 4.6 0.000 0.000 0.000 +2455336.5 -0.43507 4.29640 -34039515.1 0.00036 0.00061 4.5 0.000 0.000 0.000 +2455337.5 -0.41570 4.31470 -34041016.7 0.00035 0.00060 4.5 0.000 0.000 0.000 +2455338.5 -0.39480 4.33415 -34042672.4 0.00034 0.00060 6.0 0.000 0.000 0.000 +2455339.5 -0.37516 4.35499 -34044362.1 0.00034 0.00059 6.4 0.000 0.000 0.000 +2455340.5 -0.35695 4.37571 -34045912.9 0.00036 0.00056 4.5 0.000 0.000 0.000 +2455341.5 -0.34040 4.39627 -34047226.4 0.00019 0.00053 5.3 0.000 0.000 0.000 +2455342.5 -0.32592 4.41791 -34048266.7 0.00020 0.00052 4.5 0.000 0.000 0.000 +2455343.5 -0.31452 4.43748 -34049091.2 0.00020 0.00053 4.5 0.000 0.000 0.000 +2455344.5 -0.30428 4.45397 -34049798.3 0.00020 0.00054 4.5 0.000 0.000 0.000 +2455345.5 -0.28979 4.46704 -34050343.4 0.00020 0.00053 3.8 0.000 0.000 0.000 +2455346.5 -0.27396 4.48187 -34050744.2 0.00014 0.00020 5.1 0.000 0.000 0.000 +2455347.5 -0.25902 4.50050 -34051122.2 0.00026 0.00027 4.4 0.000 0.000 0.000 +2455348.5 -0.24151 4.51937 -34051584.6 0.00024 0.00026 5.0 0.000 0.000 0.000 +2455349.5 -0.22419 4.53604 -34052161.5 0.00030 0.00027 4.4 0.000 0.000 0.000 +2455350.5 -0.20847 4.55057 -34052830.2 0.00030 0.00028 4.5 0.000 0.000 0.000 +2455351.5 -0.19309 4.56462 -34053572.8 0.00032 0.00029 4.6 0.000 0.000 0.000 +2455352.5 -0.17307 4.57827 -34054314.0 0.00032 0.00030 5.0 0.000 0.000 0.000 +2455353.5 -0.14605 4.59353 -34055022.9 0.00025 0.00029 4.8 0.000 0.000 0.000 +2455354.5 -0.11980 4.61108 -34055682.9 0.00026 0.00029 4.9 0.000 0.000 0.000 +2455355.5 -0.09492 4.62690 -34056218.9 0.00018 0.00027 6.0 0.000 0.000 0.000 +2455356.5 -0.06631 4.64311 -34056662.0 0.00019 0.00028 4.3 0.000 0.000 0.000 +2455357.5 -0.03782 4.66074 -34056971.1 0.00018 0.00030 4.4 0.000 0.000 0.000 +2455358.5 -0.01191 4.67727 -34057163.7 0.00019 0.00031 3.7 0.000 0.000 0.000 +2455359.5 0.01701 4.69307 -34057244.9 0.00019 0.00027 4.6 0.000 0.000 0.000 +2455360.5 0.04898 4.70881 -34057295.1 0.00022 0.00038 3.8 0.000 0.000 0.000 +2455361.5 0.07768 4.72305 -34057394.7 0.00022 0.00037 3.7 0.000 0.000 0.000 +2455362.5 0.10273 4.73450 -34057599.0 0.00023 0.00036 4.5 0.000 0.000 0.000 +2455363.5 0.12930 4.74416 -34057950.1 0.00033 0.00039 4.6 0.000 0.000 0.000 +2455364.5 0.15918 4.75419 -34058454.3 0.00033 0.00041 4.6 0.000 0.000 0.000 +2455365.5 0.19204 4.76463 -34059088.7 0.00033 0.00042 4.5 0.000 0.000 0.000 +2455366.5 0.22269 4.77602 -34059740.0 0.00032 0.00034 7.5 0.000 0.000 0.000 +2455367.5 0.24903 4.78474 -34060198.1 0.00035 0.00038 6.3 0.000 0.000 0.000 +2455368.5 0.27586 4.78817 -34060409.6 0.00036 0.00042 6.1 0.000 0.000 0.000 +2455369.5 0.30631 4.78918 -34060405.5 0.00041 0.00042 6.3 0.000 0.000 0.000 +2455370.5 0.34088 4.78889 -34060150.5 0.00050 0.00056 6.6 0.000 0.000 0.000 +2455371.5 0.37829 4.79138 -34059702.0 0.00049 0.00057 6.7 0.000 0.000 0.000 +2455372.5 0.41266 4.79695 -34059129.7 0.00049 0.00057 6.5 0.000 0.000 0.000 +2455373.5 0.44247 4.80436 -34058515.6 0.00054 0.00057 7.3 0.000 0.000 0.000 +2455374.5 0.47141 4.81224 -34057934.3 0.00075 0.00056 7.0 0.000 0.000 0.000 +2455375.5 0.50218 4.81920 -34057443.6 0.00085 0.00073 8.2 0.000 0.000 0.000 +2455376.5 0.53498 4.82477 -34057104.1 0.00080 0.00059 8.0 0.000 0.000 0.000 +2455377.5 0.57016 4.82900 -34056915.5 0.00099 0.00052 7.3 0.000 0.000 0.000 +2455378.5 0.60791 4.83186 -34056854.9 0.00100 0.00052 7.4 0.000 0.000 0.000 +2455379.5 0.64653 4.83570 -34056831.0 0.00097 0.00052 7.5 0.000 0.000 0.000 +2455380.5 0.67939 4.83895 -34056870.4 0.00082 0.00050 9.5 0.000 0.000 0.000 +2455381.5 0.71051 4.84041 -34056906.3 0.00070 0.00037 6.7 0.000 0.000 0.000 +2455382.5 0.74390 4.84070 -34056850.9 0.00070 0.00042 5.1 0.000 0.000 0.000 +2455383.5 0.77806 4.84119 -34056668.8 0.00021 0.00036 6.4 0.000 0.000 0.000 +2455384.5 0.80949 4.84328 -34056331.3 0.00036 0.00041 4.4 0.000 0.000 0.000 +2455385.5 0.83753 4.84275 -34055820.6 0.00035 0.00039 4.0 0.000 0.000 0.000 +2455386.5 0.86286 4.84043 -34055222.2 0.00035 0.00037 5.2 0.000 0.000 0.000 +2455387.5 0.88547 4.83919 -34054605.5 0.00035 0.00038 5.7 0.000 0.000 0.000 +2455388.5 0.90806 4.83819 -34054065.7 0.00049 0.00033 6.0 0.000 0.000 0.000 +2455389.5 0.93112 4.83760 -34053670.9 0.00050 0.00034 5.9 0.000 0.000 0.000 +2455390.5 0.95452 4.83729 -34053482.1 0.00041 0.00027 7.0 0.000 0.000 0.000 +2455391.5 0.98063 4.83794 -34053543.9 0.00076 0.00029 6.9 0.000 0.000 0.000 +2455392.5 1.00359 4.83783 -34053765.1 0.00076 0.00031 6.5 0.000 0.000 0.000 +2455393.5 1.02327 4.83455 -34054068.5 0.00076 0.00030 6.7 0.000 0.000 0.000 +2455394.5 1.04173 4.82816 -34054389.0 0.00068 0.00026 13.8 0.000 0.000 0.000 +2455395.5 1.06508 4.81769 -34054576.5 0.00071 0.00050 11.6 0.000 0.000 0.000 +2455396.5 1.09388 4.80572 -34054628.0 0.00070 0.00050 11.4 0.000 0.000 0.000 +2455397.5 1.12117 4.79529 -34054429.2 0.00031 0.00049 13.4 0.000 0.000 0.000 +2455398.5 1.14577 4.78631 -34054012.3 0.00033 0.00056 11.0 0.000 0.000 0.000 +2455399.5 1.17029 4.77888 -34053376.7 0.00032 0.00056 10.8 0.000 0.000 0.000 +2455400.5 1.19491 4.77191 -34052603.2 0.00030 0.00056 9.3 0.000 0.000 0.000 +2455401.5 1.21692 4.76334 -34051876.9 0.00019 0.00037 10.6 0.000 0.000 0.000 +2455402.5 1.23778 4.75023 -34051168.1 0.00030 0.00040 7.9 0.000 0.000 0.000 +2455403.5 1.26216 4.73590 -34050588.1 0.00030 0.00039 7.9 0.000 0.000 0.000 +2455404.5 1.28828 4.72334 -34050194.3 0.00027 0.00027 8.0 0.000 0.000 0.000 +2455405.5 1.31240 4.71305 -34049976.6 0.00037 0.00029 7.1 0.000 0.000 0.000 +2455406.5 1.33349 4.70477 -34049863.3 0.00037 0.00030 6.2 0.000 0.000 0.000 +2455407.5 1.35274 4.69452 -34049779.5 0.00037 0.00031 5.6 0.000 0.000 0.000 +2455408.5 1.37268 4.68060 -34049694.6 0.00030 0.00026 7.9 0.000 0.000 0.000 +2455409.5 1.39436 4.66716 -34049542.3 0.00034 0.00034 6.6 0.000 0.000 0.000 +2455410.5 1.41626 4.65566 -34049293.2 0.00034 0.00033 6.7 0.000 0.000 0.000 +2455411.5 1.43841 4.64588 -34048951.5 0.00027 0.00031 5.7 0.000 0.000 0.000 +2455412.5 1.45891 4.63658 -34048558.8 0.00034 0.00032 4.9 0.000 0.000 0.000 +2455413.5 1.47727 4.62584 -34048122.0 0.00033 0.00031 4.9 0.000 0.000 0.000 +2455414.5 1.49611 4.61361 -34047679.9 0.00034 0.00030 4.4 0.000 0.000 0.000 +2455415.5 1.51700 4.60084 -34047278.2 0.00029 0.00021 3.5 0.000 0.000 0.000 +2455416.5 1.53882 4.58933 -34047034.3 0.00035 0.00027 3.1 0.000 0.000 0.000 +2455417.5 1.56142 4.57860 -34047042.8 0.00031 0.00027 3.4 0.000 0.000 0.000 +2455418.5 1.58482 4.56690 -34047349.7 0.00024 0.00025 4.7 0.000 0.000 0.000 +2455419.5 1.61146 4.55444 -34047949.1 0.00038 0.00036 5.5 0.000 0.000 0.000 +2455420.5 1.64028 4.54279 -34048700.4 0.00038 0.00037 5.5 0.000 0.000 0.000 +2455421.5 1.66640 4.53004 -34049431.3 0.00043 0.00042 5.2 0.000 0.000 0.000 +2455422.5 1.68954 4.51451 -34050052.3 0.00042 0.00040 6.6 0.000 0.000 0.000 +2455423.5 1.71424 4.49655 -34050458.1 0.00046 0.00040 7.4 0.000 0.000 0.000 +2455424.5 1.74493 4.48083 -34050606.9 0.00046 0.00040 7.3 0.000 0.000 0.000 +2455425.5 1.77649 4.47025 -34050532.7 0.00036 0.00031 8.2 0.000 0.000 0.000 +2455426.5 1.80237 4.46038 -34050245.3 0.00041 0.00034 8.2 0.000 0.000 0.000 +2455427.5 1.82467 4.44798 -34049850.0 0.00035 0.00030 9.3 0.000 0.000 0.000 +2455428.5 1.84536 4.43118 -34049467.5 0.00031 0.00032 9.4 0.000 0.000 0.000 +2455429.5 1.86717 4.41232 -34049140.2 0.00026 0.00030 11.3 0.000 0.000 0.000 +2455430.5 1.89184 4.39222 -34048922.1 0.00060 0.00034 6.7 0.000 0.000 0.000 +2455431.5 1.92004 4.37293 -34048900.5 0.00060 0.00033 6.9 0.000 0.000 0.000 +2455432.5 1.94894 4.35783 -34049038.9 0.00058 0.00027 6.5 0.000 0.000 0.000 +2455433.5 1.97326 4.34537 -34049263.0 0.00071 0.00028 4.8 0.000 0.000 0.000 +2455434.5 1.99370 4.33266 -34049601.7 0.00071 0.00030 5.2 0.000 0.000 0.000 +2455435.5 2.01071 4.31732 -34050004.1 0.00071 0.00032 5.0 0.000 0.000 0.000 +2455436.5 2.02336 4.29996 -34050340.4 0.00046 0.00027 7.1 0.000 0.000 0.000 +2455437.5 2.03351 4.28471 -34050616.8 0.00055 0.00040 5.7 0.000 0.000 0.000 +2455438.5 2.04400 4.27118 -34050807.6 0.00055 0.00041 5.7 0.000 0.000 0.000 +2455439.5 2.05687 4.25772 -34050902.2 0.00038 0.00038 5.9 0.000 0.000 0.000 +2455440.5 2.06845 4.24570 -34050910.7 0.00047 0.00040 6.1 0.000 0.000 0.000 +2455441.5 2.07681 4.23094 -34050824.9 0.00047 0.00040 6.1 0.000 0.000 0.000 +2455442.5 2.08720 4.21277 -34050738.5 0.00048 0.00041 6.0 0.000 0.000 0.000 +2455443.5 2.10067 4.19428 -34050709.9 0.00044 0.00028 9.9 0.000 0.000 0.000 +2455444.5 2.11480 4.17801 -34050840.9 0.00047 0.00027 9.8 0.000 0.000 0.000 +2455445.5 2.12732 4.16241 -34051230.6 0.00047 0.00043 8.0 0.000 0.000 0.000 +2455446.5 2.14143 4.14463 -34051917.6 0.00038 0.00040 7.1 0.000 0.000 0.000 +2455447.5 2.15721 4.12641 -34052849.6 0.00057 0.00043 6.3 0.000 0.000 0.000 +2455448.5 2.17179 4.10827 -34053927.9 0.00054 0.00042 6.6 0.000 0.000 0.000 +2455449.5 2.18730 4.08775 -34054965.9 0.00047 0.00043 6.4 0.000 0.000 0.000 +2455450.5 2.20327 4.06598 -34055763.6 0.00045 0.00046 7.1 0.000 0.000 0.000 +2455451.5 2.21749 4.04425 -34056295.6 0.00050 0.00079 9.9 0.000 0.000 0.000 +2455452.5 2.22792 4.02257 -34056550.4 0.00056 0.00080 8.3 0.000 0.000 0.000 +2455453.5 2.23689 3.99786 -34056554.7 0.00041 0.00079 9.3 0.000 0.000 0.000 +2455454.5 2.24907 3.97095 -34056428.7 0.00057 0.00103 9.6 0.000 0.000 0.000 +2455455.5 2.26531 3.94765 -34056294.8 0.00057 0.00102 9.7 0.000 0.000 0.000 +2455456.5 2.27996 3.92865 -34056185.1 0.00057 0.00100 9.3 0.000 0.000 0.000 +2455457.5 2.29332 3.91122 -34056175.4 0.00052 0.00071 7.1 0.000 0.000 0.000 +2455458.5 2.30590 3.89510 -34056305.8 0.00056 0.00103 7.4 0.000 0.000 0.000 +2455459.5 2.31487 3.87931 -34056561.8 0.00056 0.00103 7.5 0.000 0.000 0.000 +2455460.5 2.31967 3.86101 -34056911.7 0.00039 0.00080 6.6 0.000 0.000 0.000 +2455461.5 2.32356 3.84078 -34057302.8 0.00060 0.00083 5.4 0.000 0.000 0.000 +2455462.5 2.33140 3.81949 -34057760.0 0.00061 0.00083 6.1 0.000 0.000 0.000 +2455463.5 2.34164 3.80164 -34058269.9 0.00062 0.00084 5.9 0.000 0.000 0.000 +2455464.5 2.34768 3.78543 -34058724.5 0.00053 0.00036 7.4 0.000 0.000 0.000 +2455465.5 2.35130 3.76768 -34059156.9 0.00059 0.00074 6.5 0.000 0.000 0.000 +2455466.5 2.35301 3.74891 -34059487.7 0.00059 0.00073 6.0 0.000 0.000 0.000 +2455467.5 2.35293 3.72726 -34059680.6 0.00036 0.00070 7.4 0.000 0.000 0.000 +2455468.5 2.35132 3.70418 -34059792.5 0.00075 0.00082 6.6 0.000 0.000 0.000 +2455469.5 2.34733 3.68099 -34059890.6 0.00075 0.00082 6.5 0.000 0.000 0.000 +2455470.5 2.34235 3.65788 -34060109.5 0.00075 0.00083 6.3 0.000 0.000 0.000 +2455471.5 2.34022 3.63468 -34060452.0 0.00070 0.00051 9.6 0.000 0.000 0.000 +2455472.5 2.33995 3.60992 -34061092.8 0.00071 0.00052 7.1 0.000 0.000 0.000 +2455473.5 2.33987 3.58554 -34062127.9 0.00071 0.00051 7.3 0.000 0.000 0.000 +2455474.5 2.34237 3.56185 -34063486.7 0.00024 0.00028 7.6 0.000 0.000 0.000 +2455475.5 2.34755 3.53854 -34065099.5 0.00026 0.00031 5.6 0.000 0.000 0.000 +2455476.5 2.34990 3.51567 -34066808.3 0.00026 0.00031 5.3 0.000 0.000 0.000 +2455477.5 2.34826 3.49142 -34068433.7 0.00025 0.00027 4.0 0.000 0.000 0.000 +2455478.5 2.34462 3.46612 -34069847.3 0.00020 0.00026 4.6 0.000 0.000 0.000 +2455479.5 2.34145 3.44216 -34071041.0 0.00018 0.00029 5.5 0.000 0.000 0.000 +2455480.5 2.33927 3.41907 -34072012.0 0.00019 0.00028 6.0 0.000 0.000 0.000 +2455481.5 2.33782 3.39488 -34072833.2 0.00028 0.00025 6.1 0.000 0.000 0.000 +2455482.5 2.33866 3.37299 -34073611.3 0.00031 0.00028 5.8 0.000 0.000 0.000 +2455483.5 2.34120 3.35535 -34074373.1 0.00034 0.00028 5.7 0.000 0.000 0.000 +2455484.5 2.34299 3.33960 -34075217.6 0.00034 0.00028 5.9 0.000 0.000 0.000 +2455485.5 2.34039 3.32466 -34076107.6 0.00034 0.00026 5.7 0.000 0.000 0.000 +2455486.5 2.33555 3.30809 -34077084.1 0.00035 0.00033 4.5 0.000 0.000 0.000 +2455487.5 2.33206 3.28949 -34078177.3 0.00030 0.00035 4.2 0.000 0.000 0.000 +2455488.5 2.32894 3.26981 -34079345.7 0.00027 0.00031 4.4 0.000 0.000 0.000 +2455489.5 2.32426 3.25038 -34080590.7 0.00025 0.00034 4.9 0.000 0.000 0.000 +2455490.5 2.31872 3.22987 -34081813.1 0.00025 0.00038 4.2 0.000 0.000 0.000 +2455491.5 2.31299 3.20671 -34082943.1 0.00033 0.00040 3.9 0.000 0.000 0.000 +2455492.5 2.30681 3.18399 -34083955.3 0.00033 0.00038 9.8 0.000 0.000 0.000 +2455493.5 2.30035 3.16542 -34084807.3 0.00069 0.00042 3.8 0.000 0.000 0.000 +2455494.5 2.28955 3.14911 -34085518.5 0.00072 0.00044 3.4 0.000 0.000 0.000 +2455495.5 2.27457 3.12983 -34086120.0 0.00075 0.00042 2.9 0.000 0.000 0.000 +2455496.5 2.26290 3.10733 -34086661.2 0.00081 0.00050 3.2 0.000 0.000 0.000 +2455497.5 2.25399 3.08391 -34087193.5 0.00077 0.00048 3.9 0.000 0.000 0.000 +2455498.5 2.24694 3.06015 -34087829.6 0.00077 0.00045 3.8 0.000 0.000 0.000 +2455499.5 2.24081 3.03687 -34088653.8 0.00036 0.00041 8.5 0.000 0.000 0.000 +2455500.5 2.23382 3.01617 -34089736.2 0.00034 0.00041 8.7 0.000 0.000 0.000 +2455501.5 2.22513 2.99563 -34091112.3 0.00054 0.00053 4.3 0.000 0.000 0.000 +2455502.5 2.21576 2.97141 -34092715.5 0.00048 0.00052 4.1 0.000 0.000 0.000 +2455503.5 2.20942 2.94379 -34094453.8 0.00070 0.00055 3.8 0.000 0.000 0.000 +2455504.5 2.20650 2.91861 -34096154.3 0.00073 0.00055 4.1 0.000 0.000 0.000 +2455505.5 2.20424 2.89535 -34097713.3 0.00073 0.00056 4.1 0.000 0.000 0.000 +2455506.5 2.20240 2.87366 -34099067.9 0.00074 0.00055 4.1 0.000 0.000 0.000 +2455507.5 2.19394 2.85358 -34100154.2 0.00064 0.00049 5.3 0.000 0.000 0.000 +2455508.5 2.17752 2.83082 -34100978.6 0.00064 0.00041 5.2 0.000 0.000 0.000 +2455509.5 2.16202 2.80744 -34101671.2 0.00041 0.00033 5.9 0.000 0.000 0.000 +2455510.5 2.14986 2.78741 -34102256.4 0.00050 0.00040 4.3 0.000 0.000 0.000 +2455511.5 2.13800 2.76894 -34102844.6 0.00051 0.00037 4.4 0.000 0.000 0.000 +2455512.5 2.12743 2.75098 -34103528.0 0.00049 0.00037 5.2 0.000 0.000 0.000 +2455513.5 2.11919 2.73591 -34104344.8 0.00046 0.00030 5.8 0.000 0.000 0.000 +2455514.5 2.11023 2.72269 -34105325.1 0.00052 0.00033 4.7 0.000 0.000 0.000 +2455515.5 2.09971 2.70670 -34106422.2 0.00053 0.00034 4.7 0.000 0.000 0.000 +2455516.5 2.08874 2.68584 -34107587.3 0.00040 0.00027 4.2 0.000 0.000 0.000 +2455517.5 2.07947 2.66115 -34108771.4 0.00051 0.00035 4.1 0.000 0.000 0.000 +2455518.5 2.07160 2.63523 -34109876.9 0.00052 0.00037 3.6 0.000 0.000 0.000 +2455519.5 2.06385 2.60932 -34110895.9 0.00053 0.00039 3.7 0.000 0.000 0.000 +2455520.5 2.05624 2.58399 -34111735.7 0.00048 0.00036 4.0 0.000 0.000 0.000 +2455521.5 2.05126 2.56165 -34112410.8 0.00056 0.00049 3.7 0.000 0.000 0.000 +2455522.5 2.04811 2.54189 -34112971.5 0.00072 0.00054 4.7 0.000 0.000 0.000 +2455523.5 2.04138 2.52355 -34113458.6 0.00065 0.00053 4.6 0.000 0.000 0.000 +2455524.5 2.02857 2.50655 -34113951.3 0.00064 0.00051 4.6 0.000 0.000 0.000 +2455525.5 2.01260 2.48800 -34114507.2 0.00064 0.00051 6.0 0.000 0.000 0.000 +2455526.5 1.99938 2.47016 -34115206.3 0.00066 0.00055 5.7 0.000 0.000 0.000 +2455527.5 1.98714 2.45620 -34116131.8 0.00060 0.00043 7.8 0.000 0.000 0.000 +2455528.5 1.97263 2.44354 -34117321.0 0.00062 0.00042 5.5 0.000 0.000 0.000 +2455529.5 1.95850 2.42804 -34118680.8 0.00062 0.00039 5.8 0.000 0.000 0.000 +2455530.5 1.94746 2.41134 -34120063.9 0.00065 0.00041 5.9 0.000 0.000 0.000 +2455531.5 1.93506 2.39727 -34121433.4 0.00066 0.00051 4.1 0.000 0.000 0.000 +2455532.5 1.92145 2.38409 -34122668.0 0.00065 0.00047 5.4 0.000 0.000 0.000 +2455533.5 1.91013 2.36933 -34123664.5 0.00065 0.00046 7.6 0.000 0.000 0.000 +2455534.5 1.89922 2.35465 -34124405.3 0.00042 0.00034 12.3 0.000 0.000 0.000 +2455535.5 1.88289 2.34015 -34124930.8 0.00043 0.00039 6.1 0.000 0.000 0.000 +2455536.5 1.86421 2.32440 -34125361.8 0.00041 0.00038 5.2 0.000 0.000 0.000 +2455537.5 1.84880 2.30879 -34125777.2 0.00035 0.00029 5.4 0.000 0.000 0.000 +2455538.5 1.83815 2.29522 -34126247.1 0.00033 0.00058 4.5 0.000 0.000 0.000 +2455539.5 1.82987 2.28491 -34126798.3 0.00033 0.00063 2.9 0.000 0.000 0.000 +2455540.5 1.81749 2.27689 -34127467.6 0.00033 0.00062 4.3 0.000 0.000 0.000 +2455541.5 1.79907 2.26785 -34128184.5 0.00036 0.00062 5.5 0.000 0.000 0.000 +2455542.5 1.77737 2.25878 -34128904.5 0.00043 0.00063 5.6 0.000 0.000 0.000 +2455543.5 1.75091 2.25104 -34129618.1 0.00045 0.00064 5.7 0.000 0.000 0.000 +2455544.5 1.71786 2.23999 -34130344.3 0.00045 0.00042 6.4 0.000 0.000 0.000 +2455545.5 1.68434 2.22450 -34130984.8 0.00063 0.00044 5.9 0.000 0.000 0.000 +2455546.5 1.66050 2.20899 -34131536.8 0.00064 0.00045 4.3 0.000 0.000 0.000 +2455547.5 1.64825 2.19761 -34132036.7 0.00065 0.00043 4.3 0.000 0.000 0.000 +2455548.5 1.64100 2.18825 -34132416.3 0.00062 0.00041 5.7 0.000 0.000 0.000 +2455549.5 1.63109 2.17810 -34132690.1 0.00067 0.00049 3.9 0.000 0.000 0.000 +2455550.5 1.61390 2.16705 -34132823.7 0.00068 0.00046 4.2 0.000 0.000 0.000 +2455551.5 1.59190 2.15530 -34132898.0 0.00053 0.00052 4.2 0.000 0.000 0.000 +2455552.5 1.56965 2.14400 -34133097.8 0.00052 0.00052 4.2 0.000 0.000 0.000 +2455553.5 1.54867 2.13304 -34133441.0 0.00048 0.00052 4.2 0.000 0.000 0.000 +2455554.5 1.53104 2.12362 -34133993.0 0.00048 0.00056 5.2 0.000 0.000 0.000 +2455555.5 1.51449 2.11570 -34134751.5 0.00030 0.00050 7.8 0.000 0.000 0.000 +2455556.5 1.49570 2.10624 -34135706.4 0.00048 0.00071 5.9 0.000 0.000 0.000 +2455557.5 1.47326 2.09337 -34136821.8 0.00048 0.00064 7.2 0.000 0.000 0.000 +2455558.5 1.44523 2.07863 -34137939.6 0.00064 0.00070 6.8 0.000 0.000 0.000 +2455559.5 1.41010 2.06537 -34138929.7 0.00069 0.00073 6.9 0.000 0.000 0.000 +2455560.5 1.37335 2.05317 -34139653.5 0.00073 0.00082 4.9 0.000 0.000 0.000 +2455561.5 1.34026 2.04193 -34140223.5 0.00074 0.00086 4.8 0.000 0.000 0.000 +2455562.5 1.30907 2.03219 -34140556.8 0.00062 0.00067 6.5 0.000 0.000 0.000 +2455563.5 1.27693 2.02337 -34140785.0 0.00070 0.00071 3.7 0.000 0.000 0.000 +2455564.5 1.24468 2.01478 -34140970.1 0.00060 0.00071 2.5 0.000 0.000 0.000 +2455565.5 1.21250 2.00778 -34141132.5 0.00059 0.00072 3.1 0.000 0.000 0.000 +2455566.5 1.17651 2.00362 -34141341.5 0.00094 0.00071 2.7 0.000 0.000 0.000 +2455567.5 1.13804 1.99914 -34141638.7 0.00096 0.00068 3.7 0.000 0.000 0.000 +2455568.5 1.10066 1.99358 -34142066.4 0.00098 0.00068 4.1 0.000 0.000 0.000 +2455569.5 1.06351 1.98670 -34142574.9 0.00093 0.00062 6.8 0.000 0.000 0.000 +2455570.5 1.03199 1.97709 -34143127.1 0.00095 0.00061 4.6 0.000 0.000 0.000 +2455571.5 1.01141 1.96750 -34143731.6 0.00098 0.00059 4.4 0.000 0.000 0.000 +2455572.5 0.99967 1.96127 -34144326.9 0.00058 0.00040 5.3 0.000 0.000 0.000 +2455573.5 0.99018 1.95989 -34144907.0 0.00088 0.00042 5.3 0.000 0.000 0.000 +2455574.5 0.97558 1.96070 -34145462.3 0.00086 0.00045 5.3 0.000 0.000 0.000 +2455575.5 0.95264 1.96038 -34145949.6 0.00086 0.00057 4.9 0.000 0.000 0.000 +2455576.5 0.92289 1.95900 -34146322.7 0.00082 0.00053 8.9 0.000 0.000 0.000 +2455577.5 0.88793 1.95778 -34146632.6 0.00079 0.00053 8.9 0.000 0.000 0.000 +2455578.5 0.84994 1.95497 -34146896.4 0.00078 0.00054 5.7 0.000 0.000 0.000 +2455579.5 0.81322 1.95089 -34147176.7 0.00043 0.00056 4.7 0.000 0.000 0.000 +2455580.5 0.77906 1.94872 -34147560.1 0.00054 0.00069 3.3 0.000 0.000 0.000 +2455581.5 0.74606 1.94816 -34148075.8 0.00055 0.00061 5.3 0.000 0.000 0.000 +2455582.5 0.71247 1.94676 -34148800.3 0.00050 0.00059 5.9 0.000 0.000 0.000 +2455583.5 0.67927 1.94550 -34149706.8 0.00049 0.00057 6.0 0.000 0.000 0.000 +2455584.5 0.64763 1.94656 -34150817.0 0.00050 0.00063 6.1 0.000 0.000 0.000 +2455585.5 0.61668 1.95016 -34151997.7 0.00046 0.00061 6.1 0.000 0.000 0.000 +2455586.5 0.58558 1.95605 -34153088.2 0.00031 0.00052 7.0 0.000 0.000 0.000 +2455587.5 0.55404 1.96405 -34154013.4 0.00061 0.00055 5.7 0.000 0.000 0.000 +2455588.5 0.52279 1.97312 -34154724.7 0.00065 0.00056 5.7 0.000 0.000 0.000 +2455589.5 0.49464 1.98075 -34155224.2 0.00067 0.00057 7.0 0.000 0.000 0.000 +2455590.5 0.47450 1.98688 -34155581.6 0.00065 0.00048 11.9 0.000 0.000 0.000 +2455591.5 0.46062 1.99299 -34155891.3 0.00063 0.00048 6.9 0.000 0.000 0.000 +2455592.5 0.45099 1.99900 -34156204.2 0.00063 0.00039 6.8 0.000 0.000 0.000 +2455593.5 0.44391 2.00657 -34156571.3 0.00039 0.00033 7.4 0.000 0.000 0.000 +2455594.5 0.43659 2.01528 -34157038.8 0.00042 0.00040 6.6 0.000 0.000 0.000 +2455595.5 0.42743 2.02245 -34157684.5 0.00037 0.00039 5.4 0.000 0.000 0.000 +2455596.5 0.41515 2.02650 -34158417.6 0.00039 0.00040 5.3 0.000 0.000 0.000 +2455597.5 0.40196 2.02932 -34159240.3 0.00037 0.00035 7.3 0.000 0.000 0.000 +2455598.5 0.39056 2.03431 -34159997.5 0.00037 0.00040 6.6 0.000 0.000 0.000 +2455599.5 0.38225 2.04375 -34160756.8 0.00041 0.00039 6.8 0.000 0.000 0.000 +2455600.5 0.37439 2.05777 -34161460.4 0.00033 0.00033 7.2 0.000 0.000 0.000 +2455601.5 0.36163 2.07312 -34162080.4 0.00047 0.00053 6.1 0.000 0.000 0.000 +2455602.5 0.34220 2.08622 -34162624.3 0.00048 0.00053 6.5 0.000 0.000 0.000 +2455603.5 0.32178 2.09617 -34163087.0 0.00049 0.00057 6.4 0.000 0.000 0.000 +2455604.5 0.30659 2.10559 -34163469.9 0.00052 0.00057 8.7 0.000 0.000 0.000 +2455605.5 0.29329 2.11559 -34163815.3 0.00052 0.00064 6.2 0.000 0.000 0.000 +2455606.5 0.27741 2.12375 -34164176.0 0.00054 0.00065 6.4 0.000 0.000 0.000 +2455607.5 0.26178 2.13182 -34164659.2 0.00044 0.00052 7.7 0.000 0.000 0.000 +2455608.5 0.24842 2.14519 -34165365.4 0.00058 0.00062 5.8 0.000 0.000 0.000 +2455609.5 0.23401 2.16276 -34166349.2 0.00057 0.00059 5.7 0.000 0.000 0.000 +2455610.5 0.21720 2.17844 -34167652.9 0.00058 0.00062 4.8 0.000 0.000 0.000 +2455611.5 0.20067 2.19004 -34169142.1 0.00056 0.00055 5.6 0.000 0.000 0.000 +2455612.5 0.18471 2.20004 -34170762.7 0.00055 0.00055 4.4 0.000 0.000 0.000 +2455613.5 0.16809 2.20752 -34172391.4 0.00062 0.00053 4.4 0.000 0.000 0.000 +2455614.5 0.15218 2.21334 -34173827.4 0.00063 0.00040 6.0 0.000 0.000 0.000 +2455615.5 0.13773 2.22043 -34174997.9 0.00072 0.00059 5.8 0.000 0.000 0.000 +2455616.5 0.12188 2.22968 -34175846.6 0.00073 0.00055 6.5 0.000 0.000 0.000 +2455617.5 0.10104 2.23923 -34176475.4 0.00072 0.00055 6.4 0.000 0.000 0.000 +2455618.5 0.07588 2.24780 -34176951.1 0.00072 0.00053 7.2 0.000 0.000 0.000 +2455619.5 0.04953 2.25737 -34177392.7 0.00071 0.00057 7.1 0.000 0.000 0.000 +2455620.5 0.02625 2.26957 -34177836.2 0.00056 0.00057 5.8 0.000 0.000 0.000 +2455621.5 0.00784 2.28257 -34178443.3 0.00043 0.00038 6.6 0.000 0.000 0.000 +2455622.5 -0.00706 2.29401 -34179192.5 0.00059 0.00046 4.1 0.000 0.000 0.000 +2455623.5 -0.01850 2.30576 -34180079.7 0.00058 0.00048 4.9 0.000 0.000 0.000 +2455624.5 -0.02654 2.31973 -34181156.0 0.00060 0.00052 4.7 0.000 0.000 0.000 +2455625.5 -0.03071 2.33599 -34182322.3 0.00052 0.00047 7.5 0.000 0.000 0.000 +2455626.5 -0.03523 2.35558 -34183532.9 0.00059 0.00049 5.3 0.000 0.000 0.000 +2455627.5 -0.04517 2.37473 -34184703.3 0.00060 0.00049 5.3 0.000 0.000 0.000 +2455628.5 -0.05822 2.39006 -34185749.5 0.00045 0.00041 5.7 0.000 0.000 0.000 +2455629.5 -0.06951 2.40563 -34186738.1 0.00047 0.00073 5.3 0.000 0.000 0.000 +2455630.5 -0.07874 2.42362 -34187623.0 0.00044 0.00071 5.1 0.000 0.000 0.000 +2455631.5 -0.08962 2.44339 -34188398.6 0.00044 0.00070 5.1 0.000 0.000 0.000 +2455632.5 -0.10321 2.46264 -34189121.1 0.00036 0.00068 6.9 0.000 0.000 0.000 +2455633.5 -0.11816 2.48091 -34189684.3 0.00034 0.00070 7.0 0.000 0.000 0.000 +2455634.5 -0.13526 2.49636 -34190292.0 0.00058 0.00070 4.9 0.000 0.000 0.000 +2455635.5 -0.15265 2.50691 -34191023.2 0.00055 0.00036 5.1 0.000 0.000 0.000 +2455636.5 -0.16826 2.51743 -34191995.1 0.00064 0.00035 5.1 0.000 0.000 0.000 +2455637.5 -0.18324 2.53077 -34193222.2 0.00064 0.00034 5.1 0.000 0.000 0.000 +2455638.5 -0.19610 2.54493 -34194652.3 0.00066 0.00032 5.6 0.000 0.000 0.000 +2455639.5 -0.20682 2.56028 -34196211.8 0.00065 0.00026 6.1 0.000 0.000 0.000 +2455640.5 -0.21685 2.57781 -34197804.5 0.00045 0.00047 6.0 0.000 0.000 0.000 +2455641.5 -0.22897 2.59812 -34199341.1 0.00045 0.00047 6.7 0.000 0.000 0.000 +2455642.5 -0.24409 2.61822 -34200722.0 0.00040 0.00047 7.6 0.000 0.000 0.000 +2455643.5 -0.25812 2.63561 -34201833.4 0.00060 0.00065 9.0 0.000 0.000 0.000 +2455644.5 -0.26815 2.65308 -34202757.4 0.00058 0.00064 8.7 0.000 0.000 0.000 +2455645.5 -0.27250 2.67112 -34203553.3 0.00058 0.00065 10.0 0.000 0.000 0.000 +2455646.5 -0.27609 2.68975 -34204432.4 0.00056 0.00055 13.3 0.000 0.000 0.000 +2455647.5 -0.28436 2.70844 -34205311.2 0.00059 0.00064 9.3 0.000 0.000 0.000 +2455648.5 -0.29429 2.72674 -34206333.5 0.00054 0.00064 7.5 0.000 0.000 0.000 +2455649.5 -0.30310 2.74314 -34207520.1 0.00029 0.00048 6.7 0.000 0.000 0.000 +2455650.5 -0.30988 2.75848 -34208848.5 0.00057 0.00063 5.7 0.000 0.000 0.000 +2455651.5 -0.31808 2.77492 -34210234.2 0.00060 0.00062 4.9 0.000 0.000 0.000 +2455652.5 -0.33090 2.79153 -34211710.1 0.00059 0.00058 4.9 0.000 0.000 0.000 +2455653.5 -0.34706 2.80633 -34213193.3 0.00062 0.00048 4.5 0.000 0.000 0.000 +2455654.5 -0.36180 2.82021 -34214686.1 0.00066 0.00062 3.0 0.000 0.000 0.000 +2455655.5 -0.37578 2.83659 -34216058.4 0.00074 0.00080 3.3 0.000 0.000 0.000 +2455656.5 -0.39432 2.85445 -34217271.8 0.00061 0.00068 4.9 0.000 0.000 0.000 +2455657.5 -0.41328 2.87023 -34218318.0 0.00048 0.00053 5.7 0.000 0.000 0.000 +2455658.5 -0.42449 2.88765 -34219231.2 0.00048 0.00052 5.6 0.000 0.000 0.000 +2455659.5 -0.43020 2.90967 -34219987.0 0.00044 0.00052 5.2 0.000 0.000 0.000 +2455660.5 -0.43331 2.93424 -34220727.0 0.00043 0.00043 4.2 0.000 0.000 0.000 +2455661.5 -0.43404 2.95709 -34221489.5 0.00043 0.00032 2.9 0.000 0.000 0.000 +2455662.5 -0.43622 2.97694 -34222337.1 0.00038 0.00032 3.0 0.000 0.000 0.000 +2455663.5 -0.43914 2.99659 -34223308.3 0.00032 0.00027 2.3 0.000 0.000 0.000 +2455664.5 -0.44096 3.01858 -34224478.6 0.00060 0.00030 2.6 0.000 0.000 0.000 +2455665.5 -0.44189 3.04219 -34225794.7 0.00058 0.00030 2.6 0.000 0.000 0.000 +2455666.5 -0.44109 3.06738 -34227301.3 0.00050 0.00026 2.8 0.000 0.000 0.000 +2455667.5 -0.43957 3.09398 -34228922.0 0.00043 0.00021 3.4 0.000 0.000 0.000 +2455668.5 -0.44051 3.11989 -34230580.2 0.00040 0.00021 3.2 0.000 0.000 0.000 +2455669.5 -0.44300 3.14340 -34232110.8 0.00038 0.00030 5.1 0.000 0.000 0.000 +2455670.5 -0.44531 3.16401 -34233454.3 0.00016 0.00026 5.5 0.000 0.000 0.000 +2455671.5 -0.44704 3.18442 -34234560.9 0.00018 0.00025 5.7 0.000 0.000 0.000 +2455672.5 -0.44942 3.20451 -34235449.5 0.00017 0.00025 5.7 0.000 0.000 0.000 +2455673.5 -0.45082 3.22240 -34236176.3 0.00017 0.00025 5.7 0.000 0.000 0.000 +2455674.5 -0.45297 3.23981 -34236888.9 0.00016 0.00024 6.6 0.000 0.000 0.000 +2455675.5 -0.45852 3.25816 -34237684.2 0.00015 0.00010 6.6 0.000 0.000 0.000 +2455676.5 -0.46176 3.27521 -34238557.1 0.00015 0.00023 5.3 0.000 0.000 0.000 +2455677.5 -0.46060 3.29253 -34239523.7 0.00015 0.00023 5.0 0.000 0.000 0.000 +2455678.5 -0.45762 3.31311 -34240561.6 0.00030 0.00026 4.6 0.000 0.000 0.000 +2455679.5 -0.45389 3.33653 -34241624.6 0.00030 0.00027 4.6 0.000 0.000 0.000 +2455680.5 -0.45103 3.36139 -34242769.4 0.00031 0.00028 4.6 0.000 0.000 0.000 +2455681.5 -0.44710 3.38567 -34243867.4 0.00032 0.00028 5.6 0.000 0.000 0.000 +2455682.5 -0.44030 3.41180 -34244903.0 0.00036 0.00027 6.4 0.000 0.000 0.000 +2455683.5 -0.43247 3.44046 -34245873.9 0.00036 0.00028 6.6 0.000 0.000 0.000 +2455684.5 -0.42714 3.46773 -34246843.0 0.00024 0.00026 8.2 0.000 0.000 0.000 +2455685.5 -0.42392 3.49110 -34247689.8 0.00028 0.00026 7.7 0.000 0.000 0.000 +2455686.5 -0.41960 3.51310 -34248571.9 0.00028 0.00026 7.6 0.000 0.000 0.000 +2455687.5 -0.41644 3.53445 -34249394.2 0.00026 0.00026 6.8 0.000 0.000 0.000 +2455688.5 -0.41546 3.55411 -34250213.7 0.00019 0.00017 7.7 0.000 0.000 0.000 +2455689.5 -0.41723 3.57305 -34251105.5 0.00020 0.00026 6.1 0.000 0.000 0.000 +2455690.5 -0.41791 3.59015 -34252117.2 0.00020 0.00025 4.9 0.000 0.000 0.000 +2455691.5 -0.41162 3.60766 -34253326.2 0.00013 0.00023 4.7 0.000 0.000 0.000 +2455692.5 -0.39929 3.62929 -34254814.1 0.00019 0.00025 7.1 0.000 0.000 0.000 +2455693.5 -0.38442 3.65449 -34256426.9 0.00020 0.00025 7.8 0.000 0.000 0.000 +2455694.5 -0.36612 3.68241 -34258167.0 0.00019 0.00027 7.7 0.000 0.000 0.000 +2455695.5 -0.34780 3.71192 -34259984.4 0.00018 0.00017 8.3 0.000 0.000 0.000 +2455696.5 -0.33432 3.74090 -34261808.3 0.00028 0.00024 7.5 0.000 0.000 0.000 +2455697.5 -0.32595 3.76367 -34263430.1 0.00028 0.00026 7.6 0.000 0.000 0.000 +2455698.5 -0.31945 3.78081 -34264839.5 0.00024 0.00025 8.0 0.000 0.000 0.000 +2455699.5 -0.31315 3.79948 -34265995.8 0.00029 0.00028 7.6 0.000 0.000 0.000 +2455700.5 -0.30696 3.81680 -34266990.6 0.00030 0.00026 8.0 0.000 0.000 0.000 +2455701.5 -0.29862 3.83265 -34267790.4 0.00030 0.00026 8.0 0.000 0.000 0.000 +2455702.5 -0.29011 3.84795 -34268563.9 0.00021 0.00020 9.6 0.000 0.000 0.000 +2455703.5 -0.28058 3.86230 -34269390.3 0.00034 0.00022 8.6 0.000 0.000 0.000 +2455704.5 -0.26838 3.87719 -34270203.7 0.00033 0.00023 8.5 0.000 0.000 0.000 +2455705.5 -0.25396 3.89230 -34271090.9 0.00029 0.00021 9.2 0.000 0.000 0.000 +2455706.5 -0.23721 3.90912 -34271973.1 0.00035 0.00025 6.9 0.000 0.000 0.000 +2455707.5 -0.21965 3.93134 -34272888.1 0.00035 0.00027 7.3 0.000 0.000 0.000 +2455708.5 -0.20350 3.95541 -34273901.6 0.00035 0.00028 8.8 0.000 0.000 0.000 +2455709.5 -0.19030 3.97365 -34274876.9 0.00025 0.00025 10.3 0.000 0.000 0.000 +2455710.5 -0.17996 3.98974 -34275776.5 0.00025 0.00023 11.6 0.000 0.000 0.000 +2455711.5 -0.17288 4.00650 -34276591.9 0.00028 0.00027 8.4 0.000 0.000 0.000 +2455712.5 -0.16463 4.02028 -34277265.0 0.00018 0.00024 10.3 0.000 0.000 0.000 +2455713.5 -0.15333 4.03240 -34277867.5 0.00020 0.00031 8.8 0.000 0.000 0.000 +2455714.5 -0.14244 4.04455 -34278410.8 0.00019 0.00030 7.0 0.000 0.000 0.000 +2455715.5 -0.13075 4.05743 -34278902.1 0.00018 0.00030 7.3 0.000 0.000 0.000 +2455716.5 -0.11629 4.07467 -34279405.3 0.00018 0.00030 5.7 0.000 0.000 0.000 +2455717.5 -0.09812 4.09284 -34280072.5 0.00016 0.00031 3.8 0.000 0.000 0.000 +2455718.5 -0.07745 4.10796 -34280891.1 0.00016 0.00032 3.7 0.000 0.000 0.000 +2455719.5 -0.05585 4.12280 -34281861.0 0.00017 0.00024 3.4 0.000 0.000 0.000 +2455720.5 -0.03268 4.14005 -34283000.3 0.00017 0.00028 3.1 0.000 0.000 0.000 +2455721.5 -0.00931 4.15633 -34284183.4 0.00017 0.00028 4.5 0.000 0.000 0.000 +2455722.5 0.01775 4.16882 -34285307.2 0.00017 0.00028 4.8 0.000 0.000 0.000 +2455723.5 0.04980 4.18222 -34286366.4 0.00013 0.00022 8.7 0.000 0.000 0.000 +2455724.5 0.08003 4.19795 -34287278.5 0.00014 0.00023 8.7 0.000 0.000 0.000 +2455725.5 0.10663 4.21122 -34287931.0 0.00014 0.00027 7.1 0.000 0.000 0.000 +2455726.5 0.13125 4.22176 -34288434.1 0.00014 0.00023 9.6 0.000 0.000 0.000 +2455727.5 0.15194 4.22940 -34288784.8 0.00014 0.00025 4.6 0.000 0.000 0.000 +2455728.5 0.17059 4.23578 -34288977.3 0.00015 0.00024 4.5 0.000 0.000 0.000 +2455729.5 0.18931 4.24425 -34289184.7 0.00016 0.00024 5.0 0.000 0.000 0.000 +2455730.5 0.20835 4.25437 -34289421.4 0.00016 0.00024 5.5 0.000 0.000 0.000 +2455731.5 0.22822 4.26393 -34289714.2 0.00015 0.00021 5.6 0.000 0.000 0.000 +2455732.5 0.24982 4.27083 -34290068.7 0.00015 0.00023 4.5 0.000 0.000 0.000 +2455733.5 0.27113 4.27750 -34290469.7 0.00014 0.00022 5.0 0.000 0.000 0.000 +2455734.5 0.29102 4.28464 -34290877.1 0.00017 0.00027 4.3 0.000 0.000 0.000 +2455735.5 0.31055 4.29278 -34291240.7 0.00020 0.00028 5.1 0.000 0.000 0.000 +2455736.5 0.32664 4.30136 -34291519.1 0.00019 0.00027 5.7 0.000 0.000 0.000 +2455737.5 0.33631 4.30824 -34291682.1 0.00019 0.00024 6.3 0.000 0.000 0.000 +2455738.5 0.34725 4.31485 -34291739.4 0.00020 0.00027 8.2 0.000 0.000 0.000 +2455739.5 0.36567 4.32225 -34291713.9 0.00021 0.00026 7.4 0.000 0.000 0.000 +2455740.5 0.38451 4.33055 -34291610.0 0.00020 0.00021 9.2 0.000 0.000 0.000 +2455741.5 0.40198 4.33816 -34291433.4 0.00021 0.00026 6.3 0.000 0.000 0.000 +2455742.5 0.42058 4.34659 -34291168.3 0.00023 0.00026 5.3 0.000 0.000 0.000 +2455743.5 0.43696 4.35567 -34290883.7 0.00026 0.00026 5.9 0.000 0.000 0.000 +2455744.5 0.45203 4.36379 -34290657.8 0.00026 0.00022 5.5 0.000 0.000 0.000 +2455745.5 0.46639 4.37122 -34290534.3 0.00025 0.00022 6.3 0.000 0.000 0.000 +2455746.5 0.48304 4.37891 -34290686.8 0.00025 0.00025 4.1 0.000 0.000 0.000 +2455747.5 0.50352 4.38978 -34291071.5 0.00021 0.00019 4.0 0.000 0.000 0.000 +2455748.5 0.52517 4.40082 -34291565.5 0.00022 0.00023 3.8 0.000 0.000 0.000 +2455749.5 0.55077 4.40786 -34292075.9 0.00020 0.00024 3.2 0.000 0.000 0.000 +2455750.5 0.57618 4.41309 -34292486.2 0.00019 0.00024 5.8 0.000 0.000 0.000 +2455751.5 0.59856 4.41718 -34292784.0 0.00019 0.00024 5.7 0.000 0.000 0.000 +2455752.5 0.62152 4.42167 -34292853.4 0.00026 0.00024 10.0 0.000 0.000 0.000 +2455753.5 0.64292 4.42974 -34292734.0 0.00026 0.00024 8.0 0.000 0.000 0.000 +2455754.5 0.65807 4.43824 -34292486.6 0.00024 0.00020 9.8 0.000 0.000 0.000 +2455755.5 0.67145 4.44379 -34292155.7 0.00023 0.00023 7.8 0.000 0.000 0.000 +2455756.5 0.68791 4.44786 -34291833.6 0.00023 0.00022 6.4 0.000 0.000 0.000 +2455757.5 0.70571 4.45145 -34291571.8 0.00024 0.00022 6.4 0.000 0.000 0.000 +2455758.5 0.72344 4.45610 -34291384.6 0.00017 0.00019 6.6 0.000 0.000 0.000 +2455759.5 0.74408 4.46358 -34291331.7 0.00016 0.00020 6.8 0.000 0.000 0.000 +2455760.5 0.76541 4.47175 -34291421.4 0.00018 0.00020 6.8 0.000 0.000 0.000 +2455761.5 0.78690 4.47627 -34291591.1 0.00020 0.00016 8.9 0.000 0.000 0.000 +2455762.5 0.81123 4.47894 -34291861.3 0.00023 0.00023 6.3 0.000 0.000 0.000 +2455763.5 0.83790 4.48211 -34292027.1 0.00022 0.00025 7.2 0.000 0.000 0.000 +2455764.5 0.86570 4.48713 -34292153.3 0.00021 0.00025 7.1 0.000 0.000 0.000 +2455765.5 0.89001 4.49393 -34292207.2 0.00022 0.00023 8.6 0.000 0.000 0.000 +2455766.5 0.91041 4.49737 -34292191.8 0.00021 0.00028 7.9 0.000 0.000 0.000 +2455767.5 0.93110 4.49727 -34292085.5 0.00019 0.00028 7.9 0.000 0.000 0.000 +2455768.5 0.94869 4.49543 -34291865.8 0.00015 0.00024 10.1 0.000 0.000 0.000 +2455769.5 0.96238 4.48693 -34291559.9 0.00030 0.00027 6.5 0.000 0.000 0.000 +2455770.5 0.97878 4.47357 -34291213.0 0.00030 0.00026 6.3 0.000 0.000 0.000 +2455771.5 0.99864 4.46348 -34290927.6 0.00028 0.00027 8.5 0.000 0.000 0.000 +2455772.5 1.01591 4.45894 -34290735.4 0.00028 0.00021 9.8 0.000 0.000 0.000 +2455773.5 1.03118 4.45782 -34290794.7 0.00027 0.00026 7.8 0.000 0.000 0.000 +2455774.5 1.04861 4.45596 -34291128.1 0.00031 0.00029 7.4 0.000 0.000 0.000 +2455775.5 1.06961 4.45051 -34291650.7 0.00019 0.00025 9.4 0.000 0.000 0.000 +2455776.5 1.09280 4.44441 -34292314.4 0.00021 0.00028 7.0 0.000 0.000 0.000 +2455777.5 1.11768 4.43848 -34292999.7 0.00021 0.00028 8.7 0.000 0.000 0.000 +2455778.5 1.14559 4.43273 -34293595.4 0.00022 0.00028 10.4 0.000 0.000 0.000 +2455779.5 1.17212 4.42833 -34294003.0 0.00021 0.00024 12.7 0.000 0.000 0.000 +2455780.5 1.19270 4.42414 -34294150.2 0.00019 0.00031 10.9 0.000 0.000 0.000 +2455781.5 1.21131 4.41860 -34294102.8 0.00018 0.00031 10.7 0.000 0.000 0.000 +2455782.5 1.23236 4.41170 -34293972.8 0.00016 0.00029 14.1 0.000 0.000 0.000 +2455783.5 1.25577 4.40566 -34293788.7 0.00020 0.00039 8.4 0.000 0.000 0.000 +2455784.5 1.27761 4.40089 -34293621.4 0.00020 0.00040 7.8 0.000 0.000 0.000 +2455785.5 1.29654 4.39560 -34293486.2 0.00022 0.00040 11.3 0.000 0.000 0.000 +2455786.5 1.31456 4.39075 -34293476.7 0.00018 0.00031 15.3 0.000 0.000 0.000 +2455787.5 1.33081 4.38467 -34293578.9 0.00017 0.00031 15.4 0.000 0.000 0.000 +2455788.5 1.34777 4.37522 -34293704.4 0.00019 0.00032 14.8 0.000 0.000 0.000 +2455789.5 1.36645 4.36684 -34293932.6 0.00014 0.00018 20.9 0.000 0.000 0.000 +2455790.5 1.38515 4.36027 -34294171.0 0.00022 0.00020 17.9 0.000 0.000 0.000 +2455791.5 1.40298 4.35411 -34294434.6 0.00021 0.00022 10.8 0.000 0.000 0.000 +2455792.5 1.41905 4.34664 -34294619.3 0.00022 0.00023 9.8 0.000 0.000 0.000 +2455793.5 1.43176 4.33813 -34294687.7 0.00025 0.00023 9.6 0.000 0.000 0.000 +2455794.5 1.44208 4.32775 -34294667.8 0.00035 0.00027 5.6 0.000 0.000 0.000 +2455795.5 1.45440 4.31567 -34294562.9 0.00035 0.00028 6.6 0.000 0.000 0.000 +2455796.5 1.46618 4.30459 -34294405.4 0.00030 0.00026 6.7 0.000 0.000 0.000 +2455797.5 1.47656 4.29250 -34294211.8 0.00031 0.00028 5.4 0.000 0.000 0.000 +2455798.5 1.48814 4.28117 -34294129.9 0.00030 0.00030 5.7 0.000 0.000 0.000 +2455799.5 1.50225 4.27090 -34294206.3 0.00028 0.00032 6.4 0.000 0.000 0.000 +2455800.5 1.51862 4.26052 -34294535.9 0.00015 0.00027 7.4 0.000 0.000 0.000 +2455801.5 1.53603 4.24840 -34295107.3 0.00025 0.00025 4.9 0.000 0.000 0.000 +2455802.5 1.55554 4.23619 -34295905.5 0.00025 0.00024 5.1 0.000 0.000 0.000 +2455803.5 1.57420 4.22627 -34296896.3 0.00024 0.00019 6.9 0.000 0.000 0.000 +2455804.5 1.59207 4.21700 -34297899.3 0.00024 0.00027 5.8 0.000 0.000 0.000 +2455805.5 1.61005 4.20814 -34298867.8 0.00024 0.00025 5.9 0.000 0.000 0.000 +2455806.5 1.62526 4.19837 -34299708.0 0.00022 0.00025 6.1 0.000 0.000 0.000 +2455807.5 1.63888 4.18634 -34300298.4 0.00011 0.00025 7.6 0.000 0.000 0.000 +2455808.5 1.65282 4.17156 -34300661.5 0.00012 0.00024 7.5 0.000 0.000 0.000 +2455809.5 1.66505 4.15682 -34300888.2 0.00017 0.00029 4.9 0.000 0.000 0.000 +2455810.5 1.67467 4.14423 -34301053.1 0.00017 0.00017 5.1 0.000 0.000 0.000 +2455811.5 1.68579 4.13223 -34301218.9 0.00019 0.00021 4.1 0.000 0.000 0.000 +2455812.5 1.70129 4.11948 -34301495.7 0.00020 0.00020 4.6 0.000 0.000 0.000 +2455813.5 1.72120 4.10677 -34301869.0 0.00020 0.00021 4.6 0.000 0.000 0.000 +2455814.5 1.74299 4.09415 -34302319.5 0.00020 0.00021 4.6 0.000 0.000 0.000 +2455815.5 1.76168 4.08121 -34302835.9 0.00018 0.00017 5.2 0.000 0.000 0.000 +2455816.5 1.77541 4.06877 -34303431.2 0.00017 0.00017 5.1 0.000 0.000 0.000 +2455817.5 1.78648 4.05689 -34304087.3 0.00016 0.00014 6.0 0.000 0.000 0.000 +2455818.5 1.79693 4.04636 -34304800.3 0.00014 0.00014 4.9 0.000 0.000 0.000 +2455819.5 1.80612 4.03668 -34305520.5 0.00014 0.00014 4.6 0.000 0.000 0.000 +2455820.5 1.81451 4.02607 -34306140.7 0.00014 0.00014 4.5 0.000 0.000 0.000 +2455821.5 1.82105 4.01443 -34306652.7 0.00012 0.00019 4.6 0.000 0.000 0.000 +2455822.5 1.82311 4.00295 -34307078.4 0.00014 0.00023 4.3 0.000 0.000 0.000 +2455823.5 1.82124 3.99042 -34307491.3 0.00016 0.00022 3.5 0.000 0.000 0.000 +2455824.5 1.82008 3.97180 -34307901.3 0.00018 0.00023 3.3 0.000 0.000 0.000 +2455825.5 1.82225 3.94996 -34308397.6 0.00019 0.00023 3.7 0.000 0.000 0.000 +2455826.5 1.82340 3.93032 -34309041.2 0.00020 0.00023 3.4 0.000 0.000 0.000 +2455827.5 1.82363 3.91254 -34309905.4 0.00020 0.00018 3.4 0.000 0.000 0.000 +2455828.5 1.82560 3.89627 -34311011.1 0.00019 0.00015 3.8 0.000 0.000 0.000 +2455829.5 1.82504 3.88052 -34312402.5 0.00018 0.00018 4.1 0.000 0.000 0.000 +2455830.5 1.81999 3.86318 -34313999.7 0.00019 0.00017 4.1 0.000 0.000 0.000 +2455831.5 1.81286 3.84468 -34315757.5 0.00018 0.00018 3.6 0.000 0.000 0.000 +2455832.5 1.80463 3.82534 -34317523.6 0.00017 0.00017 3.7 0.000 0.000 0.000 +2455833.5 1.79890 3.80564 -34319136.3 0.00015 0.00016 3.8 0.000 0.000 0.000 +2455834.5 1.79812 3.78710 -34320480.5 0.00015 0.00014 3.8 0.000 0.000 0.000 +2455835.5 1.79938 3.76848 -34321616.5 0.00013 0.00013 3.4 0.000 0.000 0.000 +2455836.5 1.80005 3.74997 -34322615.5 0.00012 0.00020 3.9 0.000 0.000 0.000 +2455837.5 1.80174 3.73191 -34323531.5 0.00012 0.00019 6.5 0.000 0.000 0.000 +2455838.5 1.80760 3.71286 -34324452.9 0.00013 0.00019 6.7 0.000 0.000 0.000 +2455839.5 1.81816 3.69450 -34325462.9 0.00018 0.00023 5.3 0.000 0.000 0.000 +2455840.5 1.82955 3.67950 -34326608.0 0.00019 0.00023 5.4 0.000 0.000 0.000 +2455841.5 1.83883 3.66656 -34327888.3 0.00019 0.00023 5.5 0.000 0.000 0.000 +2455842.5 1.84876 3.65397 -34329235.3 0.00018 0.00018 7.9 0.000 0.000 0.000 +2455843.5 1.85824 3.64165 -34330627.0 0.00023 0.00020 7.2 0.000 0.000 0.000 +2455844.5 1.86286 3.62774 -34332012.5 0.00023 0.00020 7.7 0.000 0.000 0.000 +2455845.5 1.86283 3.61297 -34333360.0 0.00021 0.00015 7.7 0.000 0.000 0.000 +2455846.5 1.86127 3.59889 -34334644.8 0.00026 0.00018 7.2 0.000 0.000 0.000 +2455847.5 1.85874 3.58470 -34335813.0 0.00026 0.00017 7.2 0.000 0.000 0.000 +2455848.5 1.85558 3.56861 -34336766.5 0.00026 0.00017 6.9 0.000 0.000 0.000 +2455849.5 1.85079 3.55025 -34337538.0 0.00021 0.00015 6.9 0.000 0.000 0.000 +2455850.5 1.84594 3.53049 -34338143.2 0.00023 0.00019 5.1 0.000 0.000 0.000 +2455851.5 1.84438 3.51216 -34338652.7 0.00023 0.00020 5.0 0.000 0.000 0.000 +2455852.5 1.84688 3.49627 -34339161.0 0.00018 0.00018 4.8 0.000 0.000 0.000 +2455853.5 1.85361 3.48238 -34339726.0 0.00017 0.00018 4.6 0.000 0.000 0.000 +2455854.5 1.86176 3.46868 -34340407.0 0.00016 0.00016 4.4 0.000 0.000 0.000 +2455855.5 1.86776 3.45324 -34341273.4 0.00017 0.00016 4.4 0.000 0.000 0.000 +2455856.5 1.86984 3.43882 -34342362.8 0.00014 0.00012 6.7 0.000 0.000 0.000 +2455857.5 1.87036 3.42704 -34343677.2 0.00013 0.00015 5.7 0.000 0.000 0.000 +2455858.5 1.87292 3.41655 -34345158.5 0.00013 0.00015 5.6 0.000 0.000 0.000 +2455859.5 1.87635 3.40428 -34346746.4 0.00013 0.00016 5.7 0.000 0.000 0.000 +2455860.5 1.87688 3.38858 -34348273.3 0.00017 0.00023 5.4 0.000 0.000 0.000 +2455861.5 1.87546 3.36984 -34349640.5 0.00016 0.00023 5.4 0.000 0.000 0.000 +2455862.5 1.87496 3.34941 -34350809.1 0.00015 0.00023 4.9 0.000 0.000 0.000 +2455863.5 1.87589 3.32715 -34351767.5 0.00012 0.00019 5.8 0.000 0.000 0.000 +2455864.5 1.87576 3.30363 -34352601.8 0.00014 0.00019 6.4 0.000 0.000 0.000 +2455865.5 1.87283 3.28220 -34353411.2 0.00015 0.00019 6.4 0.000 0.000 0.000 +2455866.5 1.86892 3.26393 -34354291.2 0.00014 0.00013 8.2 0.000 0.000 0.000 +2455867.5 1.86802 3.24901 -34355295.2 0.00024 0.00020 7.1 0.000 0.000 0.000 +2455868.5 1.87017 3.23871 -34356415.8 0.00024 0.00019 7.0 0.000 0.000 0.000 +2455869.5 1.87133 3.23017 -34357667.1 0.00024 0.00019 6.9 0.000 0.000 0.000 +2455870.5 1.86840 3.21892 -34359065.2 0.00023 0.00019 6.9 0.000 0.000 0.000 +2455871.5 1.86227 3.20313 -34360481.0 0.00027 0.00024 6.3 0.000 0.000 0.000 +2455872.5 1.85485 3.18331 -34361871.7 0.00026 0.00022 5.8 0.000 0.000 0.000 +2455873.5 1.84853 3.16169 -34363203.7 0.00018 0.00017 6.4 0.000 0.000 0.000 +2455874.5 1.84734 3.14262 -34364367.8 0.00033 0.00022 5.1 0.000 0.000 0.000 +2455875.5 1.84786 3.12689 -34365355.6 0.00033 0.00024 5.0 0.000 0.000 0.000 +2455876.5 1.84300 3.11032 -34366231.1 0.00033 0.00025 4.6 0.000 0.000 0.000 +2455877.5 1.83179 3.09300 -34366958.1 0.00030 0.00020 5.0 0.000 0.000 0.000 +2455878.5 1.81748 3.07499 -34367638.2 0.00030 0.00023 3.6 0.000 0.000 0.000 +2455879.5 1.80496 3.05826 -34368295.2 0.00030 0.00024 3.6 0.000 0.000 0.000 +2455880.5 1.79398 3.04504 -34369001.5 0.00011 0.00020 3.7 0.000 0.000 0.000 +2455881.5 1.78330 3.03287 -34369801.4 0.00018 0.00024 4.9 0.000 0.000 0.000 +2455882.5 1.77449 3.02334 -34370739.3 0.00017 0.00023 5.3 0.000 0.000 0.000 +2455883.5 1.76740 3.01622 -34371872.1 0.00017 0.00024 5.7 0.000 0.000 0.000 +2455884.5 1.76053 3.00689 -34373198.6 0.00017 0.00022 7.1 0.000 0.000 0.000 +2455885.5 1.75304 2.99650 -34374704.2 0.00019 0.00025 6.1 0.000 0.000 0.000 +2455886.5 1.74400 2.98695 -34376247.3 0.00028 0.00030 5.9 0.000 0.000 0.000 +2455887.5 1.73105 2.97555 -34377735.5 0.00025 0.00025 5.8 0.000 0.000 0.000 +2455888.5 1.71593 2.96116 -34379158.2 0.00025 0.00025 5.4 0.000 0.000 0.000 +2455889.5 1.70071 2.94465 -34380401.0 0.00028 0.00026 4.7 0.000 0.000 0.000 +2455890.5 1.68415 2.92635 -34381425.1 0.00029 0.00025 4.7 0.000 0.000 0.000 +2455891.5 1.66970 2.90849 -34382275.8 0.00028 0.00022 5.0 0.000 0.000 0.000 +2455892.5 1.66247 2.89537 -34383041.6 0.00027 0.00024 6.2 0.000 0.000 0.000 +2455893.5 1.65539 2.88741 -34383803.4 0.00028 0.00024 5.2 0.000 0.000 0.000 +2455894.5 1.64116 2.87852 -34384617.9 0.00028 0.00024 5.2 0.000 0.000 0.000 +2455895.5 1.62432 2.86602 -34385529.2 0.00028 0.00028 4.9 0.000 0.000 0.000 +2455896.5 1.61113 2.85234 -34386562.8 0.00026 0.00028 5.5 0.000 0.000 0.000 +2455897.5 1.60463 2.84112 -34387725.1 0.00026 0.00029 5.6 0.000 0.000 0.000 +2455898.5 1.60108 2.83209 -34388924.3 0.00017 0.00022 5.1 0.000 0.000 0.000 +2455899.5 1.59769 2.82292 -34390014.3 0.00022 0.00022 5.2 0.000 0.000 0.000 +2455900.5 1.59472 2.81590 -34391029.3 0.00022 0.00022 5.1 0.000 0.000 0.000 +2455901.5 1.58843 2.81139 -34391933.9 0.00021 0.00015 5.3 0.000 0.000 0.000 +2455902.5 1.57667 2.80589 -34392712.3 0.00022 0.00015 4.4 0.000 0.000 0.000 +2455903.5 1.56025 2.79883 -34393350.0 0.00024 0.00012 4.8 0.000 0.000 0.000 +2455904.5 1.54651 2.79053 -34393907.4 0.00026 0.00013 5.8 0.000 0.000 0.000 +2455905.5 1.53859 2.78332 -34394457.5 0.00022 0.00015 6.6 0.000 0.000 0.000 +2455906.5 1.52975 2.77794 -34395013.6 0.00027 0.00020 6.1 0.000 0.000 0.000 +2455907.5 1.52094 2.77173 -34395595.0 0.00025 0.00021 6.1 0.000 0.000 0.000 +2455908.5 1.51232 2.76560 -34396276.1 0.00024 0.00021 7.5 0.000 0.000 0.000 +2455909.5 1.49902 2.76047 -34397123.1 0.00027 0.00023 6.2 0.000 0.000 0.000 +2455910.5 1.48443 2.75448 -34398161.1 0.00027 0.00022 5.7 0.000 0.000 0.000 +2455911.5 1.47121 2.74939 -34399387.5 0.00030 0.00021 6.5 0.000 0.000 0.000 +2455912.5 1.45712 2.74732 -34400761.8 0.00027 0.00020 8.3 0.000 0.000 0.000 +2455913.5 1.44347 2.74665 -34402232.3 0.00028 0.00025 8.6 0.000 0.000 0.000 +2455914.5 1.42616 2.74345 -34403725.5 0.00029 0.00024 8.1 0.000 0.000 0.000 +2455915.5 1.40364 2.73332 -34405117.4 0.00028 0.00029 8.8 0.000 0.000 0.000 +2455916.5 1.38038 2.72012 -34406358.2 0.00026 0.00029 7.8 0.000 0.000 0.000 +2455917.5 1.35831 2.70802 -34407391.9 0.00021 0.00029 6.9 0.000 0.000 0.000 +2455918.5 1.34074 2.69678 -34408214.3 0.00021 0.00028 6.8 0.000 0.000 0.000 +2455919.5 1.32711 2.68704 -34408943.9 0.00022 0.00024 6.0 0.000 0.000 0.000 +2455920.5 1.31340 2.68020 -34409738.4 0.00020 0.00024 4.9 0.000 0.000 0.000 +2455921.5 1.29562 2.67430 -34410696.2 0.00022 0.00021 3.6 0.000 0.000 0.000 +2455922.5 1.27697 2.66836 -34411857.0 0.00024 0.00021 3.4 0.000 0.000 0.000 +2455923.5 1.26100 2.66354 -34413201.1 0.00031 0.00028 3.4 0.000 0.000 0.000 +2455924.5 1.24436 2.65712 -34414683.2 0.00033 0.00027 4.3 0.000 0.000 0.000 +2455925.5 1.22700 2.64937 -34416201.3 0.00032 0.00029 4.3 0.000 0.000 0.000 +2455926.5 1.20696 2.64171 -34417659.7 0.00034 0.00032 4.4 0.000 0.000 0.000 +2455927.5 1.18763 2.63257 -34419019.8 0.00032 0.00030 5.6 0.000 0.000 0.000 +2455928.5 1.17388 2.62453 -34420263.2 0.00031 0.00032 4.1 0.000 0.000 0.000 +2455929.5 1.15948 2.61629 -34421396.4 0.00024 0.00026 4.5 0.000 0.000 0.000 +2455930.5 1.14535 2.60705 -34422392.6 0.00023 0.00027 3.4 0.000 0.000 0.000 +2455931.5 1.13232 2.60205 -34423270.5 0.00027 0.00025 3.8 0.000 0.000 0.000 +2455932.5 1.11392 2.59986 -34424054.1 0.00026 0.00025 4.6 0.000 0.000 0.000 +2455933.5 1.08882 2.59654 -34424777.0 0.00023 0.00025 5.7 0.000 0.000 0.000 +2455934.5 1.06430 2.58925 -34425533.1 0.00025 0.00024 6.0 0.000 0.000 0.000 +2455935.5 1.04166 2.58103 -34426363.4 0.00025 0.00025 6.1 0.000 0.000 0.000 +2455936.5 1.01777 2.57223 -34427284.4 0.00020 0.00023 6.7 0.000 0.000 0.000 +2455937.5 0.99761 2.56065 -34428359.6 0.00022 0.00023 5.4 0.000 0.000 0.000 +2455938.5 0.98364 2.55083 -34429596.1 0.00021 0.00020 5.0 0.000 0.000 0.000 +2455939.5 0.97294 2.54525 -34431004.4 0.00022 0.00020 5.2 0.000 0.000 0.000 +2455940.5 0.96118 2.54355 -34432521.0 0.00018 0.00016 6.7 0.000 0.000 0.000 +2455941.5 0.94894 2.54397 -34434007.5 0.00019 0.00016 6.5 0.000 0.000 0.000 +2455942.5 0.93527 2.54601 -34435413.2 0.00020 0.00020 5.0 0.000 0.000 0.000 +2455943.5 0.91692 2.54896 -34436669.7 0.00014 0.00019 5.7 0.000 0.000 0.000 +2455944.5 0.89541 2.54848 -34437724.3 0.00023 0.00025 4.9 0.000 0.000 0.000 +2455945.5 0.87377 2.54464 -34438578.0 0.00023 0.00032 4.3 0.000 0.000 0.000 +2455946.5 0.85415 2.54281 -34439315.5 0.00025 0.00035 5.5 0.000 0.000 0.000 +2455947.5 0.83178 2.54642 -34440000.7 0.00027 0.00035 5.4 0.000 0.000 0.000 +2455948.5 0.80668 2.54940 -34440785.5 0.00036 0.00038 6.6 0.000 0.000 0.000 +2455949.5 0.78560 2.55162 -34441698.8 0.00035 0.00038 5.2 0.000 0.000 0.000 +2455950.5 0.76500 2.55608 -34442703.8 0.00029 0.00034 6.1 0.000 0.000 0.000 +2455951.5 0.74224 2.55882 -34443795.0 0.00030 0.00031 5.2 0.000 0.000 0.000 +2455952.5 0.71865 2.56094 -34444910.4 0.00029 0.00028 3.9 0.000 0.000 0.000 +2455953.5 0.69341 2.56203 -34446023.7 0.00027 0.00028 3.9 0.000 0.000 0.000 +2455954.5 0.66754 2.56256 -34447071.8 0.00011 0.00022 3.9 0.000 0.000 0.000 +2455955.5 0.64275 2.56217 -34447982.1 0.00020 0.00023 5.0 0.000 0.000 0.000 +2455956.5 0.61798 2.56028 -34448785.2 0.00020 0.00022 4.1 0.000 0.000 0.000 +2455957.5 0.59265 2.55837 -34449465.4 0.00019 0.00017 5.7 0.000 0.000 0.000 +2455958.5 0.56872 2.55573 -34449968.9 0.00022 0.00018 4.2 0.000 0.000 0.000 +2455959.5 0.54719 2.55271 -34450384.3 0.00022 0.00017 4.7 0.000 0.000 0.000 +2455960.5 0.52991 2.54855 -34450811.7 0.00023 0.00017 6.7 0.000 0.000 0.000 +2455961.5 0.51346 2.54406 -34451258.8 0.00016 0.00014 7.9 0.000 0.000 0.000 +2455962.5 0.49329 2.54108 -34451751.5 0.00020 0.00019 6.6 0.000 0.000 0.000 +2455963.5 0.47346 2.54042 -34452395.5 0.00020 0.00019 6.4 0.000 0.000 0.000 +2455964.5 0.45694 2.54236 -34453297.8 0.00017 0.00018 7.1 0.000 0.000 0.000 +2455965.5 0.44311 2.54581 -34454404.6 0.00017 0.00022 6.7 0.000 0.000 0.000 +2455966.5 0.43163 2.55088 -34455723.0 0.00016 0.00022 5.9 0.000 0.000 0.000 +2455967.5 0.42153 2.55845 -34457159.7 0.00018 0.00022 6.3 0.000 0.000 0.000 +2455968.5 0.41258 2.56708 -34458634.0 0.00014 0.00019 7.9 0.000 0.000 0.000 +2455969.5 0.40279 2.57480 -34460038.3 0.00038 0.00025 7.4 0.000 0.000 0.000 +2455970.5 0.38818 2.58114 -34461317.7 0.00038 0.00024 9.5 0.000 0.000 0.000 +2455971.5 0.37081 2.58675 -34462375.1 0.00038 0.00020 11.7 0.000 0.000 0.000 +2455972.5 0.35647 2.59631 -34463176.1 0.00039 0.00023 5.5 0.000 0.000 0.000 +2455973.5 0.34331 2.60907 -34463786.6 0.00040 0.00023 4.1 0.000 0.000 0.000 +2455974.5 0.32991 2.62028 -34464339.7 0.00040 0.00023 2.9 0.000 0.000 0.000 +2455975.5 0.31632 2.63069 -34464901.4 0.00017 0.00019 3.2 0.000 0.000 0.000 +2455976.5 0.30584 2.64073 -34465563.8 0.00017 0.00019 3.9 0.000 0.000 0.000 +2455977.5 0.29656 2.65038 -34466349.7 0.00020 0.00020 4.8 0.000 0.000 0.000 +2455978.5 0.28327 2.65731 -34467232.4 0.00018 0.00015 17.1 0.000 0.000 0.000 +2455979.5 0.26644 2.66349 -34468151.7 0.00022 0.00018 10.8 0.000 0.000 0.000 +2455980.5 0.24660 2.67082 -34469044.9 0.00021 0.00018 10.9 0.000 0.000 0.000 +2455981.5 0.22817 2.67870 -34469883.9 0.00022 0.00018 11.1 0.000 0.000 0.000 +2455982.5 0.21513 2.68978 -34470610.6 0.00023 0.00017 10.9 0.000 0.000 0.000 +2455983.5 0.20602 2.70269 -34471269.2 0.00028 0.00020 8.9 0.000 0.000 0.000 +2455984.5 0.20098 2.71226 -34471809.0 0.00028 0.00020 5.7 0.000 0.000 0.000 +2455985.5 0.19650 2.72010 -34472269.3 0.00023 0.00018 6.8 0.000 0.000 0.000 +2455986.5 0.19057 2.73046 -34472630.8 0.00030 0.00024 7.1 0.000 0.000 0.000 +2455987.5 0.18805 2.74272 -34472911.7 0.00030 0.00024 6.3 0.000 0.000 0.000 +2455988.5 0.18877 2.75712 -34473188.8 0.00031 0.00025 5.9 0.000 0.000 0.000 +2455989.5 0.18518 2.77167 -34473543.4 0.00026 0.00022 10.0 0.000 0.000 0.000 +2455990.5 0.17796 2.78217 -34474012.6 0.00027 0.00026 7.6 0.000 0.000 0.000 +2455991.5 0.17375 2.79097 -34474631.9 0.00028 0.00025 8.2 0.000 0.000 0.000 +2455992.5 0.16870 2.80018 -34475448.3 0.00021 0.00022 7.4 0.000 0.000 0.000 +2455993.5 0.15713 2.80797 -34476478.2 0.00024 0.00023 5.3 0.000 0.000 0.000 +2455994.5 0.14388 2.81519 -34477696.6 0.00022 0.00023 5.1 0.000 0.000 0.000 +2455995.5 0.13190 2.82557 -34479071.6 0.00021 0.00024 5.5 0.000 0.000 0.000 +2455996.5 0.12106 2.83794 -34480520.1 0.00021 0.00020 5.9 0.000 0.000 0.000 +2455997.5 0.11011 2.85061 -34482008.9 0.00021 0.00020 5.6 0.000 0.000 0.000 +2455998.5 0.09719 2.86313 -34483383.0 0.00025 0.00028 4.6 0.000 0.000 0.000 +2455999.5 0.08691 2.87499 -34484611.6 0.00022 0.00026 5.5 0.000 0.000 0.000 +2456000.5 0.07738 2.88831 -34485759.6 0.00026 0.00025 4.0 0.000 0.000 0.000 +2456001.5 0.06397 2.90139 -34486874.4 0.00026 0.00025 4.3 0.000 0.000 0.000 +2456002.5 0.04937 2.91317 -34488046.0 0.00022 0.00025 5.6 0.000 0.000 0.000 +2456003.5 0.03381 2.92513 -34489361.8 0.00020 0.00025 5.4 0.000 0.000 0.000 +2456004.5 0.01638 2.93840 -34490819.2 0.00027 0.00028 8.0 0.000 0.000 0.000 +2456005.5 -0.00084 2.95075 -34492341.2 0.00028 0.00028 8.2 0.000 0.000 0.000 +2456006.5 -0.01518 2.96020 -34493912.8 0.00025 0.00029 12.2 0.000 0.000 0.000 +2456007.5 -0.02656 2.97004 -34495502.8 0.00027 0.00029 5.5 0.000 0.000 0.000 +2456008.5 -0.03707 2.98252 -34497000.1 0.00029 0.00029 5.0 0.000 0.000 0.000 +2456009.5 -0.04430 2.99587 -34498400.3 0.00030 0.00029 5.2 0.000 0.000 0.000 +2456010.5 -0.04667 3.01006 -34499741.4 0.00020 0.00015 4.1 0.000 0.000 0.000 +2456011.5 -0.05070 3.02621 -34501002.1 0.00025 0.00016 3.9 0.000 0.000 0.000 +2456012.5 -0.05800 3.04040 -34502140.7 0.00024 0.00017 3.7 0.000 0.000 0.000 +2456013.5 -0.06698 3.05071 -34503197.7 0.00023 0.00016 5.3 0.000 0.000 0.000 +2456014.5 -0.07568 3.05889 -34504203.8 0.00029 0.00024 4.9 0.000 0.000 0.000 +2456015.5 -0.08162 3.07101 -34505184.5 0.00028 0.00023 4.5 0.000 0.000 0.000 +2456016.5 -0.08831 3.08810 -34506195.8 0.00028 0.00023 4.5 0.000 0.000 0.000 +2456017.5 -0.09567 3.10708 -34507281.3 0.00023 0.00022 5.7 0.000 0.000 0.000 +2456018.5 -0.10337 3.12783 -34508501.1 0.00025 0.00020 5.3 0.000 0.000 0.000 +2456019.5 -0.11357 3.14892 -34509882.3 0.00026 0.00020 5.0 0.000 0.000 0.000 +2456020.5 -0.12274 3.16881 -34511433.2 0.00022 0.00026 5.8 0.000 0.000 0.000 +2456021.5 -0.12910 3.18682 -34513164.7 0.00022 0.00027 5.8 0.000 0.000 0.000 +2456022.5 -0.13392 3.20370 -34514983.8 0.00022 0.00027 5.8 0.000 0.000 0.000 +2456023.5 -0.13727 3.22213 -34516875.7 0.00021 0.00027 6.0 0.000 0.000 0.000 +2456024.5 -0.13668 3.24166 -34518651.8 0.00018 0.00027 6.4 0.000 0.000 0.000 +2456025.5 -0.13110 3.26020 -34520195.0 0.00017 0.00027 9.0 0.000 0.000 0.000 +2456026.5 -0.12335 3.27934 -34521523.7 0.00017 0.00015 11.1 0.000 0.000 0.000 +2456027.5 -0.11639 3.30147 -34522664.2 0.00017 0.00014 11.3 0.000 0.000 0.000 +2456028.5 -0.10887 3.32543 -34523696.0 0.00021 0.00017 3.5 0.000 0.000 0.000 +2456029.5 -0.09918 3.34875 -34524730.6 0.00021 0.00018 3.4 0.000 0.000 0.000 +2456030.5 -0.08901 3.37116 -34525838.5 0.00021 0.00017 3.7 0.000 0.000 0.000 +2456031.5 -0.08032 3.39195 -34527044.2 0.00021 0.00017 3.3 0.000 0.000 0.000 +2456032.5 -0.07251 3.41135 -34528286.9 0.00015 0.00017 2.8 0.000 0.000 0.000 +2456033.5 -0.06327 3.42996 -34529562.7 0.00015 0.00016 2.7 0.000 0.000 0.000 +2456034.5 -0.05243 3.44969 -34530874.6 0.00014 0.00014 5.3 0.000 0.000 0.000 +2456035.5 -0.04252 3.47180 -34532205.5 0.00017 0.00019 4.6 0.000 0.000 0.000 +2456036.5 -0.03465 3.49542 -34533485.1 0.00018 0.00018 4.6 0.000 0.000 0.000 +2456037.5 -0.02888 3.51965 -34534722.5 0.00018 0.00018 4.6 0.000 0.000 0.000 +2456038.5 -0.02374 3.54160 -34535851.4 0.00018 0.00017 5.2 0.000 0.000 0.000 +2456039.5 -0.01491 3.56065 -34536877.0 0.00019 0.00017 4.3 0.000 0.000 0.000 +2456040.5 -0.00323 3.57993 -34537800.7 0.00017 0.00016 3.6 0.000 0.000 0.000 +2456041.5 0.00631 3.59948 -34538631.4 0.00013 0.00010 4.1 0.000 0.000 0.000 +2456042.5 0.01338 3.61792 -34539393.3 0.00016 0.00014 3.0 0.000 0.000 0.000 +2456043.5 0.02182 3.63414 -34540147.9 0.00017 0.00014 2.9 0.000 0.000 0.000 +2456044.5 0.03313 3.64858 -34540941.2 0.00018 0.00015 3.4 0.000 0.000 0.000 +2456045.5 0.04348 3.66226 -34541791.5 0.00019 0.00015 5.4 0.000 0.000 0.000 +2456046.5 0.05258 3.67477 -34542686.7 0.00020 0.00015 5.5 0.000 0.000 0.000 +2456047.5 0.06311 3.68747 -34543688.3 0.00020 0.00014 6.1 0.000 0.000 0.000 +2456048.5 0.07686 3.69922 -34544872.9 0.00031 0.00019 8.5 0.000 0.000 0.000 +2456049.5 0.09179 3.70901 -34546230.8 0.00035 0.00025 5.4 0.000 0.000 0.000 +2456050.5 0.10519 3.71938 -34547702.0 0.00035 0.00025 5.0 0.000 0.000 0.000 +2456051.5 0.11838 3.73270 -34549183.9 0.00035 0.00024 4.5 0.000 0.000 0.000 +2456052.5 0.13348 3.74740 -34550583.8 0.00035 0.00025 4.7 0.000 0.000 0.000 +2456053.5 0.15057 3.76348 -34551863.4 0.00039 0.00027 4.6 0.000 0.000 0.000 +2456054.5 0.16278 3.78009 -34552954.6 0.00030 0.00023 4.6 0.000 0.000 0.000 +2456055.5 0.16995 3.79437 -34553874.1 0.00025 0.00016 8.2 0.000 0.000 0.000 +2456056.5 0.17517 3.80784 -34554696.4 0.00027 0.00017 3.4 0.000 0.000 0.000 +2456057.5 0.17669 3.81936 -34555565.0 0.00026 0.00016 3.6 0.000 0.000 0.000 +2456058.5 0.17758 3.82741 -34556491.4 0.00025 0.00016 3.3 0.000 0.000 0.000 +2456059.5 0.18348 3.83401 -34557459.6 0.00016 0.00011 2.7 0.000 0.000 0.000 +2456060.5 0.19676 3.84069 -34558482.6 0.00017 0.00014 3.6 0.000 0.000 0.000 +2456061.5 0.21542 3.84779 -34559542.9 0.00016 0.00015 3.5 0.000 0.000 0.000 +2456062.5 0.23666 3.85671 -34560610.9 0.00012 0.00014 6.4 0.000 0.000 0.000 +2456063.5 0.25863 3.86693 -34561696.4 0.00024 0.00023 4.8 0.000 0.000 0.000 +2456064.5 0.27780 3.87562 -34562692.9 0.00023 0.00023 4.8 0.000 0.000 0.000 +2456065.5 0.29213 3.88358 -34563598.6 0.00023 0.00022 4.9 0.000 0.000 0.000 +2456066.5 0.30346 3.88902 -34564342.4 0.00022 0.00021 4.8 0.000 0.000 0.000 +2456067.5 0.31385 3.89102 -34564931.5 0.00024 0.00022 4.3 0.000 0.000 0.000 +2456068.5 0.32268 3.89318 -34565396.2 0.00025 0.00021 3.8 0.000 0.000 0.000 +2456069.5 0.33175 3.89814 -34565794.3 0.00013 0.00012 5.0 0.000 0.000 0.000 +2456070.5 0.34199 3.90538 -34566175.5 0.00030 0.00020 4.5 0.000 0.000 0.000 +2456071.5 0.35435 3.91255 -34566597.5 0.00031 0.00019 4.5 0.000 0.000 0.000 +2456072.5 0.37045 3.91908 -34567091.9 0.00032 0.00019 4.8 0.000 0.000 0.000 +2456073.5 0.39056 3.92535 -34567704.3 0.00031 0.00018 5.4 0.000 0.000 0.000 +2456074.5 0.41062 3.93192 -34568445.5 0.00032 0.00019 5.9 0.000 0.000 0.000 +2456075.5 0.42944 3.93889 -34569319.3 0.00037 0.00022 5.7 0.000 0.000 0.000 +2456076.5 0.44624 3.94705 -34570332.4 0.00026 0.00016 7.0 0.000 0.000 0.000 +2456077.5 0.45643 3.95472 -34571458.0 0.00025 0.00018 5.1 0.000 0.000 0.000 +2456078.5 0.46262 3.96005 -34572656.9 0.00024 0.00018 5.2 0.000 0.000 0.000 +2456079.5 0.46886 3.96574 -34573871.9 0.00024 0.00017 5.8 0.000 0.000 0.000 +2456080.5 0.47732 3.97186 -34575013.4 0.00023 0.00017 6.3 0.000 0.000 0.000 +2456081.5 0.48848 3.97637 -34575996.2 0.00014 0.00013 6.8 0.000 0.000 0.000 +2456082.5 0.50159 3.97891 -34576819.2 0.00018 0.00018 7.0 0.000 0.000 0.000 +2456083.5 0.51714 3.98179 -34577452.1 0.00016 0.00021 10.2 0.000 0.000 0.000 +2456084.5 0.53270 3.98649 -34578023.1 0.00021 0.00026 7.7 0.000 0.000 0.000 +2456085.5 0.54806 3.99020 -34578673.6 0.00021 0.00028 8.1 0.000 0.000 0.000 +2456086.5 0.56508 3.99530 -34579442.8 0.00021 0.00029 7.8 0.000 0.000 0.000 +2456087.5 0.58224 4.00034 -34580343.8 0.00021 0.00030 7.7 0.000 0.000 0.000 +2456088.5 0.59943 4.00520 -34581240.9 0.00020 0.00027 8.7 0.000 0.000 0.000 +2456089.5 0.61721 4.01403 -34582064.1 0.00022 0.00027 6.4 0.000 0.000 0.000 +2456090.5 0.63498 4.02584 -34582842.1 0.00018 0.00022 8.2 0.000 0.000 0.000 +2456091.5 0.64923 4.03878 -34583532.8 0.00022 0.00023 5.1 0.000 0.000 0.000 +2456092.5 0.65970 4.04760 -34584088.3 0.00021 0.00022 4.6 0.000 0.000 0.000 +2456093.5 0.66855 4.05204 -34584496.2 0.00020 0.00022 4.4 0.000 0.000 0.000 +2456094.5 0.67619 4.05455 -34584758.1 0.00018 0.00021 4.1 0.000 0.000 0.000 +2456095.5 0.68629 4.05650 -34584935.1 0.00022 0.00022 6.8 0.000 0.000 0.000 +2456096.5 0.70083 4.05892 -34584985.1 0.00023 0.00021 6.7 0.000 0.000 0.000 +2456097.5 0.71895 4.06262 -34584951.8 0.00020 0.00018 11.3 0.000 0.000 0.000 +2456098.5 0.73697 4.06819 -34584882.4 0.00023 0.00031 6.8 0.000 0.000 0.000 +2456099.5 0.75531 4.07384 -34584799.6 0.00026 0.00031 6.8 0.000 0.000 0.000 +2456100.5 0.77341 4.07977 -34584750.1 0.00026 0.00031 7.2 0.000 0.000 0.000 +2456101.5 0.78925 4.08466 -34584799.1 0.00022 0.00027 7.0 0.000 0.000 0.000 +2456102.5 0.80837 4.08552 -34585013.6 0.00036 0.00029 6.9 0.000 0.000 0.000 +2456103.5 0.83074 4.08552 -34585325.4 0.00036 0.00029 7.0 0.000 0.000 0.000 +2456104.5 0.85287 4.08587 -34585723.1 0.00036 0.00015 7.4 0.000 0.000 0.000 +2456105.5 0.87411 4.08710 -34586164.2 0.00036 0.00015 3.4 0.000 0.000 0.000 +2456106.5 0.89463 4.09012 -34586534.7 0.00035 0.00015 3.2 0.000 0.000 0.000 +2456107.5 0.91315 4.09285 -34586762.0 0.00035 0.00016 2.5 0.000 0.000 0.000 +2456108.5 0.92766 4.09393 -34586836.7 0.00019 0.00014 2.2 0.000 0.000 0.000 +2456109.5 0.94068 4.09208 -34586762.5 0.00023 0.00017 2.7 0.000 0.000 0.000 +2456110.5 0.95601 4.08966 -34586565.6 0.00022 0.00017 2.6 0.000 0.000 0.000 +2456111.5 0.97254 4.08672 -34586333.6 0.00022 0.00017 6.9 0.000 0.000 0.000 +2456112.5 0.98895 4.08328 -34586162.8 0.00024 0.00020 4.6 0.000 0.000 0.000 +2456113.5 1.00492 4.07980 -34586060.4 0.00024 0.00020 5.1 0.000 0.000 0.000 +2456114.5 1.02484 4.07598 -34586089.5 0.00023 0.00019 5.0 0.000 0.000 0.000 +2456115.5 1.05019 4.07532 -34586277.9 0.00019 0.00017 5.4 0.000 0.000 0.000 +2456116.5 1.07675 4.07632 -34586533.1 0.00019 0.00021 5.5 0.000 0.000 0.000 +2456117.5 1.10029 4.07770 -34586839.0 0.00017 0.00023 6.2 0.000 0.000 0.000 +2456118.5 1.11872 4.07806 -34587096.8 0.00014 0.00020 7.2 0.000 0.000 0.000 +2456119.5 1.13394 4.07595 -34587271.9 0.00018 0.00021 5.4 0.000 0.000 0.000 +2456120.5 1.14894 4.07302 -34587310.7 0.00017 0.00020 5.4 0.000 0.000 0.000 +2456121.5 1.16596 4.07068 -34587128.2 0.00018 0.00020 5.5 0.000 0.000 0.000 +2456122.5 1.18292 4.07147 -34586879.3 0.00017 0.00016 6.7 0.000 0.000 0.000 +2456123.5 1.19895 4.07352 -34586580.9 0.00016 0.00017 5.0 0.000 0.000 0.000 +2456124.5 1.21371 4.07305 -34586211.0 0.00016 0.00017 5.1 0.000 0.000 0.000 +2456125.5 1.22793 4.07081 -34585931.8 0.00012 0.00015 7.7 0.000 0.000 0.000 +2456126.5 1.24435 4.06882 -34585786.5 0.00017 0.00018 6.1 0.000 0.000 0.000 +2456127.5 1.26184 4.06665 -34585750.1 0.00016 0.00018 6.8 0.000 0.000 0.000 +2456128.5 1.27733 4.06308 -34585928.2 0.00016 0.00018 6.0 0.000 0.000 0.000 +2456129.5 1.29202 4.05806 -34586267.4 0.00016 0.00015 7.6 0.000 0.000 0.000 +2456130.5 1.30768 4.05164 -34586741.0 0.00018 0.00018 5.8 0.000 0.000 0.000 +2456131.5 1.32346 4.04570 -34587295.6 0.00018 0.00018 6.0 0.000 0.000 0.000 +2456132.5 1.33923 4.04036 -34587870.8 0.00013 0.00016 7.9 0.000 0.000 0.000 +2456133.5 1.35582 4.03314 -34588417.9 0.00018 0.00027 4.3 0.000 0.000 0.000 +2456134.5 1.37251 4.02561 -34588883.6 0.00020 0.00027 4.1 0.000 0.000 0.000 +2456135.5 1.38993 4.01837 -34589214.1 0.00020 0.00028 4.1 0.000 0.000 0.000 +2456136.5 1.40892 4.01256 -34589452.2 0.00019 0.00027 4.6 0.000 0.000 0.000 +2456137.5 1.42441 4.01049 -34589579.6 0.00020 0.00030 3.3 0.000 0.000 0.000 +2456138.5 1.43487 4.00730 -34589656.5 0.00020 0.00030 2.7 0.000 0.000 0.000 +2456139.5 1.44600 4.00252 -34589787.8 0.00016 0.00020 3.4 0.000 0.000 0.000 +2456140.5 1.45927 3.99854 -34590042.7 0.00016 0.00029 2.7 0.000 0.000 0.000 +2456141.5 1.47291 3.99384 -34590430.0 0.00016 0.00029 3.5 0.000 0.000 0.000 +2456142.5 1.48433 3.98838 -34590942.3 0.00015 0.00029 3.8 0.000 0.000 0.000 +2456143.5 1.49238 3.98186 -34591484.4 0.00012 0.00025 5.1 0.000 0.000 0.000 +2456144.5 1.49951 3.97625 -34592077.8 0.00014 0.00027 5.7 0.000 0.000 0.000 +2456145.5 1.50651 3.97039 -34592633.3 0.00014 0.00027 5.7 0.000 0.000 0.000 +2456146.5 1.51447 3.96389 -34593056.7 0.00012 0.00017 8.8 0.000 0.000 0.000 +2456147.5 1.52461 3.95900 -34593308.5 0.00016 0.00018 5.5 0.000 0.000 0.000 +2456148.5 1.53729 3.95239 -34593414.0 0.00016 0.00016 5.5 0.000 0.000 0.000 +2456149.5 1.55294 3.94268 -34593405.2 0.00016 0.00016 5.6 0.000 0.000 0.000 +2456150.5 1.56927 3.93472 -34593332.5 0.00014 0.00012 4.8 0.000 0.000 0.000 +2456151.5 1.58504 3.92927 -34593181.1 0.00022 0.00017 5.3 0.000 0.000 0.000 +2456152.5 1.60241 3.92377 -34592979.7 0.00024 0.00017 5.3 0.000 0.000 0.000 +2456153.5 1.62059 3.91911 -34592820.0 0.00021 0.00015 6.9 0.000 0.000 0.000 +2456154.5 1.63341 3.91440 -34592772.1 0.00022 0.00020 4.2 0.000 0.000 0.000 +2456155.5 1.64332 3.90765 -34592876.8 0.00022 0.00020 4.4 0.000 0.000 0.000 +2456156.5 1.65599 3.90001 -34593148.5 0.00023 0.00020 4.4 0.000 0.000 0.000 +2456157.5 1.67096 3.89064 -34593562.8 0.00016 0.00015 4.2 0.000 0.000 0.000 +2456158.5 1.68558 3.87978 -34594135.7 0.00018 0.00018 3.9 0.000 0.000 0.000 +2456159.5 1.69937 3.86769 -34594813.6 0.00018 0.00018 4.2 0.000 0.000 0.000 +2456160.5 1.71244 3.85467 -34595498.3 0.00023 0.00014 5.3 0.000 0.000 0.000 +2456161.5 1.72376 3.84293 -34596103.1 0.00025 0.00016 4.3 0.000 0.000 0.000 +2456162.5 1.73377 3.83123 -34596584.8 0.00024 0.00017 4.5 0.000 0.000 0.000 +2456163.5 1.74088 3.82037 -34596897.2 0.00024 0.00018 4.2 0.000 0.000 0.000 +2456164.5 1.74638 3.80973 -34597076.9 0.00021 0.00016 5.2 0.000 0.000 0.000 +2456165.5 1.75195 3.79965 -34597202.0 0.00021 0.00022 4.5 0.000 0.000 0.000 +2456166.5 1.75628 3.78787 -34597393.2 0.00014 0.00022 4.3 0.000 0.000 0.000 +2456167.5 1.76019 3.77325 -34597740.6 0.00010 0.00020 5.6 0.000 0.000 0.000 +2456168.5 1.76375 3.75774 -34598280.0 0.00012 0.00021 3.0 0.000 0.000 0.000 +2456169.5 1.76718 3.74324 -34598973.1 0.00012 0.00020 3.4 0.000 0.000 0.000 +2456170.5 1.77080 3.73114 -34599764.4 0.00011 0.00019 3.1 0.000 0.000 0.000 +2456171.5 1.77226 3.72010 -34600628.8 0.00010 0.00014 2.8 0.000 0.000 0.000 +2456172.5 1.76984 3.70867 -34601458.2 0.00010 0.00012 3.1 0.000 0.000 0.000 +2456173.5 1.76625 3.69639 -34602263.3 0.00011 0.00015 3.2 0.000 0.000 0.000 +2456174.5 1.76357 3.68341 -34602997.2 0.00010 0.00012 5.7 0.000 0.000 0.000 +2456175.5 1.76195 3.66901 -34603570.9 0.00012 0.00016 5.8 0.000 0.000 0.000 +2456176.5 1.76055 3.65319 -34603954.6 0.00011 0.00016 5.7 0.000 0.000 0.000 +2456177.5 1.75928 3.63674 -34604261.7 0.00012 0.00016 5.7 0.000 0.000 0.000 +2456178.5 1.75853 3.62252 -34604509.6 0.00013 0.00015 5.8 0.000 0.000 0.000 +2456179.5 1.75735 3.60970 -34604698.7 0.00017 0.00016 4.7 0.000 0.000 0.000 +2456180.5 1.75583 3.59647 -34604956.5 0.00016 0.00017 4.7 0.000 0.000 0.000 +2456181.5 1.75677 3.58349 -34605340.8 0.00016 0.00014 3.9 0.000 0.000 0.000 +2456182.5 1.75951 3.57236 -34605899.7 0.00025 0.00031 4.4 0.000 0.000 0.000 +2456183.5 1.76200 3.56171 -34606643.0 0.00026 0.00031 4.9 0.000 0.000 0.000 +2456184.5 1.76708 3.55032 -34607608.8 0.00025 0.00032 5.0 0.000 0.000 0.000 +2456185.5 1.77390 3.53926 -34608842.6 0.00022 0.00030 9.8 0.000 0.000 0.000 +2456186.5 1.77749 3.52891 -34610245.0 0.00023 0.00030 6.2 0.000 0.000 0.000 +2456187.5 1.77801 3.51952 -34611660.5 0.00023 0.00030 5.8 0.000 0.000 0.000 +2456188.5 1.77695 3.50889 -34613023.6 0.00013 0.00012 5.9 0.000 0.000 0.000 +2456189.5 1.77455 3.49732 -34614233.3 0.00027 0.00018 4.7 0.000 0.000 0.000 +2456190.5 1.77097 3.48244 -34615276.0 0.00027 0.00018 4.2 0.000 0.000 0.000 +2456191.5 1.76549 3.46390 -34616108.9 0.00027 0.00018 4.0 0.000 0.000 0.000 +2456192.5 1.76108 3.44660 -34616767.3 0.00027 0.00018 5.0 0.000 0.000 0.000 +2456193.5 1.75871 3.43270 -34617418.0 0.00027 0.00020 3.5 0.000 0.000 0.000 +2456194.5 1.75580 3.42186 -34618131.9 0.00028 0.00022 3.2 0.000 0.000 0.000 +2456195.5 1.74912 3.41577 -34618974.8 0.00015 0.00015 3.2 0.000 0.000 0.000 +2456196.5 1.73943 3.41155 -34619989.6 0.00016 0.00017 3.1 0.000 0.000 0.000 +2456197.5 1.73086 3.40597 -34621197.0 0.00017 0.00018 3.2 0.000 0.000 0.000 +2456198.5 1.72063 3.39885 -34622534.2 0.00017 0.00018 3.1 0.000 0.000 0.000 +2456199.5 1.70678 3.38655 -34623872.5 0.00017 0.00015 4.7 0.000 0.000 0.000 +2456200.5 1.69484 3.36700 -34625165.0 0.00017 0.00014 5.0 0.000 0.000 0.000 +2456201.5 1.68874 3.34579 -34626324.0 0.00016 0.00016 4.9 0.000 0.000 0.000 +2456202.5 1.68528 3.32889 -34627307.9 0.00017 0.00020 7.8 0.000 0.000 0.000 +2456203.5 1.68282 3.31606 -34628089.8 0.00018 0.00020 5.3 0.000 0.000 0.000 +2456204.5 1.68190 3.30687 -34628753.9 0.00017 0.00019 5.3 0.000 0.000 0.000 +2456205.5 1.67752 3.29732 -34629327.7 0.00016 0.00019 4.8 0.000 0.000 0.000 +2456206.5 1.66823 3.28510 -34629837.5 0.00013 0.00018 4.8 0.000 0.000 0.000 +2456207.5 1.65767 3.27295 -34630331.2 0.00012 0.00017 4.8 0.000 0.000 0.000 +2456208.5 1.64802 3.26259 -34630886.3 0.00012 0.00010 3.5 0.000 0.000 0.000 +2456209.5 1.63801 3.25294 -34631582.0 0.00018 0.00010 11.1 0.000 0.000 0.000 +2456210.5 1.62673 3.24089 -34632447.0 0.00018 0.00013 4.4 0.000 0.000 0.000 +2456211.5 1.61654 3.22930 -34633509.9 0.00018 0.00013 4.4 0.000 0.000 0.000 +2456212.5 1.60524 3.22177 -34634739.5 0.00018 0.00015 4.5 0.000 0.000 0.000 +2456213.5 1.59083 3.21463 -34636113.8 0.00019 0.00014 4.6 0.000 0.000 0.000 +2456214.5 1.57588 3.20623 -34637601.4 0.00021 0.00018 3.3 0.000 0.000 0.000 +2456215.5 1.56025 3.20006 -34639099.5 0.00017 0.00018 2.4 0.000 0.000 0.000 +2456216.5 1.54138 3.19381 -34640513.9 0.00017 0.00016 3.5 0.000 0.000 0.000 +2456217.5 1.52157 3.18334 -34641771.9 0.00019 0.00017 1.7 0.000 0.000 0.000 +2456218.5 1.50682 3.17303 -34642836.3 0.00019 0.00016 1.8 0.000 0.000 0.000 +2456219.5 1.49508 3.16703 -34643729.1 0.00018 0.00016 1.5 0.000 0.000 0.000 +2456220.5 1.48040 3.16153 -34644509.4 0.00015 0.00012 3.4 0.000 0.000 0.000 +2456221.5 1.46585 3.15369 -34645268.1 0.00021 0.00012 3.1 0.000 0.000 0.000 +2456222.5 1.45508 3.14395 -34646087.8 0.00021 0.00011 3.0 0.000 0.000 0.000 +2456223.5 1.45001 3.13314 -34646983.4 0.00019 0.00010 6.3 0.000 0.000 0.000 +2456224.5 1.45174 3.12459 -34647984.9 0.00023 0.00019 6.0 0.000 0.000 0.000 +2456225.5 1.45592 3.11895 -34649076.8 0.00023 0.00020 6.3 0.000 0.000 0.000 +2456226.5 1.45920 3.11540 -34650227.7 0.00025 0.00021 4.1 0.000 0.000 0.000 +2456227.5 1.46081 3.11389 -34651394.8 0.00022 0.00020 8.6 0.000 0.000 0.000 +2456228.5 1.45840 3.11514 -34652506.5 0.00023 0.00024 5.7 0.000 0.000 0.000 +2456229.5 1.44957 3.11614 -34653523.4 0.00024 0.00025 5.7 0.000 0.000 0.000 +2456230.5 1.44178 3.11402 -34654444.0 0.00020 0.00019 5.8 0.000 0.000 0.000 +2456231.5 1.43876 3.11362 -34655289.7 0.00024 0.00026 4.2 0.000 0.000 0.000 +2456232.5 1.43331 3.11350 -34656048.0 0.00022 0.00026 4.4 0.000 0.000 0.000 +2456233.5 1.42449 3.11258 -34656771.2 0.00021 0.00026 3.8 0.000 0.000 0.000 +2456234.5 1.41499 3.11079 -34657457.9 0.00022 0.00023 4.0 0.000 0.000 0.000 +2456235.5 1.40612 3.10412 -34658193.4 0.00029 0.00025 4.3 0.000 0.000 0.000 +2456236.5 1.39624 3.09497 -34659040.0 0.00029 0.00025 4.3 0.000 0.000 0.000 +2456237.5 1.38717 3.08457 -34659997.2 0.00026 0.00018 6.3 0.000 0.000 0.000 +2456238.5 1.38089 3.07650 -34661052.5 0.00031 0.00018 5.4 0.000 0.000 0.000 +2456239.5 1.37711 3.06999 -34662267.6 0.00031 0.00017 5.4 0.000 0.000 0.000 +2456240.5 1.37380 3.06758 -34663618.8 0.00030 0.00018 5.5 0.000 0.000 0.000 +2456241.5 1.36397 3.06857 -34665016.6 0.00023 0.00013 5.5 0.000 0.000 0.000 +2456242.5 1.35144 3.06669 -34666466.5 0.00030 0.00020 3.5 0.000 0.000 0.000 +2456243.5 1.34241 3.06271 -34667971.6 0.00030 0.00019 3.5 0.000 0.000 0.000 +2456244.5 1.33327 3.05845 -34669467.2 0.00025 0.00018 3.2 0.000 0.000 0.000 +2456245.5 1.32310 3.05616 -34670864.9 0.00028 0.00022 3.2 0.000 0.000 0.000 +2456246.5 1.31250 3.05442 -34672180.9 0.00029 0.00022 3.4 0.000 0.000 0.000 +2456247.5 1.30374 3.05013 -34673476.7 0.00029 0.00023 3.3 0.000 0.000 0.000 +2456248.5 1.29943 3.04605 -34674779.7 0.00021 0.00016 5.2 0.000 0.000 0.000 +2456249.5 1.29579 3.04624 -34676205.5 0.00022 0.00018 6.1 0.000 0.000 0.000 +2456250.5 1.28831 3.04529 -34677811.9 0.00022 0.00019 5.4 0.000 0.000 0.000 +2456251.5 1.27686 3.04155 -34679527.4 0.00015 0.00015 5.9 0.000 0.000 0.000 +2456252.5 1.26250 3.03749 -34681266.7 0.00013 0.00014 5.7 0.000 0.000 0.000 +2456253.5 1.24803 3.03069 -34682985.4 0.00017 0.00013 5.7 0.000 0.000 0.000 +2456254.5 1.23687 3.02316 -34684653.3 0.00021 0.00013 5.7 0.000 0.000 0.000 +2456255.5 1.22745 3.01789 -34686234.3 0.00019 0.00012 6.0 0.000 0.000 0.000 +2456256.5 1.21421 3.01332 -34687670.1 0.00021 0.00012 3.8 0.000 0.000 0.000 +2456257.5 1.20348 3.00726 -34688949.0 0.00021 0.00013 3.6 0.000 0.000 0.000 +2456258.5 1.20064 3.00443 -34690111.5 0.00021 0.00014 3.6 0.000 0.000 0.000 +2456259.5 1.19744 3.00627 -34691146.9 0.00020 0.00016 2.5 0.000 0.000 0.000 +2456260.5 1.19241 3.00647 -34692086.9 0.00017 0.00016 2.6 0.000 0.000 0.000 +2456261.5 1.18848 3.00551 -34692987.6 0.00017 0.00015 1.8 0.000 0.000 0.000 +2456262.5 1.18419 3.00254 -34693860.1 0.00016 0.00014 1.8 0.000 0.000 0.000 +2456263.5 1.17695 2.99832 -34694814.1 0.00018 0.00018 2.1 0.000 0.000 0.000 +2456264.5 1.16643 2.99482 -34695847.9 0.00018 0.00018 2.1 0.000 0.000 0.000 +2456265.5 1.15795 2.99288 -34696956.8 0.00016 0.00017 3.6 0.000 0.000 0.000 +2456266.5 1.15111 2.99513 -34698159.7 0.00019 0.00020 2.9 0.000 0.000 0.000 +2456267.5 1.14057 2.99482 -34699460.9 0.00020 0.00020 2.8 0.000 0.000 0.000 +2456268.5 1.12508 2.99318 -34700821.8 0.00019 0.00020 2.8 0.000 0.000 0.000 +2456269.5 1.10769 2.99078 -34702190.7 0.00017 0.00015 2.8 0.000 0.000 0.000 +2456270.5 1.09566 2.98403 -34703546.4 0.00022 0.00017 2.1 0.000 0.000 0.000 +2456271.5 1.08613 2.97746 -34704877.4 0.00025 0.00018 3.3 0.000 0.000 0.000 +2456272.5 1.07376 2.97138 -34706100.7 0.00023 0.00014 4.0 0.000 0.000 0.000 +2456273.5 1.06123 2.96739 -34707187.3 0.00024 0.00026 3.7 0.000 0.000 0.000 +2456274.5 1.04728 2.96364 -34708142.2 0.00025 0.00026 4.0 0.000 0.000 0.000 +2456275.5 1.03028 2.95641 -34709049.7 0.00026 0.00026 4.0 0.000 0.000 0.000 +2456276.5 1.01040 2.94853 -34709981.7 0.00023 0.00026 6.4 0.000 0.000 0.000 +2456277.5 0.98984 2.93993 -34710980.1 0.00020 0.00025 5.4 0.000 0.000 0.000 +2456278.5 0.96799 2.93398 -34712051.8 0.00020 0.00026 3.5 0.000 0.000 0.000 +2456279.5 0.94682 2.92676 -34713178.9 0.00016 0.00014 4.4 0.000 0.000 0.000 +2456280.5 0.93034 2.91833 -34714298.3 0.00036 0.00021 4.6 0.000 0.000 0.000 +2456281.5 0.91480 2.91350 -34715320.9 0.00036 0.00021 4.7 0.000 0.000 0.000 +2456282.5 0.89966 2.91195 -34716196.9 0.00035 0.00020 4.6 0.000 0.000 0.000 +2456283.5 0.88572 2.91146 -34716948.2 0.00036 0.00023 4.5 0.000 0.000 0.000 +2456284.5 0.87486 2.90776 -34717664.1 0.00036 0.00022 6.3 0.000 0.000 0.000 +2456285.5 0.86851 2.90373 -34718329.6 0.00036 0.00023 5.8 0.000 0.000 0.000 +2456286.5 0.86312 2.90294 -34718894.8 0.00027 0.00024 11.6 0.000 0.000 0.000 +2456287.5 0.85678 2.90426 -34719377.2 0.00028 0.00027 3.9 0.000 0.000 0.000 +2456288.5 0.84695 2.90556 -34719835.6 0.00029 0.00028 4.1 0.000 0.000 0.000 +2456289.5 0.82907 2.90488 -34720290.2 0.00028 0.00027 4.5 0.000 0.000 0.000 +2456290.5 0.80770 2.90242 -34720760.4 0.00028 0.00026 4.6 0.000 0.000 0.000 +2456291.5 0.78964 2.90006 -34721351.8 0.00029 0.00025 4.6 0.000 0.000 0.000 +2456292.5 0.77209 2.89949 -34722073.5 0.00017 0.00018 2.9 0.000 0.000 0.000 +2456293.5 0.75285 2.89910 -34722909.1 0.00019 0.00016 6.7 0.000 0.000 0.000 +2456294.5 0.73266 2.89910 -34723869.9 0.00020 0.00014 3.5 0.000 0.000 0.000 +2456295.5 0.71426 2.89746 -34724961.0 0.00020 0.00013 3.1 0.000 0.000 0.000 +2456296.5 0.70060 2.89612 -34726140.8 0.00020 0.00014 2.9 0.000 0.000 0.000 +2456297.5 0.69036 2.89594 -34727340.6 0.00019 0.00014 3.0 0.000 0.000 0.000 +2456298.5 0.68142 2.89716 -34728528.2 0.00021 0.00019 2.7 0.000 0.000 0.000 +2456299.5 0.67194 2.90085 -34729604.2 0.00016 0.00017 2.2 0.000 0.000 0.000 +2456300.5 0.66249 2.90567 -34730537.3 0.00013 0.00016 4.4 0.000 0.000 0.000 +2456301.5 0.65338 2.91345 -34731386.7 0.00019 0.00034 4.0 0.000 0.000 0.000 +2456302.5 0.64360 2.92215 -34732238.2 0.00019 0.00034 4.1 0.000 0.000 0.000 +2456303.5 0.63232 2.93066 -34733192.9 0.00019 0.00034 4.2 0.000 0.000 0.000 +2456304.5 0.61955 2.93662 -34734274.3 0.00018 0.00032 6.2 0.000 0.000 0.000 +2456305.5 0.60547 2.94333 -34735512.0 0.00018 0.00032 6.1 0.000 0.000 0.000 +2456306.5 0.59296 2.95149 -34736917.2 0.00021 0.00034 4.5 0.000 0.000 0.000 +2456307.5 0.58268 2.95932 -34738434.5 0.00017 0.00017 5.3 0.000 0.000 0.000 +2456308.5 0.57020 2.96568 -34739925.9 0.00019 0.00024 5.3 0.000 0.000 0.000 +2456309.5 0.55409 2.97458 -34741320.3 0.00020 0.00024 5.5 0.000 0.000 0.000 +2456310.5 0.53958 2.98435 -34742624.1 0.00020 0.00024 5.3 0.000 0.000 0.000 +2456311.5 0.52908 2.99404 -34743876.1 0.00021 0.00024 5.4 0.000 0.000 0.000 +2456312.5 0.51683 3.00728 -34745037.5 0.00018 0.00020 7.2 0.000 0.000 0.000 +2456313.5 0.50323 3.01869 -34746136.7 0.00026 0.00021 5.2 0.000 0.000 0.000 +2456314.5 0.49373 3.02850 -34747198.2 0.00024 0.00012 5.1 0.000 0.000 0.000 +2456315.5 0.48617 3.04075 -34748263.4 0.00024 0.00046 5.4 0.000 0.000 0.000 +2456316.5 0.47823 3.05161 -34749355.8 0.00024 0.00046 5.2 0.000 0.000 0.000 +2456317.5 0.47064 3.05958 -34750483.6 0.00023 0.00046 5.1 0.000 0.000 0.000 +2456318.5 0.46332 3.06504 -34751610.2 0.00024 0.00046 5.1 0.000 0.000 0.000 +2456319.5 0.45592 3.06896 -34752858.2 0.00017 0.00046 5.4 0.000 0.000 0.000 +2456320.5 0.44882 3.07207 -34754236.2 0.00018 0.00046 5.1 0.000 0.000 0.000 +2456321.5 0.43964 3.07635 -34755698.4 0.00016 0.00013 4.4 0.000 0.000 0.000 +2456322.5 0.43152 3.08225 -34757191.6 0.00021 0.00018 3.6 0.000 0.000 0.000 +2456323.5 0.42720 3.09257 -34758763.2 0.00023 0.00019 3.7 0.000 0.000 0.000 +2456324.5 0.42427 3.10555 -34760259.0 0.00022 0.00019 3.9 0.000 0.000 0.000 +2456325.5 0.42522 3.11957 -34761640.5 0.00019 0.00017 4.5 0.000 0.000 0.000 +2456326.5 0.42493 3.13526 -34762864.4 0.00021 0.00018 5.3 0.000 0.000 0.000 +2456327.5 0.41924 3.14732 -34763962.6 0.00021 0.00018 5.2 0.000 0.000 0.000 +2456328.5 0.40987 3.15669 -34764970.0 0.00017 0.00012 6.4 0.000 0.000 0.000 +2456329.5 0.39928 3.16924 -34765891.6 0.00026 0.00018 5.3 0.000 0.000 0.000 +2456330.5 0.38842 3.18491 -34766825.7 0.00026 0.00019 5.1 0.000 0.000 0.000 +2456331.5 0.37435 3.19770 -34767863.1 0.00027 0.00029 5.1 0.000 0.000 0.000 +2456332.5 0.36194 3.20538 -34769059.8 0.00025 0.00028 4.8 0.000 0.000 0.000 +2456333.5 0.35499 3.21251 -34770394.9 0.00027 0.00028 4.7 0.000 0.000 0.000 +2456334.5 0.35172 3.22151 -34771803.8 0.00045 0.00041 4.7 0.000 0.000 0.000 +2456335.5 0.34910 3.23191 -34773225.1 0.00040 0.00039 6.0 0.000 0.000 0.000 +2456336.5 0.34363 3.24052 -34774552.9 0.00044 0.00040 4.9 0.000 0.000 0.000 +2456337.5 0.33859 3.24602 -34775713.3 0.00043 0.00033 4.8 0.000 0.000 0.000 +2456338.5 0.33853 3.25134 -34776712.1 0.00043 0.00033 4.8 0.000 0.000 0.000 +2456339.5 0.33902 3.25977 -34777616.1 0.00042 0.00033 4.6 0.000 0.000 0.000 +2456340.5 0.33655 3.26920 -34778413.0 0.00026 0.00019 4.9 0.000 0.000 0.000 +2456341.5 0.33297 3.27914 -34779101.9 0.00025 0.00019 4.7 0.000 0.000 0.000 +2456342.5 0.33027 3.29160 -34779722.9 0.00021 0.00016 7.9 0.000 0.000 0.000 +2456343.5 0.32910 3.30337 -34780358.5 0.00022 0.00017 6.9 0.000 0.000 0.000 +2456344.5 0.32772 3.31424 -34781068.2 0.00023 0.00017 6.8 0.000 0.000 0.000 +2456345.5 0.32490 3.32444 -34781919.3 0.00023 0.00017 6.5 0.000 0.000 0.000 +2456346.5 0.32030 3.33436 -34782948.8 0.00018 0.00012 7.3 0.000 0.000 0.000 +2456347.5 0.31498 3.34365 -34784155.4 0.00021 0.00022 6.3 0.000 0.000 0.000 +2456348.5 0.30672 3.34916 -34785517.3 0.00018 0.00022 6.4 0.000 0.000 0.000 +2456349.5 0.29696 3.35148 -34787072.4 0.00017 0.00021 6.8 0.000 0.000 0.000 +2456350.5 0.29276 3.35820 -34788753.4 0.00016 0.00022 5.7 0.000 0.000 0.000 +2456351.5 0.29596 3.36828 -34790507.8 0.00015 0.00025 6.4 0.000 0.000 0.000 +2456352.5 0.30172 3.38187 -34792250.8 0.00015 0.00025 6.4 0.000 0.000 0.000 +2456353.5 0.30500 3.39755 -34793937.8 0.00011 0.00016 7.9 0.000 0.000 0.000 +2456354.5 0.30794 3.41294 -34795469.3 0.00019 0.00023 6.5 0.000 0.000 0.000 +2456355.5 0.31162 3.42803 -34796928.1 0.00019 0.00023 6.3 0.000 0.000 0.000 +2456356.5 0.31548 3.44019 -34798392.8 0.00019 0.00022 8.8 0.000 0.000 0.000 +2456357.5 0.32055 3.45000 -34799885.8 0.00022 0.00029 3.9 0.000 0.000 0.000 +2456358.5 0.32929 3.45716 -34801436.0 0.00022 0.00029 3.3 0.000 0.000 0.000 +2456359.5 0.34217 3.46453 -34803091.9 0.00022 0.00029 3.0 0.000 0.000 0.000 +2456360.5 0.35509 3.47393 -34804846.8 0.00015 0.00024 3.4 0.000 0.000 0.000 +2456361.5 0.36618 3.48552 -34806717.5 0.00015 0.00024 4.0 0.000 0.000 0.000 +2456362.5 0.37646 3.49998 -34808619.3 0.00015 0.00027 3.3 0.000 0.000 0.000 +2456363.5 0.38788 3.51912 -34810494.9 0.00010 0.00017 5.8 0.000 0.000 0.000 +2456364.5 0.39816 3.54101 -34812337.6 0.00024 0.00026 6.1 0.000 0.000 0.000 +2456365.5 0.40502 3.55993 -34814088.9 0.00024 0.00025 5.6 0.000 0.000 0.000 +2456366.5 0.40851 3.57416 -34815694.7 0.00025 0.00025 5.7 0.000 0.000 0.000 +2456367.5 0.40906 3.58638 -34817165.6 0.00024 0.00026 5.2 0.000 0.000 0.000 +2456368.5 0.41023 3.59591 -34818537.8 0.00025 0.00028 7.1 0.000 0.000 0.000 +2456369.5 0.41592 3.60271 -34819799.4 0.00025 0.00028 6.6 0.000 0.000 0.000 +2456370.5 0.42455 3.60737 -34820994.7 0.00011 0.00022 6.8 0.000 0.000 0.000 +2456371.5 0.43573 3.61315 -34822134.7 0.00016 0.00027 4.4 0.000 0.000 0.000 +2456372.5 0.44592 3.62193 -34823314.3 0.00016 0.00027 4.5 0.000 0.000 0.000 +2456373.5 0.45170 3.63260 -34824524.8 0.00017 0.00027 4.7 0.000 0.000 0.000 +2456374.5 0.45671 3.64435 -34825844.0 0.00016 0.00020 4.0 0.000 0.000 0.000 +2456375.5 0.46525 3.65604 -34827338.6 0.00021 0.00026 3.3 0.000 0.000 0.000 +2456376.5 0.47465 3.66922 -34828985.3 0.00023 0.00029 4.2 0.000 0.000 0.000 +2456377.5 0.48048 3.68204 -34830769.1 0.00019 0.00025 4.8 0.000 0.000 0.000 +2456378.5 0.48615 3.69506 -34832674.0 0.00018 0.00024 4.9 0.000 0.000 0.000 +2456379.5 0.49527 3.70894 -34834650.1 0.00018 0.00023 4.7 0.000 0.000 0.000 +2456380.5 0.50416 3.72124 -34836584.0 0.00018 0.00023 4.5 0.000 0.000 0.000 +2456381.5 0.51039 3.73315 -34838440.8 0.00012 0.00015 6.0 0.000 0.000 0.000 +2456382.5 0.51363 3.74432 -34840175.1 0.00010 0.00010 10.5 0.000 0.000 0.000 +2456383.5 0.51196 3.75328 -34841812.6 0.00025 0.00017 4.4 0.000 0.000 0.000 +2456384.5 0.50887 3.76081 -34843386.9 0.00025 0.00017 4.3 0.000 0.000 0.000 +2456385.5 0.50945 3.76755 -34844971.5 0.00030 0.00025 3.4 0.000 0.000 0.000 +2456386.5 0.51493 3.77429 -34846575.5 0.00029 0.00025 3.4 0.000 0.000 0.000 +2456387.5 0.52232 3.78127 -34848259.0 0.00029 0.00025 3.4 0.000 0.000 0.000 +2456388.5 0.52805 3.78790 -34850088.6 0.00029 0.00025 3.5 0.000 0.000 0.000 +2456389.5 0.53122 3.79372 -34851978.0 0.00034 0.00031 2.1 0.000 0.000 0.000 +2456390.5 0.53517 3.80115 -34853853.6 0.00035 0.00031 2.0 0.000 0.000 0.000 +2456391.5 0.54089 3.81201 -34855698.5 0.00032 0.00026 2.0 0.000 0.000 0.000 +2456392.5 0.54928 3.82432 -34857451.4 0.00033 0.00028 2.1 0.000 0.000 0.000 +2456393.5 0.55431 3.83481 -34859056.2 0.00033 0.00028 2.1 0.000 0.000 0.000 +2456394.5 0.55481 3.84307 -34860492.3 0.00033 0.00028 2.0 0.000 0.000 0.000 +2456395.5 0.55440 3.85085 -34861785.9 0.00016 0.00014 2.9 0.000 0.000 0.000 +2456396.5 0.55457 3.85692 -34862968.5 0.00014 0.00015 3.1 0.000 0.000 0.000 +2456397.5 0.55584 3.86050 -34864064.8 0.00025 0.00030 2.8 0.000 0.000 0.000 +2456398.5 0.55901 3.86460 -34865166.1 0.00024 0.00029 4.1 0.000 0.000 0.000 +2456399.5 0.56487 3.86959 -34866315.4 0.00024 0.00030 3.5 0.000 0.000 0.000 +2456400.5 0.57508 3.87621 -34867476.4 0.00025 0.00030 3.4 0.000 0.000 0.000 +2456401.5 0.58597 3.88721 -34868714.1 0.00024 0.00030 3.5 0.000 0.000 0.000 +2456402.5 0.59366 3.89952 -34870113.7 0.00024 0.00029 3.7 0.000 0.000 0.000 +2456403.5 0.60037 3.90976 -34871656.1 0.00027 0.00022 4.6 0.000 0.000 0.000 +2456404.5 0.60985 3.91967 -34873289.2 0.00027 0.00022 4.4 0.000 0.000 0.000 +2456405.5 0.61963 3.92814 -34875038.3 0.00027 0.00020 5.3 0.000 0.000 0.000 +2456406.5 0.62959 3.93402 -34876863.3 0.00032 0.00039 6.7 0.000 0.000 0.000 +2456407.5 0.63866 3.93899 -34878678.4 0.00032 0.00039 6.7 0.000 0.000 0.000 +2456408.5 0.64785 3.94271 -34880429.3 0.00032 0.00039 6.5 0.000 0.000 0.000 +2456409.5 0.65607 3.94787 -34882046.5 0.00021 0.00035 11.8 0.000 0.000 0.000 +2456410.5 0.66129 3.95245 -34883504.2 0.00026 0.00036 8.3 0.000 0.000 0.000 +2456411.5 0.66886 3.95573 -34884872.8 0.00027 0.00037 8.3 0.000 0.000 0.000 +2456412.5 0.67887 3.95963 -34886230.3 0.00020 0.00017 5.4 0.000 0.000 0.000 +2456413.5 0.69076 3.96265 -34887628.6 0.00022 0.00020 5.0 0.000 0.000 0.000 +2456414.5 0.70552 3.96884 -34889105.0 0.00022 0.00020 5.1 0.000 0.000 0.000 +2456415.5 0.72190 3.97648 -34890703.6 0.00022 0.00020 5.1 0.000 0.000 0.000 +2456416.5 0.73879 3.98183 -34892355.4 0.00017 0.00017 5.3 0.000 0.000 0.000 +2456417.5 0.75379 3.98721 -34894059.9 0.00017 0.00017 5.5 0.000 0.000 0.000 +2456418.5 0.76680 3.99211 -34895723.3 0.00025 0.00018 5.1 0.000 0.000 0.000 +2456419.5 0.77698 3.99530 -34897326.1 0.00024 0.00015 5.9 0.000 0.000 0.000 +2456420.5 0.78783 3.99749 -34898869.0 0.00030 0.00016 5.2 0.000 0.000 0.000 +2456421.5 0.80121 4.00169 -34900248.1 0.00030 0.00017 5.4 0.000 0.000 0.000 +2456422.5 0.81817 4.00517 -34901440.9 0.00030 0.00017 5.5 0.000 0.000 0.000 +2456423.5 0.84119 4.00898 -34902537.2 0.00029 0.00017 4.9 0.000 0.000 0.000 +2456424.5 0.86376 4.01464 -34903532.7 0.00028 0.00022 4.7 0.000 0.000 0.000 +2456425.5 0.88204 4.02231 -34904444.1 0.00028 0.00026 6.1 0.000 0.000 0.000 +2456426.5 0.89524 4.03228 -34905332.3 0.00022 0.00025 6.4 0.000 0.000 0.000 +2456427.5 0.90608 4.04033 -34906268.2 0.00023 0.00024 5.2 0.000 0.000 0.000 +2456428.5 0.91152 4.04565 -34907272.9 0.00023 0.00024 5.1 0.000 0.000 0.000 +2456429.5 0.91588 4.04782 -34908397.0 0.00023 0.00024 5.1 0.000 0.000 0.000 +2456430.5 0.92292 4.04894 -34909648.0 0.00014 0.00018 5.6 0.000 0.000 0.000 +2456431.5 0.93319 4.04868 -34911042.9 0.00014 0.00013 3.8 0.000 0.000 0.000 +2456432.5 0.94833 4.04874 -34912527.7 0.00019 0.00028 3.8 0.000 0.000 0.000 +2456433.5 0.96596 4.05160 -34914051.5 0.00019 0.00028 7.8 0.000 0.000 0.000 +2456434.5 0.98082 4.05793 -34915545.6 0.00023 0.00031 6.1 0.000 0.000 0.000 +2456435.5 0.99418 4.06620 -34916954.4 0.00023 0.00031 5.9 0.000 0.000 0.000 +2456436.5 1.00614 4.07115 -34918261.4 0.00022 0.00031 5.9 0.000 0.000 0.000 +2456437.5 1.01498 4.07217 -34919472.1 0.00022 0.00031 5.9 0.000 0.000 0.000 +2456438.5 1.02246 4.07235 -34920547.4 0.00017 0.00018 8.6 0.000 0.000 0.000 +2456439.5 1.02855 4.07259 -34921516.5 0.00040 0.00033 8.2 0.000 0.000 0.000 +2456440.5 1.03481 4.07207 -34922431.6 0.00038 0.00030 9.6 0.000 0.000 0.000 +2456441.5 1.04079 4.07180 -34923325.1 0.00041 0.00038 10.7 0.000 0.000 0.000 +2456442.5 1.04898 4.07114 -34924245.9 0.00041 0.00038 11.2 0.000 0.000 0.000 +2456443.5 1.06324 4.06899 -34925188.8 0.00041 0.00038 12.0 0.000 0.000 0.000 +2456444.5 1.08275 4.06677 -34926018.4 0.00041 0.00038 13.5 0.000 0.000 0.000 +2456445.5 1.10191 4.06516 -34926785.8 0.00020 0.00032 11.8 0.000 0.000 0.000 +2456446.5 1.11833 4.06371 -34927473.9 0.00020 0.00033 11.7 0.000 0.000 0.000 +2456447.5 1.13219 4.05982 -34928081.2 0.00013 0.00023 12.7 0.000 0.000 0.000 +2456448.5 1.14136 4.05410 -34928558.1 0.00018 0.00018 9.0 0.000 0.000 0.000 +2456449.5 1.14588 4.04639 -34928928.0 0.00018 0.00017 8.5 0.000 0.000 0.000 +2456450.5 1.15022 4.03796 -34929206.2 0.00019 0.00017 5.4 0.000 0.000 0.000 +2456451.5 1.15613 4.02936 -34929393.0 0.00019 0.00015 6.0 0.000 0.000 0.000 +2456452.5 1.16332 4.02097 -34929485.3 0.00021 0.00020 4.9 0.000 0.000 0.000 +2456453.5 1.17296 4.01422 -34929576.6 0.00021 0.00022 4.2 0.000 0.000 0.000 +2456454.5 1.18234 4.01054 -34929758.0 0.00016 0.00019 5.7 0.000 0.000 0.000 +2456455.5 1.19222 4.00625 -34930002.3 0.00020 0.00024 5.0 0.000 0.000 0.000 +2456456.5 1.20694 4.00053 -34930343.9 0.00020 0.00024 5.1 0.000 0.000 0.000 +2456457.5 1.22347 3.99510 -34930842.9 0.00019 0.00024 5.7 0.000 0.000 0.000 +2456458.5 1.23937 3.98951 -34931465.1 0.00019 0.00019 8.9 0.000 0.000 0.000 +2456459.5 1.25638 3.98571 -34932193.6 0.00024 0.00024 7.3 0.000 0.000 0.000 +2456460.5 1.27386 3.98244 -34932993.7 0.00024 0.00028 7.5 0.000 0.000 0.000 +2456461.5 1.29275 3.97902 -34933868.7 0.00022 0.00025 7.9 0.000 0.000 0.000 +2456462.5 1.31107 3.97875 -34934705.4 0.00023 0.00026 5.1 0.000 0.000 0.000 +2456463.5 1.32641 3.97693 -34935506.4 0.00023 0.00026 4.6 0.000 0.000 0.000 +2456464.5 1.34090 3.97090 -34936229.5 0.00021 0.00026 4.2 0.000 0.000 0.000 +2456465.5 1.35310 3.96482 -34936822.4 0.00016 0.00020 4.5 0.000 0.000 0.000 +2456466.5 1.36061 3.95998 -34937375.8 0.00021 0.00020 4.1 0.000 0.000 0.000 +2456467.5 1.36441 3.95586 -34937951.4 0.00021 0.00019 4.2 0.000 0.000 0.000 +2456468.5 1.36927 3.95013 -34938621.5 0.00021 0.00020 5.2 0.000 0.000 0.000 +2456469.5 1.37511 3.94382 -34939359.5 0.00022 0.00023 3.8 0.000 0.000 0.000 +2456470.5 1.37974 3.93748 -34940157.5 0.00024 0.00023 3.8 0.000 0.000 0.000 +2456471.5 1.38779 3.92878 -34940944.9 0.00023 0.00022 3.3 0.000 0.000 0.000 +2456472.5 1.40140 3.92044 -34941662.3 0.00020 0.00018 3.3 0.000 0.000 0.000 +2456473.5 1.41467 3.91448 -34942241.7 0.00024 0.00020 3.8 0.000 0.000 0.000 +2456474.5 1.42615 3.90829 -34942640.1 0.00024 0.00019 3.6 0.000 0.000 0.000 +2456475.5 1.44064 3.90162 -34942831.5 0.00033 0.00022 5.0 0.000 0.000 0.000 +2456476.5 1.45595 3.89551 -34942847.6 0.00032 0.00022 5.1 0.000 0.000 0.000 +2456477.5 1.46702 3.88754 -34942693.9 0.00033 0.00022 5.1 0.000 0.000 0.000 +2456478.5 1.47679 3.87563 -34942414.1 0.00032 0.00023 5.2 0.000 0.000 0.000 +2456479.5 1.48949 3.86209 -34942079.9 0.00028 0.00021 7.8 0.000 0.000 0.000 +2456480.5 1.50301 3.84894 -34941729.1 0.00027 0.00023 6.0 0.000 0.000 0.000 +2456481.5 1.51589 3.83576 -34941425.5 0.00014 0.00020 4.4 0.000 0.000 0.000 +2456482.5 1.52976 3.82260 -34941231.0 0.00013 0.00022 4.2 0.000 0.000 0.000 +2456483.5 1.54537 3.81205 -34941164.9 0.00019 0.00023 4.3 0.000 0.000 0.000 +2456484.5 1.55946 3.80778 -34941244.4 0.00022 0.00023 4.1 0.000 0.000 0.000 +2456485.5 1.56928 3.80589 -34941470.9 0.00023 0.00024 4.1 0.000 0.000 0.000 +2456486.5 1.57998 3.80114 -34941784.3 0.00022 0.00022 9.6 0.000 0.000 0.000 +2456487.5 1.59047 3.79378 -34942165.4 0.00021 0.00019 11.7 0.000 0.000 0.000 +2456488.5 1.59919 3.78293 -34942584.0 0.00027 0.00021 7.1 0.000 0.000 0.000 +2456489.5 1.60868 3.77199 -34943029.8 0.00023 0.00021 7.7 0.000 0.000 0.000 +2456490.5 1.61798 3.76267 -34943463.5 0.00026 0.00032 7.5 0.000 0.000 0.000 +2456491.5 1.62482 3.75467 -34943818.7 0.00027 0.00031 7.5 0.000 0.000 0.000 +2456492.5 1.62988 3.74718 -34944128.3 0.00027 0.00031 7.4 0.000 0.000 0.000 +2456493.5 1.63796 3.73924 -34944363.4 0.00029 0.00030 7.3 0.000 0.000 0.000 +2456494.5 1.64492 3.73085 -34944582.8 0.00023 0.00035 7.3 0.000 0.000 0.000 +2456495.5 1.64790 3.71847 -34944843.3 0.00024 0.00035 7.1 0.000 0.000 0.000 +2456496.5 1.65287 3.70372 -34945217.6 0.00026 0.00028 7.2 0.000 0.000 0.000 +2456497.5 1.65937 3.69058 -34945722.2 0.00026 0.00030 6.4 0.000 0.000 0.000 +2456498.5 1.66329 3.67915 -34946341.4 0.00027 0.00029 6.5 0.000 0.000 0.000 +2456499.5 1.66792 3.66715 -34946996.2 0.00025 0.00029 6.2 0.000 0.000 0.000 +2456500.5 1.67679 3.65595 -34947641.8 0.00025 0.00020 7.6 0.000 0.000 0.000 +2456501.5 1.68718 3.64774 -34948178.9 0.00025 0.00021 7.6 0.000 0.000 0.000 +2456502.5 1.69696 3.63997 -34948604.4 0.00019 0.00018 7.6 0.000 0.000 0.000 +2456503.5 1.70532 3.62959 -34948901.7 0.00014 0.00016 14.8 0.000 0.000 0.000 +2456504.5 1.71181 3.61795 -34949059.5 0.00020 0.00020 5.9 0.000 0.000 0.000 +2456505.5 1.71505 3.60839 -34949139.1 0.00022 0.00019 5.6 0.000 0.000 0.000 +2456506.5 1.71501 3.59923 -34949136.3 0.00022 0.00018 4.0 0.000 0.000 0.000 +2456507.5 1.71755 3.58798 -34949077.7 0.00022 0.00016 4.1 0.000 0.000 0.000 +2456508.5 1.72154 3.57542 -34949043.9 0.00024 0.00021 4.0 0.000 0.000 0.000 +2456509.5 1.72377 3.56324 -34949073.2 0.00024 0.00023 3.9 0.000 0.000 0.000 +2456510.5 1.72502 3.55281 -34949218.0 0.00019 0.00019 5.3 0.000 0.000 0.000 +2456511.5 1.72801 3.54282 -34949440.5 0.00018 0.00021 5.0 0.000 0.000 0.000 +2456512.5 1.73350 3.53452 -34949759.0 0.00017 0.00023 5.0 0.000 0.000 0.000 +2456513.5 1.73687 3.52890 -34950167.2 0.00016 0.00024 4.9 0.000 0.000 0.000 +2456514.5 1.73869 3.52144 -34950667.9 0.00012 0.00022 7.3 0.000 0.000 0.000 +2456515.5 1.73940 3.51284 -34951227.7 0.00013 0.00021 6.2 0.000 0.000 0.000 +2456516.5 1.73754 3.50215 -34951755.2 0.00014 0.00022 4.6 0.000 0.000 0.000 +2456517.5 1.73631 3.48978 -34952208.0 0.00013 0.00020 4.7 0.000 0.000 0.000 +2456518.5 1.73671 3.47771 -34952601.8 0.00014 0.00018 5.0 0.000 0.000 0.000 +2456519.5 1.73718 3.46451 -34952942.0 0.00013 0.00016 5.1 0.000 0.000 0.000 +2456520.5 1.73599 3.45171 -34953247.3 0.00013 0.00014 5.0 0.000 0.000 0.000 +2456521.5 1.73379 3.43967 -34953583.0 0.00012 0.00012 4.9 0.000 0.000 0.000 +2456522.5 1.73241 3.42917 -34954027.6 0.00012 0.00017 8.1 0.000 0.000 0.000 +2456523.5 1.73179 3.41904 -34954610.9 0.00010 0.00017 8.1 0.000 0.000 0.000 +2456524.5 1.72983 3.40757 -34955326.8 0.00018 0.00018 7.4 0.000 0.000 0.000 +2456525.5 1.72421 3.39397 -34956172.0 0.00025 0.00018 5.8 0.000 0.000 0.000 +2456526.5 1.71613 3.37905 -34957052.2 0.00025 0.00017 5.8 0.000 0.000 0.000 +2456527.5 1.70620 3.36454 -34957914.7 0.00025 0.00017 5.9 0.000 0.000 0.000 +2456528.5 1.69748 3.34995 -34958716.6 0.00025 0.00011 6.0 0.000 0.000 0.000 +2456529.5 1.69190 3.33608 -34959408.1 0.00026 0.00017 6.1 0.000 0.000 0.000 +2456530.5 1.68830 3.32232 -34960002.9 0.00022 0.00016 6.5 0.000 0.000 0.000 +2456531.5 1.68518 3.30775 -34960470.5 0.00013 0.00015 9.8 0.000 0.000 0.000 +2456532.5 1.68359 3.29453 -34960807.1 0.00018 0.00017 3.7 0.000 0.000 0.000 +2456533.5 1.68160 3.28286 -34961086.6 0.00021 0.00017 3.5 0.000 0.000 0.000 +2456534.5 1.67591 3.27116 -34961317.1 0.00021 0.00018 3.3 0.000 0.000 0.000 +2456535.5 1.66596 3.25715 -34961543.7 0.00018 0.00013 3.2 0.000 0.000 0.000 +2456536.5 1.65838 3.24143 -34961797.0 0.00020 0.00013 3.0 0.000 0.000 0.000 +2456537.5 1.65545 3.22703 -34962150.1 0.00023 0.00018 3.8 0.000 0.000 0.000 +2456538.5 1.65273 3.21471 -34962614.0 0.00020 0.00016 7.0 0.000 0.000 0.000 +2456539.5 1.64788 3.20484 -34963205.9 0.00019 0.00021 5.0 0.000 0.000 0.000 +2456540.5 1.64384 3.19510 -34963938.9 0.00019 0.00021 5.0 0.000 0.000 0.000 +2456541.5 1.64238 3.18393 -34964817.2 0.00019 0.00021 5.0 0.000 0.000 0.000 +2456542.5 1.63909 3.17383 -34965771.9 0.00018 0.00021 4.6 0.000 0.000 0.000 +2456543.5 1.63472 3.16413 -34966740.5 0.00018 0.00022 3.2 0.000 0.000 0.000 +2456544.5 1.62900 3.15354 -34967644.1 0.00018 0.00021 3.2 0.000 0.000 0.000 +2456545.5 1.62042 3.14159 -34968462.0 0.00026 0.00030 5.7 0.000 0.000 0.000 +2456546.5 1.61058 3.12835 -34969217.3 0.00028 0.00034 3.9 0.000 0.000 0.000 +2456547.5 1.59901 3.11451 -34969892.8 0.00029 0.00034 3.8 0.000 0.000 0.000 +2456548.5 1.58703 3.09974 -34970522.6 0.00029 0.00034 3.8 0.000 0.000 0.000 +2456549.5 1.57776 3.08438 -34971195.6 0.00030 0.00033 3.8 0.000 0.000 0.000 +2456550.5 1.57329 3.07003 -34971981.8 0.00031 0.00033 4.0 0.000 0.000 0.000 +2456551.5 1.57067 3.06007 -34972922.7 0.00034 0.00033 4.4 0.000 0.000 0.000 +2456552.5 1.56471 3.05575 -34974038.1 0.00032 0.00030 8.6 0.000 0.000 0.000 +2456553.5 1.55314 3.05342 -34975326.1 0.00039 0.00031 4.2 0.000 0.000 0.000 +2456554.5 1.53960 3.04804 -34976695.3 0.00039 0.00031 4.3 0.000 0.000 0.000 +2456555.5 1.52777 3.04007 -34978052.9 0.00037 0.00030 4.4 0.000 0.000 0.000 +2456556.5 1.51368 3.03222 -34979265.4 0.00037 0.00030 4.4 0.000 0.000 0.000 +2456557.5 1.49226 3.02400 -34980348.0 0.00029 0.00017 3.7 0.000 0.000 0.000 +2456558.5 1.46743 3.01445 -34981296.0 0.00031 0.00021 2.8 0.000 0.000 0.000 +2456559.5 1.44864 3.00416 -34982174.3 0.00026 0.00021 4.2 0.000 0.000 0.000 +2456560.5 1.43488 2.99624 -34983026.1 0.00027 0.00024 3.1 0.000 0.000 0.000 +2456561.5 1.42087 2.98837 -34983815.3 0.00028 0.00025 2.8 0.000 0.000 0.000 +2456562.5 1.40846 2.97999 -34984564.3 0.00027 0.00027 3.0 0.000 0.000 0.000 +2456563.5 1.39464 2.97257 -34985266.6 0.00026 0.00027 3.2 0.000 0.000 0.000 +2456564.5 1.37638 2.96276 -34985992.4 0.00031 0.00025 4.9 0.000 0.000 0.000 +2456565.5 1.35436 2.95202 -34986815.9 0.00027 0.00024 5.2 0.000 0.000 0.000 +2456566.5 1.33055 2.94119 -34987740.0 0.00029 0.00031 11.4 0.000 0.000 0.000 +2456567.5 1.31043 2.92972 -34988790.6 0.00031 0.00030 8.0 0.000 0.000 0.000 +2456568.5 1.29517 2.92022 -34989976.4 0.00032 0.00029 8.4 0.000 0.000 0.000 +2456569.5 1.28530 2.91079 -34991197.9 0.00032 0.00028 8.7 0.000 0.000 0.000 +2456570.5 1.27862 2.90187 -34992489.2 0.00027 0.00029 9.0 0.000 0.000 0.000 +2456571.5 1.26660 2.89609 -34993786.8 0.00031 0.00038 8.8 0.000 0.000 0.000 +2456572.5 1.24836 2.89078 -34995050.7 0.00028 0.00031 8.6 0.000 0.000 0.000 +2456573.5 1.23146 2.88195 -34996251.4 0.00025 0.00030 12.1 0.000 0.000 0.000 +2456574.5 1.21828 2.87338 -34997415.7 0.00025 0.00031 7.4 0.000 0.000 0.000 +2456575.5 1.20440 2.86752 -34998532.0 0.00025 0.00031 7.2 0.000 0.000 0.000 +2456576.5 1.18669 2.86078 -34999616.6 0.00022 0.00029 6.8 0.000 0.000 0.000 +2456577.5 1.16767 2.85325 -35000769.5 0.00025 0.00025 5.1 0.000 0.000 0.000 +2456578.5 1.15106 2.84848 -35001957.2 0.00024 0.00026 5.4 0.000 0.000 0.000 +2456579.5 1.13827 2.84529 -35003277.0 0.00026 0.00035 4.9 0.000 0.000 0.000 +2456580.5 1.12805 2.84100 -35004718.7 0.00023 0.00034 11.4 0.000 0.000 0.000 +2456581.5 1.11670 2.83811 -35006234.3 0.00025 0.00037 7.2 0.000 0.000 0.000 +2456582.5 1.10183 2.83632 -35007748.1 0.00025 0.00037 7.2 0.000 0.000 0.000 +2456583.5 1.08269 2.83419 -35009240.1 0.00018 0.00031 7.8 0.000 0.000 0.000 +2456584.5 1.05958 2.83137 -35010595.6 0.00018 0.00033 8.4 0.000 0.000 0.000 +2456585.5 1.03713 2.82743 -35011768.7 0.00027 0.00026 7.2 0.000 0.000 0.000 +2456586.5 1.01718 2.82524 -35012765.6 0.00035 0.00027 7.3 0.000 0.000 0.000 +2456587.5 0.99929 2.82350 -35013631.3 0.00034 0.00022 8.2 0.000 0.000 0.000 +2456588.5 0.98453 2.82307 -35014420.1 0.00035 0.00025 7.0 0.000 0.000 0.000 +2456589.5 0.96857 2.82523 -35015178.3 0.00035 0.00025 6.9 0.000 0.000 0.000 +2456590.5 0.95020 2.82658 -35016025.3 0.00035 0.00023 5.7 0.000 0.000 0.000 +2456591.5 0.93430 2.82523 -35017009.1 0.00028 0.00019 7.0 0.000 0.000 0.000 +2456592.5 0.92393 2.82455 -35018063.9 0.00023 0.00021 5.1 0.000 0.000 0.000 +2456593.5 0.91793 2.82945 -35019252.8 0.00023 0.00021 5.2 0.000 0.000 0.000 +2456594.5 0.91158 2.83663 -35020606.3 0.00020 0.00019 4.7 0.000 0.000 0.000 +2456595.5 0.90425 2.84097 -35022057.0 0.00021 0.00020 5.1 0.000 0.000 0.000 +2456596.5 0.89453 2.84238 -35023586.1 0.00021 0.00020 5.0 0.000 0.000 0.000 +2456597.5 0.88086 2.84260 -35025106.9 0.00022 0.00020 5.1 0.000 0.000 0.000 +2456598.5 0.86748 2.84430 -35026524.6 0.00019 0.00018 6.3 0.000 0.000 0.000 +2456599.5 0.85514 2.84730 -35027884.1 0.00020 0.00023 6.0 0.000 0.000 0.000 +2456600.5 0.84360 2.85007 -35029209.3 0.00019 0.00029 6.6 0.000 0.000 0.000 +2456601.5 0.83098 2.85453 -35030482.1 0.00022 0.00028 5.7 0.000 0.000 0.000 +2456602.5 0.81859 2.85824 -35031726.1 0.00023 0.00030 4.9 0.000 0.000 0.000 +2456603.5 0.81020 2.86201 -35032891.2 0.00023 0.00031 4.6 0.000 0.000 0.000 +2456604.5 0.79780 2.86657 -35034032.8 0.00022 0.00029 4.5 0.000 0.000 0.000 +2456605.5 0.77907 2.86634 -35035196.7 0.00022 0.00026 4.4 0.000 0.000 0.000 +2456606.5 0.76209 2.86201 -35036445.0 0.00023 0.00020 4.4 0.000 0.000 0.000 +2456607.5 0.74790 2.85764 -35037792.4 0.00021 0.00029 4.8 0.000 0.000 0.000 +2456608.5 0.73698 2.85283 -35039229.1 0.00020 0.00027 5.6 0.000 0.000 0.000 +2456609.5 0.73025 2.84979 -35040723.3 0.00022 0.00028 4.7 0.000 0.000 0.000 +2456610.5 0.72492 2.84983 -35042187.7 0.00021 0.00028 4.8 0.000 0.000 0.000 +2456611.5 0.71726 2.85175 -35043563.1 0.00020 0.00027 4.7 0.000 0.000 0.000 +2456612.5 0.70235 2.85516 -35044771.8 0.00018 0.00026 4.3 0.000 0.000 0.000 +2456613.5 0.68343 2.86040 -35045868.9 0.00025 0.00017 3.2 0.000 0.000 0.000 +2456614.5 0.66639 2.86826 -35046871.9 0.00023 0.00018 2.6 0.000 0.000 0.000 +2456615.5 0.65127 2.87599 -35047803.7 0.00023 0.00021 2.5 0.000 0.000 0.000 +2456616.5 0.63673 2.88201 -35048690.6 0.00028 0.00030 3.9 0.000 0.000 0.000 +2456617.5 0.62333 2.88762 -35049571.7 0.00028 0.00031 3.9 0.000 0.000 0.000 +2456618.5 0.61405 2.89160 -35050453.1 0.00029 0.00031 3.9 0.000 0.000 0.000 +2456619.5 0.60840 2.89572 -35051415.4 0.00022 0.00030 5.5 0.000 0.000 0.000 +2456620.5 0.60134 2.90169 -35052542.7 0.00023 0.00030 4.6 0.000 0.000 0.000 +2456621.5 0.59473 2.90798 -35053741.7 0.00022 0.00027 4.7 0.000 0.000 0.000 +2456622.5 0.59016 2.91545 -35054999.8 0.00014 0.00017 3.7 0.000 0.000 0.000 +2456623.5 0.58467 2.92222 -35056353.3 0.00025 0.00025 5.3 0.000 0.000 0.000 +2456624.5 0.57855 2.92806 -35057784.7 0.00041 0.00030 7.7 0.000 0.000 0.000 +2456625.5 0.57483 2.93338 -35059229.7 0.00050 0.00039 10.5 0.000 0.000 0.000 +2456626.5 0.57550 2.93757 -35060612.9 0.00050 0.00039 19.0 0.000 0.000 0.000 +2456627.5 0.57846 2.94217 -35061981.2 0.00052 0.00040 8.7 0.000 0.000 0.000 +2456628.5 0.57745 2.94897 -35063276.1 0.00052 0.00041 8.6 0.000 0.000 0.000 +2456629.5 0.57210 2.95634 -35064483.1 0.00048 0.00038 8.8 0.000 0.000 0.000 +2456630.5 0.56957 2.96437 -35065597.4 0.00034 0.00037 6.5 0.000 0.000 0.000 +2456631.5 0.57083 2.97404 -35066748.3 0.00019 0.00030 5.5 0.000 0.000 0.000 +2456632.5 0.57067 2.98734 -35067948.8 0.00017 0.00032 5.4 0.000 0.000 0.000 +2456633.5 0.56954 3.00368 -35069254.9 0.00013 0.00031 5.0 0.000 0.000 0.000 +2456634.5 0.56972 3.01584 -35070643.0 0.00017 0.00033 4.7 0.000 0.000 0.000 +2456635.5 0.57139 3.02590 -35072071.0 0.00018 0.00032 4.0 0.000 0.000 0.000 +2456636.5 0.57048 3.03882 -35073465.3 0.00026 0.00035 6.9 0.000 0.000 0.000 +2456637.5 0.56869 3.05189 -35074759.7 0.00027 0.00032 5.5 0.000 0.000 0.000 +2456638.5 0.56802 3.06280 -35075961.9 0.00029 0.00028 5.5 0.000 0.000 0.000 +2456639.5 0.56472 3.07329 -35077056.1 0.00028 0.00030 5.4 0.000 0.000 0.000 +2456640.5 0.55687 3.08244 -35078041.5 0.00026 0.00029 6.1 0.000 0.000 0.000 +2456641.5 0.54533 3.08664 -35078877.6 0.00027 0.00041 6.0 0.000 0.000 0.000 +2456642.5 0.53178 3.08531 -35079601.0 0.00019 0.00036 4.0 0.000 0.000 0.000 +2456643.5 0.51667 3.08168 -35080240.2 0.00017 0.00036 4.7 0.000 0.000 0.000 +2456644.5 0.49933 3.08062 -35080834.1 0.00017 0.00037 3.2 0.000 0.000 0.000 +2456645.5 0.48318 3.08225 -35081476.9 0.00017 0.00036 3.2 0.000 0.000 0.000 +2456646.5 0.47065 3.08643 -35082195.4 0.00017 0.00037 2.8 0.000 0.000 0.000 +2456647.5 0.46042 3.09146 -35083041.7 0.00015 0.00024 2.3 0.000 0.000 0.000 +2456648.5 0.45135 3.09765 -35084035.6 0.00015 0.00032 1.8 0.000 0.000 0.000 +2456649.5 0.44271 3.10453 -35085159.1 0.00016 0.00031 1.6 0.000 0.000 0.000 +2456650.5 0.43495 3.11271 -35086403.5 0.00013 0.00032 1.7 0.000 0.000 0.000 +2456651.5 0.42656 3.12336 -35087726.8 0.00014 0.00034 1.9 0.000 0.000 0.000 +2456652.5 0.41786 3.13503 -35089099.9 0.00014 0.00033 1.9 0.000 0.000 0.000 +2456653.5 0.41024 3.14835 -35090527.8 0.00015 0.00032 1.9 0.000 0.000 0.000 +2456654.5 0.40464 3.15985 -35091953.8 0.00014 0.00024 2.8 0.000 0.000 0.000 +2456655.5 0.40056 3.16871 -35093349.2 0.00020 0.00032 2.6 0.000 0.000 0.000 +2456656.5 0.39547 3.17652 -35094657.9 0.00019 0.00030 2.6 0.000 0.000 0.000 +2456657.5 0.38966 3.18250 -35095880.4 0.00020 0.00024 3.4 0.000 0.000 0.000 +2456658.5 0.38612 3.18866 -35097038.3 0.00024 0.00027 3.1 0.000 0.000 0.000 +2456659.5 0.38339 3.19612 -35098233.8 0.00024 0.00029 4.0 0.000 0.000 0.000 +2456660.5 0.37748 3.20339 -35099509.0 0.00024 0.00029 4.2 0.000 0.000 0.000 +2456661.5 0.37112 3.20791 -35100833.5 0.00020 0.00020 7.1 0.000 0.000 0.000 +2456662.5 0.36642 3.21218 -35102235.5 0.00027 0.00024 5.8 0.000 0.000 0.000 +2456663.5 0.36079 3.21897 -35103653.5 0.00028 0.00023 5.8 0.000 0.000 0.000 +2456664.5 0.35213 3.22826 -35104989.0 0.00025 0.00021 6.4 0.000 0.000 0.000 +2456665.5 0.34309 3.23899 -35106171.0 0.00026 0.00027 5.4 0.000 0.000 0.000 +2456666.5 0.33865 3.25022 -35107189.6 0.00027 0.00028 5.4 0.000 0.000 0.000 +2456667.5 0.33512 3.26441 -35108090.3 0.00027 0.00029 5.5 0.000 0.000 0.000 +2456668.5 0.32755 3.27838 -35108848.6 0.00022 0.00027 5.8 0.000 0.000 0.000 +2456669.5 0.31580 3.28988 -35109455.5 0.00025 0.00029 5.1 0.000 0.000 0.000 +2456670.5 0.30288 3.29944 -35110027.2 0.00024 0.00029 5.1 0.000 0.000 0.000 +2456671.5 0.29371 3.30738 -35110575.9 0.00022 0.00025 5.8 0.000 0.000 0.000 +2456672.5 0.28505 3.31712 -35111158.1 0.00026 0.00027 3.8 0.000 0.000 0.000 +2456673.5 0.27436 3.32675 -35111814.4 0.00026 0.00026 3.6 0.000 0.000 0.000 +2456674.5 0.26557 3.33745 -35112595.3 0.00024 0.00026 3.9 0.000 0.000 0.000 +2456675.5 0.25809 3.35097 -35113497.7 0.00020 0.00024 3.9 0.000 0.000 0.000 +2456676.5 0.24765 3.36368 -35114549.0 0.00021 0.00021 4.4 0.000 0.000 0.000 +2456677.5 0.23811 3.37410 -35115716.7 0.00031 0.00021 4.0 0.000 0.000 0.000 +2456678.5 0.23681 3.38255 -35116949.4 0.00027 0.00012 5.0 0.000 0.000 0.000 +2456679.5 0.24024 3.39053 -35118229.0 0.00028 0.00026 3.4 0.000 0.000 0.000 +2456680.5 0.24315 3.39933 -35119515.3 0.00028 0.00027 3.2 0.000 0.000 0.000 +2456681.5 0.24443 3.40741 -35120722.7 0.00028 0.00028 3.4 0.000 0.000 0.000 +2456682.5 0.24310 3.41343 -35121832.1 0.00027 0.00028 3.5 0.000 0.000 0.000 +2456683.5 0.24125 3.41855 -35122890.9 0.00014 0.00027 3.9 0.000 0.000 0.000 +2456684.5 0.24190 3.42633 -35123850.0 0.00021 0.00028 3.9 0.000 0.000 0.000 +2456685.5 0.24363 3.43935 -35124794.0 0.00019 0.00019 5.5 0.000 0.000 0.000 +2456686.5 0.24471 3.45513 -35125815.7 0.00023 0.00022 6.2 0.000 0.000 0.000 +2456687.5 0.24496 3.46911 -35126961.5 0.00023 0.00021 6.8 0.000 0.000 0.000 +2456688.5 0.24195 3.47962 -35128263.7 0.00023 0.00022 7.2 0.000 0.000 0.000 +2456689.5 0.23730 3.48793 -35129645.2 0.00023 0.00024 7.3 0.000 0.000 0.000 +2456690.5 0.23512 3.49485 -35131051.9 0.00020 0.00023 6.3 0.000 0.000 0.000 +2456691.5 0.23562 3.50123 -35132449.9 0.00021 0.00024 6.7 0.000 0.000 0.000 +2456692.5 0.23680 3.51046 -35133737.5 0.00016 0.00019 6.4 0.000 0.000 0.000 +2456693.5 0.23876 3.52315 -35134870.1 0.00020 0.00020 4.1 0.000 0.000 0.000 +2456694.5 0.24283 3.53745 -35135775.5 0.00020 0.00019 3.3 0.000 0.000 0.000 +2456695.5 0.24461 3.55272 -35136545.7 0.00019 0.00017 3.2 0.000 0.000 0.000 +2456696.5 0.24434 3.56719 -35137227.3 0.00018 0.00017 3.6 0.000 0.000 0.000 +2456697.5 0.24331 3.58186 -35137817.3 0.00036 0.00020 4.7 0.000 0.000 0.000 +2456698.5 0.24166 3.59827 -35138382.0 0.00036 0.00021 4.5 0.000 0.000 0.000 +2456699.5 0.23945 3.61766 -35139000.5 0.00043 0.00024 5.4 0.000 0.000 0.000 +2456700.5 0.23507 3.63709 -35139669.0 0.00047 0.00026 4.7 0.000 0.000 0.000 +2456701.5 0.22745 3.65412 -35140468.6 0.00047 0.00029 4.8 0.000 0.000 0.000 +2456702.5 0.22063 3.67064 -35141399.1 0.00048 0.00029 5.0 0.000 0.000 0.000 +2456703.5 0.21440 3.68660 -35142448.8 0.00035 0.00025 3.0 0.000 0.000 0.000 +2456704.5 0.20985 3.70405 -35143645.9 0.00039 0.00028 4.9 0.000 0.000 0.000 +2456705.5 0.20419 3.72104 -35144945.2 0.00027 0.00024 6.1 0.000 0.000 0.000 +2456706.5 0.19821 3.73473 -35146308.2 0.00020 0.00022 11.7 0.000 0.000 0.000 +2456707.5 0.19829 3.74807 -35147705.8 0.00021 0.00021 6.4 0.000 0.000 0.000 +2456708.5 0.20087 3.76132 -35149057.9 0.00021 0.00019 6.3 0.000 0.000 0.000 +2456709.5 0.20288 3.77352 -35150343.6 0.00021 0.00019 6.3 0.000 0.000 0.000 +2456710.5 0.20491 3.78564 -35151541.6 0.00014 0.00015 4.9 0.000 0.000 0.000 +2456711.5 0.20624 3.79942 -35152676.4 0.00020 0.00022 5.4 0.000 0.000 0.000 +2456712.5 0.20372 3.81395 -35153818.1 0.00020 0.00022 5.4 0.000 0.000 0.000 +2456713.5 0.19533 3.82707 -35155035.9 0.00017 0.00021 6.7 0.000 0.000 0.000 +2456714.5 0.18777 3.83584 -35156391.9 0.00020 0.00022 5.6 0.000 0.000 0.000 +2456715.5 0.18776 3.84233 -35157929.5 0.00019 0.00022 5.9 0.000 0.000 0.000 +2456716.5 0.19248 3.85263 -35159734.2 0.00019 0.00022 6.2 0.000 0.000 0.000 +2456717.5 0.19806 3.86558 -35161696.8 0.00013 0.00015 6.0 0.000 0.000 0.000 +2456718.5 0.20197 3.87898 -35163689.5 0.00019 0.00019 4.4 0.000 0.000 0.000 +2456719.5 0.20396 3.89387 -35165659.9 0.00019 0.00018 4.4 0.000 0.000 0.000 +2456720.5 0.20448 3.90848 -35167522.2 0.00018 0.00016 4.6 0.000 0.000 0.000 +2456721.5 0.20375 3.92007 -35169219.6 0.00020 0.00017 3.8 0.000 0.000 0.000 +2456722.5 0.20372 3.92981 -35170738.9 0.00021 0.00018 2.9 0.000 0.000 0.000 +2456723.5 0.20274 3.94003 -35172109.4 0.00020 0.00018 2.9 0.000 0.000 0.000 +2456724.5 0.20098 3.95104 -35173344.3 0.00015 0.00013 4.2 0.000 0.000 0.000 +2456725.5 0.19848 3.96107 -35174468.7 0.00014 0.00014 4.3 0.000 0.000 0.000 +2456726.5 0.19506 3.96976 -35175548.0 0.00025 0.00019 4.0 0.000 0.000 0.000 +2456727.5 0.19281 3.97997 -35176624.3 0.00023 0.00017 4.5 0.000 0.000 0.000 +2456728.5 0.19457 3.99121 -35177673.6 0.00026 0.00018 4.4 0.000 0.000 0.000 +2456729.5 0.20295 4.00192 -35178778.8 0.00026 0.00018 4.5 0.000 0.000 0.000 +2456730.5 0.21424 4.01264 -35179977.0 0.00026 0.00019 4.6 0.000 0.000 0.000 +2456731.5 0.22520 4.02429 -35181236.3 0.00027 0.00024 4.7 0.000 0.000 0.000 +2456732.5 0.23592 4.03718 -35182513.0 0.00024 0.00025 5.6 0.000 0.000 0.000 +2456733.5 0.24426 4.04919 -35183786.0 0.00025 0.00030 5.9 0.000 0.000 0.000 +2456734.5 0.24868 4.05600 -35185030.3 0.00023 0.00030 8.5 0.000 0.000 0.000 +2456735.5 0.25358 4.06010 -35186252.8 0.00027 0.00030 7.1 0.000 0.000 0.000 +2456736.5 0.26196 4.06466 -35187441.4 0.00027 0.00029 6.7 0.000 0.000 0.000 +2456737.5 0.27354 4.07186 -35188583.7 0.00027 0.00025 7.0 0.000 0.000 0.000 +2456738.5 0.28322 4.08400 -35189680.6 0.00020 0.00022 7.8 0.000 0.000 0.000 +2456739.5 0.29426 4.09838 -35190819.5 0.00022 0.00017 4.7 0.000 0.000 0.000 +2456740.5 0.30848 4.11275 -35192045.6 0.00022 0.00017 4.5 0.000 0.000 0.000 +2456741.5 0.32246 4.12701 -35193349.0 0.00016 0.00018 5.0 0.000 0.000 0.000 +2456742.5 0.33591 4.14119 -35194788.0 0.00020 0.00022 4.9 0.000 0.000 0.000 +2456743.5 0.35050 4.15192 -35196400.0 0.00020 0.00022 5.0 0.000 0.000 0.000 +2456744.5 0.36745 4.15998 -35198100.1 0.00019 0.00022 4.9 0.000 0.000 0.000 +2456745.5 0.38501 4.16906 -35199876.3 0.00014 0.00021 6.0 0.000 0.000 0.000 +2456746.5 0.40393 4.18073 -35201678.8 0.00018 0.00021 4.2 0.000 0.000 0.000 +2456747.5 0.42196 4.19471 -35203413.9 0.00031 0.00022 3.9 0.000 0.000 0.000 +2456748.5 0.43598 4.20976 -35205003.0 0.00030 0.00017 3.2 0.000 0.000 0.000 +2456749.5 0.44668 4.22516 -35206461.2 0.00031 0.00021 3.3 0.000 0.000 0.000 +2456750.5 0.45468 4.23873 -35207827.0 0.00031 0.00021 3.5 0.000 0.000 0.000 +2456751.5 0.45943 4.24924 -35209077.8 0.00033 0.00021 3.4 0.000 0.000 0.000 +2456752.5 0.46342 4.25733 -35210266.7 0.00032 0.00025 4.6 0.000 0.000 0.000 +2456753.5 0.46811 4.26253 -35211479.0 0.00027 0.00034 5.5 0.000 0.000 0.000 +2456754.5 0.47724 4.26513 -35212679.0 0.00026 0.00034 5.5 0.000 0.000 0.000 +2456755.5 0.49129 4.27200 -35213868.1 0.00024 0.00032 6.5 0.000 0.000 0.000 +2456756.5 0.50699 4.28224 -35215068.4 0.00029 0.00033 5.6 0.000 0.000 0.000 +2456757.5 0.52117 4.29073 -35216344.0 0.00027 0.00035 5.6 0.000 0.000 0.000 +2456758.5 0.53237 4.29839 -35217669.0 0.00026 0.00034 5.9 0.000 0.000 0.000 +2456759.5 0.54174 4.30499 -35219072.4 0.00017 0.00030 6.1 0.000 0.000 0.000 +2456760.5 0.54918 4.30824 -35220489.9 0.00025 0.00031 3.9 0.000 0.000 0.000 +2456761.5 0.55775 4.31214 -35221974.3 0.00027 0.00031 4.7 0.000 0.000 0.000 +2456762.5 0.56645 4.32027 -35223426.4 0.00023 0.00032 4.9 0.000 0.000 0.000 +2456763.5 0.57334 4.32740 -35224722.1 0.00022 0.00030 4.9 0.000 0.000 0.000 +2456764.5 0.58303 4.33364 -35225929.2 0.00022 0.00027 4.6 0.000 0.000 0.000 +2456765.5 0.59513 4.34468 -35227131.2 0.00022 0.00020 4.7 0.000 0.000 0.000 +2456766.5 0.60281 4.35829 -35228324.2 0.00013 0.00018 6.9 0.000 0.000 0.000 +2456767.5 0.61010 4.36947 -35229566.5 0.00010 0.00018 11.1 0.000 0.000 0.000 +2456768.5 0.62224 4.37911 -35230867.3 0.00014 0.00022 4.7 0.000 0.000 0.000 +2456769.5 0.63759 4.38707 -35232296.0 0.00014 0.00020 4.6 0.000 0.000 0.000 +2456770.5 0.65266 4.39360 -35233898.1 0.00015 0.00023 3.5 0.000 0.000 0.000 +2456771.5 0.66874 4.39920 -35235623.3 0.00014 0.00023 3.5 0.000 0.000 0.000 +2456772.5 0.68564 4.40441 -35237477.7 0.00014 0.00025 3.5 0.000 0.000 0.000 +2456773.5 0.70270 4.41055 -35239475.4 0.00016 0.00025 3.7 0.000 0.000 0.000 +2456774.5 0.71769 4.41758 -35241458.2 0.00019 0.00020 5.3 0.000 0.000 0.000 +2456775.5 0.72972 4.42352 -35243320.1 0.00025 0.00021 4.7 0.000 0.000 0.000 +2456776.5 0.74299 4.42650 -35245038.8 0.00024 0.00019 5.7 0.000 0.000 0.000 +2456777.5 0.76090 4.42815 -35246537.0 0.00023 0.00018 6.1 0.000 0.000 0.000 +2456778.5 0.77972 4.43152 -35247843.3 0.00023 0.00016 6.2 0.000 0.000 0.000 +2456779.5 0.79723 4.43576 -35249010.7 0.00022 0.00018 6.2 0.000 0.000 0.000 +2456780.5 0.81697 4.44029 -35250133.2 0.00017 0.00018 3.7 0.000 0.000 0.000 +2456781.5 0.83757 4.44565 -35251232.6 0.00015 0.00017 7.1 0.000 0.000 0.000 +2456782.5 0.85231 4.44870 -35252357.5 0.00018 0.00018 5.3 0.000 0.000 0.000 +2456783.5 0.86191 4.45052 -35253536.7 0.00022 0.00019 4.6 0.000 0.000 0.000 +2456784.5 0.87380 4.45510 -35254785.4 0.00024 0.00020 3.7 0.000 0.000 0.000 +2456785.5 0.88937 4.46179 -35256106.4 0.00024 0.00019 3.0 0.000 0.000 0.000 +2456786.5 0.90360 4.46732 -35257521.4 0.00024 0.00018 2.9 0.000 0.000 0.000 +2456787.5 0.91492 4.46881 -35258952.6 0.00024 0.00017 2.0 0.000 0.000 0.000 +2456788.5 0.93112 4.46737 -35260404.5 0.00025 0.00016 2.0 0.000 0.000 0.000 +2456789.5 0.95398 4.46711 -35261797.1 0.00025 0.00015 2.0 0.000 0.000 0.000 +2456790.5 0.97746 4.47058 -35263121.1 0.00025 0.00015 2.1 0.000 0.000 0.000 +2456791.5 0.99762 4.47561 -35264294.8 0.00026 0.00015 2.1 0.000 0.000 0.000 +2456792.5 1.01331 4.47905 -35265404.6 0.00027 0.00015 2.0 0.000 0.000 0.000 +2456793.5 1.02708 4.48047 -35266432.7 0.00025 0.00015 2.0 0.000 0.000 0.000 +2456794.5 1.03926 4.48068 -35267429.4 0.00023 0.00016 2.2 0.000 0.000 0.000 +2456795.5 1.04868 4.48010 -35268473.8 0.00023 0.00015 3.2 0.000 0.000 0.000 +2456796.5 1.05837 4.47820 -35269612.1 0.00020 0.00015 3.5 0.000 0.000 0.000 +2456797.5 1.07198 4.47636 -35270892.0 0.00018 0.00016 4.2 0.000 0.000 0.000 +2456798.5 1.08982 4.47722 -35272292.5 0.00020 0.00018 3.9 0.000 0.000 0.000 +2456799.5 1.10775 4.48060 -35273769.9 0.00020 0.00018 5.2 0.000 0.000 0.000 +2456800.5 1.12193 4.48251 -35275218.0 0.00018 0.00017 5.6 0.000 0.000 0.000 +2456801.5 1.13604 4.48104 -35276642.0 0.00015 0.00019 5.0 0.000 0.000 0.000 +2456802.5 1.15162 4.47673 -35277920.4 0.00014 0.00018 5.4 0.000 0.000 0.000 +2456803.5 1.16636 4.47041 -35279023.2 0.00020 0.00019 4.7 0.000 0.000 0.000 +2456804.5 1.18083 4.46285 -35279955.0 0.00017 0.00020 5.2 0.000 0.000 0.000 +2456805.5 1.20106 4.45500 -35280710.9 0.00019 0.00027 4.6 0.000 0.000 0.000 +2456806.5 1.22739 4.44912 -35281341.5 0.00019 0.00029 4.7 0.000 0.000 0.000 +2456807.5 1.25401 4.44205 -35281827.3 0.00019 0.00029 4.7 0.000 0.000 0.000 +2456808.5 1.27699 4.43558 -35282232.0 0.00019 0.00030 4.7 0.000 0.000 0.000 +2456809.5 1.29375 4.42887 -35282620.9 0.00023 0.00030 5.6 0.000 0.000 0.000 +2456810.5 1.30616 4.41971 -35283038.8 0.00032 0.00031 6.0 0.000 0.000 0.000 +2456811.5 1.31654 4.40901 -35283485.6 0.00031 0.00025 6.7 0.000 0.000 0.000 +2456812.5 1.32956 4.39786 -35283976.1 0.00033 0.00024 6.2 0.000 0.000 0.000 +2456813.5 1.34448 4.38824 -35284584.0 0.00033 0.00026 6.3 0.000 0.000 0.000 +2456814.5 1.36320 4.37960 -35285218.0 0.00033 0.00027 6.2 0.000 0.000 0.000 +2456815.5 1.38403 4.37349 -35285951.3 0.00026 0.00027 7.5 0.000 0.000 0.000 +2456816.5 1.40281 4.36639 -35286692.1 0.00012 0.00024 6.5 0.000 0.000 0.000 +2456817.5 1.42124 4.35894 -35287393.2 0.00025 0.00027 6.0 0.000 0.000 0.000 +2456818.5 1.43906 4.35288 -35288067.5 0.00023 0.00025 6.4 0.000 0.000 0.000 +2456819.5 1.45674 4.34770 -35288762.3 0.00026 0.00025 5.9 0.000 0.000 0.000 +2456820.5 1.47459 4.34251 -35289395.8 0.00026 0.00023 6.0 0.000 0.000 0.000 +2456821.5 1.49071 4.33546 -35290041.3 0.00026 0.00022 6.1 0.000 0.000 0.000 +2456822.5 1.50716 4.32678 -35290694.4 0.00026 0.00021 6.0 0.000 0.000 0.000 +2456823.5 1.52460 4.31624 -35291433.0 0.00014 0.00018 7.0 0.000 0.000 0.000 +2456824.5 1.54194 4.30697 -35292260.6 0.00027 0.00020 7.4 0.000 0.000 0.000 +2456825.5 1.55873 4.30043 -35293230.2 0.00024 0.00018 9.3 0.000 0.000 0.000 +2456826.5 1.57236 4.29506 -35294370.4 0.00027 0.00020 5.9 0.000 0.000 0.000 +2456827.5 1.58501 4.28908 -35295504.4 0.00026 0.00019 5.7 0.000 0.000 0.000 +2456828.5 1.59814 4.28165 -35296678.6 0.00026 0.00018 5.6 0.000 0.000 0.000 +2456829.5 1.60896 4.27294 -35297746.3 0.00026 0.00018 5.6 0.000 0.000 0.000 +2456830.5 1.61862 4.26269 -35298676.9 0.00022 0.00016 5.7 0.000 0.000 0.000 +2456831.5 1.63206 4.25142 -35299400.1 0.00023 0.00017 5.7 0.000 0.000 0.000 +2456832.5 1.64699 4.23904 -35299990.1 0.00031 0.00017 6.1 0.000 0.000 0.000 +2456833.5 1.65983 4.22646 -35300389.8 0.00035 0.00023 5.0 0.000 0.000 0.000 +2456834.5 1.66782 4.21461 -35300712.7 0.00034 0.00023 5.0 0.000 0.000 0.000 +2456835.5 1.67415 4.20271 -35300869.6 0.00035 0.00023 5.0 0.000 0.000 0.000 +2456836.5 1.68098 4.19101 -35301011.7 0.00033 0.00026 5.0 0.000 0.000 0.000 +2456837.5 1.68855 4.17864 -35301232.0 0.00039 0.00030 4.7 0.000 0.000 0.000 +2456838.5 1.69621 4.16474 -35301518.7 0.00032 0.00030 5.0 0.000 0.000 0.000 +2456839.5 1.70562 4.15027 -35301845.9 0.00032 0.00028 5.7 0.000 0.000 0.000 +2456840.5 1.71854 4.13823 -35302218.0 0.00036 0.00032 6.1 0.000 0.000 0.000 +2456841.5 1.73195 4.12765 -35302686.5 0.00036 0.00032 6.1 0.000 0.000 0.000 +2456842.5 1.74537 4.11770 -35303235.8 0.00034 0.00030 4.6 0.000 0.000 0.000 +2456843.5 1.75509 4.10925 -35303772.0 0.00026 0.00024 5.1 0.000 0.000 0.000 +2456844.5 1.76317 4.09895 -35304274.3 0.00031 0.00026 3.6 0.000 0.000 0.000 +2456845.5 1.76966 4.08778 -35304703.4 0.00026 0.00023 4.0 0.000 0.000 0.000 +2456846.5 1.77574 4.07731 -35305049.8 0.00019 0.00016 2.8 0.000 0.000 0.000 +2456847.5 1.78341 4.06800 -35305352.9 0.00022 0.00017 2.0 0.000 0.000 0.000 +2456848.5 1.79053 4.05887 -35305617.4 0.00022 0.00020 2.2 0.000 0.000 0.000 +2456849.5 1.80003 4.04802 -35305971.1 0.00023 0.00023 2.4 0.000 0.000 0.000 +2456850.5 1.81095 4.03741 -35306370.2 0.00014 0.00020 2.9 0.000 0.000 0.000 +2456851.5 1.81980 4.02761 -35306912.3 0.00024 0.00023 4.7 0.000 0.000 0.000 +2456852.5 1.82693 4.01770 -35307626.2 0.00024 0.00023 4.7 0.000 0.000 0.000 +2456853.5 1.83120 4.00678 -35308508.2 0.00022 0.00024 6.3 0.000 0.000 0.000 +2456854.5 1.83590 3.99294 -35309416.3 0.00025 0.00025 5.3 0.000 0.000 0.000 +2456855.5 1.83992 3.97870 -35310345.0 0.00025 0.00023 5.7 0.000 0.000 0.000 +2456856.5 1.84415 3.96256 -35311169.7 0.00025 0.00023 5.7 0.000 0.000 0.000 +2456857.5 1.85319 3.94614 -35311875.6 0.00015 0.00021 5.3 0.000 0.000 0.000 +2456858.5 1.86477 3.93164 -35312422.4 0.00018 0.00020 5.3 0.000 0.000 0.000 +2456859.5 1.87720 3.91957 -35312771.3 0.00018 0.00018 5.4 0.000 0.000 0.000 +2456860.5 1.88727 3.91037 -35312985.2 0.00012 0.00013 11.7 0.000 0.000 0.000 +2456861.5 1.89296 3.90119 -35313089.7 0.00017 0.00023 4.1 0.000 0.000 0.000 +2456862.5 1.89623 3.89235 -35313107.4 0.00016 0.00023 3.9 0.000 0.000 0.000 +2456863.5 1.89973 3.88194 -35313146.5 0.00016 0.00024 4.3 0.000 0.000 0.000 +2456864.5 1.90359 3.87074 -35313176.7 0.00013 0.00025 5.2 0.000 0.000 0.000 +2456865.5 1.90961 3.85993 -35313268.0 0.00015 0.00029 3.4 0.000 0.000 0.000 +2456866.5 1.91956 3.84983 -35313426.4 0.00015 0.00029 3.4 0.000 0.000 0.000 +2456867.5 1.93124 3.83995 -35313654.3 0.00010 0.00022 3.7 0.000 0.000 0.000 +2456868.5 1.94074 3.82958 -35314028.0 0.00019 0.00022 3.1 0.000 0.000 0.000 +2456869.5 1.94706 3.81719 -35314459.6 0.00019 0.00021 2.8 0.000 0.000 0.000 +2456870.5 1.95422 3.80307 -35314914.7 0.00018 0.00020 2.1 0.000 0.000 0.000 +2456871.5 1.96036 3.79037 -35315316.8 0.00017 0.00014 3.5 0.000 0.000 0.000 +2456872.5 1.96632 3.77677 -35315648.0 0.00018 0.00017 3.2 0.000 0.000 0.000 +2456873.5 1.97539 3.76137 -35315924.4 0.00020 0.00016 3.1 0.000 0.000 0.000 +2456874.5 1.98563 3.74568 -35316111.3 0.00013 0.00014 4.7 0.000 0.000 0.000 +2456875.5 1.99815 3.73237 -35316239.1 0.00023 0.00016 3.4 0.000 0.000 0.000 +2456876.5 2.01112 3.72210 -35316321.0 0.00048 0.00024 7.2 0.000 0.000 0.000 +2456877.5 2.02117 3.71236 -35316406.3 0.00055 0.00036 7.9 0.000 0.000 0.000 +2456878.5 2.03103 3.70151 -35316658.0 0.00055 0.00034 10.5 0.000 0.000 0.000 +2456879.5 2.04231 3.69143 -35317055.4 0.00057 0.00036 8.6 0.000 0.000 0.000 +2456880.5 2.05426 3.68336 -35317656.7 0.00056 0.00036 8.6 0.000 0.000 0.000 +2456881.5 2.06543 3.67620 -35318368.0 0.00053 0.00035 10.5 0.000 0.000 0.000 +2456882.5 2.07322 3.66907 -35319187.0 0.00033 0.00032 4.9 0.000 0.000 0.000 +2456883.5 2.07963 3.66045 -35320040.6 0.00027 0.00024 5.7 0.000 0.000 0.000 +2456884.5 2.08794 3.64895 -35320799.0 0.00032 0.00029 5.3 0.000 0.000 0.000 +2456885.5 2.09627 3.63538 -35321428.6 0.00028 0.00026 5.9 0.000 0.000 0.000 +2456886.5 2.10162 3.62155 -35321928.1 0.00035 0.00030 3.2 0.000 0.000 0.000 +2456887.5 2.10303 3.60780 -35322346.5 0.00035 0.00029 3.2 0.000 0.000 0.000 +2456888.5 2.10002 3.59318 -35322663.6 0.00035 0.00027 3.4 0.000 0.000 0.000 +2456889.5 2.09691 3.57782 -35322854.1 0.00031 0.00032 1.8 0.000 0.000 0.000 +2456890.5 2.09573 3.56160 -35323049.5 0.00027 0.00028 2.5 0.000 0.000 0.000 +2456891.5 2.09635 3.54412 -35323215.1 0.00027 0.00028 2.8 0.000 0.000 0.000 +2456892.5 2.09553 3.52570 -35323437.6 0.00016 0.00025 4.3 0.000 0.000 0.000 +2456893.5 2.09499 3.50704 -35323668.6 0.00026 0.00026 3.1 0.000 0.000 0.000 +2456894.5 2.09446 3.48861 -35323899.2 0.00025 0.00026 3.1 0.000 0.000 0.000 +2456895.5 2.09223 3.46983 -35324193.8 0.00022 0.00012 3.8 0.000 0.000 0.000 +2456896.5 2.09076 3.45000 -35324590.4 0.00023 0.00016 2.9 0.000 0.000 0.000 +2456897.5 2.08928 3.42856 -35325072.3 0.00023 0.00016 2.8 0.000 0.000 0.000 +2456898.5 2.09044 3.40931 -35325569.7 0.00023 0.00017 2.8 0.000 0.000 0.000 +2456899.5 2.09381 3.39482 -35326057.3 0.00012 0.00015 5.1 0.000 0.000 0.000 +2456900.5 2.09522 3.38241 -35326586.6 0.00012 0.00015 4.8 0.000 0.000 0.000 +2456901.5 2.09584 3.36877 -35327093.6 0.00021 0.00022 2.4 0.000 0.000 0.000 +2456902.5 2.09587 3.35246 -35327618.7 0.00027 0.00024 3.1 0.000 0.000 0.000 +2456903.5 2.09225 3.33395 -35328138.5 0.00028 0.00028 2.9 0.000 0.000 0.000 +2456904.5 2.08976 3.31548 -35328692.5 0.00028 0.00027 2.9 0.000 0.000 0.000 +2456905.5 2.09051 3.29829 -35329270.7 0.00028 0.00026 2.9 0.000 0.000 0.000 +2456906.5 2.09185 3.28296 -35330044.6 0.00029 0.00027 2.9 0.000 0.000 0.000 +2456907.5 2.09041 3.26943 -35330978.8 0.00038 0.00035 4.1 0.000 0.000 0.000 +2456908.5 2.08557 3.25641 -35332106.8 0.00033 0.00033 3.4 0.000 0.000 0.000 +2456909.5 2.07906 3.24052 -35333385.8 0.00032 0.00031 3.8 0.000 0.000 0.000 +2456910.5 2.07005 3.22137 -35334691.1 0.00036 0.00038 2.4 0.000 0.000 0.000 +2456911.5 2.05758 3.19843 -35335893.9 0.00036 0.00038 2.6 0.000 0.000 0.000 +2456912.5 2.04701 3.17507 -35336933.8 0.00035 0.00038 2.8 0.000 0.000 0.000 +2456913.5 2.03772 3.15453 -35337769.8 0.00018 0.00026 2.5 0.000 0.000 0.000 +2456914.5 2.03268 3.13713 -35338477.0 0.00033 0.00026 2.9 0.000 0.000 0.000 +2456915.5 2.03048 3.12278 -35339095.8 0.00033 0.00025 2.9 0.000 0.000 0.000 +2456916.5 2.02621 3.10898 -35339670.4 0.00030 0.00012 4.6 0.000 0.000 0.000 +2456917.5 2.01940 3.09514 -35340258.8 0.00035 0.00022 4.6 0.000 0.000 0.000 +2456918.5 2.01129 3.08143 -35340930.2 0.00034 0.00021 4.7 0.000 0.000 0.000 +2456919.5 2.00441 3.06705 -35341609.7 0.00034 0.00022 4.5 0.000 0.000 0.000 +2456920.5 1.99661 3.05026 -35342310.8 0.00022 0.00021 9.2 0.000 0.000 0.000 +2456921.5 1.98815 3.03287 -35343060.1 0.00039 0.00024 4.0 0.000 0.000 0.000 +2456922.5 1.98231 3.01477 -35343905.1 0.00053 0.00036 6.0 0.000 0.000 0.000 +2456923.5 1.97587 2.99642 -35344834.0 0.00050 0.00032 6.4 0.000 0.000 0.000 +2456924.5 1.96765 2.97940 -35345702.1 0.00050 0.00032 6.3 0.000 0.000 0.000 +2456925.5 1.96146 2.96498 -35346665.3 0.00050 0.00031 6.3 0.000 0.000 0.000 +2456926.5 1.95460 2.95321 -35347574.0 0.00050 0.00031 6.3 0.000 0.000 0.000 +2456927.5 1.94273 2.94202 -35348366.2 0.00037 0.00029 20.0 0.000 0.000 0.000 +2456928.5 1.93125 2.93119 -35349132.0 0.00028 0.00017 4.6 0.000 0.000 0.000 +2456929.5 1.92094 2.91873 -35349840.4 0.00028 0.00017 4.8 0.000 0.000 0.000 +2456930.5 1.90801 2.90437 -35350559.9 0.00030 0.00018 3.6 0.000 0.000 0.000 +2456931.5 1.89317 2.88871 -35351265.8 0.00030 0.00018 3.6 0.000 0.000 0.000 +2456932.5 1.87912 2.87451 -35352054.4 0.00053 0.00029 4.8 0.000 0.000 0.000 +2456933.5 1.86341 2.86330 -35352913.7 0.00056 0.00031 6.0 0.000 0.000 0.000 +2456934.5 1.84589 2.85154 -35354003.5 0.00049 0.00027 8.0 0.000 0.000 0.000 +2456935.5 1.82852 2.83943 -35355298.9 0.00054 0.00032 7.2 0.000 0.000 0.000 +2456936.5 1.80759 2.82661 -35356741.3 0.00054 0.00032 10.7 0.000 0.000 0.000 +2456937.5 1.78464 2.81142 -35358296.3 0.00055 0.00034 10.9 0.000 0.000 0.000 +2456938.5 1.76419 2.79486 -35359947.9 0.00033 0.00029 6.7 0.000 0.000 0.000 +2456939.5 1.74430 2.78021 -35361467.7 0.00029 0.00027 5.9 0.000 0.000 0.000 +2456940.5 1.72078 2.76909 -35362825.2 0.00029 0.00027 5.9 0.000 0.000 0.000 +2456941.5 1.69471 2.75701 -35364000.0 0.00016 0.00021 5.9 0.000 0.000 0.000 +2456942.5 1.67040 2.74315 -35365092.5 0.00037 0.00031 7.0 0.000 0.000 0.000 +2456943.5 1.64879 2.72936 -35366112.1 0.00047 0.00037 6.5 0.000 0.000 0.000 +2456944.5 1.63130 2.71678 -35367028.6 0.00046 0.00035 11.3 0.000 0.000 0.000 +2456945.5 1.61790 2.70626 -35367911.6 0.00047 0.00036 7.5 0.000 0.000 0.000 +2456946.5 1.60287 2.69598 -35368824.8 0.00047 0.00037 7.1 0.000 0.000 0.000 +2456947.5 1.58892 2.68437 -35369788.4 0.00047 0.00037 7.0 0.000 0.000 0.000 +2456948.5 1.57572 2.67455 -35370758.5 0.00033 0.00029 6.0 0.000 0.000 0.000 +2456949.5 1.56195 2.66393 -35371860.1 0.00022 0.00018 3.9 0.000 0.000 0.000 +2456950.5 1.54873 2.65201 -35373022.5 0.00028 0.00021 3.6 0.000 0.000 0.000 +2456951.5 1.53579 2.64143 -35374283.5 0.00027 0.00021 3.5 0.000 0.000 0.000 +2456952.5 1.52502 2.63264 -35375622.4 0.00027 0.00020 3.6 0.000 0.000 0.000 +2456953.5 1.51183 2.62566 -35377026.9 0.00027 0.00020 3.6 0.000 0.000 0.000 +2456954.5 1.49373 2.61585 -35378297.0 0.00028 0.00020 3.1 0.000 0.000 0.000 +2456955.5 1.47243 2.60336 -35379481.5 0.00020 0.00018 4.5 0.000 0.000 0.000 +2456956.5 1.44802 2.59079 -35380588.8 0.00030 0.00017 4.7 0.000 0.000 0.000 +2456957.5 1.42566 2.57874 -35381604.0 0.00030 0.00015 4.1 0.000 0.000 0.000 +2456958.5 1.40631 2.57138 -35382589.2 0.00030 0.00014 4.0 0.000 0.000 0.000 +2456959.5 1.38861 2.56742 -35383593.0 0.00033 0.00017 4.2 0.000 0.000 0.000 +2456960.5 1.37007 2.56366 -35384672.1 0.00053 0.00020 4.2 0.000 0.000 0.000 +2456961.5 1.34866 2.56031 -35385820.3 0.00053 0.00021 4.2 0.000 0.000 0.000 +2456962.5 1.32522 2.55468 -35387103.0 0.00046 0.00020 5.4 0.000 0.000 0.000 +2456963.5 1.30171 2.54607 -35388635.1 0.00052 0.00021 3.5 0.000 0.000 0.000 +2456964.5 1.28117 2.53658 -35390327.7 0.00052 0.00021 3.4 0.000 0.000 0.000 +2456965.5 1.26501 2.53075 -35392017.8 0.00051 0.00019 2.7 0.000 0.000 0.000 +2456966.5 1.25142 2.53036 -35393656.0 0.00031 0.00018 2.3 0.000 0.000 0.000 +2456967.5 1.23750 2.53048 -35395175.1 0.00031 0.00016 2.3 0.000 0.000 0.000 +2456968.5 1.22208 2.52686 -35396518.0 0.00031 0.00014 1.7 0.000 0.000 0.000 +2456969.5 1.20605 2.52182 -35397750.7 0.00019 0.00013 2.5 0.000 0.000 0.000 +2456970.5 1.18598 2.51845 -35398760.4 0.00035 0.00027 2.6 0.000 0.000 0.000 +2456971.5 1.16069 2.51452 -35399661.3 0.00035 0.00026 2.7 0.000 0.000 0.000 +2456972.5 1.13445 2.51101 -35400526.3 0.00034 0.00025 6.0 0.000 0.000 0.000 +2456973.5 1.11309 2.51055 -35401359.5 0.00036 0.00026 1.9 0.000 0.000 0.000 +2456974.5 1.09974 2.51221 -35402273.9 0.00035 0.00028 2.5 0.000 0.000 0.000 +2456975.5 1.08911 2.51492 -35403227.1 0.00043 0.00060 3.3 0.000 0.000 0.000 +2456976.5 1.07296 2.51861 -35404234.4 0.00032 0.00055 3.3 0.000 0.000 0.000 +2456977.5 1.05154 2.52094 -35405284.5 0.00040 0.00056 3.1 0.000 0.000 0.000 +2456978.5 1.03094 2.52300 -35406443.1 0.00042 0.00056 3.0 0.000 0.000 0.000 +2456979.5 1.01090 2.52928 -35407687.6 0.00041 0.00056 5.4 0.000 0.000 0.000 +2456980.5 0.98805 2.53518 -35408951.1 0.00045 0.00055 3.6 0.000 0.000 0.000 +2456981.5 0.96601 2.53789 -35410197.6 0.00038 0.00018 2.8 0.000 0.000 0.000 +2456982.5 0.94756 2.54078 -35411346.8 0.00040 0.00018 2.8 0.000 0.000 0.000 +2456983.5 0.92972 2.54337 -35412448.0 0.00031 0.00017 3.1 0.000 0.000 0.000 +2456984.5 0.91051 2.54326 -35413508.8 0.00041 0.00042 5.6 0.000 0.000 0.000 +2456985.5 0.89520 2.54044 -35414526.5 0.00044 0.00044 4.7 0.000 0.000 0.000 +2456986.5 0.88481 2.53891 -35415529.1 0.00042 0.00044 6.1 0.000 0.000 0.000 +2456987.5 0.87562 2.54015 -35416516.6 0.00042 0.00045 6.0 0.000 0.000 0.000 +2456988.5 0.86929 2.54454 -35417551.3 0.00040 0.00045 6.0 0.000 0.000 0.000 +2456989.5 0.86314 2.55262 -35418716.1 0.00040 0.00047 7.1 0.000 0.000 0.000 +2456990.5 0.85025 2.56043 -35420060.3 0.00029 0.00027 4.8 0.000 0.000 0.000 +2456991.5 0.83083 2.56732 -35421512.1 0.00036 0.00026 8.0 0.000 0.000 0.000 +2456992.5 0.80966 2.57695 -35423025.3 0.00034 0.00025 8.0 0.000 0.000 0.000 +2456993.5 0.78930 2.58732 -35424487.0 0.00041 0.00025 7.2 0.000 0.000 0.000 +2456994.5 0.76861 2.59466 -35425879.0 0.00044 0.00031 4.8 0.000 0.000 0.000 +2456995.5 0.74747 2.59877 -35427213.3 0.00043 0.00029 4.3 0.000 0.000 0.000 +2456996.5 0.73090 2.60145 -35428433.9 0.00043 0.00028 4.2 0.000 0.000 0.000 +2456997.5 0.71951 2.60927 -35429538.9 0.00035 0.00026 3.6 0.000 0.000 0.000 +2456998.5 0.70762 2.61898 -35430507.4 0.00036 0.00027 3.6 0.000 0.000 0.000 +2456999.5 0.69404 2.62652 -35431454.0 0.00028 0.00027 4.9 0.000 0.000 0.000 +2457000.5 0.67528 2.63558 -35432440.9 0.00022 0.00019 8.8 0.000 0.000 0.000 +2457001.5 0.65141 2.64343 -35433477.3 0.00035 0.00021 4.2 0.000 0.000 0.000 +2457002.5 0.62785 2.65100 -35434536.4 0.00034 0.00022 4.5 0.000 0.000 0.000 +2457003.5 0.60539 2.66113 -35435705.2 0.00032 0.00023 4.4 0.000 0.000 0.000 +2457004.5 0.58236 2.67309 -35436938.1 0.00035 0.00023 4.4 0.000 0.000 0.000 +2457005.5 0.55664 2.68377 -35438161.5 0.00042 0.00029 2.8 0.000 0.000 0.000 +2457006.5 0.52951 2.69437 -35439386.3 0.00043 0.00030 2.9 0.000 0.000 0.000 +2457007.5 0.50186 2.70632 -35440656.3 0.00034 0.00030 5.3 0.000 0.000 0.000 +2457008.5 0.47336 2.71692 -35441968.8 0.00037 0.00031 3.9 0.000 0.000 0.000 +2457009.5 0.44897 2.72197 -35443209.4 0.00036 0.00030 4.0 0.000 0.000 0.000 +2457010.5 0.43342 2.72621 -35444393.0 0.00033 0.00030 4.0 0.000 0.000 0.000 +2457011.5 0.42115 2.73238 -35445473.8 0.00020 0.00022 5.5 0.000 0.000 0.000 +2457012.5 0.40799 2.73642 -35446455.9 0.00028 0.00024 5.9 0.000 0.000 0.000 +2457013.5 0.39579 2.73926 -35447371.4 0.00028 0.00020 5.1 0.000 0.000 0.000 +2457014.5 0.38609 2.74279 -35448344.6 0.00025 0.00017 5.6 0.000 0.000 0.000 +2457015.5 0.37855 2.74888 -35449404.1 0.00026 0.00019 5.6 0.000 0.000 0.000 +2457016.5 0.37107 2.75593 -35450579.4 0.00026 0.00021 6.1 0.000 0.000 0.000 +2457017.5 0.36165 2.76313 -35451943.5 0.00026 0.00024 5.9 0.000 0.000 0.000 +2457018.5 0.35238 2.76958 -35453370.6 0.00015 0.00020 5.9 0.000 0.000 0.000 +2457019.5 0.34645 2.77745 -35454882.8 0.00023 0.00028 7.7 0.000 0.000 0.000 +2457020.5 0.34201 2.78661 -35456385.6 0.00029 0.00032 8.4 0.000 0.000 0.000 +2457021.5 0.33455 2.79567 -35457716.5 0.00028 0.00031 8.4 0.000 0.000 0.000 +2457022.5 0.32181 2.80363 -35458891.7 0.00027 0.00030 8.0 0.000 0.000 0.000 +2457023.5 0.30741 2.80838 -35459916.7 0.00027 0.00029 9.5 0.000 0.000 0.000 +2457024.5 0.29600 2.81235 -35460830.2 0.00027 0.00028 10.3 0.000 0.000 0.000 +2457025.5 0.28919 2.81620 -35461654.5 0.00021 0.00018 14.1 0.000 0.000 0.000 +2457026.5 0.28650 2.82095 -35462376.4 0.00022 0.00019 10.7 0.000 0.000 0.000 +2457027.5 0.28398 2.82772 -35462997.5 0.00022 0.00019 10.7 0.000 0.000 0.000 +2457028.5 0.27895 2.83551 -35463658.4 0.00023 0.00020 10.5 0.000 0.000 0.000 +2457029.5 0.27044 2.84515 -35464313.9 0.00027 0.00022 6.0 0.000 0.000 0.000 +2457030.5 0.25831 2.85463 -35465089.0 0.00026 0.00021 5.2 0.000 0.000 0.000 +2457031.5 0.24584 2.86044 -35466011.7 0.00026 0.00021 4.5 0.000 0.000 0.000 +2457032.5 0.23527 2.86728 -35467060.9 0.00017 0.00018 6.0 0.000 0.000 0.000 +2457033.5 0.22539 2.87801 -35468186.9 0.00017 0.00018 5.9 0.000 0.000 0.000 +2457034.5 0.21522 2.88835 -35469291.2 0.00023 0.00021 3.6 0.000 0.000 0.000 +2457035.5 0.20343 2.89837 -35470390.5 0.00018 0.00018 3.9 0.000 0.000 0.000 +2457036.5 0.18893 2.90906 -35471531.1 0.00020 0.00022 3.3 0.000 0.000 0.000 +2457037.5 0.17095 2.92211 -35472677.7 0.00020 0.00022 3.5 0.000 0.000 0.000 +2457038.5 0.15040 2.93593 -35473783.0 0.00022 0.00022 3.5 0.000 0.000 0.000 +2457039.5 0.12908 2.94563 -35474893.7 0.00026 0.00035 3.5 0.000 0.000 0.000 +2457040.5 0.10830 2.95323 -35475944.4 0.00023 0.00032 6.0 0.000 0.000 0.000 +2457041.5 0.09240 2.96112 -35477020.5 0.00033 0.00035 7.0 0.000 0.000 0.000 +2457042.5 0.08135 2.96846 -35478158.1 0.00033 0.00033 13.2 0.000 0.000 0.000 +2457043.5 0.07362 2.97628 -35479385.3 0.00034 0.00033 6.7 0.000 0.000 0.000 +2457044.5 0.06844 2.98582 -35480814.2 0.00032 0.00035 7.2 0.000 0.000 0.000 +2457045.5 0.06117 2.99501 -35482341.0 0.00035 0.00041 7.5 0.000 0.000 0.000 +2457046.5 0.05104 3.00218 -35483858.8 0.00037 0.00041 7.2 0.000 0.000 0.000 +2457047.5 0.03974 3.01210 -35485454.6 0.00034 0.00045 6.1 0.000 0.000 0.000 +2457048.5 0.02891 3.02202 -35486784.0 0.00034 0.00044 5.7 0.000 0.000 0.000 +2457049.5 0.02357 3.03117 -35488006.7 0.00042 0.00044 7.7 0.000 0.000 0.000 +2457050.5 0.02210 3.04465 -35489062.6 0.00046 0.00047 4.6 0.000 0.000 0.000 +2457051.5 0.02250 3.06215 -35489980.1 0.00042 0.00032 3.4 0.000 0.000 0.000 +2457052.5 0.02834 3.08439 -35490823.0 0.00041 0.00032 3.5 0.000 0.000 0.000 +2457053.5 0.03734 3.10840 -35491658.3 0.00038 0.00024 3.6 0.000 0.000 0.000 +2457054.5 0.04502 3.13183 -35492527.2 0.00048 0.00028 5.6 0.000 0.000 0.000 +2457055.5 0.04584 3.15552 -35493426.0 0.00057 0.00032 6.5 0.000 0.000 0.000 +2457056.5 0.04214 3.17804 -35494430.7 0.00055 0.00028 10.8 0.000 0.000 0.000 +2457057.5 0.03793 3.19766 -35495513.7 0.00057 0.00029 7.0 0.000 0.000 0.000 +2457058.5 0.03181 3.21293 -35496649.0 0.00056 0.00029 6.9 0.000 0.000 0.000 +2457059.5 0.02595 3.22785 -35497863.1 0.00056 0.00029 6.7 0.000 0.000 0.000 +2457060.5 0.02109 3.24389 -35499143.6 0.00047 0.00024 4.9 0.000 0.000 0.000 +2457061.5 0.01882 3.25781 -35500517.5 0.00026 0.00025 3.8 0.000 0.000 0.000 +2457062.5 0.01988 3.27081 -35501880.9 0.00029 0.00022 3.8 0.000 0.000 0.000 +2457063.5 0.02128 3.28367 -35503163.0 0.00027 0.00021 4.7 0.000 0.000 0.000 +2457064.5 0.02183 3.29750 -35504358.6 0.00027 0.00026 3.7 0.000 0.000 0.000 +2457065.5 0.02227 3.31176 -35505527.8 0.00027 0.00026 3.6 0.000 0.000 0.000 +2457066.5 0.02418 3.32408 -35506701.7 0.00029 0.00026 3.6 0.000 0.000 0.000 +2457067.5 0.02662 3.33499 -35507895.7 0.00028 0.00020 2.6 0.000 0.000 0.000 +2457068.5 0.02752 3.34571 -35509054.9 0.00028 0.00031 3.4 0.000 0.000 0.000 +2457069.5 0.02823 3.35759 -35510275.8 0.00025 0.00032 3.6 0.000 0.000 0.000 +2457070.5 0.02825 3.37188 -35511588.3 0.00023 0.00029 4.8 0.000 0.000 0.000 +2457071.5 0.02740 3.38447 -35513078.4 0.00024 0.00032 3.2 0.000 0.000 0.000 +2457072.5 0.02731 3.39646 -35514756.1 0.00023 0.00032 3.2 0.000 0.000 0.000 +2457073.5 0.02562 3.41070 -35516507.5 0.00021 0.00032 3.3 0.000 0.000 0.000 +2457074.5 0.02320 3.42699 -35518266.6 0.00019 0.00022 3.2 0.000 0.000 0.000 +2457075.5 0.02450 3.44462 -35519952.0 0.00019 0.00024 2.4 0.000 0.000 0.000 +2457076.5 0.02983 3.46398 -35521509.9 0.00021 0.00024 2.2 0.000 0.000 0.000 +2457077.5 0.03276 3.48505 -35522888.5 0.00021 0.00019 2.9 0.000 0.000 0.000 +2457078.5 0.03138 3.50331 -35524022.0 0.00022 0.00027 2.6 0.000 0.000 0.000 +2457079.5 0.03133 3.51758 -35525021.1 0.00021 0.00026 2.8 0.000 0.000 0.000 +2457080.5 0.03247 3.53179 -35525927.7 0.00020 0.00027 3.3 0.000 0.000 0.000 +2457081.5 0.03160 3.54817 -35526800.2 0.00020 0.00023 4.4 0.000 0.000 0.000 +2457082.5 0.03131 3.56624 -35527669.3 0.00018 0.00023 4.4 0.000 0.000 0.000 +2457083.5 0.03444 3.58655 -35528585.9 0.00031 0.00024 5.0 0.000 0.000 0.000 +2457084.5 0.03796 3.60616 -35529570.0 0.00031 0.00013 6.8 0.000 0.000 0.000 +2457085.5 0.03907 3.62271 -35530606.4 0.00033 0.00019 5.4 0.000 0.000 0.000 +2457086.5 0.04216 3.63724 -35531739.7 0.00032 0.00019 5.1 0.000 0.000 0.000 +2457087.5 0.04749 3.64966 -35532876.6 0.00032 0.00020 4.8 0.000 0.000 0.000 +2457088.5 0.04942 3.66184 -35534097.7 0.00032 0.00020 5.0 0.000 0.000 0.000 +2457089.5 0.04603 3.67306 -35535342.9 0.00025 0.00020 5.8 0.000 0.000 0.000 +2457090.5 0.04013 3.68218 -35536655.8 0.00025 0.00020 5.8 0.000 0.000 0.000 +2457091.5 0.03592 3.69277 -35538045.0 0.00041 0.00037 7.6 0.000 0.000 0.000 +2457092.5 0.03363 3.70491 -35539440.2 0.00042 0.00038 6.7 0.000 0.000 0.000 +2457093.5 0.03175 3.71618 -35540849.7 0.00042 0.00038 6.5 0.000 0.000 0.000 +2457094.5 0.02891 3.72689 -35542268.4 0.00042 0.00037 6.5 0.000 0.000 0.000 +2457095.5 0.02714 3.73651 -35543677.8 0.00039 0.00037 4.4 0.000 0.000 0.000 +2457096.5 0.02739 3.74583 -35545207.3 0.00039 0.00042 3.8 0.000 0.000 0.000 +2457097.5 0.02766 3.75522 -35546811.3 0.00021 0.00024 3.8 0.000 0.000 0.000 +2457098.5 0.02764 3.76485 -35548544.9 0.00018 0.00022 3.9 0.000 0.000 0.000 +2457099.5 0.02818 3.77478 -35550460.0 0.00025 0.00024 2.9 0.000 0.000 0.000 +2457100.5 0.03393 3.78400 -35552581.8 0.00027 0.00025 2.9 0.000 0.000 0.000 +2457101.5 0.04607 3.79553 -35554767.1 0.00027 0.00025 3.1 0.000 0.000 0.000 +2457102.5 0.06174 3.81289 -35557051.4 0.00025 0.00016 3.1 0.000 0.000 0.000 +2457103.5 0.07535 3.83324 -35559263.5 0.00029 0.00022 3.5 0.000 0.000 0.000 +2457104.5 0.08488 3.85280 -35561302.9 0.00029 0.00022 4.3 0.000 0.000 0.000 +2457105.5 0.09312 3.87111 -35563220.8 0.00022 0.00019 5.7 0.000 0.000 0.000 +2457106.5 0.10053 3.88591 -35564982.6 0.00024 0.00020 4.8 0.000 0.000 0.000 +2457107.5 0.10580 3.89799 -35566638.7 0.00036 0.00020 4.8 0.000 0.000 0.000 +2457108.5 0.10858 3.90978 -35568112.5 0.00037 0.00046 4.8 0.000 0.000 0.000 +2457109.5 0.11073 3.92134 -35569529.4 0.00033 0.00044 5.4 0.000 0.000 0.000 +2457110.5 0.11475 3.93181 -35570923.7 0.00037 0.00047 6.4 0.000 0.000 0.000 +2457111.5 0.12008 3.94134 -35572292.1 0.00038 0.00048 6.2 0.000 0.000 0.000 +2457112.5 0.12626 3.95248 -35573664.9 0.00038 0.00048 7.0 0.000 0.000 0.000 +2457113.5 0.13822 3.96474 -35575063.4 0.00026 0.00048 7.2 0.000 0.000 0.000 +2457114.5 0.15658 3.97934 -35576417.1 0.00025 0.00024 7.2 0.000 0.000 0.000 +2457115.5 0.17373 3.99738 -35577735.2 0.00024 0.00024 7.5 0.000 0.000 0.000 +2457116.5 0.18460 4.01654 -35578992.8 0.00017 0.00017 7.2 0.000 0.000 0.000 +2457117.5 0.19081 4.03406 -35580202.2 0.00018 0.00017 7.3 0.000 0.000 0.000 +2457118.5 0.19588 4.04843 -35581426.1 0.00026 0.00022 8.4 0.000 0.000 0.000 +2457119.5 0.20197 4.06036 -35582654.9 0.00031 0.00024 7.9 0.000 0.000 0.000 +2457120.5 0.20854 4.07002 -35583871.2 0.00033 0.00026 6.4 0.000 0.000 0.000 +2457121.5 0.21348 4.07957 -35585132.3 0.00033 0.00026 5.8 0.000 0.000 0.000 +2457122.5 0.21435 4.09275 -35586404.4 0.00033 0.00027 5.7 0.000 0.000 0.000 +2457123.5 0.21196 4.10622 -35587751.0 0.00034 0.00028 5.7 0.000 0.000 0.000 +2457124.5 0.21049 4.11652 -35589263.0 0.00032 0.00026 5.6 0.000 0.000 0.000 +2457125.5 0.21189 4.12399 -35590910.8 0.00025 0.00026 5.7 0.000 0.000 0.000 +2457126.5 0.21448 4.13226 -35592674.6 0.00028 0.00025 6.7 0.000 0.000 0.000 +2457127.5 0.22032 4.14204 -35594548.5 0.00031 0.00026 5.0 0.000 0.000 0.000 +2457128.5 0.23159 4.15401 -35596539.6 0.00045 0.00046 5.2 0.000 0.000 0.000 +2457129.5 0.24238 4.16821 -35598559.1 0.00044 0.00057 5.3 0.000 0.000 0.000 +2457130.5 0.25225 4.17928 -35600430.8 0.00041 0.00057 4.0 0.000 0.000 0.000 +2457131.5 0.26185 4.18873 -35602209.2 0.00047 0.00060 4.9 0.000 0.000 0.000 +2457132.5 0.27104 4.19783 -35603721.3 0.00044 0.00061 4.9 0.000 0.000 0.000 +2457133.5 0.28000 4.20855 -35605037.9 0.00047 0.00062 6.0 0.000 0.000 0.000 +2457134.5 0.28924 4.21735 -35606145.9 0.00034 0.00049 4.8 0.000 0.000 0.000 +2457135.5 0.30064 4.22578 -35607199.6 0.00035 0.00035 5.1 0.000 0.000 0.000 +2457136.5 0.31126 4.23838 -35608213.9 0.00034 0.00033 5.3 0.000 0.000 0.000 +2457137.5 0.32121 4.25080 -35609266.7 0.00026 0.00027 4.8 0.000 0.000 0.000 +2457138.5 0.33549 4.26281 -35610445.3 0.00036 0.00039 4.7 0.000 0.000 0.000 +2457139.5 0.35265 4.27765 -35611684.9 0.00031 0.00038 4.8 0.000 0.000 0.000 +2457140.5 0.36836 4.29290 -35612990.2 0.00031 0.00037 4.4 0.000 0.000 0.000 +2457141.5 0.38063 4.30561 -35614360.7 0.00029 0.00037 4.1 0.000 0.000 0.000 +2457142.5 0.38977 4.31529 -35615741.5 0.00029 0.00036 4.0 0.000 0.000 0.000 +2457143.5 0.39702 4.32366 -35617154.2 0.00030 0.00035 4.0 0.000 0.000 0.000 +2457144.5 0.40043 4.33220 -35618511.2 0.00018 0.00014 3.1 0.000 0.000 0.000 +2457145.5 0.40244 4.34218 -35619777.5 0.00017 0.00017 3.7 0.000 0.000 0.000 +2457146.5 0.40772 4.35532 -35620969.7 0.00018 0.00015 5.6 0.000 0.000 0.000 +2457147.5 0.41505 4.36952 -35622072.9 0.00017 0.00015 5.3 0.000 0.000 0.000 +2457148.5 0.42280 4.38317 -35623092.0 0.00019 0.00018 4.6 0.000 0.000 0.000 +2457149.5 0.43459 4.39610 -35624098.3 0.00021 0.00018 5.1 0.000 0.000 0.000 +2457150.5 0.45103 4.40883 -35625169.5 0.00020 0.00021 5.2 0.000 0.000 0.000 +2457151.5 0.47059 4.42237 -35626283.8 0.00020 0.00020 5.3 0.000 0.000 0.000 +2457152.5 0.48959 4.43616 -35627541.0 0.00018 0.00026 4.1 0.000 0.000 0.000 +2457153.5 0.50576 4.44564 -35628954.5 0.00018 0.00026 4.1 0.000 0.000 0.000 +2457154.5 0.52158 4.45120 -35630580.2 0.00014 0.00024 4.0 0.000 0.000 0.000 +2457155.5 0.53773 4.45611 -35632374.8 0.00010 0.00030 2.8 0.000 0.000 0.000 +2457156.5 0.55447 4.46107 -35634264.4 0.00015 0.00030 2.9 0.000 0.000 0.000 +2457157.5 0.57189 4.46774 -35636153.5 0.00020 0.00030 3.0 0.000 0.000 0.000 +2457158.5 0.59085 4.47107 -35637999.7 0.00019 0.00026 3.4 0.000 0.000 0.000 +2457159.5 0.61375 4.47358 -35639746.1 0.00023 0.00029 5.2 0.000 0.000 0.000 +2457160.5 0.63703 4.48136 -35641317.6 0.00026 0.00029 5.1 0.000 0.000 0.000 +2457161.5 0.65744 4.48895 -35642740.7 0.00025 0.00025 7.7 0.000 0.000 0.000 +2457162.5 0.67872 4.49260 -35644050.8 0.00026 0.00028 5.6 0.000 0.000 0.000 +2457163.5 0.69932 4.49452 -35645285.6 0.00029 0.00028 6.3 0.000 0.000 0.000 +2457164.5 0.71823 4.49523 -35646409.2 0.00034 0.00028 6.3 0.000 0.000 0.000 +2457165.5 0.73857 4.49887 -35647515.8 0.00034 0.00025 6.0 0.000 0.000 0.000 +2457166.5 0.75700 4.50639 -35648537.4 0.00033 0.00027 6.4 0.000 0.000 0.000 +2457167.5 0.77422 4.51310 -35649557.2 0.00038 0.00030 6.8 0.000 0.000 0.000 +2457168.5 0.79183 4.52039 -35650567.6 0.00037 0.00026 10.6 0.000 0.000 0.000 +2457169.5 0.80984 4.52656 -35651616.9 0.00031 0.00022 6.9 0.000 0.000 0.000 +2457170.5 0.83016 4.53253 -35652609.1 0.00028 0.00021 7.0 0.000 0.000 0.000 +2457171.5 0.85133 4.53921 -35653638.0 0.00025 0.00027 7.0 0.000 0.000 0.000 +2457172.5 0.87172 4.54652 -35654568.4 0.00024 0.00026 7.0 0.000 0.000 0.000 +2457173.5 0.89099 4.55423 -35655442.1 0.00015 0.00036 4.0 0.000 0.000 0.000 +2457174.5 0.90934 4.56008 -35656213.0 0.00020 0.00041 3.9 0.000 0.000 0.000 +2457175.5 0.92324 4.56496 -35656913.3 0.00028 0.00047 3.8 0.000 0.000 0.000 +2457176.5 0.93182 4.56912 -35657548.8 0.00028 0.00047 2.4 0.000 0.000 0.000 +2457177.5 0.93856 4.57031 -35658192.4 0.00032 0.00050 2.3 0.000 0.000 0.000 +2457178.5 0.94838 4.56928 -35658824.4 0.00034 0.00053 2.9 0.000 0.000 0.000 +2457179.5 0.95961 4.56828 -35659557.9 0.00034 0.00044 3.2 0.000 0.000 0.000 +2457180.5 0.96615 4.56652 -35660411.7 0.00031 0.00039 3.4 0.000 0.000 0.000 +2457181.5 0.97147 4.56135 -35661409.3 0.00025 0.00033 4.2 0.000 0.000 0.000 +2457182.5 0.98018 4.55643 -35662491.8 0.00027 0.00040 5.7 0.000 0.000 0.000 +2457183.5 0.99086 4.55361 -35663531.1 0.00022 0.00034 4.8 0.000 0.000 0.000 +2457184.5 1.00468 4.55221 -35664546.9 0.00019 0.00034 4.9 0.000 0.000 0.000 +2457185.5 1.02328 4.55159 -35665499.7 0.00021 0.00040 5.3 0.000 0.000 0.000 +2457186.5 1.04638 4.54948 -35666324.6 0.00020 0.00040 5.8 0.000 0.000 0.000 +2457187.5 1.07225 4.54693 -35666933.3 0.00020 0.00040 6.8 0.000 0.000 0.000 +2457188.5 1.09894 4.54469 -35667353.4 0.00021 0.00039 6.9 0.000 0.000 0.000 +2457189.5 1.12525 4.54083 -35667748.5 0.00029 0.00042 10.3 0.000 0.000 0.000 +2457190.5 1.14946 4.53659 -35667967.5 0.00034 0.00039 8.4 0.000 0.000 0.000 +2457191.5 1.17025 4.53414 -35668183.9 0.00033 0.00033 9.3 0.000 0.000 0.000 +2457192.5 1.19093 4.53239 -35668427.4 0.00037 0.00044 9.4 0.000 0.000 0.000 +2457193.5 1.21191 4.53044 -35668822.1 0.00038 0.00048 11.4 0.000 0.000 0.000 +2457194.5 1.23100 4.52989 -35669341.0 0.00041 0.00047 6.9 0.000 0.000 0.000 +2457195.5 1.25031 4.52853 -35669919.4 0.00037 0.00056 6.8 0.000 0.000 0.000 +2457196.5 1.27046 4.52396 -35670564.9 0.00037 0.00064 7.8 0.000 0.000 0.000 +2457197.5 1.29141 4.51955 -35671326.1 0.00041 0.00064 5.5 0.000 0.000 0.000 +2457198.5 1.31475 4.51548 -35672135.9 0.00037 0.00057 5.4 0.000 0.000 0.000 +2457199.5 1.33949 4.51167 -35672958.2 0.00034 0.00053 5.1 0.000 0.000 0.000 +2457200.5 1.36126 4.50815 -35673809.0 0.00028 0.00049 5.0 0.000 0.000 0.000 +2457201.5 1.37879 4.50363 -35674636.8 0.00029 0.00038 6.0 0.000 0.000 0.000 +2457202.5 1.39416 4.49694 -35675383.6 0.00024 0.00023 5.5 0.000 0.000 0.000 +2457203.5 1.40798 4.48916 -35676031.6 0.00022 0.00022 6.0 0.000 0.000 0.000 +2457204.5 1.42127 4.48171 -35676631.8 0.00022 0.00023 5.9 0.000 0.000 0.000 +2457205.5 1.43550 4.47381 -35677236.5 0.00023 0.00024 6.0 0.000 0.000 0.000 +2457206.5 1.44984 4.46626 -35677898.0 0.00024 0.00023 6.0 0.000 0.000 0.000 +2457207.5 1.46566 4.45638 -35678729.8 0.00019 0.00019 5.4 0.000 0.000 0.000 +2457208.5 1.48588 4.44693 -35679746.2 0.00025 0.00021 5.1 0.000 0.000 0.000 +2457209.5 1.50803 4.44099 -35680973.0 0.00021 0.00020 6.1 0.000 0.000 0.000 +2457210.5 1.52828 4.43845 -35682230.9 0.00021 0.00021 5.9 0.000 0.000 0.000 +2457211.5 1.54820 4.43758 -35683624.7 0.00023 0.00025 4.6 0.000 0.000 0.000 +2457212.5 1.56743 4.43475 -35684907.8 0.00023 0.00025 4.6 0.000 0.000 0.000 +2457213.5 1.58558 4.42790 -35686151.0 0.00023 0.00024 4.6 0.000 0.000 0.000 +2457214.5 1.60562 4.41785 -35687273.7 0.00016 0.00023 5.1 0.000 0.000 0.000 +2457215.5 1.62967 4.40603 -35688202.8 0.00022 0.00026 5.3 0.000 0.000 0.000 +2457216.5 1.65628 4.39473 -35688921.2 0.00022 0.00025 5.1 0.000 0.000 0.000 +2457217.5 1.68175 4.38491 -35689444.2 0.00028 0.00023 5.9 0.000 0.000 0.000 +2457218.5 1.70366 4.37535 -35689888.8 0.00032 0.00025 5.4 0.000 0.000 0.000 +2457219.5 1.72158 4.36316 -35690276.1 0.00033 0.00025 6.1 0.000 0.000 0.000 +2457220.5 1.73824 4.34975 -35690724.2 0.00033 0.00025 6.2 0.000 0.000 0.000 +2457221.5 1.75657 4.33898 -35691175.5 0.00030 0.00023 6.9 0.000 0.000 0.000 +2457222.5 1.77353 4.32940 -35691645.6 0.00035 0.00025 5.6 0.000 0.000 0.000 +2457223.5 1.78823 4.32102 -35692112.6 0.00029 0.00024 5.9 0.000 0.000 0.000 +2457224.5 1.80056 4.31335 -35692659.4 0.00025 0.00021 7.6 0.000 0.000 0.000 +2457225.5 1.81059 4.30433 -35693209.4 0.00027 0.00022 4.9 0.000 0.000 0.000 +2457226.5 1.81995 4.29581 -35693749.7 0.00029 0.00021 4.4 0.000 0.000 0.000 +2457227.5 1.83056 4.28788 -35694204.7 0.00029 0.00020 4.5 0.000 0.000 0.000 +2457228.5 1.84446 4.27883 -35694703.7 0.00023 0.00019 5.0 0.000 0.000 0.000 +2457229.5 1.85834 4.26801 -35695105.8 0.00024 0.00021 4.7 0.000 0.000 0.000 +2457230.5 1.87317 4.25456 -35695507.9 0.00023 0.00021 4.9 0.000 0.000 0.000 +2457231.5 1.89196 4.24150 -35695901.1 0.00019 0.00019 6.0 0.000 0.000 0.000 +2457232.5 1.91110 4.22962 -35696256.3 0.00017 0.00020 4.7 0.000 0.000 0.000 +2457233.5 1.92889 4.21625 -35696728.5 0.00015 0.00019 4.7 0.000 0.000 0.000 +2457234.5 1.94575 4.20197 -35697342.5 0.00015 0.00018 5.4 0.000 0.000 0.000 +2457235.5 1.96283 4.18745 -35698157.6 0.00012 0.00015 6.9 0.000 0.000 0.000 +2457236.5 1.98112 4.17345 -35699153.7 0.00015 0.00016 6.3 0.000 0.000 0.000 +2457237.5 2.00084 4.15923 -35700314.1 0.00020 0.00023 4.6 0.000 0.000 0.000 +2457238.5 2.02203 4.14647 -35701548.7 0.00019 0.00022 5.7 0.000 0.000 0.000 +2457239.5 2.04553 4.13499 -35702778.1 0.00024 0.00023 5.0 0.000 0.000 0.000 +2457240.5 2.06824 4.12306 -35703987.0 0.00024 0.00024 4.5 0.000 0.000 0.000 +2457241.5 2.08660 4.11168 -35704999.4 0.00024 0.00023 4.4 0.000 0.000 0.000 +2457242.5 2.09903 4.10052 -35705879.0 0.00022 0.00024 4.3 0.000 0.000 0.000 +2457243.5 2.10616 4.08534 -35706644.3 0.00019 0.00017 5.0 0.000 0.000 0.000 +2457244.5 2.11279 4.06676 -35707279.9 0.00023 0.00017 5.1 0.000 0.000 0.000 +2457245.5 2.12038 4.04986 -35707859.0 0.00019 0.00015 5.4 0.000 0.000 0.000 +2457246.5 2.12752 4.03343 -35708463.4 0.00020 0.00015 5.0 0.000 0.000 0.000 +2457247.5 2.13774 4.01467 -35709078.0 0.00020 0.00015 5.0 0.000 0.000 0.000 +2457248.5 2.15312 3.99631 -35709812.0 0.00021 0.00016 5.0 0.000 0.000 0.000 +2457249.5 2.16990 3.98087 -35710580.6 0.00024 0.00017 4.9 0.000 0.000 0.000 +2457250.5 2.18372 3.96822 -35711395.7 0.00021 0.00018 5.1 0.000 0.000 0.000 +2457251.5 2.19393 3.95494 -35712237.4 0.00023 0.00019 5.1 0.000 0.000 0.000 +2457252.5 2.19786 3.94029 -35713073.3 0.00021 0.00019 6.8 0.000 0.000 0.000 +2457253.5 2.19522 3.92352 -35713869.3 0.00023 0.00024 5.5 0.000 0.000 0.000 +2457254.5 2.19483 3.90469 -35714692.3 0.00024 0.00024 5.8 0.000 0.000 0.000 +2457255.5 2.20096 3.88490 -35715532.5 0.00021 0.00024 5.9 0.000 0.000 0.000 +2457256.5 2.21176 3.86507 -35716360.9 0.00019 0.00023 5.5 0.000 0.000 0.000 +2457257.5 2.22204 3.84663 -35717136.4 0.00020 0.00026 5.4 0.000 0.000 0.000 +2457258.5 2.23060 3.82876 -35717886.0 0.00024 0.00025 5.4 0.000 0.000 0.000 +2457259.5 2.24090 3.81086 -35718689.0 0.00023 0.00021 5.6 0.000 0.000 0.000 +2457260.5 2.25255 3.79199 -35719572.2 0.00023 0.00025 4.5 0.000 0.000 0.000 +2457261.5 2.25937 3.77163 -35720534.5 0.00022 0.00025 4.9 0.000 0.000 0.000 +2457262.5 2.26094 3.75025 -35721652.3 0.00022 0.00024 5.2 0.000 0.000 0.000 +2457263.5 2.26073 3.73287 -35722956.0 0.00020 0.00021 5.2 0.000 0.000 0.000 +2457264.5 2.25987 3.71926 -35724462.8 0.00015 0.00022 7.0 0.000 0.000 0.000 +2457265.5 2.26052 3.70701 -35726198.2 0.00013 0.00023 7.1 0.000 0.000 0.000 +2457266.5 2.26140 3.69694 -35728010.1 0.00013 0.00017 10.6 0.000 0.000 0.000 +2457267.5 2.26256 3.68661 -35729805.0 0.00021 0.00026 7.0 0.000 0.000 0.000 +2457268.5 2.26656 3.67228 -35731501.9 0.00022 0.00027 6.7 0.000 0.000 0.000 +2457269.5 2.27361 3.65743 -35732981.0 0.00022 0.00027 6.7 0.000 0.000 0.000 +2457270.5 2.27833 3.64608 -35734323.0 0.00022 0.00025 4.5 0.000 0.000 0.000 +2457271.5 2.27955 3.63322 -35735522.0 0.00022 0.00025 4.6 0.000 0.000 0.000 +2457272.5 2.28030 3.61822 -35736638.3 0.00023 0.00030 4.6 0.000 0.000 0.000 +2457273.5 2.27865 3.60225 -35737685.8 0.00021 0.00023 4.8 0.000 0.000 0.000 +2457274.5 2.27388 3.58375 -35738743.2 0.00020 0.00024 4.4 0.000 0.000 0.000 +2457275.5 2.26626 3.56475 -35739802.8 0.00021 0.00026 4.5 0.000 0.000 0.000 +2457276.5 2.25666 3.54531 -35740847.7 0.00023 0.00027 4.4 0.000 0.000 0.000 +2457277.5 2.24957 3.52372 -35742025.8 0.00023 0.00028 4.5 0.000 0.000 0.000 +2457278.5 2.24800 3.50365 -35743322.8 0.00025 0.00025 4.4 0.000 0.000 0.000 +2457279.5 2.24774 3.48424 -35744636.2 0.00021 0.00024 4.5 0.000 0.000 0.000 +2457280.5 2.24593 3.46640 -35745948.4 0.00021 0.00022 5.2 0.000 0.000 0.000 +2457281.5 2.24207 3.45191 -35747254.6 0.00025 0.00021 4.2 0.000 0.000 0.000 +2457282.5 2.23482 3.43781 -35748495.4 0.00025 0.00019 4.1 0.000 0.000 0.000 +2457283.5 2.22432 3.42265 -35749679.2 0.00024 0.00018 4.1 0.000 0.000 0.000 +2457284.5 2.21408 3.40445 -35750866.2 0.00022 0.00017 4.2 0.000 0.000 0.000 +2457285.5 2.20460 3.38462 -35752023.8 0.00023 0.00022 3.0 0.000 0.000 0.000 +2457286.5 2.19489 3.36302 -35753250.5 0.00022 0.00022 2.9 0.000 0.000 0.000 +2457287.5 2.18767 3.34103 -35754492.3 0.00016 0.00023 2.9 0.000 0.000 0.000 +2457288.5 2.18329 3.32059 -35755823.7 0.00021 0.00031 4.0 0.000 0.000 0.000 +2457289.5 2.18122 3.30024 -35757238.7 0.00021 0.00031 4.0 0.000 0.000 0.000 +2457290.5 2.18121 3.28296 -35758819.6 0.00021 0.00030 4.0 0.000 0.000 0.000 +2457291.5 2.18101 3.26759 -35760622.7 0.00020 0.00027 5.0 0.000 0.000 0.000 +2457292.5 2.17561 3.25190 -35762651.6 0.00021 0.00028 3.5 0.000 0.000 0.000 +2457293.5 2.16233 3.23444 -35764779.3 0.00020 0.00027 3.5 0.000 0.000 0.000 +2457294.5 2.14303 3.21260 -35766875.5 0.00016 0.00019 2.0 0.000 0.000 0.000 +2457295.5 2.12127 3.18733 -35768852.1 0.00018 0.00020 2.5 0.000 0.000 0.000 +2457296.5 2.10286 3.16049 -35770646.2 0.00019 0.00020 2.3 0.000 0.000 0.000 +2457297.5 2.09429 3.13783 -35772198.7 0.00020 0.00020 2.3 0.000 0.000 0.000 +2457298.5 2.09248 3.11994 -35773537.5 0.00019 0.00018 3.3 0.000 0.000 0.000 +2457299.5 2.08985 3.10070 -35774770.9 0.00024 0.00020 2.7 0.000 0.000 0.000 +2457300.5 2.08598 3.08052 -35775974.2 0.00022 0.00018 2.8 0.000 0.000 0.000 +2457301.5 2.08100 3.06295 -35777252.4 0.00021 0.00015 2.6 0.000 0.000 0.000 +2457302.5 2.07389 3.04713 -35778587.5 0.00023 0.00020 3.4 0.000 0.000 0.000 +2457303.5 2.06641 3.03285 -35779977.4 0.00022 0.00021 3.6 0.000 0.000 0.000 +2457304.5 2.05711 3.02035 -35781397.2 0.00022 0.00020 3.6 0.000 0.000 0.000 +2457305.5 2.04172 3.00715 -35782943.0 0.00017 0.00017 4.5 0.000 0.000 0.000 +2457306.5 2.02068 2.99161 -35784505.7 0.00016 0.00017 4.7 0.000 0.000 0.000 +2457307.5 1.99944 2.97484 -35786133.6 0.00016 0.00021 4.7 0.000 0.000 0.000 +2457308.5 1.97942 2.95801 -35787774.9 0.00011 0.00017 5.2 0.000 0.000 0.000 +2457309.5 1.95935 2.94030 -35789447.9 0.00015 0.00021 4.4 0.000 0.000 0.000 +2457310.5 1.93976 2.92130 -35790998.2 0.00015 0.00021 4.2 0.000 0.000 0.000 +2457311.5 1.92040 2.90427 -35792399.5 0.00016 0.00021 4.3 0.000 0.000 0.000 +2457312.5 1.90079 2.88913 -35793804.4 0.00017 0.00021 4.3 0.000 0.000 0.000 +2457313.5 1.88337 2.87268 -35795277.5 0.00019 0.00019 3.9 0.000 0.000 0.000 +2457314.5 1.86886 2.85680 -35796820.3 0.00019 0.00018 3.9 0.000 0.000 0.000 +2457315.5 1.85739 2.84304 -35798375.6 0.00016 0.00013 3.4 0.000 0.000 0.000 +2457316.5 1.84769 2.83249 -35799940.2 0.00017 0.00015 3.0 0.000 0.000 0.000 +2457317.5 1.83719 2.82417 -35801608.4 0.00017 0.00016 2.9 0.000 0.000 0.000 +2457318.5 1.82393 2.81513 -35803464.7 0.00018 0.00016 2.9 0.000 0.000 0.000 +2457319.5 1.80752 2.80313 -35805534.8 0.00015 0.00013 2.2 0.000 0.000 0.000 +2457320.5 1.79174 2.78978 -35807755.4 0.00017 0.00015 3.6 0.000 0.000 0.000 +2457321.5 1.78097 2.77791 -35810053.1 0.00017 0.00016 3.6 0.000 0.000 0.000 +2457322.5 1.77367 2.76671 -35812344.4 0.00018 0.00015 4.0 0.000 0.000 0.000 +2457323.5 1.76298 2.75720 -35814528.2 0.00022 0.00016 3.6 0.000 0.000 0.000 +2457324.5 1.74462 2.75000 -35816562.3 0.00024 0.00016 3.7 0.000 0.000 0.000 +2457325.5 1.71851 2.74023 -35818337.7 0.00024 0.00017 3.6 0.000 0.000 0.000 +2457326.5 1.68840 2.72487 -35819976.1 0.00023 0.00015 2.9 0.000 0.000 0.000 +2457327.5 1.66224 2.70776 -35821483.9 0.00024 0.00015 2.9 0.000 0.000 0.000 +2457328.5 1.64206 2.69406 -35822967.8 0.00026 0.00019 3.4 0.000 0.000 0.000 +2457329.5 1.62439 2.68503 -35824405.1 0.00024 0.00017 3.8 0.000 0.000 0.000 +2457330.5 1.61035 2.67885 -35825817.6 0.00023 0.00019 4.0 0.000 0.000 0.000 +2457331.5 1.59771 2.67482 -35827249.7 0.00024 0.00019 3.9 0.000 0.000 0.000 +2457332.5 1.58026 2.66982 -35828747.5 0.00024 0.00020 4.0 0.000 0.000 0.000 +2457333.5 1.56036 2.66142 -35830348.0 0.00023 0.00020 4.0 0.000 0.000 0.000 +2457334.5 1.54450 2.65093 -35831963.4 0.00025 0.00018 4.9 0.000 0.000 0.000 +2457335.5 1.53064 2.64167 -35833569.8 0.00024 0.00017 4.8 0.000 0.000 0.000 +2457336.5 1.51418 2.63463 -35835126.0 0.00022 0.00016 5.8 0.000 0.000 0.000 +2457337.5 1.49716 2.62712 -35836643.8 0.00022 0.00019 3.3 0.000 0.000 0.000 +2457338.5 1.48046 2.61867 -35838110.5 0.00023 0.00019 3.8 0.000 0.000 0.000 +2457339.5 1.46268 2.60989 -35839524.8 0.00024 0.00019 3.8 0.000 0.000 0.000 +2457340.5 1.44438 2.60082 -35840881.9 0.00021 0.00018 2.8 0.000 0.000 0.000 +2457341.5 1.42668 2.59301 -35842281.5 0.00022 0.00019 2.3 0.000 0.000 0.000 +2457342.5 1.40822 2.58836 -35843648.4 0.00023 0.00021 2.4 0.000 0.000 0.000 +2457343.5 1.38874 2.58392 -35845073.2 0.00022 0.00019 2.9 0.000 0.000 0.000 +2457344.5 1.36845 2.57733 -35846556.9 0.00028 0.00023 2.1 0.000 0.000 0.000 +2457345.5 1.34535 2.56996 -35848116.6 0.00028 0.00022 2.0 0.000 0.000 0.000 +2457346.5 1.32120 2.56214 -35849750.2 0.00026 0.00021 2.0 0.000 0.000 0.000 +2457347.5 1.29941 2.55639 -35851483.1 0.00027 0.00021 2.6 0.000 0.000 0.000 +2457348.5 1.27855 2.55428 -35853312.7 0.00029 0.00018 3.2 0.000 0.000 0.000 +2457349.5 1.25559 2.55215 -35855109.4 0.00029 0.00022 3.0 0.000 0.000 0.000 +2457350.5 1.23051 2.54708 -35856925.3 0.00023 0.00021 3.4 0.000 0.000 0.000 +2457351.5 1.20852 2.54172 -35858615.8 0.00023 0.00021 3.4 0.000 0.000 0.000 +2457352.5 1.19445 2.54123 -35860216.3 0.00025 0.00021 3.6 0.000 0.000 0.000 +2457353.5 1.18505 2.54290 -35861652.6 0.00025 0.00021 3.8 0.000 0.000 0.000 +2457354.5 1.17662 2.54362 -35863014.4 0.00020 0.00020 4.0 0.000 0.000 0.000 +2457355.5 1.16359 2.54358 -35864400.7 0.00027 0.00022 2.7 0.000 0.000 0.000 +2457356.5 1.14565 2.54073 -35865871.0 0.00026 0.00022 2.1 0.000 0.000 0.000 +2457357.5 1.12621 2.53832 -35867412.0 0.00029 0.00023 2.0 0.000 0.000 0.000 +2457358.5 1.10588 2.53585 -35869004.3 0.00029 0.00024 2.1 0.000 0.000 0.000 +2457359.5 1.08759 2.53293 -35870690.2 0.00029 0.00024 2.6 0.000 0.000 0.000 +2457360.5 1.07197 2.53259 -35872378.4 0.00029 0.00023 3.8 0.000 0.000 0.000 +2457361.5 1.05970 2.53120 -35874076.3 0.00021 0.00015 6.0 0.000 0.000 0.000 +2457362.5 1.04898 2.52915 -35875723.7 0.00022 0.00018 4.6 0.000 0.000 0.000 +2457363.5 1.03635 2.52682 -35877403.3 0.00022 0.00018 4.8 0.000 0.000 0.000 +2457364.5 1.02369 2.52175 -35879054.9 0.00018 0.00016 5.7 0.000 0.000 0.000 +2457365.5 1.01056 2.51633 -35880684.6 0.00019 0.00018 4.3 0.000 0.000 0.000 +2457366.5 0.99084 2.51233 -35882303.2 0.00019 0.00017 3.1 0.000 0.000 0.000 +2457367.5 0.96452 2.50799 -35883795.9 0.00018 0.00017 3.1 0.000 0.000 0.000 +2457368.5 0.93859 2.50542 -35885219.0 0.00019 0.00012 3.7 0.000 0.000 0.000 +2457369.5 0.91538 2.50524 -35886638.8 0.00017 0.00018 2.2 0.000 0.000 0.000 +2457370.5 0.89360 2.50594 -35888019.1 0.00017 0.00018 2.3 0.000 0.000 0.000 +2457371.5 0.87128 2.50678 -35889488.6 0.00039 0.00036 2.8 0.000 0.000 0.000 +2457372.5 0.85059 2.50379 -35891078.9 0.00039 0.00038 2.5 0.000 0.000 0.000 +2457373.5 0.83470 2.49960 -35892782.0 0.00040 0.00038 3.5 0.000 0.000 0.000 +2457374.5 0.81972 2.50184 -35894601.6 0.00040 0.00038 3.6 0.000 0.000 0.000 +2457375.5 0.80098 2.50755 -35896495.3 0.00040 0.00036 7.6 0.000 0.000 0.000 +2457376.5 0.77998 2.51159 -35898496.8 0.00040 0.00036 4.3 0.000 0.000 0.000 +2457377.5 0.75734 2.51410 -35900479.4 0.00022 0.00020 3.4 0.000 0.000 0.000 +2457378.5 0.73433 2.51549 -35902363.8 0.00021 0.00017 3.6 0.000 0.000 0.000 +2457379.5 0.71281 2.51666 -35904138.4 0.00022 0.00018 3.0 0.000 0.000 0.000 +2457380.5 0.69003 2.52174 -35905695.8 0.00021 0.00020 3.1 0.000 0.000 0.000 +2457381.5 0.66437 2.52951 -35907096.2 0.00020 0.00021 3.3 0.000 0.000 0.000 +2457382.5 0.63996 2.53409 -35908554.6 0.00018 0.00020 4.3 0.000 0.000 0.000 +2457383.5 0.61849 2.53828 -35909921.4 0.00017 0.00023 5.0 0.000 0.000 0.000 +2457384.5 0.59676 2.54392 -35911406.3 0.00022 0.00025 3.9 0.000 0.000 0.000 +2457385.5 0.57499 2.54990 -35913021.9 0.00023 0.00027 4.4 0.000 0.000 0.000 +2457386.5 0.55398 2.55646 -35914729.1 0.00025 0.00025 4.2 0.000 0.000 0.000 +2457387.5 0.53348 2.56238 -35916524.2 0.00026 0.00025 4.1 0.000 0.000 0.000 +2457388.5 0.51141 2.56823 -35918420.5 0.00026 0.00026 4.5 0.000 0.000 0.000 +2457389.5 0.48904 2.57326 -35920362.7 0.00028 0.00018 5.1 0.000 0.000 0.000 +2457390.5 0.47091 2.57736 -35922284.6 0.00025 0.00016 4.6 0.000 0.000 0.000 +2457391.5 0.45643 2.58597 -35924225.7 0.00025 0.00015 4.1 0.000 0.000 0.000 +2457392.5 0.44087 2.60155 -35926153.9 0.00024 0.00017 3.7 0.000 0.000 0.000 +2457393.5 0.42266 2.61816 -35928037.5 0.00032 0.00020 4.1 0.000 0.000 0.000 +2457394.5 0.40671 2.63320 -35929878.6 0.00033 0.00019 3.7 0.000 0.000 0.000 +2457395.5 0.39445 2.65106 -35931683.7 0.00032 0.00019 3.6 0.000 0.000 0.000 +2457396.5 0.37862 2.67144 -35933416.0 0.00030 0.00017 6.9 0.000 0.000 0.000 +2457397.5 0.35914 2.68911 -35935176.6 0.00030 0.00018 7.3 0.000 0.000 0.000 +2457398.5 0.34217 2.70667 -35936974.2 0.00031 0.00022 4.4 0.000 0.000 0.000 +2457399.5 0.32694 2.72545 -35938936.0 0.00020 0.00022 3.9 0.000 0.000 0.000 +2457400.5 0.31042 2.74353 -35940992.0 0.00022 0.00023 3.4 0.000 0.000 0.000 +2457401.5 0.29483 2.75657 -35943120.7 0.00021 0.00022 3.5 0.000 0.000 0.000 +2457402.5 0.28165 2.76740 -35945367.1 0.00020 0.00022 3.2 0.000 0.000 0.000 +2457403.5 0.26667 2.78112 -35947516.6 0.00019 0.00022 2.8 0.000 0.000 0.000 +2457404.5 0.24990 2.79597 -35949647.1 0.00017 0.00019 2.7 0.000 0.000 0.000 +2457405.5 0.23209 2.81322 -35951582.7 0.00019 0.00019 2.6 0.000 0.000 0.000 +2457406.5 0.21235 2.83199 -35953489.4 0.00016 0.00017 3.4 0.000 0.000 0.000 +2457407.5 0.18942 2.85003 -35955259.7 0.00017 0.00018 2.9 0.000 0.000 0.000 +2457408.5 0.16424 2.86463 -35956892.7 0.00017 0.00018 2.7 0.000 0.000 0.000 +2457409.5 0.13799 2.87756 -35958459.5 0.00018 0.00018 2.8 0.000 0.000 0.000 +2457410.5 0.11048 2.88792 -35959983.2 0.00018 0.00028 3.2 0.000 0.000 0.000 +2457411.5 0.08597 2.89386 -35961576.9 0.00017 0.00027 3.5 0.000 0.000 0.000 +2457412.5 0.06823 2.89878 -35963184.6 0.00018 0.00027 3.9 0.000 0.000 0.000 +2457413.5 0.05646 2.90596 -35964817.2 0.00018 0.00026 6.7 0.000 0.000 0.000 +2457414.5 0.04628 2.91761 -35966425.4 0.00023 0.00028 3.5 0.000 0.000 0.000 +2457415.5 0.03467 2.92985 -35968009.9 0.00024 0.00028 3.5 0.000 0.000 0.000 +2457416.5 0.02261 2.94182 -35969546.8 0.00025 0.00018 3.6 0.000 0.000 0.000 +2457417.5 0.00747 2.95770 -35971063.0 0.00025 0.00020 3.6 0.000 0.000 0.000 +2457418.5 -0.01290 2.97585 -35972407.7 0.00025 0.00019 2.5 0.000 0.000 0.000 +2457419.5 -0.03257 2.99534 -35973712.7 0.00028 0.00025 2.5 0.000 0.000 0.000 +2457420.5 -0.04733 3.01299 -35975008.7 0.00026 0.00024 3.4 0.000 0.000 0.000 +2457421.5 -0.05715 3.02749 -35976200.6 0.00025 0.00026 3.8 0.000 0.000 0.000 +2457422.5 -0.06515 3.04532 -35977383.1 0.00024 0.00025 4.1 0.000 0.000 0.000 +2457423.5 -0.07522 3.06451 -35978572.9 0.00023 0.00023 4.3 0.000 0.000 0.000 +2457424.5 -0.08667 3.08159 -35979811.0 0.00023 0.00023 6.9 0.000 0.000 0.000 +2457425.5 -0.09465 3.09817 -35981349.5 0.00020 0.00019 6.0 0.000 0.000 0.000 +2457426.5 -0.09666 3.11496 -35982893.3 0.00025 0.00022 6.4 0.000 0.000 0.000 +2457427.5 -0.09728 3.13184 -35984691.4 0.00027 0.00021 7.8 0.000 0.000 0.000 +2457428.5 -0.09972 3.15039 -35986686.5 0.00028 0.00024 6.4 0.000 0.000 0.000 +2457429.5 -0.10549 3.17102 -35988788.4 0.00029 0.00024 6.2 0.000 0.000 0.000 +2457430.5 -0.11246 3.19048 -35990834.1 0.00030 0.00024 6.1 0.000 0.000 0.000 +2457431.5 -0.11897 3.21098 -35992870.9 0.00030 0.00023 5.4 0.000 0.000 0.000 +2457432.5 -0.12477 3.23274 -35994758.8 0.00032 0.00021 3.9 0.000 0.000 0.000 +2457433.5 -0.13129 3.25345 -35996496.4 0.00029 0.00020 3.7 0.000 0.000 0.000 +2457434.5 -0.13931 3.27043 -35998088.3 0.00025 0.00017 4.8 0.000 0.000 0.000 +2457435.5 -0.14817 3.28565 -35999531.2 0.00028 0.00019 4.0 0.000 0.000 0.000 +2457436.5 -0.15991 3.30420 -36000855.8 0.00027 0.00019 4.5 0.000 0.000 0.000 +2457437.5 -0.17374 3.32395 -36002144.3 0.00026 0.00017 4.5 0.000 0.000 0.000 +2457438.5 -0.18601 3.34046 -36003466.6 0.00020 0.00019 5.9 0.000 0.000 0.000 +2457439.5 -0.19338 3.35585 -36004887.4 0.00023 0.00022 4.0 0.000 0.000 0.000 +2457440.5 -0.19963 3.37637 -36006430.8 0.00024 0.00022 3.9 0.000 0.000 0.000 +2457441.5 -0.20888 3.39848 -36008074.8 0.00020 0.00020 3.8 0.000 0.000 0.000 +2457442.5 -0.21607 3.42085 -36009792.2 0.00023 0.00022 3.2 0.000 0.000 0.000 +2457443.5 -0.21922 3.44367 -36011575.7 0.00024 0.00021 3.1 0.000 0.000 0.000 +2457444.5 -0.22054 3.46353 -36013419.3 0.00023 0.00018 4.0 0.000 0.000 0.000 +2457445.5 -0.22401 3.48462 -36015216.4 0.00020 0.00015 6.6 0.000 0.000 0.000 +2457446.5 -0.23256 3.50783 -36016965.8 0.00020 0.00014 4.5 0.000 0.000 0.000 +2457447.5 -0.24242 3.52818 -36018690.7 0.00019 0.00014 4.5 0.000 0.000 0.000 +2457448.5 -0.24831 3.54434 -36020365.3 0.00017 0.00010 5.8 0.000 0.000 0.000 +2457449.5 -0.24678 3.55975 -36022012.2 0.00020 0.00012 4.8 0.000 0.000 0.000 +2457450.5 -0.24068 3.57899 -36023702.0 0.00020 0.00012 4.5 0.000 0.000 0.000 +2457451.5 -0.23751 3.60216 -36025441.6 0.00021 0.00012 4.2 0.000 0.000 0.000 +2457452.5 -0.23771 3.62632 -36027235.9 0.00021 0.00012 5.7 0.000 0.000 0.000 +2457453.5 -0.23761 3.65062 -36029184.3 0.00022 0.00013 3.8 0.000 0.000 0.000 +2457454.5 -0.24043 3.67571 -36031309.1 0.00020 0.00013 4.4 0.000 0.000 0.000 +2457455.5 -0.24479 3.70059 -36033560.2 0.00017 0.00010 5.1 0.000 0.000 0.000 +2457456.5 -0.24850 3.72517 -36035917.2 0.00019 0.00014 4.2 0.000 0.000 0.000 +2457457.5 -0.25093 3.74907 -36038365.2 0.00017 0.00014 4.1 0.000 0.000 0.000 +2457458.5 -0.25115 3.77033 -36040862.4 0.00015 0.00013 3.9 0.000 0.000 0.000 +2457459.5 -0.25201 3.78965 -36043281.6 0.00014 0.00013 5.6 0.000 0.000 0.000 +2457460.5 -0.25215 3.80814 -36045579.7 0.00015 0.00017 3.7 0.000 0.000 0.000 +2457461.5 -0.24779 3.82662 -36047746.6 0.00016 0.00017 3.2 0.000 0.000 0.000 +2457462.5 -0.23959 3.84805 -36049769.3 0.00016 0.00015 4.3 0.000 0.000 0.000 +2457463.5 -0.22729 3.87143 -36051648.3 0.00018 0.00019 4.1 0.000 0.000 0.000 +2457464.5 -0.20807 3.89502 -36053466.4 0.00017 0.00019 4.1 0.000 0.000 0.000 +2457465.5 -0.18407 3.92004 -36055284.3 0.00018 0.00018 4.2 0.000 0.000 0.000 +2457466.5 -0.16205 3.94506 -36057142.8 0.00017 0.00016 6.0 0.000 0.000 0.000 +2457467.5 -0.14621 3.96996 -36059084.5 0.00016 0.00025 4.8 0.000 0.000 0.000 +2457468.5 -0.13787 3.99528 -36061098.8 0.00015 0.00029 4.3 0.000 0.000 0.000 +2457469.5 -0.13578 4.02047 -36063186.0 0.00035 0.00029 5.3 0.000 0.000 0.000 +2457470.5 -0.13665 4.04362 -36065293.3 0.00035 0.00029 5.2 0.000 0.000 0.000 +2457471.5 -0.13657 4.06420 -36067339.8 0.00035 0.00030 5.4 0.000 0.000 0.000 +2457472.5 -0.13280 4.08436 -36069354.0 0.00035 0.00029 5.1 0.000 0.000 0.000 +2457473.5 -0.12639 4.10506 -36071389.9 0.00035 0.00023 8.3 0.000 0.000 0.000 +2457474.5 -0.11875 4.12611 -36073399.3 0.00035 0.00017 8.5 0.000 0.000 0.000 +2457475.5 -0.11115 4.14540 -36075335.9 0.00014 0.00015 5.2 0.000 0.000 0.000 +2457476.5 -0.10282 4.16331 -36077184.3 0.00014 0.00016 5.2 0.000 0.000 0.000 +2457477.5 -0.09407 4.18045 -36078960.9 0.00015 0.00018 3.8 0.000 0.000 0.000 +2457478.5 -0.08788 4.19719 -36080700.3 0.00015 0.00019 3.7 0.000 0.000 0.000 +2457479.5 -0.08433 4.21232 -36082450.7 0.00014 0.00022 3.8 0.000 0.000 0.000 +2457480.5 -0.08110 4.22696 -36084246.1 0.00014 0.00023 4.0 0.000 0.000 0.000 +2457481.5 -0.07539 4.24171 -36086149.8 0.00018 0.00023 3.5 0.000 0.000 0.000 +2457482.5 -0.06444 4.25891 -36088153.1 0.00021 0.00023 4.0 0.000 0.000 0.000 +2457483.5 -0.04740 4.27893 -36090298.7 0.00022 0.00028 5.1 0.000 0.000 0.000 +2457484.5 -0.02620 4.29936 -36092576.5 0.00024 0.00028 3.8 0.000 0.000 0.000 +2457485.5 -0.00810 4.32230 -36094933.8 0.00024 0.00026 3.8 0.000 0.000 0.000 +2457486.5 0.00643 4.34744 -36097274.4 0.00024 0.00025 3.7 0.000 0.000 0.000 +2457487.5 0.02040 4.37076 -36099575.2 0.00021 0.00023 4.5 0.000 0.000 0.000 +2457488.5 0.03327 4.39071 -36101721.9 0.00019 0.00023 3.9 0.000 0.000 0.000 +2457489.5 0.04600 4.40959 -36103665.1 0.00016 0.00014 3.3 0.000 0.000 0.000 +2457490.5 0.06123 4.42701 -36105473.6 0.00013 0.00012 4.6 0.000 0.000 0.000 +2457491.5 0.07722 4.44223 -36107167.5 0.00015 0.00015 4.8 0.000 0.000 0.000 +2457492.5 0.09092 4.45711 -36108754.3 0.00015 0.00015 5.1 0.000 0.000 0.000 +2457493.5 0.10452 4.47495 -36110295.9 0.00013 0.00014 5.2 0.000 0.000 0.000 +2457494.5 0.11945 4.49661 -36111895.2 0.00013 0.00014 7.1 0.000 0.000 0.000 +2457495.5 0.13625 4.51915 -36113549.2 0.00020 0.00018 4.5 0.000 0.000 0.000 +2457496.5 0.15428 4.54083 -36115215.5 0.00024 0.00020 4.2 0.000 0.000 0.000 +2457497.5 0.17023 4.55806 -36116907.6 0.00024 0.00019 3.7 0.000 0.000 0.000 +2457498.5 0.18550 4.56827 -36118631.0 0.00027 0.00032 3.3 0.000 0.000 0.000 +2457499.5 0.20258 4.57669 -36120326.2 0.00027 0.00033 3.0 0.000 0.000 0.000 +2457500.5 0.22071 4.58748 -36121970.8 0.00026 0.00033 2.4 0.000 0.000 0.000 +2457501.5 0.24016 4.60241 -36123581.4 0.00021 0.00030 3.7 0.000 0.000 0.000 +2457502.5 0.25728 4.61885 -36125115.8 0.00017 0.00030 4.3 0.000 0.000 0.000 +2457503.5 0.27016 4.63537 -36126518.6 0.00016 0.00030 3.7 0.000 0.000 0.000 +2457504.5 0.28007 4.65350 -36127797.9 0.00013 0.00016 4.3 0.000 0.000 0.000 +2457505.5 0.28840 4.67020 -36129028.8 0.00018 0.00022 4.4 0.000 0.000 0.000 +2457506.5 0.29679 4.68552 -36130316.7 0.00018 0.00024 4.6 0.000 0.000 0.000 +2457507.5 0.30605 4.69878 -36131701.2 0.00020 0.00024 4.5 0.000 0.000 0.000 +2457508.5 0.32205 4.70945 -36133193.1 0.00020 0.00024 4.7 0.000 0.000 0.000 +2457509.5 0.34497 4.72316 -36134817.1 0.00020 0.00023 6.3 0.000 0.000 0.000 +2457510.5 0.36641 4.74006 -36136586.2 0.00025 0.00026 5.5 0.000 0.000 0.000 +2457511.5 0.38572 4.75541 -36138539.9 0.00020 0.00021 6.8 0.000 0.000 0.000 +2457512.5 0.40596 4.76841 -36140669.9 0.00025 0.00028 7.3 0.000 0.000 0.000 +2457513.5 0.42247 4.78020 -36142862.7 0.00025 0.00027 7.3 0.000 0.000 0.000 +2457514.5 0.43465 4.79093 -36145009.8 0.00025 0.00027 7.2 0.000 0.000 0.000 +2457515.5 0.44895 4.80249 -36147029.8 0.00024 0.00028 7.1 0.000 0.000 0.000 +2457516.5 0.46586 4.81546 -36148878.3 0.00020 0.00026 8.4 0.000 0.000 0.000 +2457517.5 0.48336 4.82864 -36150549.3 0.00020 0.00026 8.9 0.000 0.000 0.000 +2457518.5 0.50194 4.84123 -36152072.6 0.00021 0.00019 10.3 0.000 0.000 0.000 +2457519.5 0.52205 4.85303 -36153475.2 0.00023 0.00025 9.8 0.000 0.000 0.000 +2457520.5 0.54281 4.86370 -36154831.4 0.00023 0.00026 9.9 0.000 0.000 0.000 +2457521.5 0.56360 4.87337 -36156259.2 0.00024 0.00026 9.6 0.000 0.000 0.000 +2457522.5 0.58416 4.88205 -36157809.5 0.00022 0.00024 14.8 0.000 0.000 0.000 +2457523.5 0.60446 4.88810 -36159459.3 0.00022 0.00024 12.4 0.000 0.000 0.000 +2457524.5 0.62506 4.89167 -36161178.1 0.00017 0.00024 4.1 0.000 0.000 0.000 +2457525.5 0.64525 4.89671 -36162927.6 0.00014 0.00017 3.6 0.000 0.000 0.000 +2457526.5 0.66355 4.90375 -36164654.0 0.00020 0.00027 5.7 0.000 0.000 0.000 +2457527.5 0.67985 4.91203 -36166295.7 0.00020 0.00027 6.0 0.000 0.000 0.000 +2457528.5 0.69377 4.92164 -36167864.0 0.00023 0.00027 6.4 0.000 0.000 0.000 +2457529.5 0.70404 4.93079 -36169377.6 0.00024 0.00028 6.4 0.000 0.000 0.000 +2457530.5 0.71204 4.93653 -36170841.7 0.00026 0.00033 9.3 0.000 0.000 0.000 +2457531.5 0.72442 4.93860 -36172305.0 0.00026 0.00034 9.3 0.000 0.000 0.000 +2457532.5 0.74299 4.94221 -36173760.0 0.00022 0.00025 8.5 0.000 0.000 0.000 +2457533.5 0.76388 4.94844 -36175170.0 0.00030 0.00039 8.2 0.000 0.000 0.000 +2457534.5 0.78694 4.95481 -36176535.8 0.00029 0.00039 7.8 0.000 0.000 0.000 +2457535.5 0.80870 4.96094 -36177918.3 0.00029 0.00039 9.4 0.000 0.000 0.000 +2457536.5 0.82737 4.96544 -36179389.4 0.00027 0.00032 19.3 0.000 0.000 0.000 +2457537.5 0.84995 4.96679 -36180976.1 0.00028 0.00032 19.5 0.000 0.000 0.000 +2457538.5 0.87770 4.96587 -36182701.6 0.00028 0.00034 7.1 0.000 0.000 0.000 +2457539.5 0.90375 4.96548 -36184512.9 0.00019 0.00017 7.2 0.000 0.000 0.000 +2457540.5 0.92773 4.96677 -36186356.4 0.00018 0.00019 6.6 0.000 0.000 0.000 +2457541.5 0.95044 4.96948 -36188194.7 0.00018 0.00022 5.2 0.000 0.000 0.000 +2457542.5 0.97038 4.97198 -36189936.7 0.00018 0.00024 4.5 0.000 0.000 0.000 +2457543.5 0.98741 4.97405 -36191490.2 0.00020 0.00024 4.8 0.000 0.000 0.000 +2457544.5 1.00108 4.97489 -36192844.0 0.00020 0.00021 7.8 0.000 0.000 0.000 +2457545.5 1.01470 4.97580 -36194048.9 0.00023 0.00022 4.4 0.000 0.000 0.000 +2457546.5 1.02668 4.97851 -36195150.0 0.00024 0.00025 5.8 0.000 0.000 0.000 +2457547.5 1.03665 4.97917 -36196185.1 0.00026 0.00026 5.4 0.000 0.000 0.000 +2457548.5 1.04792 4.97696 -36197171.3 0.00024 0.00025 5.5 0.000 0.000 0.000 +2457549.5 1.06115 4.97157 -36198113.0 0.00023 0.00025 6.0 0.000 0.000 0.000 +2457550.5 1.07652 4.96356 -36199042.0 0.00023 0.00028 6.2 0.000 0.000 0.000 +2457551.5 1.09563 4.95349 -36199971.2 0.00021 0.00028 5.0 0.000 0.000 0.000 +2457552.5 1.12203 4.94338 -36200860.1 0.00018 0.00024 4.7 0.000 0.000 0.000 +2457553.5 1.15182 4.94089 -36201679.7 0.00016 0.00020 5.0 0.000 0.000 0.000 +2457554.5 1.17973 4.94510 -36202426.1 0.00022 0.00023 4.8 0.000 0.000 0.000 +2457555.5 1.20744 4.94780 -36203060.6 0.00021 0.00025 4.7 0.000 0.000 0.000 +2457556.5 1.23634 4.94544 -36203581.0 0.00020 0.00021 4.5 0.000 0.000 0.000 +2457557.5 1.26195 4.94007 -36204029.9 0.00020 0.00020 7.1 0.000 0.000 0.000 +2457558.5 1.28282 4.93196 -36204359.0 0.00027 0.00022 6.6 0.000 0.000 0.000 +2457559.5 1.30349 4.92255 -36204617.4 0.00027 0.00024 6.5 0.000 0.000 0.000 +2457560.5 1.32246 4.91466 -36204834.3 0.00023 0.00025 7.6 0.000 0.000 0.000 +2457561.5 1.34164 4.90732 -36205081.0 0.00025 0.00028 5.5 0.000 0.000 0.000 +2457562.5 1.36422 4.90194 -36205431.9 0.00025 0.00027 5.3 0.000 0.000 0.000 +2457563.5 1.38662 4.89580 -36205890.3 0.00024 0.00028 5.1 0.000 0.000 0.000 +2457564.5 1.40632 4.88995 -36206512.6 0.00016 0.00027 4.0 0.000 0.000 0.000 +2457565.5 1.42513 4.88694 -36207316.5 0.00019 0.00034 4.8 0.000 0.000 0.000 +2457566.5 1.44399 4.88151 -36208262.0 0.00020 0.00034 4.7 0.000 0.000 0.000 +2457567.5 1.46436 4.87229 -36209307.5 0.00021 0.00032 6.0 0.000 0.000 0.000 +2457568.5 1.48511 4.86320 -36210414.5 0.00022 0.00035 5.1 0.000 0.000 0.000 +2457569.5 1.50277 4.85323 -36211482.4 0.00021 0.00035 5.0 0.000 0.000 0.000 +2457570.5 1.52192 4.83942 -36212435.6 0.00020 0.00035 5.2 0.000 0.000 0.000 +2457571.5 1.54422 4.82638 -36213313.8 0.00017 0.00026 5.1 0.000 0.000 0.000 +2457572.5 1.56551 4.81603 -36214103.5 0.00017 0.00023 4.7 0.000 0.000 0.000 +2457573.5 1.58557 4.80603 -36214752.4 0.00014 0.00021 4.4 0.000 0.000 0.000 +2457574.5 1.60544 4.79570 -36215314.3 0.00013 0.00014 5.3 0.000 0.000 0.000 +2457575.5 1.62456 4.78482 -36215835.6 0.00023 0.00018 4.1 0.000 0.000 0.000 +2457576.5 1.64388 4.77372 -36216347.9 0.00023 0.00018 3.9 0.000 0.000 0.000 +2457577.5 1.66434 4.76326 -36216901.8 0.00024 0.00019 4.7 0.000 0.000 0.000 +2457578.5 1.68672 4.75138 -36217509.5 0.00024 0.00018 6.4 0.000 0.000 0.000 +2457579.5 1.71339 4.73717 -36218145.4 0.00026 0.00020 4.9 0.000 0.000 0.000 +2457580.5 1.74100 4.72330 -36218691.3 0.00025 0.00018 4.8 0.000 0.000 0.000 +2457581.5 1.76805 4.71181 -36219142.2 0.00018 0.00014 6.0 0.000 0.000 0.000 +2457582.5 1.79189 4.70236 -36219540.6 0.00019 0.00016 4.7 0.000 0.000 0.000 +2457583.5 1.80990 4.69227 -36219847.2 0.00018 0.00016 4.7 0.000 0.000 0.000 +2457584.5 1.82788 4.68046 -36220005.9 0.00016 0.00016 4.5 0.000 0.000 0.000 +2457585.5 1.84899 4.66757 -36220047.1 0.00012 0.00013 5.5 0.000 0.000 0.000 +2457586.5 1.87159 4.65521 -36220032.5 0.00014 0.00015 4.6 0.000 0.000 0.000 +2457587.5 1.89611 4.64309 -36220005.9 0.00013 0.00015 4.1 0.000 0.000 0.000 +2457588.5 1.92137 4.63105 -36219997.5 0.00011 0.00014 5.1 0.000 0.000 0.000 +2457589.5 1.94327 4.62002 -36220069.1 0.00023 0.00015 3.7 0.000 0.000 0.000 +2457590.5 1.96186 4.60932 -36220250.1 0.00023 0.00015 4.4 0.000 0.000 0.000 +2457591.5 1.98096 4.59770 -36220553.7 0.00023 0.00015 4.8 0.000 0.000 0.000 +2457592.5 2.00154 4.58642 -36220970.8 0.00022 0.00013 6.5 0.000 0.000 0.000 +2457593.5 2.02207 4.57609 -36221449.9 0.00024 0.00015 3.6 0.000 0.000 0.000 +2457594.5 2.04207 4.56713 -36221995.1 0.00024 0.00017 3.6 0.000 0.000 0.000 +2457595.5 2.06013 4.55985 -36222600.3 0.00013 0.00019 3.6 0.000 0.000 0.000 +2457596.5 2.07459 4.55144 -36223201.0 0.00014 0.00020 3.4 0.000 0.000 0.000 +2457597.5 2.08759 4.54228 -36223760.0 0.00013 0.00020 3.0 0.000 0.000 0.000 +2457598.5 2.10088 4.53149 -36224266.1 0.00014 0.00023 3.0 0.000 0.000 0.000 +2457599.5 2.11405 4.51892 -36224711.1 0.00012 0.00024 6.2 0.000 0.000 0.000 +2457600.5 2.12490 4.50616 -36225098.5 0.00021 0.00023 6.3 0.000 0.000 0.000 +2457601.5 2.13082 4.49386 -36225447.2 0.00023 0.00023 6.3 0.000 0.000 0.000 +2457602.5 2.13397 4.47963 -36225841.1 0.00023 0.00023 7.4 0.000 0.000 0.000 +2457603.5 2.14327 4.46185 -36226339.0 0.00025 0.00023 5.1 0.000 0.000 0.000 +2457604.5 2.15742 4.44639 -36226919.1 0.00025 0.00024 5.1 0.000 0.000 0.000 +2457605.5 2.17109 4.43340 -36227567.6 0.00025 0.00025 5.3 0.000 0.000 0.000 +2457606.5 2.18328 4.42077 -36228254.7 0.00018 0.00025 4.9 0.000 0.000 0.000 +2457607.5 2.19401 4.40621 -36228963.2 0.00016 0.00026 4.7 0.000 0.000 0.000 +2457608.5 2.20512 4.39129 -36229673.0 0.00015 0.00027 4.7 0.000 0.000 0.000 +2457609.5 2.21598 4.37680 -36230366.1 0.00013 0.00026 5.5 0.000 0.000 0.000 +2457610.5 2.22577 4.36096 -36231028.3 0.00014 0.00024 4.9 0.000 0.000 0.000 +2457611.5 2.23398 4.34269 -36231605.8 0.00015 0.00019 5.0 0.000 0.000 0.000 +2457612.5 2.24346 4.32086 -36232082.2 0.00016 0.00018 4.7 0.000 0.000 0.000 +2457613.5 2.25384 4.29793 -36232443.7 0.00015 0.00013 5.2 0.000 0.000 0.000 +2457614.5 2.25943 4.27462 -36232714.4 0.00016 0.00013 5.5 0.000 0.000 0.000 +2457615.5 2.26137 4.25000 -36232975.1 0.00016 0.00020 6.5 0.000 0.000 0.000 +2457616.5 2.26423 4.22493 -36233323.1 0.00014 0.00019 14.1 0.000 0.000 0.000 +2457617.5 2.26689 4.20241 -36233795.9 0.00016 0.00021 7.6 0.000 0.000 0.000 +2457618.5 2.26916 4.18150 -36234410.3 0.00015 0.00020 7.8 0.000 0.000 0.000 +2457619.5 2.27279 4.16145 -36235233.4 0.00016 0.00021 7.7 0.000 0.000 0.000 +2457620.5 2.27523 4.14221 -36236229.1 0.00015 0.00023 7.6 0.000 0.000 0.000 +2457621.5 2.27660 4.12237 -36237322.4 0.00015 0.00026 5.6 0.000 0.000 0.000 +2457622.5 2.27863 4.10214 -36238443.9 0.00015 0.00027 4.5 0.000 0.000 0.000 +2457623.5 2.28319 4.07950 -36239546.2 0.00011 0.00026 5.6 0.000 0.000 0.000 +2457624.5 2.29203 4.05769 -36240573.8 0.00013 0.00029 4.1 0.000 0.000 0.000 +2457625.5 2.30278 4.03857 -36241495.6 0.00014 0.00030 4.2 0.000 0.000 0.000 +2457626.5 2.31386 4.01973 -36242326.4 0.00016 0.00027 4.4 0.000 0.000 0.000 +2457627.5 2.32518 3.99899 -36243063.6 0.00016 0.00023 5.4 0.000 0.000 0.000 +2457628.5 2.33726 3.97726 -36243728.9 0.00019 0.00027 6.1 0.000 0.000 0.000 +2457629.5 2.34709 3.95670 -36244333.0 0.00020 0.00026 6.2 0.000 0.000 0.000 +2457630.5 2.35397 3.93347 -36244959.7 0.00019 0.00025 9.2 0.000 0.000 0.000 +2457631.5 2.35946 3.91085 -36245679.7 0.00022 0.00024 6.5 0.000 0.000 0.000 +2457632.5 2.36449 3.89319 -36246461.1 0.00020 0.00024 6.2 0.000 0.000 0.000 +2457633.5 2.36798 3.88068 -36247292.0 0.00020 0.00020 6.1 0.000 0.000 0.000 +2457634.5 2.36613 3.87047 -36248176.6 0.00016 0.00014 5.5 0.000 0.000 0.000 +2457635.5 2.35979 3.85731 -36249118.9 0.00016 0.00014 5.0 0.000 0.000 0.000 +2457636.5 2.35162 3.84045 -36250086.4 0.00023 0.00017 4.1 0.000 0.000 0.000 +2457637.5 2.34554 3.82146 -36251032.6 0.00019 0.00017 4.8 0.000 0.000 0.000 +2457638.5 2.34366 3.80134 -36251919.0 0.00024 0.00020 3.4 0.000 0.000 0.000 +2457639.5 2.34457 3.77955 -36252746.2 0.00025 0.00019 3.6 0.000 0.000 0.000 +2457640.5 2.34674 3.75769 -36253510.9 0.00025 0.00019 3.6 0.000 0.000 0.000 +2457641.5 2.34637 3.73762 -36254193.8 0.00025 0.00020 3.5 0.000 0.000 0.000 +2457642.5 2.34675 3.71780 -36254892.2 0.00026 0.00022 5.5 0.000 0.000 0.000 +2457643.5 2.35108 3.69833 -36255632.7 0.00026 0.00023 5.6 0.000 0.000 0.000 +2457644.5 2.35691 3.67898 -36256407.3 0.00021 0.00020 10.8 0.000 0.000 0.000 +2457645.5 2.36060 3.66131 -36257237.9 0.00023 0.00021 6.7 0.000 0.000 0.000 +2457646.5 2.36349 3.64399 -36258295.8 0.00023 0.00023 6.6 0.000 0.000 0.000 +2457647.5 2.36855 3.62489 -36259545.5 0.00023 0.00023 6.6 0.000 0.000 0.000 +2457648.5 2.37279 3.60553 -36260936.9 0.00015 0.00017 5.6 0.000 0.000 0.000 +2457649.5 2.37494 3.58751 -36262405.3 0.00020 0.00018 4.3 0.000 0.000 0.000 +2457650.5 2.37465 3.56999 -36263901.9 0.00021 0.00018 4.2 0.000 0.000 0.000 +2457651.5 2.37288 3.55119 -36265366.3 0.00019 0.00018 4.5 0.000 0.000 0.000 +2457652.5 2.36945 3.53114 -36266741.2 0.00019 0.00018 4.2 0.000 0.000 0.000 +2457653.5 2.36600 3.50998 -36267974.9 0.00019 0.00017 4.2 0.000 0.000 0.000 +2457654.5 2.36297 3.48965 -36269108.5 0.00018 0.00017 4.2 0.000 0.000 0.000 +2457655.5 2.35714 3.46886 -36270190.1 0.00017 0.00014 5.3 0.000 0.000 0.000 +2457656.5 2.35141 3.44559 -36271257.1 0.00021 0.00016 4.5 0.000 0.000 0.000 +2457657.5 2.34771 3.42182 -36272385.0 0.00021 0.00017 4.6 0.000 0.000 0.000 +2457658.5 2.34176 3.39728 -36273577.5 0.00020 0.00014 5.4 0.000 0.000 0.000 +2457659.5 2.33712 3.37027 -36274814.6 0.00020 0.00015 4.2 0.000 0.000 0.000 +2457660.5 2.33888 3.34526 -36276150.2 0.00021 0.00016 4.0 0.000 0.000 0.000 +2457661.5 2.34052 3.32647 -36277574.8 0.00017 0.00019 4.0 0.000 0.000 0.000 +2457662.5 2.33609 3.31057 -36278979.1 0.00010 0.00019 4.5 0.000 0.000 0.000 +2457663.5 2.32634 3.29534 -36280339.8 0.00010 0.00018 4.4 0.000 0.000 0.000 +2457664.5 2.31296 3.27895 -36281603.8 0.00021 0.00020 4.2 0.000 0.000 0.000 +2457665.5 2.29548 3.26221 -36282772.9 0.00020 0.00021 5.1 0.000 0.000 0.000 +2457666.5 2.27415 3.24681 -36283889.4 0.00023 0.00025 4.4 0.000 0.000 0.000 +2457667.5 2.25277 3.23015 -36284944.7 0.00023 0.00026 4.2 0.000 0.000 0.000 +2457668.5 2.23412 3.21370 -36285933.9 0.00023 0.00027 4.2 0.000 0.000 0.000 +2457669.5 2.21821 3.19581 -36286900.4 0.00024 0.00027 4.1 0.000 0.000 0.000 +2457670.5 2.20950 3.17748 -36287872.5 0.00015 0.00025 4.3 0.000 0.000 0.000 +2457671.5 2.20789 3.15961 -36288931.5 0.00017 0.00025 4.3 0.000 0.000 0.000 +2457672.5 2.20713 3.14127 -36290151.0 0.00013 0.00020 4.7 0.000 0.000 0.000 +2457673.5 2.20457 3.12534 -36291564.6 0.00016 0.00017 5.4 0.000 0.000 0.000 +2457674.5 2.20001 3.11289 -36293180.8 0.00016 0.00016 5.5 0.000 0.000 0.000 +2457675.5 2.18994 3.10337 -36295011.1 0.00015 0.00017 5.5 0.000 0.000 0.000 +2457676.5 2.17372 3.09260 -36297020.7 0.00015 0.00017 5.5 0.000 0.000 0.000 +2457677.5 2.15453 3.07879 -36299114.3 0.00020 0.00018 5.4 0.000 0.000 0.000 +2457678.5 2.13492 3.06122 -36301174.3 0.00019 0.00020 5.5 0.000 0.000 0.000 +2457679.5 2.11719 3.04078 -36303093.0 0.00016 0.00021 5.0 0.000 0.000 0.000 +2457680.5 2.09943 3.02110 -36304857.4 0.00021 0.00023 5.3 0.000 0.000 0.000 +2457681.5 2.08047 3.00082 -36306460.6 0.00024 0.00023 5.2 0.000 0.000 0.000 +2457682.5 2.06162 2.98190 -36307907.5 0.00026 0.00025 5.4 0.000 0.000 0.000 +2457683.5 2.04269 2.96476 -36309315.8 0.00023 0.00028 7.1 0.000 0.000 0.000 +2457684.5 2.02744 2.94849 -36310745.5 0.00027 0.00028 5.1 0.000 0.000 0.000 +2457685.5 2.01410 2.93493 -36312168.1 0.00027 0.00026 5.1 0.000 0.000 0.000 +2457686.5 2.00020 2.91828 -36313592.4 0.00024 0.00024 4.7 0.000 0.000 0.000 +2457687.5 1.98698 2.89904 -36315065.4 0.00024 0.00022 4.7 0.000 0.000 0.000 +2457688.5 1.96978 2.88249 -36316535.3 0.00022 0.00022 4.6 0.000 0.000 0.000 +2457689.5 1.94858 2.86789 -36318003.5 0.00022 0.00018 4.2 0.000 0.000 0.000 +2457690.5 1.92933 2.85525 -36319498.2 0.00018 0.00015 5.3 0.000 0.000 0.000 +2457691.5 1.91482 2.84577 -36320998.0 0.00025 0.00017 4.4 0.000 0.000 0.000 +2457692.5 1.90105 2.83624 -36322448.4 0.00026 0.00020 4.3 0.000 0.000 0.000 +2457693.5 1.88708 2.82520 -36323818.0 0.00024 0.00020 4.1 0.000 0.000 0.000 +2457694.5 1.87237 2.81542 -36325131.8 0.00025 0.00021 4.6 0.000 0.000 0.000 +2457695.5 1.85933 2.80464 -36326392.7 0.00024 0.00019 5.5 0.000 0.000 0.000 +2457696.5 1.84994 2.79483 -36327625.0 0.00023 0.00019 5.8 0.000 0.000 0.000 +2457697.5 1.83799 2.79041 -36328870.2 0.00015 0.00017 8.7 0.000 0.000 0.000 +2457698.5 1.81937 2.78928 -36330196.3 0.00022 0.00016 7.6 0.000 0.000 0.000 +2457699.5 1.79384 2.78764 -36331671.7 0.00023 0.00015 7.6 0.000 0.000 0.000 +2457700.5 1.76436 2.78334 -36333269.8 0.00020 0.00011 9.4 0.000 0.000 0.000 +2457701.5 1.73612 2.77704 -36335005.1 0.00026 0.00013 5.8 0.000 0.000 0.000 +2457702.5 1.71326 2.77068 -36336901.2 0.00026 0.00015 5.2 0.000 0.000 0.000 +2457703.5 1.69371 2.76387 -36338945.0 0.00026 0.00015 5.0 0.000 0.000 0.000 +2457704.5 1.67410 2.75403 -36341097.4 0.00020 0.00013 4.7 0.000 0.000 0.000 +2457705.5 1.65512 2.74310 -36343236.4 0.00031 0.00016 6.5 0.000 0.000 0.000 +2457706.5 1.63508 2.73284 -36345259.0 0.00031 0.00016 6.5 0.000 0.000 0.000 +2457707.5 1.61301 2.72265 -36347099.9 0.00027 0.00015 7.8 0.000 0.000 0.000 +2457708.5 1.58919 2.71436 -36348693.5 0.00028 0.00014 6.6 0.000 0.000 0.000 +2457709.5 1.56718 2.70830 -36350071.9 0.00028 0.00013 6.7 0.000 0.000 0.000 +2457710.5 1.54995 2.70463 -36351357.9 0.00028 0.00014 6.8 0.000 0.000 0.000 +2457711.5 1.53243 2.70256 -36352624.2 0.00016 0.00011 6.7 0.000 0.000 0.000 +2457712.5 1.50934 2.70000 -36353943.6 0.00024 0.00014 6.9 0.000 0.000 0.000 +2457713.5 1.48295 2.69532 -36355327.0 0.00025 0.00017 6.8 0.000 0.000 0.000 +2457714.5 1.45999 2.69020 -36356806.5 0.00024 0.00017 7.8 0.000 0.000 0.000 +2457715.5 1.44082 2.68680 -36358332.2 0.00024 0.00018 7.7 0.000 0.000 0.000 +2457716.5 1.42526 2.68452 -36359897.9 0.00024 0.00021 7.6 0.000 0.000 0.000 +2457717.5 1.41280 2.68397 -36361480.1 0.00024 0.00023 6.9 0.000 0.000 0.000 +2457718.5 1.40215 2.68387 -36363035.2 0.00016 0.00021 7.1 0.000 0.000 0.000 +2457719.5 1.38966 2.68564 -36364514.1 0.00027 0.00019 6.4 0.000 0.000 0.000 +2457720.5 1.36957 2.68699 -36365903.9 0.00027 0.00019 6.8 0.000 0.000 0.000 +2457721.5 1.34447 2.68382 -36367215.3 0.00027 0.00018 8.0 0.000 0.000 0.000 +2457722.5 1.32035 2.67911 -36368473.0 0.00030 0.00019 4.4 0.000 0.000 0.000 +2457723.5 1.29873 2.67417 -36369701.8 0.00030 0.00016 4.6 0.000 0.000 0.000 +2457724.5 1.27941 2.67047 -36370916.5 0.00030 0.00017 4.7 0.000 0.000 0.000 +2457725.5 1.26015 2.66832 -36372124.6 0.00019 0.00018 5.1 0.000 0.000 0.000 +2457726.5 1.24141 2.66539 -36373334.3 0.00028 0.00020 6.0 0.000 0.000 0.000 +2457727.5 1.22398 2.66303 -36374645.8 0.00028 0.00020 5.8 0.000 0.000 0.000 +2457728.5 1.20759 2.66025 -36376047.9 0.00024 0.00018 7.8 0.000 0.000 0.000 +2457729.5 1.19506 2.65726 -36377547.4 0.00025 0.00022 6.9 0.000 0.000 0.000 +2457730.5 1.18680 2.65558 -36379171.7 0.00025 0.00022 7.2 0.000 0.000 0.000 +2457731.5 1.18231 2.65647 -36380912.3 0.00025 0.00020 7.3 0.000 0.000 0.000 +2457732.5 1.18061 2.65946 -36382728.8 0.00013 0.00018 7.7 0.000 0.000 0.000 +2457733.5 1.17987 2.66328 -36384516.7 0.00025 0.00023 7.3 0.000 0.000 0.000 +2457734.5 1.17529 2.66836 -36386186.8 0.00025 0.00023 7.2 0.000 0.000 0.000 +2457735.5 1.16350 2.67265 -36387701.0 0.00026 0.00024 7.8 0.000 0.000 0.000 +2457736.5 1.14690 2.67403 -36389022.4 0.00026 0.00025 7.2 0.000 0.000 0.000 +2457737.5 1.13056 2.67420 -36390250.8 0.00026 0.00025 7.2 0.000 0.000 0.000 +2457738.5 1.11782 2.67169 -36391491.2 0.00027 0.00025 7.2 0.000 0.000 0.000 +2457739.5 1.10788 2.66593 -36392760.2 0.00018 0.00020 8.2 0.000 0.000 0.000 +2457740.5 1.09710 2.66100 -36394024.1 0.00018 0.00019 8.4 0.000 0.000 0.000 +2457741.5 1.08374 2.65923 -36395282.2 0.00020 0.00017 8.3 0.000 0.000 0.000 +2457742.5 1.06395 2.66002 -36396562.4 0.00036 0.00020 4.4 0.000 0.000 0.000 +2457743.5 1.03652 2.65932 -36397837.0 0.00036 0.00021 3.8 0.000 0.000 0.000 +2457744.5 1.00763 2.65661 -36399102.4 0.00036 0.00021 3.8 0.000 0.000 0.000 +2457745.5 0.98063 2.65205 -36400339.0 0.00035 0.00021 3.6 0.000 0.000 0.000 +2457746.5 0.95592 2.64690 -36401509.8 0.00036 0.00020 3.6 0.000 0.000 0.000 +2457747.5 0.93324 2.64541 -36402581.7 0.00032 0.00016 4.1 0.000 0.000 0.000 +2457748.5 0.91175 2.64593 -36403552.6 0.00046 0.00029 9.5 0.000 0.000 0.000 +2457749.5 0.89084 2.64637 -36404454.3 0.00046 0.00030 9.9 0.000 0.000 0.000 +2457750.5 0.86813 2.64636 -36405285.0 0.00052 0.00036 7.6 0.000 0.000 0.000 +2457751.5 0.84635 2.64193 -36406088.5 0.00052 0.00037 7.9 0.000 0.000 0.000 +2457752.5 0.82883 2.63539 -36406918.0 0.00052 0.00038 7.9 0.000 0.000 0.000 +2457753.5 0.81400 2.63094 -36407760.1 0.00052 0.00039 7.8 0.000 0.000 0.000 +2457754.5 0.80504 2.63145 -36408717.9 0.00028 0.00028 7.7 0.000 0.000 0.000 +2457755.5 0.80285 2.63605 -36409824.8 0.00029 0.00032 6.3 0.000 0.000 0.000 +2457756.5 0.80265 2.64004 -36411059.4 0.00034 0.00031 5.8 0.000 0.000 0.000 +2457757.5 0.80001 2.64281 -36412437.4 0.00036 0.00033 5.5 0.000 0.000 0.000 +2457758.5 0.78838 2.64752 -36413982.7 0.00037 0.00032 5.2 0.000 0.000 0.000 +2457759.5 0.76770 2.65017 -36415573.8 0.00038 0.00032 5.0 0.000 0.000 0.000 +2457760.5 0.75021 2.65078 -36417155.6 0.00038 0.00032 4.8 0.000 0.000 0.000 +2457761.5 0.73607 2.65319 -36418694.6 0.00037 0.00026 6.8 0.000 0.000 0.000 +2457762.5 0.72306 2.65417 -36420148.0 0.00028 0.00021 7.0 0.000 0.000 0.000 +2457763.5 0.70917 2.65630 -36421480.9 0.00028 0.00017 7.0 0.000 0.000 0.000 +2457764.5 0.69163 2.66071 -36422679.7 0.00031 0.00020 4.6 0.000 0.000 0.000 +2457765.5 0.67226 2.66764 -36423842.3 0.00029 0.00022 4.6 0.000 0.000 0.000 +2457766.5 0.65524 2.67601 -36425023.9 0.00028 0.00023 4.6 0.000 0.000 0.000 +2457767.5 0.64010 2.68510 -36426253.4 0.00028 0.00024 4.2 0.000 0.000 0.000 +2457768.5 0.62083 2.69367 -36427561.0 0.00023 0.00022 4.2 0.000 0.000 0.000 +2457769.5 0.59665 2.70134 -36428917.8 0.00023 0.00022 3.9 0.000 0.000 0.000 +2457770.5 0.56613 2.70764 -36430260.6 0.00019 0.00020 4.2 0.000 0.000 0.000 +2457771.5 0.53232 2.71123 -36431525.9 0.00022 0.00024 3.7 0.000 0.000 0.000 +2457772.5 0.49875 2.71570 -36432734.0 0.00023 0.00024 3.8 0.000 0.000 0.000 +2457773.5 0.46822 2.72081 -36433853.1 0.00022 0.00025 3.7 0.000 0.000 0.000 +2457774.5 0.44298 2.72797 -36434923.7 0.00021 0.00027 3.8 0.000 0.000 0.000 +2457775.5 0.42324 2.73617 -36435946.5 0.00019 0.00034 4.4 0.000 0.000 0.000 +2457776.5 0.40837 2.74584 -36436891.8 0.00019 0.00033 4.4 0.000 0.000 0.000 +2457777.5 0.39584 2.75691 -36437742.5 0.00018 0.00030 5.8 0.000 0.000 0.000 +2457778.5 0.38419 2.76660 -36438546.2 0.00019 0.00031 5.1 0.000 0.000 0.000 +2457779.5 0.37052 2.77659 -36439335.3 0.00019 0.00029 5.2 0.000 0.000 0.000 +2457780.5 0.35659 2.78538 -36440133.1 0.00020 0.00028 5.3 0.000 0.000 0.000 +2457781.5 0.34428 2.79489 -36441018.2 0.00017 0.00017 5.6 0.000 0.000 0.000 +2457782.5 0.33211 2.80605 -36442012.4 0.00017 0.00021 4.7 0.000 0.000 0.000 +2457783.5 0.32265 2.81668 -36443159.7 0.00015 0.00019 4.8 0.000 0.000 0.000 +2457784.5 0.31680 2.82691 -36444428.2 0.00014 0.00014 5.4 0.000 0.000 0.000 +2457785.5 0.31192 2.83688 -36445810.7 0.00017 0.00014 4.5 0.000 0.000 0.000 +2457786.5 0.30791 2.84656 -36447265.5 0.00016 0.00014 4.4 0.000 0.000 0.000 +2457787.5 0.30465 2.85680 -36448735.1 0.00017 0.00015 4.2 0.000 0.000 0.000 +2457788.5 0.30001 2.86902 -36450167.4 0.00016 0.00010 5.0 0.000 0.000 0.000 +2457789.5 0.29222 2.88319 -36451527.8 0.00016 0.00014 3.5 0.000 0.000 0.000 +2457790.5 0.27829 2.89692 -36452805.9 0.00017 0.00016 3.1 0.000 0.000 0.000 +2457791.5 0.25763 2.90895 -36454038.5 0.00014 0.00017 2.2 0.000 0.000 0.000 +2457792.5 0.23511 2.91982 -36455223.6 0.00016 0.00020 2.6 0.000 0.000 0.000 +2457793.5 0.21457 2.93080 -36456432.4 0.00015 0.00019 2.6 0.000 0.000 0.000 +2457794.5 0.19689 2.94073 -36457730.5 0.00016 0.00020 2.5 0.000 0.000 0.000 +2457795.5 0.18114 2.95062 -36459141.0 0.00015 0.00017 5.5 0.000 0.000 0.000 +2457796.5 0.16538 2.96134 -36460686.8 0.00017 0.00021 4.4 0.000 0.000 0.000 +2457797.5 0.15001 2.97090 -36462320.7 0.00017 0.00021 4.5 0.000 0.000 0.000 +2457798.5 0.13589 2.98018 -36463998.3 0.00014 0.00023 5.4 0.000 0.000 0.000 +2457799.5 0.12176 2.98933 -36465661.5 0.00019 0.00024 4.7 0.000 0.000 0.000 +2457800.5 0.10663 2.99875 -36467288.2 0.00018 0.00024 4.7 0.000 0.000 0.000 +2457801.5 0.09148 3.00656 -36468810.3 0.00018 0.00024 3.9 0.000 0.000 0.000 +2457802.5 0.08111 3.01501 -36470193.7 0.00015 0.00019 4.6 0.000 0.000 0.000 +2457803.5 0.07639 3.02934 -36471369.6 0.00015 0.00018 4.6 0.000 0.000 0.000 +2457804.5 0.07304 3.04775 -36472414.8 0.00019 0.00013 5.0 0.000 0.000 0.000 +2457805.5 0.06835 3.06847 -36473384.3 0.00016 0.00015 5.9 0.000 0.000 0.000 +2457806.5 0.06351 3.08955 -36474307.0 0.00018 0.00019 4.9 0.000 0.000 0.000 +2457807.5 0.06319 3.11034 -36475247.8 0.00019 0.00020 4.9 0.000 0.000 0.000 +2457808.5 0.06445 3.13441 -36476290.9 0.00019 0.00020 5.0 0.000 0.000 0.000 +2457809.5 0.06298 3.15816 -36477386.1 0.00019 0.00020 5.1 0.000 0.000 0.000 +2457810.5 0.05807 3.17634 -36478599.8 0.00022 0.00023 4.6 0.000 0.000 0.000 +2457811.5 0.05065 3.19170 -36479937.1 0.00021 0.00021 4.7 0.000 0.000 0.000 +2457812.5 0.04485 3.20819 -36481437.2 0.00021 0.00020 5.6 0.000 0.000 0.000 +2457813.5 0.04277 3.22721 -36483062.7 0.00022 0.00024 5.2 0.000 0.000 0.000 +2457814.5 0.04465 3.24539 -36484704.3 0.00022 0.00024 5.1 0.000 0.000 0.000 +2457815.5 0.04746 3.26402 -36486258.1 0.00023 0.00025 5.0 0.000 0.000 0.000 +2457816.5 0.04925 3.28336 -36487729.5 0.00016 0.00021 6.3 0.000 0.000 0.000 +2457817.5 0.04981 3.30092 -36489125.9 0.00022 0.00020 5.0 0.000 0.000 0.000 +2457818.5 0.04614 3.31856 -36490445.6 0.00021 0.00018 4.9 0.000 0.000 0.000 +2457819.5 0.03889 3.33524 -36491676.2 0.00019 0.00012 5.1 0.000 0.000 0.000 +2457820.5 0.03433 3.34961 -36492947.9 0.00020 0.00015 5.0 0.000 0.000 0.000 +2457821.5 0.03584 3.36267 -36494276.7 0.00020 0.00016 5.1 0.000 0.000 0.000 +2457822.5 0.04053 3.37754 -36495676.7 0.00020 0.00020 4.8 0.000 0.000 0.000 +2457823.5 0.04500 3.39515 -36497141.9 0.00011 0.00021 7.4 0.000 0.000 0.000 +2457824.5 0.04599 3.41417 -36498698.2 0.00016 0.00024 4.1 0.000 0.000 0.000 +2457825.5 0.04388 3.43077 -36500332.2 0.00016 0.00023 4.0 0.000 0.000 0.000 +2457826.5 0.04142 3.44483 -36502034.4 0.00014 0.00023 3.9 0.000 0.000 0.000 +2457827.5 0.03987 3.45880 -36503687.2 0.00015 0.00026 4.1 0.000 0.000 0.000 +2457828.5 0.03986 3.47229 -36505212.4 0.00016 0.00025 4.0 0.000 0.000 0.000 +2457829.5 0.04123 3.48928 -36506600.2 0.00016 0.00025 3.6 0.000 0.000 0.000 +2457830.5 0.04457 3.50975 -36507880.0 0.00012 0.00022 5.0 0.000 0.000 0.000 +2457831.5 0.04873 3.53190 -36509067.7 0.00018 0.00023 4.7 0.000 0.000 0.000 +2457832.5 0.05224 3.55631 -36510195.8 0.00019 0.00022 4.9 0.000 0.000 0.000 +2457833.5 0.05412 3.58008 -36511335.2 0.00019 0.00018 6.5 0.000 0.000 0.000 +2457834.5 0.05667 3.60253 -36512501.4 0.00021 0.00018 5.5 0.000 0.000 0.000 +2457835.5 0.05861 3.62588 -36513761.1 0.00021 0.00018 5.5 0.000 0.000 0.000 +2457836.5 0.05500 3.64812 -36515156.1 0.00020 0.00016 5.0 0.000 0.000 0.000 +2457837.5 0.05042 3.66665 -36516628.5 0.00015 0.00014 6.3 0.000 0.000 0.000 +2457838.5 0.04918 3.68406 -36518285.6 0.00018 0.00025 5.6 0.000 0.000 0.000 +2457839.5 0.04969 3.70247 -36520103.6 0.00021 0.00025 5.7 0.000 0.000 0.000 +2457840.5 0.05045 3.71994 -36522010.8 0.00019 0.00026 7.2 0.000 0.000 0.000 +2457841.5 0.05294 3.73497 -36523992.6 0.00029 0.00027 6.8 0.000 0.000 0.000 +2457842.5 0.05317 3.74975 -36525972.6 0.00032 0.00027 6.9 0.000 0.000 0.000 +2457843.5 0.05075 3.76266 -36527822.6 0.00033 0.00029 6.7 0.000 0.000 0.000 +2457844.5 0.05315 3.77568 -36529520.8 0.00030 0.00028 8.9 0.000 0.000 0.000 +2457845.5 0.05773 3.78921 -36531090.8 0.00026 0.00028 7.1 0.000 0.000 0.000 +2457846.5 0.06305 3.79860 -36532516.7 0.00026 0.00026 6.8 0.000 0.000 0.000 +2457847.5 0.07217 3.80894 -36533848.7 0.00018 0.00019 6.9 0.000 0.000 0.000 +2457848.5 0.08405 3.82540 -36535193.7 0.00017 0.00022 5.3 0.000 0.000 0.000 +2457849.5 0.09587 3.84548 -36536565.3 0.00015 0.00019 5.2 0.000 0.000 0.000 +2457850.5 0.10352 3.86538 -36538085.3 0.00016 0.00016 5.3 0.000 0.000 0.000 +2457851.5 0.10575 3.88377 -36539696.9 0.00017 0.00016 5.6 0.000 0.000 0.000 +2457852.5 0.10655 3.90088 -36541370.1 0.00019 0.00021 4.2 0.000 0.000 0.000 +2457853.5 0.11039 3.91796 -36543018.1 0.00021 0.00021 4.2 0.000 0.000 0.000 +2457854.5 0.11624 3.93538 -36544594.0 0.00022 0.00017 3.9 0.000 0.000 0.000 +2457855.5 0.12542 3.95154 -36546153.1 0.00022 0.00018 4.0 0.000 0.000 0.000 +2457856.5 0.14231 3.96842 -36547741.4 0.00022 0.00017 3.7 0.000 0.000 0.000 +2457857.5 0.16303 3.98828 -36549300.2 0.00023 0.00018 3.5 0.000 0.000 0.000 +2457858.5 0.18194 4.01073 -36550784.2 0.00021 0.00013 4.7 0.000 0.000 0.000 +2457859.5 0.19749 4.03460 -36552201.1 0.00019 0.00014 4.8 0.000 0.000 0.000 +2457860.5 0.21200 4.05690 -36553638.5 0.00017 0.00023 5.3 0.000 0.000 0.000 +2457861.5 0.22678 4.07717 -36555108.4 0.00021 0.00023 5.5 0.000 0.000 0.000 +2457862.5 0.23837 4.09684 -36556588.5 0.00023 0.00030 5.4 0.000 0.000 0.000 +2457863.5 0.24791 4.11302 -36558096.8 0.00022 0.00029 5.3 0.000 0.000 0.000 +2457864.5 0.26149 4.12850 -36559643.3 0.00022 0.00029 5.3 0.000 0.000 0.000 +2457865.5 0.27854 4.14986 -36561365.4 0.00024 0.00029 5.6 0.000 0.000 0.000 +2457866.5 0.29129 4.17483 -36563271.4 0.00025 0.00023 6.0 0.000 0.000 0.000 +2457867.5 0.29833 4.19697 -36565353.2 0.00022 0.00022 6.4 0.000 0.000 0.000 +2457868.5 0.30568 4.21567 -36567541.4 0.00018 0.00012 7.8 0.000 0.000 0.000 +2457869.5 0.31468 4.23182 -36569736.0 0.00027 0.00017 4.1 0.000 0.000 0.000 +2457870.5 0.32296 4.24540 -36571863.3 0.00027 0.00017 4.2 0.000 0.000 0.000 +2457871.5 0.33276 4.25918 -36573747.6 0.00024 0.00018 3.8 0.000 0.000 0.000 +2457872.5 0.34679 4.27552 -36575411.0 0.00022 0.00018 3.9 0.000 0.000 0.000 +2457873.5 0.36306 4.29433 -36576885.1 0.00024 0.00019 3.7 0.000 0.000 0.000 +2457874.5 0.37918 4.31266 -36578275.5 0.00026 0.00020 2.8 0.000 0.000 0.000 +2457875.5 0.39395 4.32850 -36579656.5 0.00015 0.00021 4.4 0.000 0.000 0.000 +2457876.5 0.40534 4.34138 -36581036.5 0.00019 0.00027 3.5 0.000 0.000 0.000 +2457877.5 0.41669 4.35207 -36582421.5 0.00021 0.00027 3.2 0.000 0.000 0.000 +2457878.5 0.43197 4.36510 -36583887.5 0.00027 0.00027 3.1 0.000 0.000 0.000 +2457879.5 0.45179 4.37830 -36585459.4 0.00027 0.00028 3.3 0.000 0.000 0.000 +2457880.5 0.47682 4.39031 -36587091.3 0.00026 0.00029 3.1 0.000 0.000 0.000 +2457881.5 0.50024 4.40420 -36588664.2 0.00027 0.00026 3.1 0.000 0.000 0.000 +2457882.5 0.51990 4.41763 -36590071.6 0.00027 0.00022 2.7 0.000 0.000 0.000 +2457883.5 0.54001 4.43052 -36591419.3 0.00029 0.00028 4.3 0.000 0.000 0.000 +2457884.5 0.56267 4.44390 -36592704.3 0.00024 0.00029 4.5 0.000 0.000 0.000 +2457885.5 0.58556 4.45861 -36593903.1 0.00023 0.00029 4.4 0.000 0.000 0.000 +2457886.5 0.60739 4.47240 -36595011.9 0.00022 0.00027 5.1 0.000 0.000 0.000 +2457887.5 0.62880 4.48392 -36596062.5 0.00023 0.00027 5.3 0.000 0.000 0.000 +2457888.5 0.64822 4.49268 -36597039.6 0.00020 0.00025 5.3 0.000 0.000 0.000 +2457889.5 0.66760 4.49796 -36598005.2 0.00015 0.00021 6.1 0.000 0.000 0.000 +2457890.5 0.68699 4.50219 -36599078.9 0.00020 0.00026 4.3 0.000 0.000 0.000 +2457891.5 0.70607 4.50744 -36600223.2 0.00022 0.00025 4.2 0.000 0.000 0.000 +2457892.5 0.72541 4.51732 -36601426.7 0.00022 0.00024 4.1 0.000 0.000 0.000 +2457893.5 0.74417 4.52825 -36602718.0 0.00019 0.00024 2.6 0.000 0.000 0.000 +2457894.5 0.76385 4.53653 -36604141.3 0.00026 0.00026 2.8 0.000 0.000 0.000 +2457895.5 0.78297 4.54428 -36605706.3 0.00026 0.00022 2.9 0.000 0.000 0.000 +2457896.5 0.79815 4.55052 -36607367.8 0.00022 0.00015 3.8 0.000 0.000 0.000 +2457897.5 0.81107 4.55431 -36609067.4 0.00022 0.00020 3.3 0.000 0.000 0.000 +2457898.5 0.82457 4.55640 -36610689.3 0.00023 0.00021 3.4 0.000 0.000 0.000 +2457899.5 0.83945 4.55905 -36612166.3 0.00023 0.00023 3.4 0.000 0.000 0.000 +2457900.5 0.85566 4.56233 -36613462.1 0.00015 0.00021 3.6 0.000 0.000 0.000 +2457901.5 0.87547 4.56364 -36614559.1 0.00015 0.00023 3.9 0.000 0.000 0.000 +2457902.5 0.89897 4.56557 -36615611.9 0.00020 0.00026 3.6 0.000 0.000 0.000 +2457903.5 0.92113 4.57017 -36616744.9 0.00017 0.00023 4.3 0.000 0.000 0.000 +2457904.5 0.94035 4.57324 -36617965.8 0.00022 0.00024 3.8 0.000 0.000 0.000 +2457905.5 0.95931 4.57499 -36619284.3 0.00022 0.00023 4.1 0.000 0.000 0.000 +2457906.5 0.97797 4.57778 -36620653.9 0.00021 0.00023 4.4 0.000 0.000 0.000 +2457907.5 0.99526 4.58180 -36622024.0 0.00021 0.00021 4.2 0.000 0.000 0.000 +2457908.5 1.01171 4.58482 -36623318.2 0.00019 0.00016 5.2 0.000 0.000 0.000 +2457909.5 1.02680 4.58479 -36624520.4 0.00019 0.00020 4.4 0.000 0.000 0.000 +2457910.5 1.04020 4.58388 -36625632.9 0.00012 0.00017 5.7 0.000 0.000 0.000 +2457911.5 1.05388 4.58257 -36626614.6 0.00014 0.00016 3.6 0.000 0.000 0.000 +2457912.5 1.06928 4.58033 -36627409.4 0.00015 0.00016 3.5 0.000 0.000 0.000 +2457913.5 1.08441 4.57760 -36628050.0 0.00014 0.00014 3.3 0.000 0.000 0.000 +2457914.5 1.09942 4.57473 -36628541.8 0.00012 0.00016 3.4 0.000 0.000 0.000 +2457915.5 1.11505 4.57196 -36628958.8 0.00012 0.00020 3.0 0.000 0.000 0.000 +2457916.5 1.13046 4.57028 -36629367.5 0.00012 0.00020 2.9 0.000 0.000 0.000 +2457917.5 1.14604 4.57180 -36629740.1 0.00010 0.00020 4.2 0.000 0.000 0.000 +2457918.5 1.16334 4.57346 -36630134.8 0.00011 0.00020 4.1 0.000 0.000 0.000 +2457919.5 1.18367 4.57273 -36630638.6 0.00011 0.00020 4.1 0.000 0.000 0.000 +2457920.5 1.20564 4.57057 -36631255.2 0.00011 0.00019 4.2 0.000 0.000 0.000 +2457921.5 1.22546 4.56665 -36631924.2 0.00010 0.00011 6.6 0.000 0.000 0.000 +2457922.5 1.24184 4.56189 -36632715.7 0.00011 0.00011 6.0 0.000 0.000 0.000 +2457923.5 1.25838 4.55705 -36633533.2 0.00011 0.00010 6.5 0.000 0.000 0.000 +2457924.5 1.27928 4.55296 -36634327.0 0.00011 0.00013 6.6 0.000 0.000 0.000 +2457925.5 1.30487 4.54978 -36635183.3 0.00012 0.00017 5.9 0.000 0.000 0.000 +2457926.5 1.33212 4.54739 -36635895.6 0.00014 0.00017 5.9 0.000 0.000 0.000 +2457927.5 1.36010 4.54434 -36636461.7 0.00015 0.00018 5.6 0.000 0.000 0.000 +2457928.5 1.38732 4.54132 -36636891.9 0.00015 0.00017 5.5 0.000 0.000 0.000 +2457929.5 1.41017 4.53909 -36637293.1 0.00018 0.00021 5.4 0.000 0.000 0.000 +2457930.5 1.43067 4.53403 -36637713.2 0.00017 0.00020 5.2 0.000 0.000 0.000 +2457931.5 1.45119 4.52596 -36638197.6 0.00017 0.00018 5.4 0.000 0.000 0.000 +2457932.5 1.47244 4.51680 -36638764.4 0.00017 0.00024 4.3 0.000 0.000 0.000 +2457933.5 1.49684 4.50776 -36639357.2 0.00017 0.00024 4.3 0.000 0.000 0.000 +2457934.5 1.52509 4.49926 -36639927.3 0.00017 0.00024 4.3 0.000 0.000 0.000 +2457935.5 1.55710 4.49240 -36640483.8 0.00014 0.00020 3.8 0.000 0.000 0.000 +2457936.5 1.59043 4.48750 -36641068.6 0.00017 0.00021 4.2 0.000 0.000 0.000 +2457937.5 1.62334 4.48259 -36641574.0 0.00018 0.00021 4.3 0.000 0.000 0.000 +2457938.5 1.65717 4.47667 -36641907.4 0.00015 0.00013 5.5 0.000 0.000 0.000 +2457939.5 1.68985 4.47145 -36642149.3 0.00016 0.00016 4.3 0.000 0.000 0.000 +2457940.5 1.72046 4.46628 -36642320.5 0.00019 0.00016 4.4 0.000 0.000 0.000 +2457941.5 1.74986 4.45927 -36642410.6 0.00019 0.00019 4.3 0.000 0.000 0.000 +2457942.5 1.77773 4.45226 -36642492.9 0.00016 0.00018 4.5 0.000 0.000 0.000 +2457943.5 1.80146 4.44662 -36642574.8 0.00020 0.00023 6.6 0.000 0.000 0.000 +2457944.5 1.82040 4.43866 -36642666.5 0.00022 0.00024 6.6 0.000 0.000 0.000 +2457945.5 1.83709 4.42781 -36642847.5 0.00021 0.00022 10.2 0.000 0.000 0.000 +2457946.5 1.85288 4.41690 -36643201.5 0.00020 0.00024 6.6 0.000 0.000 0.000 +2457947.5 1.87193 4.40542 -36643660.3 0.00020 0.00024 6.6 0.000 0.000 0.000 +2457948.5 1.89325 4.39336 -36644225.0 0.00020 0.00025 6.4 0.000 0.000 0.000 +2457949.5 1.91093 4.38116 -36644867.2 0.00017 0.00020 4.0 0.000 0.000 0.000 +2457950.5 1.92375 4.36641 -36645488.7 0.00014 0.00021 4.0 0.000 0.000 0.000 +2457951.5 1.93545 4.35074 -36646066.1 0.00019 0.00024 5.2 0.000 0.000 0.000 +2457952.5 1.94758 4.33717 -36646613.1 0.00019 0.00022 7.5 0.000 0.000 0.000 +2457953.5 1.95930 4.32274 -36647130.1 0.00021 0.00022 5.6 0.000 0.000 0.000 +2457954.5 1.97053 4.30681 -36647524.4 0.00021 0.00023 5.6 0.000 0.000 0.000 +2457955.5 1.97913 4.28844 -36647902.1 0.00021 0.00023 5.3 0.000 0.000 0.000 +2457956.5 1.98718 4.26598 -36648214.7 0.00021 0.00022 5.4 0.000 0.000 0.000 +2457957.5 2.00041 4.24454 -36648494.0 0.00019 0.00030 5.1 0.000 0.000 0.000 +2457958.5 2.01776 4.22689 -36648810.3 0.00017 0.00030 5.0 0.000 0.000 0.000 +2457959.5 2.03418 4.21223 -36649222.9 0.00016 0.00028 6.3 0.000 0.000 0.000 +2457960.5 2.04827 4.19888 -36649773.1 0.00016 0.00029 6.4 0.000 0.000 0.000 +2457961.5 2.06119 4.18442 -36650445.0 0.00016 0.00029 6.5 0.000 0.000 0.000 +2457962.5 2.07093 4.16870 -36651168.5 0.00015 0.00028 6.4 0.000 0.000 0.000 +2457963.5 2.07765 4.15277 -36651839.4 0.00012 0.00015 6.9 0.000 0.000 0.000 +2457964.5 2.08319 4.13628 -36652470.2 0.00013 0.00023 5.4 0.000 0.000 0.000 +2457965.5 2.08935 4.11783 -36652980.9 0.00011 0.00023 5.4 0.000 0.000 0.000 +2457966.5 2.09942 4.09918 -36653342.7 0.00013 0.00021 3.9 0.000 0.000 0.000 +2457967.5 2.11470 4.08215 -36653582.4 0.00016 0.00027 4.5 0.000 0.000 0.000 +2457968.5 2.13255 4.06663 -36653720.5 0.00016 0.00029 4.9 0.000 0.000 0.000 +2457969.5 2.14645 4.05386 -36653793.2 0.00016 0.00031 5.5 0.000 0.000 0.000 +2457970.5 2.15475 4.04169 -36653868.7 0.00015 0.00027 7.6 0.000 0.000 0.000 +2457971.5 2.16230 4.02909 -36654011.6 0.00017 0.00028 6.0 0.000 0.000 0.000 +2457972.5 2.17235 4.01472 -36654145.9 0.00016 0.00027 6.0 0.000 0.000 0.000 +2457973.5 2.18588 3.99811 -36654366.1 0.00016 0.00022 6.6 0.000 0.000 0.000 +2457974.5 2.20167 3.98181 -36654709.2 0.00016 0.00021 4.1 0.000 0.000 0.000 +2457975.5 2.21913 3.96532 -36655188.5 0.00017 0.00019 3.7 0.000 0.000 0.000 +2457976.5 2.23410 3.94795 -36655819.2 0.00017 0.00019 3.3 0.000 0.000 0.000 +2457977.5 2.24283 3.93058 -36656514.4 0.00018 0.00017 4.0 0.000 0.000 0.000 +2457978.5 2.24909 3.91303 -36657189.5 0.00019 0.00019 4.6 0.000 0.000 0.000 +2457979.5 2.25416 3.89556 -36657816.8 0.00018 0.00020 4.7 0.000 0.000 0.000 +2457980.5 2.25452 3.87840 -36658342.9 0.00018 0.00017 7.0 0.000 0.000 0.000 +2457981.5 2.25213 3.85936 -36658763.0 0.00017 0.00018 5.9 0.000 0.000 0.000 +2457982.5 2.25484 3.83725 -36659063.9 0.00018 0.00016 6.2 0.000 0.000 0.000 +2457983.5 2.26397 3.81473 -36659259.0 0.00015 0.00017 5.9 0.000 0.000 0.000 +2457984.5 2.27540 3.79727 -36659480.6 0.00013 0.00015 6.7 0.000 0.000 0.000 +2457985.5 2.28614 3.78523 -36659695.8 0.00010 0.00024 6.4 0.000 0.000 0.000 +2457986.5 2.29543 3.77302 -36660031.7 0.00011 0.00025 6.5 0.000 0.000 0.000 +2457987.5 2.30234 3.75679 -36660508.9 0.00015 0.00023 8.2 0.000 0.000 0.000 +2457988.5 2.30701 3.73817 -36661011.5 0.00016 0.00026 4.9 0.000 0.000 0.000 +2457989.5 2.31138 3.71766 -36661517.5 0.00017 0.00027 4.7 0.000 0.000 0.000 +2457990.5 2.31903 3.69634 -36662091.8 0.00017 0.00026 4.5 0.000 0.000 0.000 +2457991.5 2.32947 3.67824 -36662568.6 0.00017 0.00020 3.8 0.000 0.000 0.000 +2457992.5 2.33745 3.66155 -36662934.4 0.00021 0.00020 3.2 0.000 0.000 0.000 +2457993.5 2.34304 3.64425 -36663199.2 0.00019 0.00021 3.0 0.000 0.000 0.000 +2457994.5 2.34839 3.62906 -36663403.3 0.00019 0.00016 5.8 0.000 0.000 0.000 +2457995.5 2.35186 3.61374 -36663534.8 0.00022 0.00019 4.7 0.000 0.000 0.000 +2457996.5 2.35411 3.59379 -36663592.9 0.00022 0.00019 5.0 0.000 0.000 0.000 +2457997.5 2.35620 3.57105 -36663693.0 0.00022 0.00019 4.8 0.000 0.000 0.000 +2457998.5 2.36074 3.55031 -36663816.8 0.00021 0.00020 5.3 0.000 0.000 0.000 +2457999.5 2.36829 3.53218 -36663980.3 0.00025 0.00021 5.4 0.000 0.000 0.000 +2458000.5 2.37522 3.51608 -36664208.5 0.00025 0.00027 5.7 0.000 0.000 0.000 +2458001.5 2.37980 3.50005 -36664595.9 0.00024 0.00026 8.2 0.000 0.000 0.000 +2458002.5 2.38678 3.48101 -36665181.6 0.00024 0.00028 5.4 0.000 0.000 0.000 +2458003.5 2.39920 3.46192 -36665945.2 0.00024 0.00027 5.4 0.000 0.000 0.000 +2458004.5 2.40971 3.44403 -36666826.0 0.00021 0.00025 5.4 0.000 0.000 0.000 +2458005.5 2.41410 3.42864 -36667773.6 0.00014 0.00024 5.5 0.000 0.000 0.000 +2458006.5 2.41410 3.41714 -36668731.9 0.00018 0.00019 5.1 0.000 0.000 0.000 +2458007.5 2.41157 3.40596 -36669623.8 0.00017 0.00016 4.8 0.000 0.000 0.000 +2458008.5 2.40605 3.39181 -36670430.1 0.00017 0.00015 6.2 0.000 0.000 0.000 +2458009.5 2.39449 3.37487 -36671107.2 0.00019 0.00020 4.4 0.000 0.000 0.000 +2458010.5 2.38043 3.35771 -36671706.2 0.00019 0.00021 4.4 0.000 0.000 0.000 +2458011.5 2.37020 3.34347 -36672287.3 0.00019 0.00022 4.2 0.000 0.000 0.000 +2458012.5 2.36206 3.33038 -36672874.9 0.00014 0.00021 3.4 0.000 0.000 0.000 +2458013.5 2.35490 3.31491 -36673629.6 0.00012 0.00022 4.0 0.000 0.000 0.000 +2458014.5 2.34956 3.29914 -36674547.8 0.00011 0.00021 3.9 0.000 0.000 0.000 +2458015.5 2.34336 3.28266 -36675617.8 0.00012 0.00020 5.6 0.000 0.000 0.000 +2458016.5 2.33471 3.26440 -36676730.0 0.00022 0.00022 5.0 0.000 0.000 0.000 +2458017.5 2.32439 3.24483 -36677821.6 0.00028 0.00020 5.1 0.000 0.000 0.000 +2458018.5 2.31460 3.22618 -36678893.4 0.00030 0.00021 5.2 0.000 0.000 0.000 +2458019.5 2.30309 3.20747 -36679852.0 0.00031 0.00021 6.3 0.000 0.000 0.000 +2458020.5 2.29237 3.18546 -36680705.3 0.00037 0.00023 6.7 0.000 0.000 0.000 +2458021.5 2.28391 3.16293 -36681421.1 0.00036 0.00020 5.7 0.000 0.000 0.000 +2458022.5 2.27474 3.14025 -36681993.7 0.00031 0.00018 8.4 0.000 0.000 0.000 +2458023.5 2.26740 3.11778 -36682519.9 0.00025 0.00026 5.5 0.000 0.000 0.000 +2458024.5 2.26161 3.09710 -36683028.1 0.00023 0.00026 5.4 0.000 0.000 0.000 +2458025.5 2.25566 3.07745 -36683611.6 0.00023 0.00026 5.4 0.000 0.000 0.000 +2458026.5 2.24895 3.05542 -36684212.5 0.00012 0.00027 5.4 0.000 0.000 0.000 +2458027.5 2.24021 3.03058 -36684856.7 0.00014 0.00029 5.3 0.000 0.000 0.000 +2458028.5 2.22952 3.00622 -36685495.8 0.00022 0.00028 5.3 0.000 0.000 0.000 +2458029.5 2.22187 2.98519 -36686244.7 0.00031 0.00028 7.3 0.000 0.000 0.000 +2458030.5 2.21878 2.96653 -36687119.9 0.00032 0.00036 3.6 0.000 0.000 0.000 +2458031.5 2.21935 2.94904 -36688152.8 0.00032 0.00038 3.4 0.000 0.000 0.000 +2458032.5 2.21537 2.93835 -36689297.0 0.00031 0.00038 2.8 0.000 0.000 0.000 +2458033.5 2.20159 2.93020 -36690454.2 0.00033 0.00037 2.2 0.000 0.000 0.000 +2458034.5 2.18344 2.92031 -36691597.3 0.00029 0.00037 2.2 0.000 0.000 0.000 +2458035.5 2.16233 2.90764 -36692633.0 0.00021 0.00033 2.1 0.000 0.000 0.000 +2458036.5 2.14161 2.89111 -36693532.1 0.00020 0.00025 3.5 0.000 0.000 0.000 +2458037.5 2.12204 2.87344 -36694312.7 0.00023 0.00023 2.2 0.000 0.000 0.000 +2458038.5 2.10326 2.85390 -36695058.6 0.00022 0.00019 2.4 0.000 0.000 0.000 +2458039.5 2.08720 2.83412 -36695822.4 0.00021 0.00018 2.7 0.000 0.000 0.000 +2458040.5 2.07179 2.81540 -36696695.8 0.00021 0.00017 3.0 0.000 0.000 0.000 +2458041.5 2.05797 2.79737 -36697669.0 0.00020 0.00019 2.9 0.000 0.000 0.000 +2458042.5 2.04803 2.78164 -36698780.6 0.00020 0.00018 2.8 0.000 0.000 0.000 +2458043.5 2.03814 2.76836 -36700059.0 0.00017 0.00014 5.1 0.000 0.000 0.000 +2458044.5 2.02590 2.75375 -36701421.5 0.00018 0.00016 5.4 0.000 0.000 0.000 +2458045.5 2.01278 2.73714 -36702810.2 0.00016 0.00017 5.3 0.000 0.000 0.000 +2458046.5 1.99987 2.72116 -36704183.8 0.00012 0.00021 5.2 0.000 0.000 0.000 +2458047.5 1.98701 2.70697 -36705454.5 0.00011 0.00018 6.4 0.000 0.000 0.000 +2458048.5 1.97359 2.69533 -36706621.7 0.00013 0.00019 5.9 0.000 0.000 0.000 +2458049.5 1.96023 2.68329 -36707731.1 0.00012 0.00021 5.8 0.000 0.000 0.000 +2458050.5 1.94560 2.66962 -36708701.2 0.00012 0.00022 6.2 0.000 0.000 0.000 +2458051.5 1.92708 2.65591 -36709554.3 0.00016 0.00022 4.2 0.000 0.000 0.000 +2458052.5 1.90610 2.64038 -36710377.5 0.00016 0.00019 4.3 0.000 0.000 0.000 +2458053.5 1.88631 2.62527 -36711204.9 0.00017 0.00018 3.8 0.000 0.000 0.000 +2458054.5 1.86652 2.61192 -36712057.7 0.00016 0.00018 3.8 0.000 0.000 0.000 +2458055.5 1.84723 2.59918 -36713005.7 0.00019 0.00017 3.5 0.000 0.000 0.000 +2458056.5 1.83181 2.58799 -36714078.5 0.00021 0.00013 3.5 0.000 0.000 0.000 +2458057.5 1.81808 2.57817 -36715243.7 0.00021 0.00014 6.7 0.000 0.000 0.000 +2458058.5 1.80371 2.56845 -36716581.4 0.00021 0.00017 5.8 0.000 0.000 0.000 +2458059.5 1.79195 2.55995 -36718025.9 0.00021 0.00017 5.7 0.000 0.000 0.000 +2458060.5 1.78141 2.55493 -36719556.6 0.00020 0.00018 5.5 0.000 0.000 0.000 +2458061.5 1.76811 2.54929 -36721108.4 0.00019 0.00020 6.7 0.000 0.000 0.000 +2458062.5 1.75246 2.53966 -36722571.8 0.00022 0.00026 6.3 0.000 0.000 0.000 +2458063.5 1.73508 2.52851 -36723885.9 0.00023 0.00025 5.4 0.000 0.000 0.000 +2458064.5 1.71898 2.51568 -36725040.9 0.00024 0.00025 6.8 0.000 0.000 0.000 +2458065.5 1.70584 2.50324 -36726082.5 0.00028 0.00027 6.5 0.000 0.000 0.000 +2458066.5 1.69153 2.49243 -36727144.7 0.00028 0.00026 6.4 0.000 0.000 0.000 +2458067.5 1.67701 2.47996 -36728244.7 0.00027 0.00024 6.7 0.000 0.000 0.000 +2458068.5 1.66376 2.46880 -36729435.0 0.00022 0.00020 6.9 0.000 0.000 0.000 +2458069.5 1.64952 2.46226 -36730750.9 0.00022 0.00020 4.3 0.000 0.000 0.000 +2458070.5 1.63355 2.45880 -36732183.1 0.00020 0.00020 4.3 0.000 0.000 0.000 +2458071.5 1.61638 2.45374 -36733687.1 0.00017 0.00021 2.2 0.000 0.000 0.000 +2458072.5 1.60067 2.44656 -36735177.5 0.00019 0.00022 2.5 0.000 0.000 0.000 +2458073.5 1.58366 2.44112 -36736585.4 0.00020 0.00025 2.8 0.000 0.000 0.000 +2458074.5 1.56001 2.43442 -36737854.4 0.00022 0.00023 3.3 0.000 0.000 0.000 +2458075.5 1.53301 2.42417 -36739007.0 0.00020 0.00023 4.8 0.000 0.000 0.000 +2458076.5 1.50772 2.41479 -36740045.2 0.00022 0.00028 6.1 0.000 0.000 0.000 +2458077.5 1.48237 2.40679 -36740904.8 0.00021 0.00027 5.0 0.000 0.000 0.000 +2458078.5 1.45771 2.39896 -36741597.0 0.00026 0.00026 6.2 0.000 0.000 0.000 +2458079.5 1.43796 2.39192 -36742227.8 0.00029 0.00024 6.3 0.000 0.000 0.000 +2458080.5 1.41963 2.38660 -36742872.1 0.00033 0.00023 6.3 0.000 0.000 0.000 +2458081.5 1.39561 2.38255 -36743557.3 0.00042 0.00023 6.0 0.000 0.000 0.000 +2458082.5 1.37049 2.37847 -36744281.6 0.00042 0.00017 4.6 0.000 0.000 0.000 +2458083.5 1.35290 2.37400 -36745059.4 0.00041 0.00026 16.7 0.000 0.000 0.000 +2458084.5 1.33487 2.37030 -36746006.8 0.00037 0.00035 15.1 0.000 0.000 0.000 +2458085.5 1.31169 2.36807 -36747165.4 0.00035 0.00036 14.5 0.000 0.000 0.000 +2458086.5 1.28800 2.36949 -36748520.3 0.00030 0.00037 10.9 0.000 0.000 0.000 +2458087.5 1.26450 2.37047 -36749984.9 0.00020 0.00036 8.9 0.000 0.000 0.000 +2458088.5 1.24136 2.36728 -36751499.9 0.00022 0.00035 8.4 0.000 0.000 0.000 +2458089.5 1.21708 2.36266 -36753030.1 0.00026 0.00028 8.4 0.000 0.000 0.000 +2458090.5 1.19361 2.35622 -36754437.8 0.00026 0.00022 8.1 0.000 0.000 0.000 +2458091.5 1.17048 2.34846 -36755722.2 0.00028 0.00022 6.8 0.000 0.000 0.000 +2458092.5 1.14732 2.33997 -36756927.8 0.00032 0.00022 7.4 0.000 0.000 0.000 +2458093.5 1.12381 2.33543 -36758121.0 0.00029 0.00022 7.4 0.000 0.000 0.000 +2458094.5 1.09627 2.33499 -36759343.6 0.00026 0.00022 13.0 0.000 0.000 0.000 +2458095.5 1.07015 2.33550 -36760611.6 0.00022 0.00021 15.1 0.000 0.000 0.000 +2458096.5 1.04848 2.33883 -36761950.6 0.00022 0.00015 17.0 0.000 0.000 0.000 +2458097.5 1.02634 2.34548 -36763386.3 0.00019 0.00011 21.1 0.000 0.000 0.000 +2458098.5 1.00209 2.35391 -36764849.2 0.00010 0.00011 24.3 0.000 0.000 0.000 +2458099.5 0.97793 2.36080 -36766272.8 0.00011 0.00011 28.3 0.000 0.000 0.000 +2458100.5 0.95414 2.36535 -36767613.9 0.00014 0.00017 10.0 0.000 0.000 0.000 +2458101.5 0.92912 2.37014 -36768815.8 0.00014 0.00017 9.7 0.000 0.000 0.000 +2458102.5 0.90338 2.37541 -36769864.4 0.00013 0.00015 9.6 0.000 0.000 0.000 +2458103.5 0.87661 2.38064 -36770708.8 0.00013 0.00017 9.2 0.000 0.000 0.000 +2458104.5 0.84839 2.38564 -36771432.4 0.00019 0.00033 9.2 0.000 0.000 0.000 +2458105.5 0.81920 2.39033 -36772059.3 0.00019 0.00033 6.2 0.000 0.000 0.000 +2458106.5 0.78912 2.39437 -36772583.7 0.00016 0.00031 6.4 0.000 0.000 0.000 +2458107.5 0.76096 2.39360 -36773087.1 0.00016 0.00032 6.3 0.000 0.000 0.000 +2458108.5 0.73787 2.38793 -36773636.7 0.00016 0.00033 6.7 0.000 0.000 0.000 +2458109.5 0.72006 2.38358 -36774176.6 0.00016 0.00034 6.5 0.000 0.000 0.000 +2458110.5 0.70637 2.38500 -36774770.3 0.00010 0.00021 4.9 0.000 0.000 0.000 +2458111.5 0.69448 2.39046 -36775513.4 0.00011 0.00023 22.1 0.000 0.000 0.000 +2458112.5 0.68452 2.39803 -36776378.4 0.00014 0.00023 16.1 0.000 0.000 0.000 +2458113.5 0.67774 2.40657 -36777335.2 0.00025 0.00034 12.4 0.000 0.000 0.000 +2458114.5 0.67332 2.41688 -36778397.6 0.00028 0.00040 6.5 0.000 0.000 0.000 +2458115.5 0.66553 2.43056 -36779543.2 0.00028 0.00039 6.6 0.000 0.000 0.000 +2458116.5 0.64991 2.44324 -36780691.8 0.00029 0.00038 6.7 0.000 0.000 0.000 +2458117.5 0.63119 2.45429 -36781755.7 0.00028 0.00037 6.7 0.000 0.000 0.000 +2458118.5 0.61207 2.46566 -36782759.7 0.00027 0.00037 7.2 0.000 0.000 0.000 +2458119.5 0.59257 2.47609 -36783642.3 0.00018 0.00029 6.7 0.000 0.000 0.000 +2458120.5 0.57423 2.48568 -36784412.6 0.00014 0.00019 10.4 0.000 0.000 0.000 +2458121.5 0.55769 2.49510 -36785139.1 0.00014 0.00024 6.5 0.000 0.000 0.000 +2458122.5 0.54473 2.50446 -36785947.3 0.00016 0.00023 6.5 0.000 0.000 0.000 +2458123.5 0.53552 2.51574 -36786811.8 0.00016 0.00024 6.6 0.000 0.000 0.000 +2458124.5 0.52545 2.52909 -36787710.2 0.00019 0.00024 6.3 0.000 0.000 0.000 +2458125.5 0.51030 2.54121 -36788574.3 0.00024 0.00026 7.0 0.000 0.000 0.000 +2458126.5 0.49368 2.54984 -36789405.2 0.00023 0.00025 7.4 0.000 0.000 0.000 +2458127.5 0.48061 2.55852 -36790090.3 0.00023 0.00021 12.5 0.000 0.000 0.000 +2458128.5 0.46732 2.57118 -36790653.0 0.00024 0.00027 5.9 0.000 0.000 0.000 +2458129.5 0.45102 2.58532 -36791094.4 0.00025 0.00025 5.9 0.000 0.000 0.000 +2458130.5 0.43315 2.59769 -36791484.9 0.00024 0.00025 5.7 0.000 0.000 0.000 +2458131.5 0.41454 2.60507 -36791720.2 0.00022 0.00021 4.5 0.000 0.000 0.000 +2458132.5 0.39899 2.60807 -36791824.5 0.00022 0.00023 5.7 0.000 0.000 0.000 +2458133.5 0.38703 2.61203 -36791901.6 0.00022 0.00023 5.7 0.000 0.000 0.000 +2458134.5 0.37842 2.61976 -36791922.8 0.00019 0.00016 10.3 0.000 0.000 0.000 +2458135.5 0.37143 2.63271 -36792025.4 0.00020 0.00021 8.1 0.000 0.000 0.000 +2458136.5 0.36136 2.64987 -36792168.4 0.00019 0.00020 8.3 0.000 0.000 0.000 +2458137.5 0.34707 2.66813 -36792353.1 0.00016 0.00018 8.3 0.000 0.000 0.000 +2458138.5 0.32782 2.68601 -36792687.7 0.00016 0.00015 7.6 0.000 0.000 0.000 +2458139.5 0.30635 2.70330 -36793206.0 0.00019 0.00017 5.0 0.000 0.000 0.000 +2458140.5 0.28797 2.72028 -36793884.0 0.00020 0.00017 5.2 0.000 0.000 0.000 +2458141.5 0.27418 2.73717 -36794685.7 0.00019 0.00010 6.3 0.000 0.000 0.000 +2458142.5 0.26058 2.75508 -36795602.7 0.00025 0.00020 5.3 0.000 0.000 0.000 +2458143.5 0.24312 2.77334 -36796559.8 0.00025 0.00022 5.4 0.000 0.000 0.000 +2458144.5 0.22522 2.79035 -36797568.2 0.00026 0.00023 5.3 0.000 0.000 0.000 +2458145.5 0.20912 2.80551 -36798529.9 0.00024 0.00022 7.7 0.000 0.000 0.000 +2458146.5 0.19446 2.81765 -36799421.7 0.00026 0.00022 7.3 0.000 0.000 0.000 +2458147.5 0.18404 2.82955 -36800313.5 0.00027 0.00023 7.2 0.000 0.000 0.000 +2458148.5 0.17692 2.84470 -36801243.1 0.00022 0.00017 9.4 0.000 0.000 0.000 +2458149.5 0.16706 2.86231 -36802326.0 0.00023 0.00020 6.6 0.000 0.000 0.000 +2458150.5 0.15470 2.88207 -36803535.4 0.00020 0.00023 6.8 0.000 0.000 0.000 +2458151.5 0.14113 2.90115 -36804918.1 0.00023 0.00023 6.4 0.000 0.000 0.000 +2458152.5 0.12490 2.91678 -36806502.0 0.00027 0.00033 6.5 0.000 0.000 0.000 +2458153.5 0.10586 2.93360 -36808182.8 0.00026 0.00038 6.3 0.000 0.000 0.000 +2458154.5 0.08435 2.95249 -36809857.9 0.00031 0.00038 5.9 0.000 0.000 0.000 +2458155.5 0.06847 2.96639 -36811434.1 0.00030 0.00036 8.4 0.000 0.000 0.000 +2458156.5 0.06209 2.97900 -36812845.9 0.00030 0.00033 5.5 0.000 0.000 0.000 +2458157.5 0.05617 2.99592 -36814106.0 0.00028 0.00032 5.1 0.000 0.000 0.000 +2458158.5 0.04804 3.01362 -36815198.4 0.00022 0.00022 5.1 0.000 0.000 0.000 +2458159.5 0.04129 3.03166 -36816086.9 0.00023 0.00010 4.9 0.000 0.000 0.000 +2458160.5 0.03593 3.05127 -36816860.3 0.00018 0.00021 4.3 0.000 0.000 0.000 +2458161.5 0.03296 3.07197 -36817613.8 0.00022 0.00022 4.2 0.000 0.000 0.000 +2458162.5 0.03043 3.09281 -36818368.4 0.00029 0.00026 5.0 0.000 0.000 0.000 +2458163.5 0.02621 3.11267 -36819140.9 0.00033 0.00027 3.8 0.000 0.000 0.000 +2458164.5 0.01974 3.13241 -36819963.9 0.00033 0.00028 3.9 0.000 0.000 0.000 +2458165.5 0.01454 3.14973 -36820847.7 0.00032 0.00028 3.8 0.000 0.000 0.000 +2458166.5 0.01127 3.16451 -36821820.6 0.00032 0.00021 4.2 0.000 0.000 0.000 +2458167.5 0.00859 3.17954 -36822882.4 0.00030 0.00021 5.9 0.000 0.000 0.000 +2458168.5 0.00928 3.19637 -36824023.4 0.00025 0.00021 5.9 0.000 0.000 0.000 +2458169.5 0.01311 3.21748 -36825194.1 0.00018 0.00019 10.4 0.000 0.000 0.000 +2458170.5 0.01972 3.24316 -36826339.5 0.00018 0.00020 6.3 0.000 0.000 0.000 +2458171.5 0.02490 3.26886 -36827435.9 0.00020 0.00021 6.1 0.000 0.000 0.000 +2458172.5 0.02647 3.29245 -36828460.4 0.00021 0.00023 6.0 0.000 0.000 0.000 +2458173.5 0.02440 3.31638 -36829364.0 0.00020 0.00023 3.9 0.000 0.000 0.000 +2458174.5 0.01976 3.33873 -36830172.9 0.00020 0.00023 4.5 0.000 0.000 0.000 +2458175.5 0.01276 3.35991 -36830951.3 0.00023 0.00023 4.5 0.000 0.000 0.000 +2458176.5 0.00375 3.37923 -36831752.0 0.00022 0.00022 8.1 0.000 0.000 0.000 +2458177.5 -0.00292 3.39617 -36832597.0 0.00025 0.00023 5.9 0.000 0.000 0.000 +2458178.5 -0.00079 3.41485 -36833552.7 0.00024 0.00021 5.8 0.000 0.000 0.000 +2458179.5 0.01198 3.43732 -36834708.4 0.00025 0.00019 5.9 0.000 0.000 0.000 +2458180.5 0.02759 3.46304 -36835973.0 0.00023 0.00014 6.5 0.000 0.000 0.000 +2458181.5 0.04100 3.48988 -36837212.6 0.00023 0.00021 7.3 0.000 0.000 0.000 +2458182.5 0.05403 3.51670 -36838421.5 0.00023 0.00021 5.7 0.000 0.000 0.000 +2458183.5 0.06568 3.54259 -36839516.1 0.00019 0.00019 11.4 0.000 0.000 0.000 +2458184.5 0.07282 3.56648 -36840458.8 0.00019 0.00021 5.6 0.000 0.000 0.000 +2458185.5 0.07707 3.58709 -36841363.5 0.00021 0.00021 5.5 0.000 0.000 0.000 +2458186.5 0.08070 3.60345 -36842174.9 0.00021 0.00021 5.4 0.000 0.000 0.000 +2458187.5 0.08580 3.61563 -36842888.6 0.00017 0.00014 4.0 0.000 0.000 0.000 +2458188.5 0.09750 3.62617 -36843572.7 0.00019 0.00022 4.4 0.000 0.000 0.000 +2458189.5 0.11428 3.63956 -36844269.8 0.00019 0.00022 4.4 0.000 0.000 0.000 +2458190.5 0.12917 3.65562 -36845027.7 0.00019 0.00020 11.4 0.000 0.000 0.000 +2458191.5 0.13930 3.67345 -36845854.8 0.00018 0.00026 7.5 0.000 0.000 0.000 +2458192.5 0.14577 3.69272 -36846757.9 0.00019 0.00026 7.4 0.000 0.000 0.000 +2458193.5 0.14875 3.71222 -36847755.2 0.00022 0.00026 6.1 0.000 0.000 0.000 +2458194.5 0.14949 3.72990 -36848834.4 0.00021 0.00020 5.6 0.000 0.000 0.000 +2458195.5 0.15108 3.74479 -36849973.1 0.00023 0.00022 5.3 0.000 0.000 0.000 +2458196.5 0.15786 3.75883 -36851171.0 0.00028 0.00022 5.3 0.000 0.000 0.000 +2458197.5 0.16865 3.77394 -36852412.6 0.00029 0.00015 5.3 0.000 0.000 0.000 +2458198.5 0.17883 3.78693 -36853652.2 0.00030 0.00019 4.8 0.000 0.000 0.000 +2458199.5 0.19275 3.79707 -36854842.8 0.00027 0.00019 4.9 0.000 0.000 0.000 +2458200.5 0.20888 3.80997 -36855934.7 0.00027 0.00019 4.9 0.000 0.000 0.000 +2458201.5 0.22258 3.82606 -36856898.3 0.00025 0.00017 4.6 0.000 0.000 0.000 +2458202.5 0.23435 3.84178 -36857766.7 0.00022 0.00019 4.2 0.000 0.000 0.000 +2458203.5 0.24514 3.85439 -36858619.2 0.00020 0.00020 3.9 0.000 0.000 0.000 +2458204.5 0.25725 3.86396 -36859581.9 0.00018 0.00017 3.9 0.000 0.000 0.000 +2458205.5 0.27014 3.87463 -36860663.1 0.00017 0.00017 3.8 0.000 0.000 0.000 +2458206.5 0.28235 3.88980 -36861849.7 0.00018 0.00016 3.9 0.000 0.000 0.000 +2458207.5 0.29544 3.90773 -36863130.0 0.00017 0.00017 3.7 0.000 0.000 0.000 +2458208.5 0.31018 3.92636 -36864519.9 0.00013 0.00016 3.9 0.000 0.000 0.000 +2458209.5 0.32273 3.94476 -36865908.1 0.00013 0.00012 11.4 0.000 0.000 0.000 +2458210.5 0.33137 3.96270 -36867236.2 0.00018 0.00017 6.0 0.000 0.000 0.000 +2458211.5 0.33763 3.98181 -36868452.1 0.00023 0.00016 6.0 0.000 0.000 0.000 +2458212.5 0.34093 4.00180 -36869506.7 0.00025 0.00020 5.7 0.000 0.000 0.000 +2458213.5 0.34350 4.02063 -36870383.1 0.00025 0.00021 5.6 0.000 0.000 0.000 +2458214.5 0.34438 4.03817 -36871132.7 0.00025 0.00022 5.6 0.000 0.000 0.000 +2458215.5 0.34485 4.05451 -36871818.0 0.00024 0.00023 6.0 0.000 0.000 0.000 +2458216.5 0.34935 4.07057 -36872473.9 0.00020 0.00022 5.7 0.000 0.000 0.000 +2458217.5 0.35723 4.08586 -36873135.0 0.00020 0.00025 5.6 0.000 0.000 0.000 +2458218.5 0.36810 4.10139 -36873815.7 0.00018 0.00027 5.2 0.000 0.000 0.000 +2458219.5 0.38022 4.11877 -36874515.7 0.00025 0.00029 4.2 0.000 0.000 0.000 +2458220.5 0.38790 4.13807 -36875311.5 0.00025 0.00028 4.8 0.000 0.000 0.000 +2458221.5 0.39127 4.15642 -36876235.2 0.00025 0.00026 6.1 0.000 0.000 0.000 +2458222.5 0.40059 4.17194 -36877272.1 0.00026 0.00025 7.3 0.000 0.000 0.000 +2458223.5 0.41895 4.18765 -36878448.4 0.00024 0.00031 6.1 0.000 0.000 0.000 +2458224.5 0.44027 4.20264 -36879778.1 0.00026 0.00028 6.2 0.000 0.000 0.000 +2458225.5 0.45884 4.21493 -36881140.9 0.00023 0.00025 8.7 0.000 0.000 0.000 +2458226.5 0.47536 4.22326 -36882398.2 0.00031 0.00030 6.1 0.000 0.000 0.000 +2458227.5 0.49553 4.23193 -36883508.9 0.00031 0.00030 5.0 0.000 0.000 0.000 +2458228.5 0.51796 4.24488 -36884540.5 0.00030 0.00030 4.6 0.000 0.000 0.000 +2458229.5 0.54023 4.25983 -36885499.1 0.00028 0.00021 5.4 0.000 0.000 0.000 +2458230.5 0.56151 4.27530 -36886457.5 0.00026 0.00022 4.7 0.000 0.000 0.000 +2458231.5 0.58085 4.29120 -36887466.3 0.00023 0.00021 4.4 0.000 0.000 0.000 +2458232.5 0.59908 4.30710 -36888601.8 0.00011 0.00014 4.5 0.000 0.000 0.000 +2458233.5 0.61477 4.32072 -36889920.6 0.00018 0.00032 5.3 0.000 0.000 0.000 +2458234.5 0.62709 4.33026 -36891347.0 0.00018 0.00033 5.9 0.000 0.000 0.000 +2458235.5 0.63795 4.33887 -36892855.4 0.00019 0.00034 5.8 0.000 0.000 0.000 +2458236.5 0.65053 4.34760 -36894382.4 0.00018 0.00034 6.9 0.000 0.000 0.000 +2458237.5 0.66403 4.35705 -36895871.9 0.00019 0.00035 6.9 0.000 0.000 0.000 +2458238.5 0.67681 4.36666 -36897182.1 0.00024 0.00035 6.9 0.000 0.000 0.000 +2458239.5 0.68789 4.37673 -36898343.3 0.00021 0.00021 6.5 0.000 0.000 0.000 +2458240.5 0.69575 4.38716 -36899376.7 0.00022 0.00022 4.2 0.000 0.000 0.000 +2458241.5 0.70460 4.39351 -36900265.3 0.00021 0.00022 4.5 0.000 0.000 0.000 +2458242.5 0.71458 4.39811 -36901022.9 0.00021 0.00021 4.6 0.000 0.000 0.000 +2458243.5 0.72329 4.40359 -36901712.6 0.00021 0.00022 4.7 0.000 0.000 0.000 +2458244.5 0.73263 4.41099 -36902382.3 0.00017 0.00021 4.7 0.000 0.000 0.000 +2458245.5 0.74243 4.41938 -36903030.2 0.00015 0.00021 4.3 0.000 0.000 0.000 +2458246.5 0.75370 4.42802 -36903704.5 0.00022 0.00017 5.2 0.000 0.000 0.000 +2458247.5 0.76612 4.43750 -36904479.5 0.00034 0.00020 2.4 0.000 0.000 0.000 +2458248.5 0.77877 4.44639 -36905366.9 0.00036 0.00020 2.4 0.000 0.000 0.000 +2458249.5 0.79080 4.45242 -36906314.1 0.00035 0.00019 2.7 0.000 0.000 0.000 +2458250.5 0.80787 4.45298 -36907343.4 0.00036 0.00019 3.0 0.000 0.000 0.000 +2458251.5 0.83067 4.45164 -36908473.6 0.00037 0.00019 3.1 0.000 0.000 0.000 +2458252.5 0.85262 4.45107 -36909573.4 0.00034 0.00019 3.2 0.000 0.000 0.000 +2458253.5 0.87529 4.45209 -36910592.5 0.00022 0.00016 6.0 0.000 0.000 0.000 +2458254.5 0.89727 4.45459 -36911463.4 0.00026 0.00017 5.1 0.000 0.000 0.000 +2458255.5 0.91875 4.45721 -36912170.9 0.00026 0.00016 5.7 0.000 0.000 0.000 +2458256.5 0.93996 4.46219 -36912801.9 0.00025 0.00016 6.6 0.000 0.000 0.000 +2458257.5 0.95690 4.46883 -36913344.8 0.00023 0.00015 7.9 0.000 0.000 0.000 +2458258.5 0.97021 4.47412 -36913936.3 0.00020 0.00015 8.5 0.000 0.000 0.000 +2458259.5 0.98171 4.47652 -36914575.0 0.00021 0.00013 6.8 0.000 0.000 0.000 +2458260.5 0.99331 4.47668 -36915340.0 0.00013 0.00010 9.4 0.000 0.000 0.000 +2458261.5 1.00827 4.47710 -36916271.9 0.00026 0.00020 8.1 0.000 0.000 0.000 +2458262.5 1.02639 4.47795 -36917310.0 0.00027 0.00019 7.6 0.000 0.000 0.000 +2458263.5 1.04491 4.47906 -36918354.3 0.00027 0.00019 6.7 0.000 0.000 0.000 +2458264.5 1.06085 4.47921 -36919350.4 0.00027 0.00019 6.6 0.000 0.000 0.000 +2458265.5 1.07561 4.47722 -36920300.0 0.00026 0.00020 8.6 0.000 0.000 0.000 +2458266.5 1.09114 4.47450 -36921161.7 0.00027 0.00021 7.8 0.000 0.000 0.000 +2458267.5 1.10676 4.47251 -36921829.8 0.00016 0.00013 8.1 0.000 0.000 0.000 +2458268.5 1.12128 4.47202 -36922303.5 0.00022 0.00014 5.9 0.000 0.000 0.000 +2458269.5 1.13247 4.47138 -36922670.4 0.00028 0.00015 5.9 0.000 0.000 0.000 +2458270.5 1.14362 4.46942 -36923003.4 0.00028 0.00017 5.9 0.000 0.000 0.000 +2458271.5 1.16003 4.46792 -36923291.9 0.00029 0.00018 5.7 0.000 0.000 0.000 +2458272.5 1.17663 4.46815 -36923605.2 0.00029 0.00017 6.6 0.000 0.000 0.000 +2458273.5 1.18974 4.46881 -36923953.8 0.00032 0.00017 6.6 0.000 0.000 0.000 +2458274.5 1.20367 4.46980 -36924390.3 0.00032 0.00016 10.5 0.000 0.000 0.000 +2458275.5 1.21723 4.47192 -36924890.5 0.00029 0.00021 8.2 0.000 0.000 0.000 +2458276.5 1.22647 4.47299 -36925507.7 0.00030 0.00020 8.3 0.000 0.000 0.000 +2458277.5 1.23539 4.47180 -36926217.6 0.00029 0.00020 8.4 0.000 0.000 0.000 +2458278.5 1.24627 4.46842 -36927012.3 0.00027 0.00018 7.4 0.000 0.000 0.000 +2458279.5 1.25858 4.46289 -36927894.2 0.00024 0.00022 6.7 0.000 0.000 0.000 +2458280.5 1.27354 4.45722 -36928733.5 0.00018 0.00022 6.4 0.000 0.000 0.000 +2458281.5 1.28981 4.45413 -36929445.3 0.00012 0.00017 9.3 0.000 0.000 0.000 +2458282.5 1.30635 4.45308 -36930002.3 0.00012 0.00024 5.7 0.000 0.000 0.000 +2458283.5 1.32057 4.45106 -36930408.0 0.00011 0.00023 5.3 0.000 0.000 0.000 +2458284.5 1.33162 4.44455 -36930682.8 0.00012 0.00024 5.4 0.000 0.000 0.000 +2458285.5 1.34237 4.43350 -36930886.0 0.00011 0.00023 6.1 0.000 0.000 0.000 +2458286.5 1.35475 4.42024 -36931113.3 0.00011 0.00027 5.1 0.000 0.000 0.000 +2458287.5 1.36874 4.40778 -36931394.3 0.00013 0.00026 4.6 0.000 0.000 0.000 +2458288.5 1.38509 4.39644 -36931780.8 0.00011 0.00022 5.3 0.000 0.000 0.000 +2458289.5 1.40459 4.38661 -36932242.0 0.00019 0.00019 4.3 0.000 0.000 0.000 +2458290.5 1.42529 4.38019 -36932675.0 0.00021 0.00017 4.5 0.000 0.000 0.000 +2458291.5 1.44592 4.37385 -36932998.4 0.00021 0.00014 4.4 0.000 0.000 0.000 +2458292.5 1.46654 4.36600 -36933156.1 0.00017 0.00012 5.3 0.000 0.000 0.000 +2458293.5 1.48530 4.35823 -36933124.4 0.00019 0.00016 4.8 0.000 0.000 0.000 +2458294.5 1.50308 4.34966 -36932873.8 0.00020 0.00015 5.0 0.000 0.000 0.000 +2458295.5 1.52170 4.33854 -36932473.4 0.00018 0.00015 6.1 0.000 0.000 0.000 +2458296.5 1.54053 4.32649 -36931907.7 0.00023 0.00022 5.2 0.000 0.000 0.000 +2458297.5 1.56156 4.31608 -36931273.0 0.00023 0.00023 5.1 0.000 0.000 0.000 +2458298.5 1.58581 4.30869 -36930671.6 0.00023 0.00024 4.4 0.000 0.000 0.000 +2458299.5 1.60920 4.30335 -36930035.1 0.00021 0.00021 5.1 0.000 0.000 0.000 +2458300.5 1.62953 4.29676 -36929402.7 0.00025 0.00022 4.3 0.000 0.000 0.000 +2458301.5 1.64943 4.28587 -36928818.3 0.00025 0.00026 4.3 0.000 0.000 0.000 +2458302.5 1.67079 4.27186 -36928320.7 0.00022 0.00022 7.3 0.000 0.000 0.000 +2458303.5 1.69618 4.25963 -36927947.2 0.00028 0.00022 4.3 0.000 0.000 0.000 +2458304.5 1.72342 4.25419 -36927700.0 0.00028 0.00023 4.7 0.000 0.000 0.000 +2458305.5 1.74556 4.25326 -36927632.5 0.00031 0.00023 4.7 0.000 0.000 0.000 +2458306.5 1.76301 4.25156 -36927680.7 0.00027 0.00024 4.8 0.000 0.000 0.000 +2458307.5 1.77801 4.25020 -36927801.8 0.00030 0.00028 4.7 0.000 0.000 0.000 +2458308.5 1.78749 4.24688 -36927965.6 0.00031 0.00027 4.2 0.000 0.000 0.000 +2458309.5 1.79349 4.23779 -36928110.5 0.00025 0.00027 5.7 0.000 0.000 0.000 +2458310.5 1.80259 4.22669 -36928225.7 0.00028 0.00027 3.5 0.000 0.000 0.000 +2458311.5 1.81394 4.21603 -36928260.5 0.00027 0.00027 3.4 0.000 0.000 0.000 +2458312.5 1.82608 4.20433 -36928221.3 0.00026 0.00026 3.4 0.000 0.000 0.000 +2458313.5 1.84114 4.19392 -36928211.7 0.00023 0.00017 2.5 0.000 0.000 0.000 +2458314.5 1.85504 4.18755 -36928313.3 0.00022 0.00018 2.4 0.000 0.000 0.000 +2458315.5 1.86435 4.18423 -36928587.7 0.00022 0.00019 2.4 0.000 0.000 0.000 +2458316.5 1.87314 4.18047 -36929021.8 0.00018 0.00018 3.3 0.000 0.000 0.000 +2458317.5 1.88359 4.17463 -36929553.7 0.00019 0.00020 2.5 0.000 0.000 0.000 +2458318.5 1.89441 4.16680 -36930098.0 0.00019 0.00020 2.6 0.000 0.000 0.000 +2458319.5 1.90574 4.15717 -36930548.7 0.00018 0.00021 2.8 0.000 0.000 0.000 +2458320.5 1.91676 4.14656 -36930837.8 0.00017 0.00023 3.0 0.000 0.000 0.000 +2458321.5 1.92709 4.13613 -36930954.4 0.00018 0.00022 2.7 0.000 0.000 0.000 +2458322.5 1.93768 4.12770 -36930930.8 0.00018 0.00022 2.7 0.000 0.000 0.000 +2458323.5 1.94780 4.12246 -36930821.9 0.00013 0.00019 4.0 0.000 0.000 0.000 +2458324.5 1.95514 4.11882 -36930669.6 0.00015 0.00022 3.1 0.000 0.000 0.000 +2458325.5 1.95964 4.11301 -36930489.7 0.00016 0.00022 2.8 0.000 0.000 0.000 +2458326.5 1.96428 4.10508 -36930339.3 0.00017 0.00022 2.5 0.000 0.000 0.000 +2458327.5 1.96969 4.09729 -36930217.3 0.00018 0.00025 5.0 0.000 0.000 0.000 +2458328.5 1.97623 4.08749 -36930110.8 0.00023 0.00027 4.8 0.000 0.000 0.000 +2458329.5 1.98251 4.07674 -36930054.7 0.00024 0.00027 4.6 0.000 0.000 0.000 +2458330.5 1.98501 4.06497 -36930067.5 0.00026 0.00026 5.6 0.000 0.000 0.000 +2458331.5 1.98696 4.05260 -36930189.8 0.00028 0.00026 4.8 0.000 0.000 0.000 +2458332.5 1.99042 4.04208 -36930423.7 0.00028 0.00024 4.9 0.000 0.000 0.000 +2458333.5 1.99522 4.03121 -36930737.1 0.00027 0.00021 4.4 0.000 0.000 0.000 +2458334.5 2.00015 4.02064 -36931061.3 0.00024 0.00018 4.5 0.000 0.000 0.000 +2458335.5 2.00318 4.00988 -36931332.9 0.00025 0.00020 2.7 0.000 0.000 0.000 +2458336.5 2.00522 3.99794 -36931538.9 0.00023 0.00019 2.7 0.000 0.000 0.000 +2458337.5 2.00716 3.98559 -36931666.8 0.00018 0.00017 2.5 0.000 0.000 0.000 +2458338.5 2.00827 3.97348 -36931707.4 0.00021 0.00037 3.2 0.000 0.000 0.000 +2458339.5 2.00916 3.96097 -36931721.0 0.00020 0.00038 3.2 0.000 0.000 0.000 +2458340.5 2.01315 3.94629 -36931802.9 0.00020 0.00038 3.1 0.000 0.000 0.000 +2458341.5 2.02094 3.93023 -36932033.2 0.00015 0.00038 6.3 0.000 0.000 0.000 +2458342.5 2.03085 3.91490 -36932463.0 0.00020 0.00040 5.5 0.000 0.000 0.000 +2458343.5 2.03866 3.90100 -36933042.5 0.00020 0.00040 5.2 0.000 0.000 0.000 +2458344.5 2.04214 3.88829 -36933661.8 0.00017 0.00020 7.2 0.000 0.000 0.000 +2458345.5 2.04336 3.87538 -36934266.1 0.00019 0.00021 4.5 0.000 0.000 0.000 +2458346.5 2.04510 3.86166 -36934819.2 0.00020 0.00023 4.8 0.000 0.000 0.000 +2458347.5 2.04792 3.84797 -36935234.6 0.00020 0.00021 5.3 0.000 0.000 0.000 +2458348.5 2.05238 3.83300 -36935511.3 0.00016 0.00017 5.9 0.000 0.000 0.000 +2458349.5 2.05775 3.81941 -36935600.1 0.00021 0.00021 4.8 0.000 0.000 0.000 +2458350.5 2.06352 3.80974 -36935572.6 0.00021 0.00022 5.0 0.000 0.000 0.000 +2458351.5 2.07171 3.80216 -36935472.0 0.00019 0.00019 6.5 0.000 0.000 0.000 +2458352.5 2.08033 3.79450 -36935311.6 0.00033 0.00020 7.0 0.000 0.000 0.000 +2458353.5 2.08679 3.78431 -36935148.3 0.00033 0.00020 7.0 0.000 0.000 0.000 +2458354.5 2.09187 3.77197 -36934998.2 0.00032 0.00020 7.2 0.000 0.000 0.000 +2458355.5 2.09749 3.76036 -36934838.1 0.00025 0.00017 21.3 0.000 0.000 0.000 +2458356.5 2.10435 3.74983 -36934768.5 0.00029 0.00024 7.8 0.000 0.000 0.000 +2458357.5 2.10989 3.73854 -36934891.4 0.00032 0.00026 7.6 0.000 0.000 0.000 +2458358.5 2.11226 3.72799 -36935189.3 0.00024 0.00025 6.9 0.000 0.000 0.000 +2458359.5 2.11301 3.71687 -36935547.9 0.00025 0.00024 5.3 0.000 0.000 0.000 +2458360.5 2.11612 3.70506 -36935905.1 0.00026 0.00023 5.5 0.000 0.000 0.000 +2458361.5 2.11844 3.69337 -36936295.8 0.00025 0.00022 5.1 0.000 0.000 0.000 +2458362.5 2.11738 3.67871 -36936720.3 0.00026 0.00018 6.2 0.000 0.000 0.000 +2458363.5 2.11673 3.66143 -36937047.5 0.00025 0.00033 4.9 0.000 0.000 0.000 +2458364.5 2.11731 3.64509 -36937252.9 0.00021 0.00035 4.9 0.000 0.000 0.000 +2458365.5 2.11679 3.63135 -36937382.0 0.00017 0.00034 5.3 0.000 0.000 0.000 +2458366.5 2.11701 3.61866 -36937477.5 0.00021 0.00035 4.9 0.000 0.000 0.000 +2458367.5 2.12077 3.60942 -36937602.8 0.00021 0.00034 4.8 0.000 0.000 0.000 +2458368.5 2.12529 3.60411 -36937830.4 0.00023 0.00034 4.8 0.000 0.000 0.000 +2458369.5 2.12733 3.59832 -36938249.4 0.00021 0.00017 5.7 0.000 0.000 0.000 +2458370.5 2.12751 3.59120 -36938856.7 0.00022 0.00014 6.3 0.000 0.000 0.000 +2458371.5 2.13091 3.58327 -36939680.5 0.00024 0.00014 6.2 0.000 0.000 0.000 +2458372.5 2.13750 3.57534 -36940650.6 0.00021 0.00012 9.0 0.000 0.000 0.000 +2458373.5 2.14176 3.56719 -36941631.2 0.00023 0.00021 6.6 0.000 0.000 0.000 +2458374.5 2.14056 3.55895 -36942486.1 0.00019 0.00021 6.5 0.000 0.000 0.000 +2458375.5 2.13529 3.55035 -36943142.1 0.00020 0.00021 6.2 0.000 0.000 0.000 +2458376.5 2.12937 3.54015 -36943597.5 0.00020 0.00020 5.4 0.000 0.000 0.000 +2458377.5 2.12382 3.52848 -36943876.4 0.00021 0.00022 6.4 0.000 0.000 0.000 +2458378.5 2.12110 3.51602 -36944005.3 0.00020 0.00022 6.4 0.000 0.000 0.000 +2458379.5 2.12128 3.50279 -36944088.4 0.00017 0.00013 7.8 0.000 0.000 0.000 +2458380.5 2.12114 3.48766 -36944137.9 0.00021 0.00014 6.8 0.000 0.000 0.000 +2458381.5 2.12004 3.47156 -36944186.8 0.00020 0.00016 6.9 0.000 0.000 0.000 +2458382.5 2.11936 3.45659 -36944336.3 0.00022 0.00017 6.6 0.000 0.000 0.000 +2458383.5 2.11818 3.44223 -36944611.3 0.00021 0.00013 6.1 0.000 0.000 0.000 +2458384.5 2.11707 3.42605 -36945025.9 0.00023 0.00014 6.4 0.000 0.000 0.000 +2458385.5 2.11862 3.40892 -36945621.8 0.00028 0.00019 4.3 0.000 0.000 0.000 +2458386.5 2.11879 3.39283 -36946387.2 0.00025 0.00020 5.0 0.000 0.000 0.000 +2458387.5 2.11342 3.37654 -36947261.4 0.00029 0.00024 5.6 0.000 0.000 0.000 +2458388.5 2.10730 3.36064 -36948157.6 0.00028 0.00026 5.5 0.000 0.000 0.000 +2458389.5 2.10546 3.34753 -36949087.7 0.00027 0.00029 5.6 0.000 0.000 0.000 +2458390.5 2.10593 3.33612 -36949991.0 0.00027 0.00029 5.6 0.000 0.000 0.000 +2458391.5 2.10593 3.32238 -36950814.5 0.00024 0.00032 8.0 0.000 0.000 0.000 +2458392.5 2.10634 3.30880 -36951557.8 0.00025 0.00035 7.8 0.000 0.000 0.000 +2458393.5 2.10651 3.29769 -36952244.4 0.00020 0.00034 8.3 0.000 0.000 0.000 +2458394.5 2.10400 3.28636 -36952905.0 0.00023 0.00034 6.9 0.000 0.000 0.000 +2458395.5 2.09721 3.27636 -36953617.1 0.00022 0.00032 7.2 0.000 0.000 0.000 +2458396.5 2.08687 3.26526 -36954466.9 0.00022 0.00032 7.1 0.000 0.000 0.000 +2458397.5 2.07898 3.25034 -36955571.6 0.00018 0.00025 6.9 0.000 0.000 0.000 +2458398.5 2.07469 3.23690 -36956833.0 0.00017 0.00022 6.0 0.000 0.000 0.000 +2458399.5 2.07048 3.22698 -36958207.4 0.00019 0.00018 5.8 0.000 0.000 0.000 +2458400.5 2.06494 3.21887 -36959652.7 0.00015 0.00014 5.7 0.000 0.000 0.000 +2458401.5 2.05872 3.21049 -36961027.5 0.00016 0.00014 4.7 0.000 0.000 0.000 +2458402.5 2.05072 3.19995 -36962262.9 0.00016 0.00015 5.1 0.000 0.000 0.000 +2458403.5 2.04124 3.18596 -36963323.0 0.00016 0.00015 5.4 0.000 0.000 0.000 +2458404.5 2.03190 3.16935 -36964195.8 0.00015 0.00014 6.9 0.000 0.000 0.000 +2458405.5 2.02394 3.15423 -36964899.1 0.00017 0.00022 5.3 0.000 0.000 0.000 +2458406.5 2.01912 3.14250 -36965491.0 0.00017 0.00021 5.3 0.000 0.000 0.000 +2458407.5 2.01620 3.13343 -36965951.0 0.00017 0.00022 6.2 0.000 0.000 0.000 +2458408.5 2.01096 3.12364 -36966364.2 0.00020 0.00025 6.2 0.000 0.000 0.000 +2458409.5 2.00238 3.11075 -36966816.4 0.00022 0.00027 6.3 0.000 0.000 0.000 +2458410.5 1.99157 3.09815 -36967366.2 0.00022 0.00030 6.1 0.000 0.000 0.000 +2458411.5 1.97999 3.08635 -36968018.8 0.00019 0.00026 8.0 0.000 0.000 0.000 +2458412.5 1.96793 3.07499 -36968808.6 0.00021 0.00031 7.0 0.000 0.000 0.000 +2458413.5 1.95602 3.06273 -36969787.7 0.00022 0.00030 6.6 0.000 0.000 0.000 +2458414.5 1.94677 3.05050 -36970910.8 0.00022 0.00028 6.5 0.000 0.000 0.000 +2458415.5 1.93882 3.04243 -36972150.3 0.00026 0.00027 5.1 0.000 0.000 0.000 +2458416.5 1.93258 3.03724 -36973448.2 0.00026 0.00024 4.9 0.000 0.000 0.000 +2458417.5 1.92665 3.03189 -36974705.3 0.00029 0.00027 4.9 0.000 0.000 0.000 +2458418.5 1.92156 3.02570 -36975871.5 0.00028 0.00023 5.0 0.000 0.000 0.000 +2458419.5 1.91552 3.02063 -36976941.2 0.00029 0.00024 5.5 0.000 0.000 0.000 +2458420.5 1.90146 3.01289 -36977905.2 0.00026 0.00024 5.1 0.000 0.000 0.000 +2458421.5 1.88239 3.00119 -36978795.5 0.00021 0.00022 5.4 0.000 0.000 0.000 +2458422.5 1.86356 2.98703 -36979660.2 0.00021 0.00020 5.7 0.000 0.000 0.000 +2458423.5 1.84604 2.97021 -36980590.0 0.00018 0.00017 5.6 0.000 0.000 0.000 +2458424.5 1.83238 2.95238 -36981660.8 0.00016 0.00015 5.8 0.000 0.000 0.000 +2458425.5 1.82239 2.93627 -36982846.5 0.00013 0.00014 5.9 0.000 0.000 0.000 +2458426.5 1.81231 2.92507 -36984093.6 0.00017 0.00018 3.9 0.000 0.000 0.000 +2458427.5 1.80216 2.91710 -36985348.3 0.00024 0.00019 3.9 0.000 0.000 0.000 +2458428.5 1.79314 2.91066 -36986586.7 0.00025 0.00019 4.4 0.000 0.000 0.000 +2458429.5 1.78372 2.90408 -36987770.5 0.00031 0.00037 4.9 0.000 0.000 0.000 +2458430.5 1.77786 2.89411 -36988807.2 0.00031 0.00037 5.8 0.000 0.000 0.000 +2458431.5 1.77524 2.88201 -36989741.8 0.00029 0.00034 6.4 0.000 0.000 0.000 +2458432.5 1.76910 2.86998 -36990529.6 0.00025 0.00030 18.7 0.000 0.000 0.000 +2458433.5 1.75920 2.85902 -36991233.4 0.00020 0.00031 13.6 0.000 0.000 0.000 +2458434.5 1.74822 2.84825 -36991909.2 0.00018 0.00030 13.5 0.000 0.000 0.000 +2458435.5 1.73668 2.83803 -36992558.1 0.00010 0.00015 13.5 0.000 0.000 0.000 +2458436.5 1.72473 2.82799 -36993269.5 0.00011 0.00016 9.4 0.000 0.000 0.000 +2458437.5 1.71152 2.81715 -36994041.6 0.00011 0.00016 8.9 0.000 0.000 0.000 +2458438.5 1.69534 2.80643 -36994904.8 0.00011 0.00016 8.5 0.000 0.000 0.000 +2458439.5 1.68102 2.79757 -36995859.0 0.00011 0.00013 6.7 0.000 0.000 0.000 +2458440.5 1.67048 2.79160 -36996920.7 0.00015 0.00023 5.4 0.000 0.000 0.000 +2458441.5 1.66025 2.78661 -36998130.2 0.00017 0.00026 6.1 0.000 0.000 0.000 +2458442.5 1.64959 2.78321 -36999474.5 0.00015 0.00027 6.5 0.000 0.000 0.000 +2458443.5 1.63904 2.78044 -37000873.9 0.00017 0.00029 6.6 0.000 0.000 0.000 +2458444.5 1.62950 2.77658 -37002264.4 0.00021 0.00031 6.8 0.000 0.000 0.000 +2458445.5 1.61893 2.77357 -37003585.9 0.00021 0.00032 6.7 0.000 0.000 0.000 +2458446.5 1.60553 2.77242 -37004808.1 0.00020 0.00022 8.0 0.000 0.000 0.000 +2458447.5 1.59300 2.77052 -37005892.3 0.00019 0.00022 6.6 0.000 0.000 0.000 +2458448.5 1.58238 2.76878 -37006861.4 0.00021 0.00021 6.0 0.000 0.000 0.000 +2458449.5 1.56748 2.76864 -37007819.5 0.00020 0.00021 5.9 0.000 0.000 0.000 +2458450.5 1.54675 2.76609 -37008816.1 0.00019 0.00019 6.3 0.000 0.000 0.000 +2458451.5 1.52567 2.75981 -37009925.0 0.00019 0.00015 6.2 0.000 0.000 0.000 +2458452.5 1.50613 2.75151 -37011137.5 0.00017 0.00016 6.3 0.000 0.000 0.000 +2458453.5 1.48525 2.74286 -37012422.8 0.00017 0.00013 7.1 0.000 0.000 0.000 +2458454.5 1.46168 2.73507 -37013733.8 0.00021 0.00015 6.4 0.000 0.000 0.000 +2458455.5 1.43857 2.72845 -37014992.1 0.00021 0.00016 6.2 0.000 0.000 0.000 +2458456.5 1.41869 2.72319 -37016114.9 0.00019 0.00015 6.0 0.000 0.000 0.000 +2458457.5 1.39741 2.72030 -37016995.5 0.00022 0.00016 5.4 0.000 0.000 0.000 +2458458.5 1.37248 2.71794 -37017681.3 0.00022 0.00017 5.5 0.000 0.000 0.000 +2458459.5 1.34861 2.71436 -37018236.6 0.00023 0.00017 5.6 0.000 0.000 0.000 +2458460.5 1.33061 2.71022 -37018731.5 0.00018 0.00014 6.4 0.000 0.000 0.000 +2458461.5 1.31757 2.70862 -37019133.8 0.00023 0.00034 4.6 0.000 0.000 0.000 +2458462.5 1.30329 2.70995 -37019491.4 0.00024 0.00034 4.6 0.000 0.000 0.000 +2458463.5 1.28685 2.71095 -37019881.6 0.00021 0.00034 4.3 0.000 0.000 0.000 +2458464.5 1.26853 2.70924 -37020350.4 0.00028 0.00034 4.3 0.000 0.000 0.000 +2458465.5 1.24916 2.70480 -37020887.6 0.00032 0.00034 4.1 0.000 0.000 0.000 +2458466.5 1.23129 2.70015 -37021493.0 0.00032 0.00034 4.0 0.000 0.000 0.000 +2458467.5 1.21165 2.69551 -37022194.6 0.00031 0.00014 7.6 0.000 0.000 0.000 +2458468.5 1.19268 2.68981 -37023007.8 0.00034 0.00026 4.1 0.000 0.000 0.000 +2458469.5 1.17486 2.68472 -37023941.0 0.00034 0.00026 4.0 0.000 0.000 0.000 +2458470.5 1.15430 2.67991 -37024966.5 0.00030 0.00024 3.5 0.000 0.000 0.000 +2458471.5 1.13422 2.67447 -37026005.1 0.00026 0.00025 3.2 0.000 0.000 0.000 +2458472.5 1.11683 2.67042 -37026907.0 0.00024 0.00025 3.2 0.000 0.000 0.000 +2458473.5 1.09901 2.66779 -37027634.6 0.00021 0.00025 3.4 0.000 0.000 0.000 +2458474.5 1.07885 2.66556 -37028212.8 0.00015 0.00014 4.2 0.000 0.000 0.000 +2458475.5 1.05791 2.66522 -37028678.7 0.00013 0.00013 4.1 0.000 0.000 0.000 +2458476.5 1.03632 2.66593 -37029140.1 0.00011 0.00013 4.1 0.000 0.000 0.000 +2458477.5 1.01459 2.66775 -37029668.9 0.00016 0.00038 5.8 0.000 0.000 0.000 +2458478.5 0.99330 2.67299 -37030294.4 0.00018 0.00047 7.0 0.000 0.000 0.000 +2458479.5 0.97340 2.68059 -37031076.5 0.00018 0.00047 6.9 0.000 0.000 0.000 +2458480.5 0.95444 2.68903 -37032011.4 0.00019 0.00047 6.9 0.000 0.000 0.000 +2458481.5 0.93294 2.69752 -37033085.4 0.00022 0.00048 6.8 0.000 0.000 0.000 +2458482.5 0.90894 2.70407 -37034166.2 0.00023 0.00048 6.7 0.000 0.000 0.000 +2458483.5 0.88502 2.70753 -37035194.8 0.00018 0.00033 7.4 0.000 0.000 0.000 +2458484.5 0.86421 2.71177 -37036163.2 0.00022 0.00019 3.2 0.000 0.000 0.000 +2458485.5 0.84390 2.71951 -37037045.2 0.00023 0.00021 4.0 0.000 0.000 0.000 +2458486.5 0.81887 2.72492 -37037758.4 0.00024 0.00021 4.3 0.000 0.000 0.000 +2458487.5 0.79126 2.72547 -37038271.0 0.00021 0.00020 4.2 0.000 0.000 0.000 +2458488.5 0.76521 2.72572 -37038723.1 0.00023 0.00018 4.4 0.000 0.000 0.000 +2458489.5 0.74206 2.72897 -37039110.7 0.00030 0.00027 5.4 0.000 0.000 0.000 +2458490.5 0.72314 2.73346 -37039431.8 0.00031 0.00030 7.9 0.000 0.000 0.000 +2458491.5 0.71203 2.73835 -37039760.6 0.00034 0.00029 11.3 0.000 0.000 0.000 +2458492.5 0.70615 2.74755 -37040123.0 0.00037 0.00040 6.6 0.000 0.000 0.000 +2458493.5 0.69752 2.75639 -37040582.1 0.00037 0.00041 6.7 0.000 0.000 0.000 +2458494.5 0.68885 2.76105 -37041091.5 0.00035 0.00042 6.8 0.000 0.000 0.000 +2458495.5 0.68294 2.77004 -37041733.9 0.00030 0.00036 6.9 0.000 0.000 0.000 +2458496.5 0.67679 2.78407 -37042465.2 0.00028 0.00037 4.4 0.000 0.000 0.000 +2458497.5 0.67024 2.80069 -37043266.3 0.00024 0.00036 3.8 0.000 0.000 0.000 +2458498.5 0.66329 2.81937 -37044142.8 0.00016 0.00024 3.7 0.000 0.000 0.000 +2458499.5 0.65529 2.83750 -37045046.7 0.00019 0.00024 4.5 0.000 0.000 0.000 +2458500.5 0.64413 2.85447 -37045913.0 0.00021 0.00023 4.5 0.000 0.000 0.000 +2458501.5 0.63082 2.86752 -37046725.2 0.00022 0.00022 4.5 0.000 0.000 0.000 +2458502.5 0.61951 2.87713 -37047480.5 0.00018 0.00016 5.9 0.000 0.000 0.000 +2458503.5 0.60951 2.88660 -37048217.7 0.00017 0.00016 6.2 0.000 0.000 0.000 +2458504.5 0.60077 2.89625 -37049007.5 0.00017 0.00018 5.2 0.000 0.000 0.000 +2458505.5 0.59520 2.90648 -37049919.1 0.00019 0.00015 4.8 0.000 0.000 0.000 +2458506.5 0.59033 2.92044 -37050977.2 0.00019 0.00017 4.5 0.000 0.000 0.000 +2458507.5 0.58319 2.93933 -37052230.3 0.00018 0.00019 4.5 0.000 0.000 0.000 +2458508.5 0.57036 2.95786 -37053633.8 0.00019 0.00019 4.5 0.000 0.000 0.000 +2458509.5 0.55491 2.97226 -37055068.5 0.00019 0.00018 4.6 0.000 0.000 0.000 +2458510.5 0.54316 2.98607 -37056485.6 0.00022 0.00024 4.7 0.000 0.000 0.000 +2458511.5 0.53486 3.00092 -37057808.1 0.00018 0.00023 4.4 0.000 0.000 0.000 +2458512.5 0.52644 3.01522 -37058911.4 0.00017 0.00023 4.8 0.000 0.000 0.000 +2458513.5 0.51643 3.02896 -37059832.0 0.00017 0.00021 5.4 0.000 0.000 0.000 +2458514.5 0.50666 3.04339 -37060576.2 0.00019 0.00023 5.4 0.000 0.000 0.000 +2458515.5 0.49872 3.06196 -37061156.4 0.00020 0.00024 5.3 0.000 0.000 0.000 +2458516.5 0.48979 3.08437 -37061662.4 0.00017 0.00018 5.9 0.000 0.000 0.000 +2458517.5 0.47563 3.10390 -37062127.7 0.00021 0.00022 5.3 0.000 0.000 0.000 +2458518.5 0.46028 3.11651 -37062653.3 0.00020 0.00022 5.3 0.000 0.000 0.000 +2458519.5 0.44835 3.12731 -37063318.5 0.00020 0.00021 5.4 0.000 0.000 0.000 +2458520.5 0.43913 3.13846 -37064089.5 0.00019 0.00022 4.8 0.000 0.000 0.000 +2458521.5 0.43054 3.14958 -37064984.2 0.00018 0.00022 4.8 0.000 0.000 0.000 +2458522.5 0.42320 3.16316 -37065979.0 0.00018 0.00020 4.7 0.000 0.000 0.000 +2458523.5 0.41814 3.18192 -37067067.4 0.00014 0.00016 4.6 0.000 0.000 0.000 +2458524.5 0.41168 3.20279 -37068229.0 0.00016 0.00020 4.3 0.000 0.000 0.000 +2458525.5 0.40106 3.22013 -37069433.4 0.00021 0.00021 4.3 0.000 0.000 0.000 +2458526.5 0.38840 3.23180 -37070615.9 0.00020 0.00018 4.4 0.000 0.000 0.000 +2458527.5 0.37673 3.23813 -37071794.0 0.00023 0.00019 5.8 0.000 0.000 0.000 +2458528.5 0.36416 3.24144 -37072925.9 0.00022 0.00019 5.8 0.000 0.000 0.000 +2458529.5 0.35319 3.24568 -37073966.5 0.00022 0.00019 5.8 0.000 0.000 0.000 +2458530.5 0.35012 3.25570 -37074954.0 0.00020 0.00014 7.1 0.000 0.000 0.000 +2458531.5 0.35481 3.27037 -37075918.5 0.00015 0.00013 7.1 0.000 0.000 0.000 +2458532.5 0.36347 3.28792 -37076930.1 0.00021 0.00015 5.9 0.000 0.000 0.000 +2458533.5 0.37104 3.30693 -37078101.5 0.00021 0.00016 4.3 0.000 0.000 0.000 +2458534.5 0.37432 3.32509 -37079455.8 0.00050 0.00023 4.3 0.000 0.000 0.000 +2458535.5 0.37327 3.34204 -37080944.6 0.00052 0.00023 4.8 0.000 0.000 0.000 +2458536.5 0.36731 3.35925 -37082487.4 0.00053 0.00023 5.1 0.000 0.000 0.000 +2458537.5 0.35802 3.37405 -37083991.8 0.00053 0.00025 5.5 0.000 0.000 0.000 +2458538.5 0.35318 3.38425 -37085378.7 0.00052 0.00026 6.7 0.000 0.000 0.000 +2458539.5 0.35461 3.39251 -37086532.7 0.00051 0.00024 6.7 0.000 0.000 0.000 +2458540.5 0.35817 3.40234 -37087482.9 0.00023 0.00018 7.0 0.000 0.000 0.000 +2458541.5 0.36401 3.41335 -37088211.9 0.00021 0.00020 6.2 0.000 0.000 0.000 +2458542.5 0.37386 3.42506 -37088795.5 0.00020 0.00020 6.0 0.000 0.000 0.000 +2458543.5 0.38642 3.44053 -37089275.8 0.00020 0.00018 5.8 0.000 0.000 0.000 +2458544.5 0.40129 3.45731 -37089714.8 0.00019 0.00016 6.1 0.000 0.000 0.000 +2458545.5 0.41697 3.47333 -37090209.8 0.00030 0.00025 5.6 0.000 0.000 0.000 +2458546.5 0.43012 3.49007 -37090725.1 0.00029 0.00027 5.6 0.000 0.000 0.000 +2458547.5 0.43918 3.50848 -37091334.4 0.00029 0.00026 5.7 0.000 0.000 0.000 +2458548.5 0.44700 3.52574 -37092043.0 0.00031 0.00027 5.3 0.000 0.000 0.000 +2458549.5 0.45443 3.54232 -37092878.2 0.00031 0.00027 5.3 0.000 0.000 0.000 +2458550.5 0.45687 3.55773 -37093828.5 0.00030 0.00027 5.1 0.000 0.000 0.000 +2458551.5 0.45468 3.56853 -37094822.2 0.00020 0.00019 5.4 0.000 0.000 0.000 +2458552.5 0.45321 3.57830 -37095867.3 0.00025 0.00017 6.6 0.000 0.000 0.000 +2458553.5 0.45433 3.59115 -37096941.6 0.00023 0.00015 6.5 0.000 0.000 0.000 +2458554.5 0.45362 3.60553 -37097963.1 0.00021 0.00015 7.7 0.000 0.000 0.000 +2458555.5 0.44973 3.61830 -37098882.3 0.00022 0.00019 7.8 0.000 0.000 0.000 +2458556.5 0.44691 3.63072 -37099702.1 0.00022 0.00022 7.8 0.000 0.000 0.000 +2458557.5 0.44719 3.64286 -37100469.0 0.00020 0.00024 7.8 0.000 0.000 0.000 +2458558.5 0.44907 3.65572 -37101268.7 0.00017 0.00024 8.2 0.000 0.000 0.000 +2458559.5 0.45166 3.66717 -37102138.5 0.00021 0.00025 7.8 0.000 0.000 0.000 +2458560.5 0.45580 3.67686 -37103133.8 0.00022 0.00024 7.9 0.000 0.000 0.000 +2458561.5 0.45822 3.68714 -37104341.6 0.00020 0.00022 8.0 0.000 0.000 0.000 +2458562.5 0.45651 3.69670 -37105749.6 0.00021 0.00019 5.0 0.000 0.000 0.000 +2458563.5 0.45396 3.70625 -37107324.1 0.00020 0.00017 5.0 0.000 0.000 0.000 +2458564.5 0.45192 3.71789 -37109003.0 0.00019 0.00017 5.2 0.000 0.000 0.000 +2458565.5 0.45158 3.73083 -37110633.4 0.00018 0.00018 4.8 0.000 0.000 0.000 +2458566.5 0.45426 3.74444 -37112124.3 0.00019 0.00023 4.9 0.000 0.000 0.000 +2458567.5 0.45823 3.75835 -37113399.2 0.00019 0.00025 4.9 0.000 0.000 0.000 +2458568.5 0.45974 3.77237 -37114443.1 0.00019 0.00024 6.6 0.000 0.000 0.000 +2458569.5 0.45974 3.78367 -37115317.5 0.00022 0.00025 5.7 0.000 0.000 0.000 +2458570.5 0.46204 3.79258 -37116097.4 0.00023 0.00025 5.7 0.000 0.000 0.000 +2458571.5 0.46550 3.80199 -37116810.2 0.00020 0.00023 5.6 0.000 0.000 0.000 +2458572.5 0.47147 3.81261 -37117539.7 0.00018 0.00019 6.0 0.000 0.000 0.000 +2458573.5 0.47997 3.82629 -37118324.2 0.00022 0.00021 4.2 0.000 0.000 0.000 +2458574.5 0.48855 3.84048 -37119197.9 0.00020 0.00020 4.2 0.000 0.000 0.000 +2458575.5 0.49780 3.85290 -37120164.8 0.00017 0.00019 3.4 0.000 0.000 0.000 +2458576.5 0.50561 3.86533 -37121246.5 0.00017 0.00019 4.0 0.000 0.000 0.000 +2458577.5 0.51051 3.87871 -37122472.6 0.00019 0.00019 4.0 0.000 0.000 0.000 +2458578.5 0.51347 3.89041 -37123756.8 0.00019 0.00020 3.9 0.000 0.000 0.000 +2458579.5 0.51615 3.90131 -37125040.4 0.00013 0.00017 6.3 0.000 0.000 0.000 +2458580.5 0.51781 3.91316 -37126334.7 0.00014 0.00019 4.9 0.000 0.000 0.000 +2458581.5 0.51859 3.92345 -37127578.8 0.00013 0.00018 4.9 0.000 0.000 0.000 +2458582.5 0.52104 3.93317 -37128742.2 0.00011 0.00018 4.9 0.000 0.000 0.000 +2458583.5 0.52543 3.94278 -37129773.8 0.00013 0.00023 4.8 0.000 0.000 0.000 +2458584.5 0.53130 3.95123 -37130658.1 0.00021 0.00021 5.0 0.000 0.000 0.000 +2458585.5 0.53832 3.96162 -37131415.5 0.00023 0.00019 5.0 0.000 0.000 0.000 +2458586.5 0.54622 3.97289 -37132211.5 0.00023 0.00017 6.4 0.000 0.000 0.000 +2458587.5 0.55042 3.98231 -37133061.7 0.00025 0.00020 5.1 0.000 0.000 0.000 +2458588.5 0.55237 3.99068 -37134044.1 0.00026 0.00020 5.1 0.000 0.000 0.000 +2458589.5 0.55822 3.99948 -37135232.7 0.00027 0.00018 5.8 0.000 0.000 0.000 +2458590.5 0.56720 4.00599 -37136599.9 0.00022 0.00020 5.6 0.000 0.000 0.000 +2458591.5 0.57766 4.01100 -37138075.2 0.00022 0.00020 5.4 0.000 0.000 0.000 +2458592.5 0.58585 4.01946 -37139490.0 0.00023 0.00019 5.1 0.000 0.000 0.000 +2458593.5 0.59240 4.02827 -37140802.7 0.00021 0.00017 8.6 0.000 0.000 0.000 +2458594.5 0.60248 4.03692 -37141929.8 0.00020 0.00016 8.5 0.000 0.000 0.000 +2458595.5 0.61324 4.04863 -37142810.1 0.00019 0.00017 3.4 0.000 0.000 0.000 +2458596.5 0.62160 4.06224 -37143476.3 0.00019 0.00014 3.6 0.000 0.000 0.000 +2458597.5 0.62833 4.07404 -37144016.9 0.00018 0.00014 4.0 0.000 0.000 0.000 +2458598.5 0.63522 4.08207 -37144512.8 0.00016 0.00014 3.9 0.000 0.000 0.000 +2458599.5 0.64513 4.08779 -37145004.1 0.00016 0.00015 4.0 0.000 0.000 0.000 +2458600.5 0.65756 4.09196 -37145563.3 0.00016 0.00015 4.2 0.000 0.000 0.000 +2458601.5 0.67141 4.09518 -37146174.8 0.00011 0.00011 5.5 0.000 0.000 0.000 +2458602.5 0.68610 4.10008 -37146839.0 0.00011 0.00012 5.5 0.000 0.000 0.000 +2458603.5 0.70256 4.10652 -37147632.1 0.00013 0.00012 6.3 0.000 0.000 0.000 +2458604.5 0.72192 4.11361 -37148567.5 0.00014 0.00014 6.9 0.000 0.000 0.000 +2458605.5 0.74189 4.12118 -37149612.3 0.00013 0.00015 7.2 0.000 0.000 0.000 +2458606.5 0.75742 4.12824 -37150656.4 0.00013 0.00014 7.3 0.000 0.000 0.000 +2458607.5 0.76774 4.13356 -37151631.5 0.00015 0.00013 9.3 0.000 0.000 0.000 +2458608.5 0.77580 4.13924 -37152533.4 0.00015 0.00013 8.9 0.000 0.000 0.000 +2458609.5 0.78224 4.14770 -37153366.3 0.00016 0.00013 5.7 0.000 0.000 0.000 +2458610.5 0.79018 4.15619 -37154093.4 0.00016 0.00011 4.9 0.000 0.000 0.000 +2458611.5 0.80176 4.16237 -37154711.3 0.00016 0.00011 4.3 0.000 0.000 0.000 +2458612.5 0.81680 4.16765 -37155280.2 0.00016 0.00010 3.9 0.000 0.000 0.000 +2458613.5 0.83188 4.17389 -37155827.1 0.00015 0.00011 4.3 0.000 0.000 0.000 +2458614.5 0.84311 4.18039 -37156399.4 0.00016 0.00012 4.3 0.000 0.000 0.000 +2458615.5 0.85107 4.18573 -37157094.1 0.00014 0.00012 4.1 0.000 0.000 0.000 +2458616.5 0.85861 4.18840 -37157942.0 0.00014 0.00012 4.0 0.000 0.000 0.000 +2458617.5 0.86661 4.19122 -37158971.2 0.00013 0.00011 4.4 0.000 0.000 0.000 +2458618.5 0.87669 4.19689 -37160180.3 0.00015 0.00015 4.4 0.000 0.000 0.000 +2458619.5 0.89033 4.20419 -37161457.2 0.00015 0.00015 4.3 0.000 0.000 0.000 +2458620.5 0.90613 4.21137 -37162712.3 0.00014 0.00017 4.3 0.000 0.000 0.000 +2458621.5 0.92112 4.21942 -37163795.2 0.00012 0.00019 6.3 0.000 0.000 0.000 +2458622.5 0.93332 4.22817 -37164604.9 0.00012 0.00019 5.0 0.000 0.000 0.000 +2458623.5 0.94324 4.23703 -37165206.1 0.00012 0.00019 4.9 0.000 0.000 0.000 +2458624.5 0.95207 4.24356 -37165594.9 0.00010 0.00015 5.0 0.000 0.000 0.000 +2458625.5 0.96282 4.24668 -37165853.5 0.00013 0.00016 5.3 0.000 0.000 0.000 +2458626.5 0.97637 4.25068 -37166076.1 0.00015 0.00014 5.2 0.000 0.000 0.000 +2458627.5 0.99111 4.25638 -37166313.1 0.00015 0.00012 5.1 0.000 0.000 0.000 +2458628.5 1.00655 4.26339 -37166589.7 0.00014 0.00011 6.5 0.000 0.000 0.000 +2458629.5 1.01968 4.27145 -37166907.9 0.00015 0.00011 6.7 0.000 0.000 0.000 +2458630.5 1.02819 4.27977 -37167308.8 0.00015 0.00011 4.9 0.000 0.000 0.000 +2458631.5 1.03491 4.28638 -37167776.2 0.00013 0.00010 4.3 0.000 0.000 0.000 +2458632.5 1.04247 4.29097 -37168287.6 0.00019 0.00013 5.7 0.000 0.000 0.000 +2458633.5 1.05291 4.29378 -37168871.7 0.00020 0.00013 5.5 0.000 0.000 0.000 +2458634.5 1.06961 4.29355 -37169466.8 0.00020 0.00012 5.7 0.000 0.000 0.000 +2458635.5 1.09287 4.29326 -37170050.7 0.00020 0.00012 5.7 0.000 0.000 0.000 +2458636.5 1.11789 4.29668 -37170589.3 0.00020 0.00014 6.1 0.000 0.000 0.000 +2458637.5 1.14378 4.30248 -37170973.5 0.00020 0.00015 6.1 0.000 0.000 0.000 +2458638.5 1.17028 4.30825 -37171219.6 0.00014 0.00013 3.9 0.000 0.000 0.000 +2458639.5 1.19292 4.31271 -37171392.6 0.00016 0.00016 4.3 0.000 0.000 0.000 +2458640.5 1.21051 4.31271 -37171518.6 0.00016 0.00017 4.1 0.000 0.000 0.000 +2458641.5 1.22747 4.30899 -37171640.5 0.00016 0.00018 4.0 0.000 0.000 0.000 +2458642.5 1.24466 4.30597 -37171829.1 0.00015 0.00017 6.2 0.000 0.000 0.000 +2458643.5 1.26261 4.30161 -37172138.8 0.00015 0.00017 6.3 0.000 0.000 0.000 +2458644.5 1.28350 4.29877 -37172610.2 0.00017 0.00016 3.3 0.000 0.000 0.000 +2458645.5 1.30449 4.29748 -37173213.5 0.00014 0.00013 2.9 0.000 0.000 0.000 +2458646.5 1.32370 4.29550 -37173870.1 0.00017 0.00018 2.7 0.000 0.000 0.000 +2458647.5 1.34457 4.29394 -37174494.9 0.00017 0.00018 3.4 0.000 0.000 0.000 +2458648.5 1.36713 4.29188 -37175015.0 0.00017 0.00017 3.7 0.000 0.000 0.000 +2458649.5 1.38690 4.28965 -37175361.6 0.00017 0.00017 3.7 0.000 0.000 0.000 +2458650.5 1.40252 4.28628 -37175471.1 0.00017 0.00019 5.1 0.000 0.000 0.000 +2458651.5 1.41747 4.28108 -37175408.1 0.00017 0.00020 5.0 0.000 0.000 0.000 +2458652.5 1.43279 4.27522 -37175244.0 0.00014 0.00014 6.8 0.000 0.000 0.000 +2458653.5 1.44601 4.26838 -37175011.6 0.00022 0.00017 4.3 0.000 0.000 0.000 +2458654.5 1.45851 4.26259 -37174768.5 0.00024 0.00017 4.1 0.000 0.000 0.000 +2458655.5 1.47158 4.26036 -37174573.6 0.00024 0.00017 4.3 0.000 0.000 0.000 +2458656.5 1.48414 4.25886 -37174438.1 0.00023 0.00016 4.8 0.000 0.000 0.000 +2458657.5 1.49249 4.25729 -37174352.1 0.00024 0.00016 4.5 0.000 0.000 0.000 +2458658.5 1.49724 4.25269 -37174370.7 0.00024 0.00015 4.5 0.000 0.000 0.000 +2458659.5 1.50463 4.24509 -37174416.0 0.00017 0.00013 5.8 0.000 0.000 0.000 +2458660.5 1.51593 4.23530 -37174479.1 0.00015 0.00022 4.8 0.000 0.000 0.000 +2458661.5 1.53155 4.22579 -37174541.8 0.00014 0.00023 5.0 0.000 0.000 0.000 +2458662.5 1.54947 4.22083 -37174552.9 0.00014 0.00023 4.7 0.000 0.000 0.000 +2458663.5 1.56520 4.21781 -37174537.3 0.00011 0.00022 5.8 0.000 0.000 0.000 +2458664.5 1.57725 4.21379 -37174420.9 0.00012 0.00022 5.3 0.000 0.000 0.000 +2458665.5 1.58493 4.20667 -37174172.2 0.00013 0.00022 5.3 0.000 0.000 0.000 +2458666.5 1.58954 4.19556 -37173807.1 0.00012 0.00013 8.5 0.000 0.000 0.000 +2458667.5 1.59332 4.18299 -37173323.2 0.00025 0.00013 5.4 0.000 0.000 0.000 +2458668.5 1.59847 4.17172 -37172772.2 0.00025 0.00013 6.6 0.000 0.000 0.000 +2458669.5 1.60906 4.16183 -37172295.8 0.00025 0.00012 6.7 0.000 0.000 0.000 +2458670.5 1.62802 4.15401 -37172007.6 0.00024 0.00012 8.1 0.000 0.000 0.000 +2458671.5 1.65060 4.15023 -37171933.9 0.00025 0.00012 9.1 0.000 0.000 0.000 +2458672.5 1.67070 4.14758 -37171947.1 0.00026 0.00012 9.1 0.000 0.000 0.000 +2458673.5 1.68856 4.14198 -37172011.0 0.00014 0.00010 13.6 0.000 0.000 0.000 +2458674.5 1.70641 4.13377 -37172062.8 0.00014 0.00012 8.4 0.000 0.000 0.000 +2458675.5 1.72147 4.12384 -37172024.0 0.00013 0.00011 8.3 0.000 0.000 0.000 +2458676.5 1.73272 4.11217 -37171793.3 0.00013 0.00012 8.0 0.000 0.000 0.000 +2458677.5 1.74525 4.09938 -37171341.0 0.00011 0.00012 5.1 0.000 0.000 0.000 +2458678.5 1.76071 4.08635 -37170672.2 0.00012 0.00012 3.7 0.000 0.000 0.000 +2458679.5 1.77745 4.07415 -37169813.3 0.00013 0.00012 3.9 0.000 0.000 0.000 +2458680.5 1.79312 4.06502 -37168858.4 0.00013 0.00011 4.8 0.000 0.000 0.000 +2458681.5 1.80562 4.05972 -37167936.8 0.00019 0.00020 3.6 0.000 0.000 0.000 +2458682.5 1.81641 4.05313 -37167064.7 0.00020 0.00020 3.8 0.000 0.000 0.000 +2458683.5 1.82517 4.04509 -37166290.5 0.00020 0.00020 4.5 0.000 0.000 0.000 +2458684.5 1.83085 4.03591 -37165638.6 0.00019 0.00020 5.6 0.000 0.000 0.000 +2458685.5 1.83749 4.02453 -37165133.6 0.00020 0.00021 4.1 0.000 0.000 0.000 +2458686.5 1.84633 4.01325 -37164655.1 0.00020 0.00021 3.9 0.000 0.000 0.000 +2458687.5 1.85940 4.00319 -37164206.0 0.00014 0.00012 4.7 0.000 0.000 0.000 +2458688.5 1.87718 3.99396 -37163871.0 0.00021 0.00014 4.3 0.000 0.000 0.000 +2458689.5 1.89647 3.98205 -37163555.4 0.00021 0.00014 3.7 0.000 0.000 0.000 +2458690.5 1.91806 3.96782 -37163194.3 0.00020 0.00014 3.9 0.000 0.000 0.000 +2458691.5 1.94229 3.95612 -37162789.0 0.00019 0.00011 9.7 0.000 0.000 0.000 +2458692.5 1.96582 3.94994 -37162365.8 0.00022 0.00027 5.8 0.000 0.000 0.000 +2458693.5 1.98634 3.94657 -37161846.6 0.00023 0.00027 5.8 0.000 0.000 0.000 +2458694.5 2.00558 3.94104 -37161241.4 0.00018 0.00026 6.4 0.000 0.000 0.000 +2458695.5 2.02654 3.93287 -37160654.3 0.00020 0.00027 4.5 0.000 0.000 0.000 +2458696.5 2.04665 3.92271 -37160159.4 0.00020 0.00027 4.5 0.000 0.000 0.000 +2458697.5 2.06296 3.91183 -37159849.1 0.00020 0.00027 2.6 0.000 0.000 0.000 +2458698.5 2.07830 3.90179 -37159766.1 0.00016 0.00011 3.4 0.000 0.000 0.000 +2458699.5 2.09316 3.89353 -37159890.5 0.00015 0.00012 2.7 0.000 0.000 0.000 +2458700.5 2.10543 3.88768 -37160155.7 0.00015 0.00012 2.9 0.000 0.000 0.000 +2458701.5 2.11579 3.88355 -37160447.4 0.00011 0.00010 4.5 0.000 0.000 0.000 +2458702.5 2.12357 3.87948 -37160659.1 0.00020 0.00013 4.0 0.000 0.000 0.000 +2458703.5 2.12784 3.87359 -37160699.2 0.00021 0.00014 3.8 0.000 0.000 0.000 +2458704.5 2.13206 3.86437 -37160513.9 0.00021 0.00015 3.9 0.000 0.000 0.000 +2458705.5 2.13635 3.85276 -37160086.2 0.00020 0.00014 5.4 0.000 0.000 0.000 +2458706.5 2.14039 3.83778 -37159495.2 0.00021 0.00015 4.1 0.000 0.000 0.000 +2458707.5 2.14529 3.82146 -37158816.8 0.00019 0.00015 3.6 0.000 0.000 0.000 +2458708.5 2.15005 3.80556 -37158045.0 0.00011 0.00012 4.0 0.000 0.000 0.000 +2458709.5 2.15615 3.79015 -37157326.8 0.00013 0.00012 3.9 0.000 0.000 0.000 +2458710.5 2.16251 3.77757 -37156743.0 0.00013 0.00012 4.0 0.000 0.000 0.000 +2458711.5 2.16606 3.76691 -37156275.9 0.00014 0.00011 3.6 0.000 0.000 0.000 +2458712.5 2.16788 3.75618 -37155842.3 0.00014 0.00010 4.5 0.000 0.000 0.000 +2458713.5 2.16958 3.74441 -37155502.8 0.00027 0.00035 3.9 0.000 0.000 0.000 +2458714.5 2.16998 3.73201 -37155215.1 0.00028 0.00035 3.9 0.000 0.000 0.000 +2458715.5 2.17079 3.71851 -37154987.1 0.00027 0.00034 4.0 0.000 0.000 0.000 +2458716.5 2.17227 3.70346 -37154821.5 0.00027 0.00041 3.1 0.000 0.000 0.000 +2458717.5 2.17282 3.68767 -37154678.7 0.00027 0.00041 3.6 0.000 0.000 0.000 +2458718.5 2.17205 3.67253 -37154522.7 0.00026 0.00041 3.8 0.000 0.000 0.000 +2458719.5 2.16946 3.65554 -37154350.7 0.00012 0.00024 5.3 0.000 0.000 0.000 +2458720.5 2.16682 3.63630 -37154081.1 0.00012 0.00025 4.5 0.000 0.000 0.000 +2458721.5 2.16495 3.61682 -37153706.4 0.00011 0.00025 4.4 0.000 0.000 0.000 +2458722.5 2.16414 3.59816 -37153304.7 0.00011 0.00013 6.0 0.000 0.000 0.000 +2458723.5 2.16277 3.57984 -37152991.3 0.00017 0.00021 4.1 0.000 0.000 0.000 +2458724.5 2.15955 3.56171 -37152817.4 0.00018 0.00021 4.4 0.000 0.000 0.000 +2458725.5 2.15359 3.54365 -37152860.9 0.00017 0.00020 3.7 0.000 0.000 0.000 +2458726.5 2.14681 3.52604 -37153125.9 0.00017 0.00019 5.2 0.000 0.000 0.000 +2458727.5 2.14356 3.51048 -37153632.9 0.00026 0.00024 4.6 0.000 0.000 0.000 +2458728.5 2.14202 3.49789 -37154265.1 0.00026 0.00025 4.6 0.000 0.000 0.000 +2458729.5 2.13861 3.48389 -37154814.3 0.00023 0.00019 5.5 0.000 0.000 0.000 +2458730.5 2.13528 3.46761 -37155263.5 0.00025 0.00027 4.2 0.000 0.000 0.000 +2458731.5 2.13355 3.45123 -37155524.0 0.00025 0.00027 4.2 0.000 0.000 0.000 +2458732.5 2.13379 3.43328 -37155542.1 0.00025 0.00027 4.1 0.000 0.000 0.000 +2458733.5 2.13645 3.41619 -37155367.7 0.00017 0.00022 5.4 0.000 0.000 0.000 +2458734.5 2.13777 3.40226 -37155105.6 0.00025 0.00023 5.7 0.000 0.000 0.000 +2458735.5 2.13585 3.38900 -37154716.9 0.00024 0.00022 5.6 0.000 0.000 0.000 +2458736.5 2.12931 3.37598 -37154301.4 0.00022 0.00013 8.0 0.000 0.000 0.000 +2458737.5 2.11697 3.36222 -37153939.0 0.00027 0.00020 5.4 0.000 0.000 0.000 +2458738.5 2.10381 3.34450 -37153595.6 0.00026 0.00021 5.5 0.000 0.000 0.000 +2458739.5 2.09421 3.32521 -37153369.2 0.00027 0.00022 4.9 0.000 0.000 0.000 +2458740.5 2.08842 3.30801 -37153298.8 0.00021 0.00021 4.0 0.000 0.000 0.000 +2458741.5 2.08441 3.29552 -37153325.1 0.00021 0.00022 3.5 0.000 0.000 0.000 +2458742.5 2.07923 3.28360 -37153336.7 0.00021 0.00022 3.4 0.000 0.000 0.000 +2458743.5 2.07409 3.26888 -37153324.3 0.00013 0.00015 4.7 0.000 0.000 0.000 +2458744.5 2.06882 3.25464 -37153282.3 0.00023 0.00016 4.0 0.000 0.000 0.000 +2458745.5 2.06034 3.24168 -37153151.1 0.00022 0.00014 3.5 0.000 0.000 0.000 +2458746.5 2.04899 3.23004 -37152911.4 0.00021 0.00013 3.4 0.000 0.000 0.000 +2458747.5 2.03797 3.21703 -37152552.4 0.00021 0.00011 4.1 0.000 0.000 0.000 +2458748.5 2.02989 3.20408 -37152108.1 0.00029 0.00013 3.8 0.000 0.000 0.000 +2458749.5 2.02303 3.19414 -37151646.3 0.00029 0.00013 3.7 0.000 0.000 0.000 +2458750.5 2.01694 3.18534 -37151208.8 0.00024 0.00010 5.6 0.000 0.000 0.000 +2458751.5 2.01060 3.17761 -37150914.8 0.00027 0.00018 3.9 0.000 0.000 0.000 +2458752.5 2.00194 3.17094 -37150902.9 0.00027 0.00018 4.7 0.000 0.000 0.000 +2458753.5 1.99526 3.16275 -37151215.2 0.00027 0.00019 4.8 0.000 0.000 0.000 +2458754.5 1.99154 3.15514 -37151802.4 0.00018 0.00017 6.2 0.000 0.000 0.000 +2458755.5 1.98940 3.14626 -37152506.1 0.00024 0.00025 6.0 0.000 0.000 0.000 +2458756.5 1.98833 3.13451 -37153196.9 0.00033 0.00029 6.1 0.000 0.000 0.000 +2458757.5 1.98403 3.12192 -37153742.4 0.00032 0.00025 9.5 0.000 0.000 0.000 +2458758.5 1.97568 3.11050 -37153981.9 0.00032 0.00025 8.5 0.000 0.000 0.000 +2458759.5 1.96521 3.09950 -37153930.2 0.00031 0.00024 8.4 0.000 0.000 0.000 +2458760.5 1.95548 3.08748 -37153686.7 0.00031 0.00025 7.4 0.000 0.000 0.000 +2458761.5 1.94656 3.07548 -37153298.9 0.00027 0.00019 7.8 0.000 0.000 0.000 +2458762.5 1.93668 3.06171 -37152834.1 0.00013 0.00012 10.1 0.000 0.000 0.000 +2458763.5 1.92700 3.04908 -37152374.5 0.00024 0.00024 8.3 0.000 0.000 0.000 +2458764.5 1.91673 3.03544 -37151971.8 0.00027 0.00024 10.5 0.000 0.000 0.000 +2458765.5 1.90589 3.01967 -37151646.1 0.00033 0.00029 6.0 0.000 0.000 0.000 +2458766.5 1.89515 3.00709 -37151432.6 0.00033 0.00029 6.1 0.000 0.000 0.000 +2458767.5 1.88685 2.99735 -37151374.0 0.00032 0.00028 6.2 0.000 0.000 0.000 +2458768.5 1.87779 2.99381 -37151478.0 0.00033 0.00028 6.0 0.000 0.000 0.000 +2458769.5 1.86270 2.99176 -37151673.0 0.00036 0.00025 5.4 0.000 0.000 0.000 +2458770.5 1.84414 2.98537 -37151934.7 0.00035 0.00025 4.5 0.000 0.000 0.000 +2458771.5 1.82789 2.97768 -37152240.0 0.00029 0.00020 7.2 0.000 0.000 0.000 +2458772.5 1.81441 2.97191 -37152573.4 0.00031 0.00026 5.0 0.000 0.000 0.000 +2458773.5 1.79947 2.96616 -37152884.2 0.00032 0.00026 5.1 0.000 0.000 0.000 +2458774.5 1.78306 2.95614 -37153135.0 0.00031 0.00026 5.1 0.000 0.000 0.000 +2458775.5 1.76773 2.94495 -37153320.6 0.00017 0.00019 5.4 0.000 0.000 0.000 +2458776.5 1.75241 2.93463 -37153418.7 0.00024 0.00027 4.8 0.000 0.000 0.000 +2458777.5 1.73723 2.92392 -37153490.4 0.00025 0.00026 4.7 0.000 0.000 0.000 +2458778.5 1.72472 2.91289 -37153598.6 0.00023 0.00020 5.2 0.000 0.000 0.000 +2458779.5 1.71381 2.90443 -37153817.8 0.00026 0.00025 3.0 0.000 0.000 0.000 +2458780.5 1.70133 2.89910 -37154240.4 0.00026 0.00025 3.1 0.000 0.000 0.000 +2458781.5 1.68867 2.89054 -37154915.5 0.00026 0.00025 3.2 0.000 0.000 0.000 +2458782.5 1.67908 2.87792 -37155815.7 0.00019 0.00017 3.5 0.000 0.000 0.000 +2458783.5 1.67370 2.86525 -37156812.4 0.00030 0.00029 2.8 0.000 0.000 0.000 +2458784.5 1.67117 2.85460 -37157741.8 0.00031 0.00029 3.0 0.000 0.000 0.000 +2458785.5 1.67001 2.84298 -37158452.1 0.00030 0.00027 2.9 0.000 0.000 0.000 +2458786.5 1.66976 2.83108 -37158919.0 0.00030 0.00027 2.7 0.000 0.000 0.000 +2458787.5 1.66664 2.82067 -37159150.0 0.00030 0.00027 2.6 0.000 0.000 0.000 +2458788.5 1.66060 2.81114 -37159219.1 0.00028 0.00025 2.5 0.000 0.000 0.000 +2458789.5 1.65390 2.80234 -37159203.3 0.00015 0.00013 3.1 0.000 0.000 0.000 +2458790.5 1.64702 2.79401 -37159177.1 0.00017 0.00018 2.6 0.000 0.000 0.000 +2458791.5 1.63942 2.78736 -37159217.4 0.00013 0.00015 3.4 0.000 0.000 0.000 +2458792.5 1.63146 2.78229 -37159284.4 0.00013 0.00014 3.6 0.000 0.000 0.000 +2458793.5 1.62404 2.78006 -37159450.9 0.00014 0.00016 3.2 0.000 0.000 0.000 +2458794.5 1.61484 2.77816 -37159776.2 0.00014 0.00016 3.2 0.000 0.000 0.000 +2458795.5 1.60462 2.77218 -37160250.5 0.00014 0.00016 3.3 0.000 0.000 0.000 +2458796.5 1.59272 2.76548 -37160864.1 0.00012 0.00011 3.8 0.000 0.000 0.000 +2458797.5 1.57926 2.75911 -37161559.1 0.00018 0.00020 4.4 0.000 0.000 0.000 +2458798.5 1.56750 2.75287 -37162266.7 0.00020 0.00021 4.5 0.000 0.000 0.000 +2458799.5 1.55612 2.75002 -37162900.7 0.00018 0.00020 8.1 0.000 0.000 0.000 +2458800.5 1.54349 2.75020 -37163435.2 0.00027 0.00023 4.4 0.000 0.000 0.000 +2458801.5 1.53201 2.74964 -37163865.1 0.00027 0.00023 5.3 0.000 0.000 0.000 +2458802.5 1.52094 2.75013 -37164174.9 0.00028 0.00023 5.3 0.000 0.000 0.000 +2458803.5 1.50205 2.75018 -37164388.5 0.00023 0.00014 5.1 0.000 0.000 0.000 +2458804.5 1.47665 2.74455 -37164469.9 0.00023 0.00024 4.3 0.000 0.000 0.000 +2458805.5 1.45296 2.73688 -37164518.1 0.00023 0.00024 4.4 0.000 0.000 0.000 +2458806.5 1.43310 2.73056 -37164658.4 0.00013 0.00022 5.5 0.000 0.000 0.000 +2458807.5 1.41546 2.72426 -37164964.2 0.00018 0.00027 3.4 0.000 0.000 0.000 +2458808.5 1.39765 2.71745 -37165553.4 0.00018 0.00027 3.6 0.000 0.000 0.000 +2458809.5 1.37907 2.71028 -37166339.5 0.00019 0.00026 3.7 0.000 0.000 0.000 +2458810.5 1.35854 2.70517 -37167211.0 0.00017 0.00018 4.4 0.000 0.000 0.000 +2458811.5 1.33722 2.70045 -37168095.5 0.00021 0.00021 3.6 0.000 0.000 0.000 +2458812.5 1.31808 2.69512 -37168901.3 0.00023 0.00032 3.8 0.000 0.000 0.000 +2458813.5 1.30174 2.69162 -37169475.3 0.00018 0.00028 4.1 0.000 0.000 0.000 +2458814.5 1.28738 2.69113 -37169786.7 0.00018 0.00028 4.1 0.000 0.000 0.000 +2458815.5 1.27324 2.69368 -37169946.3 0.00018 0.00028 4.2 0.000 0.000 0.000 +2458816.5 1.25969 2.69622 -37170019.6 0.00018 0.00028 4.2 0.000 0.000 0.000 +2458817.5 1.24570 2.69941 -37170032.0 0.00015 0.00026 5.1 0.000 0.000 0.000 +2458818.5 1.23003 2.70436 -37170014.4 0.00016 0.00012 7.1 0.000 0.000 0.000 +2458819.5 1.21242 2.70935 -37170067.2 0.00017 0.00012 6.9 0.000 0.000 0.000 +2458820.5 1.18988 2.71332 -37170205.1 0.00019 0.00012 6.7 0.000 0.000 0.000 +2458821.5 1.16256 2.71407 -37170423.9 0.00030 0.00015 5.1 0.000 0.000 0.000 +2458822.5 1.13496 2.71298 -37170691.8 0.00030 0.00016 4.9 0.000 0.000 0.000 +2458823.5 1.11234 2.71147 -37171026.9 0.00030 0.00016 4.8 0.000 0.000 0.000 +2458824.5 1.09448 2.71072 -37171423.1 0.00027 0.00014 4.3 0.000 0.000 0.000 +2458825.5 1.07926 2.70985 -37171863.7 0.00033 0.00014 4.0 0.000 0.000 0.000 +2458826.5 1.06765 2.70934 -37172268.1 0.00033 0.00014 4.0 0.000 0.000 0.000 +2458827.5 1.05914 2.71006 -37172535.5 0.00024 0.00014 4.3 0.000 0.000 0.000 +2458828.5 1.05282 2.71078 -37172623.7 0.00038 0.00022 4.0 0.000 0.000 0.000 +2458829.5 1.05009 2.71302 -37172598.7 0.00038 0.00021 4.0 0.000 0.000 0.000 +2458830.5 1.04849 2.72022 -37172460.3 0.00038 0.00021 4.1 0.000 0.000 0.000 +2458831.5 1.04314 2.73181 -37172274.9 0.00034 0.00021 5.7 0.000 0.000 0.000 +2458832.5 1.03258 2.74135 -37172102.5 0.00033 0.00022 5.9 0.000 0.000 0.000 +2458833.5 1.01511 2.74756 -37171998.3 0.00040 0.00027 5.3 0.000 0.000 0.000 +2458834.5 0.99467 2.75073 -37172034.0 0.00026 0.00020 7.0 0.000 0.000 0.000 +2458835.5 0.97529 2.75322 -37172247.9 0.00032 0.00024 3.4 0.000 0.000 0.000 +2458836.5 0.95994 2.75703 -37172718.5 0.00031 0.00026 3.6 0.000 0.000 0.000 +2458837.5 0.95137 2.76107 -37173355.0 0.00032 0.00025 3.6 0.000 0.000 0.000 +2458838.5 0.94768 2.76509 -37174038.4 0.00033 0.00025 2.9 0.000 0.000 0.000 +2458839.5 0.94389 2.77270 -37174719.4 0.00029 0.00024 2.5 0.000 0.000 0.000 +2458840.5 0.93352 2.78320 -37175312.3 0.00029 0.00023 2.5 0.000 0.000 0.000 +2458841.5 0.91851 2.79084 -37175757.4 0.00023 0.00019 7.1 0.000 0.000 0.000 +2458842.5 0.90253 2.79595 -37176024.5 0.00035 0.00033 4.8 0.000 0.000 0.000 +2458843.5 0.88559 2.80081 -37176146.5 0.00034 0.00033 4.9 0.000 0.000 0.000 +2458844.5 0.86875 2.80687 -37176208.7 0.00033 0.00033 4.7 0.000 0.000 0.000 +2458845.5 0.85030 2.81291 -37176250.8 0.00031 0.00029 5.4 0.000 0.000 0.000 +2458846.5 0.82854 2.81647 -37176325.9 0.00040 0.00035 6.5 0.000 0.000 0.000 +2458847.5 0.80392 2.81768 -37176492.2 0.00040 0.00035 6.1 0.000 0.000 0.000 +2458848.5 0.78271 2.81926 -37176768.8 0.00030 0.00020 10.7 0.000 0.000 0.000 +2458849.5 0.76577 2.82336 -37177155.4 0.00032 0.00027 5.5 0.000 0.000 0.000 +2458850.5 0.74635 2.82712 -37177627.4 0.00032 0.00027 5.8 0.000 0.000 0.000 +2458851.5 0.72728 2.83186 -37178114.8 0.00030 0.00027 6.8 0.000 0.000 0.000 +2458852.5 0.71354 2.84009 -37178588.5 0.00016 0.00020 5.8 0.000 0.000 0.000 +2458853.5 0.70065 2.84823 -37179081.8 0.00015 0.00020 7.6 0.000 0.000 0.000 +2458854.5 0.68397 2.85241 -37179427.6 0.00018 0.00029 7.8 0.000 0.000 0.000 +2458855.5 0.66594 2.85505 -37179551.4 0.00014 0.00022 18.8 0.000 0.000 0.000 +2458856.5 0.64935 2.85943 -37179530.2 0.00026 0.00030 7.2 0.000 0.000 0.000 +2458857.5 0.63609 2.86613 -37179375.0 0.00025 0.00030 6.8 0.000 0.000 0.000 +2458858.5 0.62640 2.87505 -37179117.4 0.00025 0.00028 6.8 0.000 0.000 0.000 +2458859.5 0.61862 2.88667 -37178878.6 0.00023 0.00026 6.1 0.000 0.000 0.000 +2458860.5 0.61219 2.89850 -37178790.2 0.00032 0.00022 4.1 0.000 0.000 0.000 +2458861.5 0.60880 2.91013 -37178937.5 0.00030 0.00021 3.6 0.000 0.000 0.000 +2458862.5 0.60505 2.92350 -37179327.7 0.00024 0.00014 2.4 0.000 0.000 0.000 +2458863.5 0.59576 2.93792 -37179964.5 0.00031 0.00018 2.2 0.000 0.000 0.000 +2458864.5 0.58468 2.95313 -37180792.9 0.00031 0.00018 2.3 0.000 0.000 0.000 +2458865.5 0.57410 2.96723 -37181742.7 0.00032 0.00019 2.3 0.000 0.000 0.000 +2458866.5 0.56502 2.97670 -37182784.9 0.00024 0.00015 3.3 0.000 0.000 0.000 +2458867.5 0.55596 2.98570 -37183757.4 0.00026 0.00016 3.3 0.000 0.000 0.000 +2458868.5 0.54606 2.99489 -37184602.4 0.00039 0.00019 2.7 0.000 0.000 0.000 +2458869.5 0.53838 3.00266 -37185283.8 0.00033 0.00016 3.4 0.000 0.000 0.000 +2458870.5 0.53292 3.01194 -37185801.2 0.00040 0.00027 2.9 0.000 0.000 0.000 +2458871.5 0.52626 3.02502 -37186163.9 0.00040 0.00027 2.8 0.000 0.000 0.000 +2458872.5 0.52037 3.03662 -37186469.0 0.00040 0.00027 2.8 0.000 0.000 0.000 +2458873.5 0.51879 3.04854 -37186783.5 0.00040 0.00027 2.8 0.000 0.000 0.000 +2458874.5 0.51424 3.06259 -37187191.7 0.00024 0.00024 2.6 0.000 0.000 0.000 +2458875.5 0.50440 3.07457 -37187708.0 0.00023 0.00023 2.3 0.000 0.000 0.000 +2458876.5 0.49368 3.08675 -37188326.8 0.00011 0.00010 2.7 0.000 0.000 0.000 +2458877.5 0.48275 3.10164 -37189052.2 0.00022 0.00016 2.5 0.000 0.000 0.000 +2458878.5 0.47017 3.11640 -37189813.4 0.00022 0.00016 3.0 0.000 0.000 0.000 +2458879.5 0.45687 3.12975 -37190520.0 0.00022 0.00017 3.0 0.000 0.000 0.000 +2458880.5 0.44456 3.14445 -37191170.3 0.00024 0.00017 3.9 0.000 0.000 0.000 +2458881.5 0.43487 3.16044 -37191720.2 0.00025 0.00018 2.9 0.000 0.000 0.000 +2458882.5 0.42739 3.17694 -37192186.5 0.00025 0.00019 2.6 0.000 0.000 0.000 +2458883.5 0.42309 3.19427 -37192514.0 0.00015 0.00014 3.1 0.000 0.000 0.000 +2458884.5 0.42044 3.21222 -37192715.1 0.00029 0.00024 1.7 0.000 0.000 0.000 +2458885.5 0.41297 3.22799 -37192845.1 0.00028 0.00024 1.8 0.000 0.000 0.000 +2458886.5 0.40054 3.23947 -37192930.4 0.00028 0.00026 1.7 0.000 0.000 0.000 +2458887.5 0.38783 3.24798 -37193018.7 0.00027 0.00026 2.5 0.000 0.000 0.000 +2458888.5 0.38008 3.25319 -37193268.1 0.00029 0.00027 2.6 0.000 0.000 0.000 +2458889.5 0.37640 3.26066 -37193792.9 0.00030 0.00026 2.7 0.000 0.000 0.000 +2458890.5 0.37366 3.27310 -37194581.1 0.00017 0.00019 4.5 0.000 0.000 0.000 +2458891.5 0.37379 3.28680 -37195552.4 0.00033 0.00028 2.6 0.000 0.000 0.000 +2458892.5 0.37319 3.30243 -37196539.6 0.00032 0.00025 2.7 0.000 0.000 0.000 +2458893.5 0.36499 3.31914 -37197428.4 0.00032 0.00024 3.0 0.000 0.000 0.000 +2458894.5 0.34913 3.33198 -37198112.7 0.00030 0.00024 4.1 0.000 0.000 0.000 +2458895.5 0.33099 3.34040 -37198628.9 0.00050 0.00029 4.5 0.000 0.000 0.000 +2458896.5 0.31594 3.34910 -37198940.1 0.00051 0.00029 4.5 0.000 0.000 0.000 +2458897.5 0.30715 3.36099 -37199076.1 0.00042 0.00020 5.8 0.000 0.000 0.000 +2458898.5 0.30242 3.37606 -37199125.7 0.00047 0.00027 4.3 0.000 0.000 0.000 +2458899.5 0.29579 3.38977 -37199152.4 0.00047 0.00028 4.1 0.000 0.000 0.000 +2458900.5 0.28511 3.39987 -37199237.1 0.00048 0.00029 4.0 0.000 0.000 0.000 +2458901.5 0.27490 3.40826 -37199507.8 0.00026 0.00024 3.2 0.000 0.000 0.000 +2458902.5 0.27020 3.41643 -37199974.2 0.00027 0.00024 4.5 0.000 0.000 0.000 +2458903.5 0.27077 3.42835 -37200575.4 0.00027 0.00024 4.5 0.000 0.000 0.000 +2458904.5 0.27435 3.44646 -37201248.9 0.00018 0.00016 5.9 0.000 0.000 0.000 +2458905.5 0.27956 3.46726 -37201971.2 0.00019 0.00015 4.5 0.000 0.000 0.000 +2458906.5 0.28478 3.48905 -37202735.9 0.00018 0.00013 4.6 0.000 0.000 0.000 +2458907.5 0.28678 3.51134 -37203520.7 0.00018 0.00014 4.5 0.000 0.000 0.000 +2458908.5 0.28283 3.53250 -37204279.6 0.00014 0.00013 4.3 0.000 0.000 0.000 +2458909.5 0.27656 3.55256 -37204990.4 0.00019 0.00045 3.9 0.000 0.000 0.000 +2458910.5 0.27003 3.57159 -37205625.5 0.00019 0.00045 3.7 0.000 0.000 0.000 +2458911.5 0.26377 3.58999 -37206168.9 0.00017 0.00046 4.7 0.000 0.000 0.000 +2458912.5 0.26095 3.60624 -37206665.9 0.00028 0.00047 3.4 0.000 0.000 0.000 +2458913.5 0.26328 3.62087 -37207140.7 0.00029 0.00048 3.4 0.000 0.000 0.000 +2458914.5 0.26944 3.63869 -37207682.5 0.00029 0.00048 2.7 0.000 0.000 0.000 +2458915.5 0.27672 3.65696 -37208381.4 0.00027 0.00021 1.8 0.000 0.000 0.000 +2458916.5 0.28072 3.67437 -37209257.6 0.00035 0.00025 1.7 0.000 0.000 0.000 +2458917.5 0.28076 3.69100 -37210357.8 0.00035 0.00023 2.0 0.000 0.000 0.000 +2458918.5 0.28227 3.70691 -37211714.7 0.00027 0.00021 2.7 0.000 0.000 0.000 +2458919.5 0.28659 3.72290 -37213267.5 0.00027 0.00022 2.4 0.000 0.000 0.000 +2458920.5 0.29288 3.73780 -37214795.0 0.00027 0.00022 2.5 0.000 0.000 0.000 +2458921.5 0.30392 3.75474 -37216140.4 0.00027 0.00021 2.5 0.000 0.000 0.000 +2458922.5 0.31835 3.77510 -37217282.0 0.00015 0.00018 3.5 0.000 0.000 0.000 +2458923.5 0.33159 3.79407 -37218166.4 0.00016 0.00020 2.2 0.000 0.000 0.000 +2458924.5 0.34119 3.80912 -37218794.2 0.00016 0.00022 2.3 0.000 0.000 0.000 +2458925.5 0.34771 3.82138 -37219272.3 0.00015 0.00021 2.6 0.000 0.000 0.000 +2458926.5 0.35484 3.83074 -37219647.0 0.00021 0.00021 2.0 0.000 0.000 0.000 +2458927.5 0.36787 3.84026 -37219942.4 0.00021 0.00022 2.4 0.000 0.000 0.000 +2458928.5 0.38712 3.85060 -37220241.7 0.00021 0.00020 2.5 0.000 0.000 0.000 +2458929.5 0.40832 3.86072 -37220585.1 0.00020 0.00018 3.5 0.000 0.000 0.000 +2458930.5 0.42615 3.87253 -37220949.0 0.00036 0.00020 2.5 0.000 0.000 0.000 +2458931.5 0.43765 3.88567 -37221378.4 0.00037 0.00021 2.4 0.000 0.000 0.000 +2458932.5 0.44516 3.89972 -37221931.0 0.00035 0.00025 3.0 0.000 0.000 0.000 +2458933.5 0.44829 3.91487 -37222494.0 0.00041 0.00032 2.6 0.000 0.000 0.000 +2458934.5 0.44497 3.93015 -37223053.0 0.00043 0.00032 3.3 0.000 0.000 0.000 +2458935.5 0.44145 3.94134 -37223572.9 0.00044 0.00032 3.5 0.000 0.000 0.000 +2458936.5 0.44734 3.95124 -37224033.3 0.00031 0.00029 5.1 0.000 0.000 0.000 +2458937.5 0.45815 3.96465 -37224432.7 0.00042 0.00031 3.5 0.000 0.000 0.000 +2458938.5 0.47072 3.98018 -37224709.6 0.00044 0.00029 3.5 0.000 0.000 0.000 +2458939.5 0.48804 3.99642 -37224942.9 0.00039 0.00021 4.2 0.000 0.000 0.000 +2458940.5 0.50801 4.01340 -37225163.9 0.00046 0.00033 3.3 0.000 0.000 0.000 +2458941.5 0.52603 4.03256 -37225437.6 0.00045 0.00032 3.0 0.000 0.000 0.000 +2458942.5 0.53976 4.05207 -37225814.9 0.00045 0.00033 2.9 0.000 0.000 0.000 +2458943.5 0.54904 4.06799 -37226425.6 0.00033 0.00031 4.1 0.000 0.000 0.000 +2458944.5 0.55493 4.07948 -37227326.5 0.00033 0.00032 3.1 0.000 0.000 0.000 +2458945.5 0.55917 4.08855 -37228544.7 0.00033 0.00031 3.0 0.000 0.000 0.000 +2458946.5 0.56229 4.09442 -37230009.3 0.00025 0.00028 1.9 0.000 0.000 0.000 +2458947.5 0.56833 4.10023 -37231621.2 0.00025 0.00028 2.4 0.000 0.000 0.000 +2458948.5 0.57618 4.10982 -37233204.3 0.00026 0.00028 2.4 0.000 0.000 0.000 +2458949.5 0.58161 4.12023 -37234631.5 0.00026 0.00026 2.6 0.000 0.000 0.000 +2458950.5 0.58574 4.12967 -37235775.6 0.00022 0.00024 3.7 0.000 0.000 0.000 +2458951.5 0.59106 4.14052 -37236626.9 0.00023 0.00024 3.6 0.000 0.000 0.000 +2458952.5 0.59864 4.15394 -37237231.5 0.00028 0.00013 3.4 0.000 0.000 0.000 +2458953.5 0.60936 4.16740 -37237620.7 0.00028 0.00013 3.7 0.000 0.000 0.000 +2458954.5 0.62027 4.18123 -37237855.7 0.00030 0.00031 3.1 0.000 0.000 0.000 +2458955.5 0.62893 4.19704 -37238016.8 0.00030 0.00031 3.1 0.000 0.000 0.000 +2458956.5 0.63802 4.21386 -37238232.6 0.00029 0.00031 3.3 0.000 0.000 0.000 +2458957.5 0.64411 4.22964 -37238572.9 0.00028 0.00031 3.4 0.000 0.000 0.000 +2458958.5 0.64317 4.24181 -37239013.7 0.00035 0.00031 3.4 0.000 0.000 0.000 +2458959.5 0.63782 4.25109 -37239515.3 0.00035 0.00032 3.2 0.000 0.000 0.000 +2458960.5 0.63293 4.25858 -37239994.6 0.00035 0.00020 3.5 0.000 0.000 0.000 +2458961.5 0.63428 4.26524 -37240481.1 0.00035 0.00021 3.4 0.000 0.000 0.000 +2458962.5 0.64283 4.27342 -37240960.6 0.00036 0.00022 3.2 0.000 0.000 0.000 +2458963.5 0.65533 4.28266 -37241370.5 0.00036 0.00022 3.6 0.000 0.000 0.000 +2458964.5 0.67054 4.29367 -37241679.6 0.00019 0.00022 5.4 0.000 0.000 0.000 +2458965.5 0.68375 4.30736 -37241868.1 0.00024 0.00024 5.1 0.000 0.000 0.000 +2458966.5 0.69421 4.31937 -37241976.8 0.00020 0.00021 9.6 0.000 0.000 0.000 +2458967.5 0.70685 4.32882 -37242068.7 0.00024 0.00030 5.0 0.000 0.000 0.000 +2458968.5 0.72305 4.33714 -37242135.4 0.00024 0.00031 5.2 0.000 0.000 0.000 +2458969.5 0.74134 4.34681 -37242237.3 0.00024 0.00030 4.8 0.000 0.000 0.000 +2458970.5 0.75863 4.35839 -37242466.2 0.00024 0.00030 4.8 0.000 0.000 0.000 +2458971.5 0.77646 4.36950 -37242919.2 0.00020 0.00028 4.7 0.000 0.000 0.000 +2458972.5 0.79659 4.38134 -37243643.9 0.00022 0.00027 3.0 0.000 0.000 0.000 +2458973.5 0.81469 4.39334 -37244598.2 0.00017 0.00015 3.1 0.000 0.000 0.000 +2458974.5 0.82957 4.40398 -37245673.6 0.00013 0.00016 2.9 0.000 0.000 0.000 +2458975.5 0.84357 4.41330 -37246781.7 0.00021 0.00023 2.8 0.000 0.000 0.000 +2458976.5 0.85902 4.42154 -37247845.2 0.00021 0.00023 2.4 0.000 0.000 0.000 +2458977.5 0.87638 4.42798 -37248699.1 0.00023 0.00024 2.4 0.000 0.000 0.000 +2458978.5 0.89579 4.43540 -37249290.0 0.00024 0.00023 4.8 0.000 0.000 0.000 +2458979.5 0.91571 4.44543 -37249739.2 0.00033 0.00024 3.6 0.000 0.000 0.000 +2458980.5 0.93205 4.45531 -37249995.0 0.00033 0.00024 3.8 0.000 0.000 0.000 +2458981.5 0.94632 4.46298 -37250152.7 0.00029 0.00021 4.3 0.000 0.000 0.000 +2458982.5 0.95960 4.46706 -37250330.3 0.00029 0.00021 3.4 0.000 0.000 0.000 +2458983.5 0.97276 4.46616 -37250535.3 0.00028 0.00021 3.5 0.000 0.000 0.000 +2458984.5 0.98822 4.46406 -37250751.5 0.00026 0.00020 2.9 0.000 0.000 0.000 +2458985.5 1.00327 4.46311 -37251075.9 0.00019 0.00020 4.3 0.000 0.000 0.000 +2458986.5 1.01720 4.46139 -37251486.2 0.00037 0.00024 3.0 0.000 0.000 0.000 +2458987.5 1.03018 4.46011 -37252003.9 0.00037 0.00022 2.9 0.000 0.000 0.000 +2458988.5 1.04473 4.45877 -37252609.1 0.00037 0.00022 3.5 0.000 0.000 0.000 +2458989.5 1.06077 4.45971 -37253142.0 0.00037 0.00023 3.2 0.000 0.000 0.000 +2458990.5 1.07389 4.46348 -37253620.0 0.00037 0.00023 3.9 0.000 0.000 0.000 +2458991.5 1.08175 4.46793 -37253967.0 0.00037 0.00024 3.8 0.000 0.000 0.000 +2458992.5 1.08398 4.46981 -37254143.6 0.00020 0.00017 6.4 0.000 0.000 0.000 +2458993.5 1.08437 4.46615 -37254153.3 0.00024 0.00017 6.5 0.000 0.000 0.000 +2458994.5 1.08365 4.46020 -37254011.8 0.00039 0.00022 3.9 0.000 0.000 0.000 +2458995.5 1.08425 4.45306 -37253832.1 0.00039 0.00023 4.3 0.000 0.000 0.000 +2458996.5 1.09187 4.44482 -37253679.0 0.00039 0.00025 2.7 0.000 0.000 0.000 +2458997.5 1.10140 4.43904 -37253549.5 0.00039 0.00024 2.7 0.000 0.000 0.000 +2458998.5 1.10971 4.43399 -37253550.4 0.00038 0.00024 2.7 0.000 0.000 0.000 +2458999.5 1.12025 4.42891 -37253714.0 0.00036 0.00024 2.7 0.000 0.000 0.000 +2459000.5 1.13103 4.42354 -37254087.3 0.00017 0.00020 3.1 0.000 0.000 0.000 +2459001.5 1.14145 4.41631 -37254633.5 0.00029 0.00031 2.5 0.000 0.000 0.000 +2459002.5 1.15348 4.41005 -37255251.8 0.00029 0.00031 2.3 0.000 0.000 0.000 +2459003.5 1.16603 4.40584 -37255800.2 0.00028 0.00031 2.0 0.000 0.000 0.000 +2459004.5 1.18000 4.40340 -37256135.8 0.00027 0.00031 3.0 0.000 0.000 0.000 +2459005.5 1.19614 4.40415 -37256208.1 0.00028 0.00031 3.3 0.000 0.000 0.000 +2459006.5 1.21341 4.40793 -37256053.0 0.00028 0.00031 3.4 0.000 0.000 0.000 +2459007.5 1.22959 4.41323 -37255688.9 0.00023 0.00019 3.5 0.000 0.000 0.000 +2459008.5 1.24202 4.41660 -37255185.5 0.00024 0.00019 4.0 0.000 0.000 0.000 +2459009.5 1.25400 4.41561 -37254625.9 0.00025 0.00028 6.3 0.000 0.000 0.000 +2459010.5 1.26928 4.41128 -37253981.1 0.00025 0.00028 5.9 0.000 0.000 0.000 +2459011.5 1.28706 4.40787 -37253376.1 0.00025 0.00027 6.1 0.000 0.000 0.000 +2459012.5 1.30538 4.40800 -37252731.0 0.00024 0.00027 6.0 0.000 0.000 0.000 +2459013.5 1.32391 4.40819 -37252098.2 0.00016 0.00026 14.4 0.000 0.000 0.000 +2459014.5 1.34362 4.40689 -37251564.2 0.00028 0.00030 8.7 0.000 0.000 0.000 +2459015.5 1.36360 4.40423 -37251133.5 0.00027 0.00021 8.0 0.000 0.000 0.000 +2459016.5 1.38358 4.39886 -37250749.3 0.00026 0.00022 7.9 0.000 0.000 0.000 +2459017.5 1.40369 4.39336 -37250280.1 0.00026 0.00023 5.1 0.000 0.000 0.000 +2459018.5 1.42548 4.38769 -37249709.0 0.00028 0.00023 5.2 0.000 0.000 0.000 +2459019.5 1.44896 4.38109 -37249031.7 0.00029 0.00024 5.0 0.000 0.000 0.000 +2459020.5 1.47117 4.37575 -37248102.2 0.00018 0.00018 6.6 0.000 0.000 0.000 +2459021.5 1.49261 4.37070 -37247044.8 0.00018 0.00018 3.7 0.000 0.000 0.000 +2459022.5 1.51099 4.36515 -37245886.5 0.00019 0.00016 3.7 0.000 0.000 0.000 +2459023.5 1.52527 4.35825 -37244701.6 0.00018 0.00015 3.8 0.000 0.000 0.000 +2459024.5 1.53957 4.35070 -37243572.6 0.00017 0.00016 3.2 0.000 0.000 0.000 +2459025.5 1.55409 4.34462 -37242600.0 0.00014 0.00017 2.8 0.000 0.000 0.000 +2459026.5 1.56978 4.33877 -37241866.4 0.00014 0.00017 2.7 0.000 0.000 0.000 +2459027.5 1.58867 4.33332 -37241361.8 0.00013 0.00016 4.1 0.000 0.000 0.000 +2459028.5 1.60837 4.32775 -37241024.6 0.00016 0.00019 2.4 0.000 0.000 0.000 +2459029.5 1.62755 4.32308 -37240810.4 0.00016 0.00018 2.3 0.000 0.000 0.000 +2459030.5 1.64794 4.32045 -37240568.0 0.00024 0.00024 2.6 0.000 0.000 0.000 +2459031.5 1.66823 4.31629 -37240133.5 0.00024 0.00024 2.4 0.000 0.000 0.000 +2459032.5 1.68557 4.30922 -37239484.7 0.00024 0.00022 2.4 0.000 0.000 0.000 +2459033.5 1.70070 4.29991 -37238599.9 0.00024 0.00024 2.4 0.000 0.000 0.000 +2459034.5 1.71617 4.28810 -37237499.3 0.00021 0.00022 4.8 0.000 0.000 0.000 +2459035.5 1.73423 4.27423 -37236217.8 0.00022 0.00022 4.1 0.000 0.000 0.000 +2459036.5 1.75528 4.26087 -37234878.5 0.00012 0.00014 4.6 0.000 0.000 0.000 +2459037.5 1.77627 4.24826 -37233601.1 0.00011 0.00015 4.7 0.000 0.000 0.000 +2459038.5 1.79599 4.23417 -37232394.8 0.00021 0.00017 3.8 0.000 0.000 0.000 +2459039.5 1.81525 4.21880 -37231266.1 0.00021 0.00016 4.0 0.000 0.000 0.000 +2459040.5 1.83396 4.20492 -37230207.7 0.00023 0.00015 3.9 0.000 0.000 0.000 +2459041.5 1.85132 4.19379 -37229241.8 0.00023 0.00015 4.1 0.000 0.000 0.000 +2459042.5 1.86606 4.18218 -37228237.3 0.00037 0.00023 2.9 0.000 0.000 0.000 +2459043.5 1.87605 4.16937 -37227192.2 0.00038 0.00023 2.9 0.000 0.000 0.000 +2459044.5 1.88489 4.15703 -37226119.6 0.00034 0.00021 3.8 0.000 0.000 0.000 +2459045.5 1.89693 4.14718 -37224964.7 0.00035 0.00023 3.1 0.000 0.000 0.000 +2459046.5 1.90973 4.13845 -37223756.3 0.00034 0.00024 3.0 0.000 0.000 0.000 +2459047.5 1.92185 4.12887 -37222473.5 0.00033 0.00026 3.3 0.000 0.000 0.000 +2459048.5 1.93192 4.11899 -37221122.1 0.00016 0.00019 5.3 0.000 0.000 0.000 +2459049.5 1.93869 4.10734 -37219696.6 0.00024 0.00026 3.2 0.000 0.000 0.000 +2459050.5 1.94340 4.09463 -37218222.9 0.00023 0.00027 2.9 0.000 0.000 0.000 +2459051.5 1.94714 4.08183 -37216856.9 0.00023 0.00026 3.1 0.000 0.000 0.000 +2459052.5 1.95118 4.06700 -37215693.4 0.00031 0.00026 2.6 0.000 0.000 0.000 +2459053.5 1.95625 4.05227 -37214739.7 0.00031 0.00024 2.5 0.000 0.000 0.000 +2459054.5 1.96374 4.04000 -37213989.5 0.00032 0.00026 2.4 0.000 0.000 0.000 +2459055.5 1.97181 4.02838 -37213427.7 0.00026 0.00019 3.1 0.000 0.000 0.000 +2459056.5 1.97763 4.01675 -37212964.2 0.00040 0.00018 2.4 0.000 0.000 0.000 +2459057.5 1.98060 4.00500 -37212451.1 0.00039 0.00018 2.4 0.000 0.000 0.000 +2459058.5 1.98236 3.99312 -37211825.0 0.00033 0.00017 2.8 0.000 0.000 0.000 +2459059.5 1.98602 3.98193 -37211086.3 0.00035 0.00017 2.0 0.000 0.000 0.000 +2459060.5 1.99189 3.97118 -37210185.2 0.00034 0.00017 2.1 0.000 0.000 0.000 +2459061.5 1.99879 3.95964 -37209173.1 0.00037 0.00018 2.3 0.000 0.000 0.000 +2459062.5 2.00994 3.94835 -37208124.1 0.00024 0.00016 2.9 0.000 0.000 0.000 +2459063.5 2.02536 3.94113 -37207051.7 0.00039 0.00020 5.1 0.000 0.000 0.000 +2459064.5 2.03847 3.93678 -37206067.9 0.00038 0.00021 5.3 0.000 0.000 0.000 +2459065.5 2.04994 3.93200 -37205218.7 0.00037 0.00021 14.7 0.000 0.000 0.000 +2459066.5 2.06108 3.92518 -37204462.9 0.00037 0.00020 7.6 0.000 0.000 0.000 +2459067.5 2.07099 3.91708 -37203880.7 0.00034 0.00020 7.5 0.000 0.000 0.000 +2459068.5 2.07981 3.90799 -37203420.4 0.00032 0.00020 7.2 0.000 0.000 0.000 +2459069.5 2.08851 3.89500 -37203040.7 0.00011 0.00017 5.9 0.000 0.000 0.000 +2459070.5 2.09890 3.88030 -37202727.4 0.00012 0.00016 5.5 0.000 0.000 0.000 +2459071.5 2.10983 3.86676 -37202336.8 0.00028 0.00025 6.7 0.000 0.000 0.000 +2459072.5 2.12017 3.85332 -37201831.8 0.00028 0.00025 11.1 0.000 0.000 0.000 +2459073.5 2.13113 3.83890 -37201197.1 0.00032 0.00026 5.4 0.000 0.000 0.000 +2459074.5 2.14278 3.82241 -37200390.8 0.00032 0.00026 6.3 0.000 0.000 0.000 +2459075.5 2.15179 3.80566 -37199492.7 0.00032 0.00026 6.6 0.000 0.000 0.000 +2459076.5 2.15737 3.79111 -37198461.5 0.00032 0.00026 7.1 0.000 0.000 0.000 +2459077.5 2.16233 3.77928 -37197279.2 0.00021 0.00016 6.6 0.000 0.000 0.000 +2459078.5 2.16754 3.77086 -37196106.8 0.00021 0.00020 4.7 0.000 0.000 0.000 +2459079.5 2.17115 3.76424 -37195095.8 0.00013 0.00016 5.5 0.000 0.000 0.000 +2459080.5 2.17048 3.75739 -37194294.6 0.00015 0.00042 5.1 0.000 0.000 0.000 +2459081.5 2.16785 3.74834 -37193664.7 0.00018 0.00042 4.7 0.000 0.000 0.000 +2459082.5 2.16766 3.73517 -37193349.4 0.00019 0.00042 4.5 0.000 0.000 0.000 +2459083.5 2.17015 3.71833 -37193237.7 0.00016 0.00042 4.2 0.000 0.000 0.000 +2459084.5 2.17599 3.70153 -37193177.8 0.00025 0.00043 3.6 0.000 0.000 0.000 +2459085.5 2.18320 3.68701 -37193031.0 0.00025 0.00044 3.3 0.000 0.000 0.000 +2459086.5 2.18747 3.67340 -37192703.9 0.00025 0.00022 3.6 0.000 0.000 0.000 +2459087.5 2.18753 3.66096 -37192094.9 0.00032 0.00031 3.3 0.000 0.000 0.000 +2459088.5 2.18542 3.64911 -37191202.1 0.00031 0.00032 3.9 0.000 0.000 0.000 +2459089.5 2.18394 3.63855 -37190122.5 0.00032 0.00033 4.0 0.000 0.000 0.000 +2459090.5 2.18101 3.63119 -37188891.5 0.00026 0.00029 6.7 0.000 0.000 0.000 +2459091.5 2.17493 3.62342 -37187601.3 0.00034 0.00033 4.6 0.000 0.000 0.000 +2459092.5 2.16757 3.61526 -37186382.2 0.00034 0.00033 4.7 0.000 0.000 0.000 +2459093.5 2.15855 3.60607 -37185342.2 0.00027 0.00026 6.2 0.000 0.000 0.000 +2459094.5 2.14886 3.59346 -37184420.7 0.00037 0.00030 4.0 0.000 0.000 0.000 +2459095.5 2.14001 3.57816 -37183644.1 0.00036 0.00028 4.1 0.000 0.000 0.000 +2459096.5 2.13255 3.56057 -37183007.9 0.00036 0.00028 4.4 0.000 0.000 0.000 +2459097.5 2.12709 3.54458 -37182437.7 0.00027 0.00023 6.0 0.000 0.000 0.000 +2459098.5 2.12247 3.53150 -37181863.7 0.00027 0.00024 6.0 0.000 0.000 0.000 +2459099.5 2.11753 3.51776 -37181303.8 0.00033 0.00032 3.2 0.000 0.000 0.000 +2459100.5 2.11238 3.50405 -37180674.7 0.00021 0.00029 3.8 0.000 0.000 0.000 +2459101.5 2.10937 3.49443 -37179960.0 0.00040 0.00034 2.8 0.000 0.000 0.000 +2459102.5 2.10888 3.48806 -37179144.2 0.00042 0.00035 2.7 0.000 0.000 0.000 +2459103.5 2.10824 3.48298 -37178349.1 0.00043 0.00035 2.9 0.000 0.000 0.000 +2459104.5 2.10239 3.47544 -37177533.1 0.00043 0.00036 3.0 0.000 0.000 0.000 +2459105.5 2.09402 3.46458 -37176742.4 0.00039 0.00033 3.0 0.000 0.000 0.000 +2459106.5 2.08667 3.45417 -37176111.1 0.00039 0.00031 2.7 0.000 0.000 0.000 +2459107.5 2.08070 3.44143 -37175710.7 0.00019 0.00026 3.1 0.000 0.000 0.000 +2459108.5 2.07818 3.42770 -37175555.5 0.00026 0.00032 2.9 0.000 0.000 0.000 +2459109.5 2.07747 3.41467 -37175675.8 0.00025 0.00032 2.9 0.000 0.000 0.000 +2459110.5 2.07447 3.40041 -37175978.4 0.00025 0.00030 3.0 0.000 0.000 0.000 +2459111.5 2.06714 3.38620 -37176403.0 0.00024 0.00026 4.7 0.000 0.000 0.000 +2459112.5 2.05725 3.37243 -37176789.5 0.00029 0.00034 5.1 0.000 0.000 0.000 +2459113.5 2.04609 3.36024 -37177006.3 0.00029 0.00033 5.1 0.000 0.000 0.000 +2459114.5 2.03421 3.34994 -37177018.8 0.00019 0.00026 9.5 0.000 0.000 0.000 +2459115.5 2.02354 3.33996 -37176810.6 0.00021 0.00026 5.8 0.000 0.000 0.000 +2459116.5 2.01331 3.32978 -37176456.9 0.00021 0.00025 8.5 0.000 0.000 0.000 +2459117.5 2.00063 3.31828 -37176008.2 0.00021 0.00026 9.2 0.000 0.000 0.000 +2459118.5 1.98659 3.30551 -37175564.0 0.00016 0.00011 9.8 0.000 0.000 0.000 +2459119.5 1.97308 3.29247 -37175036.7 0.00019 0.00024 5.8 0.000 0.000 0.000 +2459120.5 1.96133 3.27941 -37174483.1 0.00019 0.00025 5.9 0.000 0.000 0.000 +2459121.5 1.95076 3.26604 -37174054.6 0.00018 0.00026 6.8 0.000 0.000 0.000 +2459122.5 1.94205 3.25357 -37173718.3 0.00020 0.00028 5.5 0.000 0.000 0.000 +2459123.5 1.93500 3.24422 -37173478.2 0.00021 0.00028 5.1 0.000 0.000 0.000 +2459124.5 1.92554 3.23688 -37173251.8 0.00020 0.00028 5.3 0.000 0.000 0.000 +2459125.5 1.91362 3.22800 -37173089.0 0.00018 0.00021 8.5 0.000 0.000 0.000 +2459126.5 1.90435 3.21548 -37172951.6 0.00029 0.00023 7.5 0.000 0.000 0.000 +2459127.5 1.90002 3.20186 -37172780.9 0.00028 0.00022 7.6 0.000 0.000 0.000 +2459128.5 1.89471 3.19228 -37172508.4 0.00027 0.00019 9.0 0.000 0.000 0.000 +2459129.5 1.88441 3.18495 -37172119.1 0.00027 0.00019 5.9 0.000 0.000 0.000 +2459130.5 1.87175 3.17534 -37171606.2 0.00029 0.00019 5.6 0.000 0.000 0.000 +2459131.5 1.85861 3.16255 -37170953.0 0.00029 0.00018 5.4 0.000 0.000 0.000 +2459132.5 1.84529 3.14964 -37170345.5 0.00018 0.00018 5.0 0.000 0.000 0.000 +2459133.5 1.83006 3.13809 -37169832.9 0.00019 0.00019 4.5 0.000 0.000 0.000 +2459134.5 1.81425 3.12524 -37169428.6 0.00031 0.00021 2.6 0.000 0.000 0.000 +2459135.5 1.80160 3.11361 -37169290.3 0.00030 0.00022 2.3 0.000 0.000 0.000 +2459136.5 1.79103 3.10479 -37169485.5 0.00030 0.00023 2.5 0.000 0.000 0.000 +2459137.5 1.78322 3.09594 -37169928.2 0.00029 0.00022 2.7 0.000 0.000 0.000 +2459138.5 1.77885 3.08839 -37170636.6 0.00031 0.00020 2.7 0.000 0.000 0.000 +2459139.5 1.77772 3.08159 -37171432.6 0.00031 0.00020 2.8 0.000 0.000 0.000 +2459140.5 1.77753 3.07426 -37172209.4 0.00030 0.00022 7.7 0.000 0.000 0.000 +2459141.5 1.77111 3.06595 -37172737.0 0.00029 0.00021 7.9 0.000 0.000 0.000 +2459142.5 1.75834 3.05599 -37173014.0 0.00028 0.00019 10.1 0.000 0.000 0.000 +2459143.5 1.74471 3.04722 -37173091.5 0.00028 0.00019 7.0 0.000 0.000 0.000 +2459144.5 1.73249 3.03969 -37173075.7 0.00026 0.00019 6.8 0.000 0.000 0.000 +2459145.5 1.72121 3.03195 -37173118.6 0.00027 0.00019 6.8 0.000 0.000 0.000 +2459146.5 1.70931 3.02391 -37173193.0 0.00016 0.00013 5.9 0.000 0.000 0.000 +2459147.5 1.69565 3.01511 -37173320.7 0.00032 0.00024 4.4 0.000 0.000 0.000 +2459148.5 1.68253 3.00603 -37173498.5 0.00035 0.00024 4.4 0.000 0.000 0.000 +2459149.5 1.66962 2.99862 -37173762.0 0.00034 0.00026 9.0 0.000 0.000 0.000 +2459150.5 1.65320 2.99180 -37174106.6 0.00038 0.00032 5.6 0.000 0.000 0.000 +2459151.5 1.63718 2.98533 -37174463.9 0.00037 0.00033 5.6 0.000 0.000 0.000 +2459152.5 1.62232 2.98215 -37174770.9 0.00036 0.00033 5.6 0.000 0.000 0.000 +2459153.5 1.60461 2.97752 -37175062.5 0.00024 0.00025 6.2 0.000 0.000 0.000 +2459154.5 1.58578 2.97084 -37175324.2 0.00023 0.00025 5.9 0.000 0.000 0.000 +2459155.5 1.56788 2.96580 -37175491.9 0.00028 0.00035 4.7 0.000 0.000 0.000 +2459156.5 1.55107 2.96045 -37175538.2 0.00022 0.00030 7.9 0.000 0.000 0.000 +2459157.5 1.53868 2.95387 -37175484.1 0.00024 0.00031 5.3 0.000 0.000 0.000 +2459158.5 1.53073 2.94576 -37175309.3 0.00024 0.00030 5.4 0.000 0.000 0.000 +2459159.5 1.52172 2.93554 -37175029.8 0.00024 0.00031 5.7 0.000 0.000 0.000 +2459160.5 1.50900 2.92772 -37174723.1 0.00022 0.00031 6.6 0.000 0.000 0.000 +2459161.5 1.49367 2.92405 -37174516.6 0.00015 0.00018 4.5 0.000 0.000 0.000 +2459162.5 1.47827 2.92037 -37174565.8 0.00015 0.00017 4.5 0.000 0.000 0.000 +2459163.5 1.46147 2.91640 -37174925.2 0.00012 0.00013 4.6 0.000 0.000 0.000 +2459164.5 1.44169 2.91202 -37175491.3 0.00019 0.00035 5.5 0.000 0.000 0.000 +2459165.5 1.42147 2.90692 -37176261.5 0.00019 0.00035 5.5 0.000 0.000 0.000 +2459166.5 1.40126 2.90226 -37177147.4 0.00018 0.00035 5.5 0.000 0.000 0.000 +2459167.5 1.37766 2.89631 -37177972.6 0.00017 0.00035 11.0 0.000 0.000 0.000 +2459168.5 1.35227 2.88952 -37178635.8 0.00018 0.00042 6.6 0.000 0.000 0.000 +2459169.5 1.32898 2.88443 -37179014.3 0.00018 0.00042 6.6 0.000 0.000 0.000 +2459170.5 1.30825 2.87964 -37179118.8 0.00011 0.00027 5.2 0.000 0.000 0.000 +2459171.5 1.29034 2.87353 -37179020.1 0.00014 0.00031 4.9 0.000 0.000 0.000 +2459172.5 1.27555 2.86836 -37178744.7 0.00017 0.00031 4.8 0.000 0.000 0.000 +2459173.5 1.26280 2.86724 -37178450.5 0.00018 0.00033 4.8 0.000 0.000 0.000 +2459174.5 1.25175 2.86675 -37178194.2 0.00017 0.00026 5.7 0.000 0.000 0.000 +2459175.5 1.24516 2.86377 -37178074.3 0.00017 0.00026 6.3 0.000 0.000 0.000 +2459176.5 1.24141 2.86329 -37178146.9 0.00033 0.00031 3.6 0.000 0.000 0.000 +2459177.5 1.23532 2.86622 -37178354.7 0.00032 0.00026 4.2 0.000 0.000 0.000 +2459178.5 1.22491 2.86997 -37178640.7 0.00032 0.00028 6.1 0.000 0.000 0.000 +2459179.5 1.20922 2.87458 -37178962.9 0.00031 0.00025 6.3 0.000 0.000 0.000 +2459180.5 1.18782 2.87877 -37179134.9 0.00031 0.00023 6.7 0.000 0.000 0.000 +2459181.5 1.16177 2.88255 -37179286.4 0.00032 0.00025 6.6 0.000 0.000 0.000 +2459182.5 1.13391 2.88496 -37179305.3 0.00027 0.00025 14.6 0.000 0.000 0.000 +2459183.5 1.10731 2.88512 -37179211.9 0.00027 0.00025 14.7 0.000 0.000 0.000 +2459184.5 1.08325 2.88154 -37179024.4 0.00026 0.00023 11.7 0.000 0.000 0.000 +2459185.5 1.06276 2.87640 -37178717.0 0.00029 0.00026 8.7 0.000 0.000 0.000 +2459186.5 1.04594 2.87499 -37178321.0 0.00029 0.00027 7.7 0.000 0.000 0.000 +2459187.5 1.03001 2.87939 -37177923.4 0.00030 0.00026 6.9 0.000 0.000 0.000 +2459188.5 1.01345 2.88828 -37177627.6 0.00018 0.00020 7.4 0.000 0.000 0.000 +2459189.5 0.99460 2.89495 -37177540.2 0.00038 0.00026 7.2 0.000 0.000 0.000 +2459190.5 0.97432 2.89658 -37177646.0 0.00038 0.00026 7.5 0.000 0.000 0.000 +2459191.5 0.95423 2.89702 -37177974.0 0.00036 0.00023 10.2 0.000 0.000 0.000 +2459192.5 0.93400 2.89630 -37178494.4 0.00037 0.00033 7.5 0.000 0.000 0.000 +2459193.5 0.91666 2.89384 -37179103.8 0.00036 0.00033 8.0 0.000 0.000 0.000 +2459194.5 0.90387 2.89401 -37179735.3 0.00036 0.00032 8.0 0.000 0.000 0.000 +2459195.5 0.89314 2.90021 -37180180.1 0.00014 0.00028 9.3 0.000 0.000 0.000 +2459196.5 0.88100 2.91073 -37180399.1 0.00031 0.00029 7.1 0.000 0.000 0.000 +2459197.5 0.86746 2.92061 -37180376.8 0.00031 0.00031 7.6 0.000 0.000 0.000 +2459198.5 0.85424 2.92801 -37180117.3 0.00029 0.00019 8.4 0.000 0.000 0.000 +2459199.5 0.84119 2.93353 -37179683.7 0.00032 0.00027 6.9 0.000 0.000 0.000 +2459200.5 0.82969 2.93970 -37179164.9 0.00032 0.00026 6.7 0.000 0.000 0.000 +2459201.5 0.82099 2.94569 -37178768.7 0.00032 0.00026 6.5 0.000 0.000 0.000 +2459202.5 0.81217 2.94917 -37178462.5 0.00016 0.00025 7.9 0.000 0.000 0.000 +2459203.5 0.80071 2.95229 -37178311.6 0.00035 0.00025 8.8 0.000 0.000 0.000 +2459204.5 0.78889 2.95493 -37178297.7 0.00047 0.00025 6.2 0.000 0.000 0.000 +2459205.5 0.77910 2.95780 -37178393.8 0.00045 0.00018 7.1 0.000 0.000 0.000 +2459206.5 0.77249 2.96066 -37178562.9 0.00027 0.00020 8.3 0.000 0.000 0.000 +2459207.5 0.76987 2.96519 -37178635.6 0.00027 0.00020 8.4 0.000 0.000 0.000 +2459208.5 0.76677 2.97249 -37178634.9 0.00028 0.00021 8.0 0.000 0.000 0.000 +2459209.5 0.75986 2.97953 -37178502.8 0.00025 0.00018 7.6 0.000 0.000 0.000 +2459210.5 0.75021 2.98714 -37178207.8 0.00043 0.00042 5.9 0.000 0.000 0.000 +2459211.5 0.73953 2.99954 -37177771.5 0.00045 0.00049 5.0 0.000 0.000 0.000 +2459212.5 0.72644 3.01496 -37177238.7 0.00047 0.00049 4.9 0.000 0.000 0.000 +2459213.5 0.71189 3.02560 -37176642.4 0.00048 0.00049 4.9 0.000 0.000 0.000 +2459214.5 0.69767 3.03105 -37175990.2 0.00053 0.00049 3.7 0.000 0.000 0.000 +2459215.5 0.68691 3.04048 -37175360.6 0.00053 0.00048 8.0 0.000 0.000 0.000 +2459216.5 0.67678 3.05445 -37174840.8 0.00027 0.00021 10.1 0.000 0.000 0.000 +2459217.5 0.66045 3.06735 -37174488.3 0.00027 0.00030 6.2 0.000 0.000 0.000 +2459218.5 0.63870 3.07765 -37174329.8 0.00023 0.00030 6.2 0.000 0.000 0.000 +2459219.5 0.61814 3.08629 -37174380.7 0.00022 0.00030 6.3 0.000 0.000 0.000 +2459220.5 0.60433 3.09510 -37174578.9 0.00027 0.00044 5.5 0.000 0.000 0.000 +2459221.5 0.59583 3.10269 -37174837.5 0.00028 0.00045 3.3 0.000 0.000 0.000 +2459222.5 0.58950 3.11083 -37175065.1 0.00030 0.00046 3.4 0.000 0.000 0.000 +2459223.5 0.58323 3.11977 -37175102.3 0.00026 0.00036 3.3 0.000 0.000 0.000 +2459224.5 0.57967 3.13025 -37174887.6 0.00030 0.00055 4.4 0.000 0.000 0.000 +2459225.5 0.57559 3.14057 -37174474.0 0.00030 0.00055 4.4 0.000 0.000 0.000 +2459226.5 0.56939 3.14652 -37173971.8 0.00026 0.00045 4.7 0.000 0.000 0.000 +2459227.5 0.56041 3.15411 -37173420.3 0.00026 0.00048 5.0 0.000 0.000 0.000 +2459228.5 0.54983 3.16090 -37172894.4 0.00023 0.00047 5.0 0.000 0.000 0.000 +2459229.5 0.54316 3.16871 -37172471.5 0.00021 0.00048 5.0 0.000 0.000 0.000 +2459230.5 0.53770 3.17806 -37172057.1 0.00017 0.00024 6.1 0.000 0.000 0.000 +2459231.5 0.53040 3.18728 -37171785.2 0.00019 0.00032 5.4 0.000 0.000 0.000 +2459232.5 0.52519 3.19453 -37171587.0 0.00020 0.00031 5.4 0.000 0.000 0.000 +2459233.5 0.52578 3.20015 -37171415.4 0.00020 0.00025 4.7 0.000 0.000 0.000 +2459234.5 0.52771 3.20924 -37171249.9 0.00027 0.00042 4.8 0.000 0.000 0.000 +2459235.5 0.52579 3.21983 -37171060.7 0.00027 0.00041 4.8 0.000 0.000 0.000 +2459236.5 0.52405 3.23082 -37170799.8 0.00027 0.00041 4.6 0.000 0.000 0.000 +2459237.5 0.52364 3.24261 -37170487.8 0.00025 0.00035 5.4 0.000 0.000 0.000 +2459238.5 0.51875 3.25654 -37170025.9 0.00032 0.00049 7.0 0.000 0.000 0.000 +2459239.5 0.51012 3.27161 -37169424.4 0.00031 0.00049 7.1 0.000 0.000 0.000 +2459240.5 0.50368 3.28687 -37168714.7 0.00025 0.00036 8.7 0.000 0.000 0.000 +2459241.5 0.50035 3.30502 -37167971.7 0.00025 0.00045 8.6 0.000 0.000 0.000 +2459242.5 0.49906 3.32425 -37167331.6 0.00026 0.00045 8.6 0.000 0.000 0.000 +2459243.5 0.49886 3.34338 -37166913.6 0.00025 0.00045 8.3 0.000 0.000 0.000 +2459244.5 0.49606 3.36136 -37166692.3 0.00016 0.00029 8.3 0.000 0.000 0.000 +2459245.5 0.49361 3.37912 -37166711.1 0.00016 0.00036 5.4 0.000 0.000 0.000 +2459246.5 0.49428 3.39852 -37167014.4 0.00016 0.00036 5.2 0.000 0.000 0.000 +2459247.5 0.49459 3.41657 -37167556.4 0.00015 0.00023 3.0 0.000 0.000 0.000 +2459248.5 0.49299 3.43145 -37168217.5 0.00018 0.00039 2.4 0.000 0.000 0.000 +2459249.5 0.49231 3.44374 -37168823.2 0.00019 0.00039 2.7 0.000 0.000 0.000 +2459250.5 0.49260 3.45639 -37169284.7 0.00018 0.00039 2.7 0.000 0.000 0.000 +2459251.5 0.49170 3.46997 -37169544.7 0.00016 0.00032 2.3 0.000 0.000 0.000 +2459252.5 0.49118 3.48390 -37169597.7 0.00017 0.00036 4.4 0.000 0.000 0.000 +2459253.5 0.49360 3.49884 -37169490.6 0.00017 0.00036 4.4 0.000 0.000 0.000 +2459254.5 0.49920 3.51324 -37169333.6 0.00015 0.00020 5.8 0.000 0.000 0.000 +2459255.5 0.50595 3.52614 -37169253.4 0.00019 0.00032 7.2 0.000 0.000 0.000 +2459256.5 0.51150 3.53811 -37169259.8 0.00019 0.00033 7.2 0.000 0.000 0.000 +2459257.5 0.51354 3.54907 -37169412.9 0.00021 0.00034 7.2 0.000 0.000 0.000 +2459258.5 0.51524 3.55727 -37169739.1 0.00020 0.00029 9.2 0.000 0.000 0.000 +2459259.5 0.51835 3.56786 -37170199.2 0.00020 0.00029 9.5 0.000 0.000 0.000 +2459260.5 0.51651 3.58119 -37170727.2 0.00035 0.00043 5.9 0.000 0.000 0.000 +2459261.5 0.50957 3.59271 -37171225.5 0.00032 0.00035 3.3 0.000 0.000 0.000 +2459262.5 0.50404 3.60288 -37171661.8 0.00040 0.00050 4.7 0.000 0.000 0.000 +2459263.5 0.50428 3.61156 -37171948.4 0.00040 0.00049 4.8 0.000 0.000 0.000 +2459264.5 0.50877 3.62008 -37172005.4 0.00040 0.00049 5.0 0.000 0.000 0.000 +2459265.5 0.51398 3.63043 -37171907.0 0.00040 0.00049 5.3 0.000 0.000 0.000 +2459266.5 0.51364 3.63875 -37171573.8 0.00031 0.00044 5.6 0.000 0.000 0.000 +2459267.5 0.50693 3.64570 -37171054.3 0.00031 0.00044 5.5 0.000 0.000 0.000 +2459268.5 0.49876 3.65237 -37170460.3 0.00021 0.00025 5.3 0.000 0.000 0.000 +2459269.5 0.49504 3.65611 -37169830.6 0.00022 0.00044 5.5 0.000 0.000 0.000 +2459270.5 0.49816 3.66109 -37169339.5 0.00023 0.00044 5.3 0.000 0.000 0.000 +2459271.5 0.50257 3.67127 -37169059.5 0.00023 0.00044 5.0 0.000 0.000 0.000 +2459272.5 0.50421 3.68560 -37169053.3 0.00017 0.00037 6.2 0.000 0.000 0.000 +2459273.5 0.50493 3.70230 -37169306.9 0.00027 0.00048 6.1 0.000 0.000 0.000 +2459274.5 0.50627 3.71997 -37169803.8 0.00027 0.00049 5.9 0.000 0.000 0.000 +2459275.5 0.50673 3.73718 -37170416.4 0.00025 0.00032 6.2 0.000 0.000 0.000 +2459276.5 0.50672 3.75237 -37171018.5 0.00027 0.00050 6.1 0.000 0.000 0.000 +2459277.5 0.51148 3.76535 -37171585.6 0.00027 0.00050 6.1 0.000 0.000 0.000 +2459278.5 0.52209 3.77893 -37171908.5 0.00027 0.00050 6.1 0.000 0.000 0.000 +2459279.5 0.53359 3.79382 -37171968.8 0.00017 0.00039 6.4 0.000 0.000 0.000 +2459280.5 0.54609 3.80848 -37171850.0 0.00016 0.00046 5.3 0.000 0.000 0.000 +2459281.5 0.56160 3.82346 -37171615.1 0.00016 0.00046 5.0 0.000 0.000 0.000 +2459282.5 0.57605 3.83884 -37171320.8 0.00013 0.00027 4.8 0.000 0.000 0.000 +2459283.5 0.58708 3.85235 -37171104.7 0.00019 0.00040 4.2 0.000 0.000 0.000 +2459284.5 0.59636 3.86402 -37171027.9 0.00019 0.00040 4.1 0.000 0.000 0.000 +2459285.5 0.60590 3.87760 -37171076.9 0.00019 0.00040 3.9 0.000 0.000 0.000 +2459286.5 0.61753 3.89365 -37171285.7 0.00018 0.00032 2.0 0.000 0.000 0.000 +2459287.5 0.63042 3.91005 -37171610.8 0.00023 0.00041 5.0 0.000 0.000 0.000 +2459288.5 0.64316 3.92543 -37171949.3 0.00024 0.00041 5.0 0.000 0.000 0.000 +2459289.5 0.65270 3.94203 -37172232.7 0.00019 0.00028 6.5 0.000 0.000 0.000 +2459290.5 0.65642 3.95929 -37172387.1 0.00026 0.00045 4.9 0.000 0.000 0.000 +2459291.5 0.65874 3.97445 -37172404.7 0.00026 0.00045 4.8 0.000 0.000 0.000 +2459292.5 0.66218 3.98940 -37172288.9 0.00027 0.00045 5.0 0.000 0.000 0.000 +2459293.5 0.66657 4.00398 -37172029.5 0.00023 0.00037 3.7 0.000 0.000 0.000 +2459294.5 0.67553 4.01822 -37171690.1 0.00022 0.00037 3.8 0.000 0.000 0.000 +2459295.5 0.68767 4.03491 -37171332.9 0.00025 0.00049 5.6 0.000 0.000 0.000 +2459296.5 0.70030 4.05082 -37170978.7 0.00018 0.00035 7.4 0.000 0.000 0.000 +2459297.5 0.71466 4.06495 -37170671.7 0.00020 0.00044 5.6 0.000 0.000 0.000 +2459298.5 0.72762 4.07848 -37170533.6 0.00020 0.00044 5.5 0.000 0.000 0.000 +2459299.5 0.73770 4.08995 -37170590.6 0.00020 0.00044 5.7 0.000 0.000 0.000 +2459300.5 0.74995 4.09612 -37170934.6 0.00019 0.00044 5.7 0.000 0.000 0.000 +2459301.5 0.76576 4.09846 -37171497.5 0.00020 0.00041 6.8 0.000 0.000 0.000 +2459302.5 0.78199 4.10129 -37172258.1 0.00020 0.00041 6.8 0.000 0.000 0.000 +2459303.5 0.79555 4.10483 -37173045.4 0.00026 0.00051 7.8 0.000 0.000 0.000 +2459304.5 0.80666 4.11078 -37173727.6 0.00026 0.00051 8.0 0.000 0.000 0.000 +2459305.5 0.81551 4.11749 -37174220.6 0.00027 0.00051 7.6 0.000 0.000 0.000 +2459306.5 0.82249 4.12533 -37174495.8 0.00026 0.00051 7.3 0.000 0.000 0.000 +2459307.5 0.82889 4.13361 -37174577.2 0.00023 0.00042 4.5 0.000 0.000 0.000 +2459308.5 0.83737 4.13941 -37174494.7 0.00023 0.00042 4.6 0.000 0.000 0.000 +2459309.5 0.84848 4.14539 -37174423.8 0.00014 0.00027 3.5 0.000 0.000 0.000 +2459310.5 0.85827 4.15614 -37174468.4 0.00014 0.00027 3.5 0.000 0.000 0.000 +2459311.5 0.86621 4.16784 -37174608.8 0.00017 0.00040 3.2 0.000 0.000 0.000 +2459312.5 0.87297 4.17765 -37174872.9 0.00017 0.00040 3.1 0.000 0.000 0.000 +2459313.5 0.87572 4.18797 -37175280.9 0.00016 0.00040 3.3 0.000 0.000 0.000 +2459314.5 0.87455 4.19882 -37175760.2 0.00015 0.00039 3.3 0.000 0.000 0.000 +2459315.5 0.87102 4.20737 -37176302.8 0.00024 0.00050 4.1 0.000 0.000 0.000 +2459316.5 0.86813 4.21362 -37176821.0 0.00027 0.00050 4.1 0.000 0.000 0.000 +2459317.5 0.86940 4.21867 -37177251.0 0.00026 0.00042 8.0 0.000 0.000 0.000 +2459318.5 0.87730 4.22438 -37177622.1 0.00029 0.00051 5.1 0.000 0.000 0.000 +2459319.5 0.88783 4.23233 -37177860.6 0.00030 0.00051 5.0 0.000 0.000 0.000 +2459320.5 0.90122 4.23814 -37177990.5 0.00030 0.00051 5.0 0.000 0.000 0.000 +2459321.5 0.92135 4.24360 -37178030.2 0.00022 0.00033 3.8 0.000 0.000 0.000 +2459322.5 0.94197 4.25249 -37177990.1 0.00020 0.00039 3.6 0.000 0.000 0.000 +2459323.5 0.95895 4.26264 -37177905.9 0.00019 0.00038 3.6 0.000 0.000 0.000 +2459324.5 0.97226 4.27566 -37177852.1 0.00014 0.00025 3.9 0.000 0.000 0.000 +2459325.5 0.98224 4.28912 -37177906.6 0.00019 0.00037 3.2 0.000 0.000 0.000 +2459326.5 0.98990 4.30097 -37178110.8 0.00019 0.00037 3.2 0.000 0.000 0.000 +2459327.5 0.99559 4.31133 -37178533.4 0.00019 0.00037 3.1 0.000 0.000 0.000 +2459328.5 0.99853 4.32027 -37179169.4 0.00017 0.00028 2.8 0.000 0.000 0.000 +2459329.5 1.00026 4.32773 -37179980.2 0.00018 0.00037 3.1 0.000 0.000 0.000 +2459330.5 1.00442 4.33379 -37180919.2 0.00017 0.00038 3.1 0.000 0.000 0.000 +2459331.5 1.01372 4.33863 -37181903.3 0.00010 0.00026 5.0 0.000 0.000 0.000 +2459332.5 1.02665 4.34402 -37182715.7 0.00017 0.00035 4.1 0.000 0.000 0.000 +2459333.5 1.04017 4.34854 -37183216.6 0.00017 0.00035 4.3 0.000 0.000 0.000 +2459334.5 1.05401 4.35231 -37183370.6 0.00017 0.00035 4.4 0.000 0.000 0.000 +2459335.5 1.06808 4.35780 -37183315.4 0.00016 0.00025 4.5 0.000 0.000 0.000 +2459336.5 1.08215 4.36470 -37183109.0 0.00028 0.00039 6.3 0.000 0.000 0.000 +2459337.5 1.09805 4.37431 -37182803.5 0.00029 0.00039 6.3 0.000 0.000 0.000 +2459338.5 1.11567 4.38463 -37182515.5 0.00028 0.00032 8.7 0.000 0.000 0.000 +2459339.5 1.13351 4.39375 -37182393.0 0.00032 0.00037 6.3 0.000 0.000 0.000 +2459340.5 1.15275 4.40336 -37182401.5 0.00032 0.00037 6.1 0.000 0.000 0.000 +2459341.5 1.17110 4.41483 -37182552.8 0.00032 0.00037 6.3 0.000 0.000 0.000 +2459342.5 1.18705 4.42599 -37182840.0 0.00022 0.00021 4.1 0.000 0.000 0.000 +2459343.5 1.20399 4.43443 -37183071.5 0.00028 0.00027 5.3 0.000 0.000 0.000 +2459344.5 1.21974 4.44237 -37183233.8 0.00026 0.00027 5.3 0.000 0.000 0.000 +2459345.5 1.23227 4.44887 -37183356.6 0.00022 0.00021 8.4 0.000 0.000 0.000 +2459346.5 1.24611 4.45069 -37183443.9 0.00030 0.00036 3.4 0.000 0.000 0.000 +2459347.5 1.26411 4.44943 -37183305.2 0.00030 0.00036 3.1 0.000 0.000 0.000 +2459348.5 1.28373 4.45064 -37183086.2 0.00030 0.00036 3.1 0.000 0.000 0.000 +2459349.5 1.30315 4.45429 -37182841.2 0.00025 0.00032 1.4 0.000 0.000 0.000 +2459350.5 1.32484 4.45801 -37182551.7 0.00025 0.00031 2.0 0.000 0.000 0.000 +2459351.5 1.34865 4.46309 -37182261.9 0.00026 0.00039 2.3 0.000 0.000 0.000 +2459352.5 1.37091 4.46611 -37182035.0 0.00015 0.00026 2.9 0.000 0.000 0.000 +2459353.5 1.39425 4.46453 -37181977.9 0.00020 0.00032 3.0 0.000 0.000 0.000 +2459354.5 1.42026 4.46225 -37182096.5 0.00020 0.00032 3.0 0.000 0.000 0.000 +2459355.5 1.44479 4.46090 -37182509.5 0.00019 0.00032 3.0 0.000 0.000 0.000 +2459356.5 1.46582 4.46136 -37183031.7 0.00018 0.00032 2.8 0.000 0.000 0.000 +2459357.5 1.48354 4.46246 -37183719.6 0.00017 0.00021 3.6 0.000 0.000 0.000 +2459358.5 1.50035 4.46011 -37184437.2 0.00022 0.00028 2.2 0.000 0.000 0.000 +2459359.5 1.51661 4.45541 -37185036.0 0.00018 0.00021 1.7 0.000 0.000 0.000 +2459360.5 1.53129 4.45145 -37185419.1 0.00020 0.00031 2.5 0.000 0.000 0.000 +2459361.5 1.54588 4.44720 -37185552.7 0.00021 0.00032 2.5 0.000 0.000 0.000 +2459362.5 1.56105 4.44058 -37185409.8 0.00021 0.00033 2.5 0.000 0.000 0.000 +2459363.5 1.57801 4.43389 -37185055.5 0.00023 0.00033 2.5 0.000 0.000 0.000 +2459364.5 1.59439 4.43181 -37184596.5 0.00024 0.00038 4.0 0.000 0.000 0.000 +2459365.5 1.60786 4.43021 -37184171.5 0.00023 0.00038 4.0 0.000 0.000 0.000 +2459366.5 1.62207 4.42538 -37183877.9 0.00022 0.00030 4.7 0.000 0.000 0.000 +2459367.5 1.63439 4.42187 -37183718.6 0.00024 0.00038 3.9 0.000 0.000 0.000 +2459368.5 1.64294 4.41786 -37183672.5 0.00025 0.00037 4.5 0.000 0.000 0.000 +2459369.5 1.65288 4.41036 -37183713.4 0.00024 0.00037 4.7 0.000 0.000 0.000 +2459370.5 1.66468 4.39943 -37183749.1 0.00017 0.00027 5.5 0.000 0.000 0.000 +2459371.5 1.67460 4.38783 -37183675.9 0.00022 0.00036 8.2 0.000 0.000 0.000 +2459372.5 1.68518 4.37810 -37183483.3 0.00022 0.00036 8.2 0.000 0.000 0.000 +2459373.5 1.70000 4.37044 -37183118.4 0.00019 0.00034 7.8 0.000 0.000 0.000 +2459374.5 1.71621 4.36495 -37182597.9 0.00018 0.00034 7.9 0.000 0.000 0.000 +2459375.5 1.73023 4.36097 -37181909.1 0.00017 0.00034 7.8 0.000 0.000 0.000 +2459376.5 1.74263 4.35730 -37181104.5 0.00017 0.00035 7.5 0.000 0.000 0.000 +2459377.5 1.75427 4.35397 -37180183.0 0.00011 0.00024 5.2 0.000 0.000 0.000 +2459378.5 1.76480 4.35064 -37179270.0 0.00013 0.00031 5.9 0.000 0.000 0.000 +2459379.5 1.77520 4.34808 -37178356.8 0.00011 0.00022 9.7 0.000 0.000 0.000 +2459380.5 1.78428 4.34500 -37177575.5 0.00013 0.00023 8.8 0.000 0.000 0.000 +2459381.5 1.79178 4.33937 -37176978.9 0.00016 0.00029 5.5 0.000 0.000 0.000 +2459382.5 1.80088 4.33090 -37176526.5 0.00016 0.00028 5.5 0.000 0.000 0.000 +2459383.5 1.81591 4.32033 -37176290.2 0.00016 0.00029 5.4 0.000 0.000 0.000 +2459384.5 1.83453 4.31234 -37176220.3 0.00014 0.00023 4.7 0.000 0.000 0.000 +2459385.5 1.85268 4.30718 -37176249.2 0.00028 0.00032 5.2 0.000 0.000 0.000 +2459386.5 1.86989 4.30323 -37176222.2 0.00027 0.00032 5.2 0.000 0.000 0.000 +2459387.5 1.88636 4.29670 -37175940.3 0.00026 0.00026 12.2 0.000 0.000 0.000 +2459388.5 1.90263 4.28662 -37175467.5 0.00027 0.00028 6.6 0.000 0.000 0.000 +2459389.5 1.92021 4.27528 -37174677.3 0.00027 0.00027 6.6 0.000 0.000 0.000 +2459390.5 1.93858 4.26256 -37173584.0 0.00028 0.00027 6.4 0.000 0.000 0.000 +2459391.5 1.95553 4.24979 -37172397.7 0.00014 0.00016 6.1 0.000 0.000 0.000 +2459392.5 1.97259 4.23970 -37171151.5 0.00017 0.00031 4.7 0.000 0.000 0.000 +2459393.5 1.99043 4.23147 -37169978.1 0.00017 0.00032 4.6 0.000 0.000 0.000 +2459394.5 2.01030 4.21975 -37168985.7 0.00016 0.00032 3.7 0.000 0.000 0.000 +2459395.5 2.03112 4.20660 -37168191.5 0.00019 0.00037 3.2 0.000 0.000 0.000 +2459396.5 2.05014 4.19363 -37167433.4 0.00017 0.00039 4.0 0.000 0.000 0.000 +2459397.5 2.06927 4.18125 -37166727.1 0.00017 0.00038 4.3 0.000 0.000 0.000 +2459398.5 2.09057 4.16937 -37165992.2 0.00016 0.00028 5.9 0.000 0.000 0.000 +2459399.5 2.11307 4.15846 -37165168.9 0.00016 0.00027 6.8 0.000 0.000 0.000 +2459400.5 2.13431 4.14953 -37164190.2 0.00019 0.00033 5.5 0.000 0.000 0.000 +2459401.5 2.15664 4.14033 -37163026.8 0.00017 0.00027 7.7 0.000 0.000 0.000 +2459402.5 2.18080 4.13112 -37161813.8 0.00019 0.00029 5.4 0.000 0.000 0.000 +2459403.5 2.20159 4.12100 -37160471.5 0.00018 0.00029 5.3 0.000 0.000 0.000 +2459404.5 2.21841 4.10730 -37159030.3 0.00017 0.00029 5.2 0.000 0.000 0.000 +2459405.5 2.23645 4.09105 -37157573.7 0.00017 0.00029 4.6 0.000 0.000 0.000 +2459406.5 2.25637 4.07654 -37156219.6 0.00014 0.00027 3.2 0.000 0.000 0.000 +2459407.5 2.27531 4.06534 -37154978.2 0.00013 0.00028 3.4 0.000 0.000 0.000 +2459408.5 2.29295 4.05739 -37153905.4 0.00010 0.00022 3.6 0.000 0.000 0.000 +2459409.5 2.30855 4.05107 -37153028.5 0.00011 0.00030 3.3 0.000 0.000 0.000 +2459410.5 2.32360 4.04157 -37152409.5 0.00010 0.00030 4.5 0.000 0.000 0.000 +2459411.5 2.33956 4.03081 -37151989.1 0.00012 0.00030 4.9 0.000 0.000 0.000 +2459412.5 2.35535 4.02266 -37151752.6 0.00010 0.00025 8.1 0.000 0.000 0.000 +2459413.5 2.36943 4.01495 -37151531.0 0.00014 0.00032 4.7 0.000 0.000 0.000 +2459414.5 2.38375 4.00303 -37151179.2 0.00015 0.00032 4.8 0.000 0.000 0.000 +2459415.5 2.39932 3.98907 -37150706.4 0.00016 0.00025 5.4 0.000 0.000 0.000 +2459416.5 2.41375 3.97611 -37150090.7 0.00017 0.00031 4.1 0.000 0.000 0.000 +2459417.5 2.42534 3.96308 -37149313.1 0.00018 0.00031 3.9 0.000 0.000 0.000 +2459418.5 2.43563 3.94831 -37148399.6 0.00018 0.00031 4.4 0.000 0.000 0.000 +2459419.5 2.44415 3.93383 -37147481.0 0.00015 0.00022 7.2 0.000 0.000 0.000 +2459420.5 2.44598 3.92090 -37146711.2 0.00021 0.00037 4.9 0.000 0.000 0.000 +2459421.5 2.44304 3.90790 -37146090.5 0.00020 0.00037 4.7 0.000 0.000 0.000 +2459422.5 2.44043 3.89170 -37145542.5 0.00019 0.00031 5.3 0.000 0.000 0.000 +2459423.5 2.44010 3.86991 -37145124.3 0.00018 0.00039 4.0 0.000 0.000 0.000 +2459424.5 2.44336 3.84574 -37144765.8 0.00019 0.00039 3.5 0.000 0.000 0.000 +2459425.5 2.45094 3.82522 -37144368.7 0.00021 0.00039 3.5 0.000 0.000 0.000 +2459426.5 2.46005 3.81141 -37143930.5 0.00016 0.00025 4.7 0.000 0.000 0.000 +2459427.5 2.46809 3.80133 -37143346.5 0.00021 0.00036 4.7 0.000 0.000 0.000 +2459428.5 2.47742 3.78994 -37142649.9 0.00022 0.00035 4.7 0.000 0.000 0.000 +2459429.5 2.48638 3.77636 -37141831.0 0.00023 0.00035 4.6 0.000 0.000 0.000 +2459430.5 2.49330 3.76207 -37140899.7 0.00022 0.00035 5.3 0.000 0.000 0.000 +2459431.5 2.50339 3.74735 -37139865.4 0.00021 0.00035 5.3 0.000 0.000 0.000 +2459432.5 2.51512 3.73437 -37138784.0 0.00020 0.00035 5.5 0.000 0.000 0.000 +2459433.5 2.52320 3.72184 -37137757.5 0.00015 0.00025 6.0 0.000 0.000 0.000 +2459434.5 2.52522 3.70924 -37136746.0 0.00014 0.00026 5.9 0.000 0.000 0.000 +2459435.5 2.51920 3.69466 -37135829.2 0.00013 0.00021 6.1 0.000 0.000 0.000 +2459436.5 2.50917 3.67464 -37135082.2 0.00013 0.00021 5.4 0.000 0.000 0.000 +2459437.5 2.50234 3.65281 -37134513.2 0.00017 0.00031 4.8 0.000 0.000 0.000 +2459438.5 2.49913 3.63355 -37134118.4 0.00016 0.00031 4.9 0.000 0.000 0.000 +2459439.5 2.49586 3.61520 -37133843.1 0.00015 0.00031 4.9 0.000 0.000 0.000 +2459440.5 2.49171 3.59753 -37133520.6 0.00014 0.00031 5.0 0.000 0.000 0.000 +2459441.5 2.48745 3.58118 -37133131.6 0.00013 0.00025 6.2 0.000 0.000 0.000 +2459442.5 2.48383 3.56527 -37132565.3 0.00013 0.00031 4.0 0.000 0.000 0.000 +2459443.5 2.48158 3.54900 -37131759.7 0.00010 0.00022 3.0 0.000 0.000 0.000 +2459444.5 2.48037 3.53255 -37130723.3 0.00012 0.00027 4.5 0.000 0.000 0.000 +2459445.5 2.47965 3.51673 -37129576.8 0.00011 0.00027 4.6 0.000 0.000 0.000 +2459446.5 2.47724 3.50058 -37128366.5 0.00012 0.00027 4.7 0.000 0.000 0.000 +2459447.5 2.47300 3.48292 -37127241.7 0.00012 0.00028 4.8 0.000 0.000 0.000 +2459448.5 2.46848 3.46515 -37126328.7 0.00013 0.00023 5.1 0.000 0.000 0.000 +2459449.5 2.46375 3.44527 -37125581.7 0.00014 0.00023 5.2 0.000 0.000 0.000 +2459450.5 2.46057 3.42239 -37124965.1 0.00011 0.00017 4.0 0.000 0.000 0.000 +2459451.5 2.46022 3.40127 -37124469.4 0.00028 0.00029 5.1 0.000 0.000 0.000 +2459452.5 2.46037 3.38297 -37124027.0 0.00028 0.00030 5.0 0.000 0.000 0.000 +2459453.5 2.46058 3.36460 -37123503.3 0.00028 0.00030 4.9 0.000 0.000 0.000 +2459454.5 2.46070 3.34743 -37122901.1 0.00028 0.00029 8.2 0.000 0.000 0.000 +2459455.5 2.46025 3.33204 -37122116.4 0.00030 0.00041 4.9 0.000 0.000 0.000 +2459456.5 2.45766 3.31655 -37121288.5 0.00030 0.00041 4.7 0.000 0.000 0.000 +2459457.5 2.45078 3.29809 -37120329.7 0.00018 0.00034 3.1 0.000 0.000 0.000 +2459458.5 2.44342 3.27819 -37119342.1 0.00025 0.00040 3.7 0.000 0.000 0.000 +2459459.5 2.43923 3.25945 -37118297.8 0.00025 0.00040 3.6 0.000 0.000 0.000 +2459460.5 2.43864 3.24202 -37117224.9 0.00024 0.00039 3.4 0.000 0.000 0.000 +2459461.5 2.43828 3.22767 -37116348.6 0.00020 0.00026 5.1 0.000 0.000 0.000 +2459462.5 2.43251 3.21176 -37115546.0 0.00021 0.00025 5.7 0.000 0.000 0.000 +2459463.5 2.42256 3.19261 -37114929.6 0.00021 0.00040 4.1 0.000 0.000 0.000 +2459464.5 2.41133 3.17269 -37114564.0 0.00012 0.00034 3.9 0.000 0.000 0.000 +2459465.5 2.40207 3.15378 -37114428.4 0.00014 0.00039 4.5 0.000 0.000 0.000 +2459466.5 2.39548 3.13676 -37114464.1 0.00016 0.00040 4.4 0.000 0.000 0.000 +2459467.5 2.39102 3.11961 -37114499.7 0.00017 0.00040 4.5 0.000 0.000 0.000 +2459468.5 2.38933 3.10410 -37114523.5 0.00017 0.00041 5.2 0.000 0.000 0.000 +2459469.5 2.39046 3.09197 -37114342.7 0.00015 0.00033 6.1 0.000 0.000 0.000 +2459470.5 2.38925 3.08177 -37113935.6 0.00016 0.00032 6.2 0.000 0.000 0.000 +2459471.5 2.38108 3.06824 -37113250.3 0.00022 0.00026 6.6 0.000 0.000 0.000 +2459472.5 2.36807 3.05459 -37112449.7 0.00025 0.00034 6.4 0.000 0.000 0.000 +2459473.5 2.35248 3.04155 -37111581.9 0.00024 0.00034 7.6 0.000 0.000 0.000 +2459474.5 2.34102 3.02442 -37110791.4 0.00024 0.00033 8.4 0.000 0.000 0.000 +2459475.5 2.33193 3.00660 -37110177.7 0.00024 0.00026 12.3 0.000 0.000 0.000 +2459476.5 2.31949 2.98943 -37109816.9 0.00026 0.00033 7.5 0.000 0.000 0.000 +2459477.5 2.30910 2.97073 -37109534.2 0.00021 0.00032 7.4 0.000 0.000 0.000 +2459478.5 2.30447 2.95177 -37109389.2 0.00016 0.00022 7.8 0.000 0.000 0.000 +2459479.5 2.30224 2.93453 -37109272.1 0.00020 0.00048 7.3 0.000 0.000 0.000 +2459480.5 2.29734 2.91962 -37109198.3 0.00021 0.00048 5.5 0.000 0.000 0.000 +2459481.5 2.29047 2.90724 -37109076.6 0.00021 0.00048 5.8 0.000 0.000 0.000 +2459482.5 2.28150 2.89697 -37108867.5 0.00018 0.00045 11.7 0.000 0.000 0.000 +2459483.5 2.26731 2.88535 -37108526.8 0.00019 0.00056 10.3 0.000 0.000 0.000 +2459484.5 2.24987 2.86877 -37108039.4 0.00018 0.00057 11.0 0.000 0.000 0.000 +2459485.5 2.23250 2.85070 -37107403.7 0.00013 0.00037 12.4 0.000 0.000 0.000 +2459486.5 2.21733 2.83226 -37106719.7 0.00021 0.00042 7.7 0.000 0.000 0.000 +2459487.5 2.20681 2.81350 -37105978.5 0.00024 0.00042 7.7 0.000 0.000 0.000 +2459488.5 2.19922 2.79819 -37105242.4 0.00025 0.00042 7.3 0.000 0.000 0.000 +2459489.5 2.19190 2.78466 -37104691.7 0.00024 0.00025 6.6 0.000 0.000 0.000 +2459490.5 2.18064 2.77407 -37104305.4 0.00026 0.00028 6.0 0.000 0.000 0.000 +2459491.5 2.16515 2.76371 -37104095.5 0.00026 0.00028 5.4 0.000 0.000 0.000 +2459492.5 2.14841 2.75292 -37104148.7 0.00018 0.00019 9.7 0.000 0.000 0.000 +2459493.5 2.12842 2.74053 -37104504.0 0.00020 0.00032 6.2 0.000 0.000 0.000 +2459494.5 2.10715 2.72257 -37105041.6 0.00020 0.00031 6.1 0.000 0.000 0.000 +2459495.5 2.08772 2.70357 -37105557.9 0.00020 0.00031 6.2 0.000 0.000 0.000 +2459496.5 2.07046 2.68632 -37105938.3 0.00017 0.00028 4.7 0.000 0.000 0.000 +2459497.5 2.05607 2.67108 -37106070.1 0.00017 0.00029 5.0 0.000 0.000 0.000 +2459498.5 2.04303 2.65972 -37105978.0 0.00021 0.00033 2.9 0.000 0.000 0.000 +2459499.5 2.02918 2.65374 -37105725.0 0.00020 0.00021 3.3 0.000 0.000 0.000 +2459500.5 2.01334 2.65023 -37105381.3 0.00024 0.00024 3.5 0.000 0.000 0.000 +2459501.5 1.99471 2.64508 -37105061.4 0.00023 0.00026 3.5 0.000 0.000 0.000 +2459502.5 1.97120 2.64001 -37104816.7 0.00024 0.00026 3.4 0.000 0.000 0.000 +2459503.5 1.94628 2.63335 -37104728.8 0.00025 0.00026 3.6 0.000 0.000 0.000 +2459504.5 1.92496 2.62708 -37104803.5 0.00023 0.00042 4.5 0.000 0.000 0.000 +2459505.5 1.90391 2.62041 -37104998.0 0.00020 0.00041 4.5 0.000 0.000 0.000 +2459506.5 1.88478 2.61095 -37105328.1 0.00016 0.00040 4.7 0.000 0.000 0.000 +2459507.5 1.87014 2.60352 -37105665.5 0.00020 0.00043 5.2 0.000 0.000 0.000 +2459508.5 1.85923 2.59646 -37105957.1 0.00018 0.00043 5.4 0.000 0.000 0.000 +2459509.5 1.85080 2.58894 -37106158.8 0.00021 0.00044 5.5 0.000 0.000 0.000 +2459510.5 1.83900 2.58063 -37106179.9 0.00019 0.00024 7.1 0.000 0.000 0.000 +2459511.5 1.82242 2.56852 -37105962.2 0.00023 0.00033 6.8 0.000 0.000 0.000 +2459512.5 1.80791 2.55749 -37105579.5 0.00022 0.00033 6.8 0.000 0.000 0.000 +2459513.5 1.79385 2.55109 -37105076.8 0.00022 0.00026 8.0 0.000 0.000 0.000 +2459514.5 1.77417 2.54633 -37104572.6 0.00024 0.00036 4.9 0.000 0.000 0.000 +2459515.5 1.75038 2.54166 -37104132.7 0.00021 0.00035 4.2 0.000 0.000 0.000 +2459516.5 1.72943 2.53715 -37103768.2 0.00020 0.00035 4.5 0.000 0.000 0.000 +2459517.5 1.71130 2.53429 -37103580.8 0.00016 0.00028 4.4 0.000 0.000 0.000 +2459518.5 1.69169 2.53021 -37103663.9 0.00018 0.00028 4.5 0.000 0.000 0.000 +2459519.5 1.67192 2.52558 -37104058.5 0.00021 0.00040 4.9 0.000 0.000 0.000 +2459520.5 1.65519 2.51986 -37104698.9 0.00019 0.00031 8.7 0.000 0.000 0.000 +2459521.5 1.64374 2.51134 -37105529.0 0.00020 0.00038 4.5 0.000 0.000 0.000 +2459522.5 1.63278 2.50404 -37106354.6 0.00021 0.00038 4.1 0.000 0.000 0.000 +2459523.5 1.61445 2.49774 -37107038.5 0.00021 0.00037 4.0 0.000 0.000 0.000 +2459524.5 1.58962 2.49269 -37107431.3 0.00021 0.00037 3.7 0.000 0.000 0.000 +2459525.5 1.56485 2.48731 -37107512.0 0.00018 0.00037 2.7 0.000 0.000 0.000 +2459526.5 1.54402 2.48080 -37107392.2 0.00017 0.00037 2.6 0.000 0.000 0.000 +2459527.5 1.52526 2.47529 -37107186.5 0.00016 0.00029 4.0 0.000 0.000 0.000 +2459528.5 1.50844 2.47116 -37106984.3 0.00023 0.00035 5.2 0.000 0.000 0.000 +2459529.5 1.49530 2.46777 -37106885.1 0.00023 0.00035 5.4 0.000 0.000 0.000 +2459530.5 1.48524 2.46575 -37106990.9 0.00024 0.00035 5.5 0.000 0.000 0.000 +2459531.5 1.47730 2.46473 -37107262.8 0.00021 0.00021 7.9 0.000 0.000 0.000 +2459532.5 1.46991 2.46425 -37107647.9 0.00027 0.00024 4.5 0.000 0.000 0.000 +2459533.5 1.45708 2.46299 -37108024.8 0.00027 0.00026 4.3 0.000 0.000 0.000 +2459534.5 1.43583 2.45970 -37108268.5 0.00023 0.00019 3.7 0.000 0.000 0.000 +2459535.5 1.41477 2.45395 -37108469.6 0.00025 0.00028 2.6 0.000 0.000 0.000 +2459536.5 1.39777 2.45127 -37108559.7 0.00024 0.00028 2.7 0.000 0.000 0.000 +2459537.5 1.37833 2.45206 -37108468.0 0.00024 0.00028 2.5 0.000 0.000 0.000 +2459538.5 1.35539 2.45339 -37108198.8 0.00018 0.00026 2.6 0.000 0.000 0.000 +2459539.5 1.33470 2.45958 -37107791.3 0.00019 0.00025 2.7 0.000 0.000 0.000 +2459540.5 1.31599 2.46865 -37107300.5 0.00019 0.00028 2.1 0.000 0.000 0.000 +2459541.5 1.29625 2.47267 -37106752.1 0.00017 0.00020 2.6 0.000 0.000 0.000 +2459542.5 1.27862 2.47289 -37106214.9 0.00021 0.00022 3.2 0.000 0.000 0.000 +2459543.5 1.26572 2.47710 -37105744.9 0.00021 0.00022 3.4 0.000 0.000 0.000 +2459544.5 1.25316 2.48348 -37105393.0 0.00021 0.00021 3.8 0.000 0.000 0.000 +2459545.5 1.23944 2.49146 -37105321.6 0.00020 0.00021 5.1 0.000 0.000 0.000 +2459546.5 1.22508 2.50102 -37105507.3 0.00023 0.00027 7.9 0.000 0.000 0.000 +2459547.5 1.20992 2.50797 -37105834.7 0.00023 0.00027 8.0 0.000 0.000 0.000 +2459548.5 1.19475 2.51394 -37106253.7 0.00020 0.00025 8.0 0.000 0.000 0.000 +2459549.5 1.17974 2.52124 -37106811.0 0.00021 0.00029 6.6 0.000 0.000 0.000 +2459550.5 1.16669 2.53079 -37107355.3 0.00021 0.00030 6.7 0.000 0.000 0.000 +2459551.5 1.15236 2.54064 -37107767.4 0.00022 0.00030 6.7 0.000 0.000 0.000 +2459552.5 1.13608 2.54414 -37107898.7 0.00016 0.00021 8.0 0.000 0.000 0.000 +2459553.5 1.12222 2.54586 -37107773.1 0.00019 0.00023 4.7 0.000 0.000 0.000 +2459554.5 1.10908 2.55092 -37107512.4 0.00021 0.00025 4.8 0.000 0.000 0.000 +2459555.5 1.09156 2.55657 -37107270.5 0.00022 0.00022 5.1 0.000 0.000 0.000 +2459556.5 1.06687 2.56268 -37107081.2 0.00025 0.00029 4.4 0.000 0.000 0.000 +2459557.5 1.04022 2.56732 -37107110.8 0.00025 0.00029 4.2 0.000 0.000 0.000 +2459558.5 1.01400 2.57088 -37107389.3 0.00026 0.00028 3.5 0.000 0.000 0.000 +2459559.5 0.98431 2.57355 -37107760.8 0.00024 0.00027 4.7 0.000 0.000 0.000 +2459560.5 0.95295 2.57381 -37108210.0 0.00022 0.00030 3.2 0.000 0.000 0.000 +2459561.5 0.92594 2.57467 -37108626.9 0.00021 0.00029 3.2 0.000 0.000 0.000 +2459562.5 0.90280 2.58071 -37108952.3 0.00019 0.00021 3.0 0.000 0.000 0.000 +2459563.5 0.87851 2.58957 -37109202.9 0.00028 0.00030 3.6 0.000 0.000 0.000 +2459564.5 0.85324 2.59746 -37109313.7 0.00028 0.00031 3.9 0.000 0.000 0.000 +2459565.5 0.82673 2.60685 -37109267.4 0.00028 0.00030 3.9 0.000 0.000 0.000 +2459566.5 0.80323 2.61293 -37109044.5 0.00027 0.00026 5.6 0.000 0.000 0.000 +2459567.5 0.78759 2.61727 -37108744.5 0.00028 0.00030 4.7 0.000 0.000 0.000 +2459568.5 0.77307 2.62558 -37108378.0 0.00028 0.00030 4.6 0.000 0.000 0.000 +2459569.5 0.75382 2.63451 -37107993.9 0.00020 0.00032 3.4 0.000 0.000 0.000 +2459570.5 0.73157 2.64273 -37107598.4 0.00019 0.00032 3.0 0.000 0.000 0.000 +2459571.5 0.70906 2.65198 -37107322.0 0.00019 0.00032 2.9 0.000 0.000 0.000 +2459572.5 0.68527 2.66491 -37107253.3 0.00019 0.00034 3.0 0.000 0.000 0.000 +2459573.5 0.66137 2.67798 -37107367.3 0.00017 0.00030 2.9 0.000 0.000 0.000 +2459574.5 0.64276 2.68997 -37107712.6 0.00023 0.00037 2.3 0.000 0.000 0.000 +2459575.5 0.62755 2.70355 -37108271.1 0.00023 0.00028 2.7 0.000 0.000 0.000 +2459576.5 0.61075 2.71920 -37108922.1 0.00031 0.00036 2.2 0.000 0.000 0.000 +2459577.5 0.59245 2.73459 -37109558.1 0.00030 0.00036 2.2 0.000 0.000 0.000 +2459578.5 0.57738 2.74728 -37110102.7 0.00030 0.00036 2.1 0.000 0.000 0.000 +2459579.5 0.56257 2.75943 -37110417.9 0.00030 0.00035 1.9 0.000 0.000 0.000 +2459580.5 0.54644 2.76986 -37110498.8 0.00026 0.00032 2.3 0.000 0.000 0.000 +2459581.5 0.53441 2.77925 -37110372.9 0.00030 0.00033 4.0 0.000 0.000 0.000 +2459582.5 0.52973 2.79047 -37110104.7 0.00021 0.00025 5.4 0.000 0.000 0.000 +2459583.5 0.53260 2.80694 -37109900.8 0.00022 0.00025 5.6 0.000 0.000 0.000 +2459584.5 0.53468 2.82930 -37109904.0 0.00024 0.00027 5.5 0.000 0.000 0.000 +2459585.5 0.52941 2.85050 -37110078.1 0.00023 0.00027 5.6 0.000 0.000 0.000 +2459586.5 0.51789 2.86929 -37110370.1 0.00022 0.00023 5.9 0.000 0.000 0.000 +2459587.5 0.50226 2.88661 -37110784.0 0.00015 0.00019 6.9 0.000 0.000 0.000 +2459588.5 0.48620 2.90196 -37111226.5 0.00018 0.00022 6.6 0.000 0.000 0.000 +2459589.5 0.47147 2.91470 -37111595.6 0.00019 0.00022 6.6 0.000 0.000 0.000 +2459590.5 0.45621 2.92556 -37111856.1 0.00018 0.00016 7.9 0.000 0.000 0.000 +2459591.5 0.44275 2.93459 -37111940.2 0.00018 0.00023 5.8 0.000 0.000 0.000 +2459592.5 0.43440 2.94438 -37111851.9 0.00019 0.00024 6.0 0.000 0.000 0.000 +2459593.5 0.43161 2.95889 -37111580.8 0.00019 0.00024 5.8 0.000 0.000 0.000 +2459594.5 0.43042 2.97881 -37111149.2 0.00019 0.00021 5.4 0.000 0.000 0.000 +2459595.5 0.42499 2.99844 -37110584.8 0.00022 0.00022 5.4 0.000 0.000 0.000 +2459596.5 0.41460 3.01471 -37110003.3 0.00022 0.00027 4.2 0.000 0.000 0.000 +2459597.5 0.39933 3.02929 -37109369.0 0.00021 0.00022 4.0 0.000 0.000 0.000 +2459598.5 0.38548 3.03977 -37108812.3 0.00022 0.00025 4.3 0.000 0.000 0.000 +2459599.5 0.37866 3.05019 -37108431.8 0.00022 0.00024 4.2 0.000 0.000 0.000 +2459600.5 0.37467 3.06187 -37108291.8 0.00019 0.00024 4.0 0.000 0.000 0.000 +2459601.5 0.36910 3.07343 -37108322.2 0.00015 0.00023 4.1 0.000 0.000 0.000 +2459602.5 0.35920 3.08664 -37108494.2 0.00018 0.00018 4.4 0.000 0.000 0.000 +2459603.5 0.34432 3.10118 -37108749.6 0.00018 0.00017 4.6 0.000 0.000 0.000 +2459604.5 0.32765 3.11527 -37109017.1 0.00017 0.00010 4.9 0.000 0.000 0.000 +2459605.5 0.31386 3.12803 -37109215.5 0.00023 0.00014 3.4 0.000 0.000 0.000 +2459606.5 0.30246 3.14138 -37109276.1 0.00024 0.00015 3.6 0.000 0.000 0.000 +2459607.5 0.29130 3.15630 -37109130.7 0.00024 0.00017 3.4 0.000 0.000 0.000 +2459608.5 0.28298 3.17168 -37108812.0 0.00021 0.00016 4.1 0.000 0.000 0.000 +2459609.5 0.27570 3.18991 -37108355.4 0.00024 0.00021 4.3 0.000 0.000 0.000 +2459610.5 0.26683 3.20958 -37107839.5 0.00024 0.00021 4.3 0.000 0.000 0.000 +2459611.5 0.26123 3.23070 -37107395.3 0.00018 0.00019 5.5 0.000 0.000 0.000 +2459612.5 0.25848 3.25448 -37107129.9 0.00026 0.00020 5.5 0.000 0.000 0.000 +2459613.5 0.25709 3.27754 -37107098.8 0.00027 0.00020 5.9 0.000 0.000 0.000 +2459614.5 0.25771 3.29988 -37107235.9 0.00026 0.00020 6.2 0.000 0.000 0.000 +2459615.5 0.25748 3.32144 -37107432.4 0.00025 0.00014 12.1 0.000 0.000 0.000 +2459616.5 0.25719 3.33909 -37107589.3 0.00027 0.00017 6.1 0.000 0.000 0.000 +2459617.5 0.25701 3.35614 -37107647.9 0.00027 0.00018 6.1 0.000 0.000 0.000 +2459618.5 0.25135 3.37291 -37107578.6 0.00017 0.00015 6.4 0.000 0.000 0.000 +2459619.5 0.24113 3.38501 -37107294.2 0.00018 0.00021 5.8 0.000 0.000 0.000 +2459620.5 0.22890 3.39530 -37106812.6 0.00018 0.00021 5.6 0.000 0.000 0.000 +2459621.5 0.21291 3.40652 -37106123.4 0.00017 0.00022 5.6 0.000 0.000 0.000 +2459622.5 0.19528 3.41934 -37105249.4 0.00015 0.00020 6.4 0.000 0.000 0.000 +2459623.5 0.18054 3.43126 -37104413.1 0.00016 0.00024 4.9 0.000 0.000 0.000 +2459624.5 0.17241 3.44317 -37103630.8 0.00015 0.00024 4.9 0.000 0.000 0.000 +2459625.5 0.16801 3.45841 -37102982.8 0.00013 0.00019 4.9 0.000 0.000 0.000 +2459626.5 0.16422 3.47670 -37102549.3 0.00016 0.00019 4.0 0.000 0.000 0.000 +2459627.5 0.16159 3.49971 -37102272.8 0.00016 0.00018 3.9 0.000 0.000 0.000 +2459628.5 0.15973 3.52529 -37102255.2 0.00015 0.00018 3.8 0.000 0.000 0.000 +2459629.5 0.16039 3.54991 -37102474.4 0.00014 0.00013 3.9 0.000 0.000 0.000 +2459630.5 0.16150 3.57313 -37102822.7 0.00022 0.00017 3.8 0.000 0.000 0.000 +2459631.5 0.16267 3.59423 -37103202.9 0.00024 0.00016 3.4 0.000 0.000 0.000 +2459632.5 0.16729 3.61222 -37103519.8 0.00022 0.00016 4.1 0.000 0.000 0.000 +2459633.5 0.17620 3.62789 -37103706.7 0.00025 0.00020 4.2 0.000 0.000 0.000 +2459634.5 0.18441 3.64347 -37103697.9 0.00025 0.00020 4.2 0.000 0.000 0.000 +2459635.5 0.18982 3.65793 -37103473.5 0.00024 0.00019 4.3 0.000 0.000 0.000 +2459636.5 0.19617 3.67245 -37103087.2 0.00018 0.00017 5.0 0.000 0.000 0.000 +2459637.5 0.20237 3.68842 -37102659.1 0.00021 0.00020 3.1 0.000 0.000 0.000 +2459638.5 0.20643 3.70620 -37102323.4 0.00022 0.00020 3.1 0.000 0.000 0.000 +2459639.5 0.20995 3.72307 -37102139.9 0.00019 0.00017 2.5 0.000 0.000 0.000 +2459640.5 0.21875 3.74044 -37102170.6 0.00022 0.00021 3.9 0.000 0.000 0.000 +2459641.5 0.23305 3.76260 -37102442.2 0.00022 0.00020 3.9 0.000 0.000 0.000 +2459642.5 0.25009 3.78484 -37102838.6 0.00023 0.00019 3.8 0.000 0.000 0.000 +2459643.5 0.26706 3.80550 -37103250.8 0.00017 0.00016 6.1 0.000 0.000 0.000 +2459644.5 0.28127 3.82627 -37103549.7 0.00017 0.00022 4.9 0.000 0.000 0.000 +2459645.5 0.29547 3.84742 -37103725.3 0.00016 0.00021 4.8 0.000 0.000 0.000 +2459646.5 0.31002 3.86679 -37103686.7 0.00010 0.00018 4.1 0.000 0.000 0.000 +2459647.5 0.32216 3.88518 -37103388.3 0.00012 0.00020 3.1 0.000 0.000 0.000 +2459648.5 0.33082 3.90315 -37102923.8 0.00010 0.00021 3.1 0.000 0.000 0.000 +2459649.5 0.33674 3.92091 -37102323.4 0.00013 0.00021 3.2 0.000 0.000 0.000 +2459650.5 0.34135 3.93701 -37101671.7 0.00016 0.00015 2.9 0.000 0.000 0.000 +2459651.5 0.34426 3.95168 -37101018.1 0.00022 0.00018 2.7 0.000 0.000 0.000 +2459652.5 0.34370 3.96646 -37100391.7 0.00023 0.00017 2.7 0.000 0.000 0.000 +2459653.5 0.34236 3.98032 -37099880.9 0.00023 0.00014 3.9 0.000 0.000 0.000 +2459654.5 0.33954 3.99557 -37099553.5 0.00033 0.00016 3.8 0.000 0.000 0.000 +2459655.5 0.33459 4.01248 -37099456.4 0.00032 0.00016 3.6 0.000 0.000 0.000 +2459656.5 0.33078 4.02896 -37099554.5 0.00030 0.00016 3.9 0.000 0.000 0.000 +2459657.5 0.32925 4.04440 -37099802.3 0.00026 0.00013 5.2 0.000 0.000 0.000 +2459658.5 0.33030 4.05969 -37100181.3 0.00026 0.00013 5.0 0.000 0.000 0.000 +2459659.5 0.33374 4.07427 -37100570.3 0.00032 0.00017 3.6 0.000 0.000 0.000 +2459660.5 0.34273 4.08901 -37100772.2 0.00022 0.00014 3.5 0.000 0.000 0.000 +2459661.5 0.35750 4.10730 -37100776.6 0.00024 0.00014 5.2 0.000 0.000 0.000 +2459662.5 0.37151 4.12884 -37100573.9 0.00024 0.00014 5.2 0.000 0.000 0.000 +2459663.5 0.38266 4.14992 -37100188.0 0.00024 0.00015 4.8 0.000 0.000 0.000 +2459664.5 0.39265 4.16914 -37099742.2 0.00023 0.00015 5.0 0.000 0.000 0.000 +2459665.5 0.40352 4.18581 -37099329.3 0.00018 0.00012 5.7 0.000 0.000 0.000 +2459666.5 0.41639 4.20174 -37099050.7 0.00017 0.00013 5.8 0.000 0.000 0.000 +2459667.5 0.42747 4.21684 -37098974.5 0.00016 0.00013 4.8 0.000 0.000 0.000 +2459668.5 0.43408 4.23095 -37099062.1 0.00019 0.00018 4.0 0.000 0.000 0.000 +2459669.5 0.43544 4.24826 -37099240.8 0.00020 0.00018 4.1 0.000 0.000 0.000 +2459670.5 0.43355 4.26902 -37099515.2 0.00022 0.00018 3.8 0.000 0.000 0.000 +2459671.5 0.43560 4.28907 -37099807.7 0.00019 0.00017 4.2 0.000 0.000 0.000 +2459672.5 0.44378 4.31006 -37100028.5 0.00020 0.00019 3.3 0.000 0.000 0.000 +2459673.5 0.45126 4.33556 -37100083.7 0.00020 0.00019 3.1 0.000 0.000 0.000 +2459674.5 0.45609 4.36132 -37099961.2 0.00017 0.00015 3.1 0.000 0.000 0.000 +2459675.5 0.46389 4.38265 -37099613.7 0.00018 0.00014 3.5 0.000 0.000 0.000 +2459676.5 0.47706 4.40068 -37099102.4 0.00017 0.00014 3.8 0.000 0.000 0.000 +2459677.5 0.49437 4.41810 -37098513.3 0.00016 0.00014 3.8 0.000 0.000 0.000 +2459678.5 0.51228 4.43582 -37097947.1 0.00014 0.00010 4.4 0.000 0.000 0.000 +2459679.5 0.52563 4.45318 -37097406.6 0.00014 0.00015 3.1 0.000 0.000 0.000 +2459680.5 0.53447 4.47060 -37096920.4 0.00013 0.00014 3.1 0.000 0.000 0.000 +2459681.5 0.54292 4.49012 -37096584.4 0.00012 0.00017 3.1 0.000 0.000 0.000 +2459682.5 0.55326 4.51054 -37096433.0 0.00010 0.00017 2.9 0.000 0.000 0.000 +2459683.5 0.56532 4.52863 -37096561.6 0.00010 0.00017 3.0 0.000 0.000 0.000 +2459684.5 0.57880 4.54480 -37096901.9 0.00015 0.00018 2.8 0.000 0.000 0.000 +2459685.5 0.59421 4.56167 -37097426.6 0.00020 0.00015 4.2 0.000 0.000 0.000 +2459686.5 0.61289 4.57792 -37097991.1 0.00021 0.00015 4.3 0.000 0.000 0.000 +2459687.5 0.63720 4.59301 -37098476.1 0.00026 0.00013 5.0 0.000 0.000 0.000 +2459688.5 0.66167 4.60813 -37098802.5 0.00028 0.00014 5.0 0.000 0.000 0.000 +2459689.5 0.68332 4.61998 -37098897.6 0.00029 0.00015 3.6 0.000 0.000 0.000 +2459690.5 0.70492 4.63054 -37098693.9 0.00027 0.00015 3.6 0.000 0.000 0.000 +2459691.5 0.72758 4.64105 -37098322.7 0.00023 0.00016 3.6 0.000 0.000 0.000 +2459692.5 0.75224 4.65086 -37097934.7 0.00022 0.00015 3.6 0.000 0.000 0.000 +2459693.5 0.77857 4.66283 -37097564.3 0.00017 0.00026 5.0 0.000 0.000 0.000 +2459694.5 0.80484 4.67927 -37097290.0 0.00015 0.00025 5.0 0.000 0.000 0.000 +2459695.5 0.82817 4.69839 -37097179.6 0.00013 0.00025 9.2 0.000 0.000 0.000 +2459696.5 0.84840 4.71459 -37097229.9 0.00019 0.00028 6.3 0.000 0.000 0.000 +2459697.5 0.86491 4.72740 -37097357.6 0.00020 0.00027 6.2 0.000 0.000 0.000 +2459698.5 0.87933 4.73537 -37097495.9 0.00020 0.00028 6.1 0.000 0.000 0.000 +2459699.5 0.89678 4.74076 -37097580.7 0.00019 0.00017 5.0 0.000 0.000 0.000 +2459700.5 0.91696 4.74622 -37097568.1 0.00020 0.00018 5.0 0.000 0.000 0.000 +2459701.5 0.93634 4.75315 -37097414.9 0.00023 0.00019 5.4 0.000 0.000 0.000 +2459702.5 0.95566 4.76114 -37097187.3 0.00018 0.00014 5.8 0.000 0.000 0.000 +2459703.5 0.97693 4.76924 -37096912.8 0.00021 0.00016 5.4 0.000 0.000 0.000 +2459704.5 0.99819 4.77880 -37096510.3 0.00021 0.00016 5.4 0.000 0.000 0.000 +2459705.5 1.01674 4.78819 -37096023.8 0.00022 0.00015 5.4 0.000 0.000 0.000 +2459706.5 1.03388 4.79502 -37095576.8 0.00023 0.00013 5.4 0.000 0.000 0.000 +2459707.5 1.05104 4.80062 -37095179.5 0.00022 0.00013 5.0 0.000 0.000 0.000 +2459708.5 1.06695 4.80513 -37094875.5 0.00023 0.00014 5.2 0.000 0.000 0.000 +2459709.5 1.08523 4.80966 -37094798.0 0.00019 0.00012 5.5 0.000 0.000 0.000 +2459710.5 1.10912 4.81772 -37094995.9 0.00019 0.00014 4.6 0.000 0.000 0.000 +2459711.5 1.13494 4.82666 -37095462.5 0.00017 0.00014 4.5 0.000 0.000 0.000 +2459712.5 1.16069 4.83374 -37096061.3 0.00018 0.00015 4.4 0.000 0.000 0.000 +2459713.5 1.18512 4.83943 -37096761.6 0.00016 0.00016 3.5 0.000 0.000 0.000 +2459714.5 1.20713 4.84482 -37097400.1 0.00024 0.00019 4.0 0.000 0.000 0.000 +2459715.5 1.22292 4.85289 -37097888.0 0.00025 0.00018 4.2 0.000 0.000 0.000 +2459716.5 1.23273 4.85803 -37098185.8 0.00026 0.00018 6.6 0.000 0.000 0.000 +2459717.5 1.24658 4.85665 -37098268.7 0.00029 0.00026 8.6 0.000 0.000 0.000 +2459718.5 1.26488 4.85546 -37098157.6 0.00028 0.00027 9.2 0.000 0.000 0.000 +2459719.5 1.28445 4.85595 -37097931.6 0.00027 0.00026 8.9 0.000 0.000 0.000 +2459720.5 1.30660 4.86037 -37097756.6 0.00021 0.00024 10.1 0.000 0.000 0.000 +2459721.5 1.32973 4.86739 -37097703.2 0.00024 0.00027 7.1 0.000 0.000 0.000 +2459722.5 1.35354 4.87376 -37097773.5 0.00025 0.00026 7.0 0.000 0.000 0.000 +2459723.5 1.37673 4.88128 -37097968.3 0.00022 0.00018 6.4 0.000 0.000 0.000 +2459724.5 1.39655 4.88533 -37098237.2 0.00023 0.00021 5.6 0.000 0.000 0.000 +2459725.5 1.41661 4.88499 -37098482.4 0.00022 0.00021 5.4 0.000 0.000 0.000 +2459726.5 1.43575 4.88453 -37098639.6 0.00023 0.00021 5.2 0.000 0.000 0.000 +2459727.5 1.45158 4.88367 -37098618.7 0.00019 0.00018 5.4 0.000 0.000 0.000 +2459728.5 1.46682 4.88247 -37098336.1 0.00016 0.00019 5.7 0.000 0.000 0.000 +2459729.5 1.48142 4.87960 -37097761.6 0.00024 0.00024 5.0 0.000 0.000 0.000 +2459730.5 1.49847 4.87093 -37096921.5 0.00023 0.00020 5.7 0.000 0.000 0.000 +2459731.5 1.52001 4.86164 -37095895.1 0.00028 0.00024 5.1 0.000 0.000 0.000 +2459732.5 1.54335 4.85428 -37094797.2 0.00028 0.00024 5.6 0.000 0.000 0.000 +2459733.5 1.56608 4.84762 -37093639.0 0.00027 0.00023 6.0 0.000 0.000 0.000 +2459734.5 1.58876 4.84148 -37092584.3 0.00028 0.00022 5.9 0.000 0.000 0.000 +2459735.5 1.61156 4.83620 -37091647.0 0.00020 0.00017 6.9 0.000 0.000 0.000 +2459736.5 1.63478 4.83151 -37090799.3 0.00025 0.00018 5.3 0.000 0.000 0.000 +2459737.5 1.66258 4.82845 -37090145.8 0.00020 0.00012 6.2 0.000 0.000 0.000 +2459738.5 1.69362 4.82824 -37089689.2 0.00023 0.00024 6.1 0.000 0.000 0.000 +2459739.5 1.72338 4.82864 -37089342.8 0.00023 0.00024 5.9 0.000 0.000 0.000 +2459740.5 1.75170 4.82876 -37089096.4 0.00023 0.00025 5.6 0.000 0.000 0.000 +2459741.5 1.77825 4.82631 -37088862.2 0.00023 0.00024 5.7 0.000 0.000 0.000 +2459742.5 1.80322 4.81995 -37088517.8 0.00019 0.00026 5.8 0.000 0.000 0.000 +2459743.5 1.82802 4.81220 -37087941.6 0.00019 0.00025 5.6 0.000 0.000 0.000 +2459744.5 1.85074 4.80362 -37087086.4 0.00013 0.00015 5.2 0.000 0.000 0.000 +2459745.5 1.87072 4.79278 -37085991.3 0.00032 0.00021 5.3 0.000 0.000 0.000 +2459746.5 1.89200 4.78013 -37084739.5 0.00032 0.00021 5.4 0.000 0.000 0.000 +2459747.5 1.91612 4.76718 -37083497.6 0.00031 0.00021 5.3 0.000 0.000 0.000 +2459748.5 1.94038 4.75540 -37082438.6 0.00030 0.00018 6.6 0.000 0.000 0.000 +2459749.5 1.96595 4.74520 -37081599.9 0.00030 0.00019 8.0 0.000 0.000 0.000 +2459750.5 1.99463 4.73569 -37080899.0 0.00031 0.00021 5.3 0.000 0.000 0.000 +2459751.5 2.02393 4.72817 -37080310.1 0.00010 0.00015 4.9 0.000 0.000 0.000 +2459752.5 2.05095 4.72245 -37079751.8 0.00015 0.00016 4.1 0.000 0.000 0.000 +2459753.5 2.07617 4.71609 -37079123.8 0.00015 0.00018 4.1 0.000 0.000 0.000 +2459754.5 2.10143 4.70762 -37078303.7 0.00016 0.00018 4.4 0.000 0.000 0.000 +2459755.5 2.12733 4.69694 -37077345.8 0.00017 0.00017 4.5 0.000 0.000 0.000 +2459756.5 2.15401 4.68440 -37076192.9 0.00023 0.00016 3.6 0.000 0.000 0.000 +2459757.5 2.18224 4.67032 -37074824.5 0.00023 0.00016 3.8 0.000 0.000 0.000 +2459758.5 2.21335 4.65586 -37073363.6 0.00020 0.00015 5.0 0.000 0.000 0.000 +2459759.5 2.24409 4.64145 -37071804.6 0.00019 0.00019 5.2 0.000 0.000 0.000 +2459760.5 2.27232 4.62593 -37070209.7 0.00019 0.00019 5.1 0.000 0.000 0.000 +2459761.5 2.30021 4.60837 -37068658.9 0.00019 0.00019 5.0 0.000 0.000 0.000 +2459762.5 2.32938 4.59216 -37067248.7 0.00010 0.00018 8.1 0.000 0.000 0.000 +2459763.5 2.36102 4.57821 -37065970.4 0.00012 0.00023 6.9 0.000 0.000 0.000 +2459764.5 2.39196 4.56540 -37064934.6 0.00012 0.00023 6.6 0.000 0.000 0.000 +2459765.5 2.41897 4.55099 -37064148.5 0.00011 0.00019 6.5 0.000 0.000 0.000 +2459766.5 2.44463 4.53300 -37063556.0 0.00010 0.00019 6.2 0.000 0.000 0.000 +2459767.5 2.47129 4.51596 -37063052.2 0.00010 0.00019 6.1 0.000 0.000 0.000 +2459768.5 2.49750 4.50109 -37062595.8 0.00010 0.00019 5.9 0.000 0.000 0.000 +2459769.5 2.52297 4.48647 -37062042.2 0.00010 0.00014 7.1 0.000 0.000 0.000 +2459770.5 2.54698 4.47025 -37061305.7 0.00012 0.00018 5.0 0.000 0.000 0.000 +2459771.5 2.56806 4.45406 -37060298.3 0.00013 0.00017 4.5 0.000 0.000 0.000 +2459772.5 2.58327 4.43901 -37059115.7 0.00013 0.00017 4.5 0.000 0.000 0.000 +2459773.5 2.59226 4.42021 -37057831.3 0.00013 0.00021 5.1 0.000 0.000 0.000 +2459774.5 2.60260 4.39921 -37056439.8 0.00013 0.00020 5.1 0.000 0.000 0.000 +2459775.5 2.61708 4.38116 -37055265.9 0.00014 0.00020 5.0 0.000 0.000 0.000 +2459776.5 2.63457 4.36344 -37054285.1 0.00011 0.00016 6.2 0.000 0.000 0.000 +2459777.5 2.65300 4.34374 -37053538.6 0.00013 0.00019 4.3 0.000 0.000 0.000 +2459778.5 2.67264 4.32333 -37052890.8 0.00013 0.00019 4.2 0.000 0.000 0.000 +2459779.5 2.69244 4.30273 -37052313.0 0.00013 0.00014 3.2 0.000 0.000 0.000 +2459780.5 2.70989 4.28191 -37051661.1 0.00020 0.00018 3.1 0.000 0.000 0.000 +2459781.5 2.72571 4.26252 -37050919.6 0.00020 0.00018 3.6 0.000 0.000 0.000 +2459782.5 2.74106 4.24447 -37049992.7 0.00020 0.00020 3.7 0.000 0.000 0.000 +2459783.5 2.75667 4.22672 -37048868.0 0.00019 0.00017 5.4 0.000 0.000 0.000 +2459784.5 2.77058 4.20908 -37047604.9 0.00020 0.00018 4.7 0.000 0.000 0.000 +2459785.5 2.78490 4.19329 -37046210.8 0.00020 0.00020 4.6 0.000 0.000 0.000 +2459786.5 2.79859 4.17883 -37044747.8 0.00013 0.00018 7.0 0.000 0.000 0.000 +2459787.5 2.81077 4.16122 -37043317.0 0.00025 0.00027 10.3 0.000 0.000 0.000 +2459788.5 2.82274 4.14138 -37041879.2 0.00025 0.00026 10.2 0.000 0.000 0.000 +2459789.5 2.83373 4.11831 -37040444.0 0.00024 0.00026 10.2 0.000 0.000 0.000 +2459790.5 2.84628 4.09434 -37039190.8 0.00023 0.00025 16.2 0.000 0.000 0.000 +2459791.5 2.85993 4.07277 -37038198.0 0.00026 0.00028 9.1 0.000 0.000 0.000 +2459792.5 2.87136 4.05202 -37037348.3 0.00026 0.00027 9.2 0.000 0.000 0.000 +2459793.5 2.87890 4.03215 -37036758.9 0.00019 0.00017 6.4 0.000 0.000 0.000 +2459794.5 2.88547 4.01001 -37036258.0 0.00019 0.00016 6.2 0.000 0.000 0.000 +2459795.5 2.89529 3.98713 -37035826.9 0.00019 0.00016 5.7 0.000 0.000 0.000 +2459796.5 2.90545 3.96549 -37035307.4 0.00019 0.00016 5.6 0.000 0.000 0.000 +2459797.5 2.91098 3.94193 -37034753.1 0.00015 0.00010 7.1 0.000 0.000 0.000 +2459798.5 2.91549 3.91643 -37033963.2 0.00019 0.00010 4.8 0.000 0.000 0.000 +2459799.5 2.92341 3.89019 -37032998.4 0.00015 0.00010 4.9 0.000 0.000 0.000 +2459800.5 2.93216 3.86208 -37031901.5 0.00015 0.00010 5.1 0.000 0.000 0.000 +2459801.5 2.93837 3.83248 -37030814.2 0.00015 0.00011 4.3 0.000 0.000 0.000 +2459802.5 2.94455 3.80335 -37029866.9 0.00015 0.00011 4.2 0.000 0.000 0.000 +2459803.5 2.95066 3.77809 -37029136.5 0.00015 0.00012 4.4 0.000 0.000 0.000 +2459804.5 2.95582 3.75705 -37028639.5 0.00011 0.00011 5.4 0.000 0.000 0.000 +2459805.5 2.96375 3.73564 -37028306.7 0.00010 0.00012 5.0 0.000 0.000 0.000 +2459806.5 2.97517 3.71303 -37027996.2 0.00012 0.00012 4.2 0.000 0.000 0.000 +2459807.5 2.98556 3.69040 -37027615.6 0.00012 0.00010 5.8 0.000 0.000 0.000 +2459808.5 2.99282 3.66731 -37027084.0 0.00015 0.00015 6.9 0.000 0.000 0.000 +2459809.5 2.99912 3.64398 -37026369.4 0.00016 0.00017 6.7 0.000 0.000 0.000 +2459810.5 3.00905 3.62018 -37025361.3 0.00015 0.00017 6.6 0.000 0.000 0.000 +2459811.5 3.02133 3.59755 -37024214.6 0.00016 0.00016 7.0 0.000 0.000 0.000 +2459812.5 3.03013 3.57416 -37022818.3 0.00018 0.00023 7.0 0.000 0.000 0.000 +2459813.5 3.03770 3.54934 -37021413.0 0.00017 0.00023 6.7 0.000 0.000 0.000 +2459814.5 3.04492 3.52462 -37020000.7 0.00014 0.00021 6.3 0.000 0.000 0.000 +2459815.5 3.04890 3.49906 -37018712.8 0.00015 0.00022 6.1 0.000 0.000 0.000 +2459816.5 3.05189 3.47447 -37017448.3 0.00014 0.00022 5.9 0.000 0.000 0.000 +2459817.5 3.05359 3.44909 -37016292.0 0.00014 0.00022 5.7 0.000 0.000 0.000 +2459818.5 3.05274 3.42343 -37015354.4 0.00010 0.00014 6.6 0.000 0.000 0.000 +2459819.5 3.04971 3.39908 -37014637.0 0.00016 0.00017 5.6 0.000 0.000 0.000 +2459820.5 3.04628 3.37395 -37014129.5 0.00016 0.00016 5.5 0.000 0.000 0.000 +2459821.5 3.04501 3.34971 -37013796.5 0.00016 0.00013 5.4 0.000 0.000 0.000 +2459822.5 3.04619 3.32729 -37013626.7 0.00017 0.00015 4.5 0.000 0.000 0.000 +2459823.5 3.04760 3.30380 -37013468.5 0.00017 0.00016 4.3 0.000 0.000 0.000 +2459824.5 3.04509 3.27656 -37013248.9 0.00017 0.00016 4.3 0.000 0.000 0.000 +2459825.5 3.04211 3.25046 -37012896.2 0.00010 0.00011 3.9 0.000 0.000 0.000 +2459826.5 3.04092 3.22754 -37012395.5 0.00011 0.00018 7.1 0.000 0.000 0.000 +2459827.5 3.03793 3.20459 -37011721.1 0.00011 0.00018 7.1 0.000 0.000 0.000 +2459828.5 3.03230 3.17935 -37011014.0 0.00010 0.00016 11.4 0.000 0.000 0.000 +2459829.5 3.02624 3.14927 -37010435.0 0.00013 0.00016 9.8 0.000 0.000 0.000 +2459830.5 3.01733 3.11762 -37009962.3 0.00014 0.00017 10.1 0.000 0.000 0.000 +2459831.5 3.00347 3.08680 -37009800.5 0.00014 0.00018 9.9 0.000 0.000 0.000 +2459832.5 2.99161 3.05664 -37009908.5 0.00013 0.00012 6.4 0.000 0.000 0.000 +2459833.5 2.98577 3.02848 -37010208.5 0.00020 0.00015 4.4 0.000 0.000 0.000 +2459834.5 2.98134 3.00270 -37010557.9 0.00021 0.00016 4.4 0.000 0.000 0.000 +2459835.5 2.97558 2.97911 -37010872.9 0.00019 0.00018 4.7 0.000 0.000 0.000 +2459836.5 2.96982 2.95808 -37010990.7 0.00018 0.00030 3.6 0.000 0.000 0.000 +2459837.5 2.96339 2.93807 -37010909.0 0.00018 0.00030 3.5 0.000 0.000 0.000 +2459838.5 2.95612 2.91684 -37010525.8 0.00018 0.00030 3.4 0.000 0.000 0.000 +2459839.5 2.94750 2.89616 -37010004.3 0.00010 0.00028 3.5 0.000 0.000 0.000 +2459840.5 2.93584 2.87785 -37009260.7 0.00014 0.00035 2.8 0.000 0.000 0.000 +2459841.5 2.92285 2.85840 -37008448.0 0.00015 0.00034 2.8 0.000 0.000 0.000 +2459842.5 2.91359 2.83510 -37007573.8 0.00015 0.00025 3.3 0.000 0.000 0.000 +2459843.5 2.90664 2.81046 -37006687.0 0.00016 0.00025 3.6 0.000 0.000 0.000 +2459844.5 2.89766 2.78367 -37005982.7 0.00016 0.00025 3.3 0.000 0.000 0.000 +2459845.5 2.88629 2.75544 -37005446.6 0.00016 0.00024 3.3 0.000 0.000 0.000 +2459846.5 2.87267 2.72932 -37005097.5 0.00012 0.00012 5.0 0.000 0.000 0.000 +2459847.5 2.85951 2.70426 -37004968.3 0.00023 0.00021 5.1 0.000 0.000 0.000 +2459848.5 2.85166 2.68168 -37004965.5 0.00023 0.00020 5.1 0.000 0.000 0.000 +2459849.5 2.84725 2.66407 -37005097.4 0.00022 0.00019 5.8 0.000 0.000 0.000 +2459850.5 2.83878 2.64922 -37005314.4 0.00022 0.00023 5.1 0.000 0.000 0.000 +2459851.5 2.83007 2.63301 -37005398.2 0.00022 0.00023 5.1 0.000 0.000 0.000 +2459852.5 2.82331 2.61503 -37005333.6 0.00022 0.00023 5.2 0.000 0.000 0.000 +2459853.5 2.81366 2.59743 -37005058.3 0.00011 0.00018 5.1 0.000 0.000 0.000 +2459854.5 2.80047 2.57879 -37004569.1 0.00010 0.00018 5.1 0.000 0.000 0.000 +2459855.5 2.78455 2.55734 -37004057.3 0.00014 0.00023 5.5 0.000 0.000 0.000 +2459856.5 2.76554 2.53521 -37003591.9 0.00013 0.00019 7.3 0.000 0.000 0.000 +2459857.5 2.74399 2.51421 -37003230.4 0.00014 0.00020 6.0 0.000 0.000 0.000 +2459858.5 2.72446 2.49222 -37003071.0 0.00015 0.00020 6.0 0.000 0.000 0.000 +2459859.5 2.70893 2.46710 -37003182.9 0.00015 0.00018 6.0 0.000 0.000 0.000 +2459860.5 2.69403 2.44285 -37003543.1 0.00016 0.00018 6.1 0.000 0.000 0.000 +2459861.5 2.67410 2.42144 -37004099.9 0.00012 0.00013 5.9 0.000 0.000 0.000 +2459862.5 2.65323 2.39991 -37004690.9 0.00013 0.00019 5.1 0.000 0.000 0.000 +2459863.5 2.63673 2.37868 -37005196.4 0.00012 0.00018 5.1 0.000 0.000 0.000 +2459864.5 2.62034 2.35718 -37005502.5 0.00014 0.00023 4.5 0.000 0.000 0.000 +2459865.5 2.59893 2.33782 -37005588.2 0.00013 0.00023 4.7 0.000 0.000 0.000 +2459866.5 2.56984 2.32075 -37005434.8 0.00012 0.00022 4.9 0.000 0.000 0.000 +2459867.5 2.54060 2.30368 -37005190.2 0.00012 0.00021 5.1 0.000 0.000 0.000 +2459868.5 2.51203 2.28840 -37004917.9 0.00015 0.00018 6.1 0.000 0.000 0.000 +2459869.5 2.48072 2.27224 -37004651.0 0.00017 0.00018 6.0 0.000 0.000 0.000 +2459870.5 2.45181 2.25122 -37004560.7 0.00014 0.00014 7.4 0.000 0.000 0.000 +2459871.5 2.43024 2.22949 -37004592.6 0.00016 0.00020 6.3 0.000 0.000 0.000 +2459872.5 2.40718 2.21146 -37004776.7 0.00016 0.00020 6.1 0.000 0.000 0.000 +2459873.5 2.37718 2.19301 -37005152.8 0.00017 0.00020 5.9 0.000 0.000 0.000 +2459874.5 2.34659 2.17533 -37005719.8 0.00014 0.00020 5.2 0.000 0.000 0.000 +2459875.5 2.32017 2.16031 -37006512.3 0.00012 0.00024 4.0 0.000 0.000 0.000 +2459876.5 2.30041 2.14644 -37007471.0 0.00012 0.00023 4.0 0.000 0.000 0.000 +2459877.5 2.28140 2.13200 -37008395.6 0.00011 0.00019 3.5 0.000 0.000 0.000 +2459878.5 2.26082 2.11785 -37009245.7 0.00010 0.00016 3.5 0.000 0.000 0.000 +2459879.5 2.23705 2.10363 -37009883.6 0.00010 0.00016 3.5 0.000 0.000 0.000 +2459880.5 2.20832 2.08855 -37010211.0 0.00010 0.00015 3.4 0.000 0.000 0.000 +2459881.5 2.17717 2.07402 -37010332.2 0.00010 0.00010 4.7 0.000 0.000 0.000 +2459882.5 2.14515 2.06262 -37010313.8 0.00015 0.00014 5.1 0.000 0.000 0.000 +2459883.5 2.11397 2.05224 -37010195.9 0.00014 0.00013 6.3 0.000 0.000 0.000 +2459884.5 2.08600 2.04189 -37010193.4 0.00015 0.00014 6.3 0.000 0.000 0.000 +2459885.5 2.06242 2.03487 -37010423.6 0.00018 0.00017 5.7 0.000 0.000 0.000 +2459886.5 2.03882 2.02381 -37010947.0 0.00018 0.00017 5.8 0.000 0.000 0.000 +2459887.5 2.01540 2.01323 -37011805.1 0.00017 0.00017 5.7 0.000 0.000 0.000 +2459888.5 1.99498 2.00706 -37012825.1 0.00013 0.00014 6.7 0.000 0.000 0.000 +2459889.5 1.97927 1.99790 -37013814.3 0.00015 0.00016 4.8 0.000 0.000 0.000 +2459890.5 1.96428 1.99011 -37014732.4 0.00015 0.00015 5.4 0.000 0.000 0.000 +2459891.5 1.94594 1.98352 -37015451.1 0.00022 0.00017 5.9 0.000 0.000 0.000 +2459892.5 1.92642 1.97596 -37015944.2 0.00021 0.00017 5.4 0.000 0.000 0.000 +2459893.5 1.90374 1.96671 -37016251.7 0.00021 0.00018 5.4 0.000 0.000 0.000 +2459894.5 1.87841 1.95910 -37016233.2 0.00021 0.00017 4.7 0.000 0.000 0.000 +2459895.5 1.85426 1.95024 -37016031.6 0.00020 0.00015 8.0 0.000 0.000 0.000 +2459896.5 1.83321 1.93961 -37015789.2 0.00020 0.00016 4.5 0.000 0.000 0.000 +2459897.5 1.81907 1.92836 -37015537.8 0.00010 0.00010 3.1 0.000 0.000 0.000 +2459898.5 1.81156 1.92202 -37015353.9 0.00010 0.00010 3.3 0.000 0.000 0.000 +2459899.5 1.80592 1.92116 -37015321.4 0.00011 0.00010 4.1 0.000 0.000 0.000 +2459900.5 1.79838 1.92247 -37015450.6 0.00011 0.00011 4.1 0.000 0.000 0.000 +2459901.5 1.78502 1.92618 -37015858.9 0.00011 0.00011 4.2 0.000 0.000 0.000 +2459902.5 1.76648 1.92938 -37016414.3 0.00010 0.00010 6.5 0.000 0.000 0.000 +2459903.5 1.74682 1.92877 -37017042.8 0.00011 0.00011 4.4 0.000 0.000 0.000 +2459904.5 1.72515 1.92693 -37017891.2 0.00011 0.00011 4.4 0.000 0.000 0.000 +2459905.5 1.70162 1.92484 -37018666.9 0.00010 0.00010 3.8 0.000 0.000 0.000 +2459906.5 1.67914 1.92120 -37019276.6 0.00017 0.00016 5.7 0.000 0.000 0.000 +2459907.5 1.65806 1.91636 -37019682.7 0.00017 0.00016 5.9 0.000 0.000 0.000 +2459908.5 1.63385 1.91424 -37019811.1 0.00017 0.00016 5.8 0.000 0.000 0.000 +2459909.5 1.60420 1.91107 -37019741.8 0.00016 0.00015 8.2 0.000 0.000 0.000 +2459910.5 1.56945 1.90787 -37019523.5 0.00017 0.00015 7.9 0.000 0.000 0.000 +2459911.5 1.53230 1.90259 -37019299.8 0.00017 0.00016 6.9 0.000 0.000 0.000 +2459912.5 1.49943 1.89792 -37019225.5 0.00010 0.00010 6.1 0.000 0.000 0.000 +2459913.5 1.47030 1.89800 -37019320.1 0.00015 0.00011 4.9 0.000 0.000 0.000 +2459914.5 1.44067 1.90095 -37019590.1 0.00016 0.00012 4.8 0.000 0.000 0.000 +2459915.5 1.41113 1.89933 -37020031.8 0.00016 0.00013 4.8 0.000 0.000 0.000 +2459916.5 1.38517 1.89627 -37020433.1 0.00016 0.00014 4.8 0.000 0.000 0.000 +2459917.5 1.35682 1.89544 -37020820.1 0.00016 0.00015 3.6 0.000 0.000 0.000 +2459918.5 1.32708 1.89107 -37021030.0 0.00016 0.00015 3.8 0.000 0.000 0.000 +2459919.5 1.30254 1.88745 -37021050.6 0.00011 0.00014 3.2 0.000 0.000 0.000 +2459920.5 1.27861 1.88861 -37020854.8 0.00014 0.00015 3.8 0.000 0.000 0.000 +2459921.5 1.25549 1.88702 -37020483.1 0.00013 0.00014 3.7 0.000 0.000 0.000 +2459922.5 1.23017 1.88887 -37019976.9 0.00012 0.00013 4.0 0.000 0.000 0.000 +2459923.5 1.20050 1.89249 -37019367.4 0.00012 0.00010 5.3 0.000 0.000 0.000 +2459924.5 1.17117 1.89436 -37018702.9 0.00018 0.00010 5.1 0.000 0.000 0.000 +2459925.5 1.14548 1.89329 -37018098.6 0.00018 0.00011 5.0 0.000 0.000 0.000 +2459926.5 1.12247 1.89360 -37017642.2 0.00017 0.00011 4.2 0.000 0.000 0.000 +2459927.5 1.10095 1.89785 -37017286.3 0.00017 0.00011 4.1 0.000 0.000 0.000 +2459928.5 1.07810 1.90596 -37017110.8 0.00017 0.00011 3.9 0.000 0.000 0.000 +2459929.5 1.05279 1.91595 -37017086.2 0.00016 0.00011 3.8 0.000 0.000 0.000 +2459930.5 1.02631 1.92132 -37017303.5 0.00011 0.00010 3.7 0.000 0.000 0.000 +2459931.5 1.00234 1.92467 -37017552.5 0.00026 0.00018 4.7 0.000 0.000 0.000 +2459932.5 0.98305 1.92746 -37017792.1 0.00026 0.00017 6.9 0.000 0.000 0.000 +2459933.5 0.96748 1.93154 -37017971.2 0.00029 0.00026 4.6 0.000 0.000 0.000 +2459934.5 0.95802 1.93336 -37018084.1 0.00029 0.00026 4.8 0.000 0.000 0.000 +2459935.5 0.94819 1.94003 -37018099.1 0.00029 0.00026 4.8 0.000 0.000 0.000 +2459936.5 0.93422 1.94945 -37017913.8 0.00029 0.00027 4.8 0.000 0.000 0.000 +2459937.5 0.91312 1.96096 -37017609.2 0.00015 0.00022 4.0 0.000 0.000 0.000 +2459938.5 0.88380 1.97001 -37017369.2 0.00015 0.00021 4.1 0.000 0.000 0.000 +2459939.5 0.85224 1.97366 -37017253.1 0.00038 0.00018 5.6 0.000 0.000 0.000 +2459940.5 0.82026 1.97766 -37017476.8 0.00038 0.00018 5.2 0.000 0.000 0.000 +2459941.5 0.78215 1.98405 -37017921.4 0.00039 0.00023 4.7 0.000 0.000 0.000 +2459942.5 0.74759 1.98575 -37018454.9 0.00039 0.00023 4.8 0.000 0.000 0.000 +2459943.5 0.71219 1.99149 -37019002.2 0.00039 0.00022 4.6 0.000 0.000 0.000 +2459944.5 0.67043 2.00110 -37019489.0 0.00039 0.00023 4.8 0.000 0.000 0.000 +2459945.5 0.62781 2.00905 -37019868.2 0.00011 0.00017 6.3 0.000 0.000 0.000 +2459946.5 0.59066 2.01758 -37019933.1 0.00032 0.00019 5.4 0.000 0.000 0.000 +2459947.5 0.55736 2.02461 -37019853.0 0.00039 0.00015 7.0 0.000 0.000 0.000 +2459948.5 0.52991 2.03017 -37019510.2 0.00039 0.00016 7.2 0.000 0.000 0.000 +2459949.5 0.50823 2.03823 -37019034.4 0.00039 0.00016 8.1 0.000 0.000 0.000 +2459950.5 0.48802 2.05099 -37018525.6 0.00039 0.00015 8.1 0.000 0.000 0.000 +2459951.5 0.46882 2.06230 -37017984.2 0.00039 0.00014 8.0 0.000 0.000 0.000 +2459952.5 0.45147 2.07580 -37017495.4 0.00028 0.00013 8.6 0.000 0.000 0.000 +2459953.5 0.43371 2.09048 -37017133.1 0.00014 0.00010 8.2 0.000 0.000 0.000 +2459954.5 0.41306 2.10264 -37016964.5 0.00013 0.00010 7.7 0.000 0.000 0.000 +2459955.5 0.38971 2.11091 -37016951.6 0.00045 0.00021 6.3 0.000 0.000 0.000 +2459956.5 0.36561 2.11946 -37017083.9 0.00045 0.00021 5.4 0.000 0.000 0.000 +2459957.5 0.34209 2.13007 -37017212.9 0.00045 0.00021 5.9 0.000 0.000 0.000 +2459958.5 0.31797 2.14433 -37017391.5 0.00044 0.00020 8.7 0.000 0.000 0.000 +2459959.5 0.29352 2.16069 -37017549.1 0.00047 0.00021 7.8 0.000 0.000 0.000 +2459960.5 0.26876 2.17955 -37017713.7 0.00048 0.00021 7.8 0.000 0.000 0.000 +2459961.5 0.24346 2.20229 -37017750.2 0.00021 0.00010 10.1 0.000 0.000 0.000 +2459962.5 0.21693 2.22435 -37017566.1 0.00037 0.00013 9.0 0.000 0.000 0.000 +2459963.5 0.19111 2.24227 -37017181.1 0.00037 0.00013 8.8 0.000 0.000 0.000 +2459964.5 0.16694 2.25584 -37016761.4 0.00037 0.00013 8.6 0.000 0.000 0.000 +2459965.5 0.13986 2.26870 -37016180.1 0.00033 0.00012 11.1 0.000 0.000 0.000 +2459966.5 0.10882 2.27735 -37015632.6 0.00041 0.00033 7.4 0.000 0.000 0.000 +2459967.5 0.07810 2.28874 -37015283.7 0.00041 0.00033 7.3 0.000 0.000 0.000 +2459968.5 0.05419 2.30151 -37015200.3 0.00028 0.00032 7.6 0.000 0.000 0.000 +2459969.5 0.03918 2.31469 -37015414.4 0.00028 0.00047 7.1 0.000 0.000 0.000 +2459970.5 0.02905 2.33341 -37015701.0 0.00028 0.00048 7.2 0.000 0.000 0.000 +2459971.5 0.01585 2.35760 -37015891.3 0.00028 0.00048 7.1 0.000 0.000 0.000 +2459972.5 0.00374 2.38166 -37015995.6 0.00012 0.00037 7.5 0.000 0.000 0.000 +2459973.5 -0.00258 2.40364 -37015888.6 0.00029 0.00038 7.1 0.000 0.000 0.000 +2459974.5 -0.00868 2.42677 -37015659.9 0.00030 0.00038 6.9 0.000 0.000 0.000 +2459975.5 -0.01367 2.44951 -37015232.7 0.00029 0.00016 6.9 0.000 0.000 0.000 +2459976.5 -0.02309 2.47837 -37014625.7 0.00029 0.00035 4.5 0.000 0.000 0.000 +2459977.5 -0.03560 2.50320 -37013910.2 0.00029 0.00035 4.9 0.000 0.000 0.000 +2459978.5 -0.04897 2.52423 -37013128.4 0.00029 0.00035 4.9 0.000 0.000 0.000 +2459979.5 -0.06465 2.54309 -37012397.4 0.00011 0.00034 4.5 0.000 0.000 0.000 +2459980.5 -0.08210 2.55926 -37011881.1 0.00016 0.00034 3.9 0.000 0.000 0.000 +2459981.5 -0.09952 2.57728 -37011505.7 0.00016 0.00034 3.9 0.000 0.000 0.000 +2459982.5 -0.11914 2.59683 -37011279.1 0.00016 0.00010 4.7 0.000 0.000 0.000 +2459983.5 -0.14081 2.61627 -37011189.0 0.00029 0.00024 3.8 0.000 0.000 0.000 +2459984.5 -0.15741 2.63467 -37011236.6 0.00029 0.00024 3.8 0.000 0.000 0.000 +2459985.5 -0.16680 2.65511 -37011457.2 0.00028 0.00024 3.9 0.000 0.000 0.000 +2459986.5 -0.17894 2.68034 -37011801.1 0.00025 0.00023 4.7 0.000 0.000 0.000 +2459987.5 -0.19627 2.70430 -37012133.7 0.00028 0.00041 4.0 0.000 0.000 0.000 +2459988.5 -0.21932 2.73053 -37012406.3 0.00028 0.00042 4.2 0.000 0.000 0.000 +2459989.5 -0.24511 2.75828 -37012463.0 0.00014 0.00036 4.6 0.000 0.000 0.000 +2459990.5 -0.26950 2.78113 -37012340.4 0.00017 0.00036 4.2 0.000 0.000 0.000 +2459991.5 -0.29366 2.80710 -37012057.5 0.00017 0.00036 4.3 0.000 0.000 0.000 +2459992.5 -0.31752 2.82876 -37011687.4 0.00017 0.00037 4.2 0.000 0.000 0.000 +2459993.5 -0.33986 2.84849 -37011357.4 0.00012 0.00013 5.8 0.000 0.000 0.000 +2459994.5 -0.35821 2.86840 -37011317.9 0.00014 0.00022 5.0 0.000 0.000 0.000 +2459995.5 -0.37231 2.88972 -37011575.6 0.00014 0.00022 4.9 0.000 0.000 0.000 +2459996.5 -0.38258 2.91443 -37012152.8 0.00010 0.00021 4.9 0.000 0.000 0.000 +2459997.5 -0.38767 2.94621 -37012954.7 0.00043 0.00051 5.7 0.000 0.000 0.000 +2459998.5 -0.38968 2.98280 -37013729.6 0.00043 0.00050 5.7 0.000 0.000 0.000 +2459999.5 -0.39125 3.01745 -37014500.1 0.00043 0.00050 5.9 0.000 0.000 0.000 +2460000.5 -0.39677 3.05150 -37015147.0 0.00043 0.00047 7.5 0.000 0.000 0.000 +2460001.5 -0.40919 3.08147 -37015559.8 0.00043 0.00061 6.6 0.000 0.000 0.000 +2460002.5 -0.42719 3.10770 -37015652.0 0.00043 0.00061 6.7 0.000 0.000 0.000 +2460003.5 -0.44027 3.13126 -37015507.3 0.00010 0.00039 6.4 0.000 0.000 0.000 +2460004.5 -0.45082 3.16381 -37015285.3 0.00010 0.00039 5.6 0.000 0.000 0.000 +2460005.5 -0.46060 3.18711 -37015115.5 0.00010 0.00039 5.7 0.000 0.000 0.000 +2460006.5 -0.46661 3.21129 -37014852.5 0.00010 0.00039 5.2 0.000 0.000 0.000 +2460007.5 -0.46914 3.23789 -37014687.7 0.00010 0.00010 5.6 0.000 0.000 0.000 +2460008.5 -0.46600 3.26589 -37014675.6 0.00012 0.00010 6.9 0.000 0.000 0.000 +2460009.5 -0.45640 3.29769 -37014925.9 0.00013 0.00010 6.9 0.000 0.000 0.000 +2460010.5 -0.44609 3.33314 -37015373.1 0.00012 0.00010 7.6 0.000 0.000 0.000 +2460011.5 -0.43502 3.36621 -37016010.2 0.00026 0.00017 6.8 0.000 0.000 0.000 +2460012.5 -0.42359 3.39829 -37016780.1 0.00026 0.00017 6.6 0.000 0.000 0.000 +2460013.5 -0.41267 3.43005 -37017621.0 0.00027 0.00018 6.4 0.000 0.000 0.000 +2460014.5 -0.40748 3.46447 -37018407.2 0.00025 0.00017 4.6 0.000 0.000 0.000 +2460015.5 -0.40536 3.49510 -37019096.0 0.00025 0.00018 4.4 0.000 0.000 0.000 +2460016.5 -0.40082 3.52548 -37019602.7 0.00025 0.00019 4.5 0.000 0.000 0.000 +2460017.5 -0.39698 3.55970 -37019905.2 0.00010 0.00010 3.3 0.000 0.000 0.000 +2460018.5 -0.39666 3.59420 -37020119.6 0.00010 0.00012 3.4 0.000 0.000 0.000 +2460019.5 -0.39798 3.62272 -37020076.3 0.00010 0.00011 4.8 0.000 0.000 0.000 +2460020.5 -0.39667 3.64605 -37020034.3 0.00010 0.00011 5.3 0.000 0.000 0.000 +2460021.5 -0.39049 3.66835 -37020124.0 0.00020 0.00010 7.5 0.000 0.000 0.000 +2460022.5 -0.38092 3.68973 -37020488.9 0.00017 0.00010 3.9 0.000 0.000 0.000 +2460023.5 -0.36905 3.71253 -37021155.4 0.00017 0.00010 4.2 0.000 0.000 0.000 +2460024.5 -0.35496 3.73893 -37022001.9 0.00017 0.00010 4.1 0.000 0.000 0.000 +2460025.5 -0.33905 3.77083 -37022976.4 0.00025 0.00010 6.1 0.000 0.000 0.000 +2460026.5 -0.32493 3.80196 -37023890.2 0.00024 0.00014 6.2 0.000 0.000 0.000 +2460027.5 -0.31162 3.83326 -37024680.4 0.00024 0.00014 6.5 0.000 0.000 0.000 +2460028.5 -0.29861 3.86372 -37025231.2 0.00018 0.00013 7.9 0.000 0.000 0.000 +2460029.5 -0.28392 3.89487 -37025440.2 0.00026 0.00015 6.5 0.000 0.000 0.000 +2460030.5 -0.26606 3.92587 -37025381.2 0.00026 0.00015 6.9 0.000 0.000 0.000 +2460031.5 -0.24692 3.95475 -37025194.2 0.00020 0.00013 6.5 0.000 0.000 0.000 +2460032.5 -0.23036 3.97843 -37024875.6 0.00029 0.00026 5.4 0.000 0.000 0.000 +2460033.5 -0.21722 3.99991 -37024602.9 0.00030 0.00026 5.0 0.000 0.000 0.000 +2460034.5 -0.20382 4.02301 -37024406.4 0.00031 0.00026 4.9 0.000 0.000 0.000 +2460035.5 -0.18848 4.04529 -37024356.2 0.00024 0.00025 6.0 0.000 0.000 0.000 +2460036.5 -0.17325 4.07389 -37024458.6 0.00029 0.00026 5.2 0.000 0.000 0.000 +2460037.5 -0.15631 4.09965 -37024764.5 0.00029 0.00026 5.4 0.000 0.000 0.000 +2460038.5 -0.13784 4.12645 -37025224.6 0.00042 0.00018 5.3 0.000 0.000 0.000 +2460039.5 -0.12264 4.15415 -37025846.3 0.00041 0.00017 5.3 0.000 0.000 0.000 +2460040.5 -0.10735 4.18381 -37026527.9 0.00041 0.00017 5.2 0.000 0.000 0.000 +2460041.5 -0.09106 4.21128 -37027222.4 0.00041 0.00017 5.2 0.000 0.000 0.000 +2460042.5 -0.07833 4.23805 -37027876.1 0.00037 0.00016 5.4 0.000 0.000 0.000 +2460043.5 -0.06560 4.26282 -37028423.9 0.00037 0.00016 5.5 0.000 0.000 0.000 +2460044.5 -0.05306 4.28793 -37028827.6 0.00029 0.00031 8.0 0.000 0.000 0.000 +2460045.5 -0.04025 4.31383 -37029027.2 0.00029 0.00031 8.9 0.000 0.000 0.000 +2460046.5 -0.02976 4.34126 -37029033.8 0.00030 0.00051 8.0 0.000 0.000 0.000 +2460047.5 -0.02341 4.36682 -37028987.2 0.00030 0.00051 8.0 0.000 0.000 0.000 +2460048.5 -0.01850 4.39397 -37029001.3 0.00030 0.00051 7.9 0.000 0.000 0.000 +2460049.5 -0.01120 4.41598 -37029251.5 0.00030 0.00051 7.6 0.000 0.000 0.000 +2460050.5 0.00181 4.43575 -37029760.8 0.00013 0.00041 7.8 0.000 0.000 0.000 +2460051.5 0.01683 4.45277 -37030627.7 0.00013 0.00041 7.6 0.000 0.000 0.000 +2460052.5 0.02957 4.46935 -37031600.4 0.00010 0.00020 7.3 0.000 0.000 0.000 +2460053.5 0.04303 4.48609 -37032568.2 0.00010 0.00012 6.2 0.000 0.000 0.000 +2460054.5 0.05750 4.50431 -37033356.9 0.00010 0.00012 6.5 0.000 0.000 0.000 +2460055.5 0.07437 4.52638 -37033958.9 0.00010 0.00012 6.6 0.000 0.000 0.000 +2460056.5 0.09113 4.55105 -37034265.4 0.00020 0.00012 5.8 0.000 0.000 0.000 +2460057.5 0.10724 4.57859 -37034379.4 0.00032 0.00023 4.8 0.000 0.000 0.000 +2460058.5 0.12615 4.60577 -37034271.8 0.00032 0.00023 4.8 0.000 0.000 0.000 +2460059.5 0.15005 4.62925 -37034064.5 0.00032 0.00020 5.4 0.000 0.000 0.000 +2460060.5 0.17308 4.65024 -37033827.6 0.00033 0.00033 4.6 0.000 0.000 0.000 +2460061.5 0.19417 4.67068 -37033623.9 0.00033 0.00033 4.7 0.000 0.000 0.000 +2460062.5 0.21468 4.69237 -37033492.6 0.00033 0.00033 4.7 0.000 0.000 0.000 +2460063.5 0.23804 4.70569 -37033547.1 0.00011 0.00027 5.5 0.000 0.000 0.000 +2460064.5 0.26003 4.72112 -37033798.0 0.00011 0.00027 5.4 0.000 0.000 0.000 +2460065.5 0.27600 4.73426 -37034260.7 0.00015 0.00028 4.9 0.000 0.000 0.000 +2460066.5 0.28830 4.74625 -37034852.8 0.00011 0.00010 6.2 0.000 0.000 0.000 +2460067.5 0.30253 4.75663 -37035457.1 0.00031 0.00010 4.2 0.000 0.000 0.000 +2460068.5 0.31938 4.76548 -37036145.8 0.00031 0.00010 4.8 0.000 0.000 0.000 +2460069.5 0.33853 4.77603 -37036813.7 0.00031 0.00010 4.8 0.000 0.000 0.000 +2460070.5 0.35720 4.78663 -37037333.7 0.00031 0.00010 5.3 0.000 0.000 0.000 +2460071.5 0.37837 4.79792 -37037777.2 0.00038 0.00030 6.6 0.000 0.000 0.000 +2460072.5 0.39841 4.81258 -37037947.9 0.00038 0.00030 7.6 0.000 0.000 0.000 +2460073.5 0.41696 4.82621 -37038082.7 0.00025 0.00030 10.1 0.000 0.000 0.000 +2460074.5 0.43560 4.84314 -37038141.7 0.00025 0.00030 8.2 0.000 0.000 0.000 +2460075.5 0.45313 4.85507 -37038365.9 0.00025 0.00030 8.0 0.000 0.000 0.000 +2460076.5 0.47291 4.86616 -37038838.9 0.00025 0.00030 8.2 0.000 0.000 0.000 +2460077.5 0.49459 4.87744 -37039537.0 0.00010 0.00010 8.0 0.000 0.000 0.000 +2460078.5 0.52351 4.89072 -37040522.4 0.00021 0.00012 5.4 0.000 0.000 0.000 +2460079.5 0.55852 4.90657 -37041785.8 0.00021 0.00013 5.4 0.000 0.000 0.000 +2460080.5 0.59212 4.92162 -37043100.8 0.00021 0.00013 5.5 0.000 0.000 0.000 +2460081.5 0.62109 4.93473 -37044312.3 0.00021 0.00024 5.3 0.000 0.000 0.000 +2460082.5 0.64533 4.94606 -37045276.3 0.00021 0.00024 5.0 0.000 0.000 0.000 +2460083.5 0.66929 4.95640 -37045952.7 0.00021 0.00024 4.9 0.000 0.000 0.000 +2460084.5 0.69369 4.96688 -37046278.5 0.00017 0.00015 5.4 0.000 0.000 0.000 +2460085.5 0.71648 4.97518 -37046388.7 0.00020 0.00016 5.9 0.000 0.000 0.000 +2460086.5 0.73700 4.98165 -37046236.2 0.00020 0.00016 6.1 0.000 0.000 0.000 +2460087.5 0.76173 4.98955 -37045975.3 0.00012 0.00010 9.1 0.000 0.000 0.000 +2460088.5 0.79181 4.99968 -37045671.3 0.00015 0.00016 6.7 0.000 0.000 0.000 +2460089.5 0.82219 5.01042 -37045353.6 0.00015 0.00016 6.9 0.000 0.000 0.000 +2460090.5 0.84797 5.02415 -37045086.5 0.00015 0.00016 6.8 0.000 0.000 0.000 +2460091.5 0.86791 5.03657 -37044941.5 0.00011 0.00015 6.3 0.000 0.000 0.000 +2460092.5 0.88634 5.04446 -37044995.1 0.00011 0.00015 6.4 0.000 0.000 0.000 +2460093.5 0.90322 5.05214 -37045173.5 0.00022 0.00025 5.6 0.000 0.000 0.000 +2460094.5 0.91900 5.06039 -37045441.2 0.00023 0.00022 7.1 0.000 0.000 0.000 +2460095.5 0.93761 5.06897 -37045772.5 0.00023 0.00021 7.7 0.000 0.000 0.000 +2460096.5 0.96361 5.07799 -37046021.6 0.00023 0.00021 8.2 0.000 0.000 0.000 +2460097.5 0.99269 5.08638 -37046193.9 0.00023 0.00021 8.0 0.000 0.000 0.000 +2460098.5 1.02229 5.09361 -37046171.2 0.00023 0.00021 8.3 0.000 0.000 0.000 +2460099.5 1.05157 5.09997 -37045931.4 0.00016 0.00021 8.8 0.000 0.000 0.000 +2460100.5 1.08076 5.10396 -37045437.5 0.00010 0.00020 9.5 0.000 0.000 0.000 +2460101.5 1.11210 5.10752 -37044906.8 0.00010 0.00021 9.5 0.000 0.000 0.000 +2460102.5 1.14156 5.11310 -37044428.2 0.00025 0.00030 9.1 0.000 0.000 0.000 +2460103.5 1.16584 5.11532 -37044057.9 0.00025 0.00030 9.1 0.000 0.000 0.000 +2460104.5 1.19113 5.11799 -37043937.7 0.00025 0.00030 9.3 0.000 0.000 0.000 +2460105.5 1.21700 5.12139 -37044015.5 0.00024 0.00023 11.6 0.000 0.000 0.000 +2460106.5 1.23855 5.12542 -37044318.5 0.00026 0.00038 8.1 0.000 0.000 0.000 +2460107.5 1.26130 5.12895 -37044585.8 0.00026 0.00038 7.6 0.000 0.000 0.000 +2460108.5 1.28635 5.12994 -37044786.4 0.00017 0.00041 7.2 0.000 0.000 0.000 +2460109.5 1.31267 5.13172 -37044823.7 0.00017 0.00041 8.2 0.000 0.000 0.000 +2460110.5 1.33751 5.13007 -37044656.8 0.00017 0.00041 7.4 0.000 0.000 0.000 +2460111.5 1.36512 5.12875 -37044255.8 0.00017 0.00041 6.9 0.000 0.000 0.000 +2460112.5 1.39485 5.12876 -37043579.2 0.00013 0.00026 7.6 0.000 0.000 0.000 +2460113.5 1.42517 5.12725 -37042797.3 0.00013 0.00034 6.2 0.000 0.000 0.000 +2460114.5 1.45636 5.12512 -37041976.6 0.00020 0.00023 7.4 0.000 0.000 0.000 +2460115.5 1.48708 5.12239 -37041147.6 0.00020 0.00023 12.2 0.000 0.000 0.000 +2460116.5 1.52069 5.11980 -37040344.2 0.00022 0.00039 11.8 0.000 0.000 0.000 +2460117.5 1.55447 5.11536 -37039596.6 0.00022 0.00039 11.8 0.000 0.000 0.000 +2460118.5 1.58379 5.11139 -37038977.5 0.00022 0.00039 12.3 0.000 0.000 0.000 +2460119.5 1.61371 5.10843 -37038445.4 0.00022 0.00031 16.2 0.000 0.000 0.000 +2460120.5 1.64248 5.10657 -37038084.7 0.00025 0.00035 12.3 0.000 0.000 0.000 +2460121.5 1.67178 5.10327 -37037751.7 0.00025 0.00035 11.4 0.000 0.000 0.000 +2460122.5 1.70459 5.09922 -37037496.2 0.00012 0.00016 11.2 0.000 0.000 0.000 +2460123.5 1.73913 5.09939 -37037266.9 0.00015 0.00027 8.5 0.000 0.000 0.000 +2460124.5 1.77047 5.09653 -37037020.6 0.00015 0.00027 8.4 0.000 0.000 0.000 +2460125.5 1.80251 5.09039 -37036652.0 0.00016 0.00027 7.6 0.000 0.000 0.000 +2460126.5 1.83657 5.08485 -37036141.8 0.00011 0.00023 10.9 0.000 0.000 0.000 +2460127.5 1.87233 5.07851 -37035410.3 0.00016 0.00023 12.8 0.000 0.000 0.000 +2460128.5 1.90483 5.07548 -37034460.6 0.00016 0.00023 15.8 0.000 0.000 0.000 +2460129.5 1.93239 5.07361 -37033489.6 0.00013 0.00020 20.9 0.000 0.000 0.000 +2460130.5 1.95873 5.07031 -37032609.3 0.00017 0.00024 18.4 0.000 0.000 0.000 +2460131.5 1.98454 5.06382 -37031870.6 0.00017 0.00024 18.3 0.000 0.000 0.000 +2460132.5 2.01222 5.05476 -37031418.5 0.00017 0.00025 18.3 0.000 0.000 0.000 +2460133.5 2.04184 5.04511 -37031158.6 0.00012 0.00025 19.2 0.000 0.000 0.000 +2460134.5 2.06986 5.03198 -37030968.2 0.00014 0.00029 14.2 0.000 0.000 0.000 +2460135.5 2.09581 5.01991 -37030679.9 0.00014 0.00030 13.8 0.000 0.000 0.000 +2460136.5 2.12136 5.00877 -37030305.2 0.00010 0.00018 13.4 0.000 0.000 0.000 +2460137.5 2.14606 4.99885 -37029712.2 0.00010 0.00030 11.0 0.000 0.000 0.000 +2460138.5 2.16946 4.98777 -37028941.6 0.00010 0.00029 9.8 0.000 0.000 0.000 +2460139.5 2.19382 4.97511 -37027801.8 0.00010 0.00029 9.6 0.000 0.000 0.000 +2460140.5 2.21886 4.96533 -37026610.9 0.00010 0.00025 10.4 0.000 0.000 0.000 +2460141.5 2.24428 4.95440 -37025346.5 0.00010 0.00028 6.7 0.000 0.000 0.000 +2460142.5 2.26908 4.94550 -37024032.8 0.00010 0.00028 7.2 0.000 0.000 0.000 +2460143.5 2.28995 4.93741 -37022849.9 0.00020 0.00015 7.8 0.000 0.000 0.000 +2460144.5 2.31014 4.93070 -37021804.2 0.00010 0.00031 7.0 0.000 0.000 0.000 +2460145.5 2.33358 4.92230 -37020972.8 0.00010 0.00031 7.1 0.000 0.000 0.000 +2460146.5 2.35878 4.91070 -37020425.8 0.00010 0.00031 7.3 0.000 0.000 0.000 +2460147.5 2.38225 4.89942 -37020028.8 0.00010 0.00027 8.4 0.000 0.000 0.000 +2460148.5 2.40418 4.88606 -37019767.9 0.00018 0.00037 6.5 0.000 0.000 0.000 +2460149.5 2.42686 4.87103 -37019587.4 0.00019 0.00037 6.8 0.000 0.000 0.000 +2460150.5 2.44977 4.85431 -37019367.6 0.00017 0.00026 7.1 0.000 0.000 0.000 +2460151.5 2.47386 4.83970 -37019104.9 0.00018 0.00031 6.1 0.000 0.000 0.000 +2460152.5 2.49860 4.82332 -37018732.1 0.00018 0.00031 6.0 0.000 0.000 0.000 +2460153.5 2.52296 4.80768 -37018145.6 0.00018 0.00031 5.9 0.000 0.000 0.000 +2460154.5 2.54529 4.79119 -37017382.5 0.00010 0.00018 6.9 0.000 0.000 0.000 +2460155.5 2.56291 4.77283 -37016466.6 0.00011 0.00032 5.4 0.000 0.000 0.000 +2460156.5 2.57757 4.75316 -37015567.5 0.00011 0.00032 5.2 0.000 0.000 0.000 +2460157.5 2.59524 4.73246 -37014787.3 0.00010 0.00028 8.1 0.000 0.000 0.000 +2460158.5 2.61532 4.71663 -37014198.8 0.00010 0.00019 7.2 0.000 0.000 0.000 +2460159.5 2.63455 4.70058 -37013893.5 0.00010 0.00019 7.9 0.000 0.000 0.000 +2460160.5 2.65530 4.68227 -37013873.4 0.00010 0.00019 8.4 0.000 0.000 0.000 +2460161.5 2.67941 4.66383 -37014030.6 0.00010 0.00016 10.0 0.000 0.000 0.000 +2460162.5 2.70506 4.64858 -37014214.5 0.00019 0.00019 7.8 0.000 0.000 0.000 +2460163.5 2.72834 4.63548 -37014184.0 0.00019 0.00019 7.8 0.000 0.000 0.000 +2460164.5 2.74723 4.62182 -37013915.6 0.00018 0.00012 8.8 0.000 0.000 0.000 +2460165.5 2.76332 4.60640 -37013447.3 0.00022 0.00014 7.4 0.000 0.000 0.000 +2460166.5 2.77804 4.58711 -37012705.5 0.00021 0.00015 7.0 0.000 0.000 0.000 +2460167.5 2.78998 4.56558 -37011719.5 0.00021 0.00016 7.1 0.000 0.000 0.000 +2460168.5 2.79965 4.54640 -37010555.1 0.00012 0.00013 9.6 0.000 0.000 0.000 +2460169.5 2.80816 4.52616 -37009357.7 0.00018 0.00014 8.9 0.000 0.000 0.000 +2460170.5 2.81799 4.50661 -37008221.9 0.00018 0.00014 9.7 0.000 0.000 0.000 +2460171.5 2.82772 4.48847 -37007151.0 0.00015 0.00012 14.6 0.000 0.000 0.000 +2460172.5 2.83529 4.47039 -37006254.0 0.00020 0.00014 11.0 0.000 0.000 0.000 +2460173.5 2.84165 4.45117 -37005553.0 0.00020 0.00013 11.3 0.000 0.000 0.000 +2460174.5 2.85212 4.42944 -37005001.2 0.00020 0.00013 11.7 0.000 0.000 0.000 +2460175.5 2.86553 4.40615 -37004604.1 0.00016 0.00011 12.0 0.000 0.000 0.000 +2460176.5 2.87722 4.38140 -37004249.6 0.00015 0.00011 11.4 0.000 0.000 0.000 +2460177.5 2.88642 4.35403 -37003834.6 0.00029 0.00016 10.9 0.000 0.000 0.000 +2460178.5 2.89789 4.32404 -37003359.1 0.00026 0.00013 12.6 0.000 0.000 0.000 +2460179.5 2.91303 4.29768 -37002816.6 0.00028 0.00017 11.2 0.000 0.000 0.000 +2460180.5 2.92564 4.27255 -37002133.5 0.00028 0.00017 9.9 0.000 0.000 0.000 +2460181.5 2.94084 4.24782 -37001257.7 0.00028 0.00017 10.6 0.000 0.000 0.000 +2460182.5 2.96070 4.22614 -37000251.5 0.00028 0.00017 10.5 0.000 0.000 0.000 +2460183.5 2.98285 4.20634 -36999226.4 0.00017 0.00013 7.3 0.000 0.000 0.000 +2460184.5 3.00342 4.18934 -36998286.8 0.00017 0.00013 7.1 0.000 0.000 0.000 +2460185.5 3.02086 4.17584 -36997538.5 0.00013 0.00010 7.8 0.000 0.000 0.000 +2460186.5 3.03512 4.16365 -36997145.8 0.00013 0.00019 9.8 0.000 0.000 0.000 +2460187.5 3.04425 4.14940 -36997174.4 0.00013 0.00019 9.9 0.000 0.000 0.000 +2460188.5 3.04737 4.13212 -36997414.3 0.00013 0.00019 10.2 0.000 0.000 0.000 +2460189.5 3.04822 4.11190 -36997825.2 0.00010 0.00018 13.8 0.000 0.000 0.000 +2460190.5 3.04677 4.09240 -36998116.6 0.00010 0.00018 13.7 0.000 0.000 0.000 +2460191.5 3.04314 4.07156 -36998209.7 0.00014 0.00020 11.4 0.000 0.000 0.000 +2460192.5 3.04220 4.04849 -36997954.1 0.00014 0.00010 10.8 0.000 0.000 0.000 +2460193.5 3.04227 4.02341 -36997323.2 0.00016 0.00013 8.8 0.000 0.000 0.000 +2460194.5 3.04278 3.99237 -36996535.1 0.00016 0.00013 8.9 0.000 0.000 0.000 +2460195.5 3.05000 3.95716 -36995617.2 0.00016 0.00013 8.9 0.000 0.000 0.000 +2460196.5 3.06214 3.92442 -36994640.5 0.00015 0.00013 9.0 0.000 0.000 0.000 +2460197.5 3.07416 3.89456 -36993665.0 0.00012 0.00010 8.9 0.000 0.000 0.000 +2460198.5 3.08541 3.86762 -36992755.5 0.00012 0.00010 9.3 0.000 0.000 0.000 +2460199.5 3.09336 3.84452 -36992034.2 0.00010 0.00010 10.6 0.000 0.000 0.000 +2460200.5 3.09630 3.82312 -36991450.1 0.00012 0.00010 8.7 0.000 0.000 0.000 +2460201.5 3.09659 3.80120 -36991118.1 0.00012 0.00010 8.5 0.000 0.000 0.000 +2460202.5 3.09692 3.77593 -36990880.9 0.00012 0.00012 8.0 0.000 0.000 0.000 +2460203.5 3.09782 3.74696 -36990753.1 0.00010 0.00012 8.7 0.000 0.000 0.000 +2460204.5 3.09662 3.71804 -36990682.3 0.00025 0.00013 7.0 0.000 0.000 0.000 +2460205.5 3.08968 3.69028 -36990571.9 0.00025 0.00013 6.6 0.000 0.000 0.000 +2460206.5 3.08221 3.66265 -36990300.8 0.00028 0.00013 6.3 0.000 0.000 0.000 +2460207.5 3.07443 3.63565 -36989919.8 0.00028 0.00013 7.1 0.000 0.000 0.000 +2460208.5 3.06786 3.60628 -36989456.9 0.00028 0.00012 7.1 0.000 0.000 0.000 +2460209.5 3.06357 3.57808 -36988809.3 0.00028 0.00011 6.8 0.000 0.000 0.000 +2460210.5 3.05730 3.54953 -36988061.7 0.00016 0.00010 7.2 0.000 0.000 0.000 +2460211.5 3.05039 3.51921 -36987273.2 0.00016 0.00010 8.6 0.000 0.000 0.000 +2460212.5 3.04197 3.48964 -36986625.4 0.00010 0.00014 10.8 0.000 0.000 0.000 +2460213.5 3.03372 3.46168 -36986208.3 0.00010 0.00014 10.7 0.000 0.000 0.000 +2460214.5 3.02846 3.43481 -36986099.0 0.00012 0.00014 11.0 0.000 0.000 0.000 +2460215.5 3.02611 3.40939 -36986396.3 0.00012 0.00014 11.1 0.000 0.000 0.000 +2460216.5 3.02177 3.38705 -36986965.8 0.00012 0.00014 10.6 0.000 0.000 0.000 +2460217.5 3.01754 3.36459 -36987686.2 0.00012 0.00014 9.9 0.000 0.000 0.000 +2460218.5 3.01359 3.34272 -36988289.2 0.00012 0.00014 8.8 0.000 0.000 0.000 +2460219.5 3.00724 3.32004 -36988649.8 0.00012 0.00013 8.0 0.000 0.000 0.000 +2460220.5 2.99823 3.29496 -36988692.8 0.00010 0.00013 6.9 0.000 0.000 0.000 +2460221.5 2.98799 3.26801 -36988405.6 0.00010 0.00015 5.6 0.000 0.000 0.000 +2460222.5 2.98189 3.24027 -36987910.7 0.00011 0.00015 5.8 0.000 0.000 0.000 +2460223.5 2.97914 3.21478 -36987281.9 0.00011 0.00015 6.3 0.000 0.000 0.000 +2460224.5 2.97529 3.19095 -36986607.2 0.00010 0.00010 8.4 0.000 0.000 0.000 +2460225.5 2.96859 3.16809 -36986052.2 0.00012 0.00013 8.0 0.000 0.000 0.000 +2460226.5 2.95927 3.14604 -36985630.4 0.00012 0.00013 7.9 0.000 0.000 0.000 +2460227.5 2.94940 3.12276 -36985367.9 0.00010 0.00012 9.2 0.000 0.000 0.000 +2460228.5 2.93751 3.09891 -36985312.1 0.00010 0.00012 7.3 0.000 0.000 0.000 +2460229.5 2.92363 3.07296 -36985474.0 0.00010 0.00012 7.3 0.000 0.000 0.000 +2460230.5 2.91449 3.04785 -36985718.2 0.00010 0.00011 6.4 0.000 0.000 0.000 +2460231.5 2.90931 3.02890 -36986046.0 0.00010 0.00010 5.2 0.000 0.000 0.000 +2460232.5 2.90250 3.01031 -36986368.8 0.00010 0.00010 4.6 0.000 0.000 0.000 +2460233.5 2.89564 2.98932 -36986598.5 0.00026 0.00010 3.5 0.000 0.000 0.000 +2460234.5 2.88895 2.96732 -36986706.9 0.00026 0.00010 3.9 0.000 0.000 0.000 +2460235.5 2.88102 2.94650 -36986642.8 0.00027 0.00048 5.6 0.000 0.000 0.000 +2460236.5 2.86777 2.92859 -36986390.6 0.00027 0.00048 6.0 0.000 0.000 0.000 +2460237.5 2.85233 2.91184 -36986079.7 0.00027 0.00048 6.2 0.000 0.000 0.000 +2460238.5 2.83859 2.89315 -36985772.8 0.00027 0.00048 6.5 0.000 0.000 0.000 +2460239.5 2.82750 2.87378 -36985548.0 0.00016 0.00048 9.3 0.000 0.000 0.000 +2460240.5 2.81943 2.84978 -36985499.6 0.00017 0.00048 9.1 0.000 0.000 0.000 +2460241.5 2.81298 2.82362 -36985734.4 0.00015 0.00010 8.8 0.000 0.000 0.000 +2460242.5 2.80647 2.79908 -36986262.1 0.00021 0.00010 7.1 0.000 0.000 0.000 +2460243.5 2.80189 2.77732 -36986966.4 0.00021 0.00010 7.0 0.000 0.000 0.000 +2460244.5 2.80020 2.75698 -36987797.8 0.00021 0.00010 6.9 0.000 0.000 0.000 +2460245.5 2.80044 2.74097 -36988539.2 0.00016 0.00010 5.7 0.000 0.000 0.000 +2460246.5 2.79554 2.72837 -36988989.0 0.00022 0.00010 4.9 0.000 0.000 0.000 +2460247.5 2.78172 2.71666 -36989114.1 0.00022 0.00010 4.4 0.000 0.000 0.000 +2460248.5 2.76376 2.70277 -36988988.1 0.00016 0.00010 5.2 0.000 0.000 0.000 +2460249.5 2.74613 2.68291 -36988676.3 0.00024 0.00021 4.7 0.000 0.000 0.000 +2460250.5 2.73179 2.66195 -36988251.0 0.00024 0.00021 5.5 0.000 0.000 0.000 +2460251.5 2.71862 2.64323 -36987743.8 0.00024 0.00022 6.6 0.000 0.000 0.000 +2460252.5 2.70966 2.62656 -36987290.1 0.00018 0.00021 9.1 0.000 0.000 0.000 +2460253.5 2.70121 2.61230 -36986976.8 0.00019 0.00022 8.9 0.000 0.000 0.000 +2460254.5 2.69206 2.59833 -36986868.0 0.00020 0.00022 9.0 0.000 0.000 0.000 +2460255.5 2.68238 2.58511 -36986955.9 0.00010 0.00011 11.5 0.000 0.000 0.000 +2460256.5 2.66810 2.57163 -36987228.8 0.00011 0.00011 10.4 0.000 0.000 0.000 +2460257.5 2.65201 2.55661 -36987573.7 0.00011 0.00010 10.1 0.000 0.000 0.000 +2460258.5 2.63470 2.54362 -36988047.4 0.00011 0.00010 9.8 0.000 0.000 0.000 +2460259.5 2.61654 2.52862 -36988598.6 0.00010 0.00010 11.1 0.000 0.000 0.000 +2460260.5 2.59929 2.51259 -36989075.1 0.00018 0.00012 10.6 0.000 0.000 0.000 +2460261.5 2.58266 2.49708 -36989397.6 0.00017 0.00012 10.8 0.000 0.000 0.000 +2460262.5 2.56549 2.48131 -36989601.3 0.00016 0.00011 12.7 0.000 0.000 0.000 +2460263.5 2.54560 2.46730 -36989580.5 0.00017 0.00012 9.9 0.000 0.000 0.000 +2460264.5 2.52448 2.45075 -36989405.3 0.00017 0.00012 9.6 0.000 0.000 0.000 +2460265.5 2.50364 2.42927 -36989144.2 0.00016 0.00013 9.2 0.000 0.000 0.000 +2460266.5 2.48430 2.40397 -36988890.1 0.00010 0.00010 8.6 0.000 0.000 0.000 +2460267.5 2.46658 2.38104 -36988700.4 0.00010 0.00010 7.5 0.000 0.000 0.000 +2460268.5 2.45304 2.36089 -36988710.8 0.00010 0.00010 7.2 0.000 0.000 0.000 +2460269.5 2.44555 2.34501 -36988903.2 0.00010 0.00010 7.4 0.000 0.000 0.000 +2460270.5 2.43513 2.33438 -36989260.2 0.00010 0.00013 7.5 0.000 0.000 0.000 +2460271.5 2.42036 2.32224 -36989679.2 0.00010 0.00013 8.6 0.000 0.000 0.000 +2460272.5 2.40940 2.31292 -36990093.9 0.00010 0.00013 8.3 0.000 0.000 0.000 +2460273.5 2.39747 2.30767 -36990470.9 0.00010 0.00013 12.0 0.000 0.000 0.000 +2460274.5 2.38316 2.30132 -36990627.5 0.00010 0.00017 10.6 0.000 0.000 0.000 +2460275.5 2.36336 2.29439 -36990509.2 0.00010 0.00017 10.4 0.000 0.000 0.000 +2460276.5 2.33893 2.28490 -36990179.5 0.00010 0.00013 11.6 0.000 0.000 0.000 +2460277.5 2.31440 2.27259 -36989634.7 0.00010 0.00014 9.1 0.000 0.000 0.000 +2460278.5 2.29068 2.25876 -36989005.1 0.00010 0.00013 10.1 0.000 0.000 0.000 +2460279.5 2.26752 2.24788 -36988431.5 0.00010 0.00013 9.8 0.000 0.000 0.000 +2460280.5 2.24387 2.23869 -36987987.7 0.00010 0.00010 11.2 0.000 0.000 0.000 +2460281.5 2.22055 2.22484 -36987690.9 0.00015 0.00014 9.2 0.000 0.000 0.000 +2460282.5 2.19844 2.20818 -36987564.8 0.00015 0.00014 9.2 0.000 0.000 0.000 +2460283.5 2.17362 2.19171 -36987559.7 0.00013 0.00012 9.6 0.000 0.000 0.000 +2460284.5 2.14681 2.17476 -36987720.9 0.00015 0.00014 7.8 0.000 0.000 0.000 +2460285.5 2.11884 2.15803 -36988016.9 0.00015 0.00013 7.3 0.000 0.000 0.000 +2460286.5 2.08819 2.14041 -36988339.1 0.00015 0.00013 7.1 0.000 0.000 0.000 +2460287.5 2.05717 2.12086 -36988612.2 0.00010 0.00010 7.7 0.000 0.000 0.000 +2460288.5 2.02970 2.10498 -36988748.8 0.00024 0.00019 8.4 0.000 0.000 0.000 +2460289.5 2.00038 2.09342 -36988756.6 0.00024 0.00019 8.5 0.000 0.000 0.000 +2460290.5 1.96832 2.08357 -36988608.6 0.00023 0.00018 10.8 0.000 0.000 0.000 +2460291.5 1.93400 2.07659 -36988334.6 0.00024 0.00020 8.7 0.000 0.000 0.000 +2460292.5 1.89614 2.06797 -36987953.9 0.00024 0.00020 8.6 0.000 0.000 0.000 +2460293.5 1.85881 2.05774 -36987542.7 0.00024 0.00021 8.3 0.000 0.000 0.000 +2460294.5 1.81992 2.04677 -36987301.9 0.00010 0.00010 6.8 0.000 0.000 0.000 +2460295.5 1.78176 2.03445 -36987353.3 0.00011 0.00011 6.4 0.000 0.000 0.000 +2460296.5 1.74415 2.02292 -36987689.1 0.00011 0.00011 6.6 0.000 0.000 0.000 +2460297.5 1.70686 2.01226 -36988255.3 0.00013 0.00010 6.5 0.000 0.000 0.000 +2460298.5 1.67480 2.00628 -36989029.0 0.00012 0.00010 7.0 0.000 0.000 0.000 +2460299.5 1.64921 2.00409 -36989857.2 0.00012 0.00010 7.8 0.000 0.000 0.000 +2460300.5 1.62554 2.00452 -36990642.0 0.00013 0.00010 8.0 0.000 0.000 0.000 +2460301.5 1.60086 2.00806 -36991246.5 0.00012 0.00010 10.2 0.000 0.000 0.000 +2460302.5 1.57629 2.01249 -36991621.7 0.00012 0.00010 10.4 0.000 0.000 0.000 +2460303.5 1.55026 2.01550 -36991733.7 0.00020 0.00020 17.8 0.000 0.000 0.000 +2460304.5 1.51987 2.01768 -36991640.5 0.00018 0.00014 14.5 0.000 0.000 0.000 +2460305.5 1.48883 2.01584 -36991511.4 0.00020 0.00017 12.2 0.000 0.000 0.000 +2460306.5 1.46108 2.01396 -36991351.4 0.00020 0.00017 12.6 0.000 0.000 0.000 +2460307.5 1.43419 2.01327 -36991145.4 0.00020 0.00017 12.3 0.000 0.000 0.000 +2460308.5 1.41090 2.01546 -36991013.0 0.00019 0.00017 12.2 0.000 0.000 0.000 +2460309.5 1.38971 2.01880 -36991039.6 0.00019 0.00017 11.5 0.000 0.000 0.000 +2460310.5 1.36912 2.02190 -36991216.3 0.00012 0.00019 8.4 0.000 0.000 0.000 +2460311.5 1.34902 2.02519 -36991504.4 0.00010 0.00017 8.5 0.000 0.000 0.000 +2460312.5 1.33135 2.03129 -36991878.1 0.00012 0.00024 7.4 0.000 0.000 0.000 +2460313.5 1.31592 2.03991 -36992299.0 0.00012 0.00024 7.5 0.000 0.000 0.000 +2460314.5 1.30023 2.05121 -36992731.9 0.00012 0.00024 7.5 0.000 0.000 0.000 +2460315.5 1.27952 2.06082 -36993052.7 0.00012 0.00024 8.0 0.000 0.000 0.000 +2460316.5 1.25597 2.06384 -36993234.9 0.00016 0.00018 8.5 0.000 0.000 0.000 +2460317.5 1.23321 2.06620 -36993209.9 0.00016 0.00018 8.1 0.000 0.000 0.000 +2460318.5 1.21170 2.06561 -36992950.9 0.00013 0.00010 9.3 0.000 0.000 0.000 +2460319.5 1.19323 2.06293 -36992564.0 0.00019 0.00014 8.1 0.000 0.000 0.000 +2460320.5 1.17577 2.06409 -36992158.2 0.00018 0.00014 7.3 0.000 0.000 0.000 +2460321.5 1.15883 2.06708 -36991821.8 0.00018 0.00014 7.3 0.000 0.000 0.000 +2460322.5 1.14322 2.06997 -36991701.7 0.00014 0.00012 7.0 0.000 0.000 0.000 +2460323.5 1.13343 2.07818 -36991842.5 0.00027 0.00017 5.0 0.000 0.000 0.000 +2460324.5 1.12248 2.08937 -36992224.1 0.00027 0.00017 5.6 0.000 0.000 0.000 +2460325.5 1.10991 2.09748 -36992790.7 0.00024 0.00013 7.9 0.000 0.000 0.000 +2460326.5 1.09673 2.10746 -36993430.3 0.00025 0.00016 6.0 0.000 0.000 0.000 +2460327.5 1.07709 2.11829 -36993980.4 0.00025 0.00017 5.9 0.000 0.000 0.000 +2460328.5 1.05437 2.12881 -36994335.3 0.00025 0.00018 6.9 0.000 0.000 0.000 +2460329.5 1.02671 2.13901 -36994439.9 0.00010 0.00015 8.1 0.000 0.000 0.000 +2460330.5 0.99221 2.14527 -36994354.6 0.00012 0.00017 7.8 0.000 0.000 0.000 +2460331.5 0.95653 2.14895 -36994102.2 0.00013 0.00017 7.8 0.000 0.000 0.000 +2460332.5 0.92138 2.15210 -36993762.3 0.00010 0.00015 11.3 0.000 0.000 0.000 +2460333.5 0.88480 2.15330 -36993446.2 0.00014 0.00017 10.7 0.000 0.000 0.000 +2460334.5 0.85037 2.15399 -36993248.9 0.00014 0.00017 8.6 0.000 0.000 0.000 +2460335.5 0.82037 2.15780 -36993144.3 0.00014 0.00015 8.2 0.000 0.000 0.000 +2460336.5 0.79104 2.16500 -36993218.3 0.00012 0.00011 9.4 0.000 0.000 0.000 +2460337.5 0.76251 2.17099 -36993460.7 0.00017 0.00012 9.3 0.000 0.000 0.000 +2460338.5 0.73647 2.17517 -36993949.7 0.00016 0.00011 9.5 0.000 0.000 0.000 +2460339.5 0.70961 2.17915 -36994488.6 0.00013 0.00010 14.4 0.000 0.000 0.000 +2460340.5 0.68316 2.18406 -36995127.7 0.00015 0.00015 11.3 0.000 0.000 0.000 +2460341.5 0.65625 2.19271 -36995733.3 0.00015 0.00015 11.1 0.000 0.000 0.000 +2460342.5 0.62875 2.20836 -36996261.3 0.00015 0.00015 8.8 0.000 0.000 0.000 +2460343.5 0.60184 2.22594 -36996641.3 0.00010 0.00014 8.0 0.000 0.000 0.000 +2460344.5 0.57721 2.24299 -36996819.3 0.00015 0.00022 7.9 0.000 0.000 0.000 +2460345.5 0.55774 2.26025 -36996797.9 0.00015 0.00022 8.1 0.000 0.000 0.000 +2460346.5 0.53774 2.27839 -36996671.9 0.00012 0.00017 10.1 0.000 0.000 0.000 +2460347.5 0.52405 2.29306 -36996499.4 0.00015 0.00021 7.6 0.000 0.000 0.000 +2460348.5 0.51233 2.31114 -36996410.8 0.00015 0.00022 8.2 0.000 0.000 0.000 +2460349.5 0.49746 2.33104 -36996472.7 0.00015 0.00022 8.4 0.000 0.000 0.000 +2460350.5 0.48224 2.35237 -36996839.8 0.00010 0.00015 8.1 0.000 0.000 0.000 +2460351.5 0.47101 2.37163 -36997583.8 0.00011 0.00018 7.1 0.000 0.000 0.000 +2460352.5 0.46125 2.38847 -36998617.3 0.00011 0.00018 6.8 0.000 0.000 0.000 +2460353.5 0.44574 2.40601 -36999747.8 0.00010 0.00012 8.8 0.000 0.000 0.000 +2460354.5 0.42516 2.42107 -37000822.8 0.00010 0.00019 7.9 0.000 0.000 0.000 +2460355.5 0.40477 2.43107 -37001741.2 0.00010 0.00018 7.5 0.000 0.000 0.000 +2460356.5 0.38722 2.43998 -37002409.3 0.00010 0.00018 7.5 0.000 0.000 0.000 +2460357.5 0.36979 2.45174 -37002806.1 0.00010 0.00016 9.9 0.000 0.000 0.000 +2460358.5 0.34982 2.46704 -37002900.8 0.00017 0.00031 8.0 0.000 0.000 0.000 +2460359.5 0.32897 2.48183 -37002773.3 0.00017 0.00031 7.8 0.000 0.000 0.000 +2460360.5 0.30858 2.49882 -37002512.1 0.00016 0.00028 6.6 0.000 0.000 0.000 +2460361.5 0.28788 2.51454 -37002229.7 0.00021 0.00029 7.0 0.000 0.000 0.000 +2460362.5 0.26429 2.53248 -37001960.7 0.00021 0.00029 7.4 0.000 0.000 0.000 +2460363.5 0.24068 2.55348 -37001769.5 0.00021 0.00029 8.5 0.000 0.000 0.000 +2460364.5 0.21498 2.57650 -37001726.7 0.00014 0.00011 11.0 0.000 0.000 0.000 +2460365.5 0.18838 2.59565 -37001843.2 0.00018 0.00024 9.2 0.000 0.000 0.000 +2460366.5 0.16283 2.61555 -37002115.9 0.00018 0.00024 9.3 0.000 0.000 0.000 +2460367.5 0.13561 2.63663 -37002460.1 0.00012 0.00021 9.4 0.000 0.000 0.000 +2460368.5 0.10695 2.65675 -37002831.0 0.00018 0.00022 8.8 0.000 0.000 0.000 +2460369.5 0.07880 2.67803 -37003149.4 0.00018 0.00022 9.0 0.000 0.000 0.000 +2460370.5 0.05603 2.69872 -37003356.0 0.00018 0.00022 8.9 0.000 0.000 0.000 +2460371.5 0.04437 2.72353 -37003480.5 0.00013 0.00010 10.2 0.000 0.000 0.000 +2460372.5 0.03472 2.75400 -37003496.7 0.00017 0.00010 10.2 0.000 0.000 0.000 +2460373.5 0.02175 2.78170 -37003327.7 0.00017 0.00010 10.2 0.000 0.000 0.000 +2460374.5 0.00707 2.80475 -37002970.7 0.00010 0.00010 11.6 0.000 0.000 0.000 +2460375.5 -0.00734 2.82420 -37002644.7 0.00016 0.00014 9.1 0.000 0.000 0.000 +2460376.5 -0.01818 2.84161 -37002515.4 0.00016 0.00014 9.6 0.000 0.000 0.000 +2460377.5 -0.02724 2.86064 -37002669.2 0.00016 0.00014 9.3 0.000 0.000 0.000 +2460378.5 -0.03625 2.88380 -37003229.2 0.00013 0.00013 9.0 0.000 0.000 0.000 +2460379.5 -0.04665 2.90840 -37004158.2 0.00016 0.00021 8.9 0.000 0.000 0.000 +2460380.5 -0.06013 2.93356 -37005365.2 0.00016 0.00021 9.0 0.000 0.000 0.000 +2460381.5 -0.07141 2.95639 -37006632.8 0.00010 0.00017 10.5 0.000 0.000 0.000 +2460382.5 -0.07986 2.97856 -37007752.3 0.00014 0.00036 10.0 0.000 0.000 0.000 +2460383.5 -0.08495 2.99970 -37008577.1 0.00015 0.00036 9.9 0.000 0.000 0.000 +2460384.5 -0.09119 3.02157 -37009059.0 0.00016 0.00036 10.2 0.000 0.000 0.000 +2460385.5 -0.10168 3.04783 -37009253.0 0.00013 0.00032 11.0 0.000 0.000 0.000 +2460386.5 -0.11358 3.07102 -37009236.5 0.00015 0.00033 9.4 0.000 0.000 0.000 +2460387.5 -0.12348 3.09214 -37009135.3 0.00015 0.00033 9.9 0.000 0.000 0.000 +2460388.5 -0.13121 3.11308 -37009074.3 0.00010 0.00010 10.8 0.000 0.000 0.000 +2460389.5 -0.13366 3.13043 -37009165.7 0.00016 0.00041 9.6 0.000 0.000 0.000 +2460390.5 -0.12869 3.14716 -37009399.0 0.00016 0.00040 8.9 0.000 0.000 0.000 +2460391.5 -0.12029 3.16364 -37009754.0 0.00016 0.00040 8.8 0.000 0.000 0.000 +2460392.5 -0.11319 3.18718 -37010265.3 0.00014 0.00039 9.9 0.000 0.000 0.000 +2460393.5 -0.10816 3.21708 -37010899.5 0.00022 0.00043 9.1 0.000 0.000 0.000 +2460394.5 -0.10711 3.24702 -37011658.4 0.00022 0.00043 8.8 0.000 0.000 0.000 +2460395.5 -0.11016 3.27493 -37012441.0 0.00019 0.00019 6.8 0.000 0.000 0.000 +2460396.5 -0.11509 3.30086 -37013182.3 0.00019 0.00019 6.3 0.000 0.000 0.000 +2460397.5 -0.12200 3.32845 -37013779.7 0.00019 0.00019 6.1 0.000 0.000 0.000 +2460398.5 -0.12638 3.35097 -37014195.0 0.00019 0.00019 5.9 0.000 0.000 0.000 +2460399.5 -0.12685 3.36982 -37014434.1 0.00010 0.00010 4.8 0.000 0.000 0.000 +2460400.5 -0.12881 3.38917 -37014450.6 0.00010 0.00010 5.1 0.000 0.000 0.000 +2460401.5 -0.13285 3.40759 -37014280.6 0.00010 0.00010 8.0 0.000 0.000 0.000 +2460402.5 -0.13339 3.42429 -37013990.4 0.00010 0.00010 8.1 0.000 0.000 0.000 +2460403.5 -0.12583 3.44285 -37013703.2 0.00011 0.00017 6.9 0.000 0.000 0.000 +2460404.5 -0.11554 3.46442 -37013537.3 0.00011 0.00017 7.6 0.000 0.000 0.000 +2460405.5 -0.10446 3.48814 -37013670.0 0.00010 0.00017 7.9 0.000 0.000 0.000 +2460406.5 -0.09648 3.51266 -37014153.4 0.00010 0.00016 8.0 0.000 0.000 0.000 +2460407.5 -0.09215 3.53790 -37014932.6 0.00010 0.00027 8.2 0.000 0.000 0.000 +2460408.5 -0.09114 3.56398 -37015872.4 0.00010 0.00027 8.1 0.000 0.000 0.000 +2460409.5 -0.09186 3.58715 -37016788.0 0.00010 0.00023 13.2 0.000 0.000 0.000 +2460410.5 -0.08732 3.60725 -37017483.2 0.00010 0.00024 7.6 0.000 0.000 0.000 +2460411.5 -0.07986 3.62553 -37017885.6 0.00010 0.00024 8.2 0.000 0.000 0.000 +2460412.5 -0.07427 3.64398 -37017959.4 0.00010 0.00024 10.4 0.000 0.000 0.000 +2460413.5 -0.06915 3.65990 -37017840.9 0.00010 0.00010 10.7 0.000 0.000 0.000 +2460414.5 -0.06496 3.67583 -37017551.6 0.00025 0.00018 9.5 0.000 0.000 0.000 +2460415.5 -0.06006 3.69253 -37017220.7 0.00025 0.00018 9.6 0.000 0.000 0.000 +2460416.5 -0.04888 3.71392 -37016936.2 0.00024 0.00017 12.5 0.000 0.000 0.000 +2460417.5 -0.03784 3.73885 -37016684.0 0.00032 0.00022 8.9 0.000 0.000 0.000 +2460418.5 -0.02971 3.76578 -37016651.7 0.00032 0.00022 7.9 0.000 0.000 0.000 +2460419.5 -0.02402 3.79023 -37016778.4 0.00032 0.00022 8.3 0.000 0.000 0.000 +2460420.5 -0.02122 3.81516 -37017092.9 0.00022 0.00015 8.7 0.000 0.000 0.000 +2460421.5 -0.02213 3.84091 -37017528.3 0.00023 0.00025 7.4 0.000 0.000 0.000 +2460422.5 -0.02270 3.86312 -37018022.6 0.00023 0.00025 6.7 0.000 0.000 0.000 +2460423.5 -0.01784 3.88532 -37018510.6 0.00010 0.00021 7.4 0.000 0.000 0.000 +2460424.5 -0.00860 3.90632 -37018907.5 0.00013 0.00023 6.9 0.000 0.000 0.000 +2460425.5 0.00395 3.93143 -37019155.8 0.00013 0.00023 6.9 0.000 0.000 0.000 +2460426.5 0.01252 3.95786 -37019249.8 0.00013 0.00023 7.7 0.000 0.000 0.000 +2460427.5 0.01552 3.98140 -37019105.8 0.00012 0.00011 9.6 0.000 0.000 0.000 +2460428.5 0.01691 4.00303 -37018792.1 0.00015 0.00013 7.2 0.000 0.000 0.000 +2460429.5 0.02210 4.01992 -37018371.8 0.00015 0.00013 7.2 0.000 0.000 0.000 +2460430.5 0.03020 4.03391 -37018030.2 0.00010 0.00010 7.1 0.000 0.000 0.000 +2460431.5 0.04080 4.04770 -37017821.2 0.00033 0.00023 6.2 0.000 0.000 0.000 +2460432.5 0.05595 4.06377 -37017783.4 0.00033 0.00023 6.2 0.000 0.000 0.000 +2460433.5 0.07184 4.08162 -37018058.4 0.00033 0.00023 6.6 0.000 0.000 0.000 +2460434.5 0.09214 4.10151 -37018653.9 0.00032 0.00022 9.4 0.000 0.000 0.000 +2460435.5 0.10793 4.12127 -37019489.5 0.00037 0.00023 9.4 0.000 0.000 0.000 +2460436.5 0.11688 4.13854 -37020373.2 0.00037 0.00023 9.5 0.000 0.000 0.000 +2460437.5 0.12187 4.15271 -37021102.9 0.00019 0.00010 10.7 0.000 0.000 0.000 +2460438.5 0.12286 4.16346 -37021524.2 0.00019 0.00025 9.1 0.000 0.000 0.000 +2460439.5 0.12613 4.17407 -37021617.5 0.00019 0.00025 9.3 0.000 0.000 0.000 +2460440.5 0.13023 4.18688 -37021394.3 0.00020 0.00025 10.3 0.000 0.000 0.000 +2460441.5 0.13599 4.20283 -37020997.2 0.00010 0.00024 10.8 0.000 0.000 0.000 +2460442.5 0.14155 4.21855 -37020592.1 0.00010 0.00026 8.7 0.000 0.000 0.000 +2460443.5 0.14633 4.23318 -37020238.5 0.00010 0.00026 8.8 0.000 0.000 0.000 +2460444.5 0.15235 4.24732 -37019995.4 0.00010 0.00010 9.5 0.000 0.000 0.000 +2460445.5 0.15836 4.25863 -37019922.1 0.00014 0.00013 7.6 0.000 0.000 0.000 +2460446.5 0.16647 4.26667 -37019983.2 0.00014 0.00013 7.2 0.000 0.000 0.000 +2460447.5 0.17667 4.27806 -37020115.3 0.00014 0.00013 7.9 0.000 0.000 0.000 +2460448.5 0.18717 4.29069 -37020353.4 0.00011 0.00010 8.5 0.000 0.000 0.000 +2460449.5 0.20101 4.30115 -37020633.6 0.00015 0.00036 9.7 0.000 0.000 0.000 +2460450.5 0.21796 4.31235 -37020920.6 0.00015 0.00036 9.7 0.000 0.000 0.000 +2460451.5 0.23327 4.32563 -37021176.8 0.00010 0.00035 13.6 0.000 0.000 0.000 +2460452.5 0.24770 4.34034 -37021335.3 0.00022 0.00046 11.1 0.000 0.000 0.000 +2460453.5 0.26104 4.35695 -37021318.3 0.00022 0.00046 10.6 0.000 0.000 0.000 +2460454.5 0.26822 4.37506 -37021105.2 0.00022 0.00046 10.8 0.000 0.000 0.000 +2460455.5 0.26850 4.39003 -37020702.3 0.00020 0.00030 10.2 0.000 0.000 0.000 +2460456.5 0.27248 4.40358 -37020233.4 0.00023 0.00030 10.2 0.000 0.000 0.000 +2460457.5 0.28218 4.41871 -37019775.6 0.00023 0.00030 9.8 0.000 0.000 0.000 +2460458.5 0.29510 4.43794 -37019426.0 0.00011 0.00020 12.1 0.000 0.000 0.000 +2460459.5 0.30829 4.45740 -37019325.0 0.00017 0.00018 10.9 0.000 0.000 0.000 +2460460.5 0.32058 4.47620 -37019477.5 0.00018 0.00018 11.1 0.000 0.000 0.000 +2460461.5 0.33095 4.49197 -37019865.0 0.00018 0.00018 11.1 0.000 0.000 0.000 +2460462.5 0.33907 4.50730 -37020440.4 0.00014 0.00018 10.8 0.000 0.000 0.000 +2460463.5 0.34801 4.52416 -37021063.2 0.00018 0.00025 9.7 0.000 0.000 0.000 +2460464.5 0.35418 4.54383 -37021559.2 0.00018 0.00025 9.8 0.000 0.000 0.000 +2460465.5 0.35971 4.56245 -37021884.8 0.00013 0.00019 10.4 0.000 0.000 0.000 +2460466.5 0.36698 4.57729 -37021939.4 0.00020 0.00024 7.5 0.000 0.000 0.000 +2460467.5 0.37544 4.59067 -37021644.0 0.00020 0.00024 8.0 0.000 0.000 0.000 +2460468.5 0.38640 4.60385 -37021051.7 0.00020 0.00024 8.4 0.000 0.000 0.000 +2460469.5 0.40051 4.61625 -37020342.4 0.00016 0.00016 9.7 0.000 0.000 0.000 +2460470.5 0.41972 4.63023 -37019590.6 0.00018 0.00019 8.4 0.000 0.000 0.000 +2460471.5 0.43886 4.64339 -37018863.4 0.00018 0.00019 8.2 0.000 0.000 0.000 +2460472.5 0.45772 4.65243 -37018255.7 0.00010 0.00012 9.7 0.000 0.000 0.000 +2460473.5 0.47800 4.65952 -37017827.2 0.00011 0.00013 7.8 0.000 0.000 0.000 +2460474.5 0.49922 4.66694 -37017471.4 0.00011 0.00013 7.4 0.000 0.000 0.000 +2460475.5 0.51868 4.67732 -37017027.2 0.00011 0.00013 7.4 0.000 0.000 0.000 +2460476.5 0.53587 4.68945 -37016583.2 0.00010 0.00010 7.6 0.000 0.000 0.000 +2460477.5 0.55373 4.70068 -37016168.0 0.00028 0.00011 6.9 0.000 0.000 0.000 +2460478.5 0.57192 4.71043 -37015665.4 0.00028 0.00011 6.1 0.000 0.000 0.000 +2460479.5 0.58762 4.71961 -37014977.9 0.00027 0.00010 7.0 0.000 0.000 0.000 +2460480.5 0.60745 4.72631 -37014042.2 0.00028 0.00024 5.8 0.000 0.000 0.000 +2460481.5 0.62941 4.73193 -37012930.7 0.00028 0.00024 7.6 0.000 0.000 0.000 +2460482.5 0.65585 4.73719 -37011654.7 0.00028 0.00024 8.7 0.000 0.000 0.000 +2460483.5 0.68491 4.74256 -37010323.5 0.00010 0.00022 10.4 0.000 0.000 0.000 +2460484.5 0.71112 4.74925 -37008981.5 0.00013 0.00026 9.7 0.000 0.000 0.000 +2460485.5 0.73395 4.75567 -37007686.1 0.00013 0.00026 9.7 0.000 0.000 0.000 +2460486.5 0.75311 4.76265 -37006601.7 0.00010 0.00015 12.0 0.000 0.000 0.000 +2460487.5 0.77469 4.76783 -37005817.6 0.00010 0.00028 8.6 0.000 0.000 0.000 +2460488.5 0.80024 4.77296 -37005284.3 0.00010 0.00028 8.8 0.000 0.000 0.000 +2460489.5 0.82553 4.77850 -37004939.2 0.00010 0.00028 9.6 0.000 0.000 0.000 +2460490.5 0.85108 4.78228 -37004739.8 0.00010 0.00024 10.6 0.000 0.000 0.000 +2460491.5 0.87997 4.78728 -37004445.7 0.00010 0.00026 10.5 0.000 0.000 0.000 +2460492.5 0.90802 4.78963 -37003885.1 0.00010 0.00026 11.1 0.000 0.000 0.000 +2460493.5 0.93607 4.78897 -37003026.3 0.00010 0.00011 15.1 0.000 0.000 0.000 +2460494.5 0.96549 4.78824 -37001915.4 0.00022 0.00015 14.2 0.000 0.000 0.000 +2460495.5 0.99389 4.78430 -37000508.2 0.00022 0.00014 15.2 0.000 0.000 0.000 +2460496.5 1.02112 4.78115 -36998928.1 0.00022 0.00014 15.2 0.000 0.000 0.000 +2460497.5 1.04422 4.78133 -36997261.5 0.00021 0.00010 18.8 0.000 0.000 0.000 +2460498.5 1.06594 4.78200 -36995743.8 0.00022 0.00025 14.9 0.000 0.000 0.000 +2460499.5 1.08267 4.78054 -36994289.2 0.00022 0.00025 13.8 0.000 0.000 0.000 +2460500.5 1.09825 4.77695 -36993022.4 0.00010 0.00023 14.0 0.000 0.000 0.000 +2460501.5 1.11668 4.77206 -36991936.7 0.00017 0.00024 9.9 0.000 0.000 0.000 +2460502.5 1.13769 4.76902 -36991003.4 0.00017 0.00024 8.5 0.000 0.000 0.000 +2460503.5 1.16076 4.76951 -36990161.8 0.00017 0.00024 9.8 0.000 0.000 0.000 +2460504.5 1.18398 4.77479 -36989405.6 0.00015 0.00010 10.3 0.000 0.000 0.000 +2460505.5 1.20811 4.78278 -36988750.8 0.00017 0.00018 9.6 0.000 0.000 0.000 +2460506.5 1.22939 4.78989 -36987991.2 0.00017 0.00018 9.4 0.000 0.000 0.000 +2460507.5 1.25243 4.79527 -36987127.1 0.00010 0.00016 11.5 0.000 0.000 0.000 +2460508.5 1.27931 4.79631 -36986146.5 0.00019 0.00022 7.9 0.000 0.000 0.000 +2460509.5 1.30477 4.79437 -36985057.0 0.00019 0.00022 7.5 0.000 0.000 0.000 +2460510.5 1.32862 4.79286 -36983794.1 0.00019 0.00022 8.2 0.000 0.000 0.000 +2460511.5 1.34970 4.79258 -36982545.5 0.00018 0.00016 8.4 0.000 0.000 0.000 +2460512.5 1.37386 4.79213 -36981347.0 0.00023 0.00023 9.1 0.000 0.000 0.000 +2460513.5 1.40092 4.79001 -36980283.9 0.00023 0.00022 9.1 0.000 0.000 0.000 +2460514.5 1.42803 4.78944 -36979549.2 0.00015 0.00017 13.2 0.000 0.000 0.000 +2460515.5 1.45592 4.79141 -36979139.3 0.00017 0.00031 9.1 0.000 0.000 0.000 +2460516.5 1.48386 4.79427 -36978947.8 0.00017 0.00031 9.1 0.000 0.000 0.000 +2460517.5 1.50942 4.79576 -36978840.0 0.00017 0.00031 9.3 0.000 0.000 0.000 +2460518.5 1.52833 4.79567 -36978723.3 0.00010 0.00027 9.0 0.000 0.000 0.000 +2460519.5 1.54266 4.79318 -36978445.0 0.00012 0.00029 7.3 0.000 0.000 0.000 +2460520.5 1.55765 4.78715 -36977867.4 0.00012 0.00030 7.5 0.000 0.000 0.000 +2460521.5 1.57491 4.78138 -36977007.6 0.00010 0.00014 11.3 0.000 0.000 0.000 +2460522.5 1.59309 4.77653 -36975973.7 0.00010 0.00017 8.7 0.000 0.000 0.000 +2460523.5 1.61277 4.77257 -36974793.9 0.00010 0.00017 9.5 0.000 0.000 0.000 +2460524.5 1.63693 4.76678 -36973454.0 0.00010 0.00017 9.8 0.000 0.000 0.000 +2460525.5 1.66510 4.76247 -36972105.5 0.00010 0.00014 14.2 0.000 0.000 0.000 +2460526.5 1.68702 4.76122 -36970894.2 0.00010 0.00020 9.4 0.000 0.000 0.000 +2460527.5 1.70342 4.75817 -36969753.9 0.00010 0.00020 7.8 0.000 0.000 0.000 +2460528.5 1.71996 4.75148 -36968783.1 0.00020 0.00017 9.2 0.000 0.000 0.000 +2460529.5 1.73730 4.74089 -36967962.3 0.00010 0.00028 7.1 0.000 0.000 0.000 +2460530.5 1.75532 4.72894 -36967271.3 0.00010 0.00028 7.1 0.000 0.000 0.000 +2460531.5 1.77687 4.71791 -36966617.5 0.00010 0.00028 6.3 0.000 0.000 0.000 +2460532.5 1.80069 4.70672 -36965986.2 0.00010 0.00023 8.6 0.000 0.000 0.000 +2460533.5 1.82338 4.69764 -36965203.3 0.00010 0.00025 7.4 0.000 0.000 0.000 +2460534.5 1.84147 4.68889 -36964290.8 0.00010 0.00025 8.0 0.000 0.000 0.000 +2460535.5 1.85871 4.67843 -36963198.1 0.00010 0.00012 8.6 0.000 0.000 0.000 +2460536.5 1.87692 4.66829 -36962033.8 0.00014 0.00014 7.9 0.000 0.000 0.000 +2460537.5 1.89320 4.65821 -36960693.6 0.00014 0.00014 7.9 0.000 0.000 0.000 +2460538.5 1.90906 4.64794 -36959291.3 0.00014 0.00014 7.5 0.000 0.000 0.000 +2460539.5 1.92620 4.63768 -36957959.9 0.00012 0.00010 11.5 0.000 0.000 0.000 +2460540.5 1.94502 4.63046 -36956853.8 0.00053 0.00018 10.4 0.000 0.000 0.000 +2460541.5 1.96092 4.62468 -36956028.6 0.00053 0.00018 10.7 0.000 0.000 0.000 +2460542.5 1.96965 4.61510 -36955555.9 0.00052 0.00017 12.8 0.000 0.000 0.000 +2460543.5 1.98558 4.60316 -36955427.1 0.00051 0.00019 10.3 0.000 0.000 0.000 +2460544.5 1.99958 4.59203 -36955476.8 0.00051 0.00019 10.9 0.000 0.000 0.000 +2460545.5 2.01399 4.58190 -36955540.5 0.00051 0.00019 10.6 0.000 0.000 0.000 +2460546.5 2.02524 4.57232 -36955453.6 0.00010 0.00012 10.8 0.000 0.000 0.000 +2460547.5 2.03470 4.56223 -36955072.7 0.00016 0.00025 10.7 0.000 0.000 0.000 +2460548.5 2.04605 4.55045 -36954413.9 0.00016 0.00025 10.9 0.000 0.000 0.000 +2460549.5 2.05574 4.53817 -36953424.2 0.00015 0.00023 12.8 0.000 0.000 0.000 +2460550.5 2.06218 4.52443 -36952355.4 0.00021 0.00025 9.2 0.000 0.000 0.000 +2460551.5 2.06763 4.51053 -36951178.1 0.00021 0.00025 9.5 0.000 0.000 0.000 +2460552.5 2.07499 4.49833 -36949999.2 0.00021 0.00025 9.6 0.000 0.000 0.000 +2460553.5 2.08096 4.48714 -36948993.0 0.00015 0.00012 10.0 0.000 0.000 0.000 +2460554.5 2.08376 4.47357 -36948169.5 0.00030 0.00016 9.3 0.000 0.000 0.000 +2460555.5 2.08839 4.45543 -36947565.7 0.00030 0.00016 9.7 0.000 0.000 0.000 +2460556.5 2.09573 4.43881 -36947091.8 0.00027 0.00012 14.8 0.000 0.000 0.000 +2460557.5 2.10395 4.42795 -36946705.8 0.00028 0.00021 10.2 0.000 0.000 0.000 +2460558.5 2.11353 4.41874 -36946439.5 0.00028 0.00021 10.6 0.000 0.000 0.000 +2460559.5 2.12423 4.40919 -36946185.7 0.00028 0.00021 10.4 0.000 0.000 0.000 +2460560.5 2.13481 4.39898 -36945977.4 0.00010 0.00018 10.9 0.000 0.000 0.000 +2460561.5 2.14149 4.38675 -36945603.1 0.00018 0.00024 10.7 0.000 0.000 0.000 +2460562.5 2.14673 4.37246 -36945057.1 0.00018 0.00024 10.8 0.000 0.000 0.000 +2460563.5 2.15331 4.35717 -36944367.1 0.00016 0.00017 12.6 0.000 0.000 0.000 +2460564.5 2.15876 4.34140 -36943569.3 0.00019 0.00019 10.7 0.000 0.000 0.000 +2460565.5 2.16374 4.32549 -36942752.7 0.00019 0.00019 10.6 0.000 0.000 0.000 +2460566.5 2.17433 4.30858 -36941886.9 0.00018 0.00018 10.7 0.000 0.000 0.000 +2460567.5 2.18915 4.29319 -36941194.3 0.00010 0.00010 10.6 0.000 0.000 0.000 +2460568.5 2.20130 4.27959 -36940744.3 0.00015 0.00016 8.9 0.000 0.000 0.000 +2460569.5 2.20963 4.26759 -36940627.4 0.00014 0.00016 10.2 0.000 0.000 0.000 +2460570.5 2.21582 4.25564 -36940835.1 0.00011 0.00014 12.8 0.000 0.000 0.000 +2460571.5 2.21778 4.24283 -36941432.0 0.00014 0.00026 9.7 0.000 0.000 0.000 +2460572.5 2.21492 4.22982 -36942083.4 0.00014 0.00026 9.9 0.000 0.000 0.000 +2460573.5 2.21492 4.21743 -36942716.9 0.00014 0.00026 11.2 0.000 0.000 0.000 +2460574.5 2.22231 4.20812 -36943114.3 0.00010 0.00023 14.0 0.000 0.000 0.000 +2460575.5 2.23165 4.20125 -36943259.8 0.00034 0.00032 11.5 0.000 0.000 0.000 +2460576.5 2.23916 4.19463 -36943089.2 0.00034 0.00032 9.7 0.000 0.000 0.000 +2460577.5 2.24401 4.18664 -36942683.1 0.00033 0.00023 17.8 0.000 0.000 0.000 +2460578.5 2.24842 4.17568 -36942216.1 0.00033 0.00026 15.0 0.000 0.000 0.000 +2460579.5 2.24945 4.16364 -36941732.9 0.00033 0.00027 10.2 0.000 0.000 0.000 +2460580.5 2.25054 4.15013 -36941344.1 0.00033 0.00027 11.0 0.000 0.000 0.000 +2460581.5 2.25321 4.13670 -36941102.1 0.00010 0.00015 12.7 0.000 0.000 0.000 +2460582.5 2.25366 4.12008 -36940962.2 0.00010 0.00020 14.8 0.000 0.000 0.000 +2460583.5 2.25556 4.09871 -36940937.5 0.00010 0.00020 15.3 0.000 0.000 0.000 +2460584.5 2.26101 4.07871 -36940980.3 0.00010 0.00015 16.3 0.000 0.000 0.000 +2460585.5 2.26493 4.06240 -36941019.7 0.00012 0.00016 13.4 0.000 0.000 0.000 +2460586.5 2.26602 4.04923 -36941164.1 0.00012 0.00016 13.5 0.000 0.000 0.000 +2460587.5 2.26539 4.03843 -36941261.2 0.00012 0.00016 13.6 0.000 0.000 0.000 +2460588.5 2.26319 4.02781 -36941307.4 0.00010 0.00010 11.9 0.000 0.000 0.000 +2460589.5 2.26038 4.01533 -36941283.0 0.00021 0.00020 8.8 0.000 0.000 0.000 +2460590.5 2.25841 4.00257 -36941099.0 0.00021 0.00020 8.8 0.000 0.000 0.000 +2460591.5 2.25655 3.98783 -36940801.3 0.00020 0.00018 10.4 0.000 0.000 0.000 +2460592.5 2.25623 3.97093 -36940455.0 0.00025 0.00021 7.1 0.000 0.000 0.000 +2460593.5 2.26146 3.95460 -36940049.5 0.00025 0.00021 7.7 0.000 0.000 0.000 +2460594.5 2.26634 3.93877 -36939658.3 0.00025 0.00020 8.0 0.000 0.000 0.000 +2460595.5 2.26566 3.92368 -36939457.0 0.00015 0.00011 10.0 0.000 0.000 0.000 +2460596.5 2.26283 3.91014 -36939591.2 0.00023 0.00014 10.1 0.000 0.000 0.000 +2460597.5 2.26024 3.89760 -36940059.3 0.00022 0.00015 9.9 0.000 0.000 0.000 +2460598.5 2.25947 3.88492 -36940982.8 0.00018 0.00012 11.8 0.000 0.000 0.000 +2460599.5 2.25749 3.87283 -36942163.8 0.00019 0.00015 10.2 0.000 0.000 0.000 +2460600.5 2.25081 3.86068 -36943387.5 0.00019 0.00015 11.5 0.000 0.000 0.000 +2460601.5 2.24280 3.84563 -36944370.0 0.00019 0.00015 11.1 0.000 0.000 0.000 +2460602.5 2.23713 3.82889 -36945039.3 0.00010 0.00014 12.7 0.000 0.000 0.000 +2460603.5 2.23384 3.81294 -36945308.7 0.00011 0.00017 11.0 0.000 0.000 0.000 +2460604.5 2.22988 3.79817 -36945254.5 0.00011 0.00017 11.1 0.000 0.000 0.000 +2460605.5 2.22512 3.78137 -36944959.1 0.00010 0.00014 12.6 0.000 0.000 0.000 +2460606.5 2.22106 3.76331 -36944659.5 0.00012 0.00018 10.2 0.000 0.000 0.000 +2460607.5 2.21356 3.74637 -36944395.8 0.00012 0.00020 10.2 0.000 0.000 0.000 +2460608.5 2.20374 3.72885 -36944172.1 0.00012 0.00019 10.5 0.000 0.000 0.000 +2460609.5 2.19408 3.71454 -36944143.0 0.00010 0.00016 11.6 0.000 0.000 0.000 +2460610.5 2.18479 3.69931 -36944314.1 0.00020 0.00021 9.6 0.000 0.000 0.000 +2460611.5 2.17912 3.68371 -36944638.8 0.00020 0.00021 8.5 0.000 0.000 0.000 +2460612.5 2.17414 3.67277 -36945102.2 0.00018 0.00019 10.0 0.000 0.000 0.000 +2460613.5 2.16753 3.66333 -36945656.7 0.00019 0.00023 9.0 0.000 0.000 0.000 +2460614.5 2.16044 3.65604 -36946090.1 0.00019 0.00023 8.4 0.000 0.000 0.000 +2460615.5 2.15319 3.64851 -36946376.6 0.00019 0.00023 8.3 0.000 0.000 0.000 +2460616.5 2.14605 3.64268 -36946505.2 0.00010 0.00019 12.0 0.000 0.000 0.000 +2460617.5 2.13634 3.63651 -36946442.8 0.00019 0.00023 7.9 0.000 0.000 0.000 +2460618.5 2.12728 3.62457 -36946231.4 0.00019 0.00022 7.8 0.000 0.000 0.000 +2460619.5 2.12021 3.61183 -36945861.8 0.00018 0.00016 9.0 0.000 0.000 0.000 +2460620.5 2.11145 3.59900 -36945419.4 0.00020 0.00016 7.8 0.000 0.000 0.000 +2460621.5 2.10008 3.58391 -36945022.7 0.00020 0.00017 9.4 0.000 0.000 0.000 +2460622.5 2.08844 3.56568 -36944719.1 0.00020 0.00016 9.7 0.000 0.000 0.000 +2460623.5 2.08148 3.54568 -36944676.9 0.00011 0.00010 13.5 0.000 0.000 0.000 +2460624.5 2.07883 3.52748 -36944925.5 0.00016 0.00014 12.1 0.000 0.000 0.000 +2460625.5 2.07620 3.51100 -36945469.1 0.00016 0.00014 11.8 0.000 0.000 0.000 +2460626.5 2.07308 3.49494 -36946181.0 0.00013 0.00013 14.0 0.000 0.000 0.000 +2460627.5 2.06802 3.47989 -36947055.9 0.00016 0.00017 10.0 0.000 0.000 0.000 +2460628.5 2.06381 3.46633 -36947865.6 0.00016 0.00019 9.8 0.000 0.000 0.000 +2460629.5 2.05874 3.45596 -36948399.5 0.00016 0.00020 8.9 0.000 0.000 0.000 +2460630.5 2.05127 3.44526 -36948661.2 0.00012 0.00018 9.9 0.000 0.000 0.000 +2460631.5 2.04355 3.43504 -36948667.1 0.00023 0.00027 9.0 0.000 0.000 0.000 +2460632.5 2.03319 3.42420 -36948435.1 0.00023 0.00027 8.9 0.000 0.000 0.000 +2460633.5 2.02633 3.41019 -36948093.5 0.00021 0.00024 10.8 0.000 0.000 0.000 +2460634.5 2.02660 3.39811 -36947779.7 0.00022 0.00027 8.0 0.000 0.000 0.000 +2460635.5 2.02892 3.38917 -36947639.7 0.00022 0.00026 8.0 0.000 0.000 0.000 +2460636.5 2.02992 3.38332 -36947718.2 0.00021 0.00025 7.9 0.000 0.000 0.000 +2460637.5 2.02547 3.37864 -36947965.3 0.00010 0.00014 8.6 0.000 0.000 0.000 +2460638.5 2.01368 3.37327 -36948417.8 0.00011 0.00019 8.0 0.000 0.000 0.000 +2460639.5 1.99768 3.36590 -36948952.6 0.00011 0.00019 7.4 0.000 0.000 0.000 +2460640.5 1.98171 3.35588 -36949459.0 0.00010 0.00014 9.9 0.000 0.000 0.000 +2460641.5 1.96740 3.34238 -36949978.3 0.00010 0.00018 9.9 0.000 0.000 0.000 +2460642.5 1.95751 3.32714 -36950369.7 0.00010 0.00018 9.1 0.000 0.000 0.000 +2460643.5 1.95176 3.31315 -36950576.8 0.00010 0.00018 9.3 0.000 0.000 0.000 +2460644.5 1.94603 3.29991 -36950606.7 0.00020 0.00012 13.5 0.000 0.000 0.000 +2460645.5 1.93673 3.28685 -36950475.2 0.00013 0.00018 12.6 0.000 0.000 0.000 +2460646.5 1.92229 3.27518 -36950216.1 0.00013 0.00018 13.1 0.000 0.000 0.000 +2460647.5 1.90527 3.26395 -36949821.0 0.00013 0.00014 14.5 0.000 0.000 0.000 +2460648.5 1.88710 3.25123 -36949407.2 0.00014 0.00017 10.7 0.000 0.000 0.000 +2460649.5 1.86818 3.23699 -36949065.7 0.00014 0.00017 10.4 0.000 0.000 0.000 +2460650.5 1.85100 3.22049 -36948851.8 0.00014 0.00017 10.6 0.000 0.000 0.000 +2460651.5 1.83498 3.20314 -36948859.6 0.00010 0.00011 10.4 0.000 0.000 0.000 +2460652.5 1.81867 3.18760 -36949139.4 0.00016 0.00019 10.2 0.000 0.000 0.000 +2460653.5 1.80219 3.17398 -36949685.5 0.00016 0.00019 9.0 0.000 0.000 0.000 +2460654.5 1.78718 3.16100 -36950331.9 0.00015 0.00017 12.9 0.000 0.000 0.000 +2460655.5 1.77550 3.15131 -36951067.6 0.00026 0.00022 10.8 0.000 0.000 0.000 +2460656.5 1.76572 3.14512 -36951641.8 0.00026 0.00022 10.5 0.000 0.000 0.000 +2460657.5 1.75395 3.13984 -36951946.5 0.00026 0.00022 10.5 0.000 0.000 0.000 +2460658.5 1.73882 3.13230 -36952049.8 0.00023 0.00016 11.8 0.000 0.000 0.000 +2460659.5 1.72208 3.12269 -36951892.6 0.00031 0.00019 11.2 0.000 0.000 0.000 +2460660.5 1.70420 3.11422 -36951634.2 0.00031 0.00019 10.5 0.000 0.000 0.000 +2460661.5 1.68569 3.10740 -36951325.1 0.00023 0.00013 13.0 0.000 0.000 0.000 +2460662.5 1.66982 3.10171 -36951177.0 0.00034 0.00027 11.0 0.000 0.000 0.000 +2460663.5 1.65857 3.09718 -36951203.4 0.00034 0.00028 10.5 0.000 0.000 0.000 +2460664.5 1.64823 3.09692 -36951476.7 0.00034 0.00028 9.0 0.000 0.000 0.000 +2460665.5 1.63588 3.09760 -36951958.8 0.00025 0.00026 9.8 0.000 0.000 0.000 +2460666.5 1.62420 3.09771 -36952521.4 0.00029 0.00035 11.0 0.000 0.000 0.000 +2460667.5 1.61245 3.09945 -36953128.0 0.00029 0.00035 10.8 0.000 0.000 0.000 +2460668.5 1.59589 3.10074 -36953716.2 0.00016 0.00026 15.6 0.000 0.000 0.000 +2460669.5 1.57013 3.09756 -36954199.2 0.00025 0.00027 12.7 0.000 0.000 0.000 +2460670.5 1.53974 3.08924 -36954532.5 0.00025 0.00027 12.4 0.000 0.000 0.000 +2460671.5 1.51205 3.07949 -36954720.6 0.00025 0.00027 11.6 0.000 0.000 0.000 +2460672.5 1.49080 3.07011 -36954753.3 0.00021 0.00013 10.4 0.000 0.000 0.000 +2460673.5 1.47643 3.06293 -36954580.9 0.00021 0.00011 10.4 0.000 0.000 0.000 +2460674.5 1.46380 3.05779 -36954318.1 0.00020 0.00011 10.4 0.000 0.000 0.000 +2460675.5 1.45146 3.05383 -36954005.9 0.00010 0.00010 12.0 0.000 0.000 0.000 +2460676.5 1.44063 3.05108 -36953734.1 0.00013 0.00015 12.6 0.000 0.000 0.000 +2460677.5 1.43041 3.04926 -36953597.9 0.00014 0.00016 13.3 0.000 0.000 0.000 +2460678.5 1.42284 3.05011 -36953665.7 0.00014 0.00018 14.8 0.000 0.000 0.000 +2460679.5 1.41370 3.05331 -36954095.4 0.00014 0.00018 14.8 0.000 0.000 0.000 +2460680.5 1.40376 3.05316 -36954730.6 0.00014 0.00018 15.9 0.000 0.000 0.000 +2460681.5 1.39615 3.05311 -36955566.6 0.00016 0.00020 10.3 0.000 0.000 0.000 +2460682.5 1.38572 3.05524 -36956418.5 0.00011 0.00016 9.8 0.000 0.000 0.000 +2460683.5 1.37043 3.05531 -36957073.2 0.00027 0.00025 8.8 0.000 0.000 0.000 +2460684.5 1.35252 3.05399 -36957470.0 0.00027 0.00024 8.8 0.000 0.000 0.000 +2460685.5 1.33125 3.05278 -36957537.3 0.00027 0.00024 9.1 0.000 0.000 0.000 +2460686.5 1.30891 3.05040 -36957338.9 0.00027 0.00024 8.1 0.000 0.000 0.000 +2460687.5 1.28925 3.04672 -36956981.6 0.00029 0.00029 9.7 0.000 0.000 0.000 +2460688.5 1.26848 3.04050 -36956515.0 0.00029 0.00029 10.6 0.000 0.000 0.000 +2460689.5 1.24540 3.03318 -36956010.6 0.00014 0.00022 12.6 0.000 0.000 0.000 +2460690.5 1.22757 3.02764 -36955645.6 0.00016 0.00023 12.0 0.000 0.000 0.000 +2460691.5 1.21675 3.02510 -36955448.3 0.00016 0.00023 12.1 0.000 0.000 0.000 +2460692.5 1.20719 3.02450 -36955412.6 0.00016 0.00023 12.8 0.000 0.000 0.000 +2460693.5 1.20028 3.02344 -36955505.7 0.00010 0.00012 17.3 0.000 0.000 0.000 +2460694.5 1.20068 3.02552 -36955651.3 0.00013 0.00017 13.3 0.000 0.000 0.000 +2460695.5 1.20635 3.03112 -36955831.1 0.00013 0.00016 12.5 0.000 0.000 0.000 +2460696.5 1.21054 3.03673 -36955903.7 0.00011 0.00014 13.2 0.000 0.000 0.000 +2460697.5 1.20715 3.04083 -36955871.8 0.00011 0.00015 11.7 0.000 0.000 0.000 +2460698.5 1.19825 3.04363 -36955637.9 0.00011 0.00015 11.2 0.000 0.000 0.000 +2460699.5 1.18309 3.04691 -36955204.7 0.00011 0.00015 11.1 0.000 0.000 0.000 +2460700.5 1.16084 3.05104 -36954531.2 0.00010 0.00010 12.1 0.000 0.000 0.000 +2460701.5 1.13841 3.05609 -36953822.5 0.00010 0.00019 11.3 0.000 0.000 0.000 +2460702.5 1.11761 3.06052 -36953069.6 0.00010 0.00019 10.3 0.000 0.000 0.000 +2460703.5 1.09752 3.06420 -36952448.9 0.00010 0.00017 11.9 0.000 0.000 0.000 +2460704.5 1.07994 3.06965 -36952101.2 0.00012 0.00019 10.3 0.000 0.000 0.000 +2460705.5 1.06666 3.07600 -36951957.9 0.00012 0.00019 8.9 0.000 0.000 0.000 +2460706.5 1.05504 3.08220 -36952087.0 0.00012 0.00020 9.9 0.000 0.000 0.000 +2460707.5 1.03885 3.08695 -36952556.4 0.00010 0.00011 11.1 0.000 0.000 0.000 +2460708.5 1.01865 3.08870 -36953192.2 0.00012 0.00015 10.9 0.000 0.000 0.000 +2460709.5 0.99696 3.09127 -36953810.1 0.00012 0.00015 10.6 0.000 0.000 0.000 +2460710.5 0.97403 3.09488 -36954304.1 0.00010 0.00014 14.6 0.000 0.000 0.000 +2460711.5 0.95032 3.09752 -36954590.3 0.00011 0.00016 8.7 0.000 0.000 0.000 +2460712.5 0.92434 3.09902 -36954569.3 0.00012 0.00016 8.0 0.000 0.000 0.000 +2460713.5 0.89743 3.10130 -36954276.0 0.00012 0.00016 8.7 0.000 0.000 0.000 +2460714.5 0.87102 3.10334 -36953854.5 0.00010 0.00013 9.2 0.000 0.000 0.000 +2460715.5 0.85272 3.10450 -36953366.1 0.00012 0.00018 8.6 0.000 0.000 0.000 +2460716.5 0.84446 3.10922 -36953020.4 0.00012 0.00017 7.9 0.000 0.000 0.000 +2460717.5 0.83810 3.11638 -36952830.3 0.00010 0.00014 11.0 0.000 0.000 0.000 +2460718.5 0.83229 3.12302 -36952772.4 0.00012 0.00018 11.1 0.000 0.000 0.000 +2460719.5 0.82863 3.13048 -36952929.6 0.00012 0.00018 10.6 0.000 0.000 0.000 +2460720.5 0.82662 3.13990 -36953226.3 0.00012 0.00018 10.8 0.000 0.000 0.000 +2460721.5 0.82339 3.14845 -36953697.0 0.00010 0.00014 13.4 0.000 0.000 0.000 +2460722.5 0.81767 3.15774 -36954083.6 0.00018 0.00036 13.1 0.000 0.000 0.000 +2460723.5 0.81017 3.17010 -36954394.2 0.00018 0.00036 12.7 0.000 0.000 0.000 +2460724.5 0.79889 3.18107 -36954559.3 0.00016 0.00034 15.4 0.000 0.000 0.000 +2460725.5 0.78605 3.18827 -36954534.3 0.00019 0.00036 11.7 0.000 0.000 0.000 +2460726.5 0.77202 3.19540 -36954357.2 0.00019 0.00036 11.4 0.000 0.000 0.000 +2460727.5 0.75683 3.20461 -36954079.4 0.00019 0.00036 11.4 0.000 0.000 0.000 +2460728.5 0.74249 3.21335 -36953704.7 0.00013 0.00014 11.4 0.000 0.000 0.000 +2460729.5 0.72767 3.21815 -36953263.4 0.00018 0.00018 10.2 0.000 0.000 0.000 +2460730.5 0.71479 3.22247 -36952836.3 0.00018 0.00018 10.5 0.000 0.000 0.000 +2460731.5 0.70431 3.22875 -36952579.4 0.00015 0.00015 12.7 0.000 0.000 0.000 +2460732.5 0.70008 3.23426 -36952620.1 0.00023 0.00028 11.8 0.000 0.000 0.000 +2460733.5 0.70292 3.24141 -36952927.5 0.00023 0.00028 11.9 0.000 0.000 0.000 +2460734.5 0.70490 3.24975 -36953519.2 0.00023 0.00028 12.3 0.000 0.000 0.000 +2460735.5 0.70292 3.26019 -36954366.6 0.00018 0.00026 16.9 0.000 0.000 0.000 +2460736.5 0.69681 3.27339 -36955261.9 0.00020 0.00031 10.0 0.000 0.000 0.000 +2460737.5 0.68973 3.28459 -36956085.5 0.00020 0.00030 9.6 0.000 0.000 0.000 +2460738.5 0.68462 3.29664 -36956684.6 0.00011 0.00019 10.0 0.000 0.000 0.000 +2460739.5 0.67829 3.31170 -36956882.6 0.00015 0.00022 8.8 0.000 0.000 0.000 +2460740.5 0.66984 3.32718 -36956815.3 0.00015 0.00022 8.9 0.000 0.000 0.000 +2460741.5 0.66115 3.34124 -36956631.8 0.00015 0.00022 8.4 0.000 0.000 0.000 +2460742.5 0.65403 3.35472 -36956328.2 0.00011 0.00012 12.0 0.000 0.000 0.000 +2460743.5 0.64874 3.36828 -36955966.5 0.00020 0.00018 10.1 0.000 0.000 0.000 +2460744.5 0.64592 3.38397 -36955744.4 0.00020 0.00019 10.7 0.000 0.000 0.000 +2460745.5 0.64317 3.40336 -36955693.2 0.00018 0.00015 12.6 0.000 0.000 0.000 +2460746.5 0.63732 3.42362 -36955823.9 0.00021 0.00019 9.3 0.000 0.000 0.000 +2460747.5 0.63145 3.44497 -36956147.4 0.00021 0.00020 10.7 0.000 0.000 0.000 +2460748.5 0.62326 3.46707 -36956604.8 0.00021 0.00020 11.6 0.000 0.000 0.000 +2460749.5 0.61242 3.48505 -36957122.8 0.00012 0.00015 14.2 0.000 0.000 0.000 +2460750.5 0.60527 3.50249 -36957630.9 0.00013 0.00018 11.0 0.000 0.000 0.000 +2460751.5 0.60391 3.52096 -36958006.7 0.00013 0.00018 11.2 0.000 0.000 0.000 +2460752.5 0.60452 3.53797 -36958301.6 0.00010 0.00015 12.9 0.000 0.000 0.000 +2460753.5 0.60401 3.55453 -36958463.9 0.00021 0.00018 10.5 0.000 0.000 0.000 +2460754.5 0.60064 3.57208 -36958498.8 0.00021 0.00018 9.9 0.000 0.000 0.000 +2460755.5 0.59438 3.58742 -36958344.9 0.00021 0.00018 10.6 0.000 0.000 0.000 +2460756.5 0.58638 3.60088 -36958156.0 0.00020 0.00016 12.7 0.000 0.000 0.000 +2460757.5 0.57732 3.61600 -36957937.9 0.00022 0.00018 9.6 0.000 0.000 0.000 +2460758.5 0.57336 3.62836 -36957784.6 0.00022 0.00017 9.8 0.000 0.000 0.000 +2460759.5 0.57640 3.64029 -36957788.8 0.00010 0.00012 11.8 0.000 0.000 0.000 +2460760.5 0.57903 3.65556 -36958068.1 0.00011 0.00015 9.1 0.000 0.000 0.000 +2460761.5 0.57979 3.67333 -36958645.5 0.00010 0.00014 8.7 0.000 0.000 0.000 +2460762.5 0.57971 3.69224 -36959486.1 0.00010 0.00013 9.0 0.000 0.000 0.000 +2460763.5 0.57967 3.71008 -36960565.1 0.00010 0.00010 11.7 0.000 0.000 0.000 +2460764.5 0.58225 3.72711 -36961639.4 0.00010 0.00012 9.0 0.000 0.000 0.000 +2460765.5 0.58424 3.74515 -36962514.8 0.00010 0.00013 8.7 0.000 0.000 0.000 +2460766.5 0.58341 3.76256 -36963071.7 0.00010 0.00011 11.1 0.000 0.000 0.000 +2460767.5 0.58432 3.77576 -36963317.2 0.00021 0.00015 10.2 0.000 0.000 0.000 +2460768.5 0.58930 3.78996 -36963212.4 0.00021 0.00015 10.7 0.000 0.000 0.000 +2460769.5 0.59756 3.80940 -36962983.4 0.00021 0.00015 10.3 0.000 0.000 0.000 +2460770.5 0.60922 3.82837 -36962765.3 0.00020 0.00013 16.3 0.000 0.000 0.000 +2460771.5 0.62250 3.84523 -36962663.1 0.00022 0.00015 13.5 0.000 0.000 0.000 +2460772.5 0.63166 3.86314 -36962749.0 0.00022 0.00015 13.7 0.000 0.000 0.000 +2460773.5 0.63774 3.87875 -36963053.1 0.00011 0.00011 14.8 0.000 0.000 0.000 +2460774.5 0.64660 3.89017 -36963540.2 0.00021 0.00021 11.7 0.000 0.000 0.000 +2460775.5 0.65787 3.90295 -36964161.1 0.00021 0.00021 12.4 0.000 0.000 0.000 +2460776.5 0.66795 3.92009 -36964802.3 0.00021 0.00020 12.2 0.000 0.000 0.000 +2460777.5 0.67399 3.93834 -36965450.1 0.00018 0.00019 14.0 0.000 0.000 0.000 +2460778.5 0.67959 3.95311 -36966019.8 0.00025 0.00034 12.6 0.000 0.000 0.000 +2460779.5 0.68609 3.96391 -36966433.3 0.00025 0.00034 12.5 0.000 0.000 0.000 +2460780.5 0.69152 3.97417 -36966660.2 0.00021 0.00031 13.7 0.000 0.000 0.000 +2460781.5 0.69754 3.98432 -36966707.5 0.00021 0.00032 12.5 0.000 0.000 0.000 +2460782.5 0.70405 3.99461 -36966556.1 0.00021 0.00032 11.2 0.000 0.000 0.000 +2460783.5 0.71239 4.00615 -36966248.4 0.00021 0.00032 9.3 0.000 0.000 0.000 +2460784.5 0.72125 4.02203 -36965947.2 0.00012 0.00014 7.3 0.000 0.000 0.000 +2460785.5 0.73095 4.03979 -36965694.3 0.00012 0.00014 9.7 0.000 0.000 0.000 +2460786.5 0.74501 4.05386 -36965563.4 0.00010 0.00013 6.2 0.000 0.000 0.000 +2460787.5 0.75956 4.06477 -36965644.2 0.00010 0.00013 7.6 0.000 0.000 0.000 +2460788.5 0.77245 4.07418 -36965960.2 0.00012 0.00017 9.2 0.000 0.000 0.000 +2460789.5 0.78669 4.08526 -36966544.5 0.00012 0.00017 10.4 0.000 0.000 0.000 +2460790.5 0.80237 4.09968 -36967386.5 0.00012 0.00018 10.6 0.000 0.000 0.000 +2460791.5 0.81633 4.11546 -36968380.8 0.00012 0.00018 10.6 0.000 0.000 0.000 +2460792.5 0.82643 4.13079 -36969276.0 0.00032 0.00028 14.1 0.000 0.000 0.000 +2460793.5 0.83389 4.14233 -36969955.2 0.00033 0.00027 13.4 0.000 0.000 0.000 +2460794.5 0.84081 4.15126 -36970347.3 0.00031 0.00025 14.1 0.000 0.000 0.000 +2460795.5 0.84697 4.16035 -36970430.9 0.00037 0.00028 11.8 0.000 0.000 0.000 +2460796.5 0.85472 4.16909 -36970216.6 0.00037 0.00028 10.9 0.000 0.000 0.000 +2460797.5 0.86495 4.17980 -36969903.5 0.00037 0.00028 10.1 0.000 0.000 0.000 +2460798.5 0.87367 4.19124 -36969709.5 0.00021 0.00015 13.5 0.000 0.000 0.000 +2460799.5 0.88153 4.20182 -36969631.8 0.00025 0.00018 11.4 0.000 0.000 0.000 +2460800.5 0.88886 4.21173 -36969699.8 0.00024 0.00018 12.1 0.000 0.000 0.000 +2460801.5 0.89742 4.22160 -36969930.5 0.00015 0.00014 12.4 0.000 0.000 0.000 +2460802.5 0.90635 4.23141 -36970312.3 0.00015 0.00013 12.9 0.000 0.000 0.000 +2460803.5 0.91479 4.23839 -36970687.0 0.00015 0.00013 13.9 0.000 0.000 0.000 +2460804.5 0.92493 4.24348 -36971020.4 0.00015 0.00013 14.3 0.000 0.000 0.000 +2460805.5 0.93853 4.24727 -36971275.1 0.00010 0.00010 19.0 0.000 0.000 0.000 +2460806.5 0.95472 4.25157 -36971448.2 0.00012 0.00013 16.3 0.000 0.000 0.000 +2460807.5 0.96967 4.25895 -36971527.7 0.00010 0.00011 17.2 0.000 0.000 0.000 +2460808.5 0.98025 4.26797 -36971436.7 0.00010 0.00011 18.6 0.000 0.000 0.000 +2460809.5 0.99026 4.27740 -36971234.2 0.00013 0.00014 13.6 0.000 0.000 0.000 +2460810.5 1.00084 4.28824 -36970866.8 0.00013 0.00014 13.7 0.000 0.000 0.000 +2460811.5 1.00786 4.29934 -36970429.6 0.00013 0.00013 13.2 0.000 0.000 0.000 +2460812.5 1.01160 4.30888 -36970001.9 0.00010 0.00010 14.2 0.000 0.000 0.000 +2460813.5 1.01653 4.31549 -36969661.9 0.00019 0.00014 13.5 0.000 0.000 0.000 +2460814.5 1.02654 4.31815 -36969465.4 0.00019 0.00014 11.8 0.000 0.000 0.000 +2460815.5 1.03925 4.32133 -36969407.8 0.00017 0.00011 15.8 0.000 0.000 0.000 +2460816.5 1.05141 4.32857 -36969574.6 0.00023 0.00015 15.5 0.000 0.000 0.000 +2460817.5 1.06250 4.33756 -36970048.5 0.00023 0.00015 15.2 0.000 0.000 0.000 +2460818.5 1.07314 4.34627 -36970680.1 0.00023 0.00015 15.1 0.000 0.000 0.000 +2460819.5 1.08054 4.35600 -36971455.4 0.00016 0.00011 17.7 0.000 0.000 0.000 +2460820.5 1.08612 4.36420 -36972112.7 0.00025 0.00014 15.0 0.000 0.000 0.000 +2460821.5 1.09579 4.36882 -36972487.3 0.00025 0.00014 14.2 0.000 0.000 0.000 +2460822.5 1.10628 4.37240 -36972544.3 0.00020 0.00013 13.1 0.000 0.000 0.000 +2460823.5 1.11286 4.37631 -36972293.1 0.00024 0.00021 11.3 0.000 0.000 0.000 +2460824.5 1.11606 4.37898 -36971885.5 0.00024 0.00021 11.3 0.000 0.000 0.000 +2460825.5 1.11989 4.37603 -36971482.1 0.00024 0.00022 12.2 0.000 0.000 0.000 +2460826.5 1.12570 4.37408 -36971205.1 0.00014 0.00020 13.2 0.000 0.000 0.000 +2460827.5 1.13195 4.37659 -36971010.8 0.00014 0.00021 13.9 0.000 0.000 0.000 +2460828.5 1.14074 4.37998 -36970968.7 0.00018 0.00024 12.9 0.000 0.000 0.000 +2460829.5 1.15450 4.38391 -36971022.5 0.00012 0.00016 14.4 0.000 0.000 0.000 +2460830.5 1.17140 4.39044 -36971147.1 0.00018 0.00021 10.8 0.000 0.000 0.000 +2460831.5 1.18692 4.39806 -36971269.2 0.00018 0.00020 10.3 0.000 0.000 0.000 +2460832.5 1.20172 4.40320 -36971322.0 0.00018 0.00020 10.4 0.000 0.000 0.000 +2460833.5 1.21643 4.40721 -36971296.4 0.00018 0.00019 10.2 0.000 0.000 0.000 +2460834.5 1.23155 4.41078 -36971115.3 0.00030 0.00015 11.5 0.000 0.000 0.000 +2460835.5 1.24724 4.41493 -36970661.1 0.00030 0.00015 13.7 0.000 0.000 0.000 +2460836.5 1.26164 4.42020 -36969968.9 0.00027 0.00010 19.2 0.000 0.000 0.000 +2460837.5 1.27568 4.42520 -36969161.2 0.00038 0.00014 17.0 0.000 0.000 0.000 +2460838.5 1.29041 4.42813 -36968256.1 0.00038 0.00014 16.8 0.000 0.000 0.000 +2460839.5 1.30716 4.42830 -36967273.6 0.00038 0.00014 16.9 0.000 0.000 0.000 +2460840.5 1.32531 4.42636 -36966395.8 0.00027 0.00013 16.6 0.000 0.000 0.000 +2460841.5 1.34693 4.42448 -36965722.6 0.00040 0.00016 14.7 0.000 0.000 0.000 +2460842.5 1.36935 4.42535 -36965203.8 0.00039 0.00017 13.7 0.000 0.000 0.000 +2460843.5 1.38865 4.42708 -36964940.0 0.00029 0.00011 14.9 0.000 0.000 0.000 +2460844.5 1.40537 4.42920 -36964873.0 0.00031 0.00014 12.8 0.000 0.000 0.000 +2460845.5 1.42019 4.43011 -36964953.1 0.00031 0.00014 12.9 0.000 0.000 0.000 +2460846.5 1.43551 4.42756 -36965089.6 0.00031 0.00014 14.6 0.000 0.000 0.000 +2460847.5 1.45169 4.42525 -36965097.0 0.00011 0.00011 12.3 0.000 0.000 0.000 +2460848.5 1.46800 4.42307 -36964887.7 0.00017 0.00015 11.0 0.000 0.000 0.000 +2460849.5 1.48501 4.41998 -36964178.9 0.00017 0.00015 10.7 0.000 0.000 0.000 +2460850.5 1.50177 4.41605 -36963176.5 0.00013 0.00012 12.6 0.000 0.000 0.000 +2460851.5 1.51755 4.41116 -36962053.8 0.00016 0.00015 12.1 0.000 0.000 0.000 +2460852.5 1.53246 4.40687 -36960841.2 0.00016 0.00015 11.9 0.000 0.000 0.000 +2460853.5 1.54708 4.40354 -36959650.2 0.00016 0.00016 12.8 0.000 0.000 0.000 +2460854.5 1.56439 4.40112 -36958610.8 0.00011 0.00012 16.7 0.000 0.000 0.000 +2460855.5 1.58439 4.40064 -36957796.3 0.00016 0.00020 14.8 0.000 0.000 0.000 +2460856.5 1.60278 4.40023 -36957147.5 0.00016 0.00021 13.9 0.000 0.000 0.000 +2460857.5 1.62042 4.39870 -36956582.1 0.00013 0.00019 14.4 0.000 0.000 0.000 +2460858.5 1.63655 4.39647 -36956113.3 0.00019 0.00025 12.5 0.000 0.000 0.000 +2460859.5 1.65162 4.39282 -36955638.9 0.00019 0.00025 12.2 0.000 0.000 0.000 +2460860.5 1.66642 4.39033 -36955075.3 0.00019 0.00025 11.4 0.000 0.000 0.000 +2460861.5 1.67827 4.38610 -36954359.3 0.00016 0.00018 13.5 0.000 0.000 0.000 +2460862.5 1.69229 4.37974 -36953400.0 0.00022 0.00022 11.3 0.000 0.000 0.000 +2460863.5 1.71138 4.37814 -36952216.4 0.00022 0.00022 11.3 0.000 0.000 0.000 +2460864.5 1.73372 4.38092 -36950909.9 0.00016 0.00015 12.1 0.000 0.000 0.000 +2460865.5 1.75278 4.38247 -36949607.6 0.00019 0.00019 9.9 0.000 0.000 0.000 +2460866.5 1.76522 4.37956 -36948229.6 0.00019 0.00018 12.6 0.000 0.000 0.000 +2460867.5 1.77618 4.37454 -36946922.2 0.00019 0.00019 12.7 0.000 0.000 0.000 +2460868.5 1.78624 4.37002 -36945812.3 0.00011 0.00014 19.6 0.000 0.000 0.000 +2460869.5 1.79913 4.36534 -36944975.4 0.00018 0.00022 16.1 0.000 0.000 0.000 +2460870.5 1.81751 4.36178 -36944445.1 0.00018 0.00022 16.2 0.000 0.000 0.000 +2460871.5 1.84084 4.35822 -36944204.6 0.00015 0.00019 18.5 0.000 0.000 0.000 +2460872.5 1.86659 4.35564 -36944189.4 0.00022 0.00030 14.5 0.000 0.000 0.000 +2460873.5 1.88854 4.35394 -36944092.4 0.00022 0.00030 15.0 0.000 0.000 0.000 +2460874.5 1.90620 4.35135 -36943891.3 0.00022 0.00030 13.3 0.000 0.000 0.000 +2460875.5 1.91899 4.34699 -36943666.5 0.00016 0.00024 15.0 0.000 0.000 0.000 +2460876.5 1.92884 4.34054 -36943190.0 0.00019 0.00028 13.4 0.000 0.000 0.000 +2460877.5 1.93886 4.33574 -36942522.0 0.00019 0.00028 13.3 0.000 0.000 0.000 +2460878.5 1.94914 4.33256 -36941638.9 0.00011 0.00015 15.4 0.000 0.000 0.000 +2460879.5 1.95962 4.32939 -36940807.8 0.00027 0.00022 12.2 0.000 0.000 0.000 +2460880.5 1.97149 4.32655 -36939990.9 0.00027 0.00022 11.5 0.000 0.000 0.000 +2460881.5 1.98505 4.32313 -36939346.8 0.00027 0.00022 11.8 0.000 0.000 0.000 +2460882.5 1.99623 4.31725 -36938941.1 0.00024 0.00017 12.1 0.000 0.000 0.000 +2460883.5 2.00631 4.30948 -36938723.7 0.00027 0.00020 12.7 0.000 0.000 0.000 +2460884.5 2.02017 4.30311 -36938624.9 0.00027 0.00020 12.5 0.000 0.000 0.000 +2460885.5 2.03938 4.29788 -36938554.4 0.00013 0.00013 15.8 0.000 0.000 0.000 +2460886.5 2.06111 4.29007 -36938475.6 0.00016 0.00014 13.7 0.000 0.000 0.000 +2460887.5 2.08222 4.28006 -36938294.1 0.00016 0.00014 13.9 0.000 0.000 0.000 +2460888.5 2.10192 4.27183 -36937864.5 0.00016 0.00014 14.1 0.000 0.000 0.000 +2460889.5 2.11819 4.26284 -36937247.3 0.00010 0.00010 15.0 0.000 0.000 0.000 +2460890.5 2.13022 4.25025 -36936354.3 0.00011 0.00012 13.6 0.000 0.000 0.000 +2460891.5 2.13670 4.23828 -36935220.4 0.00011 0.00011 12.5 0.000 0.000 0.000 +2460892.5 2.13961 4.22712 -36933965.8 0.00010 0.00010 14.1 0.000 0.000 0.000 +2460893.5 2.14366 4.21524 -36932638.8 0.00010 0.00012 10.3 0.000 0.000 0.000 +2460894.5 2.14827 4.20342 -36931348.3 0.00010 0.00011 10.8 0.000 0.000 0.000 +2460895.5 2.15213 4.19039 -36930165.6 0.00010 0.00011 10.6 0.000 0.000 0.000 +2460896.5 2.15566 4.17707 -36929235.0 0.00010 0.00010 10.6 0.000 0.000 0.000 +2460897.5 2.16146 4.16402 -36928558.0 0.00010 0.00010 11.6 0.000 0.000 0.000 +2460898.5 2.17251 4.15132 -36928161.0 0.00010 0.00010 12.3 0.000 0.000 0.000 +2460899.5 2.18320 4.14067 -36928012.6 0.00017 0.00016 12.0 0.000 0.000 0.000 +2460900.5 2.18696 4.13155 -36927967.9 0.00018 0.00017 11.2 0.000 0.000 0.000 +2460901.5 2.18927 4.12192 -36927860.1 0.00017 0.00016 11.3 0.000 0.000 0.000 +2460902.5 2.19574 4.11081 -36927603.8 0.00017 0.00016 11.6 0.000 0.000 0.000 +2460903.5 2.20514 4.10007 -36927156.9 0.00016 0.00016 10.8 0.000 0.000 0.000 +2460904.5 2.21373 4.08926 -36926415.4 0.00020 0.00018 8.8 0.000 0.000 0.000 +2460905.5 2.22240 4.07567 -36925476.5 0.00013 0.00012 12.6 0.000 0.000 0.000 +2460906.5 2.23274 4.06052 -36924375.0 0.00014 0.00011 12.5 0.000 0.000 0.000 +2460907.5 2.24517 4.04463 -36923235.9 0.00015 0.00024 9.9 0.000 0.000 0.000 +2460908.5 2.25840 4.03098 -36922232.4 0.00015 0.00024 9.7 0.000 0.000 0.000 +2460909.5 2.26885 4.01822 -36921378.6 0.00015 0.00024 9.9 0.000 0.000 0.000 +2460910.5 2.27921 4.00355 -36920678.1 0.00010 0.00023 10.3 0.000 0.000 0.000 +2460911.5 2.29106 3.98950 -36920134.2 0.00015 0.00024 12.0 0.000 0.000 0.000 +2460912.5 2.30061 3.97635 -36919707.0 0.00014 0.00023 12.0 0.000 0.000 0.000 +2460913.5 2.30671 3.96561 -36919345.7 0.00013 0.00010 15.6 0.000 0.000 0.000 +2460914.5 2.30978 3.95657 -36918960.2 0.00015 0.00013 12.6 0.000 0.000 0.000 +2460915.5 2.31136 3.94554 -36918555.5 0.00015 0.00013 12.7 0.000 0.000 0.000 +2460916.5 2.31488 3.93349 -36917996.6 0.00015 0.00013 13.9 0.000 0.000 0.000 +2460917.5 2.32113 3.92204 -36917279.0 0.00010 0.00012 14.1 0.000 0.000 0.000 +2460918.5 2.32841 3.91234 -36916394.4 0.00021 0.00018 14.6 0.000 0.000 0.000 +2460919.5 2.33560 3.90294 -36915416.1 0.00020 0.00018 13.7 0.000 0.000 0.000 +2460920.5 2.34316 3.89307 -36914374.4 0.00019 0.00015 16.9 0.000 0.000 0.000 +2460921.5 2.34710 3.88314 -36913346.8 0.00024 0.00018 14.4 0.000 0.000 0.000 +2460922.5 2.34415 3.87184 -36912448.6 0.00024 0.00017 13.9 0.000 0.000 0.000 +2460923.5 2.33860 3.85859 -36911737.7 0.00024 0.00017 13.8 0.000 0.000 0.000 +2460924.5 2.33385 3.84370 -36911333.0 0.00015 0.00010 12.1 0.000 0.000 0.000 +2460925.5 2.33244 3.82793 -36911182.5 0.00018 0.00011 12.5 0.000 0.000 0.000 +2460926.5 2.33691 3.81169 -36911344.4 0.00018 0.00011 12.1 0.000 0.000 0.000 +2460927.5 2.34475 3.79695 -36911728.0 0.00011 0.00020 13.7 0.000 0.000 0.000 +2460928.5 2.35304 3.78448 -36912124.0 0.00015 0.00010 11.6 0.000 0.000 0.000 +2460929.5 2.36086 3.77137 -36912363.7 0.00015 0.00010 13.0 0.000 0.000 0.000 +2460930.5 2.36428 3.75626 -36912373.3 0.00015 0.00010 14.1 0.000 0.000 0.000 +2460931.5 2.36245 3.73868 -36912199.3 0.00012 0.00010 15.5 0.000 0.000 0.000 +2460932.5 2.35809 3.71942 -36911714.1 0.00027 0.00021 13.0 0.000 0.000 0.000 +2460933.5 2.35233 3.70005 -36911095.4 0.00027 0.00021 13.0 0.000 0.000 0.000 +2460934.5 2.34750 3.68096 -36910452.4 0.00025 0.00019 15.1 0.000 0.000 0.000 +2460935.5 2.34293 3.66269 -36909929.7 0.00026 0.00021 11.6 0.000 0.000 0.000 +2460936.5 2.33670 3.64530 -36909581.6 0.00026 0.00022 10.9 0.000 0.000 0.000 +2460937.5 2.33087 3.62766 -36909493.7 0.00026 0.00022 11.6 0.000 0.000 0.000 +2460938.5 2.32715 3.60970 -36909569.5 0.00010 0.00013 13.6 0.000 0.000 0.000 +2460939.5 2.32315 3.59303 -36909822.9 0.00014 0.00021 10.6 0.000 0.000 0.000 +2460940.5 2.31860 3.57664 -36910113.9 0.00014 0.00021 9.7 0.000 0.000 0.000 +2460941.5 2.31532 3.56100 -36910296.2 0.00012 0.00019 12.1 0.000 0.000 0.000 +2460942.5 2.31175 3.54804 -36910354.4 0.00014 0.00022 12.2 0.000 0.000 0.000 +2460943.5 2.30546 3.53398 -36910243.7 0.00014 0.00022 12.3 0.000 0.000 0.000 +2460944.5 2.29460 3.51661 -36909980.5 0.00015 0.00022 12.8 0.000 0.000 0.000 +2460945.5 2.27973 3.49516 -36909622.1 0.00010 0.00014 15.7 0.000 0.000 0.000 +2460946.5 2.26630 3.47124 -36909026.5 0.00012 0.00017 12.4 0.000 0.000 0.000 +2460947.5 2.25851 3.45002 -36908341.3 0.00012 0.00017 11.4 0.000 0.000 0.000 +2460948.5 2.25245 3.43090 -36907603.6 0.00010 0.00012 10.6 0.000 0.000 0.000 +2460949.5 2.24658 3.41317 -36906923.0 0.00010 0.00020 8.1 0.000 0.000 0.000 +2460950.5 2.24073 3.39782 -36906527.5 0.00010 0.00020 8.1 0.000 0.000 0.000 +2460951.5 2.23105 3.38282 -36906349.0 0.00010 0.00020 9.6 0.000 0.000 0.000 +2460952.5 2.21957 3.36956 -36906404.7 0.00010 0.00017 13.6 0.000 0.000 0.000 +2460953.5 2.20934 3.35787 -36906764.6 0.00015 0.00022 10.7 0.000 0.000 0.000 +2460954.5 2.19840 3.34590 -36907290.2 0.00015 0.00022 10.2 0.000 0.000 0.000 +2460955.5 2.18460 3.33112 -36907816.5 0.00015 0.00014 11.1 0.000 0.000 0.000 +2460956.5 2.17019 3.31605 -36908255.3 0.00016 0.00016 8.9 0.000 0.000 0.000 +2460957.5 2.15351 3.30455 -36908498.9 0.00016 0.00018 6.6 0.000 0.000 0.000 +2460958.5 2.13307 3.29308 -36908410.3 0.00016 0.00018 6.3 0.000 0.000 0.000 +2460959.5 2.11499 3.28139 -36907979.8 0.00010 0.00012 8.2 0.000 0.000 0.000 +2460960.5 2.10126 3.27140 -36907347.1 0.00010 0.00012 7.4 0.000 0.000 0.000 +2460961.5 2.08779 3.26424 -36906643.1 0.00010 0.00012 6.8 0.000 0.000 0.000 +2460962.5 2.07162 3.25825 -36906005.9 0.00010 0.00010 7.1 0.000 0.000 0.000 +2460963.5 2.05293 3.25098 -36905520.3 0.00010 0.00021 6.8 0.000 0.000 0.000 +2460964.5 2.03385 3.24366 -36905258.7 0.00010 0.00022 7.9 0.000 0.000 0.000 +2460965.5 2.01472 3.23694 -36905235.0 0.00010 0.00022 9.1 0.000 0.000 0.000 +2460966.5 1.99533 3.22952 -36905416.3 0.00010 0.00022 11.9 0.000 0.000 0.000 +2460967.5 1.97917 3.22346 -36905704.0 0.00010 0.00023 10.5 0.000 0.000 0.000 +2460968.5 1.96468 3.22056 -36906046.1 0.00010 0.00023 11.9 0.000 0.000 0.000 +2460969.5 1.94931 3.22081 -36906339.7 0.00010 0.00011 19.7 0.000 0.000 0.000 +2460970.5 1.93292 3.22367 -36906518.1 0.00010 0.00012 16.7 0.000 0.000 0.000 +2460971.5 1.91565 3.22633 -36906622.2 0.00010 0.00011 16.0 0.000 0.000 0.000 +2460972.5 1.89700 3.22795 -36906669.2 0.00011 0.00011 16.0 0.000 0.000 0.000 +2460973.5 1.87843 3.22826 -36906484.1 0.00010 0.00010 19.7 0.000 0.000 0.000 +2460974.5 1.86030 3.22757 -36906250.7 0.00013 0.00010 15.6 0.000 0.000 0.000 +2460975.5 1.84448 3.22431 -36905937.2 0.00013 0.00010 13.7 0.000 0.000 0.000 +2460976.5 1.83246 3.21984 -36905648.7 0.00010 0.00010 13.8 0.000 0.000 0.000 +2460977.5 1.82084 3.21732 -36905537.1 0.00011 0.00010 13.1 0.000 0.000 0.000 +2460978.5 1.80798 3.21499 -36905700.6 0.00010 0.00010 12.9 0.000 0.000 0.000 +2460979.5 1.79200 3.20927 -36906128.9 0.00010 0.00010 11.3 0.000 0.000 0.000 +2460980.5 1.77186 3.20151 -36906876.4 0.00010 0.00010 12.9 0.000 0.000 0.000 +2460981.5 1.75101 3.19329 -36907824.9 0.00010 0.00016 10.3 0.000 0.000 0.000 +2460982.5 1.73430 3.18766 -36908879.9 0.00010 0.00015 9.8 0.000 0.000 0.000 +2460983.5 1.71821 3.18566 -36909955.8 0.00010 0.00015 9.7 0.000 0.000 0.000 +2460984.5 1.69915 3.18379 -36910890.0 0.00013 0.00040 9.1 0.000 0.000 0.000 +2460985.5 1.67868 3.18204 -36911511.5 0.00014 0.00040 10.4 0.000 0.000 0.000 +2460986.5 1.65825 3.17865 -36911782.6 0.00015 0.00043 10.5 0.000 0.000 0.000 +2460987.5 1.64029 3.17076 -36911881.3 0.00016 0.00044 14.3 0.000 0.000 0.000 +2460988.5 1.62985 3.16313 -36911825.4 0.00017 0.00048 13.7 0.000 0.000 0.000 +2460989.5 1.62423 3.15765 -36911817.0 0.00091 0.00091 13.6 0.000 0.000 0.000 +2460990.5 1.61545 3.15305 -36912010.6 0.00091 0.00091 14.3 0.000 0.000 0.000 +2460991.5 1.60161 3.15145 -36912406.4 0.00091 0.00091 12.5 0.000 0.000 0.000 +2460992.5 1.58373 3.15344 -36912914.5 0.00091 0.00090 12.5 0.000 0.000 0.000 +2460993.5 1.56422 3.15658 -36913563.9 0.00091 0.00091 10.8 0.000 0.000 0.000 +2460994.5 1.54585 3.15958 -36914356.3 0.00091 0.00090 11.4 0.000 0.000 0.000 +2460995.5 1.52900 3.16328 -36915091.8 0.00090 0.00090 11.4 0.000 0.000 0.000 +2460996.5 1.51076 3.16613 -36915699.4 0.00091 0.00090 11.9 0.000 0.000 0.000 +2460997.5 1.49159 3.16503 -36916124.8 0.00091 0.00090 12.5 0.000 0.000 0.000 +2460998.5 1.47388 3.16293 -36916349.5 0.00091 0.00090 11.9 0.000 0.000 0.000 +2460999.5 1.45626 3.16116 -36916449.2 0.00091 0.00090 10.9 0.000 0.000 0.000 +2461000.5 1.43763 3.15663 -36916420.5 0.00091 0.00090 11.0 0.000 0.000 0.000 +2461001.5 1.41813 3.14975 -36916228.1 0.00091 0.00090 9.4 0.000 0.000 0.000 +2461002.5 1.40226 3.14415 -36915984.7 0.00644 0.00415 108.0 0.000 0.000 0.000 +2461003.5 1.38631 3.13938 -36915759.4 0.00956 0.00683 204.1 0.000 0.000 0.000 +2461004.5 1.37181 3.13635 -36915634.8 0.01204 0.00914 302.8 0.000 0.000 0.000 +2461005.5 1.35821 3.13478 -36915691.5 0.01419 0.01125 402.1 0.000 0.000 0.000 +2461006.5 1.34487 3.13488 -36916007.4 0.01611 0.01321 501.7 0.000 0.000 0.000 +2461007.5 1.33147 3.13574 -36916600.0 0.01788 0.01506 601.4 0.000 0.000 0.000 +2461008.5 1.31792 3.13669 -36917409.6 0.01952 0.01683 701.2 0.000 0.000 0.000 +2461009.5 1.30412 3.13776 -36918374.2 0.02106 0.01853 750.0 0.000 0.000 0.000 +2461010.5 1.29028 3.13905 -36919408.7 0.02252 0.02017 550.0 0.000 0.000 0.000 +2461011.5 1.27661 3.14047 -36920379.6 0.02392 0.02176 754.8 0.000 0.000 0.000 +2461012.5 1.26323 3.14191 -36921103.1 0.02525 0.02330 934.4 0.000 0.000 0.000 +2461013.5 1.25022 3.14351 -36921500.7 0.02654 0.02481 1099.4 0.000 0.000 0.000 +2461014.5 1.23755 3.14542 -36921594.5 0.02778 0.02628 1254.3 0.000 0.000 0.000 +2461015.5 1.22521 3.14761 -36921486.2 0.02898 0.02772 1401.6 0.000 0.000 0.000 +2461016.5 1.21308 3.15012 -36921326.7 0.03014 0.02913 1542.9 0.000 0.000 0.000 +2461017.5 1.20104 3.15297 -36921283.3 0.03127 0.03052 1679.2 0.000 0.000 0.000 +2461018.5 1.18908 3.15613 -36921432.8 0.03237 0.03188 1811.3 0.000 0.000 0.000 +2461019.5 1.17716 3.15954 -36921788.1 0.03344 0.03322 1939.9 0.000 0.000 0.000 +2461020.5 1.16531 3.16313 -36922290.7 0.03448 0.03454 2065.2 0.000 0.000 0.000 +2461021.5 1.15352 3.16691 -36922857.2 0.03551 0.03584 2187.7 0.000 0.000 0.000 +2461022.5 1.14183 3.17086 -36923401.1 0.03651 0.03712 2307.7 0.000 0.000 0.000 +2461023.5 1.13025 3.17497 -36923853.2 0.03749 0.03838 2425.5 0.000 0.000 0.000 +2461024.5 1.11879 3.17926 -36924164.2 0.03845 0.03963 2541.1 0.000 0.000 0.000 +2461025.5 1.10745 3.18373 -36924301.9 0.03940 0.04087 2654.8 0.000 0.000 0.000 +2461026.5 1.09623 3.18841 -36924241.3 0.04032 0.04208 2766.8 0.000 0.000 0.000 +2461027.5 1.08511 3.19329 -36923987.7 0.04124 0.04329 2877.2 0.000 0.000 0.000 +2461028.5 1.07410 3.19836 -36923578.6 0.04213 0.04448 2986.0 0.000 0.000 0.000 +2461029.5 1.06319 3.20364 -36923066.8 0.04301 0.04566 3093.4 0.000 0.000 0.000 +2461030.5 1.05236 3.20911 -36922517.5 0.04388 0.04683 3199.5 0.000 0.000 0.000 +2461031.5 1.04164 3.21476 -36922008.4 0.04474 0.04799 3304.3 0.000 0.000 0.000 +2461032.5 1.03101 3.22059 -36921610.7 0.04558 0.04913 3408.0 0.000 0.000 0.000 +2461033.5 1.02049 3.22660 -36921382.2 0.04642 0.05027 3510.5 0.000 0.000 0.000 +2461034.5 1.01007 3.23278 -36921358.5 0.04724 0.05140 3612.0 0.000 0.000 0.000 +2461035.5 0.99978 3.23914 -36921537.0 0.04805 0.05251 3712.4 0.000 0.000 0.000 +2461036.5 0.98960 3.24568 -36921871.3 0.04885 0.05362 3811.9 0.000 0.000 0.000 +2461037.5 0.97953 3.25238 -36922269.6 0.04964 0.05472 3910.5 0.000 0.000 0.000 +2461038.5 0.96959 3.25927 -36922620.3 0.05042 0.05581 4008.2 0.000 0.000 0.000 +2461039.5 0.95978 3.26632 -36922806.7 0.05119 0.05689 4105.1 0.000 0.000 0.000 +2461040.5 0.95009 3.27355 -36922739.4 0.05196 0.05797 4201.2 0.000 0.000 0.000 +2461041.5 0.94053 3.28095 -36922402.8 0.05271 0.05903 4296.5 0.000 0.000 0.000 +2461042.5 0.93110 3.28852 -36921867.2 0.05346 0.06009 4391.1 0.000 0.000 0.000 +2461043.5 0.92180 3.29625 -36921260.3 0.05420 0.06114 4484.9 0.000 0.000 0.000 +2461044.5 0.91264 3.30414 -36920733.9 0.05493 0.06219 4578.1 0.000 0.000 0.000 +2461045.5 0.90363 3.31220 -36920406.0 0.05565 0.06323 4670.6 0.000 0.000 0.000 +2461046.5 0.89476 3.32041 -36920319.0 0.05637 0.06426 4762.5 0.000 0.000 0.000 +2461047.5 0.88603 3.32878 -36920440.5 0.05708 0.06528 4853.7 0.000 0.000 0.000 +2461048.5 0.87746 3.33730 -36920688.9 0.05779 0.06630 4944.4 0.000 0.000 0.000 +2461049.5 0.86905 3.34598 -36920966.3 0.05848 0.06731 5034.4 0.000 0.000 0.000 +2461050.5 0.86079 3.35481 -36921179.1 0.05918 0.06832 5124.0 0.000 0.000 0.000 +2461051.5 0.85269 3.36378 -36921261.0 0.05986 0.06932 5212.9 0.000 0.000 0.000 +2461052.5 0.84475 3.37290 -36921169.4 0.06054 0.07032 5301.4 0.000 0.000 0.000 +2461053.5 0.83698 3.38217 -36920889.6 0.06121 0.07131 5389.3 0.000 0.000 0.000 +2461054.5 0.82938 3.39157 -36920428.7 0.06188 0.07229 5476.8 0.000 0.000 0.000 +2461055.5 0.82195 3.40112 -36919818.3 0.06255 0.07327 5563.7 0.000 0.000 0.000 +2461056.5 0.81470 3.41080 -36919113.1 0.06320 0.07425 5650.2 0.000 0.000 0.000 +2461057.5 0.80763 3.42061 -36918385.7 0.06386 0.07522 5736.2 0.000 0.000 0.000 +2461058.5 0.80073 3.43055 -36917716.1 0.06450 0.07618 5821.8 0.000 0.000 0.000 +2461059.5 0.79402 3.44062 -36917186.1 0.06515 0.07714 5907.0 0.000 0.000 0.000 +2461060.5 0.78750 3.45082 -36916866.7 0.06578 0.07810 5991.7 0.000 0.000 0.000 +2461061.5 0.78116 3.46114 -36916797.5 0.06642 0.07905 6076.0 0.000 0.000 0.000 +2461062.5 0.77502 3.47157 -36916975.8 0.06705 0.07999 6159.9 0.000 0.000 0.000 +2461063.5 0.76907 3.48212 -36917348.5 0.06767 0.08093 6243.4 0.000 0.000 0.000 +2461064.5 0.76332 3.49279 -36917818.3 0.06829 0.08187 6326.6 0.000 0.000 0.000 +2461065.5 0.75777 3.50356 -36918267.3 0.06891 0.08281 6409.3 0.000 0.000 0.000 +2461066.5 0.75242 3.51445 -36918580.0 0.06952 0.08374 6491.7 0.000 0.000 0.000 +2461067.5 0.74727 3.52543 -36918673.8 0.07013 0.08466 6573.7 0.000 0.000 0.000 +2461068.5 0.74233 3.53652 -36918523.0 0.07073 0.08558 6655.4 0.000 0.000 0.000 +2461069.5 0.73760 3.54770 -36918172.3 0.07133 0.08650 6736.8 0.000 0.000 0.000 +2461070.5 0.73308 3.55898 -36917732.1 0.07192 0.08741 6817.7 0.000 0.000 0.000 +2461071.5 0.72877 3.57034 -36917345.1 0.07252 0.08832 6898.4 0.000 0.000 0.000 +2461072.5 0.72467 3.58180 -36917140.8 0.07311 0.08923 6978.8 0.000 0.000 0.000 +2461073.5 0.72079 3.59334 -36917196.8 0.07369 0.09013 7058.8 0.000 0.000 0.000 +2461074.5 0.71714 3.60495 -36917515.3 0.07427 0.09103 7138.5 0.000 0.000 0.000 +2461075.5 0.71370 3.61665 -36918031.5 0.07485 0.09193 7217.9 0.000 0.000 0.000 +2461076.5 0.71048 3.62842 -36918640.1 0.07543 0.09282 7297.0 0.000 0.000 0.000 +2461077.5 0.70749 3.64026 -36919231.1 0.07600 0.09371 7375.8 0.000 0.000 0.000 +2461078.5 0.70472 3.65217 -36919715.7 0.07657 0.09460 7454.4 0.000 0.000 0.000 +2461079.5 0.70218 3.66414 -36920039.3 0.07713 0.09548 7532.6 0.000 0.000 0.000 +2461080.5 0.69987 3.67616 -36920174.3 0.07769 0.09636 7610.6 0.000 0.000 0.000 +2461081.5 0.69778 3.68825 -36920120.4 0.07825 0.09724 7688.3 0.000 0.000 0.000 +2461082.5 0.69593 3.70039 -36919904.7 0.07881 0.09811 7765.7 0.000 0.000 0.000 +2461083.5 0.69431 3.71257 -36919575.2 0.07936 0.09898 7842.8 0.000 0.000 0.000 +2461084.5 0.69293 3.72480 -36919203.8 0.07991 0.09985 7919.7 0.000 0.000 0.000 +2461085.5 0.69178 3.73707 -36918873.3 0.08046 0.10071 7996.4 0.000 0.000 0.000 +2461086.5 0.69086 3.74938 -36918668.1 0.08100 0.10158 8072.8 0.000 0.000 0.000 +2461087.5 0.69019 3.76172 -36918665.6 0.08155 0.10244 8148.9 0.000 0.000 0.000 +2461088.5 0.68975 3.77409 -36918918.9 0.08208 0.10329 8224.8 0.000 0.000 0.000 +2461089.5 0.68955 3.78649 -36919440.0 0.08262 0.10414 8300.5 0.000 0.000 0.000 +2461090.5 0.68959 3.79891 -36920185.8 0.08315 0.10500 8375.9 0.000 0.000 0.000 +2461091.5 0.68986 3.81135 -36921064.0 0.08369 0.10584 8451.1 0.000 0.000 0.000 +2461092.5 0.69038 3.82380 -36921945.2 0.08421 0.10669 8526.1 0.000 0.000 0.000 +2461093.5 0.73714 3.83916 -36921670.3 0.08132 0.10620 8749.7 0.000 0.000 0.000 +2461094.5 0.73807 3.85108 -36922214.4 0.08181 0.10701 8823.7 0.000 0.000 0.000 +2461095.5 0.73923 3.86300 -36922503.8 0.08230 0.10782 8897.6 0.000 0.000 0.000 +2461096.5 0.74062 3.87491 -36922571.8 0.08279 0.10863 8971.3 0.000 0.000 0.000 +2461097.5 0.74226 3.88683 -36922512.6 0.08327 0.10943 9044.8 0.000 0.000 0.000 +2461098.5 0.74412 3.89874 -36922455.9 0.08375 0.11023 9118.0 0.000 0.000 0.000 +2461099.5 0.74623 3.91064 -36922530.6 0.08424 0.11103 9191.1 0.000 0.000 0.000 +2461100.5 0.74857 3.92252 -36922829.4 0.08471 0.11183 9263.9 0.000 0.000 0.000 +2461101.5 0.75115 3.93438 -36923384.9 0.08519 0.11263 9336.6 0.000 0.000 0.000 diff --git a/run_examples.sh b/run_examples.sh new file mode 100755 index 0000000..4eb0b6e --- /dev/null +++ b/run_examples.sh @@ -0,0 +1,73 @@ +#!/bin/bash +# Example script showing how to run the pipeline with different configurations + +echo "============================================" +echo "VLBI Pipeline Configuration Examples" +echo "============================================" +echo + +# Example 1: Using --config parameter (Recommended) +echo "Example 1: Using --config parameter" +echo "--------------------------------------------" +echo "Command:" +echo " ParselTongue main.py --config configs/ba158l1_input.py" +echo +echo "This is the recommended way to specify configuration." +echo + +# Example 2: Using environment variable +echo "Example 2: Using environment variable" +echo "--------------------------------------------" +echo "Commands:" +echo " export VLBI_CONFIG=configs/bz111cl_input.py" +echo " ParselTongue main.py" +echo +echo "Useful for batch processing or when you want to" +echo "set the config once and run multiple commands." +echo + +# Example 3: Using relative path +echo "Example 3: Using relative path" +echo "--------------------------------------------" +echo "Command (from project root):" +echo " cd vlbi-pipeline" +echo " ParselTongue main.py --config ../configs/ba158l1_input.py" +echo + +# Example 4: Using absolute path +echo "Example 4: Using absolute path" +echo "--------------------------------------------" +echo "Command:" +echo " ParselTongue main.py --config /full/path/to/configs/ba158l1_input.py" +echo + +# Example 5: Batch processing +echo "Example 5: Batch processing multiple observations" +echo "--------------------------------------------" +echo "Script:" +cat << 'EOF' + #!/bin/bash + for config in configs/*_input.py; do + if [[ "$config" != "configs/template_input.py" ]]; then + echo "Processing $config..." + ParselTongue main.py --config "$config" + fi + done +EOF +echo + +# Quick test +echo "============================================" +echo "Quick Configuration Test" +echo "============================================" +echo +echo "To test if configuration loading works:" +echo " python test_config_loading.py" +echo + +echo "============================================" +echo "For more information, see:" +echo " - configs/README.md" +echo " - configs/USAGE.md" +echo " - configs/template_input.py" +echo "============================================" diff --git a/simulation/cor_gain.py b/simulation/cor_gain.py new file mode 100644 index 0000000..ff7b39f --- /dev/null +++ b/simulation/cor_gain.py @@ -0,0 +1,553 @@ +import time +import sys, shutil +import os +import sys +import numpy as np +import argparse +from pathlib import Path +from astropy.io import fits +import warnings +from astropy.io.fits.verify import VerifyWarning +# Note: this single script file read the gain factor array/matrix and +# apply the gain factor to the uvfits data by surgery (directly modify the vis data in uvfits file) +# input: original uvfits file, gain factor array/matrix +# output: uvfits file after gain application (numbers) + +def gen_ant_dict( + ant_nums: int, + gains: np.ndarray + ) -> dict: + """ + 将天线号数组和增益数组转换为字典形式 + Parameters + ---------- + ant_nums : int, number of antenna + 天线数量。 + gains : np.ndarray, shape (Nants_data,) + 每个天线的增益因子数组。 + Returns + ------- + gain_dict : dict + 天线号到增益因子的映射字典。 + """ + if ant_nums != gains.shape[0]: + raise ValueError(f"ant_nums {ant_nums} != gains shape {gains.shape}") + ant_list = np.arange(1, ant_nums + 1) + gain_dict = {ant: gain for ant, gain in zip(ant_list, gains)} + return gain_dict + + +def baseline_to_ants(baseline): + """ + AIPS UVFITS baseline 编码:baseline = 256*ant1 + ant2 + """ + ant1 = baseline // 256 + ant2 = baseline % 256 + # print(f"Baseline {baseline} -> Antennas ({ant1}, {ant2})") + return int(ant1), int(ant2) + +def apply_gains_to_uvfits_by_surgery( + in_file: Path, + out_uvfits: str, + gains_by_antnum: np.ndarray, + conj_second=False): + """ + 复制原文件 -> 只修改 vis 的 (Re, Im);其它表(AN/SU/...)原样保留 + params: + in_file: input uvf file path + out_uvfits: output uv file name, will be in the same dir with input file + gains_by_antnum: dict {ant_number: gain} 或者 array(用天线号做索引) + conj_second: 若你未来做 complex gain:fac = g_i * conj(g_j) + """ + os.chdir(in_file.parent) + shutil.copyfile(in_file.name, out_uvfits) + + warnings.filterwarnings("ignore", category=VerifyWarning) + with fits.open(out_uvfits, mode="update", memmap=False) as hdul: + # UVFITS visibilities 通常在 PRIMARY 的 random groups 里 + hdu = hdul[0] + gdata = hdu.data # GroupData + + # group parameters: UU, VV, WW, BASELINE, DATE 等 + baseline_arr = gdata.par("BASELINE") # shape (Nblts,) + print("Baseline array shape:", baseline_arr.shape) + # vis 数据通常在 gdata.data 里,形状因数据而异 + # 常见是 (Nblts, 1, Nchan, Npol, 3) 或 (Nblts, Nchan, Npol, 3) + prim_data = gdata.data + + # 找到最后一维的 Re/Im/Wt: [..., 0]=Re, [...,1]=Im, [...,2]=Wt + if prim_data.shape[-1] != 3: + raise ValueError(f"Unexpected DATA last axis (expect 3=Re/Im/Wt), got {prim_data.shape}") + + # 构造每条记录的增益因子 + fac = np.empty(baseline_arr.shape[0], dtype=np.complex128) + for i, bl in enumerate(baseline_arr): + a1, a2 = baseline_to_ants(int(bl)) + g1 = gains_by_antnum[a1] + g2 = gains_by_antnum[a2] + if conj_second: + fac[i] = g1 * np.conj(g2) + else: + fac[i] = g1 * g2 + + # 把 fac broadcast 到 DATA 的所有频率/极化维 + # 先把 Re/Im 取出来合成 complex,再乘,再写回 Re/Im + re = prim_data[..., 0] + im = prim_data[..., 1] + vis = re + 1j * im + + # fac 需要 reshape 到 (Nblts, 1, 1, 1, ...) 以广播 + # 这里做一个通用 reshape:前面是 Nblts,后面补 1 + reshape = (fac.shape[0],) + (1,) * (vis.ndim - 1) + vis *= fac.reshape(reshape) + + prim_data[..., 0] = vis.real + prim_data[..., 1] = vis.imag + # 计算有效可见源数量(Re/Im 非 NaN) + vis_count = np.sum(np.isfinite(re) & np.isfinite(im)) + gains_used = np.array(gains_by_antnum) # I think this is a dummy output just to keep consisitency + + # 如果你想把权重也按 |fac|^2 缩放(通常系统误差MC不需要),可加: + # data[..., 2] /= (np.abs(fac).reshape(reshape)**2) + + hdu.data = gdata # 更新 + hdul.flush() + print(f"Applied gains and updated UVFITS written to {out_uvfits}") + + return out_uvfits, vis_count, gains_used + +def load_antenna_map_uvfits(path: str) -> dict[int, str]: + """ + 返回 {ant_num: ant_name},自动兼容常见 UVFITS AN 表列名: + - 天线号列:ANTENNA_NO 或 NOSTA + - 名称列:ANNAME 或 ANNAME1(少见) + """ + warnings.filterwarnings("ignore", category=VerifyWarning) + with fits.open(path) as hdul: + # 你的文件里 EXTNAME 就是 "AIPS AN" + an_hdu = None + for h in hdul: + ext = (h.header.get("EXTNAME") or "").strip().upper() + if ext == "AIPS AN" or ext.startswith("AIPS AN"): + an_hdu = h + break + if an_hdu is None: + raise RuntimeError("AN table not found (EXTNAME 'AIPS AN').") + + cols = [c.name.upper() for c in an_hdu.columns] + data = an_hdu.data + + # 找天线号列 + ant_col_name = None + for cand in ("ANTENNA_NO", "NOSTA"): + if cand in cols: + ant_col_name = cand + break + if ant_col_name is None: + raise RuntimeError(f"Cannot find antenna-number column. Columns={cols}") + + # 找天线名列 + name_col_name = None + for cand in ("ANNAME", "ANNAME1"): + if cand in cols: + name_col_name = cand + break + if name_col_name is None: + raise RuntimeError(f"Cannot find antenna-name column. Columns={cols}") + + ant_nums = data[ant_col_name] + names = data[name_col_name] + + # FITS 定长字符串常带空格,要 strip + ant_map = {int(n): str(nm).strip() for n, nm in zip(ant_nums, names)} + return ant_map + +def jackknife_drop_antenna( + in_file: Path, + out_uvfits: str, + drop_ant: int, + zero_data: bool = False, + ): + """ + 生成一个“等效删除某天线”的 UVFITS: + - 保留所有表和结构不变 + - 对所有包含 drop_ant 的记录,把 weight 置 0(并可选把 Re/Im 置 0) + drop_ant: AIPS ant number(start from 1) + zero_data: If True, set Re/Im to 0 for dropped records (cleaner; does not affect DIFMAP because weight=0) + """ + os.chdir(in_file.parent) + ant_map = load_antenna_map_uvfits(in_file) + ant_name = ant_map.get(drop_ant, f"ANT{drop_ant}") + if os.path.exists(out_uvfits): + print(f"Warning: output file {out_uvfits} already exists, in this mode, no need to overwrite.") + return out_uvfits, "0 of 0", ant_name + shutil.copyfile(in_file.name, out_uvfits) + warnings.filterwarnings("ignore", category=VerifyWarning) + with fits.open(out_uvfits, mode="update", memmap=False) as hdul: + hdu = hdul[0] + gdata = hdu.data + + baseline_arr = gdata.par("BASELINE") # (Nblt,) + data = gdata.data # [..., 3] last axis: Re, Im, Wt (通常如此) + + if data.shape[-1] != 3: + raise ValueError(f"Unexpected DATA last axis (expect 3=Re/Im/Wt), got {data.shape}") + + # 找到需要丢弃的记录(所有包含 drop_ant 的基线-时间记录) + mask = np.zeros(baseline_arr.shape[0], dtype=bool) + for i, bl in enumerate(baseline_arr): + a1, a2 = baseline_to_ants(int(bl)) + if a1 == drop_ant or a2 == drop_ant: + mask[i] = True + print(f"Dropping antenna {drop_ant} ({ant_name}), total records modified: ", np.sum(mask)) + n_drop = int(mask.sum()) + v_drop = f"{int(mask.sum())} of {gdata.shape[0]}" + # the number of visibilities droped + + # 将这些记录的权重置0;可选置零 Re/Im + # data 的第一维就是 group (Nblt) + data[mask, ..., 2] = 0.0 + if zero_data: + data[mask, ..., 0] = 0.0 + data[mask, ..., 1] = 0.0 + # 写个 HISTORY 方便追踪 + hdr = hdu.header + hdr.add_history(f"JACKKNIFE: drop_ant={drop_ant}, set weight=0 for {n_drop} records.") + if zero_data: + hdr.add_history("JACKKNIFE: also set Re/Im=0 for dropped records.") + + hdul.flush() + print(f"Jackknife UVFITS written to {out_uvfits}, dropped antenna {drop_ant}, total {n_drop} records affected.") + + return out_uvfits, v_drop, ant_name + +def jackknife_drop_time_frac( + in_uvfits: Path, + out_uvfits: str, + n_bins: int = 10, + bin_index: int = 0, + zero_data: bool = False, +): + """ + 用 DATE(JD, 含小数天) 作为时间轴,把观测时间跨度均分成 n_bins 段, + 丢弃第 bin_index 段(weight=0,可选 Re/Im=0),写出新 uvfits。 + # old version, only work for fix times time bins (e.g. 10 bins, so maximum 10 jk samples) + - n_bins: 例如 10 + - bin_index: 0..n_bins-1 + """ + if not (0 <= bin_index < n_bins): + raise ValueError(f"bin_index must be in [0, {n_bins-1}]") + os.chdir(in_uvfits.parent) + n_drop = f"{bin_index + 1}th out of {n_bins} time bins" + if os.path.exists(out_uvfits): + print(f"Warning: output file {out_uvfits} already exists, in this mode, no need to overwrite.") + return out_uvfits, "0 of 0", n_drop + shutil.copyfile(in_uvfits, out_uvfits) + warnings.filterwarnings("ignore", category=VerifyWarning) + with fits.open(out_uvfits, mode="update", memmap=False) as hdul: + gdata = hdul[0].data + data = gdata.data + if data.shape[-1] != 3: + raise ValueError(f"Unexpected DATA last axis (expect 3=Re/Im/Wt), got {data.shape}") + cols = set([n.upper() for n in gdata.columns.names]) + if "DATE" not in cols: + raise RuntimeError(f"No DATE column found. Available={sorted(cols)}") + if "_DATE" not in cols: + raise RuntimeError(f"No _DATE column found. Available={sorted(cols)}") + + date = np.asarray(gdata["DATE"], dtype=float) + ddate = np.asarray(gdata["_DATE"], dtype=float) + t = date + ddate # 真实 JD(天) + tmin, tmax = float(np.nanmin(t)), float(np.nanmax(t)) + edges = np.linspace(tmin, tmax, n_bins + 1) # 等时间宽度 + print(edges) + # todo: try make random starting time and 1/10 time width for more robust jk test + t0, t1 = edges[bin_index], edges[bin_index + 1] + # 最后一段包含右端点避免漏掉最后一个时刻 + if bin_index == n_bins - 1: + mask = (t >= t0) & (t <= t1) + else: + mask = (t >= t0) & (t < t1) + v_drop = f"{int(mask.sum())} of {gdata.shape[0]}." + + # 置零权重(DIFMAP 等效丢弃) + data[mask, ..., 2] = 0.0 + if zero_data: + data[mask, ..., 0] = 0.0 + data[mask, ..., 1] = 0.0 + + # 记录信息:把段的时间跨度也写进去(分钟) + span_min = (t1 - t0) * 24 * 60 + hdul[0].header.add_history( + f"JACKKNIFE: drop time-fraction bin {bin_index+1}/{n_bins}, " + f"JD[{t0:.10f},{t1:.10f}] span~{span_min:.2f}min nrec={n_drop}" + ) + hdul.flush() + + return out_uvfits, v_drop, n_drop + +def random_drop_timeblock( + in_uvfits: Path, + out_uvfits: str, + drop_frac: float = 0.10, + edge_frac: float = 0.01, + seed: int | None = None, + zero_data: bool = False, +): + """ + 在有效时间区间内随机选择一个连续时间窗并丢弃(weight=0)。 + + 时间轴:t = DATE + _DATE (day) + + 参数: + drop_frac : 丢弃窗口占有效时长的比例(0= t_start) & (t < t_end) + v_drop = f"{int(mask.sum())} of {gdata.shape[0]}" + start_frac = (t_start - tmin) / span * 100 + end_frac = (t_end - tmin) / span * 100 + n_drop = f"Dropping {start_frac:.2f}% - {end_frac:.2f}% of total time span." + + # 丢弃:权重置0(可选置0数据) + data[mask, ..., 2] = 0.0 + if zero_data: + data[mask, ..., 0] = 0.0 + data[mask, ..., 1] = 0.0 + + hdul[0].header.add_history( + f"RANDOM_TIME_DROP: drop_frac={drop_frac:.4f} edge_frac={edge_frac:.4f} " + f"JD[{t_start:.10f},{t_end:.10f}) nrec={n_drop}" + ) + hdul.flush() + + return out_uvfits, v_drop, n_drop + +def random_drop_timeblock_per_ant( + in_uvfits: Path, + out_uvfits: str, + ant_nums: int | None = None, # start from 1 + drop_frac: float = 0.10, + edge_frac: float = 0.02, + seed: int | None = None, + zero_data: bool = False, # 强烈建议默认 False:只置 weight=0 + ): + """ + 每个天线独立随机选择一个连续时间窗(长度=drop_frac*有效时长), + 并将所有包含该天线、且时间落在该窗内的记录置 weight=0。 + + 时间:t = DATE + _DATE (单位 day) + 有效区间: [tmin+edge_frac*span, tmax-edge_frac*span] + + 返回: + windows: dict {ant: (t_start, t_end)} + n_drop: 被置0权重的记录数 + """ + if not (0.0 < drop_frac < 1.0): + raise ValueError("drop_frac must be in (0, 1)") + if not (0.0 <= edge_frac < 0.5): + raise ValueError("edge_frac must be in [0, 0.5)") + os.chdir(in_uvfits.parent) + rng = np.random.default_rng(seed) + shutil.copyfile(in_uvfits, out_uvfits) + + warnings.filterwarnings("ignore", category=VerifyWarning) + with fits.open(out_uvfits, mode="update", memmap=False) as hdul: + gdata = hdul[0].data + data = gdata.data + if data.shape[-1] != 3: + raise ValueError(f"Unexpected DATA last axis (expect 3=Re/Im/Wt), got {data.shape}") + + date = np.asarray(gdata["DATE"], dtype=float) + ddate = np.asarray(gdata["_DATE"], dtype=float) + t = date + ddate # 真实 JD (day) + + bl = np.asarray(gdata["BASELINE"], dtype=float) + bl_int = np.rint(bl).astype(int) + a1 = bl_int // 256 + a2 = bl_int % 256 + + # 自动推断天线集合(如果不传 ant_nums) + if ant_nums is None: + print("No ant_nums provided, inferring from data...") + ants = np.unique(np.concatenate([a1, a2])).astype(int) + ants = ants[ants > 0] # 去掉 0 + if ants.size == 0: + raise RuntimeError("No valid antenna numbers decoded from BASELINE.") + else: + ants = list(range(1, ant_nums + 1)) + print(f"Processing antennas: {ants}") + # calculate effective time range + tmin, tmax = float(np.nanmin(t)), float(np.nanmax(t)) + span = tmax - tmin + if span <= 0: + raise RuntimeError("Time span is non-positive.") + + te0 = tmin + edge_frac * span + te1 = tmax - edge_frac * span + eff_span = te1 - te0 + if eff_span <= 0: + raise RuntimeError("Effective span <= 0 (edge_frac too large?).") + + w = drop_frac * eff_span + + if w <= 0: + raise RuntimeError("Drop window length <= 0.") + + # 为了向量化:建立从 ant_num -> index 的映射,并存每根天线的窗 + ants = np.asarray(ants, dtype=int) + ant_to_idx = {ant: i for i, ant in enumerate(ants)} + idx1 = np.array([ant_to_idx.get(x, -1) for x in a1], dtype=int) + idx2 = np.array([ant_to_idx.get(x, -1) for x in a2], dtype=int) + + # 每根天线一个随机窗 + starts = np.empty(len(ants), dtype=float) + ends = np.empty(len(ants), dtype=float) + for i in range(len(ants)): + s = rng.uniform(te0, te1 - w) + starts[i] = s + ends[i] = s + w + + # 每条记录对应的 ant1/ant2 窗 + # idx 可能为 -1(极少见),做保护:-1 的窗给 NaN + s1 = np.full(t.shape[0], np.nan); e1 = np.full(t.shape[0], np.nan) + s2 = np.full(t.shape[0], np.nan); e2 = np.full(t.shape[0], np.nan) + ok1 = idx1 >= 0; ok2 = idx2 >= 0 + s1[ok1] = starts[idx1[ok1]]; e1[ok1] = ends[idx1[ok1]] + s2[ok2] = starts[idx2[ok2]]; e2[ok2] = ends[idx2[ok2]] + + # 若时间落在 ant1 或 ant2 的窗口内,则 drop + mask = ((t >= s1) & (t < e1)) | ((t >= s2) & (t < e2)) + # 记录每根天线的窗 + #transform mjd to fraction of total time span + trange_a = (starts - tmin) / span + trange_b = (ends - tmin) / span + windows_dropped = {int(ant): (round(float(trange_a[j]), 3), round(float(trange_b[j]), 3)) + for j, ant in enumerate(ants)} + print("Random drop time windows per antenna (fraction of total time span):") + v_drop = int(mask.sum()) + + # 关键:只置权重,避免相位置零伪数据 + data[mask, ..., 2] = 0.0 + if zero_data: + data[mask, ..., 0] = 0.0 + data[mask, ..., 1] = 0.0 + + hdul[0].header.add_history( + f"RANDOM_ANT_TIME_DROP: per-antenna drop_frac={drop_frac:.4f} edge_frac={edge_frac:.4f} nrec={v_drop}" + ) + hdul.flush() + + return out_uvfits, v_drop, windows_dropped + +def main(gains_list, input_uv, out_suffix, out_dir, mode='gain_var'): + + ant_nums = len(gains_list) + ant_dict = gen_ant_dict(ant_nums, np.array(gains_list)) + filepath = Path(input_uv) + os.chdir(filepath.parent) + os.makedirs(out_dir, exist_ok=True) + out_uv = Path(out_dir) / f"{filepath.stem}_{out_suffix}{filepath.suffix}" + ## The out_suffix will be like gcor_1, jk_dropant_1, jk_droptbin_1, and are set in the sim_main.py + if mode == 'gain_var': + out_uvdata, vis_count, gains_used = apply_gains_to_uvfits_by_surgery(filepath,out_uv,ant_dict) + out_par_name = "gains" + out_par = gains_list + print(f"Gain correction applied and file with {out_suffix} saved to {out_uvdata}.") + elif mode == 'jk_drop_ant': + # here the out_suffix is like jk_dropant_1, just extract the ant number + ant_to_drop = int(out_suffix.split('_')[-1]) + out_uvdata, vis_dropped, ant_dropped = jackknife_drop_antenna(filepath,out_uv,drop_ant=ant_to_drop,zero_data=False) + out_par_name = "dropped_ant" + out_par = f"dropped antenna: {ant_dropped}, dropped visibilities: {vis_dropped}" + print(f"Jackknife (drop antenna {ant_dropped}) applied and file with {out_suffix} saved to {out_uvdata}.") + elif mode == 'jk_drop_time': + # here the out_suffix is like jk_droptbin_1, just extract the bin index + bin_index = int(out_suffix.split('_')[-1]) - 1 # make it start from 0 + print(f"Dropping time bin index: {bin_index}") + out_uvdata, vis_dropped, time_bin_dropped = jackknife_drop_time_frac(filepath,out_uv,n_bins=10,bin_index=bin_index,zero_data=False) + # new method: random drop time block + out_par_name = "dropped_time" + out_par = f"dropped time bin: {time_bin_dropped}, dropped visibilities: {vis_dropped}" + print(f"Jackknife (drop time bin {time_bin_dropped}) applied and file with {out_suffix} saved to {out_uvdata}.") + elif mode == 'jk_drop_timeblock': + out_uvdata, vis_dropped, time_frac_dropped = random_drop_timeblock(filepath,out_uv,drop_frac=0.10,edge_frac=0.01) + out_par_name = "dropped_timeblock" + out_par = f"dropped time block: {time_frac_dropped}, dropped visibilities: {vis_dropped}" + print(f"Jackknife (drop time block {time_frac_dropped}) applied and file with {out_suffix} saved to {out_uvdata}.") + elif mode == 'drop_timeblock_per_ant': + out_uvdata, vis_dropped, time_windows_dropped = random_drop_timeblock_per_ant(filepath,out_uv,ant_nums=ant_nums,drop_frac=0.10,edge_frac=0.01) + out_par_name = "dropped_timeblock_per_ant" + out_par = f"dropped time block: {time_windows_dropped}, dropped visibilities: {vis_dropped}" + print(f"Jackknife (drop time block {time_windows_dropped}) applied and file with {out_suffix} saved to {out_uvdata}.") + else: + raise ValueError(f"Unknown mode: {mode}") + + + + return out_uvdata, out_par_name, out_par + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Apply gain correction to UV data.') + parser.add_argument('--uv_name', type=str, required=True, help='Input AIPS UV data name (e.g., TARGET.uvf)') + parser.add_argument('--gcor_list', type=list, required=True, help='the list contain gain factor for each antenna') + parser.add_argument('--out_suffix', type=str, required=True, help='Suffix for the output UV data file name') + parser.add_argument('--out_dir', type=str, default='./simulations/', help='Output directory for corrected UV data') + parser.add_argument('--mode', type=str, default='gain_var', choices=['gain_var', 'jk_drop_ant', 'jk_drop_time', 'jk_drop_timeblock', 'drop_timeblock_per_ant'], help='Mode of operation: gain variation or jackknife') + args = parser.parse_args() + gains_list = args.gcor_list + input_uv = args.uv_name + out_suffix = args.out_suffix + main(gains_list, input_uv, out_suffix, args.out_dir, mode=args.mode) +### Usage example: +# python cor_gain.py --uv_name "data/target.uvf" --gcor_list "[1.0, 0.95, 1.05, 1.02]" --out_suffix "gcor_1" --out_dir "./corrected_uvs/" \ No newline at end of file diff --git a/simulation/fit_in_difmap.py b/simulation/fit_in_difmap.py new file mode 100644 index 0000000..d11c9b0 --- /dev/null +++ b/simulation/fit_in_difmap.py @@ -0,0 +1,325 @@ +import pexpect +import os +import sys +import re +import time, shutil +import numpy as np +import pandas as pd +from pathlib import Path +import argparse + + +def init_difmap(timeout=8000000): + """初始化 difmap 会话并返回 difmap 对象和日志文件名""" + difmap = pexpect.spawn('difmap') + difmap.waitnoecho + difmap.expect('0>') + p = re.compile(r'(difmap.log_?\d*)') + logfile = p.findall(difmap.before.decode())[0] + difmap.timeout = timeout + return difmap, logfile + +def cleanup_difmap(difmap, logfile): + """关闭 difmap 会话并删除日志文件""" + difmap.sendline('quit') + difmap.close() + if os.path.isfile(logfile): + try: + os.remove(logfile) + except Exception: + print(f"Can not find or delete logfile: {logfile}, will just ignore it.") + pass + +def setup_mapsize(difmap, freq): + """根据频率设置地图大小""" + if freq <= 3: + difmap.sendline('mapsize 2048,0.4') + elif 3.1 <= freq <= 10: + difmap.sendline('mapsize 2048,0.2') + elif freq >= 10.1: + difmap.sendline('mapsize 2048,0.1') + difmap.expect('0>') + +def prepare_observation(difmap, filename,file_exname, freq): + """准备观测:加载文件,选择偏振,设置地图大小和 UV 权重""" + uvf_file = filename + '.' + file_exname + print(f"Loading UV file: {uvf_file}") + difmap.sendline('obs %s' % uvf_file) + difmap.expect('0>') + difmap.sendline('select i') + difmap.expect('0>') + setup_mapsize(difmap, freq) + difmap.sendline('uvw 0,-2') + difmap.expect('0>') + +def getsnr_difmap(difmap): + difmap.sendline('invert') + difmap.expect('0>') + difmap.sendline('print peak(flux,max)/imstat(rms)') + difmap.expect('0>') + # 修改正则表达式以支持科学计数法(如 7.333e-5) + p = re.compile(r'([-+]?[0-9]*\.?[0-9]+(?:[eE][-+]?[0-9]+)?)') + s = difmap.before.decode() + print(p.findall(s)) + snr = float(p.findall(s)[0]) + difmap.sendline('print imstat(rms)') + difmap.expect('0>') + s2 = difmap.before.decode() + rms = float(p.findall(s2)[0]) + difmap.sendline('print peak(x,max)') + difmap.expect('0>') + s3 = difmap.before.decode() + peakx = float(p.findall(s3)[0]) + difmap.sendline('print peak(y,max)') + difmap.expect('0>') + s4 = difmap.before.decode() + peaky = float(p.findall(s4)[0]) + return snr,rms,peakx,peaky + +def iterative_modelfit(difmap, snr_threshold=5.5, max_iterations=12, model_type = 1): + """迭代模型拟合:持续添加组件直到 SNR 低于阈值或达到最大迭代次数 + parm: + difmap: the difmap progress from initi_difmap + snr_threshold: the snr cut to decide how many iterations to go + max_iteration: the maximum iterations. The progress will end if either of the above two parms reach the limit + model_type: 0, delta; 1, circular gaussian; 2, elliptical gaussian + """ + snr, rms, pkx, pky = getsnr_difmap(difmap) + print(snr, rms, pkx, pky) + if snr <=6: # for weak sources, force start point to (0,0) + # if pkx >=2 or pky >=2: + print("weak source, set start point to (0,0)") + pkx=0; pky=0 + nm = 0 + while snr > snr_threshold: + if nm >= max_iterations: + print('limit reached, stop fitting') + break + # help addcmp flux, v_flux, xpos, ypos, v_pos, major, v_major, ratio, v_ration, theta, v_theta, type + if model_type not in [0,1,2]: + print("model_type must be 0 (delta), 1 (circular gaussian), or 2 (elliptical gaussian). Using default circular gaussian (1).") + model_type = 1 + if model_type == 0: + difmap.sendline('addcmp 0.1,true,%f,%f,true,0,false,1,false,0,true,0' % (pkx, pky)) + elif model_type == 1: + pkx,pky = 0,0 + difmap.sendline('addcmp 0.1,true,%f,%f,true,0.3,true,1,false,0,true,1' % (pkx, pky)) + else: # for elliptical gaussian + difmap.sendline('addcmp 0.1,true,%f,%f,true,0.3,true,1,true,0,true,1' % (pkx, pky)) + difmap.expect('0>') + difmap.sendline('modelfit 100') + difmap.expect('0>', timeout=5000) + snr, rms, pkx, pky = getsnr_difmap(difmap) + print(snr, rms, pkx, pky) + difmap.sendline('modelfit 100') + difmap.expect('0>', timeout=1000) + nm += 1 + return nm + +def simple_modelfit(difmap): + """简单模型拟合:执行一次 modelfit 命令""" + difmap.sendline('addcmp 0.1,true,0,0,true,0.3,true,1,false,0,true,1') + difmap.expect('0>') + difmap.sendline('modelfit 100') + difmap.expect('0>', timeout=5000) + difmap.sendline('modelfit 50') + difmap.expect('0>', timeout=1000) + +def simple_modelfit_gx(difmap): + """简单模型拟合固定位置:执行一次 modelfit 命令""" + # For bl307gx only, which is known to be weak + difmap.sendline('addcmp 0.1,true,0.322,0.515,false,0.3,true,1,false,0,true,1') + difmap.expect('0>') + difmap.sendline('modelfit 100') + difmap.expect('0>', timeout=5000) + difmap.sendline('modelfit 50') + difmap.expect('0>', timeout=1000) + +def read_observation(difmap,filename): + par_file = filename + '.par' + difmap.sendline('@ %s' % par_file) + difmap.expect('0>') + +def read_difmap_script(difmap,script_path,outname): + difmap.sendline('@%s %s' % (script_path, outname)) + difmap.expect('Writing difmap environment.*0>',timeout=5000) + +def save_df_file(difmap,filename): + mod_file = filename + difmap.sendline('save %s' % mod_file) + difmap.expect('0>') + +def parse_model_table( + text: str, + default_freq=None + ) -> pd.DataFrame: + rows = [] + + def to_float(tok: str) -> float: + # 兼容偶尔出现的 0.123v 这种标记(这里一般不会出现在 East/North 表,但顺手处理) + tok = tok.rstrip("v") + try: + return float(tok) + except Exception: + return np.nan + + for raw_line in text.splitlines(): + line = raw_line.strip() + if not line: + continue + if line.startswith("#") or line.startswith("!") or line.startswith("-"): + continue + if "0>" in line: + continue + + parts = line.split() + + # 有些 difmap 输出会带 component 编号(第一列是整数),这里做兼容 + comp_id = None + if parts and parts[0].isdigit(): + comp_id = int(parts[0]) + parts = parts[1:] + + # East/North 那张表:最短到 theta_err 一共 15 列 + if len(parts) < 15: + continue + + # 关键:只吃 East/North 那张表(第7列是 shape,且是纯字母,如 gauss/point) + # 这能自动跳过你前面那行 "0.00346423v 0.141708v ... 1" + if not (len(parts) > 6 and parts[6].isalpha()): + continue + + row = { + "component_id": comp_id, + "flux_jy": to_float(parts[0]), + "flux_err_jy": to_float(parts[1]), + "x_arcsec": to_float(parts[2]), + "x_err_arcsec": to_float(parts[3]), + "y_arcsec": to_float(parts[4]), + "y_err_arcsec": to_float(parts[5]), + "type": parts[6], + "ra_deg": to_float(parts[7]), + "dec_deg": to_float(parts[8]), + "major_fwhm_mas": round(to_float(parts[9]) * 1000, 3), + "major_fwhm_err_mas": round(to_float(parts[10]) * 1000, 3), + "minor_fwhm_arcsec": to_float(parts[11]), + "minor_fwhm_err_arcsec": to_float(parts[12]), + "theta_deg": to_float(parts[13]), + "theta_err_deg": to_float(parts[14]), + "freq_hz": np.nan, + "spectral_index": np.nan, + "spectral_index_err": np.nan, + } + + # 如果后面真的有 freq/specIndex,就补上 + if len(parts) >= 16: + row["freq_hz"] = to_float(parts[15]) + if len(parts) >= 17: + row["spectral_index"] = to_float(parts[16]) + if len(parts) >= 18: + row["spectral_index_err"] = to_float(parts[17]) + + # 如果输出没带 freq,但你知道观测频率,就用 default_freq 补齐 + if (np.isnan(row["freq_hz"]) or row["freq_hz"] == 0.0) and default_freq is not None: + row["freq_hz"] = float(default_freq) + # if the fitted size is zero or too large, return a all nan row: hardcoded criteria + if row["major_fwhm_mas"] <= 0.02 or row["major_fwhm_mas"] >= 2: + print(f"The fitted size is too small or too large: {row['major_fwhm_mas']} mas, return a all nan row as a retry signal.") + row["flux_jy"] = np.nan + rows.append(row) + + df = pd.DataFrame(rows) + + # 如果 component_id 一列全是空,就删掉,表更干净 + if "component_id" in df.columns and df["component_id"].isna().all(): + df = df.drop(columns=["component_id"]) + + return df + +def get_model_parm(difmap): + """ + 在 difmap 里执行一条命令,并返回从命令回显到下一个提示符之间的全部文本输出。 + 参数: + difmap: difmap 进程对象 + prompt: difmap 提示符的正则表达式,默认为 "0>" + 返回: + str: 命令输出的文本(text) + """ + difmap.sendline('modelfit 0') + difmap.expect('0>', timeout=100) + out = difmap.before or b"" + print(out) + if isinstance(out, bytes): + out = out.decode("utf-8", errors="replace") + out = out.replace("\r", "") + + # difmap 通常会回显你输入的命令,把第一行是命令的情况去掉 + lines = out.splitlines() + # if lines and lines[0].strip() == cmd.strip(): + lines = lines[1:] + return "\n".join(lines).strip() + +def main( + uvf_path:Path, + freq:float, + script_path:str = './single_mf_dfmp', + debug:bool = False, + )->pd.Series: + filepath = Path(uvf_path) + # copy the script in the code directory to the working directory + file_dir = filepath.parent + filename = filepath.stem + shutil.copy(script_path, file_dir) + script_name = 'single_mf_dfmp' + file_exname = filepath.suffix.lstrip('.') + os.chdir(file_dir) + difmap, logfile = init_difmap() + prepare_observation(difmap, filename,file_exname, freq) + selection = 0 + if 'bl307gx' in filename: + print("Detected bl307gx, the weakest epoch, use simple_modelfit_gx with fixed positions.") + selection = 2 + if selection == 0: + # simple modelfit + print("Using simple modelfit for model fitting.") + simple_modelfit(difmap) + elif selection == 1: + # not used currently + filename= filename + '_scr' + print("Using difmap script for model fitting.") + read_difmap_script(difmap,script_name,filename) + elif selection == 2: + # simple modelfit for bl307gx + print("Using simple modelfit for bl307gx.") + simple_modelfit_gx(difmap) + else: + print("Using iterative modelfit for model fitting.") + nm = iterative_modelfit(difmap, snr_threshold=3, max_iterations=1, model_type = 1) + print(f"Total fitted components: {nm}") + model_text = get_model_parm(difmap) + print("Model fitting output:") + print(model_text) + df_model = parse_model_table(model_text, default_freq=None) + print("Parsed model parameters:") + print(df_model) + if debug: + print("Debug mode, will save difmap output files") + save_df_file(difmap,filename + '_sav') + cleanup_difmap(difmap, logfile) + return df_model + + + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Fit model to UV data using difmap.') + parser.add_argument('--file_path', type=str, required=True, help='Input uv file path (e.g., /path/to/TARGET.uvf)') + args = parser.parse_args() + filepath = Path(args.file_path) + freq = 9 # GHz, set your frequency here + script_path = 'single_mf_dfmp' + df_result = main(filepath, script_path, freq) + print("Final fitted model parameters:") + print(df_result) +### Usage example: +## python fit_in_difmap.py --file_path ./simulation/fits_uvtest.uvf \ No newline at end of file diff --git a/simulation/plot_results/Plot_all.py b/simulation/plot_results/Plot_all.py new file mode 100644 index 0000000..ddb94ee --- /dev/null +++ b/simulation/plot_results/Plot_all.py @@ -0,0 +1,656 @@ +import numpy as np +import matplotlib.pyplot as plt +import matplotlib +from scipy.stats import norm +from matplotlib.backends.backend_pdf import PdfPages +import os +import csv +import pandas as pd + +# Set Nature-style formatting +plt.rcParams.update({ + 'font.family': 'sans-serif', + 'font.sans-serif': ['Arial', 'Helvetica'], + 'font.size': 8, + 'axes.labelsize': 9, + 'axes.titlesize': 10, + 'legend.fontsize': 8, + 'xtick.labelsize': 8, + 'ytick.labelsize': 8, + 'figure.dpi': 300, + 'savefig.dpi': 300, + 'figure.figsize': (7.2, 7.2), # Nature single column width is ~8.5 cm = 3.35 inches + 'axes.linewidth': 0.5, + 'xtick.major.width': 0.5, + 'ytick.major.width': 0.5, + 'xtick.minor.width': 0.25, + 'ytick.minor.width': 0.25, +}) + +def resolve_input_file(file_name): + """ + Resolve the actual data file to use, preferring CSV when available. + + Parameters: + ---------- + file_name : str + Desired file name (may be .txt or .csv) + + Returns: + ------- + resolved_path : str or None + Existing path to use, preferring .csv over .txt if both are options. + """ + # If the provided file exists, use it directly + print(file_name) + if os.path.exists(file_name): + print(f"Using provided file: {file_name}") + return file_name + + stem, ext = os.path.splitext(file_name) + ext = ext.lower() + + # Prefer .csv if .txt requested but .csv exists + if ext == ".txt": + csv_path = stem + ".csv" + if os.path.exists(csv_path): + return csv_path + # If .csv requested but not found, fall back to .txt when available + if ext == ".csv": + txt_path = stem + ".txt" + if os.path.exists(txt_path): + return txt_path + + # Try generic preference: csv then txt + csv_path = stem + ".csv" + if os.path.exists(csv_path): + return csv_path + txt_path = stem + ".txt" + if os.path.exists(txt_path): + return txt_path + + return None + +def load_multi_column_data(file_path): + """ + Load multi-column measurement data from a text file and convert units. + + Parameters: + ---------- + file_path : str + Path to the data file + + Returns: + ------- + data_dict : dict or None + Dictionary containing arrays for each column + Keys: 'flux_mjy', 'x_mas', 'y_mas', 'major_fwhm_mas' + """ + try: + # Initialize lists for each column + flux_data = [] + x_data = [] + y_data = [] + size_data = [] + + ext = os.path.splitext(file_path)[1].lower() + + # Branch parsing based on extension (CSV vs whitespace text) + if ext == ".csv": + with open(file_path, 'r', newline='') as f: + reader = csv.reader(f) + for line_num, row in enumerate(reader, start=1): + # Skip empty rows + if not row: + continue + # Allow comments beginning with '#' + if row[0].strip().startswith('#'): + continue + # Strip whitespace and ignore empty strings + parts = [c.strip() for c in row if c is not None and str(c).strip() != ""] + if len(parts) < 4: + print(f"Warning: Row {line_num} in {file_path} has {len(parts)} columns, expected at least 4") + continue + try: + flux = float(parts[0]) + x = float(parts[1]) + y = float(parts[2]) + size = float(parts[3]) + + # Unit conversions + flux_data.append(flux * 1000.0) + x_data.append(x * 1000.0) + y_data.append(y * 1000.0) + size_data.append(size) + except ValueError: + # Likely a header row; skip gracefully + if line_num == 1: + continue + print(f"Warning: Row {line_num} in {file_path} has invalid data: {row}") + continue + else: + # Default: whitespace-separated text + with open(file_path, 'r') as f: + for line_num, line in enumerate(f): + line = line.strip() + + # Skip empty lines and comment lines + if not line or line.startswith('#'): + continue + + # Split line into columns + parts = line.split() + + if len(parts) >= 4: + try: + flux = float(parts[0]) + x = float(parts[1]) + y = float(parts[2]) + size = float(parts[3]) + + # Unit conversions + flux_data.append(flux * 1000.0) + x_data.append(x * 1000.0) + y_data.append(y * 1000.0) + size_data.append(size) + + except ValueError: + print(f"Warning: Line {line_num+1} in {file_path} has invalid data: {line}") + continue + else: + print(f"Warning: Line {line_num+1} in {file_path} has {len(parts)} columns, expected at least 4") + continue + + if len(size_data) == 0: + print(f"Warning: No valid data in {file_path}") + return None + + # Convert to numpy arrays with converted units + data_dict = { + 'flux_mjy': np.array(flux_data), # Now in mJy + 'x_mas': np.array(x_data), # Now in mas + 'y_mas': np.array(y_data), # Now in mas + 'major_fwhm_mas': np.array(size_data) # Already in mas + } + + return data_dict + + except FileNotFoundError: + print(f"Error: File {file_path} not found") + return None + except Exception as e: + print(f"Error reading {file_path}: {e}") + return None + +def load_multi_column_data_pandas(file_path): + """ + Load multi-column measurement data using pandas and convert units. + + This function expects four columns in order: + 1) flux (Jy), 2) x (arcsec), 3) y (arcsec), 4) major FWHM (mas) + It returns the same dictionary format as `load_multi_column_data`: + {'flux_mjy', 'x_mas', 'y_mas', 'major_fwhm_mas'} + + Supports both CSV and whitespace-separated TXT. Lines starting with '#' + are treated as comments and ignored. Non-numeric rows (e.g., headers) + are dropped. + + Parameters: + ---------- + file_path : str + Path to the data file (.csv or .txt) + + Returns: + ------- + dict or None + Dictionary of numpy arrays with converted units, or None if failed. + """ + try: + ext = os.path.splitext(file_path)[1].lower() + if ext == '.csv': + # CSV: auto-detect separator; ignore comments; no header assumed + df = pd.read_csv( + file_path, + comment='#', + sep=",", + engine='python' + ) + else: + # TXT: whitespace-separated + df = pd.read_csv( + file_path, + comment='#', + header=None, + delim_whitespace=True + ) + + # Ensure at least 4 columns + if df.shape[1] < 4: + print(f"Error: {file_path} has {df.shape[1]} columns, expected at least 4.") + return None + + # Take first 4 columns and coerce to numeric; drop non-numeric rows + # df = df.iloc[:, :4].apply(pd.to_numeric, errors='coerce').dropna() + if len(df) == 0: + print(f"Warning: No valid numeric rows found in {file_path}") + return None + # print(df) + flux = df['flux_jy'] + x = df['x_arcsec'] + y = df['y_arcsec'] + size = df['major_fwhm_mas'] + + data_dict = { + 'flux_mjy': flux * 1000.0, + 'x_mas': x * 1000.0, + 'y_mas': y * 1000.0, + 'major_fwhm_mas': size + } + + return data_dict + + except FileNotFoundError: + print(f"Error: File {file_path} not found") + return None + except Exception as e: + print(f"Error reading {file_path} with pandas: {e}") + return None +def plot_epoch_histogram(ax, sizes, epoch_name, subplot_label): + """ + Plot a histogram with Gaussian fit for a single epoch. + + Parameters: + ---------- + ax : matplotlib axes object + Axes to plot on + sizes : numpy array + Size measurements (major_fwhm_mas) + epoch_name : str + Name of the epoch (for title) + subplot_label : str + Label for subplot (a, b, c, ...) + """ + if sizes is None or len(sizes) == 0: + ax.text(0.5, 0.5, f"No data for\n{epoch_name}", + ha='center', va='center', transform=ax.transAxes) + ax.set_xlabel('Size (mas)') + ax.set_ylabel('Probability Density') + return + + # Calculate statistics + mean_val = np.mean(sizes) + std_val = np.std(sizes) + median_val = np.median(sizes) + min_val = np.min(sizes) + max_val = np.max(sizes) + + # Plot histogram + n, bins, patches = ax.hist(sizes, bins=25, edgecolor='black', + alpha=0.7, density=True, + color='steelblue', linewidth=0.5) + + # Plot Gaussian fit + x = np.linspace(np.min(sizes), np.max(sizes), 1000) + pdf = norm.pdf(x, mean_val, std_val) + ax.plot(x, pdf, 'r-', linewidth=1.5) #label='Gaussian fit') + + # Plot mean and std lines + ax.axvline(x=mean_val, color='red', linestyle='--', + linewidth=1.5, alpha=0.8) #, label=f'Mean = {mean_val:.3f}') + ax.axvline(x=mean_val + std_val, color='green', linestyle=':', + linewidth=1.2, alpha=0.7) #, label=f'±1σ = {std_val:.3f}') + ax.axvline(x=mean_val - std_val, color='green', linestyle=':', + linewidth=1.2, alpha=0.7) + + # Fill 1σ region + ax.fill_betweenx([0, np.max(pdf)], + mean_val - std_val, mean_val + std_val, + alpha=0.2, color='gray') + + # Add epoch name and statistics as text + stats_text = f'{epoch_name}\nμ = {mean_val:.3f}\nσ = {std_val:.3f}' + ax.text(0.95, 0.95, stats_text, transform=ax.transAxes, + fontsize=7, verticalalignment='top', horizontalalignment='right', + bbox=dict(boxstyle='round,pad=0.3', facecolor='white', + alpha=0.8, edgecolor='gray', linewidth=0.5)) + + # Add subplot label (a, b, c, ...) in top-left corner + ax.text(0.02, 0.98, f'{subplot_label}', transform=ax.transAxes, + fontsize=10, fontweight='bold', verticalalignment='top') + + ax.set_xlim(left=min_val * 0.9, right=max_val * 1.2) + + # Set labels and grid + ax.set_xlabel('Fitted Size (mas)', fontsize=9) + ax.set_ylabel('Probability Density', fontsize=9) + ax.grid(True, alpha=0.3, linestyle='--', linewidth=0.5) + +def create_nature_style_plot( + file_names: list = None + ): + """ + Create a 3x3 grid of histograms for all epochs. + Returns figure and a list of data dictionaries for each file. + """ + # Define file lists + # freq_15ghz_files = ['BA161a.txt', 'BA161b.txt', 'BA161c.txt'] + # freq_8ghz_files = ['BL307b.txt', 'BL307c.txt', 'BL307d.txt', + # 'BL307e.txt', 'BL307f.txt', 'BL307g.txt'] + + # # Combine all files (desired names) + # all_files = freq_15ghz_files + freq_8ghz_files + all_files = file_names + all_epoch_names = ['BA161a', 'BA161b', 'BA161c', + 'BL307b', 'BL307c', 'BL307d', + 'BL307e', 'BL307f', 'BL307g'] + + # Resolve to actual existing paths (prefer CSV when present) + resolved_paths = [] + missing_files = [] + for f in all_files: + rp = resolve_input_file(f) + if rp is None: + missing_files.append(f) + else: + resolved_paths.append(rp) + if missing_files: + print(f"Warning: The following files are missing: {missing_files}") + print("Please ensure all data files (.csv or .txt) are in the current directory.") + + # Create figure with 3x3 subplots + fig, axes = plt.subplots(3, 3, figsize=(8.0, 7.2)) + axes = axes.flatten() # Flatten to 1D array for easy iteration + + # List to store all data for statistics output + all_data = [] + + # Load data and create plots + for i, (file_name, epoch_name) in enumerate(zip(all_files, all_epoch_names)): + if i >= len(axes): + break + + actual_path = resolve_input_file(file_name) + if actual_path is None: + print(f"Skipping {file_name}: no .csv or .txt found.") + sizes = None + data_dict = None + else: + print(f"Processing {file_name} (using {os.path.basename(actual_path)})...") + + # Load data (returns dictionary with 4 arrays, already converted) + # data_dict = load_multi_column_data(actual_path) + data_dict = load_multi_column_data_pandas(actual_path) + if data_dict is not None: + sizes = data_dict['major_fwhm_mas'] + else: + sizes = None + if data_dict is not None: + # Extract size data for plotting + + # Store all data for later statistics output + all_data.append({ + 'file_name': actual_path if actual_path else file_name, + 'epoch_name': epoch_name, + 'data_dict': data_dict + }) + + # Plot histogram (using only size data) + plot_epoch_histogram(axes[i], sizes, epoch_name, chr(97+i)) # 97 = 'a' in ASCII + else: + # If no data, turn off the axis + axes[i].text(0.5, 0.5, f"No data for\n{epoch_name}", + ha='center', va='center', transform=axes[i].transAxes) + axes[i].set_xlabel('Size (mas)') + axes[i].set_ylabel('Probability Density') + axes[i].grid(True, alpha=0.3, linestyle='--', linewidth=0.5) + + # Add subplot label + axes[i].text(0.02, 0.98, f'{chr(97+i)}', transform=axes[i].transAxes, + fontsize=10, fontweight='bold', verticalalignment='top') + + # Remove any unused axes (if we have fewer than 9 files) + for i in range(len(all_files), len(axes)): + axes[i].axis('off') + + # Adjust layout + plt.tight_layout(pad=2.0, h_pad=2.0, w_pad=2.0) + + return fig, all_data + +def calculate_column_statistics(data_array, column_name): + """ + Calculate statistics for a single column of data. + + Parameters: + ---------- + data_array : numpy array + Array of data values + column_name : str + Name of the column (for display purposes) + + Returns: + ------- + stats_dict : dict + Dictionary containing statistics + """ + if len(data_array) == 0: + return None + + stats_dict = { + 'column': column_name, + 'n': len(data_array), + 'mean': np.mean(data_array), + 'std': np.std(data_array), + 'median': np.median(data_array), + 'min': np.min(data_array), + 'max': np.max(data_array), + 'range': np.max(data_array) - np.min(data_array) + } + + # Add coefficient of variation (if mean is not zero) + if stats_dict['mean'] != 0: + stats_dict['cv'] = (stats_dict['std'] / stats_dict['mean']) * 100 + else: + stats_dict['cv'] = float('inf') + + return stats_dict + +def save_comprehensive_statistics(all_data): + """ + Save comprehensive statistics for all four columns to a text file. + + Parameters: + ---------- + all_data : list + List of dictionaries containing data for each file + """ + with open('multi_column_statistics_summary.txt', 'w') as f: + f.write("=" * 80 + "\n") + f.write("COMPREHENSIVE STATISTICS SUMMARY FOR MULTI-COLUMN DATA\n") + f.write("=" * 80 + "\n\n") + f.write("NOTE: Units have been converted:\n") + f.write(" - Flux: Jy → mJy (×1000)\n") + f.write(" - Position offsets: arcsec → mas (×1000)\n") + f.write(" - Size: already in mas\n") + f.write("=" * 80 + "\n\n") + + for file_data in all_data: + file_name = file_data['file_name'] + epoch_name = file_data['epoch_name'] + data_dict = file_data['data_dict'] + + f.write(f"File: {file_name} (Epoch: {epoch_name})\n") + f.write("-" * 80 + "\n") + + # Calculate and write statistics for each column + columns = ['flux_mjy', 'x_mas', 'y_mas', 'major_fwhm_mas'] + column_display_names = ['Flux (mJy)', 'X offset (mas)', 'Y offset (mas)', 'Major FWHM (mas)'] + + for col_key, display_name in zip(columns, column_display_names): + if col_key in data_dict and len(data_dict[col_key]) > 0: + stats = calculate_column_statistics(data_dict[col_key], display_name) + + if stats: + f.write(f" {display_name}:\n") + f.write(f" Number of measurements: {stats['n']}\n") + f.write(f" Mean: {stats['mean']:.6f}\n") + f.write(f" Standard deviation: {stats['std']:.6f}\n") + f.write(f" Median: {stats['median']:.6f}\n") + f.write(f" Minimum: {stats['min']:.6f}\n") + f.write(f" Maximum: {stats['max']:.6f}\n") + f.write(f" Range: {stats['range']:.6f}\n") + + if 'cv' in stats and stats['cv'] != float('inf'): + f.write(f" Coefficient of variation: {stats['cv']:.2f}%\n") + + f.write("\n") + else: + f.write(f" {display_name}: No data available\n\n") + + f.write("=" * 80 + "\n\n") + + # Add summary table for size column (major_fwhm_mas) across all files + f.write("\n" + "=" * 80 + "\n") + f.write("SUMMARY OF SIZE MEASUREMENTS (Major FWHM in mas)\n") + f.write("=" * 80 + "\n") + f.write(f"{'Epoch':<10} {'N':<6} {'Mean':<12} {'Std':<12} {'Median':<12} {'Min':<12} {'Max':<12}\n") + f.write("-" * 80 + "\n") + + for file_data in all_data: + epoch_name = file_data['epoch_name'] + data_dict = file_data['data_dict'] + + if 'major_fwhm_mas' in data_dict and len(data_dict['major_fwhm_mas']) > 0: + sizes = data_dict['major_fwhm_mas'] + f.write(f"{epoch_name:<10} {len(sizes):<6} {np.mean(sizes):<12.6f} {np.std(sizes):<12.6f} " + f"{np.median(sizes):<12.6f} {np.min(sizes):<12.6f} {np.max(sizes):<12.6f}\n") + + f.write("=" * 80 + "\n\n") + + # Add summary table for flux measurements across all files + f.write("\n" + "=" * 80 + "\n") + f.write("SUMMARY OF FLUX MEASUREMENTS (Flux in mJy)\n") + f.write("=" * 80 + "\n") + f.write(f"{'Epoch':<10} {'N':<6} {'Mean':<12} {'Std':<12} {'Median':<12} {'Min':<12} {'Max':<12}\n") + f.write("-" * 80 + "\n") + + for file_data in all_data: + epoch_name = file_data['epoch_name'] + data_dict = file_data['data_dict'] + + if 'flux_mjy' in data_dict and len(data_dict['flux_mjy']) > 0: + fluxes = data_dict['flux_mjy'] + f.write(f"{epoch_name:<10} {len(fluxes):<6} {np.mean(fluxes):<12.6f} {np.std(fluxes):<12.6f} " + f"{np.median(fluxes):<12.6f} {np.min(fluxes):<12.6f} {np.max(fluxes):<12.6f}\n") + + f.write("=" * 80 + "\n\n") + + # Add note about data format and unit conversions + f.write("\nDATA FORMAT AND UNIT CONVERSIONS:\n") + f.write("-" * 80 + "\n") + f.write("Input data files contain four columns:\n") + f.write(" 1. flux_jy: Flux density in Jansky (Jy)\n") + f.write(" 2. x_arcsec: X offset in arcseconds (arcsec)\n") + f.write(" 3. y_arcsec: Y offset in arcseconds (arcsec)\n") + f.write(" 4. major_fwhm_mas: Major axis FWHM in milliarcseconds (mas)\n\n") + f.write("Unit conversions applied by the program:\n") + f.write(" 1. flux_jy → flux_mjy: Multiply by 1000 (1 Jy = 1000 mJy)\n") + f.write(" 2. x_arcsec → x_mas: Multiply by 1000 (1 arcsec = 1000 mas)\n") + f.write(" 3. y_arcsec → y_mas: Multiply by 1000 (1 arcsec = 1000 mas)\n") + f.write(" 4. major_fwhm_mas: No conversion needed (already in mas)\n") + f.write("=" * 80 + "\n") + + print("Comprehensive statistics summary saved to: multi_column_statistics_summary.txt") + +def main(mode='drop_time_per_ant'): + """ + Main function to create and save the plot. + """ + print("="*80) + print("Creating Nature-style 3x3 histogram plot for VLBI multi-column data") + print("="*80) + print("NOTE: Unit conversions will be applied:") + print(" - Flux: Jy → mJy (×1000)") + print(" - Position offsets: arcsec → mas (×1000)") + print(" - Size: already in mas, no conversion") + print("="*80) + + # Define desired files (will resolve to .csv when present) + data_method = mode # gain, jk_timeblock, drop_time_per_ant + if data_method == 'gain': + work_dir = './gain_var_v2' + all_files = ['simulated_source_parms_GRB221009A-ba161a1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-ba161b1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-ba161c1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-bl307bx1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-bl307cx1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-bl307dx1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-bl307ex1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-bl307fx1_gain_var_2000.csv', + 'simulated_source_parms_GRB221009A-bl307gx1_gain_var_2000.csv'] + out_file_name = "Gain_Variation_MC.pdf" + elif data_method == 'jk_timeblock': + work_dir = './jk_timeblock_v1' + all_files = ['simulated_source_parms_GRB221009A-ba161a1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-ba161b1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-ba161c1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-bl307bx1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-bl307cx1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-bl307dx1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-bl307ex1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-bl307fx1_jk_drop_timeblock_2000.csv', + 'simulated_source_parms_GRB221009A-bl307gx1_jk_drop_timeblock_2000.csv'] + out_file_name = "JK_TimeBlock_MC.pdf" + elif data_method == 'drop_time_per_ant': + work_dir = './drop_time_per_ant' + all_files = ['simulated_source_parms_GRB221009A-ba161a1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-ba161b1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-ba161c1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-bl307bx1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-bl307cx1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-bl307dx1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-bl307ex1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-bl307fx1_drop_timeblock_per_ant_2000.csv', + 'simulated_source_parms_GRB221009A-bl307gx1_drop_timeblock_per_ant_2000.csv'] + out_file_name = "Drop_Time_Per_Ant_MC.pdf" + else: + print(f"Error: Unknown data method '{data_method}'") + return + os.chdir(work_dir) + # Resolve and report missing + missing_files = [] + for f in all_files: + if resolve_input_file(f) is None: + missing_files.append(f) + if missing_files: + print(f"\nMissing files: {missing_files}") + print("Please ensure data files (.csv or .txt) are in the current directory.") + print("Continuing with available files...\n") + + # Create the figure and get data + fig, all_data = create_nature_style_plot(file_names=all_files) + + # Save as PDF with high quality + pdf_filename = out_file_name + with PdfPages(pdf_filename) as pdf: + pdf.savefig(fig, bbox_inches='tight', dpi=300) + + print(f"\nPlot saved as: {pdf_filename}") + + # Save statistics summary + if all_data: + save_comprehensive_statistics(all_data) + else: + print("Warning: No data available for statistics summary.") + + # Print completion message + print("\n" + "="*80) + print("Analysis complete!") + print(f"- Histograms of size measurements saved to {pdf_filename}") + print("- Comprehensive statistics for all four columns saved to multi_column_statistics_summary.txt") + print("- Units converted: flux (Jy→mJy), positions (arcsec→mas), size (already mas)") + print("="*80) + +if __name__ == "__main__": + d_mode = 'drop_time_per_ant' # Options: 'gain', 'jk_timeblock', 'drop_time_per_ant' + main(mode=d_mode) \ No newline at end of file diff --git a/simulation/run_main.sh b/simulation/run_main.sh new file mode 100644 index 0000000..df356c9 --- /dev/null +++ b/simulation/run_main.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +# run python scripts and backup log files +set -euo pipefail + +# directory where python will write results (should match python --out_dir) +FNAME="GRB221009A-bl307dx1" +# ba161(abc)1 and bl307(bcdefg)x1 +# [8,9,9, 9,9,10,9,11,11] +N_ANT=10 +# if you set --auto_set, then FNAME and N_ANT are not used, change hard_coded parms in the sim_main.py +N_SIM=2000 +# for jk_ related mode, N_SIM is not used, the number of jk samples is determined by N_ANT or other parms in sim_main.py +SIM_MODE="gain_var" # options: gain_var, jk_drop_ant, jk_drop_time, jk_drop_timeblock, drop_timeblock_per_ant + +DIR="/groups/public_cluster/home/ykzhang/VLBI/grb_data/bl307/calibrated_data_GRB221009a-v1/" +INPUT_FILE="$DIR/$FNAME.uvf" +OUT_DIR="$DIR/simulations/" +# directory to store logs +LOG_DIR="$OUT_DIR/logs" +mkdir -p "$LOG_DIR" + +# timestamped, unique logfile name +TS=$(date +"%Y%m%d-%H%M%S") +LOGFILE="$LOG_DIR/run-${TS}.log" + +echo "Logging Python output to ${LOGFILE}" + +# run the python script, capture both stdout and stderr, and also show on terminal +python sim_main.py --input_uv "$INPUT_FILE" --no-auto_set \ + --nants $N_ANT --gain_range 0.1 --sim_times $N_SIM \ + --s_mode $SIM_MODE --out_dir "$OUT_DIR" \ + --clear_temp_uv 2>&1 | tee "$LOGFILE" + diff --git a/simulation/sim_gain_var.ipynb b/simulation/sim_gain_var.ipynb new file mode 100644 index 0000000..67a4dd0 --- /dev/null +++ b/simulation/sim_gain_var.ipynb @@ -0,0 +1,584 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "517faea3", + "metadata": {}, + "source": [ + "## Try using aips and difmap coding to simulate Monte Carlo for antenna gain errors" + ] + }, + { + "cell_type": "markdown", + "id": "ba732e06", + "metadata": {}, + "source": [ + "### The operation here:\n", + "1. Generate gain facotors for each antenna at each time step(in python)\n", + "2. load and correct gain factors (aips, parseltongue)\n", + "3. export corrected data to difmap and run modelfit in difmap (python scripting)\n", + "4. Save results and analyze in python\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "fe6b46d4", + "metadata": {}, + "outputs": [], + "source": [ + "import pexpect\n", + "import os\n", + "import sys\n", + "import re\n", + "import time\n", + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "309d1c5a", + "metadata": {}, + "outputs": [], + "source": [ + "def init_difmap(timeout=8000000):\n", + " \"\"\"初始化 difmap 会话并返回 difmap 对象和日志文件名\"\"\"\n", + " difmap = pexpect.spawn('difmap')\n", + " difmap.waitnoecho\n", + " difmap.expect('0>')\n", + " p = re.compile(r'(difmap.log_?\\d*)')\n", + " logfile = p.findall(difmap.before.decode())[0]\n", + " difmap.timeout = timeout\n", + " return difmap, logfile\n", + "\n", + "def cleanup_difmap(difmap, logfile):\n", + " \"\"\"关闭 difmap 会话并删除日志文件\"\"\"\n", + " difmap.sendline('quit')\n", + " difmap.close()\n", + " if os.path.isfile(logfile):\n", + " os.remove(logfile)\n", + " \n", + "def setup_mapsize(difmap, freq):\n", + " \"\"\"根据频率设置地图大小\"\"\"\n", + " if freq <= 3:\n", + " difmap.sendline('mapsize 2048,0.4')\n", + " elif 3.1 <= freq <= 10:\n", + " difmap.sendline('mapsize 2048,0.2')\n", + " elif freq >= 10.1:\n", + " difmap.sendline('mapsize 2048,0.1')\n", + " difmap.expect('0>')\n", + "\n", + "def prepare_observation(difmap, filename,file_exname, freq):\n", + " \"\"\"准备观测:加载文件,选择偏振,设置地图大小和 UV 权重\"\"\"\n", + " uvf_file = filename + '.' + file_exname\n", + " difmap.sendline('obs %s' % uvf_file)\n", + " difmap.expect('0>')\n", + " difmap.sendline('select i')\n", + " difmap.expect('0>')\n", + " setup_mapsize(difmap, freq)\n", + " difmap.sendline('uvw 0,-2')\n", + " difmap.expect('0>')\n", + "\n", + "def getsnr_difmap(difmap):\n", + " difmap.sendline('invert')\n", + " difmap.expect('0>')\n", + " difmap.sendline('print peak(flux,max)/imstat(rms)')\n", + " difmap.expect('0>')\n", + " # 修改正则表达式以支持科学计数法(如 7.333e-5)\n", + " p = re.compile(r'([-+]?[0-9]*\\.?[0-9]+(?:[eE][-+]?[0-9]+)?)')\n", + " s = difmap.before.decode()\n", + " print(p.findall(s))\n", + " snr = float(p.findall(s)[0])\n", + " difmap.sendline('print imstat(rms)')\n", + " difmap.expect('0>')\n", + " s2 = difmap.before.decode()\n", + " rms = float(p.findall(s2)[0])\n", + " difmap.sendline('print peak(x,max)')\n", + " difmap.expect('0>')\n", + " s3 = difmap.before.decode()\n", + " peakx = float(p.findall(s3)[0])\n", + " difmap.sendline('print peak(y,max)')\n", + " difmap.expect('0>')\n", + " s4 = difmap.before.decode()\n", + " peaky = float(p.findall(s4)[0])\n", + " return snr,rms,peakx,peaky\n", + "\n", + "def iterative_modelfit(difmap, snr_threshold=5.5, max_iterations=12, model_type = 1):\n", + " \"\"\"迭代模型拟合:持续添加组件直到 SNR 低于阈值或达到最大迭代次数\n", + " parm:\n", + " difmap: the difmap progress from initi_difmap\n", + " snr_threshold: the snr cut to decide how many iterations to go\n", + " max_iteration: the maximum iterations. The progress will end if either of the above two parms reach the limit\n", + " model_type: 0, delta; 1, gaussian; 2-4 not used, see difmap >help addcmp\n", + " \"\"\"\n", + " snr, rms, pkx, pky = getsnr_difmap(difmap)\n", + " print(snr, rms, pkx, pky)\n", + " nm = 0\n", + " while snr > snr_threshold:\n", + " if nm >= max_iterations:\n", + " print('limit reached, stop fitting')\n", + " break\n", + " difmap.sendline('addcmp 0.1,true,%f,%f,true,0,false,1,false,0,true,%i' % (pkx, pky, model_type))\n", + " difmap.expect('0>')\n", + " difmap.sendline('modelfit 80')\n", + " difmap.expect('0>', timeout=500)\n", + " snr, rms, pkx, pky = getsnr_difmap(difmap)\n", + " print(snr, rms, pkx, pky)\n", + " nm += 1\n", + " return nm\n", + "\n", + "def read_observation(difmap,filename):\n", + " par_file = filename + '.par'\n", + " difmap.sendline('@ %s' % par_file)\n", + " difmap.expect('0>')\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "797b5e5b", + "metadata": {}, + "outputs": [], + "source": [ + "def parse_model_table(\n", + " text: str, \n", + " default_freq=None\n", + " ) -> pd.DataFrame:\n", + " rows = []\n", + "\n", + " def to_float(tok: str) -> float:\n", + " # 兼容偶尔出现的 0.123v 这种标记(这里一般不会出现在 East/North 表,但顺手处理)\n", + " tok = tok.rstrip(\"v\")\n", + " try:\n", + " return float(tok)\n", + " except Exception:\n", + " return np.nan\n", + "\n", + " for raw_line in text.splitlines():\n", + " line = raw_line.strip()\n", + " if not line:\n", + " continue\n", + " if line.startswith(\"#\") or line.startswith(\"!\") or line.startswith(\"-\"):\n", + " continue\n", + " if \"0>\" in line:\n", + " continue\n", + "\n", + " parts = line.split()\n", + "\n", + " # 有些 difmap 输出会带 component 编号(第一列是整数),这里做兼容\n", + " comp_id = None\n", + " if parts and parts[0].isdigit():\n", + " comp_id = int(parts[0])\n", + " parts = parts[1:]\n", + "\n", + " # East/North 那张表:最短到 theta_err 一共 15 列\n", + " if len(parts) < 15:\n", + " continue\n", + "\n", + " # 关键:只吃 East/North 那张表(第7列是 shape,且是纯字母,如 gauss/point)\n", + " # 这能自动跳过你前面那行 \"0.00346423v 0.141708v ... 1\"\n", + " if not (len(parts) > 6 and parts[6].isalpha()):\n", + " continue\n", + "\n", + " row = {\n", + " \"component_id\": comp_id,\n", + " \"flux_jy\": to_float(parts[0]),\n", + " \"flux_err_jy\": to_float(parts[1]),\n", + " \"x_arcsec\": to_float(parts[2]),\n", + " \"x_err_arcsec\": to_float(parts[3]),\n", + " \"y_arcsec\": to_float(parts[4]),\n", + " \"y_err_arcsec\": to_float(parts[5]),\n", + " \"type\": parts[6],\n", + " \"ra_deg\": to_float(parts[7]),\n", + " \"dec_deg\": to_float(parts[8]),\n", + " \"major_fwhm_arcsec\": to_float(parts[9]),\n", + " \"major_fwhm_err_arcsec\": to_float(parts[10]),\n", + " \"minor_fwhm_arcsec\": to_float(parts[11]),\n", + " \"minor_fwhm_err_arcsec\": to_float(parts[12]),\n", + " \"theta_deg\": to_float(parts[13]),\n", + " \"theta_err_deg\": to_float(parts[14]),\n", + " \"freq_hz\": np.nan,\n", + " \"spectral_index\": np.nan,\n", + " \"spectral_index_err\": np.nan,\n", + " }\n", + "\n", + " # 如果后面真的有 freq/specIndex,就补上\n", + " if len(parts) >= 16:\n", + " row[\"freq_hz\"] = to_float(parts[15])\n", + " if len(parts) >= 17:\n", + " row[\"spectral_index\"] = to_float(parts[16])\n", + " if len(parts) >= 18:\n", + " row[\"spectral_index_err\"] = to_float(parts[17])\n", + "\n", + " # 如果输出没带 freq,但你知道观测频率,就用 default_freq 补齐\n", + " if (np.isnan(row[\"freq_hz\"]) or row[\"freq_hz\"] == 0.0) and default_freq is not None:\n", + " row[\"freq_hz\"] = float(default_freq)\n", + "\n", + " rows.append(row)\n", + "\n", + " df = pd.DataFrame(rows)\n", + "\n", + " # 如果 component_id 一列全是空,就删掉,表更干净\n", + " if \"component_id\" in df.columns and df[\"component_id\"].isna().all():\n", + " df = df.drop(columns=[\"component_id\"])\n", + "\n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "0aafd9ec", + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "file_dir=\"/groups/public_cluster/home/ykzhang/VLBI/grb_data/bl307/calibrated_data_GRB221009a-v1/\"\n", + "os.chdir(file_dir)\n", + "filename='161a_el20'" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "74714544", + "metadata": {}, + "outputs": [], + "source": [ + "def get_model_parm(difmap, prompt=r\"0>\"):\n", + " \"\"\"\n", + " 在 difmap 里执行一条命令,并返回从命令回显到下一个提示符之间的全部文本输出。\n", + " 参数:\n", + " difmap: difmap 进程对象\n", + " prompt: difmap 提示符的正则表达式,默认为 \"0>\"\n", + " 返回:\n", + " str: 命令输出的文本(text)\n", + " \"\"\"\n", + " cmd = 'modelfit 0'\n", + " difmap.sendline(cmd)\n", + " difmap.expect(prompt)\n", + " out = difmap.before or b\"\"\n", + " print(out)\n", + " if isinstance(out, bytes):\n", + " out = out.decode(\"utf-8\", errors=\"replace\")\n", + " out = out.replace(\"\\r\", \"\")\n", + "\n", + " # difmap 通常会回显你输入的命令,把第一行是命令的情况去掉\n", + " lines = out.splitlines()\n", + " if lines and lines[0].strip() == cmd.strip():\n", + " lines = lines[1:]\n", + " return \"\\n\".join(lines).strip()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "7c69bbfa", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['23.3747']\n", + "23.3747 0.000157677 0.0 0.0\n", + "['9.87249']\n", + "9.87249 7.08881e-05 -0.4 0.0\n", + "limit reached, stop fitting\n", + "b'modelfit 0\\n\\rPartitioning the model into established and variable parts.\\r\\nExtracting 1 model components from the UV plane model.\\r\\nThe fixed established model contains 0 components (0 Jy).\\r\\nThe variable part of the model contains 1 components (0.00346423 Jy).\\r\\nThere are 4 variables and 54186 usable visibilities.\\r\\nThis gives 2 x 54186 - 4 = 108368 degrees of freedom.\\r\\nReduced Chi-squared = Chi-squared / 108368.\\r\\n\\r\\nIteration 00: Reduced Chi-squared=0.99693117 Degrees of Freedom=108368\\r\\n! Flux (Jy) Radius (mas) Theta (deg) Major FWHM (mas) Axial ratio Phi (deg) T \\\\\\r\\n! Freq (Hz) SpecIndex\\r\\n0.00346423v 0.141708v 37.9920v 0.220199 1.00000 0.00000v 1\\r\\n\\r\\n# Flux (Jy) East (arcsec) North (arcsec) Shape R.A. (deg) Dec (deg) Major FWHM (arcsec) Minor FWHM (arcsec) Theta (deg) Freq (Hz) Spectral Index \\r\\n# Value Stdev Value Stdev Value Stdev Value Stdev Value Stdev Value Stdev Value Stdev \\r\\n#------------------ ------------------- ------------------- ------ -------------- -------------- ----------------- ----------------- --------------- ----------- -------------------\\r\\n 3.4642e-03 6.8e-05 8.7228e-05 5.2e-06 1.1168e-04 1.4e-05 gauss 288.2645867427 19.7733969560 2.202e-04 1.9e-05 2.202e-04 0.0e+00 0.00 0.0e+00\\r\\n\\r'\n", + "Partitioning the model into established and variable parts.\n", + "Extracting 1 model components from the UV plane model.\n", + "The fixed established model contains 0 components (0 Jy).\n", + "The variable part of the model contains 1 components (0.00346423 Jy).\n", + "There are 4 variables and 54186 usable visibilities.\n", + "This gives 2 x 54186 - 4 = 108368 degrees of freedom.\n", + "Reduced Chi-squared = Chi-squared / 108368.\n", + "\n", + "Iteration 00: Reduced Chi-squared=0.99693117 Degrees of Freedom=108368\n", + "! Flux (Jy) Radius (mas) Theta (deg) Major FWHM (mas) Axial ratio Phi (deg) T \\\n", + "! Freq (Hz) SpecIndex\n", + "0.00346423v 0.141708v 37.9920v 0.220199 1.00000 0.00000v 1\n", + "\n", + "# Flux (Jy) East (arcsec) North (arcsec) Shape R.A. (deg) Dec (deg) Major FWHM (arcsec) Minor FWHM (arcsec) Theta (deg) Freq (Hz) Spectral Index \n", + "# Value Stdev Value Stdev Value Stdev Value Stdev Value Stdev Value Stdev Value Stdev \n", + "#------------------ ------------------- ------------------- ------ -------------- -------------- ----------------- ----------------- --------------- ----------- -------------------\n", + " 3.4642e-03 6.8e-05 8.7228e-05 5.2e-06 1.1168e-04 1.4e-05 gauss 288.2645867427 19.7733969560 2.202e-04 1.9e-05 2.202e-04 0.0e+00 0.00 0.0e+00\n" + ] + } + ], + "source": [ + "freq = 2\n", + "\n", + "difmap,difmap_log=init_difmap()\n", + "prepare_observation(difmap, filename, 'uvf', freq)\n", + "iterative_modelfit(difmap, snr_threshold=5.5, max_iterations=1, model_type = 1)\n", + "text = get_model_parm(difmap)\n", + "print(text)\n", + "df = parse_model_table(text)\n", + "cleanup_difmap(difmap, difmap_log)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "55a9fa33", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
flux_jyflux_err_jyx_arcsecx_err_arcsecy_arcsecy_err_arcsectypera_degdec_degmajor_fwhm_arcsecmajor_fwhm_err_arcsecminor_fwhm_arcsecminor_fwhm_err_arcsectheta_degtheta_err_degfreq_hzspectral_indexspectral_index_err
00.0034640.0000680.0000870.0000050.0001120.000014gauss288.26458719.7733970.000220.0000190.000220.00.00.0NaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " flux_jy flux_err_jy x_arcsec x_err_arcsec y_arcsec y_err_arcsec \\\n", + "0 0.003464 0.000068 0.000087 0.000005 0.000112 0.000014 \n", + "\n", + " type ra_deg dec_deg major_fwhm_arcsec major_fwhm_err_arcsec \\\n", + "0 gauss 288.264587 19.773397 0.00022 0.000019 \n", + "\n", + " minor_fwhm_arcsec minor_fwhm_err_arcsec theta_deg theta_err_deg \\\n", + "0 0.00022 0.0 0.0 0.0 \n", + "\n", + " freq_hz spectral_index spectral_index_err \n", + "0 NaN NaN NaN " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "c97bbe98", + "metadata": {}, + "outputs": [], + "source": [ + "from pathlib import Path\n", + "file = Path(\"/Users/yingkangzhang/data/vlbi/vlbi_temp/161a_el20.fits\")\n", + "dir = file.parent\n", + "os.chdir(dir)\n", + "os.makedirs(\"test_dir\", exist_ok=True)" + ] + }, + { + "cell_type": "markdown", + "id": "eb927bf5", + "metadata": {}, + "source": [ + "### 1. Generate gain factors for each antenna at each time step (in Python)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "99e983af", + "metadata": {}, + "outputs": [], + "source": [ + "def gen_antenna_gains(\n", + " nants: int,\n", + " gain_range: float = 0.1,\n", + " dist: str = \"uniform\",\n", + " seed: int | None = None,\n", + ") -> np.ndarray:\n", + " \"\"\"\n", + " 返回每根天线的幅度增益因子 g_i(real>0)。\n", + "\n", + " gain_range=0.1 -> uniform: [0.9, 1.1]\n", + " gaussian: mean=1, sigma=gain_range/2, 严格限定在 [0.9, 1.1]\n", + " dist: \"uniform\" 或 \"gaussian\" \n", + " \"\"\"\n", + " rng = np.random.default_rng(seed)\n", + " lo, hi = 1 - gain_range, 1 + gain_range\n", + "\n", + " if dist.lower() == \"uniform\":\n", + " g = rng.uniform(lo, hi, size=nants)\n", + " elif dist.lower() == \"gaussian\":\n", + " sigma = gain_range / 2\n", + " g = 1 + rng.normal(loc=0.0, scale=sigma, size=nants)\n", + " g = np.clip(g, a_min=lo, a_max=hi) # 严格限定在 [lo, hi] 范围内\n", + " else:\n", + " raise ValueError(\"dist must be 'uniform' or 'gaussian'\")\n", + "\n", + " return g" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2a295d06", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[array([0.9763676 , 1.0164002 , 0.9883903 , 0.94875331, 1.01585807,\n", + " 1.0263361 , 1.02301885, 1.03927169]), array([0.97558872, 0.9512307 , 1.04055993, 0.9414121 , 1.04044525,\n", + " 0.97632577, 1.01796045, 1.00207396]), array([0.92068308, 0.92787154, 0.95531135, 0.9833696 , 0.95107106,\n", + " 1.01226005, 1.1 , 1.05468739]), array([0.92119516, 1.05095443, 1.04874986, 1.05093515, 0.99882777,\n", + " 0.97969162, 1.01892171, 0.95414144]), array([0.91318809, 1.00709351, 1.0052809 , 1.02656733, 0.96942443,\n", + " 1.04229469, 1.06214136, 1.01681327]), array([0.95475536, 0.96679453, 0.96954847, 1.01090309, 1.02313562,\n", + " 0.99665033, 1.09189165, 0.97684882]), array([0.97034512, 0.93203715, 1.1 , 0.98672983, 0.93517154,\n", + " 0.95824501, 0.95098042, 1.01499824]), array([0.97730366, 0.95187742, 1.00770207, 0.97729677, 0.96503017,\n", + " 0.98371663, 0.99481543, 1.05572956]), array([0.9 , 1.00218636, 1.01846571, 0.9546945 , 1.04148847,\n", + " 0.95918359, 1.03047067, 1.03276876]), array([0.9 , 1.00353468, 1.00426803, 1.02985827, 0.96282055,\n", + " 1.0537841 , 1.04905396, 0.9838689 ])]\n" + ] + } + ], + "source": [ + "t = []\n", + "for i in range (10):\n", + " g = gen_antenna_gains(8, gain_range=0.1, dist=\"gaussian\", seed=None)\n", + " t.append(g)\n", + "print(t)" + ] + }, + { + "cell_type": "markdown", + "id": "b65f4dcf", + "metadata": {}, + "source": [ + "### 2. correct gain factors in aips" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "b706b375", + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'AIPS'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[12], line 5\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[38;5;66;03m# 获取notebook所在目录的父目录\u001b[39;00m\n\u001b[1;32m 4\u001b[0m sys\u001b[38;5;241m.\u001b[39mpath\u001b[38;5;241m.\u001b[39mappend(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m../vlbi-pipeline/\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m----> 5\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mutils\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m gcal_apply\n", + "File \u001b[0;32m~/files/coding space/vlbi-pipeline/simulation/../vlbi-pipeline/utils.py:12\u001b[0m\n\u001b[1;32m 10\u001b[0m from pylab import *\n\u001b[1;32m 11\u001b[0m from config import *\n\u001b[0;32m---> 12\u001b[0m from check_utils import *\n\u001b[1;32m 13\u001b[0m #from get_utils import *\n\u001b[1;32m 14\u001b[0m from logging_config import logger\n", + "File \u001b[0;32m~/files/coding space/vlbi-pipeline/simulation/../vlbi-pipeline/check_utils.py:4\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m#!/usr/bin/env python\u001b[39;00m\n\u001b[1;32m 3\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01msys\u001b[39;00m\n\u001b[0;32m----> 4\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mAIPS\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m AIPS, AIPSDisk\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mAIPSTask\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m AIPSTask, AIPSList\n\u001b[1;32m 6\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mAIPSData\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m AIPSUVData, AIPSImage\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'AIPS'" + ] + } + ], + "source": [ + "import sys\n", + "import os\n", + "# 获取notebook所在目录的父目录\n", + "sys.path.append('../vlbi-pipeline/')\n", + "from utils import gcal_apply" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0b5f77fe", + "metadata": {}, + "outputs": [], + "source": [ + "tar_org_uvf = AIPSUVData(target_name,'uvf',1,1)\n", + "loadfr(filepath, filename, outname, outclass, outdisk, antname) # from run_tasks\n", + "tar_1_uvf = AIPSUVData(target_name+'_1','uvf',1,1)\n", + "copy_uvdata(indata, outname, outclass)\n", + "gcal_apply(indata,matx,cluse,pol)\n", + "\n", + "run_split2(indata, source, gainuse, outclass, doband, bpver, flagver,av_chan, split_seq)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.2" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/simulation/sim_main.py b/simulation/sim_main.py new file mode 100644 index 0000000..8222350 --- /dev/null +++ b/simulation/sim_main.py @@ -0,0 +1,279 @@ +import numpy as np +import pexpect, os +from pathlib import Path +import argparse +import pandas as pd +# from simulation.fit_in_difmap import ( +# init_difmap, +# prepare_observation, +# getsnr_difmap, +# cleanup_difmap, +# get_model_parm, +# parse_model_table, +# ) +# from simulation.cor_gain import ( +# apply_gains_to_uvfits_by_surgery, +# gen_ant_dict, +# ) +import fit_in_difmap, cor_gain +from concurrent.futures import ProcessPoolExecutor, as_completed +import multiprocessing + + + +def gen_antenna_gains( + nants: int, + gain_range: float = 0.1, + dist: str = "uniform", + seed: int | None = None, +) -> np.ndarray: + """ + 返回每根天线的幅度增益因子 g_i(real>0)。 + + gain_range=0.1 -> uniform: [0.9, 1.1] + gaussian: mean=1, sigma=gain_range/2, 严格限定在 [0.9, 1.1] + dist: "uniform" 或 "gaussian" + """ + rng = np.random.default_rng(seed) + lo, hi = 1 - gain_range, 1 + gain_range + + if dist.lower() == "uniform": + g = rng.uniform(lo, hi, size=nants) + elif dist.lower() == "gaussian": + sigma = gain_range / 2 + g = 1 + rng.normal(loc=0.0, scale=sigma, size=nants) + g = np.clip(g, a_min=lo, a_max=hi) # 严格限定在 [lo, hi] 范围内 + g = np.round(g, decimals=3) + else: + raise ValueError("dist must be 'uniform' or 'gaussian'") + + return g + +def clear_uv(filename): + """删除中间文件""" + p = Path(filename) + if p.is_file(): + try: + p.unlink() + print(f"[PID {os.getpid()}] Deleted temporary file: {filename}") + # also remove the associated file with certain name pattern if exists + # and also remove the parent dir + add_name = "single_mf_dfmp" + p_add = p.parent / add_name + if p_add.is_file(): + p_add.unlink() + print(f"[PID {os.getpid()}] Deleted associated temporary file: {add_name}") + p_parent = p.parent + if p_parent.is_dir(): + try: + p_parent.rmdir() + print(f"[PID {os.getpid()}] Deleted temporary directory: {p_parent}") + except OSError: + pass # Directory not empty or other error, ignore + + except Exception: + print(f"[PID {os.getpid()}] Failed to delete temporary file: {filename}, will just ignore it.") + pass + + +def _run_one_sim(i, filepath_str, nants, gain_range, sim_mode,out_dir_str, clear_temp_uv=True): + """Helper to run a single simulation iteration in a worker process. + + Returns a list of record dicts for this simulation. + """ + import os + from pathlib import Path + import fit_in_difmap, cor_gain + + pid = os.getpid() + filepath = Path(filepath_str) + out_dir = Path(out_dir_str) + sim_dir = out_dir /f"sim_uv" / f"sim_{i+1:04d}_pid_{pid}" + os.makedirs(sim_dir, exist_ok=True) + + gains = gen_antenna_gains(nants, gain_range=gain_range, dist="uniform") #, seed=None, not necessary to set seed in parallel, give pure random + # Use process id in logging so it's easier to trace parallel runs + print(f"[PID {pid}] Simulation {i+1}/{os.environ.get('SIM_TIMES', '?')}") + # add: if mod start with 'jk', do jackknife by ant or time, gains_list are not necessary, only nants used, can just give a random + # gains = np.ones(nants) # dummy gains for jk mode + # out_uv = cor_gain.main( + # gains_list=gains.tolist(), + # input_uv=filepath, + # out_suffix=f"gainvar_{i+1}", #change this if add jk + # out_dir=out_dir, + # ) # add parm for mode: gain_var, jk_ant, jk_time --- duplicate this and use different output for cor_gain.main + + if sim_mode == 'gain_var': + out_suffix = f"gainvar_{i+1}" + print(f"[PID {pid}] Applying gain variation simulation with suffix: {out_suffix}") + print(f"[PID {pid}] Gains applied: {gains}") + elif sim_mode == 'jk_drop_ant': + out_suffix = f"jk_dropant_{i % nants + 1}" # cycle through antennas + print(f"[PID {pid}] Applying jackknife drop antenna simulation with suffix: {out_suffix}") + elif sim_mode == 'jk_drop_time': + out_suffix = f"jk_droptbin_{i % 10 + 1}" # cycle through 10 time bins This mode only have 10 results as the time bins are fixed + print(f"[PID {pid}] Applying jackknife drop time bin simulation with suffix: {out_suffix}") + elif sim_mode == 'jk_drop_timeblock': # this mode drop 1/10 times but with random starting time block to drop, all antennas go through same timeblock drop + out_suffix = f"jk_droptblock_{i + 1}" + print(f"[PID {pid}] Applying jackknife drop time block simulation with suffix: {out_suffix}") + elif sim_mode == 'drop_timeblock_per_ant': # Compare with 'jk_drop_timeblock', this mode drop different random time block for each antenna + out_suffix = f"droptblockperant_{i + 1}" + print(f"[PID {pid}] Applying jackknife drop time block per antenna simulation with suffix: {out_suffix}") + else: + raise ValueError("sim_mode must be 'gain_var', 'jk_drop_ant', 'jk_drop_time', 'jk_drop_timeblock', or 'drop_timeblock_per_ant'") + out_uv, outparm_name, outparm = cor_gain.main( + gains_list=gains.tolist(), + input_uv=filepath, + out_suffix=out_suffix, + out_dir=sim_dir, # specify sim_dir to avoid conflicts, old is out_dir + mode=sim_mode) + + do_debug = False + if not clear_temp_uv: + do_debug = True + df_model = fit_in_difmap.main( + uvf_path=out_uv, + freq=9, + debug=do_debug, # set true if needed + ) + # if the df_model is not in valid format, clear the uv output and retry entil valid result is obtained + retry_count = 0 + + def need_retry(df_model) -> bool: + if df_model is None: + return True + if not hasattr(df_model, "empty") or df_model.empty: + return True + if "flux_jy" not in df_model.columns: + return True + return df_model["flux_jy"].isnull().any() + + while need_retry(df_model) and retry_count <= 20: + print(f"[PID {pid}] Warning: Fitted model is empty or invalid (all flux_jy are NaN). Retrying simulation {i+1} (attempt {retry_count + 1}/20).") + # clear the previous uv file + clear_uv(out_uv) + # rerun cor_gain and fit_in_difmap + out_uv, outparm_name, outparm = cor_gain.main( + gains_list=gains.tolist(), + input_uv=filepath, + out_suffix=out_suffix, + out_dir=sim_dir, # specify sim_dir to avoid conflicts, old is out_dir + mode=sim_mode) + df_model = fit_in_difmap.main( + uvf_path=out_uv, + freq=9, + debug=do_debug, # set true if needed + ) + retry_count += 1 + + recs = [] + for rec in df_model.to_dict(orient='records'): + # rec['gains'] = ','.join([f"{g:.2f}" for g in gains]) + rec[outparm_name] = outparm + rec['simulation_id'] = i + 1 + recs.append(rec) + + # remove temporary uv if produced + if clear_temp_uv: + clear_uv(out_uv) + + return recs + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Simulate gain variations and fit models in Difmap.") + parser.add_argument('--input_uv', type=str, required=True, help='Input uv file path (e.g., /path/to/TARGET.uvf)') + parser.add_argument('--nants', type=int, default=10, help='Number of antennas') + # Boolean flags: provide both enable/disable forms for robust CLI parsing + parser.add_argument('--auto_set', dest='auto_set', action='store_true', help='Run with hardcoded settings for certain experiments') + parser.add_argument('--no-auto_set', dest='auto_set', action='store_false', help='Disable hardcoded settings for experiments') + parser.set_defaults(auto_set=False) + parser.add_argument('--gain_range', type=float, default=0.1, help='Gain variation range (e.g., 0.1 for ±10%)') + parser.add_argument('--sim_times', type=int, default=10, help='Number of simulation times') + parser.add_argument('--s_mode', type=str, default='gain_var', choices=['gain_var', 'jk_drop_ant', 'jk_drop_time', 'jk_drop_timeblock', 'drop_timeblock_per_ant'], help='Simulation mode: gain variation or jackknife') + parser.add_argument('--out_dir', type=str, default='./simulations/', help='Prefix for output directory for simulation results') + parser.add_argument('--clear_temp_uv', dest='clear_temp_uv', action='store_true', help='Clear temporary uv files after simulation') + parser.add_argument('--no-clear_temp_uv', dest='clear_temp_uv', action='store_false', help='Do not clear temporary uv files after simulation') + parser.set_defaults(clear_temp_uv=True) + args = parser.parse_args() + filepath = Path(args.input_uv) + file_name = filepath.stem + nants = args.nants + auto = args.auto_set + clear_uvs = args.clear_temp_uv + if auto: # change this hardcode setting if use --auto_set + print("Running with hardcoded auto settings for experiments.") + epcoch_list = ['GRB221009A-ba161a1', 'GRB221009A-ba161b1', 'GRB221009A-ba161c1', + 'GRB221009A-bl307bx1', 'GRB221009A-bl307cx1', 'GRB221009A-bl307dx1', + 'GRB221009A-bl307ex1', 'GRB221009A-bl307fx1', 'GRB221009A-bl307gx1'] + nant_list = [8,9,9,9,9,10,9,11,11] + list_len = len(epcoch_list) + else: + epcoch_list = [file_name] + nant_list = [nants] + list_len = 1 + gain_range = args.gain_range + sim_times = args.sim_times + sim_mode = args.s_mode + pid = os.getpid() + + # Parallel execution using processes. Each worker runs one simulation iteration. + # WARNING: ensure `cor_gain.main` and `fit_in_difmap.main` are safe to run concurrently + # (no shared temp files). We pass strings/paths to workers to avoid cwd issues. + for idx in range(list_len): + nants = nant_list[idx] + filepath = Path(args.input_uv.replace(file_name, epcoch_list[idx])) + print(f"Starting {sim_mode} simulations for epoch {epcoch_list[idx]} with {nants} antennas.") + out_dir = Path(args.out_dir) / epcoch_list[idx] + os.chdir(filepath.parent) + os.makedirs(out_dir, exist_ok=True) + records = [] + if sim_mode.startswith('jk'): + # in jk mode, sim_times is determined by nants or other parms, here just set a large number to cover all + if sim_mode == 'jk_drop_ant': + print(f"updating sim_times to number of antennas: {nants} for jk_drop_ant mode.") + if sim_times <= nants: + print(f"Note: sim_times {sim_times} is less than nants {nants}, updating to nants for at least one drop per antenna.") + sim_times = nants # drop each antenna once + elif sim_mode == 'jk_drop_time': + print(f"updating sim_times to 10 for jk_drop_time mode.") + if sim_times <= 10: + print(f"Note: sim_times {sim_times} is less than 10, updating to 10 for at least one drop per time bin.") + sim_times = 10 # drop each time bin once + + print(f"Simulation mode: {sim_mode}, will run {sim_times} simulations per epoch.") + max_workers = min(sim_times, os.cpu_count() or 5) + os.environ['SIM_TIMES'] = str(sim_times) + + if max_workers <= 1: + # fallback to serial execution + for i in range(sim_times): + records.extend(_run_one_sim(i, str(filepath), nants, gain_range,sim_mode, str(out_dir), clear_uvs)) + else: + with ProcessPoolExecutor(max_workers=max_workers) as exe: + futures = {exe.submit(_run_one_sim, i, str(filepath), nants, gain_range, sim_mode, str(out_dir), clear_uvs): i for i in range(sim_times)} + for fut in as_completed(futures): + recs = fut.result() + records.extend(recs) + df_all = pd.DataFrame.from_records(records) + out_csv_name = f"simulated_source_parms_{epcoch_list[idx]}_{sim_mode}_{sim_times}_pid{pid}.csv" + output_csv = out_dir / out_csv_name + # rename if necessary to avoid overwrite + if output_csv.is_file(): + count = 1 + while True: + new_name = output_csv.with_name(f"{output_csv.stem}_v{count}{output_csv.suffix}") + if not new_name.is_file(): + output_csv = new_name + break + count += 1 + df_all.to_csv(output_csv, index=False) + print(f"All simulation results saved to {output_csv}.") +### Usage example: +## python sim_gain_var.py --input_uv ./simulation/fits_uvtest.uvf --nants 10 --gain_range 0.1 --sim_times 20 --out_dir ./simulation/results/ +## python sim_gain_var.py --input_uv ./simulation/GRB221009A-ba161a1.uvf +# --no-auto_set --gain_range 0.1 +# --s_mode jk_drop_ant +# --sim_times 50 --out_dir ./simulation/results/ +# --no-clear_temp_uv + diff --git a/simulation/sim_main_bk.py b/simulation/sim_main_bk.py new file mode 100644 index 0000000..8949972 --- /dev/null +++ b/simulation/sim_main_bk.py @@ -0,0 +1,99 @@ +import numpy as np +import pexpect, os +from pathlib import Path +import argparse +import pandas as pd +# from simulation.fit_in_difmap import ( +# init_difmap, +# prepare_observation, +# getsnr_difmap, +# cleanup_difmap, +# get_model_parm, +# parse_model_table, +# ) +# from simulation.cor_gain import ( +# apply_gains_to_uvfits_by_surgery, +# gen_ant_dict, +# ) +import fit_in_difmap, cor_gain + + + +def gen_antenna_gains( + nants: int, + gain_range: float = 0.1, + dist: str = "uniform", + seed: int | None = None, +) -> np.ndarray: + """ + 返回每根天线的幅度增益因子 g_i(real>0)。 + + gain_range=0.1 -> uniform: [0.9, 1.1] + gaussian: mean=1, sigma=gain_range/2, 严格限定在 [0.9, 1.1] + dist: "uniform" 或 "gaussian" + """ + rng = np.random.default_rng(seed) + lo, hi = 1 - gain_range, 1 + gain_range + + if dist.lower() == "uniform": + g = rng.uniform(lo, hi, size=nants) + elif dist.lower() == "gaussian": + sigma = gain_range / 2 + g = 1 + rng.normal(loc=0.0, scale=sigma, size=nants) + g = np.clip(g, a_min=lo, a_max=hi) # 严格限定在 [lo, hi] 范围内 + g = np.round(g, decimals=3) + else: + raise ValueError("dist must be 'uniform' or 'gaussian'") + + return g + +def clear_uv(filename): + """删除中间文件""" + p = Path(filename) + if p.is_file(): + p.unlink() + print(f"Deleted temporary file: {filename}") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Simulate gain variations and fit models in Difmap.") + parser.add_argument('--input_uv', type=str, required=True, help='Input uv file path (e.g., /path/to/TARGET.uvf)') + parser.add_argument('--nants', type=int, default=10, help='Number of antennas') + parser.add_argument('--gain_range', type=float, default=0.1, help='Gain variation range (e.g., 0.1 for ±10%)') + parser.add_argument('--sim_times', type=int, default=10, help='Number of simulation times') + parser.add_argument('--out_dir', type=str, default='./simulations/', help='Output directory for simulation results') + args = parser.parse_args() + filepath = Path(args.input_uv) + nants = args.nants + gain_range = args.gain_range + sim_times = args.sim_times + out_dir = Path(args.out_dir) + + os.chdir(filepath.parent) + os.makedirs(out_dir, exist_ok=True) + + records = [] + for i in range(sim_times): + gains = gen_antenna_gains(nants, gain_range=gain_range, dist="uniform", seed=i) + print(f"Simulation {i+1}/{sim_times}, Generated Gains: {gains}") + out_uv = cor_gain.main( + gains_list=gains.tolist(), + input_uv=filepath, + out_suffix=f"gainvar_{i+1}", + out_dir=out_dir + ) + df_model = fit_in_difmap.main( + uvf_path=out_uv, + freq=2.3 + ) + clear_uv(out_uv) + for rec in df_model.to_dict(orient='records'): + rec['gains'] = ','.join([f"{g:.2f}" for g in gains]) + rec['simulation_id'] = i + 1 + records.append(rec) + df_all = pd.DataFrame.from_records(records) + output_csv = out_dir / "simulated_source_parms.csv" + df_all.to_csv(output_csv, index=False) + print(f"All simulation results saved to {output_csv}.") +### Usage example: +## python sim_gain_var.py --input_uv ./simulation/fits_uvtest.uvf --nants 10 --gain_range 0.1 --sim_times 20 --out_dir ./simulation/results/ diff --git a/simulation/single_mf_dfmp b/simulation/single_mf_dfmp new file mode 100644 index 0000000..e5e12eb --- /dev/null +++ b/simulation/single_mf_dfmp @@ -0,0 +1,20 @@ +!----------------------------------------------------------------------- +!A simple model fitting script for difmap, usage: @single_mf_dfmp save_file_name +! Output: the difmap style saved files with the given save_file_name +! ------------------------ ----------------------- ---------------- + + +select i +mapsize 2048,0.1 + +addcmp 0.1,true,0,0,true,0.2,True,1,false,0,true,1 + +modelfit 100 +print "************** FINISHED model fitting **************" + +!save %1 + + + + + diff --git a/stand_alone/Readme.md b/stand_alone/Readme.md new file mode 100644 index 0000000..b1f8ce9 --- /dev/null +++ b/stand_alone/Readme.md @@ -0,0 +1,51 @@ +## Header +- The vlbi pipeline script used for phase-referencing observations. +- This pipeline uses the `ParselTongue` package for python scripting the `AIPS` prcessings. + +## Pre-requisites +- AIPS installed and configured. +- ParselTongue installed. +- Obit installed +- Python 2.7 or 3.x. (python version should be in agreement with the ParselTongue version) + +## Main steps of the pipeline +Part I: Initial calibration +1. Data import and indexation. (fitld and indxr) +2. inosphereic TEC correction and Earth Orientation Parameters (EOP) correction. +3. A priori amplitude calibration.(accor, apcal) +4. Parrallactic angle correction. +5. Automated flagging of bad data. (aclip, quack etc.) +6. Data inspection plots. (possom, snplt ,vplot etc.) + After this part, mannual data inspection and flagging is recommended. Select a good scan for mannual phase calibration in the next part. Select the reference antenna for next parts. +Part II: Main fringe-fitting and calibration +7. (optional) Additional amplitede calibration using auto-correlation and bandpass calibration. (acscl, bpass) # Note: this is newer method, and mostly for complex bandpass and heavy RFI bands such as L-band. +8. Mannual phase calibration using fringe finder sources. (fring) +9. Main fringe-fitting using phase-referencing calibrators. (fring) +10. Bandpass calibration using bright sources. (bpass) +11. Solution application and phase calibrator imaging. (clcal, split) + At the end of this part, mannual inspection of the calibrator images and solutions is recommended. + Do imaging and self-calibration on the phase calibrator to improve the model in Difmap and generate a new clean component model file for the next step. + Also, note down the antenna gain correction factors during self-calibration for later use. + If necessary, repeat the fringe-fitting with different parameters or flag more bad data. +Part III: Target source imaging and analysis +12. (optional) Apply antenna gain correction factors obtained from self-calibration to the phase calibrator and target sources. (clcor) +12. Read in the new clean component model file of the phase calibrator. +13. Re-fringe fitting of the phase calibrator using the new model. (fring) +14. Solution application and target source imaging (optional: IF averaging). (clcal, split) +15. Target source imaging and analysis in Difmap or AIPS +16. (optional) Astrometric adjustments (uvshift). # Note: only when the target source is found to be far away from the phase center after first imaging. It is designed to deal with the smearing effect. + +## How to use it +The data should be first downloaded to the data directory and assign it in the `ba161a-pip-parms.py` input parm. +1. Modify the input parameters in the parm file according to your data and needs. + 1.1 Set the data path and name in the `Input Parameters part I` of the parm file. The set the control flags `step1=1` (the rest should be 0) and then run the pipeline to do initial data import and inspection. + 1.2 After the first part ends, inpsect the data according to the output file and set parameters in the `Input Parameters part II` of the parm file. Then run using `step2=1` (the rest should be 0) to do the main calibration. + 1.3 After the second part ends, image the phase calibrator and self-calibrate it in Difmap. Note down the gain correction factors if any. + Set the parameters in the `Input Parameters part III` of the parm file. Then run using `step3=1` (the rest should be 0) to do the target source imaging. + +2. Run the pipeline script using the command: + ```shell + parseltongue ba161a-pipe-parms.py + ``` +Note for ba161: out input data have include the parameters for all three steps, so one can reproduce the whole process by running the pipeline just once with step1=1, step2=1 and step3=1. +Usually, both `SCL10` and `SCL11` version of the target name file is good for final analysis based on the standard calibration process. There shold have no big difference between the two. (SCL11 include a further attempt on on time-dependent amplitude calibration using `CALIB` in AIPS, which may improve the image quality a bit in some cases.) Choose `SCL10` if you are conservative on it. diff --git a/stand_alone/ba161a-pip-parms.py b/stand_alone/ba161a-pip-parms.py new file mode 100644 index 0000000..ca1e69e --- /dev/null +++ b/stand_alone/ba161a-pip-parms.py @@ -0,0 +1,271 @@ +#!/usr/bin/env ParselTongue +############################################################################## +# ParselTongue Script for VLBI calibration # +# # +# Reads in data, runs indxr, checks antenna tables, writes station_file.inp, # +# control_file.inp and calibrator_file.inp (for continuum data), downloads # +# TEC-maps and EOPs, and runs TECOR and EOP corrections, runs manual # +# phase-cal, finge-fit on geo-sources, writes out files for fitting # +############################################################################## +##Currently non-used commands, just leave it there## +download_flag = 0 # Download data from archive? not needed +geo_data_nr = 0 # data file with geo data? (<0 for no geoblock) +cont = 0 # data file with continuum data? +line = 0 # data file with line data? +pr_prep_flag = 0 # Run TECOR, EOPs, ATMOS, PANG, and position shift? +#============================================================================= +############################### +from AIPS import AIPS +import os +import sys +def_file = './vpipe_standalone_v2.py' # Default file with main script + +aipsver = '31DEC19' + + +############### Input Parameters part I############# +logfile = 'ba161a-pype.log' + +file_path = '/data/VLBI/VLBA/ba161a1/' +geo_path = '../geod/' +TECU_model = 'jplg' +antname = 'VLBA' +AIPS.userno = 162 +inter_flag = 0 # interactive (1) or non-interactive (0) mode +n = 1 # Number of UV-data files either to download, on disk + # or already in AIPS and to be analyzed +defdisk = 1 # Default AIPS disk to use (can be changed later) + +############ Input Parameters part I(end)############# + +############################################################################# +### Do not change or move this part #### +[filename, outname, outclass] = [range(n),range(n),range(n)] +[nfiles, ncount, doconcat] = [range(n),range(n),range(n)] +[outdisk, flagfile, antabfile] = [range(n),range(n),range(n)] +for i in range(n): + [flagfile[i], antabfile[i], outdisk[i]] = ['','',defdisk] + [nfiles[i], ncount[i], doconcat[i]] = [0,1,-1] +############################################################################# + + +############### +# Input Files # +############### +#This only for single file +#print("FILE PATH =========",file_path) +filename[0] = 'ba161a.idifits' +outname[0] = 'ba161a' +outclass[0] = 'uvdata' +nfiles[0] = 1 # FITLD parameter NFILES +ncount[0] = 1 # FITLD parameter NCOUNT +doconcat[0] = 0 # FITLD parameter DOCONCAT + # Optional parameters for each file +# outdisk[0] = 3 # AIPS disk for this file (if != defdisk) +#usually for EVN stations +# flagfile[0] = 'flagfile.uvflg' # flag file for UVFLG +# antabfile[0] = 'antabfile.antab' # antab file for ANTAB + +print("FILE NAME =========",filename[0])#,filename[1],filename[2]) +print("OUT NAME =========",outname[0])#,outname[1],outname[2]) +print(sys.argv) +if (os.path.exists(outname[0])==False): + os.mkdir(outname[0]) +################# +# Control Flags # +################# +step1 = 1 #auto control of the flags in this block + #set to 1 for automatic procedure, set 0 to enable task by task mannual checking +step2 = 1 +step3 = 1 +################################## +# Data preparation and first prep# +################################## + +load_flag = 0 # Load data from disk? +listr_flag = 0 # Print out LISTR? +dtsum_flag = 0 # Run dtsum to check antena participation? +tasav_flag = 0 # Run tasav on original tables? +geo_prep_flag = 0 # Run TECOR and EOP corrections? and uvflg for evn data + +#get_key_flag = 0 # Download key-file from archive +#RDBE_check = 0 # Check Geoblock data for RDBE errors? +if step1 == 1: + load_flag = 1 + listr_flag = 1 + tasav_flag = 1 + geo_prep_flag = 1 + dtsum_flag = 1 + first_cal_flag = 1 # Include ACCOR and PANG + + + +########################## Input Parameters part II####################### +# information to fill after first prep # +######################################################################### +## single step before step 2: find the calibrator scan as possm scan ## +## and run possm, snplt(ty) to find refantenna and fill the rest info ## +######################################################################### +possm_scan = [0,23,42,0,0,23,44,0] +RFIck_tran = [0] +inspect_flag = 0 # Run possm and snplt to check and run antab for EVN data +#if inspect_flag =2, then it will check the RIFck_tran for long RFI finds, this will ned the name of the p_ref_cal, it should be run after first inepect=1 finished. +quack_flag = 0 # Run quack if special considerations (e.g. EVN p-ref),outputfg=2 (VLBA, 2 sec) +#============================================================================= +antnum=0 +ifnum=0 +infg=2 +clip_outfg=2 + +clip_flag = 0 # >=1: use aclip to cut the total-power out of 0-2.5 range in the autocorrelation, generate new fg 2 table. +#if =2, use aclip to cut with specific ranges(clpmx). +#clip works on fg2 +#============================================================================= +fgantennas=[[0],[0],[0],[0],[0],[0],[0],[0]] +fgbif=[1,2,2,2,2,3,3,4] +fgeif=[1,2,2,2,2,3,3,4] +fgbchan=[1,43,139,171,229,75,63,85] +fgechan=[1,120,149,178,247,88,65,256] + +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] + +[fgtimer,outfg]=[[0],3] #outfg must >= 3 + +man_uvflg_flag = 0 # Run uvflg to flag bad IFs and antennas if needed +#============================================================================= + +refant = 2 # refant=0 to select refant automatically +refant_candi= [8,4,1,0] # candidate refant for search in fringe +calsource = ['3C345'] # calibrator '' => automatically +mp_source = calsource # fringe finder '' => automatically +mp_timera = possm_scan # constrain time range for fringe finder? +bandcal = ['3C345'] # Bandpass calibrator +#target = ['J1430+2303'] # target sourcer +#p_ref_cal = ['P1427+2348'] # phase ref calbrator sources '' => automatically +#targets = target + p_ref_cal + +flagver = 2 # Flag table version to be used +tyver = 1 # Tsys table version to be used +chk_trange = [0] #timerange on p_cal for possm checking +dofit=1 +#dofit= [-1,1,1,1,1,1,-1,-1,1,1,1,1,1,1,-1] #usually for EVN with tsys antenas +apfive = 1 #This sets the aparm(5) in fringe (how to combine IFs in the global finge fitting: 0=not combine, 1=combine all, 3=combine in halves +split_seq = 1 #for muti pyfiles in the same username, set this differently will avoid bugs during split and fittp, if not, use 1 only. +#===================================================================================== +tar_names=['G221009A'] +pref_names=['P1905+1943'] + + +################# Input Parameters part II (end)################## +if step2 >= 1: + for i in range(len(tar_names)): + target = [tar_names[i]] # target sourcer + p_ref_cal = [pref_names[i]] # phase ref calbrator sources '' => automatically + targets = [target[0],p_ref_cal[0]] + if i == 0: + first_cal_flag = 1 # Include ACCOR and PANG + pr_fringe_flag = 1 # Do manual phase cal? + new_amp_flag = 1 # include BPASS and ACSCL + apcal_flag = 1 # Do amplitude + else: + first_cal_flag = 0 # Include ACCOR and PANG + pr_fringe_flag = 0 # Do manual phase cal? + new_amp_flag = 0 # include BPASS and ACSCL + apcal_flag = 0 # Do amplitude + do_fringe_flag = 1 # Do first run of fringe cal on all sources? + plot_first_run = 1 # DO possm and snplt to check first run result? + #do_band_flag = 1 + split_1_flag = 1 # Split calibrated data in first run? + if step2 >=2: #To check sources that can be directly self-calibrated + apcal_flag = 0 # Do amplitude calibration? + pang_flag = 0 # Run PANG? + pr_fringe_flag = 0 # Do manual phase cal? + + do_fringe_flag = 2 # Do first run of fringe cal on all sources? + plot_first_run = 0 # DO possm and snplt to check first run result? + do_band_flag = 1 + split_1_flag = 2 # Split calibrated data in first run? + execfile(r''+def_file) + + +###################### Input Parameters part III############################### +#for networks that are not well constained with tgain(e.g. EVN) +#[[cor factor for each IF for first antenna],[cor factor for each IF for 2nd antenna]...] +#1905 +matxi=[[1.0,1.0,1.2,1.0,1.0,1.0,1.0,1.0], + [1.0,1.0,1.0,1.0,1.0,1.0,0.9,1.0], + [1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0], + [1.0,1.0,1.1,1.0,1.0,1.0,0.9,1.0]] + +pol='I' +snchk=4 +cluse=8 +do_gaincor_flag = 1 #set this and go back to step2s + +################################## +# Optional inputs for fringe fit # +################################## +fr_path='./ba161a/' +fr_file='P1905-v1-mod1.fits' +# J0157-v1-cln4.fits(2); J2300-v1-cln4.fits(0); J0004-v1-cln3(1) +[fr_nm, fr_cls, fr_dsk, fr_sq] = ['P1905-fr','CLN',1,1] + # Input image to use in FRINGE: + # ['NAME','CLASS',DISK,SEQUENCE] +target = [tar_names[0]] # target sourcer +p_ref_cal = [pref_names[0]] # phase ref calbrator sources '' => automatically +targets = [target[0],p_ref_cal[0]] +snchk=4 +cluse=8 +dwin,rwin=[1.2,20] # in ns and mHz +smodel = [0,0] # SMODEL in FRING +solint = 4 # SOLINT in FRING +nmaps = 1 # NMAPS in FRING +no_rate1 = 0 #for first fringe(no model)#if =1, suppress rate in fringe(dparm8), if=0 fit rate as usual +nofit_rate = 1 #for 2nd fringe(with model)#if =1, suppress rate (not zeroing) in fringe(dparm8), if=0 fit rate as usual +#ftrate=1 +#apfive = 1 +sncor_timer =[0] +if step3 == 1: + ld_fr_fringe_flag = 1 + do_fr_fringe_flag = 1 + do_calib_1_flag = 1 + check_delay_rate = 1 + split_2_flag = 1 + + +###################################Input Parameters part III (end)#################################### + +########################### +# Extra step and parameters +######################uv-shift after find that the target source is > 50 mas from the phase center############### +rash=-0.00237 #in arcsec, no need to times cos(dec) +decsh=-0.00042 #in arcsec +do_uvshift_flag = 1 +####################### +################################################## +#### Use parseltongue to rorate phase in a sn table +ex_step1 = 0 +################## +r_factor = 0.42 +fr2_file='P1923-v1-cln2.fits' +# P1923-v1-cln2.fits(2); P1905-v1-mod2.fits(0); P1905-v1-mod2.fits(1) +[fr2_nm, fr2_cls, fr2_dsk, fr2_sq] = ['P1923-fr','CLN',1,1] +#====================================================================== + +if ex_step1 == 1: + ld_fr2_fringe_flag = 1 + resi_phcal_flag = 1 + sn_rotate_flag = 1 + app_rotate_flag = 1 + splt_3_flag = 1 + +############################################################################## +# Start main script + +execfile(r''+def_file) + +# +############################################################################## + diff --git a/stand_alone/vpipe_standalone_v2.py b/stand_alone/vpipe_standalone_v2.py new file mode 100644 index 0000000..441a283 --- /dev/null +++ b/stand_alone/vpipe_standalone_v2.py @@ -0,0 +1,6523 @@ +############################################################################## +# ParselTongue definition file for VLBI calibration # +# # +# Orginated from Bessel project by Andreas Brunthaler # +# Modified by Yingkang Zhang, 2016-2023 # +############################################################################## + + +version_date='2016/04/06' + +from AIPS import AIPS, AIPSDisk +from AIPSTask import AIPSTask, AIPSList +from AIPSData import AIPSUVData, AIPSImage +from Wizardry.AIPSData import AIPSUVData as WAIPSUVData +import AIPSTV +import AIPS, os, math, time +from pylab import * +import sys +if 'aipsver' in locals() and globals(): AIPSTask.version = aipsver +else: aipsver = AIPSTask.version + +############################################################################## +# Start defs + +def check_sx(indata,logfile): + if indata.header.naxis[3]>1: + fq=indata.table('AIPS FQ',0) + fq_span=fq[0]['if_freq'][indata.header.naxis[3]-1]-fq[0]['if_freq'][0] + frq=(indata.header.crval[2]+0.5*fq_span)/1e9 + if 3>indata.header.crval[2]/1e9>2 and fq_span>1e9: + return True + return False + else: return False + +def check_clh(indata,logfile): + if indata.header.naxis[3]>1: + fq=indata.table('AIPS FQ',0) + fq_span=fq[0]['if_freq'][indata.header.naxis[3]-1]-fq[0]['if_freq'][0] + frq=(indata.header.crval[2]+0.5*fq_span)/1e9 + if 8>indata.header.crval[2]/1e9>4 and fq_span>6e8: + return True + return False + else: return False + +def split_sx(indata,split): + uvcop = AIPSTask('UVCOP') + uvcop.indata = indata + uvcop.flagver = indata.table_highver('AIPS FG') + uvcop.bif = 1 + uvcop.eif = 4 + uvcop.outname = indata.header['observer']+'-G-S' + uvcop.outclass = 'UVDATA' + uvcop.outdisk = uvcop.indisk + + outdata_s = AIPSUVData(uvcop.outname,'UVDATA',1,1) + if split==1: + if outdata_s.exists(): + outdata_s.zap() + uvcop.go() + + uvcop.indata = indata + uvcop.flagver = indata.table_highver('AIPS FG') + uvcop.bif = 5 + uvcop.eif = 8 + uvcop.outname = indata.header['observer']+'-G-X' + uvcop.outclass = 'UVDATA' + uvcop.outdisk = uvcop.indisk + + outdata_x = AIPSUVData(uvcop.outname,'UVDATA',1,1) + if split==1: + if outdata_x.exists(): + outdata_x.zap() + uvcop.go() + + return outdata_s, outdata_x + +def split_clh(indata,split): + uvcop = AIPSTask('UVCOP') + uvcop.indata = indata + uvcop.flagver = indata.table_highver('AIPS FG') + uvcop.bif = 1 + uvcop.eif = 4 + uvcop.outname = indata.header['observer']+'-G-CL' + uvcop.outclass = 'UVDATA' + uvcop.outdisk = uvcop.indisk + + outdata_l = AIPSUVData(uvcop.outname,'UVDATA',1,1) + if split==1: + if outdata_l.exists(): + outdata_l.zap() + uvcop.go() + + uvcop.indata = indata + uvcop.flagver = indata.table_highver('AIPS FG') + uvcop.bif = 5 + uvcop.eif = 8 + uvcop.outname = indata.header['observer']+'-G-CH' + uvcop.outclass = 'UVDATA' + uvcop.outdisk = uvcop.indisk + + outdata_h = AIPSUVData(uvcop.outname,'UVDATA',1,1) + if split==1: + if outdata_h.exists(): + outdata_h.zap() + uvcop.go() + + return outdata_l, outdata_h + +def mprint(intext,logfile): + print intext + f=open(logfile, 'a') + f.writelines(intext+'\n') + f.close() + +def get_ant(data): + antennas = {} + for row in data.table('AN', 0): + antennas[row.nosta] = row.anname[0:2] + return antennas + +def time_to_hhmmss(time): + day = int(time) + if time>1: + time=time-int(time) + hour = int(time*24) + min = int(60*(time*24-hour)) + sec = int(60*(60*(time*24-hour)-min)) + return day,hour,min,sec + +def isinde(number): + INDE = 3140.892822265625 + return abs(number-INDE)<1e-12 + +def get_timerange_tab(indata,table,i): + sn_table = indata.table(table, 0) + time1 = sn_table[i].time-0.5*sn_table[i].time_interval + time2 = sn_table[i].time+0.5*sn_table[i].time_interval + (day1,hour1,min1,sec1)=time_to_hhmmss(time1) + (day2,hour2,min2,sec2)=time_to_hhmmss(time2) + timerange = [day1, hour1, min1, sec1, day2, hour2, min2, sec2] + return timerange + +############################################################################## +# Get the day-of-year integer from the year/month/day +# +def get_day_of_year(year, month, day): + day_of_year_list = [0,31,59,90,120,151,181,212,243,273,304,334] + doy = day_of_year_list[month-1] + day + if(month>2): + if((year&0x3)==0): + if((year % 100 != 0) or (year % 400 == 0)): + doy = doy+1 + return doy + +############################################################################## +# Get the day of year from the Year, month, day for the start of observations +# +def get_observation_year_month_day(aips_data): + date_string = aips_data.header.date_obs + date_list = date_string.split('-') + year = int(date_list[0]) + month = int(date_list[1]) + day = int(date_list[2]) + return (year, month, day) + +############################################################################## +# Get number of days +# +def get_num_days(indata): + nx_table = indata.table('AIPS NX', 0) + n = len(nx_table) + num_days = int(nx_table[n-1]['time']+1) + return num_days + +############################################################################## +# Get center UTC +# +def get_utc(indata): + nx_table = indata.table('AIPS NX', 0) + n = len(nx_table) + ut1 = nx_table[0]['time'] + ut2 = nx_table[n-1]['time'] + utc = (ut1+ut2)/2. + return utc + +############################################################################## +# Get center frequency in GHz +# +def get_center_freq(indata): + fq = indata.table('AIPS FQ',0) + naxis = indata.header['naxis'] + if naxis[3]>1: + fq_span=fq[0]['if_freq'][indata.header.naxis[3]-1]-fq[0]['if_freq'][0] + frq=(indata.header.crval[2]+0.5*fq_span) + else: + frq=indata.header.crval[2] + return frq + +############################################################################## +# Download TEC maps +# +def get_TEC(year,doy,TECU_model,geo_path): + year=str(year)[2:4] + if doy<10: + doy='00'+str(doy) + elif doy<100: + doy='0'+str(doy) + else: + doy=str(doy) + + name=TECU_model+doy+'0.'+year+'i' +# name4='esag'+doy+'0.'+year+'i' +# if os.path.exists(name) or os.path.exists(name2): + if os.path.exists(geo_path+name): + print 'TEC File already there.' + else: + path='https://cddis.nasa.gov/archive/gps/products/ionex/20'+year+'/'+doy+'/' + os.popen(r'curl -c cookies.curl --netrc-file ~/.netrc -n -L -O '+path+name+'.Z') + os.popen(r'uncompress -f '+name+'.Z') + os.popen(r'mv '+name+' '+geo_path) +# if os.path.exists(name+'.Z'): +# os.popen(r'rm '+name+'.Z') +# os.popen(r'wget -t 30 -O '+name2+'.Z '+path+name2+'.Z') +# os.popen(r'uncompress -f '+name2+'.Z') + +def check_geo(indata): + nx_table = indata.table('AIPS NX', 0) + n_block = 1 + n = len(nx_table) + b = [] + b.append(round(nx_table[0]['time']-0.01,2)) + for i in range(1,n): + if (nx_table[i]['time']-nx_table[i-1]['time'])>0.02: + n_block=n_block+1 + b.append(round(nx_table[i]['time']-0.01,2)) + b.append(round(nx_table[n-1]['time']+0.01,2)) + return b + + +############################################################################## +# +def runTECOR(indata,year,doy,num_days,gainuse,TECU_model): + year=str(year)[2:4] + if doy<10: + doy='00'+str(doy) + if doy<100: + doy='0'+str(doy) + else: + doy=str(doy) + name=TECU_model+doy+'0.'+year+'i' +# name2='codg'+doy+'0.'+year+'i' + print(geo_path+name) + tecor = AIPSTask('TECOR') + if os.path.exists(geo_path+name): + tecor.infile=geo_path+name +# elif os.path.exists(name2): +# tecor.infile='PWD:'+name2 + print(tecor.infile) + tecor.indata=indata + tecor.nfiles=num_days + tecor.gainuse = gainuse + tecor.aparm[1:] = [1,0] + tecor() + +############################################################################## +# Download EOP file +# +def get_eop(geo_path): + if os.path.exists(geo_path+'usno_finals.erp'): + #+++ ZB + age = (time.time() - os.stat(geo_path+'usno_finals.erp')[8])/3600 + if age<12: pass + else: + os.popen(r'curl -c cookies.curl --netrc-file ~/.netrc -n -L -O "https://cddis.nasa.gov/archive/vlbi/gsfc/ancillary/solve_apriori/usno_finals.erp"') + os.popen(r'mv usno_finals.erp '+geo_path) + print 'EOP---> Use latest downloaed erp file' + #--- ZB + + + +############################################################################## +# +def runeops(indata, geo_path): + eops = AIPSTask('CLCOR') + eops.indata = indata + eops.gainver = 2 + eops.gainuse = 3 + eops.opcode = 'EOPS' + eops.infile = geo_path+'usno_finals.erp' + eops() + +############################################################################## +# +def runuvflg(indata,flagfile,logfile): + if flagfile!='' and os.path.exists(flagfile): + uvflg = AIPSTask('UVFLG') + uvflg.indata = indata + uvflg.intext = flagfile + uvflg.opcode = 'FLAG' + uvflg.go() + else: + mprint('No UVFLG file applied.',logfile) + +def new_uvflg(indata,timeran,bif,eif,bchan,echan,antennas,outfg): + uvflg = AIPSTask('UVFLG') + uvflg.indata = indata + uvflg.opcode = 'FLAG' + uvflg.timer[1:] = timeran + uvflg.bif = bif + uvflg.eif = eif + uvflg.bchan = bchan + uvflg.echan = echan + uvflg.antenna[1:] = antennas + uvflg.outfgver = outfg + #uvflg.input() + uvflg.go() + +def run_aclip(indata,infg,outfg,gainuse,ant,ifnum,pol,vmax,near): + aclip = AIPSTask('ACLIP') + aclip.indata = indata + aclip.flagver = infg + aclip.outfgver = outfg + aclip.antenna[1:] = [ant,0] + aclip.bif = ifnum + aclip.eif = ifnum + aclip.stokes = pol + aclip.docalib = 1 + aclip.gainuse = gainuse + aclip.aparm[1] = vmax #maximum allowed + aclip.aparm[3] = 0.01 #minimum allowed (0 is -1e6) + aclip.aparm[7] = near #flag surrounding channels + aclip.go() + + +############################################################################## +# +def runindxr(indata): + indxr = AIPSTask('indxr') + indxr.indata = indata + indxr.cparm[1:] = [0, 0, 1./60.] + indxr() + +############################################################################## +# +def runsnflg(indata, inver, calsource): + + flag_sources = [calsource] + snflg = AIPSTask('snflg') + snflg.indata = indata + snflg.flagver = 0 + snflg.inext = 'SN' + snflg.inver = inver + snflg.optype = 'JUMP' + snflg.dparm[1:] = [57., 10., 0.] + snflg() + +############################################################################## +# +def run_elvflag(indata,elv_min,outfg,logfile): + uvflg = AIPSTask('UVFLG') + uvflg.indata = indata + uvflg.opcode = 'FLAG' + uvflg.aparm[1:] = [0,elv_min] + uvflg.outfgver = outfg + mprint('#####################################',logfile) + mprint('Flagging data for Elevations < '+str(elv_min),logfile) + mprint('#####################################',logfile) + uvflg.go() + + +############################################################################## +# Download data from archive + +def download(user,passw,file,path,filename): + if user=='nopass': + os.popen(r'wget --no-check-certificate -O '+path+ + file+' ftp://ftp.aoc.nrao.edu/e2earchive/'+ + file, 'w') + os.popen(r'mv '+path+file+' '+path+filename) + else: + os.popen(r'wget --no-check-certificate --http-user '+user+ + ' --http-passwd '+passw+' -t45 -O '+path+file+ + ' https://archive.nrao.edu/secured/'+user+'/'+ + file, 'w') + os.popen(r'mv '+path+file+' '+path+filename) + +############################################################################## +# Get .key and .sum file from archive +def get_key_file(indata,code): + mon_dir={1:'jan',2:'feb',3:'mar',4:'apr',5:'may',6:'jun',7:'jul',8:'aug' + ,9:'sep',10:'oct',11:'nov',12:'dec'} + path0=('http://www.vlba.nrao.edu/astro/VOBS/astronomy/') + (year,month,day) = get_observation_year_month_day(indata) + if code=='': + code_str = indata.header.observer.lower() + else: + code_str = outname[0] + path1=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+code_str+'.key' + path2=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+code_str+'.sum' + path3=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+code_str+'log.vlba' + path4=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+'jobs/'+'sniffer/'+code_str.upper()+'.'+str(year)+str(month).zfill(2)+str(day).zfill(2)+'.sniff' + if os.path.exists(outname[0]+'/'+code_str+'log.vlba'): + pass + else: + os.popen(r'wget '+path1) + os.popen(r'wget '+path2) + os.popen(r'wget '+path3) + os.popen(r'wget '+path4) + os.popen(r'mv '+code_str+'.key'+' '+outname[0]+'/') + os.popen(r'mv '+code_str+'.sum'+' '+outname[0]+'/') + os.popen(r'mv '+code_str+'log.vlba'+' '+outname[0]+'/') + os.popen(r'mv '+'*.sniff'+' '+outname[0]+'/') + +############################################################################## +# Load data and index it +# +def loadindx(filepath,filename,outname,outclass, + outdisk,nfiles,ncount,doconcat,antname,logfile): + if os.path.exists(filepath+filename): + mprint('File exists!',logfile) + else: + #+++ ZB + mprint('File '+filepath+filename+' dose not exists',logfile) + #--- ZB + raise RuntimeError('File does not exists!') + + fitld = AIPSTask('FITLD') + fitld.datain = filepath+filename + fitld.outname = outname + fitld.outclass = outclass + fitld.outseq = 1 + fitld.outdisk = int(outdisk) + fitld.ncount = ncount + fitld.nfiles = nfiles + fitld.doconcat = doconcat + fitld.clint = 1./60. + if antname == 'VLBA': + fitld.wtthresh = 0.7 + fitld.digicor = 1 + if antname == 'EVN': + fitld.digicor = -1 + # if aipsver!='31DEC09': + # fitld.antname[1:] = [antname] + + data = AIPSUVData(fitld.outname, fitld.outclass, + int(fitld.outdisk), int(fitld.outseq)) + if data.exists(): + mprint('##############################',logfile) + mprint('Data already there => passed!',logfile) + mprint('##############################',logfile) + mprint('No need reindexd!',logfile) + pass + #data.clrstat() + #data.zap() + #mprint('##############################',logfile) + #mprint('Data already there => deleted!',logfile) + #mprint('##############################',logfile) + else: + mprint('#########################',logfile) + mprint('Data not there => read in',logfile) + mprint('#########################',logfile) + fitld.input() + fitld.go() + data.zap_table('AIPS CL',1) + data.zap_table('AIPS NX',1) + runindxr(data) + mprint('#################',logfile) + mprint('Data new indexed!',logfile) + mprint('#################',logfile) + + mprint('################################################',logfile) + mprint(str(data)+' loaded!',logfile) + mprint('################################################',logfile) + +def loadfr(filepath,filename,outname,outclass,outdisk,antname,logfile): + if os.path.exists(filepath+filename): + mprint('File exists!',logfile) + else: + #+++ ZB + mprint('File '+filepath+filename+' dose not exists',logfile) + #--- ZB + raise RuntimeError('File does not exists!') + + fitld = AIPSTask('FITLD') + fitld.datain = filepath+filename + fitld.outname = outname + fitld.outclass = outclass + fitld.outseq = 1 + fitld.outdisk = int(outdisk) + #if aipsver!='31DEC09': + # fitld.antname[1:] = [antname] + + data = AIPSUVData(fitld.outname, fitld.outclass, + int(fitld.outdisk), int(fitld.outseq)) + if data.exists(): + mprint('##############################',logfile) + mprint('Data already there => passed!',logfile) + mprint('##############################',logfile) + pass + #data.clrstat() + #data.zap() + #mprint('##############################',logfile) + #mprint('Data already there => deleted!',logfile) + #mprint('##############################',logfile) + else: + mprint('#########################',logfile) + mprint('Data not there => read in',logfile) + mprint('#########################',logfile) + fitld.go() + + #fitld.go() + + mprint('################################################',logfile) + mprint(str(data)+' loaded!',logfile) + mprint('################################################',logfile) + + + +############################################################################## +# Select one of the inner VLBA antennas +# +def select_refant(indata): + ant=get_ant(indata) + if 'LA' in indata.antennas: + refant='LA' + elif 'PT' in indata.antennas: + refant='PT' + elif 'KP' in indata.antennas: + refant='KP' + elif 'FD' in indata.antennas: + refant='FD' + elif 'EF' in indata.antennas: + refant='EF' + elif 'EB' in indata.antennas: + refant='EB' + for i in ant: + if ant[i]==refant: + j=i + return j + +############################################################################## +# Select best antenna based on testfringe +# +def select_refant2(indata, logfile): + ant=get_ant(indata) + sn=indata.table('AIPS SN', 2) + sol=range(max(ant)) + for i in range(len(sol)): + sol[i]=0 + for i in range(0,len(sn)): + an=sn[i]['antenna_no'] + if (ant[an]=='LA' or ant[an]=='PT' or + ant[an]=='KP' or ant[an]=='FD' or + ant[an]=='EF' or ant[an]=='EB'): + sol[an-1]+=1 + for i in ant: + if sol[i-1]==max(sol): + refant=i + mprint('#################################',logfile) + mprint('Reference antenna : '+ant[refant],logfile) + mprint('#################################',logfile) + return refant + +############################################################################## +# Check table versions +# +def check_sncl(indata,sn,cl,logfile): + clnum = indata.table_highver('AIPS CL') + if (indata.table_highver('AIPS CL')==cl and + indata.table_highver('AIPS SN')==sn): + mprint('SN and CL tables ok.',logfile) + if indata.table_highver('AIPS CL')cl: + if clnum>10: + issue = input('I found that your original CL table version is '+str(clnum)+', which means you have done fairly a lot of work before. Are you sure you want to continue the progress which may erase your previous saved CL tables?(type "y" for continue anyway, type "n" to stop)') + if issue == 'yes' or issue == 'y': + pass + elif issue == 'no' or issue =='n': + print 'Shutting down the progress' + sys.exit() + else: + print 'Confusing answer, will take it as no' + sys.exit() + mprint('Deleting old CL tables.',logfile) + while indata.table_highver('AIPS CL')>cl: + indata.zap_table('AIPS CL', 0) + + if indata.table_highver('AIPS SN')sn: + mprint('Deleting old SN tables.',logfile) + while indata.table_highver('AIPS SN')>sn: + indata.zap_table('AIPS SN', 0) + + +############################################################################## +# +def do_band(indata, bandcal,gainuse,flagver,logfile): + if bandcal==['']: + mprint('No Bandpass calibrator selected.', logfile) + sys.exit() + + if indata.table_highver('AIPS BP')>0: + mprint('Deleting old BP tables.',logfile) + while indata.table_highver('AIPS BP')>0: + indata.zap_table('AIPS BP', 0) + + bpass = AIPSTask('BPASS') + bpass.indata = indata + bpass.calsour[1:] = bandcal + bpass.docal = 1 + bpass.gainuse = gainuse + bpass.flagver = flagver + bpass.solint = -1 + bpass.bpassprm[4] = 1 # only store phase + bpass.bpassprm[5] = 0 + bpass.bpassprm[10] = 3 + bpass.outver = 1 + bpass.go() + +############################################################################## +# +def run_bpass(indata, bandcal,gainuse,flagver,refant,logfile): + if bandcal==['']: + mprint('No Bandpass calibrator selected.', logfile) + sys.exit() + + if indata.table_highver('AIPS BP')>0: + mprint('Deleting old BP tables.',logfile) + while indata.table_highver('AIPS BP')>0: + indata.zap_table('AIPS BP', 0) + bpass = AIPSTask('BPASS') + bpass.indata = indata + bpass.calsour[1:] = bandcal + bpass.docal = 1 + bpass.gainuse = gainuse + bpass.flagver = flagver + bpass.refant = refant + bpass.solint = -1 + bpass.bpassprm[4] = 0 # store both phase and amp + bpass.bpassprm[5] = 1 #not devide by channel 0 + bpass.bpassprm[9] = 1 #interpolate over flagged channels + bpass.bpassprm[10] = 6 #amp power normalization on all chanelss + print type(bpass.bpassprm[1]) + print type(bpass.ichansel[1]) + bpass.ichansel[1] = [None,1,256,1,0] + #bpass.ichansel[2] = [None,1,90,1,4] #specially for IF4 in VLBA Lband + bpass.outver = 1 + bpass.input() + bpass.go() + +############################################################################## +# Run testfringe to find best source/antenna +# +def testfringe(indata, refant, flag, logfile): + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + fringe.calsour[1:] = '' + fringe.solint = 6 + fringe.dparm[8] = 1 + fringe.dparm[4] = 0 + fringe.snver = 2 + + a = indata.sources + bt = check_geo(indata) + nb = len(bt)-1 + + if (flag==1 and nb>2): + + time1 = bt[1] + time2 = bt[nb-1] + + (day1,hour1,min1,sec1)=time_to_hhmmss(time1) + (day2,hour2,min2,sec2)=time_to_hhmmss(time2) + + fringe.timerang[1:] = [day1, hour1, min1, sec1, day2, hour2, min2, sec2] + + mprint('#################################',logfile) + mprint('TIMERANGE: '+str(day1)+' '+str(hour1)+' '+str(min1)+ + ' '+str(sec1)+' '+str(day2)+' '+str(hour2)+' ' + +str(min2)+' '+str(sec2),logfile) + mprint('#################################',logfile) + else: + mprint('#################################',logfile) + mprint('Whole Timerange',logfile) + mprint('#################################',logfile) + + fringe() + +############################################################################## +# Manual phasecal +# +def geo_man_pcal(indata, refant, logfile): + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + fringe.solint = 6 + fringe.dparm[8] = 1 + fringe.dparm[4] = 0 + fringe.snver = 0 + + (source,timerange)=get_best_scan(indata, logfile, 'geoqual.dat', 1) + + # Delete SN table from test fringe. + check_sncl(indata, 0, 3, logfile) + + fringe.calsour[1] = source + fringe.timerang[1:] = timerange + fringe() + + sn=indata.table('AIPS SN', 1) + mprint('###########################################',logfile) + mprint('Found solutions for '+str(len(sn))+' of ' + +str(len(indata.antennas))+' antennas.',logfile) + mprint('###########################################',logfile) + +############################################################################## +# Manual phasecal +# +def geo_man_pcal_sx(indata_s, indata_x, refant, logfile): + fringe = AIPSTask('FRING') + fringe.indata = indata_x + fringe.refant = refant + fringe.docal = 1 + fringe.solint = 6 + fringe.dparm[8] = 1 + fringe.dparm[4] = 0 + fringe.snver = 0 + + (source,timerange)=get_best_scan(indata_x, logfile, 'geoqual.dat', 1) + + # Delete SN table from test fringe. + check_sncl(indata_x, 0, 3, logfile) + + fringe.calsour[1] = source + fringe.timerang[1:] = timerange + fringe() + + fringe.indata = indata_s + check_sncl(indata_s, 0, 3, logfile) + fringe() + + sn_s=indata_s.table('AIPS SN', 1) + sn_x=indata_x.table('AIPS SN', 1) + mprint('###########################################',logfile) + mprint('Found solutions for '+str(len(sn_s))+' of ' + +str(len(indata_s.antennas))+' antennas (S-band).',logfile) + mprint('Found solutions for '+str(len(sn_x))+' of ' + +str(len(indata_x.antennas))+' antennas (X-band).',logfile) + mprint('###########################################',logfile) + +############################################################################## +# +def get_sources(indata): + su_table = indata.table('AIPS SU', 0) + max_source = 0 + + for i in su_table: + if i['id__no']>max_source: + max_source=i['id__no'] + + sources=[] + for i in range(max_source): + sources.append([]) + + for i in su_table: + sources[i['id__no']-1]=i['source'] + return sources + + +############################################################################## +# Find best scan for manual phasecal +# +def get_best_scan(indata, logfile, qualfile, do_write): + sn_table = indata.table('AIPS SN', 0) + naxis = indata.header['naxis'] + sources = get_sources(indata) + + + t = [0] + qf = [0] + snr = [] + tr = [] + sid = [] + + n = 0 + max_sol = 0 + + sid.append(sn_table[0]['source_id']) + tr.append(get_timerange_tab(indata,'AIPS SN',0)) + snr.append([]) + + if naxis[3]>1: + for j in range(naxis[3]): + if isinde(sn_table[0]['delay_1'][j])==False: + t[n]+=1 + qf[n]=qf[n]+1./sn_table[0]['weight_1'][j]**2 + snr[n].append(sn_table[0]['weight_1'][j]) + + for i in range(1,len(sn_table)): + if sn_table[i]['time']==sn_table[i-1]['time']: + for j in range(naxis[3]): + if isinde(sn_table[i]['delay_1'][j])==False: + t[n]+=1 + qf[n]=qf[n]+1./sn_table[i]['weight_1'][j]**2 + snr[n].append(sn_table[i]['weight_1'][j]) + if t[n]>max_sol: + max_sol=t[n] + id=n + else: + t.append(0) + qf.append(0) + snr.append([]) + n+=1 + sid.append(sn_table[i]['source_id']) + tr.append(get_timerange_tab(indata,'AIPS SN',i)) + for j in range(naxis[3]): + if isinde(sn_table[i]['delay_1'][j])==False: + t[n]+=1 + qf[n]=qf[n]+1./sn_table[i]['weight_1'][j]**2 + snr[n].append(sn_table[i]['weight_1'][j]) + if t[n]>max_sol: + max_sol=t[n] + id=n + + elif naxis[3]==1: + if isinde(sn_table[0]['delay_1'])==False: + t[n]+=1 + qf[n]=qf[n]+1./sn_table[0]['weight_1']**2 + snr[n].append(sn_table[0]['weight_1']) + + for i in range(1,len(sn_table)): + if sn_table[i]['time']==sn_table[i-1]['time']: + if isinde(sn_table[i]['delay_1'])==False: + t[n]+=1 + qf[n]=qf[n]+1./sn_table[i]['weight_1']**2 + snr[n].append(sn_table[i]['weight_1']) + if t[n]>max_sol: + max_sol=t[n] + id=n + else: + t.append(0) + qf.append(0) + snr.append([]) + n+=1 + sid.append(sn_table[i]['source_id']) + tr.append(get_timerange_tab(indata,'AIPS SN',i)) + if isinde(sn_table[i]['delay_1'])==False: + t[n]+=1 + qf[n]=qf[n]+1./sn_table[i]['weight_1']**2 + snr[n].append(sn_table[i]['weight_1']) + if t[n]>max_sol: + max_sol=t[n] + id=n + +# for i in range(len(t)): +# print sources[sid[i]-1],'Sol: ',t[i], 'QF: ',max(1/(qf[i]-0.00001),0), tr[i] +# print 'Max sol:',max_sol + + if do_write==1: + file = './'+outname[0]+'/'+qualfile + f = open(file,'w') + for i in range(len(t)): + f.writelines(' '+sources[sid[i]-1]+' Sol: '+str(t[i])+' QF: '+str(round(max(1/(qf[i]-0.00001),0),3))+' '+str(tr[i])+'\n') + f.close() + + + + scan=0 + good_scans=[] + bad_scans=[] + bad_sources=[] + for i in range(len(t)): + if t[i]==max_sol: + good_scans.append(i) + elif t[i]=2: + filename= inext+str(inver)+'-'+listparm[0:2]+'-'+sources[0][0:5]+'-'+sources[1][0:5]+'.listr' + listr.outprint = 'PWD:'+filename + if os.path.exists(filename): + os.popen('rm '+filename) + listr() + os.popen(r'mv '+listr.outprint[4:]+' '+outname[0]+'/') + +############################################################################## +# Make control_file.inp +# + +def make_control_file(indata,refant,max_ant): + (year, month, day)=get_observation_year_month_day(indata) + f = open('./geoblock/control_file.inp','w') + f.writelines(' 1.0000 '+ + ' ! data format (0=old; 1=new)\n'+ + ' 30.0000 ! number interations\n'+ + ' 0.5000 ! loop gain\n'+ + ' 0.0000 ! debug print out level\n') + + if month<10: + s_month='0'+str(month) + else: + s_month=str(month) + if day<10: + s_day='0'+str(day) + else: + s_day=str(day) + + f.writelines(str(year)+' '+s_month+' '+s_day+ + ' ! yyyy mm dd\n') + frq=get_center_freq(indata)/1e9 + f.writelines(str(frq)+'d9 ! obs freq (Hz)\n') + f.writelines(' 3.0 0.003 1.0 '+ + '! delay err, rate err, re-weight flag\n') + f.writelines(' 0.0 '+ + ' ! Reference UT (hhmmss) for clock\n') + bt=check_geo(indata) + for i in range(len(bt)-1): + f.writelines(' '+str(bt[i])+' '+str(bt[i+1])+' '+ + ' ! UT time range for block '+str(i+1)+'\n') + if len(bt)<6: + for i in range(len(bt)-1,5): + f.writelines(' 0.00 0.00 '+ + ' ! UT time range for block '+str(i+1)+'\n') + + ant=get_ant(indata) + nan=len(ant) + + co=1 + + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and max_ant<30): + f.writelines(' 0.0 1.0 ! A'+str(i+1)+' C(cm)\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' C(cm)\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' C(cm)\n') + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and co>0 and max_ant<30): + f.writelines(' 0.0 1.0 ! A'+str(i+1)+' Rcm/h\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Rcm/h\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Rcm/h\n') + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and co>1 and max_ant<30): + f.writelines(' 0.0 1.0 ! A'+str(i+1)+' Ac/h2\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Ac/h2\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Ac/h2\n') + + + + for i in range(len(bt)-1): + for j in range(max_ant): + if j+1 in ant: + if j+1 in ant: + f.writelines(' 0.0 1.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + else: + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + else: + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + + if len(bt)<6: + for i in range(len(bt)-1,5): + for j in range(max_ant): + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + f.close() + +############################################################################## +# Make control_file.inp +# +def make_control_file_sx(indata,pr_data,refant,max_ant): + (year, month, day)=get_observation_year_month_day(indata) + f = open('./geoblock/control_file_tropos.inp','w') + f.writelines(' 1.0000 '+ + ' ! data format (0=old; 1=new)\n'+ + ' 30.0000 ! number interations\n'+ + ' 0.5000 ! loop gain\n'+ + ' 0.0000 ! debug print out level\n') + + if month<10: + s_month='0'+str(month) + else: + s_month=str(month) + if day<10: + s_day='0'+str(day) + else: + s_day=str(day) + + f.writelines(str(year)+' '+s_month+' '+s_day+ + ' ! yyyy mm dd\n') + frq=get_center_freq(indata)/1e9 + f.writelines(str(frq)+'d9 ! obs freq (Hz)\n') + f.writelines(' 3.0 0.003 1.0 '+ + '! delay err, rate err, re-weight flag\n') + f.writelines(' 0.0 '+ + ' ! Reference UT (hhmmss) for clock\n') + bt=check_geo(indata) + for i in range(len(bt)-1): + f.writelines(' '+str(bt[i])+' '+str(bt[i+1])+' '+ + ' ! UT time range for block '+str(i+1)+'\n') + if len(bt)<6: + for i in range(len(bt)-1,5): + f.writelines(' 0.00 0.00 '+ + ' ! UT time range for block '+str(i+1)+'\n') + + ant=get_ant(indata) + nan=len(ant) + + co=1 + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and max_ant<30): + f.writelines(' 0.0 1.0 ! A'+str(i+1)+' C(cm)\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' C(cm)\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' C(cm)\n') + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and co>0 and max_ant<30): + f.writelines(' 0.0 1.0 ! A'+str(i+1)+' Rcm/h\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Rcm/h\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Rcm/h\n') + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and co>1 and max_ant<30): + f.writelines(' 0.0 1.0 ! A'+str(i+1)+' Ac/h2\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Ac/h2\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Ac/h2\n') + + + + for i in range(len(bt)-1): + for j in range(max_ant): + if j+1 in ant: + if j+1 in ant: + f.writelines(' 0.0 1.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + else: + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + else: + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + + if len(bt)<6: + for i in range(len(bt)-1,5): + for j in range(max_ant): + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + f.close() + + + f = open('./geoblock/control_file_ionos.inp','w') + f.writelines(' 1.0000 '+ + ' ! data format (0=old; 1=new)\n'+ + ' 50.0000 ! number interations\n'+ + ' 0.5000 ! loop gain\n'+ + ' 0.0000 ! debug print out level\n') + + if month<10: + s_month='0'+str(month) + else: + s_month=str(month) + if day<10: + s_day='0'+str(day) + else: + s_day=str(day) + + f.writelines(str(year)+' '+s_month+' '+s_day+ + ' ! yyyy mm dd\n') + frq=get_center_freq(pr_data)/1e9 + f.writelines(str(frq)+'d9 ! obs freq (Hz)\n') + f.writelines(' 2.0 0.999 1.0 '+ + '! delay err, rate err, re-weight flag\n') + f.writelines(' 0.0 '+ + ' ! Reference UT (hhmmss) for clock\n') + bt=check_geo(indata) + for i in range(len(bt)-1): + f.writelines(' '+str(bt[i])+' '+str(bt[i+1])+' '+ + ' ! UT time range for block '+str(i+1)+'\n') + if len(bt)<6: + for i in range(len(bt)-1,5): + f.writelines(' 0.00 0.00 '+ + ' ! UT time range for block '+str(i+1)+'\n') + + ant=get_ant(indata) + nan=len(ant) + + co=1 + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant): + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' C(cm)\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' C(cm)\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' C(cm)\n') + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and co>0): + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Rcm/h\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Rcm/h\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Rcm/h\n') + + for i in range(max_ant): + if i+1 in ant: + if (i+1 in ant and i+1!=refant and co>1): + f.writelines(' 0.0 1.0 ! A'+str(i+1)+' Ac/h2\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Ac/h2\n') + else: + f.writelines(' 0.0 0.0 ! A'+str(i+1)+' Ac/h2\n') + + + + for i in range(len(bt)-1): + for j in range(max_ant): + if j+1 in ant: + if j+1 in ant: + f.writelines(' 0.0 1.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + else: + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + else: + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + + if len(bt)<6: + for i in range(len(bt)-1,5): + for j in range(max_ant): + f.writelines(' 0.0 0.0 '+ + '! A'+str(j+1)+' B'+str(i+1)+' cm\n') + f.close() + + +############################################################################## +# Make station_file.inp +# + +def make_station_file(indata): + ant=get_ant(indata) + + f = open('./geoblock/station_file.inp','w') + for i in ant: + if i==min(ant): + f.writelines(str(ant[i])+' '+str(i)+' ! station_file.inp for ' + +indata.header.observer+' on '+indata.header.date_obs+'\n') + else: + if 'Y' in ant[i]: pass + else: f.writelines(str(ant[i])+' '+str(i)+'\n') + f.close() + +############################################################################## +# Make calibrator_file.inp +# + +def make_calibrator_file(indata): + (year, month, day)=get_observation_year_month_day(indata) + monthlist=['JAN','FEB','MAR','APR','MAY','JUN', + 'JUL','AUG','SEP','OCT','NOV','DEC'] + + if day<10: + strday='0'+str(day) + else: + strday=str(day) + + namma=str(year)+monthlist[int(month)-1]+strday + + f = open('./geoblock/calibrator_file.inp','w') + f.writelines(namma+'_RATE_MDEL.DAT '+ + ' ! calibrator data file name\n') + f.writelines(namma+'_SU_TABLE.PRTAB '+ + ' ! SU table file name\n') + f.close() + +############################################################################## +# Make calibrator_file.inp +# + +def make_calibrator_file_sx(indata): + (year, month, day)=get_observation_year_month_day(indata) + monthlist=['JAN','FEB','MAR','APR','MAY','JUN', + 'JUL','AUG','SEP','OCT','NOV','DEC'] + + if day<10: + strday='0'+str(day) + else: + strday=str(day) + + namma=str(year)+monthlist[int(month)-1]+strday + + f = open('./geoblock/calibrator_file_tropos.inp','w') + f.writelines(namma+'-tropos.dat '+ + ' ! calibrator data file name\n') + f.writelines(namma+'_SU_TABLE.PRTAB '+ + ' ! SU table file name\n') + f.close() + + f = open('./geoblock/calibrator_file_ionos.inp','w') + f.writelines(namma+'-ionos.dat '+ + ' ! calibrator data file name\n') + f.writelines(namma+'_SU_TABLE.PRTAB '+ + ' ! SU table file name\n') + f.close() + +############################################################################## +# Print out SN table +# +def runprtsn(indata): + prtab = AIPSTask('PRTAB') + prtab.indata = indata + prtab.inext = 'SN' + prtab.invers = 0 + prtab.docrt = -1 + prtab.ndig = 1 + prtab.box[1][1] = 1 + prtab.box[1][2] = 3 + prtab.box[1][3] = 4 + prtab.box[1][4] = 9 + if check_sn_ver(indata)>15: + prtab.box[2][1] = 15 + prtab.box[2][2] = 17 + else: + prtab.box[2][1] = 13 + prtab.box[2][2] = 15 + prtab.dohms = -1 + prtab.doflag = 0 + (year, month, day)=get_observation_year_month_day(indata) + monthlist=['JAN','FEB','MAR','APR','MAY','JUN', + 'JUL','AUG','SEP','OCT','NOV','DEC'] + + if day<10: + strday='0'+str(day) + else: + strday=str(day) + + namma=str(year)+monthlist[int(month)-1]+strday + + prtab.outprint='PWD:'+namma+'_RATE_MDEL.DAT' + prtab() + +############################################################################## +# Print out SN table +# +def runprtsn_sx(indata_s, indata_x, indata): + prtab = AIPSTask('PRTAB') + prtab.indata = indata_s + prtab.inext = 'SN' + prtab.invers = 0 + prtab.docrt = -1 + prtab.ndig = 2 + prtab.box[1][1] = 1 + prtab.box[1][2] = 3 + prtab.box[1][3] = 4 + prtab.box[1][4] = 9 + if check_sn_ver(indata_s)>15: + prtab.box[2][1] = 15 + prtab.box[2][2] = 17 + else: + prtab.box[2][1] = 13 + prtab.box[2][2] = 15 + prtab.dohms = -1 + prtab.doflag = 0 + (year, month, day)=get_observation_year_month_day(indata_s) + monthlist=['JAN','FEB','MAR','APR','MAY','JUN', + 'JUL','AUG','SEP','OCT','NOV','DEC'] + + if day<10: + strday='0'+str(day) + else: + strday=str(day) + + namma=str(year)+monthlist[int(month)-1]+strday + + prtab.outprint='PWD:'+namma+'_low.dat' + prtab() + + prtab.indata = indata_x + prtab.outprint='PWD:'+namma+'_high.dat' + prtab() + + f_low = get_center_freq(indata_s) + f_high = get_center_freq(indata_x) + if indata.exists(): + f_tar = get_center_freq(indata) + else: + print 'Target frequency unknonw. Using 6.67 GHz.' + f_tar = 6.67e9 + + + f = open('./geoblock/diff_files.inp','w') + f.writelines(namma+'_low.dat '+ + ' ! Low frequency data\n') + f.writelines(namma+'_high.dat '+ + ' ! High frequency data\n') + f.writelines(str(f_low/1e9)+' '+ + ' ! Low frequency\n') + f.writelines(str(f_high/1e9)+' '+ + ' ! High frequency\n') + f.writelines(str(f_tar/1e9)+' '+ + ' ! Target frequency\n') + f.close() + + +############################################################################## +# Print out SU table +# +def runprtsu(indata): + prtab = AIPSTask('PRTAB') + prtab.indata = indata + prtab.inext = 'SU' + prtab.invers = 0 + prtab.docrt = -1 + prtab.box[1][1] = 1 + prtab.box[1][2] = 2 + prtab.box[1][3] = 11 + prtab.box[1][4] = 12 + prtab.box[2][1] = 13 + prtab.box[2][2] = 14 + prtab.box[2][3] = 15 + prtab.dohms = -1 + prtab.ndig = 4 + (year, month, day)=get_observation_year_month_day(indata) + monthlist=['JAN','FEB','MAR','APR','MAY','JUN', + 'JUL','AUG','SEP','OCT','NOV','DEC'] + + if day<10: + strday='0'+str(day) + else: + strday=str(day) + + namma=str(year)+monthlist[int(month)-1]+strday + + prtab.outprint='PWD:'+namma+'_SU_TABLE.PRTAB' + prtab() + + +############################################################################## +# Run DELZN +# +def run_delzn(indata): + indata.zap_table('PL', -1) + if os.path.exists('DELZN.FITS'): + os.popen('rm DELZN.FITS') + + ant=get_ant(indata) + + delzn = AIPSTask('DELZN') + delzn.indata = indata + delzn.aparm[1:] = [0,2,2,0,0,0,0,0,1,0] + delzn.nplots = len(ant)-1 + delzn.outfile = 'PWD:DELZN.FITS' + delzn.dotv = -1 + delzn() + + if os.path.exists('delzn.ps'): + os.popen('rm delzn.ps') + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.inver = 0 + lwpla.outfile = 'PWD:delzn.ps' + lwpla() + + indata.zap_table('PL', -1) + +############################################################################## +# Run CLCAL +# +def runclcal(indata,snver,gainver,gainuse,interpol,dobtween,refant): + clcal = AIPSTask('CLCAL') + clcal.indata = indata + clcal.refant = refant + clcal.snver = snver + clcal.inver = 0 + clcal.gainver = gainver + clcal.gainuse = gainuse + clcal.interpol = interpol + clcal.dobtween = dobtween + clcal() + +def runclcal2(indata,snver,gainver,gainuse,interpol,dobtween,refant,antenna,cals,sources): + clcal = AIPSTask('CLCAL') + clcal.indata = indata + clcal.refant = refant + clcal.antennas[1:] = antenna + clcal.source[1:] =sources + if(type(cals) == type('string')): + clcal.calsour[1] = cals + else: + clcal.calsour[1:] = cals + clcal.snver = snver + clcal.inver = 0 + clcal.gainver = gainver + clcal.gainuse = gainuse + clcal.interpol = interpol + clcal.dobtween = dobtween #if >= 1, smooth within with one source;if <=0 smooth separately + clcal.input() + clcal() + + +############################################################################## +# Run QUACK +# +def runquack(indata, antennas, time): + quack = AIPSTask('QUACK') + quack.indata = indata + quack.antennas[1:] = antennas + quack.opcode = 'ENDB' + quack.aparm[1:] = [0,time,0] + quack() + +def endquack(indata, antennas, time, outfgver): + quack = AIPSTask('QUACK') + quack.indata = indata + quack.antennas[1:] = antennas + quack.opcode = 'ENDB' + quack.aparm[1:] = [0,time,0] + quack.flagver = outfgver + quack() + +def begquack(indata, antennas, time, outfgver): + quack = AIPSTask('QUACK') + quack.indata = indata + quack.antennas[1:] = antennas + quack.opcode = 'BEG' + quack.aparm[1:] = [0,time,0] + quack.flagver = outfgver + quack() +############################################################################## +# Fringe fit on all geosources +# +def fringegeo(indata, refant): + if indata.header.telescop=='EVLA': + print 'Telescope = EVLA' + d5 = 3 + d3 = 0 + else: + d5 = 1 + d3 = 0 + + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + fringe.calsour[1:] = '' + fringe.solint = 6 + fringe.weightit = 3 + fringe.aparm[1:] = [2, 0, d3, 0, d5, 0, 10] + fringe.dparm[1:] = [1, 20, 50, 0] + fringe.dparm[4] = 0 + fringe.dparm[8] = 0 + fringe.snver = 2 + fringe() + +############################################################################## +# Write out qualities of geosources +# +def get_geosource_stats(indata): + (year, month, day)=get_observation_year_month_day(indata) + frq = get_center_freq(indata) + sn_table = indata.table('AIPS SN', 0) + naxis = indata.header['naxis'] + obs = indata.header['observer'] + sources = get_sources(indata) + + num_sour=len(indata.sources) + snr=[] + for i in range(0,len(sources)+1): + snr.append([]) + + for i in range(1,len(sn_table)): + for j in range(naxis[3]): + if isinde(sn_table[i]['weight_1'][j])==False and sn_table[i]['weight_1'][j] > 6: + snr[sn_table[i]['source_id']].append(sn_table[i]['weight_1'][j]) + + file = './geoblock/'+obs+'_geostat.dat' + f = open(file,'w') + f.writelines('!Source #Det Max Min Avgerage Median on '+str(year)+'-'+str(month)+'-'+str(day)+' at '+str(round(frq,1))+' GHz \n') + for i in range(1,len(sources)): + if len(snr[i])>0 and sources[i]!=[]: + outprint= sources[i]+' %4d %6.1f %6.1f %6.1f %6.1f\n' % (len(snr[i]), round(max(snr[i]),1), round(min(snr[i]),1), round(average(snr[i]),1), round(median(snr[i]),1)) + f.writelines(outprint) + elif sources[i]!=[]: + outprint= sources[i]+' %4d %6.1f %6.1f %6.1f %6.1f\n' % (0, 0, 0, 0, 0) + f.writelines(outprint) + f.close() + +############################################################################## +# +def runsnsmo(indata, inver, outver, refant): + snsmo = AIPSTask('SNSMO') + snsmo.indata = indata + snsmo.refant = refant + snsmo.inver = inver + snsmo.outver = outver + snsmo.bparm[1:] = [0, 0, 1, 1, 1] + snsmo.smotype = 'VLBI' + snsmo() + +############################################################################## +# +def restore_su(indata, logfile): + tasav_data=AIPSUVData(indata.name,'TASAV'+str(i),int(indata.disk),1) + if tasav_data.exists(): + mprint('##########################################', logfile) + mprint('TASAV file exists, restoring old SU table.', logfile) + mprint('##########################################', logfile) + while indata.table_highver('AIPS SU')>0: + indata.zap_table('AIPS SU', 1) + runtacop(tasav_data, indata, 'SU', 1, 1, 0) + else: + mprint('###############################################',logfile) + mprint('No TASAV file. Restoring SU table not possible.',logfile) + mprint('###############################################',logfile) + +############################################################################## +# +def restore_fg(indata, logfile): + tasav_data=AIPSUVData(indata.name,'TASAV'+str(i),int(indata.disk),1) + if tasav_data.exists(): + mprint('##########################################', logfile) + mprint('TASAV file exists, restoring old FG table.', logfile) + mprint('##########################################', logfile) + while indata.table_highver('AIPS FG')>0: + indata.zap_table('AIPS FG', 0) + runtacop(tasav_data, indata, 'FG', 1, 1, 0) + else: + mprint('###############################################',logfile) + mprint('No TASAV file. Restoring SU table not possible.',logfile) + mprint('###############################################',logfile) + +############################################################################## +# +def runtasav(indata, i, logfile): + tasav = AIPSTask('TASAV') + tasav.indata = indata + tasav.outna = indata.name + tasav.outcla = 'TASAV'+str(i) + tasav.outdisk = indata.disk + tasav_data=AIPSUVData(indata.name,'TASAV'+str(i),int(indata.disk),1) + if tasav_data.exists(): + mprint('TASAV file exists, do not need save tables', logfile) + else: + tasav() + +############################################################################## +# + +############################################################################## +# +def runtacop(indata, outdata, inext, inver, outver, ncount): + tacop = AIPSTask('TACOP') + tacop.indata = indata + tacop.outdata = outdata + tacop.inext = inext + tacop.inver = inver + tacop.outver = outver + tacop.ncount = ncount + tacop() + +############################################################################## +# +def get_time(): + t=range(6) + t[0]=time.localtime()[0] + t[0]=str(t[0]) + for i in range(1,6): + t[i]=time.localtime()[i] + if t[i]<10: + t[i]='0'+str(t[i]) + else: + t[i]=str(t[i]) + a=t[3]+':'+t[4]+':'+t[5]+' on '+t[0]+'/'+t[1]+'/'+t[2] + return a + + +############################################################################## +# Plot results from geofit +# +def plot_baseline(indata,ant, inter_flag, ptype, doplot_flag, logfile): + baselines=[] + str_baselines=[] + str_baselines2=[] + data=[] + start=100 + end=0 + + ant_str=get_ant(indata) + + if ant<10: + str_ant='0'+str(ant) + else: + str_ant=str(ant) + + for ant2 in ant_str: + if ant2<10: + str_ant2='0'+str(ant2) + else: + str_ant2=str(ant2) + if ant2>ant: + bl=str_ant+str_ant2 + str_bl=str(ant)+'-'+str(ant2) + str_bl2=ant_str[ant]+'-'+ant_str[ant2] + else: + bl=str_ant2+str_ant + str_bl=str(ant2)+'-'+str(ant) + str_bl2=ant_str[ant2]+'-'+ant_str[ant] + + if ptype=='A': + file='./geoblock/tropos/fit_geodetic_bl'+bl+'.dat' + elif ptype=='I': + file='./geoblock/ionos/fit_geodetic_bl'+bl+'.dat' + if os.path.exists(file): + f=open(file) + content=f.read() + if len(content)>99: + newdata=loadtxt(file,usecols=(0,1,2,3,4,5,6),comments='!') + data.append(newdata) + baselines.append(ant2) + str_baselines.append(str_bl) + str_baselines2.append(str_bl2) + + num_baselines=len(baselines) + + f1=figure() + + if ptype=='A': + toptext=indata.header['observer']+' observed on '+indata.header['date_obs']+' at '+str(round(get_center_freq(indata)/1e9,2))+' GHz' + elif ptype=='I': + toptext=indata.header['observer']+' observed on '+indata.header['date_obs']+' for target frequency' + figtext(0.25,0.97,toptext) + + + times2 = [] + block_times=[] + for tmp in data: + for tmp2 in tmp: + times2.append(tmp2[0]) + times2.sort() + start=min(times2) + end=max(times2) + + n=1 + block_times.append([min(times2),0]) + for i in range(1,len(times2)): + if times2[i]-times2[i-1]>1: + block_times[n-1][1]=times2[i-1] + block_times.append([times2[i],0]) + n+=1 + block_times[n-1][1]=max(times2) + n_blocks=len(block_times) + + size=3 + print 'Baseline rms_delay rms_rate data/block' + print ' [nsec] [mHz]' + + if len(baselines)>20: + print 'More than 20 antennas, plotting only 15.' + b=int(round(len(baselines)/2.)) + num_baselines=b + num_baselines2=len(baselines)-b + oneplot = False + else: + oneplot = True + b=len(baselines) + + n=0 + m=0 + for i in baselines[0:b]: + n+=1 + m+=1 + make_baseline_plot2(num_baselines, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, block_times,f1) + + draw() + if ptype=='A': + savefig('delay-rate.ps') + elif ptype=='I': + savefig('delay-rate-ionos.ps') + + if oneplot==False: + m=0 + f2=figure() + toptext=indata.header['observer']+' observed on '+indata.header['date_obs']+' at '+str(round(get_center_freq(indata)/1e9,2))+' GHz' + figtext(0.25,0.97,toptext) + for i in baselines[b:]: + n+=1 + m+=1 + make_baseline_plot2(num_baselines2, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, block_times,f2) + + draw() + if ptype=='A': + savefig('delay-rate2.ps') + elif ptype=='I': + savefig('delay-rate2-ionos.ps') + + mprint('', logfile) + mprint('Note: A small number of high delays or rates is usually no problem.',logfile) + mprint('', logfile) + + + if inter_flag==1: + if int(matplotlib.__version__[0])==0: + if int(matplotlib.__version__[2:4])<99: + print 'Close figure to continue.' + show() + close() + else: + f1.show() + raw_input('Press enter to close figure and continue. ') + close() + else: + print 'Close figure to continue.' + show() + close() + + + + +############################################################################## +# Plot results from geofit +# +def make_baseline_plot(num_baselines, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, block_times, f1): + size=3 + ax=f1.add_subplot(num_baselines,2,2*m-1) + high_delay=max(max(data[n-1][:,3]),1) + low_delay=min(min(data[n-1][:,3]),-1) + if max(data[n-1][:,3]) < 0.2: + high_delay=max(max(data[n-1][:,3])*1.2,0.1) + low_delay=min(min(data[n-1][:,3])*1.2,-0.1) + ax.plot(data[n-1][:,0],data[n-1][:,1],'.b',ms=size) # Delay + ax.plot(data[n-1][:,0],data[n-1][:,2],'.g',ms=size) # Model + ax.plot(data[n-1][:,0],data[n-1][:,3],'.r',ms=size) # Resid + trang = end-start + over = trang/10 + ax.plot([start-over, end+over], [0,0], 'k:') + ax.set_xlim(start-over,end+over) + #+++ ZB + if doplot_flag==1: + #ax.set_ylim(low_delay*1.1,high_delay*1.1) + ax.set_ylim(-1,1) + else: + #ax.set_ylim(-1,1) + ax.set_ylim(-1,1) + #--- ZB + if m==1: + title('Multiband delay [nsec]') + if n2 or min(data[n-1][:,3])<-2: + delays=data[n-1][:,3] + rms=delays.std() + bad_delays=[] + for entry in delays: + if entry>3*rms or entry<-3*rms or entry<-2 or entry>2: + bad_delays.append(entry) + if float(len(bad_delays))/float(len(delays))>0.3: + warning1='\033[7;33;40m'+str(len(bad_delays))+'/'+str(len(delays))+' high delays\033[0m' + else: + warning1='\033[0m'+str(len(bad_delays))+'/'+str(len(delays))+' high delays\033[0m' + else: + warning1='' + + if max(data[n-1][:,6])>10 or min(data[n-1][:,6])<-10: + rates=data[n-1][:,6] + rms=rates.std() + bad_rates=[] + for entry in rates: + if entry>3*rms or entry<-3*rms or entry<-10 or entry>10: + bad_rates.append(entry) + if float(len(bad_rates))/float(len(rates))>0.3: + warning2='\033[7;33;40m'+str(len(bad_rates))+'/'+str(len(rates))+' high rates\033[0m' + else: + warning2=str(len(bad_rates))+'/'+str(len(rates))+' high rates' + else: + warning2='' + + + times=data[n-1][:,0] + j=0 + + blocks=[] + for i in range(n_blocks): + blocks.append(0) + for tmp in times: + if block_times[i][1]>=tmp>=block_times[i][0]: + blocks[i]+=1 + + if 1 in blocks or 2 in blocks or 3 in blocks: + warning0='\033[7;33;40m<3 scans\033[0m' + else: + warning0='' + + str_blocks=' ' + for k in range(n_blocks): + if int(blocks[k])<10: + str_blocks=str_blocks+' '+str(int(blocks[k])) + else: + str_blocks=str_blocks+' '+str(int(blocks[k])) + + mprint('%5s(%5s) %4.2f %4.2f %18s %8s %17s %10s'% (str_baselines2[n-1],str_baselines[n-1], round(data[n-1][:,2].std(),3),round(data[n-1][:,6].std(),2),str_blocks,warning0,warning1,warning2), logfile) + draw() + + + + +############################################################################## +# Plot results from geofit +# +def make_baseline_plot2(num_baselines, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, block_times, f1): + size=3 + ax=f1.add_subplot(num_baselines,1,m) + high_delay=max(max(data[n-1][:,3]),1) + low_delay=min(min(data[n-1][:,3]),-1) + if max(data[n-1][:,3]) < 0.2: + high_delay=max(max(data[n-1][:,3])*1.2,0.1) + low_delay=min(min(data[n-1][:,3])*1.2,-0.1) + ax.plot(data[n-1][:,0],data[n-1][:,1],'.b',ms=size) # Delay + ax.plot(data[n-1][:,0],data[n-1][:,2],'.g',ms=size) # Model + ax.plot(data[n-1][:,0],data[n-1][:,3],'.r',ms=size) # Resid + trang = end-start + over = trang/8 + ax.plot([start-over, end+over], [0,0], 'k:') + ax.set_xlim(start-over,end+over) + if doplot_flag==1: + #+++ ZB + #ax.set_ylim(-2.1,2.1) + ax.set_ylim(-1.1,1.1) +# ax.set_ylim(min([low_delay*1.1,-1.1]),max([high_delay*1.1,1.1])) + #--- ZB + else: + ax.set_ylim(-1,1) + if m==1: + title('Multiband delay [nsec]') + if m2 or min(data[n-1][:,3])<-2: + delays=data[n-1][:,3] + rms=delays.std() + bad_delays=[] + for entry in delays: + if entry>3*rms or entry<-3*rms or entry<-2 or entry>2: + bad_delays.append(entry) + if float(len(bad_delays))/float(len(delays))>0.3: + warning1='\033[7;33;40m'+str(len(bad_delays))+'/'+str(len(delays))+' high delays\033[0m' + else: + warning1='\033[0m'+str(len(bad_delays))+'/'+str(len(delays))+' high delays\033[0m' + else: + warning1='' + + if max(data[n-1][:,6])>10 or min(data[n-1][:,6])<-10: + rates=data[n-1][:,6] + rms=rates.std() + bad_rates=[] + for entry in rates: + if entry>3*rms or entry<-3*rms or entry<-10 or entry>10: + bad_rates.append(entry) + if float(len(bad_rates))/float(len(rates))>0.3: + warning2='\033[7;33;40m'+str(len(bad_rates))+'/'+str(len(rates))+' high rates\033[0m' + else: + warning2=str(len(bad_rates))+'/'+str(len(rates))+' high rates' + else: + warning2='' + + + times=data[n-1][:,0] + j=0 + + blocks=[] + for i in range(n_blocks): + blocks.append(0) + for tmp in times: + if block_times[i][1]>=tmp>=block_times[i][0]: + blocks[i]+=1 + + if 1 in blocks or 2 in blocks or 3 in blocks: + warning0='\033[7;33;40m<3 scans\033[0m' + else: + warning0='' + + str_blocks=' ' + for k in range(n_blocks): + if int(blocks[k])<10: + str_blocks=str_blocks+' '+str(int(blocks[k])) + else: + str_blocks=str_blocks+' '+str(int(blocks[k])) + + mprint('%5s(%5s) %4.2f %4.2f %18s %8s %17s %10s'% (str_baselines2[n-1],str_baselines[n-1], round(data[n-1][:,2].std(),3),round(data[n-1][:,6].std(),2),str_blocks,warning0,warning1,warning2), logfile) + draw() + +############################################################################## +# +def checkatmos(inter_flag,logfile): + file='ATMOS.FITS' + data=loadtxt(file,skiprows=1) + + m=0 + for i in data: + if i[5]!=0: + m=m+1 + + antennas=[] + for i in range(len(data)): + tmp=[] + zero=[] + nonzero=[] + if data[i][5]==0: + antennas.append(data[i][0]) + time_i=data[i][1]+(data[i][2]+data[i][3]/60.+data[i][4]/3600.)/24. + n=0 + for j in range(len(data)): + if data[j][0]==data[i][0]: + time=data[j][1]+(data[j][2]+data[j][3]/60.+data[j][4]/3600.)/24. + tmp.append([data[j][0],time,data[j][5]]) + if data[j][5]==0 or data[j][5]==999: + zero.append(n) + else: + nonzero.append(n) + n=n+1 + + if tmp!=[] and nonzero!=[]: + for k in zero: + if k==0 and time_i==tmp[k][1]: + data[i][5]=tmp[nonzero[0]][2] + elif k==n-1 and time_i==tmp[k][1]: + data[i][5]=tmp[nonzero[len(nonzero)-1]][2] + elif time_i==tmp[k][1]: + data[i][5]=999 + + n=0 + for i in data: + if i[5]!=999 and i[5]!=0: + n=n+1 + + if mmin(ant_data[:,1]): + start=min(ant_data[:,1]) + if endavg[n-1]-span): + ax.plot(ant_data[:,1], ant_data[:,2], 'gx') + ax.set_ylim(avg[n-1]-span,avg[n-1]+span) + line2 = '' + elif (max(ant_data[:,2])avg[n-1]-2*span): + ax.plot(ant_data[:,1], ant_data[:,2], 'bx') + ax.set_ylim(avg[n-1]-2*span,avg[n-1]+2*span) + line2 = ' (variations > '+str(int(span))+' cm from mean)' + elif (max(ant_data[:,2])avg[n-1]-3*span): + ax.plot(ant_data[:,1], ant_data[:,2], 'rx') + ax.set_ylim(avg[n-1]-3*span,avg[n-1]+3*span) + line2 = ' (variations > '+str(int(2*span))+' cm from mean)' + else: + ax.plot(ant_data[:,1], ant_data[:,2], 'ro') + ax.set_ylim(avg[n-1]-4*span,avg[n-1]+4*span) + line2 = ' (variations > '+str(int(3*span))+' cm from mean)' + ax.set_xlim(start-1.,end+1.) + yticks([int(avg[n-1])-2*span,int(avg[n-1]),int(avg[n-1])+2*span]) + + mprint(line+line2, logfile) + + ax.text(0.03, 0.60, str(int(ant_data[0][0])), transform=ax.transAxes) + + if n==1: + title('ATMOS.FITS zenith delays [cm]') + if n '+str(int(3*span))+' cm from mean',logfile) + mprint('',logfile) + + draw() + savefig('atmos.ps') + + if inter_flag==1: + if int(matplotlib.__version__[0])==0: + if int(matplotlib.__version__[2:4])<99: + print 'Close figure to continue.' + show() + close() + cont=raw_input('Continue with current ATMOS.FITS file? (y/n) ') + if cont=='n' or cont=='N': + sys.exit() + close() + else: + fig.show() + cont=raw_input('Continue with current ATMOS.FITS file? (y/n) ') + if cont=='n' or cont=='N': + sys.exit() + close() + else: + print 'Close figure to continue.' + show() + close() + cont=raw_input('Continue with current ATMOS.FITS file? (y/n) ') + if cont=='n' or cont=='N': + sys.exit() + close() + +############################################################################# +# +def plotionos(inter_flag, logfile): + file='IONOS.FITS' + data=loadtxt(file,skiprows=1) + + ant=[] + data2=[] + avg=[] + rms=[] + + for i in range(int(max(data[:,0]))): + ant.append([]) + data2.append([]) + avg.append(-1) + rms.append(-1) + for row in data: + if (row[0] in ant) == False: + ant[int(row[0])-1]=int(row[0]) + time=row[1]*24.+(row[2]+row[3]/60.+row[4]/3600.) + data2[int(row[0])-1].append([int(row[0]), time,row[5], row[6], row[7], row[8]]) + + max_ant=len(data2) + num_ant=0 + for i in ant: + if i!=[]: + num_ant+=1 + + fig=figure(0) + n=0 + start=100 + end=0 + + for entry in data2: + n=n+1 + if entry !=[]: + ant_data=array(entry) + if start>min(ant_data[:,1]): + start=min(ant_data[:,1]) + if endavg[n-1]-span): + ax.plot(ant_data[:,1], ant_data[:,2], 'gx') + ax.set_ylim(avg[n-1]-span,avg[n-1]+span) + line2 = '' + elif (max(ant_data[:,2])avg[n-1]-2*span): + ax.plot(ant_data[:,1], ant_data[:,2], 'bx') + ax.set_ylim(avg[n-1]-2*span,avg[n-1]+2*span) + line2 = ' (variations > '+str(int(span))+' cm from mean)' + elif (max(ant_data[:,2])avg[n-1]-3*span): + ax.plot(ant_data[:,1], ant_data[:,2], 'rx') + ax.set_ylim(avg[n-1]-3*span,avg[n-1]+3*span) + line2 = ' (variations > '+str(int(2*span))+' cm from mean)' + else: + ax.plot(ant_data[:,1], ant_data[:,2], 'ro') + ax.set_ylim(avg[n-1]-4*span,avg[n-1]+4*span) + line2 = ' (variations > '+str(int(3*span))+' cm from mean)' + ax.set_xlim(start-1.,end+1.) + yticks([int(avg[n-1])-2*span,int(avg[n-1]),int(avg[n-1])+2*span]) + + mprint(line+line2, logfile) + + ax.text(0.03, 0.60, str(int(ant_data[0][0])), transform=ax.transAxes) + + if n==1: + title('IONOS.FITS zenith delays [cm]') + if n '+str(int(3*span))+' cm from mean',logfile) + mprint('',logfile) + + draw() + savefig('ionos.ps') + + if inter_flag==1: + if int(matplotlib.__version__[0])==0: + if int(matplotlib.__version__[2:4])<99: + print 'Close figure to continue.' + show() + close() + cont=raw_input('Continue with current IONOS.FITS file? (y/n) ') + if cont=='n' or cont=='N': + sys.exit() + close() + else: + fig.show() + cont=raw_input('Continue with current IONOS.FITS file? (y/n) ') + if cont=='n' or cont=='N': + sys.exit() + close() + else: + print 'Close figure to continue.' + show() + close() + cont=raw_input('Continue with current IONOS.FITS file? (y/n) ') + if cont=='n' or cont=='N': + sys.exit() + close() + + +############################################################################## +# +def runatmos(indata, atmos_file): + atmos = AIPSTask('CLCOR') + atmos.indata = indata + atmos.gainver = 3 + atmos.gainuse = 4 + atmos.clcorprm[1:] = [1,0] + atmos.opcode = 'ATMO' + atmos.infile = 'PWD:'+atmos_file + atmos() + +def runionos(indata, ionos_file): + atmos = AIPSTask('CLCOR') + atmos.indata = indata + atmos.gainver = 4 + atmos.gainuse = 4 + atmos.clcorprm[1:] = [1,0] + atmos.opcode = 'IONO' + atmos.infile = 'PWD:'+ionos_file + atmos() + +############################################################################## +# +def runpang(indata): + pang = AIPSTask('CLCOR') + pang.indata = indata + pang.gainver = 4 + pang.gainuse = 4 + pang.opcode = 'PANG' + pang.clcorprm[1:] = [1,0] + antennas = [] + for row in indata.table('AN', 0): + if row['mntsta']==0: + antennas.append(row['nosta']) + pang.antennas[1:] = antennas + pang() + +############################################################################## +# +def runpang2(indata): + pang = AIPSTask('CLCOR') + pang.indata = indata + pang.gainver = 5 + pang.gainuse = 6 + pang.opcode = 'PANG' + pang.clcorprm[1:] = [1,0] + antennas = [] + for row in indata.table('AN', 0): + if row['mntsta']==0: + antennas.append(row['nosta']) + pang.antennas[1:] = antennas + pang() + + +############################################################################## +# +def runaccor(indata): + accor = AIPSTask('ACCOR') + accor.indata = indata + accor.timer[1:] = [0] + accor.solint = -2 + accor() + + +def run_acscl(indata,flagver,gainuse,doband,bpver): + acscl = AIPSTask('ACSCL') + acscl.indata = indata + acscl.timer[1:] = [0] + acscl.flagver = flagver + acscl.doband = doband + acscl.docalib = 1 + acscl.gainuse = gainuse + acscl.bpver = bpver + acscl.solint = -5 + #acscl.ichansel[1:] = chansel + acscl() +############################################################################## +# +def run_setjy(indata, source, flux): + setjy = AIPSTask('SETJY') + setjy.indata = indata + setjy.source[1:] = [source] + setjy.zerosp[1:] = flux + setjy.optype = '' + setjy.bif = 0 + setjy.eif = 0 + setjy.optype = 'VCAL' + print setjy.optype + setjy() + +############################################################################## +# +def runantab(indata,antabfile): + antab = AIPSTask('ANTAB') + antab.indata = indata + antab.calin = antabfile + antab.tyver = 1 + antab.gcver = 1 + antab.offset = 3600 + antab.go() + +############################################################################## +# +def runtysmo(indata, tywin, maxdev): + while indata.table_highver('AIPS TY') > 1: + indata.zap_table('TY', 0) + tysmo = AIPSTask('TYSMO') + tysmo.indata = indata + tysmo.dobtween = 0 + tysmo.cparm[1:] = [tywin,0,0,0,0,maxdev,0] + tysmo.inext = 'TY' + tysmo.inver = 1 + tysmo.outver = 2 + tysmo() + +############################################################################## +# +def runapcal(indata, tyver, gcver, snver, dofit, opcode): + indata.zap_table('AIPS PL', -1) + apcal = AIPSTask('APCAL') + apcal.indata = indata + apcal.tyver = tyver + apcal.gcver = gcver + apcal.snver = snver + apcal.opcode = opcode + #apcal.bif = 0 #for data with wide or multi bands but in the same file + #apcal.eif = 0 + ant = get_ant(indata) + apcal.dotv = -1 + if antname =='VLBA': + if indata.table_highver('AIPS WX') > 0: + apcal.inver = 1 # use WX table 1 + else: + apcal.inver = 0 + #apcal.calin = 'PWD:'+outname[0]+'.weather' # if no wx table but can find it in VOBS. make the table and name it as outname.weather in the pwd directory. try VLOG but failed. Maybe need to update the AIPS version + for i in ant: + apcal.dofit[i] = dofit + elif antname == 'LBA': + for i in ant: + apcal.dofit[i] = dofit + else: + apcal.inver = 0 + apcal.dofit[1:] = dofit + apcal.input() + apcal() + if dofit > 0: + lwpla = AIPSTask('lwpla') + lwpla.indata = indata + lwpla.outfile = 'PWD:'+outname[0]+'-sn'+str(snver)+'.apcal' + filename = outname[0]+'-sn'+str(snver)+'.apcal' + lwpla.plver = 1 + lwpla.inver = 100 + if os.path.exists(filename): + os.popen('rm '+filename) + lwpla.go() + indata.zap_table('PL', -1) + if os.path.exists(filename): + os.popen('mv '+filename+' '+outname[0]+'/') +############################################################################## +# +def man_pcal(indata, refant, mp_source, mp_timera, gainuse, logfile, dpfour): + + if mp_source == ['']: + mp_source = [] + for source in indata.sources: + if source[0]=='F': + mp_source.append(source) + + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + fringe.solint = 10 + fringe.bchan = 0 + fringe.echan = 0 + fringe.gainuse = gainuse + fringe.aparm[1:] = [3,0] + fringe.dparm[8] = 1 + fringe.dparm[2] = 0 + fringe.dparm[3] = 0 + #+++ZB (same as 060907) + fringe.dparm[2] = 500 + #fringe.dparm[2] = 50 + #---ZB + fringe.dparm[3] = 500 + fringe.dparm[4] = dpfour + fringe.snver = 0 + fringe.calso[1:] = mp_source +# fringe.inputs() + if mp_timera==0: + fringe.timer[1:]=[0] + fringe() + else: + fringe.timer[1:] = mp_timera + fringe.input() + fringe() +''' + qualfile = indata.name+'.'+indata.klass+'-qual.dat' + (source,timerange)=get_best_scan(indata,logfile, qualfile, 1) + + # Delete SN table from test fringe. + #check_sncl(indata, 2, 6, logfile) + #fringe.calsour[1] = source + #fringe.timerang[1:] = timerange + #fringe() + + sn=indata.table('AIPS SN', 0) + mprint('###########################################',logfile) + mprint('Found solutions for '+str(len(sn))+' of ' + +str(len(indata.antennas))+' antennas.',logfile) + mprint('###########################################',logfile) + return source, timerange +''' +############################################################################## +# +def fringecal(indata, fr_image, nmaps, gainuse, refant, refant_candi, calsource,solint,smodel, doband, bpver, dpfour,apfive,ftrate,dwin,rwin): + fringe = AIPSTask('FRING') + if fr_image.exists(): + fringe.in2data = fr_image + mprint('################################################',logfile) + mprint('Using input model '+fringe.in2name+'.'+fringe.in2class+'.'+str(int(fringe.in2seq))+' on diks '+str(int(fringe.in2disk)), logfile) + mprint('################################################',logfile) + elif smodel!=[1,0]: + fringe.smodel[1:] = smodel + mprint('################################################',logfile) + mprint('Using SMODEL='+str(smodel)+' for fringe.',logfile) + mprint('################################################',logfile) + else: + mprint('################################################',logfile) + mprint('Using point source as imput model for fringe.',logfile) + mprint('################################################',logfile) + + if doband==1: + mprint('################################################',logfile) + mprint('Applying bandpass table '+str(bpver), logfile) + mprint('################################################',logfile) + else: + mprint('################################################',logfile) + mprint('Applying no bandpass table ', logfile) + mprint('################################################',logfile) + + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + fringe.calsour[1:] = [calsource] + fringe.solint = solint + fringe.aparm[1:] = [2, 0, 1, 0, apfive, 0, 0, 0, 1] #change if needed + fringe.dparm[1:] = [0, dwin, rwin, 0] + fringe.dparm[4] = dpfour + fringe.dparm[8] = 0 # zeroing rate, delay, phase? + fringe.dparm[9] = ftrate # supressing rate(1) or not(0)? + fringe.nmaps = nmaps + fringe.snver = 0 + fringe.gainuse = gainuse + fringe.doband = int(doband) + fringe.bpver = int(bpver) + fringe.search[1:] = refant_candi + fringe.input() + fringe() + +def fringecal_ini2(indata, refant, refant_candi, calsource, gainuse, flagver, solint, doband, bpver, apfive, ftrate,delawin, ratewin): + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + print type(calsource) + if(type(calsource) == type('string')): + fringe.calsour[1] = calsource + else: + fringe.calsour[1:] = calsource + fringe.search[1:] = refant_candi + fringe.solint = solint + fringe.aparm[1:] = [3, 0, 1, 0, apfive, 0, 0, 0, 1] + fringe.dparm[1:] = [0, delawin, ratewin, 0] + #fringe.dparm[4] = dpfour + fringe.dparm[8] = 0 + fringe.dparm[9] = ftrate + fringe.gainuse = gainuse + fringe.flagv = flagver + fringe.snver = 0 + fringe.doband = int(doband) + fringe.bpver = int(bpver) + fringe.input() + fringe() + +def fringecal_ini(indata, refant, refant_candi, calsource, gainuse, flagver, solint, doband, bpver, apfive): + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + print type(calsource) + if(type(calsource) == type('string')): + fringe.calsour[1] = calsource + else: + fringe.calsour[1:] = calsource + fringe.search[1:] = refant_candi + fringe.solint = solint + fringe.aparm[1:] = [3, 0, 1, 0, apfive, 0, 0, 0, 1] + fringe.dparm[1:] = [0, 300, 300, 0] + #fringe.dparm[4] = dpfour + fringe.dparm[8] = 0 + fringe.gainuse = gainuse + fringe.flagv = flagver + fringe.snver = 0 + fringe.doband = int(doband) + fringe.bpver = int(bpver) + fringe.input() + fringe() + +def calib_1(indata,fr_image,smode,gainuse,refant,snout,doband,bpver,calsour,flagver,solint): + calib = AIPSTask('CALIB') + calib.indata = indata + calib.docalib = 1 + calib.doband = int(doband) + calib.bpver = int(bpver) + calib.gainuse = gainuse + calib.cmethod = 'DFT' + calib.in2data = fr_image + calib.nmaps = 1 + if(type(calsour) == type('string')): + calib.calsour[1] = calsour + else: + calib.calsour[1:] = calsour + calib.flagver = flagver + calib.refant = refant + calib.solmode = smode + calib.snver = snout + calib.solint = solint*2 + if smode == 'P': + nant =3 + elif smode == 'A&P': + nant =4 + calib.aparm[1:] = nant,0,1,0,1,0 + calib.normaliz = 1 + calib.cparm[1:] = 0,1,0 + calib.input() + calib.go() + +############################################################################## +# +def runimagr(indata,source,niter,cz,iz,docal,imna,antennas,uvwtfn,robust,beam): + + if imna=='': + outname=source + else: + outname = source[:11-len(imna)]+'-'+imna + mprint('#########################################################',logfile) + mprint('Imaging '+source+' with imsize='+str(iz)+', cellsize='+str(cz)+ + ' and '+str(niter)+' iterations. Using antennas='+str(antennas)+ + '.',logfile) + mprint('#########################################################',logfile) + imagr = AIPSTask('IMAGR') + imagr.indata = indata + imagr.docal = docal + imagr.sourc[1:] = [source] + imagr.uvwtfn = uvwtfn + imagr.robust = robust + imagr.bif = 0 + imagr.eif = 0 + imagr.nchav = 16 + imagr.bchan = 0 + imagr.echan = 0 + imagr.cellsize[1:] = [cz,cz] + imagr.imsize[1:] = [iz,iz] + imagr.outna = outname + imagr.niter = niter + imagr.outdisk = indata.disk + imagr.dotv = -1 + imagr.antennas[1:] = antennas + imagr.bmaj = beam[0] + imagr.bmin = beam[1] + imagr.bpa = beam[2] + imagr() + + +############################################################################## +# +def rungridimagr(indata,source,niter,cz,iz,docal,uvwtfn,robust,beam): + imagr = AIPSTask('IMAGR') + imagr.indata = indata + imagr.docal = docal + imagr.sourc[1:] = [source] + imagr.uvwtfn = uvwtfn + imagr.robust = robust + imagr.bif = 0 + imagr.eif = 0 + imagr.nchav = 16 + imagr.uvtaper[1:] = [100000,100000] + imagr.uvwtfn = 'N' + imagr.bchan = 0 + imagr.echan = 0 + imagr.cellsize[1:] = [cz,cz] + imagr.imsize[1:] = [iz,iz] + imagr.outna = source + imagr.niter = niter + imagr.outdisk = indata.disk + imagr.dotv = -1 + imagr.bmaj = beam[0] + imagr.bmin = beam[1] + imagr.bpa = beam[2] + imagr() + +############################################################################## +# +def runmaimagr(indata,source,niter,cz,iz,channel,docal,imna,uvwtfn,robust,beam): + + if imna=='': + outname = source + else: + outname = source[:11-len(imna)]+'-'+imna + + imagr = AIPSTask('IMAGR') + + if indata.header['naxis'][3]>1: + imagr.bif = input('Enter IF: ') + imagr.eif = imagr.bif + else: + imagr.eif = 1 + imagr.bif = 1 + + imagr.indata = indata + imagr.docal = docal + imagr.sourc[1:] = [source] + imagr.uvwtfn = uvwtfn + imagr.robust = robust + imagr.nchav = 1 + imagr.bchan = channel + imagr.echan = channel + imagr.cellsize[1:] = [cz,cz] + imagr.imsize[1:] = [iz,iz] + imagr.outna = outname + imagr.niter = niter + imagr.outdisk = indata.disk + imagr.dotv = -1 + imagr.bmaj = beam[0] + imagr.bmin = beam[1] + imagr.bpa = beam[2] + imagr() + +############################################################################## +# +def runcube(indata,source,niter,cz,iz,bch, ech, docal, ant, uvwtfn, robust,beam): + + imagr = AIPSTask('IMAGR') + + if indata.header['naxis'][3]>1: + imagr.bif = input('Enter IF: ') + imagr.eif = imagr.bif + else: + imagr.eif = 1 + imagr.bif = 1 + + imagr.indata = indata + imagr.docal = docal + imagr.sourc[1:] = [source] + imagr.antennas[1:] = ant + imagr.nchav = 1 + imagr.bchan = bch + imagr.echan = ech + imagr.uvwtfn = uvwtfn + imagr.robust = robust + imagr.cellsize[1:] = [cz,cz] + imagr.imsize[1:] = [iz,iz] + imagr.outna = source + imagr.niter = niter + imagr.outdisk = indata.disk + imagr.dotv = -1 + imagr.bmaj = beam[0] + imagr.bmin = beam[1] + imagr.bpa = beam[2] + imagr() + +############################################################################## +# +def shift_pos(indata, source, ra, dec, inver, outver): + if source == '': + source=findcal(indata, '') + clcor = AIPSTask('CLCOR') + clcor.indata = indata + clcor.source[1] = source + clcor.opcode = 'ANTC' + clcor.clcorprm[5] = ra + clcor.clcorprm[6] = dec + clcor.gainver = inver + clcor.gainuse = outver + if ra!=0 or dec!=0: + clcor() +############################################################################## +# +def gcal_app(indata,matx,cluse,pol): + clcor = AIPSTask('CLCOR') + clcor.indata = indata + clcor.opcode = 'POGN' #'GAIN' is voltage, 'POGN' is power, use gain + clcor.gainver = cluse + clcor.gainuse = cluse + clcor.stokes = pol + for i in range(len(matx)): + for j in range (len(matx[i])): + clcor.antenna[1] = j+1 + clcor.clcorprm[1] = matx[i][j] + clcor.bif = i+1 + clcor.eif = i+1 + #clcor.input() + clcor() + # clcor.stokes = 'R' + # for i in range(len(matxr)): + #for j in range (len(matxr[i])): + # clcor.antenna[1] = i+1 + # clcor.clcorprm[1] = matxr[i][j] + # clcor.bif = j+1 + # clcor.eif = j+1 + # clcor() +############################################################################## +# +def findcal(indata, calsource): + if calsource == '': + n = 0 + for source in indata.sources: + if source[0]=='G': + calsource=source + n=n+1 + if n>1: + print 'More than one Maser source! Using '+calsource + + return calsource + +############################################################################## +# +def findcvelsource(indata, cvelsource): + if cvelsource == '' or cvelsource == ['']: + cvelsource = [] + n = 0 + for source in indata.sources: + if source[0]=='G' and source[1:3]!='RB': + cvelsource.append(source) + n=n+1 + return cvelsource + +############################################################################## +# +def findtarget(indata, target): + targets=[] + for entry in target: + targets.append(entry) + + if targets == ['']: + targets = [] + n = 0 + for source in indata.sources: + if source[0]=='J': + targets.append(source) + n=n+1 + return targets + +############################################################################## +# +def get_split_sources(indata, target, cvelsource, calsource): + + split_sources=findtarget(indata, target) + + if calsource in cvelsource or calsource in target: + pass + else: + split_sources.append(calsource) + + return split_sources + +############################################################################## +# +def mafringe(indata, fr_image, calsource, channel, refant, outdisk, doband, bpver,dpfour): + + split = AIPSTask('SPLIT') + split.indata = indata + split.source[1] = calsource + split.bchan = channel + split.echan = channel + split.outcl = 'CH'+str(channel) + split.outdisk = outdisk + split.bif = 0 + split.eif = 0 + split.flagver = 1 + split.docal = 1 + split.aparm[1] = 2 + split.aparm[6] = 1 + split.doband = doband + split.bpver = bpver + + splitdata = AIPSUVData(calsource, split.outcl, outdisk, 1) + + if splitdata.exists(): + splitdata.clrstat() + splitdata.zap() + + split() + + multi = AIPSTask('MULTI') + multi.indata = splitdata + multi.outname = calsource + multi.outcl = '1IF' + multi.outdisk = outdisk + + multidata = AIPSUVData(calsource, multi.outcl, outdisk, 1) + + if multidata.exists(): + multidata.clrstat() + multidata.zap() + multi() + + indxr = AIPSTask('INDXR') + indxr.indata = multidata + indxr.cparm[1:] = [0,0./60.] + indxr() + + vbglu = AIPSTask('VBGLU') + vbglu.indata = multidata + vbglu.in2data = multidata + vbglu.outname = calsource + vbglu.outdisk = outdisk + vbglu.outcl = '2IF' + + vbgludata = AIPSUVData(calsource, '2IF', outdisk, 1) + + if vbgludata.exists(): + vbgludata.clrstat() + vbgludata.zap() + vbglu() + + + vbglu.indata = vbgludata + vbglu.in2data = vbgludata + vbglu.outcl = '4IF' + + vbgludata2 = AIPSUVData(calsource, '4IF', outdisk, 1) + + if vbgludata2.exists(): + vbgludata2.clrstat() + vbgludata2.zap() + vbglu() + + indxr.indata = vbgludata2 + indxr() + + fringe = AIPSTask('FRING') + + if fr_image.exists(): + fringe.in2data = fr_image + mprint('################################################',logfile) + mprint('Using input model '+fringe.in2name+'.'+fringe.in2class+'.'+str(int(fringe.in2seq))+' on diks '+str(int(fringe.in2disk)), logfile) + mprint('################################################',logfile) + else: + mprint('################################################',logfile) + mprint('Using point source as imput model for fringe.',logfile) + mprint('################################################',logfile) + + fringe.indata = multidata + fringe.refant = refant + fringe.docal = 1 + fringe.calsour[1] = '' + fringe.solint = 6 + fringe.aparm[1:] = [2, 0, 1, 0, 0] + fringe.dparm[1:] = [1, -1, 0, 0] + fringe.dparm[4] = dpfour + fringe.snver = 0 + fringe() + + fringe.indata = vbgludata2 + fringe() + + return multidata, vbgludata2 + +############################################################################## +# +def mafringe2(indata, calsour, channel, refant, outdiks, doband, bpver, dpfour): + + fringe = AIPSTask('FRING') + + if fr_image.exists(): + fringe.in2data = fr_image + mprint('################################################',logfile) + mprint('Using input model '+fringe.in2name+'.'+fringe.in2class+'.'+str(int(fringe.in2seq))+' on diks '+str(int(fringe.in2disk)), logfile) + mprint('################################################',logfile) + else: + mprint('################################################',logfile) + mprint('Using point source as imput model fro fringe.',logfile) + mprint('################################################',logfile) + + fringe.indata = indata + fringe.refant = refant + fringe.bchan = channel + fringe.echan = channel + fringe.docal = 1 + if(type(calsour) == type('string')): + fringe.calsour[1] = calsour + else: + fringe.calsour[1:] = calsour + fringe.solint = 6 + fringe.aparm[1:] = [2, 0, 1, 0, 0] + fringe.dparm[1:] = [1, -1, 0, 0] + fringe.dparm[4] = dpfour + fringe.snver = 4 + fringe.doband = doband + fringe.bpver = bpver + fringe() + +############################################################################## +# +def sncor(indata): + + bif = input('Enter IF with the maser line: ') + sncor = AIPSTask('SNCOR') + sncor.indata = indata + sncor.opcode = 'CPSN' + sncor.bif = 0 + sncor.eif = 0 + sncor.sncorprm[1:] = [bif] + sncor.snver = 4 + sncor() + +def runsncor(indata,timer,inver): + sncor = AIPSTask('SNCOR') + sncor.indata = indata + sncor.timerang[1:] = timer + sncor.opcode = 'ZRAT' + sncor.bif = 0 + sncor.eif = 0 + sncor.snver = invser + sncor() + +############################################################################## +# +def check_sn_ver(indata): + sn=indata.table('AIPS SN',0) + return len(sn[0]) + +############################################################################## +# +def runprtmasn(indata,channel): + prtab = AIPSTask('PRTAB') + prtab.indata = indata + prtab.inext = 'SN' + prtab.invers = 0 + prtab.docrt = -1 + prtab.box[1][1] = 1 + prtab.box[1][2] = 3 + prtab.box[1][3] = 4 + prtab.box[1][4] = 9 + if check_sn_ver(indata)>15: + prtab.box[2][1] = 15 + prtab.box[2][2] = 17 + else: + prtab.box[2][1] = 13 + prtab.box[2][2] = 15 + prtab.dohms = -1 + (year, month, day)=get_observation_year_month_day(indata) + monthlist=['JAN','FEB','MAR','APR','MAY','JUN','JUL','AUG','SEP','OCT','NOV','DEC'] + + if day<10: + strday='0'+str(day) + else: + strday=str(day) + + namma=str(year)+monthlist[int(month)-1]+strday + + prtab.outprint='PWD:'+namma+'_'+prtab.inname+'_CH'+str(channel)+'.RATE' + prtab() + +############################################################################## +# +def runprtmasu(indata,channel): + prtab = AIPSTask('PRTAB') + prtab.indata = indata + prtab.inext = 'SU' + prtab.invers = 0 + prtab.docrt = -1 + prtab.box[1][1] = 1 + prtab.box[1][2] = 2 + prtab.box[1][3] = 11 + prtab.box[1][4] = 12 + prtab.box[2][1] = 13 + prtab.box[2][2] = 14 + prtab.box[2][3] = 15 + prtab.dohms = -1 + prtab.ndig = 4 + (year, month, day)=get_observation_year_month_day(indata) + monthlist=['JAN','FEB','MAR','APR','MAY','JUN','JUL','AUG','SEP','OCT','NOV','DEC'] + + if day<10: + strday='0'+str(day) + else: + strday=str(day) + + namma=str(year)+monthlist[int(month)-1]+strday + + prtab.outprint='PWD:'+namma+'_'+prtab.inname+'_CH'+str(channel)+'.SU' + prtab() + + +############################################################################## +# +def runcvel(indata,cvelsource,vel, inter_flag, doband, bpver): + + print 'Running CVEL.' + if inter_flag==1: + cvelsource=check_calsource(indata, cvelsource) + + naxis = indata.header['naxis'] + crpix = indata.header['crpix'] + + if isinstance(vel, float) or isinstance(vel, int): + vel = [vel] + + if naxis[3]!=len(vel): + print 'You have '+str(naxis[3])+' IFs, and '+str(len(vel))+' velocities.' + sys.exit() + (linename,restfreq) = get_line_name(indata) + +# freq = get_center_freq(indata)/1e9 +# if freq>12 and freq<13: +# restfreq = [1.2178E+10,597000] +# print 'Assuming 12.2 GHz methanol maser.' +# elif freq>22 and freq<23: +# restfreq = [2.2235E+10,80000] +# print 'Assuming 22.2 GHz water maser.' +# elif freq>6 and freq<7: +# restfreq = [6.668e+09, 519200] +# print 'Assuming 6.7 GHz methanol maser.' +# elif freq>43.1 and freq<43.2: +# restfreq = [43.122e+09,80000] +# print 'Assuming 43.122 GHz SiO maser.' +# else: +# print 'Unknown maser line.' + + setjy = AIPSTask('SETJY') + setjy.indata = indata + setjy.source[1:] = cvelsource + setjy.restfreq[1:] = restfreq + setjy.optype = '' + setjy.veltyp = 'LSR' + setjy.veldef = 'RADIO' + channum = indata.header['naxis'][2] + setjy.aparm[1:] = [channum/2.+crpix[2],0] +# if int(aipsver[6])>1: +# setjy.optype='VCAL' + + for i in range(naxis[3]): + setjy.sysvel = vel[i] + setjy.bif = i+1 + setjy.eif = i+1 + setjy() + + cvel = AIPSTask('CVEL') + cvel.indata = indata + cvel.source[1:] = cvelsource + cvel.outna = cvel.inna + cvel.outcl = cvel.incl + cvel.gainuse = 7 + cvel.freqid = 1 + cvel.outseq = cvel.inseq+1 + cvel.outdisk = cvel.indisk + cvel.doband = doband + cvel.bpver = bpver +# cvel.aparm[1] = vel[i] +# cvel.aparm[2] = channum +# cvel.aparm[3] = 0 +# cvel.aparm[4] = 1 +# cvel.aparm[5] = restfreq[0] +# cvel.aparm[6] = restfreq[1] + + cveldata = AIPSUVData(cvel.inna, cvel.incl, int(cvel.indisk), 2) + if cveldata.exists(): + cveldata.clrstat() + cveldata.zap() + cvel() + + indxr = AIPSTask('indxr') + indxr.indata = cveldata + indxr() + +############################################################################## +# +def get_velocity(indata,cvelsource): + cvelsource=findcvelsource(indata, cvelsource) + light = 299792458 + nchan = indata.header['naxis'][2] + res = indata.header['cdelt'][2] + su = indata.table('AIPS SU',0) + nif = indata.header['naxis'][3] + for entry in su: + if entry['source'].strip() in cvelsource: + vel=entry['lsrvel'] + restfreq=entry['restfreq'] + + if nif>1: + restfreq=restfreq[0] + spacing=res/restfreq*light + return vel, restfreq, nchan, res, spacing + + +############################################################################## +# +def get_real_sources(indata): + nx=indata.table('AIPS NX',0) + su=indata.table('AIPS SU',0) + + real_sources=[] + for entry in nx: + if (su[entry['source_id']-1]['source'].rstrip() in real_sources)==False: + real_sources.append(su[entry['source_id']-1]['source'].rstrip()) + + return real_sources + +############################################################################## +# +def check_calsource(indata, calsource): + + if isinstance(calsource, str): + sour = raw_input('Using source '+calsource+'? (y/n) ') + else: + cals_str = '' + for i in calsource: + cals_str=cals_str+i+' ' + sour = raw_input('Using source '+cals_str+'? (y/n) ') + + if sour=='n' or sour=='N': + print 'Searching for sources with data.' + real_sources=get_real_sources(indata) + print 'Available sources: ' + for i in range(len(real_sources)): + print str(i+1)+': '+real_sources[i] + + calsource=raw_input('Which source? ') + if (calsource in real_sources)==False: + try: + k=int(calsource) + calsource=real_sources[k-1] + except: + print 'No such source.' + sys.exit() + else: + print 'No such source.' + sys.exit() + + return calsource + +############################################################################## +# +def get_antname(an_table,n): + name='' + for entry in an_table: + if n==entry['nosta']: + name=entry['anname'] + return name + + + +############################################################################## +# +def get_phasecal_sources(indata,mp_source,logfile): + if mp_source == ['']: + mp_source = [] + for source in indata.sources: + if source[0]=='F': + mp_source.append(source) + + newdata = AIPSUVData(indata.name, 'UVCOP', indata.disk, 1) + if newdata.exists(): + newdata.zap() + + uvcop = AIPSTask('UVCOP') + uvcop.indata = indata + uvcop.source[1:] = mp_source + uvcop.go() + + return newdata + +def check_RDBE(indata,logfile,inter_flag,dtype): + + mprint('################################################',logfile) + mprint('### Checking geoblock data for RDBE errors #####',logfile) + mprint('################################################',logfile) + avspc = AIPSTask('AVSPC') + nchan = indata.header['naxis'][2] + + data1 = AIPSUVData(indata.name, 'AVSPC', indata.disk, 1) + + if data1.exists(): + data1.zap() + + avspc.indata = indata + avspc.outdisk = indata.disk + avspc.outclass = 'AVSPC' + avspc.channel = nchan + avspc.go() + + data2 = AIPSUVData(indata.name, 'UVAVG', indata.disk, 1) + if data2.exists(): + data2.zap() + + uvavg = AIPSTask('UVAVG') + uvavg.indata = AIPSUVData(indata.name, 'AVSPC', indata.disk, 1) + uvavg.yinc = 300 + uvavg.outclass = 'UVAVG' + uvavg.outdisk = indata.disk + uvavg.go() + + block_nr = make_check_RDBE(indata,logfile,inter_flag,dtype) + + data1.zap() + data2.zap() + return block_nr + +def make_check_RDBE(data,logfile,inter_flag,dtype): + + wdata = WAIPSUVData(data.name,'UVAVG',data.disk,data.seq) + nif = data.header['naxis'][3] + + sources = get_sources(data) + su_table = data.table('AIPS SU', 0) + an_table = data.table('AIPS AN', 0) + + times=[] + for visibility in wdata: + there = False + if visibility.time in times: + pass + else: + if len(times)>0: + for time in times: + if visibility.time-time<6.94e-4: + there = True + else: pass + + if there: pass + else: times.append(visibility.time) + + blocks=[] + for entry in times: + if len(blocks)==0: + blocks.append(entry) + else: + new_block = True + for time in blocks: + if abs(entry-time)<4.17e-2: + new_block = False + if new_block: + blocks.append(entry) + + antennas = [] + for ant in an_table: + antennas.append(ant['nosta']) + + if len(antennas)0: + avg=average(antdata[ant-1][IF]) + else: + avg=0.0 + avgantdata[ant-1][IF]=avg + + plot=1 + an_table = data.table('AIPS AN', 0) + for entry in antennas: + myantdata=array(avgantdata[entry-1]) + ymax=(1.3*max(myantdata)+0.000001) + avg = average(myantdata)*1000 + rms = std(myantdata)*1000 +# print get_antname(an_table,entry),average(myantdata)/min(myantdata) + if min(myantdata)>0 and average(myantdata)/min(myantdata)>2: + if 'MK' in get_antname(an_table,entry) or 'SC' in get_antname(an_table,entry): + if average(myantdata)/min(myantdata)>2.2: + bad_IF=[] + for IF in range(nif): + if average(myantdata)/myantdata[IF]>2.2: + bad_IF.append(IF+1) + mprint('Probable RDBE Error: '+get_antname(an_table,entry).strip()+', bad IFs:'+str(bad_IF),logfile) + bad+=1 + else: + bad_IF=[] + for IF in range(nif): + if average(myantdata)/myantdata[IF]>2: + bad_IF.append(IF+1) + if len(bad_IF)==1 and 7 in bad_IF: + mprint('Probable IF 7 Error: '+get_antname(an_table,entry).strip()+', bad IFs:'+str(bad_IF),logfile) + else: + mprint('Probable RDBE Error: '+get_antname(an_table,entry).strip()+', bad IFs:'+str(bad_IF),logfile) + flagline.append([get_antname(an_table,entry).strip(),bt[block_nr-1],bt[block_nr]]) + bad+=1 + fig=figure(block_nr,figsize=(8, 12)) + ax=fig.add_subplot(len(antennas),1,plot) + #+++ ZB + #ax.set_xlim(-0.8,nif-0.5) + #ax.set_ylim(0.0, ymax*1000) + #ax.text(0.03, 0.60, get_antname(an_table,entry), transform=ax.transAxes) + #--- ZB + + if round(ymax*900,1)<0.01: + yticks([0,0.1]) + else: + yticks([0,round(ymax*900,1)]) + + #+++ ZB + #ax.plot(myantdata[:]*1000, 'bx') + #ax.plot([0,nif-1],[avg,avg],'k-') + ax.plot(range(1,nif+1),myantdata[:]*1000, 'bx') + ax.plot([1,nif+1],[avg,avg],'k-') + #--- ZB + + #+++ ZB + #ax.set_xlim(-0.8,nif-0.5) + ax.set_xlim(0.5,nif+0.5) + ax.set_ylim(0.0, ymax*1000) + ax.text(0.03, 0.60, get_antname(an_table,entry), transform=ax.transAxes) + #--- ZB + + + if entry==min(antennas): + title('Aplitude in arbitrary units across the IFs\n Block:'+str(block_nr)) + if entry0: + flagfile=data.name+'.flagfile' + f=open(flagfile,'w') + for entry in flagline: + d1,h1,m1,s1=time_to_hhmmss(entry[1]) + d2,h2,m2,s2=time_to_hhmmss(entry[2]) + f.writelines('ANT_NAME=\''+entry[0]+'\' TIMERANG='+str(d1+doy)+','+str(h1)+','+str(m1)+','+str(s1)+','+str(d2+doy)+','+str(h2)+','+str(m2)+','+str(s2)+' REASON=\'RDBE problem\'/\n') + f.close() + + + if inter_flag==1: + cont=raw_input('Apply flags? (y/n) ') + if cont=='y' or cont=='Y': + runuvflg(data,flagfile,logfile) + else: + runuvflg(data,flagfile,logfile) + + return len(blocks) + +# if data.exists(): +# print 'Yes' +# else: +# print 'No' + +############################################################################## +# +def runpossm(indata, calsource='', ant_use=[0], doband=-1, bpver=1, bchan=1, echan=0, gainuse=1, flagver=0, stokes= 'HALF', nplot=9): + + indata.zap_table('PL', -1) + + #calsource=check_calsource(indata, calsource) + + + + if bchan==echan and echan!=0: + print 'Only one channel selected.' + + elif bchan>echan: + print 'bchan > echan' + + else: + possm = AIPSTask('POSSM') + possm.eif = 0 + possm.bif = 0 + possm.indata = indata + if(type(calsource) == type('string')): + possm.source[1] = calsource + else: + possm.source[1:] = calsource + #possm.source[1:] = [calsource] + possm.antenna[1:] = ant_use + possm.stokes = stokes + possm.docal = 1 + possm.gainuse = gainuse + possm.nplots = nplot + possm.bchan = bchan + possm.echan = echan + possm.doband = doband + possm.bpver = bpver + possm.flagver = flagver + + if AIPSTV.AIPSTV().exists(): + possm.dotv = 1 + gv_flag = 0 + else: + possm.dotv = -1 + gv_flag = 1 + possm() + + + if gv_flag==1: + if os.path.exists('possm.ps'): + os.popen('rm possm.ps') + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.inver = 0 + lwpla.outfile = 'PWD:'+outname[0]+'-'+[calsource]+'-cl'+str(gainuse)+'-bp'+str(bpv)+'.possm' + lwpla() + + indata.zap_table('PL', -1) + os.popen('gv possm.ps') + #os.popen('rm possm.ps') + +def possmplot(uvdata,sources='',timer=[0,0,0,0,0,0,0,0],gainuse=0,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=1): + uvdata.zap_table('AIPS PL', -1) + possm=AIPSTask('possm') + possm.default() + possm.indata = uvdata + if(type(sources) == type('string')): + possm.sources[1] = sources + else: + possm.sources[1:] = sources + if(timer != None): + if(timer[0] == None): possm.timerange = timer + else: possm.timerang[1:] = timer + possm.stokes=stokes + possm.nplot=nplot + #if cr == 0: + #possm.nplot=0 + if(gainuse >= 0): + possm.docalib = 1 + possm.gainuse = gainuse + possm.flagv=flagver + if cr == 1:#cross-correlation + possm.aparm[1:] = [0,1,0,0,-180,180,0,0,1,0] + elif cr == 0:#total power + possm.aparm[1:] = [0,0,0,0,0,0,0,1,0] + possm.bchan = 0 + possm.echan = 0 + possm.dotv=-1 + if(bpv > 0): + possm.doband = 1 + possm.bpver = bpv + if(ant_use!=0): + possm.antennas[1:]=ant_use + possm.baseline=[None,0] + textname = outname[0]+'-'+possm.sources[1]+'.rfichk'+str(nplot) + possm.outtext = 'PWD:'+ textname + #possm.input() + print ant_use + if(ant_use!=[0]): + ants=ant_use + elif(ant_use==[0]): + ants=get_ant(uvdata) + for i in ants: + possm.antennas[1:]=[i,0] + possm.go() + + lwpla = AIPSTask('lwpla') + lwpla.indata = uvdata + #lwpla.outfile = 'PWD:'+outname[0]+'-'+sources[0]+'-cl'+str(gainuse)+'-bp'+str(bpv)+'.possm' + if sources == '': + sources=[''] + filename=outname[0]+'-'+possm.sources[1]+'-cl'+str(gainuse)+'-bp'+str(bpv)+'-'+str(cr)+'.possm'+str(nplot) + lwpla.outfile='PWD:'+filename + lwpla.plver = 1 + lwpla.inver = 100 + if os.path.exists(filename): + os.popen('rm '+filename) + lwpla.go() + if (os.path.exists(filename)==True): + os.popen(r'mv '+filename+' '+outname[0]+'/') + if (os.path.exists(textname)==True): + os.popen(r'mv '+textname+' '+outname[0]+'/') + +############################################################################## +# +def run_snplt(indata, inter_flag): + + indata.zap_table('PL', -1) + n_ant = len(get_ant(indata)) + snplt = AIPSTask('SNPLT') + snplt.indata = indata + snplt.stokes = 'RR' + snplt.inver = 4 + snplt.inext = 'SN' + snplt.optype = 'PHAS' + snplt.nplots = n_ant + snplt.bif = 1 + snplt.eif = 1 + snplt.dotv = -1 + snplt() + + name=indata.name+'_sn4.ps' + + if os.path.exists(name): + os.popen('rm '+name) + + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.inver = 0 + lwpla.outfile = 'PWD:'+name + lwpla() + + if inter_flag==1: + tv=AIPSTV.AIPSTV() + if tv.exists()==False: + tv.start() + if tv.exists(): + tv.clear() + + if AIPSTV.AIPSTV().exists(): + snplt.dotv = 1 + snplt() + else: + os.popen('gv '+name) + + indata.zap_table('PL', -1) + +def runsnplt(indata,inver=1,inex='cl',sources='',optype='phas',nplot=4,timer=[]): + indata.zap_table('PL', -1) + snplt=AIPSTask('snplt') + snplt.default() + snplt.indata=indata + snplt.dotv=-1 + snplt.nplot=nplot + snplt.inex=inex + snplt.inver=inver + snplt.optype=optype + snplt.do3col=2 + if(type(sources) == type('string')): + snplt.sources[1] = sources + else: + snplt.sources[1:] = sources + if(timer != None): + snplt.timerang[1:] = timer + snplt.go() + lwpla = AIPSTask('lwpla') + lwpla.indata = indata + if sources == '': + filecode = outname[0]+'-'+inex+str(inver)+'-'+optype + else: + filecode= outname[0]+'-'+inex+str(inver)+'-'+optype+'-'+sources[0]+'-'+sources[1] + lwpla.outfile = 'PWD:'+filecode[:32]+'.snplt' + lwpla.plver = 1 + lwpla.inver = 200 + filename = filecode[:32]+'.snplt' + print filename + if os.path.exists(filename)==True: + os.popen('rm '+filename) + lwpla.go() + if (os.path.exists(filename)==True): + os.popen(r'mv '+filename+' '+outname[0]+'/') + +def setup_plotfiles(indata): + (year, month, day)=get_observation_year_month_day(indata) + ant=get_ant(indata) + code='' + mon_dir={1:'jan',2:'feb',3:'mar',4:'apr',5:'may',6:'jun',7:'jul',8:'aug' + ,9:'sep',10:'oct',11:'nov',12:'dec'} + path0=('http://www.vlba.nrao.edu/astro/VOBS/astronomy/') + if code=='': + code_str = indata.header.observer.lower() + else: + code_str = code + + naxis = indata.header['naxis'] + frq=get_center_freq(indata)/1e9 + if frq>1.3 and frq< 1.8: band='L' + elif frq>2.1 and frq<2.4: band='S' + elif frq>4.5 and frq<8: + if check_sx(indata, logfile): band='S/X' + else: band='C' + elif frq>8.0 and frq<10.0: band='X' + elif frq>11.5 and frq<16.0: band='U' + elif frq>21.5 and frq<24.5: band='K' + elif frq>40.5 and frq<45.5: band='Q' + else: + band='unknown' + + dinfo = band+'-Band: '+str(naxis[1])+' Stokes, '+str(naxis[3])+' IFs with '+str(naxis[2])+' channels' + + + path1=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/' + path2=path1+code_str+'log.vlba' + + sources = get_sources(indata) + + f = open('./index.html','w') + f.writelines('\n') + f.writelines('') + f.writelines('Datafile: '+indata.name+'
\n') + f.writelines('Observed on '+str(year)+'/'+str(month)+'/'+str(day)+'
\n') + f.writelines('
NRAO VOBS page, Logfile') + f.writelines('
\n') + f.writelines(dinfo+'
\n') + f.writelines('Antennas: '+str(ant)+'
\n') + f.writelines('Tsys plots: ') + for entry in ant: + f.writelines(''+ant[entry]+' ') + f.writelines('

\n') + f.writelines('Sources: '+str(sources)+'\n') + f.writelines('
\n') + f.writelines('SN1 SN2 SN3 SN4 RDBE Check
') + f.writelines('
\n') + + if (os.path.exists('delay-rate.ps')): + f.writelines('\n') + f.writelines('
\n') + if (os.path.exists('ATMOS_NAME.FITS')): + f2=open('./ATMOS_NAME.FITS', 'r') + data=f2.readlines() + f2.close() + f.writelines('\n') + f.writelines('
AntennaUT Timezenith delayclock offsetclock rate\n') + + for entry in data: + if len(entry.split())==1: + last_ant='' + else: + time=entry.split()[1]+':'+entry.split()[2]+':'+entry.split()[3]+':'+entry.split()[4] + print last_ant + if entry.split()[0]!=last_ant: + f.writelines('
\n') + last_ant=entry.split()[0] + else: + last_ant=entry.split()[0] + f.writelines('
'+entry.split()[0]+''+time+''+entry.split()[5]+''+entry.split()[6]+''+entry.split()[8]+'\n') + f.writelines('
\n') + + if (os.path.exists('delay-rate-ionos.ps')): + f.writelines('\n') + f.writelines('
\n') + if (os.path.exists('IONOS_NAME.FITS')): + f2=open('./IONOS_NAME.FITS', 'r') + data=f2.readlines() + f2.close() + f.writelines('\n') + f.writelines('
AntennaUT Timezenith delayclock offsetclock rate\n') + + for entry in data: + if len(entry.split())==1: + last_ant='' + else: + time=entry.split()[1]+':'+entry.split()[2]+':'+entry.split()[3]+':'+entry.split()[4] + print last_ant + if entry.split()[0]!=last_ant: + f.writelines('
\n') + last_ant=entry.split()[0] + else: + last_ant=entry.split()[0] + f.writelines('
'+entry.split()[0]+''+time+''+entry.split()[5]+''+entry.split()[6]+''+entry.split()[8]+'\n') + f.writelines('
\n') + + f.close() + + +############################################################################## +# +def run_snplt_2(indata, inver=1, inext='sn', optype='phas', nplot=1, sources='', timer=[]): + + indata.zap_table('PL', -1) + nif = indata.header['naxis'][3] + n_ant = len(get_ant(indata)) + snplt = AIPSTask('SNPLT') + snplt.indata = indata + snplt.stokes = '' + snplt.inver = inver + snplt.inext = inext + snplt.optype = optype + snplt.nplots = nplot + snplt.bif = 1 + snplt.eif = 0 + snplt.dotv = -1 + if(type(sources) == type('string')): + snplt.sources[1] = sources + else: + snplt.sources[1:]= sources + if(timer != None): + snplt.timerang[1:] = timer + snplt() + + if (os.path.exists('plotfiles')==False): + os.mkdir('plotfiles') + + #f = open('./index.html','a') + #f.writelines('\n') + #f.writelines(snplt_name+' TOP
\n') + #for n in range(1,indata.table_highver('AIPS PL')+1): + # name=indata.name.strip()+'_'+snplt_name+'_'+str(n)+'.ps' + # name2=indata.name.strip()+'_'+snplt_name+'_'+str(n)+'.png' + + if os.path.exists(name): + os.popen('rm '+name) + + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.plver = n + lwpla.inver = n + lwpla.dparm[5] = 1 + lwpla.outfile = 'PWD:'+outname[0]+'-'+inext+str(inver)+'-'+optype+'.snplt' + lwpla() + f.writelines('\n') + os.popen(r'convert '+name+' '+name2) + os.popen(r'mv '+name+' plotfiles/') + os.popen(r'mv '+name2+' plotfiles/') + + f.writelines('

\n') + f.close() + indata.zap_table('PL', -1) + +def rdbe_plot(data,logfile,dtype): + block_nr=check_RDBE(data,logfile,0,dtype) + if dtype=='GEO': + os.popen(r'pstoimg RDBE_check_geoblock* plotfiles/') + os.popen(r'cp RDBE_check_geoblock* plotfiles/') + + + f = open('./index.html','a') + f.writelines('\n') + f.writelines('RDBE check TOP
\n') + for i in range(1,block_nr+1): + rdbplot='RDBE_check_geoblock'+str(i)+'.ps' + rdbplot2='RDBE_check_geoblock'+str(i)+'.png' + f.writelines('\n') + + f.writelines('

\n') + f.close() + +############################################################################## +# +def run_split2(indata, source, gainuse, outclass, doband, bpver, flagver,split_seq): + + channels = indata.header['naxis'][2] + if channels==16: + bad=1 # remove 1 channel from each side + elif channels==32: + bad=2 # remove 2 channels from each side + elif channels==64: + bad=4 # remove 2 channels from each side + elif channels==128: + bad=6 # remove 6 channels from each side + elif channels==256: + bad=8 # remove 8 channels from each side + elif channels==512: + bad=10 # remove 10 channels from each side + elif channels==1024: + bad=12 # remove 12 channels from each side + else: + bad=0 + + [bchan,echan]=[1+bad,channels-bad] + + print 'Averaging channels '+str(bchan)+' - '+str(echan)+'.' + + split_data=AIPSUVData(source,outclass,indata.disk,split_seq) + + if split_data.exists(): + print 'Zapping old split data' + split_data.clrstat() + split_data.zap() + if isinstance(source, str): + source=[source] + + split = AIPSTask('SPLIT') + split.indata = indata + split.bchan = 0 #bchan + split.echan = 0 #echan + #split.freqid = 1 + split.docalib = 1 + #split.qual = -1 + split.gainuse = gainuse + split.flagver = flagver + split.source[1:] = source + split.outclass = outclass + split.outseq = split_seq + split.aparm[1:] = [2,2,0] + #split.aparm[6] = 1 + split.outdisk = indata.disk + split.doband = doband + split.bpver = bpver + #split.smooth[1:] = smooth + #split.input() + split.ichansel[1] = [None,1+bad,channels-bad,1,0] + split() + + + fittp = AIPSTask('FITTP') + fittp.indata = split_data + fitname=fittp.inname+'_'+fittp.inclass+'_'+str(int(fittp.inseq))+'.splt' + fittp.dataout = 'PWD:'+fitname + + if split_data.exists(): + mprint('Writing out calibrated and splitted uv-data for '+source[0],logfile) + fittp.go() + else: + mprint('No calibrated and splitted uv-data for '+source[0],logfile) + + if os.path.exists(outname[0]+'/'+fitname): + os.popen(r'rm '+outname[0]+'/'+fitname) + if os.path.exists(fitname): + os.popen(r'mv '+fitname+' '+outname[0]+'/') + +def run_split(indata, source, outclass, doband, bpver): + + channels = indata.header['naxis'][2] + if channels==16: + bad=1 # remove 1 channel from each side + elif channels==32: + bad=2 # remove 2 channels from each side + elif channels==64: + bad=4 # remove 2 channels from each side + elif channels==128: + bad=6 # remove 6 channels from each side + elif channels==256: + bad=8 # remove 8 channels from each side + elif channels==512: + bad=10 # remove 10 channels from each side + elif channels==1024: + bad=12 # remove 12 channels from each side + else: + bad=0 + + [bchan,echan]=[1+bad,channels-bad] + + print 'Averaging channels '+str(bchan)+' - '+str(echan)+'.' + + target = findtarget(indata, source) + if isinstance(target, str): + target=[target] + + if target!=[]: + for source in target: + split_data=AIPSUVData(source,outclass,indata.disk,1) + if split_data.exists(): + split_data.clrstat() + split_data.zap() + + split = AIPSTask('SPLIT') + split.indata = indata + split.bchan = bchan + split.echan = echan + split.docalib = 1 + split.flagver = 0 + split.source[1:] = target + split.outclass = outclass + split.aparm[1:] = [3,0] + split.aparm[6] = 1 + split.outdisk = indata.disk + split.doband = doband + split.bpver = bpver + split.smooth[1:] = smooth + #split.input() + split() +def run_split3(indata, target, outclass, doband, bpver, gainuse, avg, fittp): + split = AIPSTask('SPLIT') + split.indata = indata + if gainuse <= 0: + split.docalib = -1 + else: + split.docalib = 1 + split.gainuse = gainuse + split.flagver = 0 + targets=target + if isinstance(target, str): + split.source[1:] = [target] + targets=[targets] + else: + split.source[1:] = target + split.outclass = outclass + #split.outname = parm not there + if avg == 0: + split.aparm[1:] = [0] + elif avg == 1: + split.aparm[1:] = [2,2,0] + elif avg == 2: + split.aparm[1:] = [3,2,0] + #split.aparm[6] = 1 + split.outdisk = indata.disk + split.doband = doband + split.bpver = bpver + split.smooth[1:] = smooth + split.input() + split() + splt_data=AIPSUVData(target,outclass,indata.disk,split_seq) + # if uvfix_data.exists(): +# print 'Clear old uvfix data' +# splt_data.clrstat() +# splt_data.zap() + if fittp == 1: + fittp = AIPSTask('FITTP') + fittp.indata = splt_data + fitname=fittp.inname+'_'+fittp.inclass+'_'+str(int(fittp.inseq))+'.splt' + fittp.dataout = 'PWD:'+fitname + + if splt_data.exists(): + mprint('Writing out calibrated and splitted uv-data for '+targets[0],logfile) + fittp.go() + else: + mprint('No calibrated and splitted uv-data for '+targets[0],logfile) + if os.path.exists(outname[0]+'/'+fitname): + os.popen(r'rm '+outname[0]+'/'+fitname) + if os.path.exists(fitname): + os.popen(r'mv '+fitname+' '+outname[0]+'/') + + +def run_uvfix(indata,rash,decsh,outclass): + uvfix = AIPSTask('UVFIX') + uvfix.indata = indata + uvfix.shift[1] = rash + uvfix.shift[2] = decsh + uvfix.outclass = outclass + uvfix() + +def run_fittp_data(source, outcl, disk,logfile): + fittp = AIPSTask('FITTP') + data = AIPSUVData(source, outcl, disk, 1) + fittp.indata = data + if os.path.exists(fittp.inname+'.'+fittp.inclass+'.fits'): + os.popen(r'rm '+fittp.inname+'.'+fittp.inclass+'.fits') + fittp.dataout = 'PWD:'+fittp.inname+'.'+fittp.inclass+'.fits' + + if data.exists(): + mprint('Writing out calibrated and splitted uv-data for '+source,logfile) + fittp.go() + else: + mprint('No calibrated and splitted uv-data for '+source,logfile) + +#zyk++chk +def chk_sn_cl(indata,snchk,clchk,source_chk,cl_trange,bpv): + if bpv == 0: + doband = -1 + else: + doband = 1 + #runsnplt(pr_data,inver=snchk,inex='SN',sources=source_chk,optype='DELA',nplot=4,timer=[]) + #runsnplt(pr_data,inver=snchk,inex='SN',sources=source_chk,optype='RATE',nplot=4,timer=[]) + possmplot(pr_data,sources=source_chk,timer=chk_trange,gainuse=clchk,flagver=flagver,stokes='HALF',nplot=9,bpv=bpv,ant_use=[0],cr=1) + + + +def run_grid(indata, source, cellsize, imsize, n, m, grid_offset,uvwtfn, robust,beam): + + grid=[] + if n%2!=0: + for i in range(n): + if m%2!=0: + for j in range(m): + grid.append([i-n/2,j-m/2]) + + for shift in grid: + shift_pos(indata, source, shift[0]*grid_offset, shift[1]*grid_offset, 8, 9) + + channels = indata.header['naxis'][2] + if channels==16: + bad=1 # remove 1 channel from each side + elif channels==32: + bad=2 # remove 2 channels from each side + elif channels==64: + bad=4 # remove 2 channels from each side + elif channels==128: + bad=6 # remove 6 channels from each side + elif channels==256: + bad=8 # remove 8 channels from each side + elif channels==512: + bad=10 # remove 10 channels from each side + elif channels==1024: + bad=12 # remove 12 channels from each side + else: + bad=0 + + [bchan,echan]=[1+bad,channels-bad] + + split_data=AIPSUVData(source,'GRIDS',indata.disk,1) + if split_data.exists(): + split_data.clrstat() + split_data.zap() + + split = AIPSTask('SPLIT') + split.indata = indata + split.bchan = bchan + split.echan = echan + split.docalib = 1 + split.flagver = 0 + split.source[1:] = [source] + split.outclass = 'GRIDS' + split.aparm[1:] = [3,0] + split.aparm[6] = 1 + split.outdisk = indata.disk + split() + + print 'Imaging '+str(shift[0])+' '+str(shift[1]) + rungridimagr(split_data, source, 10, cellsize, imsize, -1,uvwtfn,robust,beam) + split_data.zap() + + restore_su(indata, logfile) + check_sncl(indata, 4, 8,logfile) + +def run_masplit(indata, source, outclass, doband, bpver, smooth, channel): + source = findcal(indata, source) + if isinstance(source, str): + source=[source] + + if source!=[]: + for target in source: + split_data=AIPSUVData(target,outclass,indata.disk,1) + if split_data.exists(): + split_data.clrstat() + split_data.zap() + + split = AIPSTask('SPLIT') + split.indata = indata + split.bchan = 0 + split.echan = 0 + split.flagver = 0 + split.docalib = 1 + split.source[1:] = source + split.outclass = outclass + split.aparm[1:] = [0,0] + split.aparm[6] = 1 + split.outdisk = indata.disk + split.doband = doband + split.bpver = bpver + split.smooth[1:] = smooth + split() + +############################################################################## +# phase_selfcal + +def phase_selfcal(indata, source, solint, outdisk, niter, cellsize, imsize, + logfile, imna, cal_ants, im_ants, refant, startmod, beam): + + mprint('#############################################################',logfile) + mprint('### Phase Self-cal on: '+source+(35-len(source))*' '+'###',logfile) + + if imna=='': + outname = source + else: + outname = source[:11-len(imna)]+'-'+imna + nimage = 1 + while AIPSImage(outname,'ICL001',line_data.disk, nimage+1).exists(): + nimage+=1 + + model = AIPSImage(outname,'ICL001',line_data.disk, nimage) + + + if (indata.table_highver('AIPS SN'))>0: + while indata.table_highver('AIPS SN')>0: + indata.zap_table('AIPS SN', 0) + + if (indata.table_highver('AIPS NX'))>0: + while indata.table_highver('AIPS NX')>0: + indata.zap_table('AIPS NX', 0) + + calib = AIPSTask('CALIB') + calib.indata = indata + calib.calsour[1:] = [source] + calib.aparm[1:] = [0,0,1,0,1,0] + calib.soltype = 'L1R' + calib.solmode = 'P' + calib.solint = solint + calib.outdisk = outdisk + calib.outname = outname + calib.refant = refant + calib.antennas[1:] = cal_ants + + if model.exists(): + calib.in2data = model + mprint('### Using Model: '+str(model)+'###', logfile) + mprint('### Solint = '+str(int(solint*60))+' seconds ###', logfile) + mprint('#############################################################' + ,logfile) + xpixel = model.header['naxis'][0] + ypixel = model.header['naxis'][1] + + ccedt = AIPSTask('CCEDT') + ccedt.indata = model + ccedt.nboxes = 1 + ccedt.clbox[1][1:] = [1,1,xpixel,ypixel] + ccedt.cutoff = -2*model.header['datamin'] + ccedt() + + calib() + elif startmod.exists(): + calib.in2data = startmod + mprint('### Using input model '+calib.in2name+'.'+calib.in2class+'.'+str(int(calib.in2seq))+' on diks '+str(int(calib.in2disk))+' ###', logfile) + calib() + else: + mprint('### Using Point source model ###' + , logfile) + mprint('### Solint = '+str(int(solint*60))+' seconds ###', logfile) + mprint('#############################################################' + ,logfile) + calib.smodel[1:] = [1,0] + calib() + + ncal = 1 + while AIPSUVData(outname,'CALIB',line_data.disk,ncal+1).exists(): + ncal+=1 + cal_data=AIPSUVData(outname,'CALIB',line_data.disk,ncal) + runimagr(cal_data, source, niter, cellsize, imsize, -1, imna, im_ants,uvwtfn, robust,beam) + + return cal_data + + +############################################################################## +# amp_selfcal + +def amp_selfcal(indata, source, solint, outdisk, niter, cellsize, + imsize, logfile, imna, antennas, refant, dofit,beam): + + mprint('#############################################################',logfile) + ants='' + for j in range(len(dofit)): + if dofit[j]!=0: + if j!=len(dofit): + ants=ants+str(get_ant(indata)[entry])+', ' + else: + ants=ants+str(get_ant(indata)[entry]) + mprint('### Ampl. Self-cal on: '+source+(35-len(source))*' '+'###',logfile) + mprint('### Using dofit = '+str(dofit)+' ('+str(ants)+') ###',logfile) + + if imna=='': + outname = source + else: + outname = source[:11-len(imna)]+'-'+imna + nimage = 1 + while AIPSImage(outname,'ICL001',line_data.disk, nimage+1).exists(): + nimage+=1 + + model = AIPSImage(outname,'ICL001',line_data.disk, nimage) + + if (indata.table_highver('AIPS SN'))>0: + while indata.table_highver('AIPS SN')>0: + indata.zap_table('AIPS SN', 0) + + if (indata.table_highver('AIPS NX'))>0: + while indata.table_highver('AIPS NX')>0: + indata.zap_table('AIPS NX', 0) + + calib = AIPSTask('CALIB') + calib.indata = indata + calib.calsour[1:] = [source] + calib.aparm[1:] = [0,0,1,0,1,0] + calib.soltype = 'L1R' + calib.solmode = 'A&P' + calib.dofit[1:] = dofit + calib.solint = solint + calib.outdisk = outdisk + calib.outname = outname + calib.refant = refant + calib.cparm[2] = 1 + + if model.exists(): + calib.in2data = model + mprint('### Using Model: '+str(model)+'###', logfile) + mprint('### Solint = '+str(int(solint*60))+' seconds ###', logfile) + mprint('#############################################################' + ,logfile) + xpixel = model.header['naxis'][0] + ypixel = model.header['naxis'][1] + + ccedt = AIPSTask('CCEDT') + ccedt.indata = model + ccedt.nboxes = 1 + ccedt.clbox[1][1:] = [1,1,xpixel,ypixel] + ccedt.cutoff = -2.0*model.header['datamin'] + ccedt() + + calib() + else: + mprint('### Using Point source model ###' + , logfile) + mprint('### Solint = '+str(int(solint*60))+' seconds ###', logfile) + mprint('#############################################################' + ,logfile) + calib.smodel[1:] = [1,0] + calib() + + ncal = 1 + while AIPSUVData(outname,'CALIB',line_data.disk,ncal+1).exists(): + ncal+=1 + cal_data=AIPSUVData(outname,'CALIB',line_data.disk,ncal) + runimagr(cal_data, source, niter, cellsize, imsize, -1, imna, antennas,uvwtfn,robust,beam) + + return cal_data + + +############################################################################## +# apply_selfcal + +def do_apply_selfcal(source,calsource,split_outcl,outdisk,refant): + + single_data = AIPSUVData(source,split_outcl,outdisk,0) + + multi = AIPSTask('MULTI') + multi.indata = single_data + multi.outclass = split_outcl + multi.outseq = 2 + multi() + + multi_data = AIPSUVData(source,split_outcl,outdisk,2) + + cal_data = AIPSUVData(calsource,split_outcl,outdisk,1) + + tacop = AIPSTask('TACOP') + tacop.indata = cal_data + tacop.outdata = multi_data + tacop.inext = 'SN' + tacop.inver = 0 + if source==calsource: pass + else: tacop() + + runclcal(multi_data,1,1,2,'',1,refant) + + ncal = 0 + while AIPSUVData(calsource,'CALIB',outdisk,ncal+2).exists(): + ncal+=1 + cal_data=AIPSUVData(calsource,'CALIB',outdisk,ncal) + tacop.indata = cal_data + tacop() + runclcal(multi_data,ncal+1,ncal+1,ncal+2,'',1,refant) + +################################################################################ +# Extract line name from a uvdata +# +def get_line_name(indata): + freq = get_center_freq(indata)/1e9 + if freq>12 and freq<13: + restfreq = [1.2178E+10,597000] + linename='CH3OH_12GHz' + print 'Assuming 12.2 GHz methanol maser.' + elif freq>22 and freq<23: + restfreq = [2.2235E+10,80000] + linename='H2O' + print 'Assuming 22.2 GHz water maser.' + elif freq>6 and freq<7: + restfreq = [6.668e+09, 519200] + linename='CH3OH_6.7GHz' + print 'Assuming 6.7 GHz methanol maser.' + elif freq>43.1 and freq<43.2: + restfreq = [43.122e+09,80000] + linename='SiO_43.1GHz' + print 'Assuming 43.122 GHz SiO maser.' + else: + print 'Unknown maser line.' + exit() + + return (linename, restfreq) + + + + +############################################################################## +# run possm to make an ampscalar spectrum using only the inner-5 antennae +# +def runrpossm(indata, cvelsource, tv, interflag,antennas): + + indata.zap_table('PL', -1) + + if indata.table_highver('AIPS SN') ==0: + docal=0 + else: + docal=1 + + if interflag==1: +# nchvel = input('Enter 1 for vel or 2 for ch: ') +# chvel_str=['vel','ch'] +# chvel=chvel_str[nchvel-1] + chvel='vel' + + if indata.header['naxis'][3]>1: + bif = input('Enter IF: ') + eif = bif + else: + eif=1 + bif=1 + + possm = AIPSTask('POSSM') + possm.indata = indata + #possm.source[1:] = cvelsource[0] + possm.source[1:] = cvelsource + #possm.antenna[1:] = [2,4,5,8,9] + possm.antenna[1:] = antennas + possm.stokes = 'I' + possm.docal = docal + possm.gainuse = 0 + possm.nplots = 0 + possm.bchan = 1 + possm.echan = 0 + possm.bif = bif + possm.eif = eif + possm.aparm[8] = 0 + possm.aparm[1] = -1 + possm.codetype = 'AMP' + if AIPSTV.AIPSTV().exists(): + possm.dotv = 1 + gv_flag = 0 + else: + possm.dotv = -1 + gv_flag = 1 + possm() + + bchan = input('Enter bchan: ') + echan = input('Enter echan: ') + + else: + chvel ='vel' + bchan = 0 + echan = 0 + bif = 1 + eif = 1 + + + if bchan==echan and echan!=0: + print 'Only one channel selected.' + + elif bchan>echan: + print 'bchan > echan' + + else: + possm = AIPSTask('POSSM') + possm.indata = indata + #possm.source[1:] = cvelsource[0] + possm.source[1:] = cvelsource + #possm.antenna[1:] = [2,4,5,8,9] + possm.antenna[1:] = [3,4,7,8] + possm.stokes = 'I' + possm.docal = docal + possm.gainuse = 0 + possm.nplots = 0 + possm.bchan = bchan + possm.echan = echan + possm.bif = bif + possm.eif = eif + possm.aparm[8] = 0 + possm.aparm[1] = -1 + possm.codetype = 'AMP' + + (linename,restfreq) = get_line_name(indata) + +#--- x-axis labeled with channel number + if chvel == 'ch': + if bchan==0 and echan==0: + spectfile='PWD:'+cvelsource[0]+'.'+linename+'.spectrum.txt' + filename=cvelsource[0]+'.'+linename+'.POSSM.ps' + else: + spectfile ='' + filename=cvelsource[0]+'.'+linename+'.POSSM_CH'+str(bchan)+'-'+str(echan)+'.ps' + + if gv_flag == 0: + possm.dotv = -1 + possm.outtext = spectfile + possm() + + if os.path.exists(filename): + os.popen('rm '+filename) + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.inver = 0 + lwpla.outfile = 'PWD:'+filename + lwpla() + +#--- x-axis labeled with velocity + if chvel == 'vel': + possm.aparm[7] = 2 + possm.aparm[10] = 1 + possm.dotv = -1 + possm() + + filename=cvelsource[0]+'.'+linename+'.POSSM.ps' + + if os.path.exists(filename): + os.popen('rm '+filename) + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.inver = 0 + lwpla.outfile = 'PWD:'+filename + lwpla() + os.popen(r'ps2pdf '+filename) + + indata.zap_table('PL', -1) + #os.popen('gv '+filename) + + +############################################################################### +# Get peak and rms from an image +# +def runimean(imgdata, blc=[0,0,0], trc=[0,0,0]): + '''Must set imgdata''' + if os.path.exists('imean.txt'): + os.popen('rm imean.txt') + imean = AIPSTask('imean') + imean.indata = imgdata + imean.blc[1:] = blc + imean.trc[1:] = trc + if int(aipsver[6])>1: + imean.doprint = 1 + imean.outtext = 'PWD:imean.txt' + imean() + #datamax = imgdata.header.datamax + datamax = get_image_peak() + return (datamax, imean.pixstd) + +############################################################################## +# +def get_image_peak(idir='./'): + infile = idir+"imean.txt" + if os.path.exists(infile): + myfile = open(infile) + + for line in myfile.readlines(): + strtmp = 'Maximum' + if cmp(strtmp,line[0:7]) == 0: + peak = line[9:20] + myfile.close() + + peak=float(peak) + return peak + else: + print('###--- '+infile) + print('###--- Input file dose not exsit') + +################################################################################ +# run SAD for maser source +# +def run_ma_sad(inimg,indata,cut,dyna): + if inimg.exists(): + inimg.clrstat() + num_ch = inimg.header.naxis[3-1] + srcname = inimg.name + obs=inimg.header['observer']; + date_obs=inimg.header['date_obs'] + (linename,restfreq) = get_line_name(indata) + for line in inimg.history: + if line[0:11] == 'IMAGR BCHAN': + bchan = int(line[15:22]) + if line[0:11] == 'IMAGR ECHAN': + echan = int(line[15:22]) + break + + bch_str = str(bchan+1000) + bch_str = bch_str[1:4] + ech_str = str(echan+1000) + ech_str = ech_str[1:4] + + sad_file = srcname+'_'+linename+'_'+obs+'_'+\ + date_obs+'_CH'+bch_str+'-'+ech_str+'_sad.txt' + if os.path.exists(sad_file): + os.popen('rm '+sad_file) + if os.path.exists('sad.txt'): + os.popen('rm sad.txt') + + sad = AIPSTask('SAD') + sad.indata = inimg + sad.doresid = -1 + sad.ngauss = 3 + #--- for weak source, we may need to increase gain + sad.gain = 0.3 + sad.sort = 'S' + sad.docrt = -4 + sad.fitout = 'PWD:'+'sad.txt' + mpeak=[] + mrms=[] + for i in range(1,num_ch+1): + (peak, rms) = runimean(inimg,[0,0,i],[0,0,i]) + mpeak.append(peak) + mrms.append(rms) + + c1 = peak*0.5 + c3 = max(rms*cut,peak*dyna) + c2 = (c1 + c3)*0.5 + + d1 = c3 + d2 = c3 + d3 = 0 +#--- pixel (depended on the compactness) +#--- cellsize = 0.1 mas, then 40 means 4 mas + d4 = 40 + d5 = 40 + cparm=[c1,c2,c3] + cparm.sort() + cparm.reverse() + sad.cparm[1:] = cparm + sad.icut = c3 + sad.dparm[1:] = [d1,d2,d3,d4,d5] + sad.blc[3] = i + sad.trc[3] = i + if peak>rms*cut: + sad() + + cmd='cp sad.txt '+sad_file + os.popen(cmd) + mprint ('Channel: Peak rms SNR',logfile) + mprint (' (Jy) (Jy)',logfile) + mprint ('---------------------------------',logfile) + for i in range(len(mpeak)): + mprint(('%3d %7.4f %7.4f %8.4f' % (i+bchan-1, + mpeak[i], mrms[i], mpeak[i]/mrms[i])),logfile) + else: + print 'Image does not exist, please check it.' + exit() + +def orfit_to_plot_sorted(inimg,indata,bchan,vel): + f=open('sad.txt') + content=f.readlines() + f.close() + + nif = indata.header['naxis'][3] + altrval = inimg.header['altrval'] + altrpix = inimg.header['altrpix'] + + srcname = inimg.name + obs=inimg.header['observer']; + date_obs=inimg.header['date_obs'] + (linename,restfreq) = get_line_name(indata) + + cvelsource=inimg.name + (vel2, restfreq, nchan, res, spacing) = get_velocity(line_data,cvelsource) + + BW = indata.header['cdelt'][2] + channum = indata.header['naxis'][2] + n_center = (channum/2.) + 1 + dV = -spacing/1000 + vel2 = inimg.header['altrval'] + + sinfo={} + ichan0 = bchan + for entry in content: + if entry[0]=='!': + pass + else: + name=entry.split()[0] + sname=entry[0:10].strip() +# schan=(int(entry[12:16].strip()))+ichan0-1 + schan=(int(entry[12:16].strip()))-altrpix+1 + sffla=entry[31] + if sffla==' ': + factor=1 + elif sffla=='m': + factor=0.001 + else: + factor=1000 + sflux=(float(entry[16:24].strip())*factor) + sfler=(float(entry[24:31].strip())*factor) + sraof=(float(entry[32:44].strip())/1000) + sraer=(float(entry[44:52].strip())/1000) + sdeof=(float(entry[52:64].strip())/1000) + sdeer=(float(entry[64:72].strip())/1000) + srera=(entry[73:84].strip()) + srede=(entry[84:96].strip()) +# svelo=vel[0]+(schan-n_center)*dV + svelo=(vel2-(schan-1)*spacing)/1000 + sinfo[sflux]=[schan,sfler,svelo,sraof,sraer,sdeof,sdeer] + + + filename = srcname+'.'+linename+'.spotmap.txt' + f2=open(filename,'w') + f2.writelines('! Results for '+obs+' '+srcname+' observations\n') + f2.writelines('! of '+str(round(restfreq/1e9,1))+' GHz '+linename + +' masers conducted on '+date_obs+'\n') + f2.writelines('! Reference position: '+srera+' '+srede+'\n') + f2.writelines('! Channel Vlsr S_peak dX +-'+ + ' dY +-\n') + f2.writelines('! # (km/s) (Jy/bm) (") (")'+ + ' (") (")\n') + + order=sorted(sinfo) + order.reverse() + for i in order: +# print ' %4i %6.2f %6.2f %10.6f %10.6f %10.6f %10.6f' % (sinfo[i][0],sinfo[i][2],i,sinfo[i][3],sinfo[i][4],sinfo[i][5],sinfo[i][6]) + f2.writelines(' %4i %6.2f %6.2f %10.6f %10.6f %10.6f %10.6f\n' % (sinfo[i][0],sinfo[i][2],i,sinfo[i][3],sinfo[i][4],sinfo[i][5],sinfo[i][6])) + + f2.close() + + + +def orfit_to_plot_sorted2(inimg,indata): + f=open('sad.txt') + content=f.readlines() + f.close() + + srcname = inimg.name + obs=inimg.header['observer']; + date_obs=inimg.header['date_obs'] + (linename,restfreq) = get_line_name(indata) + + cvelsource=inimg.name + (vel, restfreq, nchan, res, spacing) = get_velocity(line_data,cvelsource) + + altrval=inimg.header['altrval'] + altrpix = inimg.header['altrpix'] + + n_center = (nchan/2.) + 1 + dV = -spacing + + sinfo={} + for entry in content: + if entry[0]=='!': + pass + else: + name=entry.split()[0] + sname=entry[0:10].strip() + schan=(int(entry[12:16].strip()))-altrpix+1 + sffla=entry[31] + if sffla==' ': + factor=1 + elif sffla=='m': + factor=0.001 + else: + factor=1000 + sflux=(float(entry[16:24].strip())*factor) + sfler=(float(entry[24:31].strip())*factor) + sraof=(float(entry[32:44].strip())/1000) + sraer=(float(entry[44:52].strip())/1000) + sdeof=(float(entry[52:64].strip())/1000) + sdeer=(float(entry[64:72].strip())/1000) + srera=(entry[73:84].strip()) + srede=(entry[84:96].strip()) + svelo=(altrval+(schan-1)*dV)/1000 + sinfo[sflux]=[schan,sfler,svelo,sraof,sraer,sdeof,sdeer] + + + + filename = srcname+'.'+linename+'.spotmap.txt' + f2=open(filename,'w') + f2.writelines('! Results for '+obs+' '+srcname+' observations\n') + f2.writelines('! of '+str(round(restfreq/1e9,1))+' GHz '+linename + +' masers conducted on '+date_obs+'\n') + f2.writelines('! Reference position: '+srera+' '+srede+'\n') + f2.writelines('! Channel Vlsr S_peak dX +-'+ + ' dY +-\n') + f2.writelines('! # (km/s) (Jy/bm) (") (")'+ + ' (") (")\n') + + order=sorted(sinfo) + order.reverse() + for i in order: +# print ' %4i %6.2f %6.2f %10.6f %10.6f %10.6f %10.6f' % (sinfo[i][0],sinfo[i][2],i,sinfo[i][3],sinfo[i][4],sinfo[i][5],sinfo[i][6]) + f2.writelines(' %4i %6.2f %6.2f %10.6f %10.6f %10.6f %10.6f\n' % (sinfo[i][0],sinfo[i][2],i,sinfo[i][3],sinfo[i][4],sinfo[i][5],sinfo[i][6])) + + f2.close() + + + +def plot_spot_map(inimg,indata): + srcname = inimg.name + obs=inimg.header['observer'] + xsize=abs(inimg.header['naxis'][0]*inimg.header['cdelt'][0])*3600 + ysize=inimg.header['naxis'][1]*inimg.header['cdelt'][1]*3600 + date_obs=inimg.header['date_obs'] + (linename,restfreq) = get_line_name(indata) + filename = srcname+'.'+linename+'.spotmap.txt' + f=open(filename) + content=f.readlines() + f.close() + x=[] + y=[] + z=[] + f=[] + f_max=0 + n_poi=0 + for entry in content: + if entry[0]=='!': + pass + else: + n_poi+=1 + x_off = float(entry.split()[3]) + y_off = float(entry.split()[5]) + if abs(x_off)<0.48*xsize and abs(y_off)<0.48*ysize: + x.append(x_off) + y.append(y_off) + z.append(float(entry.split()[1])) + flux=float(entry.split()[2]) + f.append(flux**0.5) + if float(entry.split()[2])>f_max: + f_max=float(entry.split()[2]) + min_x=min(x) + max_x=max(x) + dx=max_x-min_x + min_y=min(y) + max_y=max(y) + size=max(max_y-min_y,max_x-min_x,0.2)/2 + x_cent = (max_x+min_x)/2 + y_cent = (max_y+min_y)/2 + dy=max_y-min_y + f2=array(f) + scale = 300/max(f2) + f1=figure() + + ra,dec= deg_to_radec([inimg.header['crval'][0],inimg.header['crval'][1]]) + title(srcname+' '+linename+' on '+date_obs+'\n (0,0)='+ra+','+ + dec+' (J2000)') + ax=axes() + s=ax.scatter(x,y,c=z,s=f2*scale,marker='o',edgecolors='') + ax.scatter(x_cent+1.05*size,y_cent-1.15*size,c='0.8',s=max(f2)*scale) + cb = plt.colorbar(s) + cb.set_label('v$_{LSR}$ [km s$^{-1}$]') + xlabel('East Offset [arcseconds]') + ylabel('North Offset [arcseconds]') + ax.set_xlim(x_cent+1.2*size,x_cent-1.2*size) + ax.set_ylim(y_cent-1.3*size,y_cent+1.1*size) + xy=(x_cent+0.93*size,y_cent-1.17*size) + ax.annotate('= '+str(round(f_max,1))+ + ' Jy bm$^{-1}$', xy, xytext=None, xycoords='data', + textcoords='data', arrowprops=None, + bbox=dict(boxstyle="round", fc="0.8"),) + draw() + imname = srcname+'.'+linename+'.spotmap.ps' +# show() + savefig(imname) + os.popen('ps2pdf '+imname) + +def deg_to_radec(pos): + if pos[0]<0: + pos[0]=360+pos[0] + ra_deg=pos[0]/15. + dec_deg=pos[1] + hour = int(ra_deg) + min = int(60*(ra_deg-hour)) + sec = (60*(60*(ra_deg-hour)-min)) + if abs(60-round(sec,5))<1e-5: + sec=0 + min+=1 + if min==60: + min=0 + hour+=1 + if hour<0: hour=hour+24 + if hour>=24: hour=hour-24 + hp='' + mp='' + sp='' + if hour<10: hp='0' + if min<10: mp='0' + if sec<10: sp='0' + ra=hp+str(hour)+':'+mp+str(min)+':'+sp+str(round(sec,5)) + deg = abs(int(dec_deg)) + amin = int(60*(abs(dec_deg)-deg)) + asec = (60*(60*(abs(dec_deg)-deg)-amin)) + if 60-abs(round(asec,4))<1e-4: + asec=0 + amin+=1 + if amin==60: + amin = 0 + deg+=1 + if dec_deg<0: + sign='-' + else: + sign='+' + dp='' + amp='' + asp='' + if deg<10: dp='0' + if amin<10: amp='0' + if asec<10: asp='0' + dec = sign+dp+str(abs(deg))+':'+amp+str(abs(amin))+':'+asp+str(round(abs(asec),4)) + return ra, dec + + + +############################################################################## +# check_cal + +def check_cal(indata, source, outdisk, logfile, imna): + if imna=='': + outname = source + else: + outname = source[:11-len(imna)]+'-'+imna + + ncal = 1 + while AIPSUVData(outname,'CALIB',line_data.disk,ncal+1).exists(): + ncal+=1 + cal_data=AIPSUVData(outname,'CALIB',line_data.disk,ncal) + if cal_data.exists(): + return cal_data + else: + return indata + +############################################################################## +# Get download options from mail + +def read_mail(mail_path, ou, op, of, inter_flag): + f=open(mail_path) + content=f.readlines() + f.close() + + users=[] + passs=[] + dates=[] + pubfiles=[] + date_pubfiles_nr={} + pubfile_nr=[] + k = 0 + kk = 0 + j = 0 + + for n in range(len(content)): + if 'From: VLA/VLBA' in content[n]: + j=j+1 + date=content[n-1].rstrip() + dates.append(date) + pfa = 'Public File available :' + if pfa in content[n] and (pfa in content[n-1])==False: + while pfa in content[n+kk]: + kk=kk+1 + k=k+1 + pubfile_nr.append(k) + date_pubfiles_nr[j]=pubfile_nr + pubfile_nr=[] + kk=0 + + + for entry in content: + if 'Proprietary File Dir :' in entry: + prop_dir = entry.split(' ')[4].rstrip() + elif 'Your access username, password :' in entry: + user = entry.split(' ')[5] + passw = entry.split(' ')[7].rstrip() + users.append(user) + passs.append(passw) + elif 'Public File available :' in entry: + user = 'nopass' + passw = '' + users.append(user) + passs.append(passw) + pubfiles.append(entry.split('/')[4].rstrip()) + + + if len(dates)>1: + print 'Found VLA/VLBA archive emails from:' + for i in range(len(dates)): + print str(i+1)+': '+dates[i] + + if inter_flag==1: + date_nr=input('Which one? (1-'+str(len(dates))+') ')-1 + if (date_nr in range(len(dates)))==False: + print 'No such date.' + sys.exit() + else: + date_nr=len(dates)-1 + + print 'Using: '+date + print '' + user=users[date_nr] + passw=passs[date_nr] + print user, passw + + + if user=='nopass': + file_names = [] + for entry in date_pubfiles_nr[date_nr+1]: + file_names.append(pubfiles[entry-1]) + else: + os.popen(r'wget --no-check-certificate --http-user '+user+ + ' --http-passwd '+passw+' -t45 -O files.txt'+ + ' https://archive.nrao.edu/secured/'+user+'/', 'w') + print ' https://archive.nrao.edu/secured/'+user+'/' + + f=open('files.txt') + content=f.read() + f.close() + + t=content.split('"') + file_names=[] + for entry in t: + if 'fits' in entry: + file_names.append(entry) + + os.popen(r'rm files.txt') + + print_download_options(user,passw, file_names) + + if inter_flag==1: + cont=raw_input('Use these filenames? (y/n) ') + if cont=='n' or cont=='N': + print 'Using other filenames:' + print_download_options(ou,op,of) + return ou, op, '', of, len(of) + + else: + return user, passw, prop_dir, file_names, len(file_names) + else: + return user, passw, prop_dir, file_names, len(file_names) + +def get_download_names(ou, op, of): + user=ou + passw=op + if user=='nopass': + file_names = [] + file_sizes = [] + for entry in date_pubfiles_nr[date_nr+1]: + file_names.append(pubfiles[entry-1]) + file_sizes.append('') + else: + os.popen(r'wget --no-check-certificate --http-user '+user+ + ' --http-passwd '+passw+' -t45 -O files.txt'+ + ' https://archive.nrao.edu/secured/'+user+'/', 'w') + + f=open('files.txt') + content=f.read() + f.close() + + t=content.split('"') + t=content.split('\n') + file_names=[] + file_sizes=[] + for entry in t: + if 'fits' in entry: + t2=entry.split('"') + file_names.append(t2[1]) + file_sizes.append(entry[-8:]) + os.popen(r'rm files.txt') + + if inter_flag==1 and of[0]==0: + print_download_options(user,passw, file_names,file_sizes) + cont=raw_input('Use these filenames? (y/n) ') + if cont=='n' or cont=='N': + order=[] + for i in range(0,len(file_names)): + entry = file_names[i] + print entry,file_sizes[i] + cont=raw_input('File number? ') + if int(cont)>len(file_names)-1: + print 'Only Number 0 to '+str(len(file_names)-1)+' allowed.' + cont=raw_input('File number? ') + order.append(cont) + + + new_file_names=range(0,len(file_names)) + for i in range(0,len(file_names)): + new_file_names[int(order[i])]=file_names[i] + file_names = new_file_names + print_download_options(user,passw,file_names,file_sizes) + return file_names, len(file_names) + + else: + return file_names, len(file_names) + + elif inter_flag==1 and of[0]!=0: + print_download_options(user,passw, of, file_sizes) + cont=raw_input('Use these filenames? (y/n) ') + if cont=='n' or cont=='N': + order=[] + for entry in file_names: + print entry + cont=raw_input('File number? ') + if int(cont)>len(file_names)-1: + print 'Only Number 0 to '+str(len(file_names)-1)+' allowed.' + cont=raw_input('File number? ') + order.append(cont) + + new_file_names=range(0,len(file_names)) + for i in range(0,len(file_names)): + new_file_names[int(order[i])]=file_names[i] + file_names = new_file_names + print_download_options(user,passw,file_names, file_sizes) + return file_names, len(file_names) + + else: + return of, len(of) + + else: + if of[0]!=0: + print_download_options(ou,op,of,file_sizes) + return of, len(of) + else: + print_download_options(user,passw, file_names,file_sizes) + return file_names, len(file_names) + + + +def print_download_options(user,passw,file_names,file_sizes): + print ' file = range(n)' + print ' arch_user = \''+user+'\'' + print ' arch_pass = \''+passw+'\'' + print '' + + n=0 + for i in range(0,len(file_names)): + print ' file['+str(n)+'] = \''+file_names[i]+'\' ('+file_sizes[i]+')' + n=n+1 + print '' + +def check_data(data, n, geo, cont, line, logfile): + count = 0 + for i in range(len(data)): + if data[i].exists(): + count=count+1 + data_info(data[i],i, geo, cont, line, logfile) + if count==n: mprint('Found '+str(count)+' data files on disk.',logfile) + else: mprint('Expected '+str(n)+' files, but found '+str(count)+' data files on disk.',logfile) + +def data_info(indata, i, geo, cont, line, logfile): + if indata.exists(): + frq=get_center_freq(indata)/1e9 + if frq>1.3 and frq< 1.8: band='L' + elif frq>2.1 and frq<2.4: band='S' + elif frq>4.5 and frq<8: + if check_sx(indata, logfile): band='S/X' + else: band='C' + elif frq>8.0 and frq<10.0: band='X' + elif frq>11.5 and frq<16.0: band='U' + elif frq>21.5 and frq<24.5: band='K' + elif frq>40.5 and frq<45.5: band='Q' + else: + band='unknown' + if i==geo: add = ' (geoblock data)' + elif i==cont and i!=line: add = ' (continuum data)' + elif i==line and i!=cont: add = ' (line data)' + elif i==line and i==cont: add = ' (line or continuum data)' + else: add = ' (data not used)' + naxis = indata.header['naxis'] + mprint('File '+str(i)+': '+indata.name+' '+band+' band, '+str(naxis[1]) + +' Stokes, '+str(naxis[2])+' channels '+str(naxis[3]) + +' IFs'+add, logfile) + return band, naxis[1], naxis[2], naxis[3] + +# END defs +############################################################################## + + +############################################################################# +#### Do not change beyond this line unless you know what you are doing! #### +############################################################################# + +AIPS.log = open(logfile, 'a') + +mprint('#############################################',logfile) +mprint('### Using definition file from '+version_date+' ###',logfile) +mprint('### Using AIPS Version '+aipsver+(19-len(aipsver))*' '+'###', logfile) +mprint('#############################################',logfile) + +try: debug = debug +except: debug = 0 + +try: + if inter_flag==0: + print 'Running in non-interactive mode.' + else: + print 'Running in interactive mode.' +except: + inter_flag=1 + print 'Running in interactive mode.' + +try: + if split_outcl=='': + split_outcl = 'SPLIT' + else: + if len(split_outcl)>6: + split_outcl=split_outcl[0:6] + mprint('################################################',logfile) + mprint('split_outcl longer than 6 characters. Truncating',logfile) + mprint('it to: '+split_outcl, logfile) + mprint('################################################',logfile) +except: + split_outcl = 'SPLIT' + +############################################################################## +##### Set default parameters, if not set ##### +############################################################################## +if 'ld_fr2_fringe_flag' in locals() and globals(): pass +else: ld_fr2_fringe_flag = 0 +if 'resi_phcal_flag' in locals() and globals(): pass +else: resi_phcal_flag = 0 +if 'sn_rotate_flag' in locals() and globals(): pass +else: sn_rotate_flag = 0 +if 'app_rotate_flag' in locals() and globals(): pass +else: app_rotate_flag = 0 +if 'splt_3_flag' in locals() and globals(): pass +else: splt_3_flag = 0 +if 'ld_fr_fringe_flag' in locals() and globals(): pass +else:ld_fr_fringe_flag = 0 +if 'do_fr_fringe_flag' in locals() and globals(): pass +else:do_fr_fringe_flag = 0 +if 'do_calib_1_flag' in locals() and globals(): pass +else:do_calib_1_flag = 0 +if 'check_delay_rate' in locals() and globals(): pass +else:check_delay_rate = 0 +if 'split_2_flag' in locals() and globals(): pass +else:split_2_flag = 0 +if 'do_uvshift_flag' in locals() and globals(): pass +else:do_uvshift_flag = 0 +if 'first_cal_flag' in locals() and globals(): pass +else:first_cal_flag = 0 +if 'new_amp_flag' in locals() and globals(): pass +else:new_amp_flag = 0 +if 'apcal_flag' in locals() and globals(): pass +else:apcal_flag = 0 +if 'pang_flag' in locals() and globals(): pass +else:pang_flag = 0 +if 'do_fringe_flag' in locals() and globals(): pass +else: do_fringe_flag = 0 +if 'plot_first_run' in locals() and globals(): pass +else:plot_first_run = 0 +if 'split_1_flag' in locals() and globals(): pass +else:split_1_flag = 0 + +if 'pr_fringe_flag' in locals() and globals(): pass +else:pr_fringe_flag = 0 +if 'delzn_flag' in locals() and globals(): pass +else: delzn_flag = 0 +if 'restore_fg_flag' in locals() and globals(): pass +else: restore_fg_flag = 0 +if 'restore_su_flag' in locals() and globals(): pass +else: restore_su_flag = 0 +if 'do_gaincor_flag' in locals() and globals(): pass +else: do_gaincor_flag = 0 +if 'split_flag' in locals() and globals(): pass +else: split_flag = 0 +if 'ma_imagr_flag' in locals() and globals(): pass +else: ma_imagr_flag=0 +if 'co_imagr_flag' in locals() and globals(): pass +else: co_imagr_flag = 0 +if 'cube_imagr_flag' in locals() and globals(): pass +else: cube_imagr_flag = 0 +if 'fr_nm' in locals() and globals(): pass +else: fr_nm = '' +if 'fr_cls' in locals() and globals(): pass +else: fr_cls = '' +if 'fr_dsk' in locals() and globals(): pass +else: fr_dsk = defdisk +if 'fr_sq' in locals() and globals(): pass +else: fr_sq = 1 +if 'nmaps' in locals() and globals(): pass +else: nmaps = 1 +if 'flux' in locals() and globals(): pass +else: flux = {'' : [0,0,0,0]} +if 'niter' in locals() and globals(): pass +else: niter = 100 +if 'grid_flag' in locals() and globals(): pass +else: grid_flag = 0 +if 'gridsource' in locals() and globals(): pass +else: gridsource = '' +if 'n_grid' in locals() and globals(): pass +else: n_grid = 0 +if 'm_grid' in locals() and globals(): pass +else: m_grid = 0 +if 'grid_offset' in locals() and globals(): pass +else: grid_offset = 0 +if 'dual_geo' in locals() and globals(): pass +else: dual_geo = 0 +if 'arch_user' in locals() and globals(): pass +else: arch_user = '' +if 'arch_pass' in locals() and globals(): pass +else: arch_pass = '' +if 'file' in locals() and globals(): pass +else: file = [] +if 'kntr_flag' in locals() and globals(): pass +else: kntr_flag = 0 +if 'fittp_flag' in locals() and globals(): pass +else: fittp_flag = 0 +if 'get_key_flag' in locals() and globals(): pass +else: get_key_flag = 0 +if 'code' in locals() and globals(): pass +else: code = '' +if 'max_ant' in locals() and globals(): pass +else: max_ant = 12 +if 'phase_cal_flag' in locals() and globals(): pass +else: phase_cal_flag = 0 +if 'amp_cal_flag' in locals() and globals(): pass +else: amp_cal_flag = 0 +if 'imna' in locals() and globals(): pass +else: imna = '' +if 'phase_target_flag' in locals() and globals(): pass +else: phase_target_flag='' +if 'amp_target_flag' in locals() and globals(): pass +else: amp_target_flag='' +if 'antennas' in locals() and globals(): pass +else: antennas = [0] +if 'refeed_flag' in locals() and globals(): pass +else: refeed_flag = 0 +if 'plot_tables' in locals() and globals(): pass +else: plot_tables = -1 +if 'dofit' in locals() and globals(): pass +else: dofit = [0] +if 'apply_selfcal' in locals() and globals(): pass +else: apply_selfcal = 0 +if 'tysmo_flag' in locals() and globals(): pass +else: tysmo_flag = 0 +if 'solint' in locals() and globals(): pass +else: solint = 0 +if 'smodel' in locals() and globals(): pass +else: smodel = [1,0] +if 'uvwtfn' in locals() and globals(): pass +else: uvwtfn = '' +if 'robust' in locals() and globals(): pass +else: robust = 0 +if 'bandcal' in locals() and globals(): pass +else: bandcal = [''] +if 'do_band_flag' in locals() and globals(): pass +else: do_band_flag = 0 +if 'dpfour' in locals() and globals(): pass +else: dpfour = 0 +if 'min_elv' in locals() and globals(): pass +else: min_elv = 0 +if 'rpossm_flag' in locals() and globals(): pass +else: rpossm_flag = 0 +if 'ma_sad_flag' in locals() and globals(): pass +else: ma_sad_flag = 0 +if 'plot_map' in locals() and globals(): pass +else: plot_map = 0 +if 'min_snr' in locals() and globals(): pass +else: min_snr = 7 +if 'smooth' in locals() and globals(): pass +else: smooth = [0] +if 'beam' in locals() and globals(): pass +else: beam = [0,0,0] +if 'RDBE_check_flag' in locals() and globals():pass +else: RDBE_check_flag = 0 +if 'TECU_model' in locals() and globals():pass +else: TECU_model = 'jplg' + +############################################################################## +# Start main script + +mprint('######################',logfile) +mprint(get_time(),logfile) +mprint('######################',logfile) + +refant_flag=0 +if refant==0: refant_flag=1 + + +if download_flag==1: + try: + if os.path.exists(mail_path): + (arch_user, arch_pass, prop_dir, file, m)=read_mail(mail_path, arch_user, arch_pass, file, inter_flag) + except: + if arch_user!='nopass': + (file,m)=get_download_names(arch_user, arch_pass, file) + + mprint('########################################',logfile) + mprint('Found '+str(m)+' files to download from archive.', logfile) + if mn: + mprint('Not what expected! Making '+str(m-n) + +' dummy files',logfile) + for i in range(m-n): + filename.append('Dummy'+str(i)) + outname.append('Dummy'+str(i)) + outclass.append('UVDATA') + nfiles.append(0) + ncount.append(1) + doconcat.append(-1) + flagfile.append('') + antabfile.append('') + outdisk.append(defdisk) + n=m + mprint('########################################',logfile) + elif arch_user=='nopass' and file[0]==0: + mprint('###########################################',logfile) + mprint('Need to specify filenames for public data.',logfile) + mprint('###########################################',logfile) + sys.exit() + + for i in range(n): + mprint('##################################',logfile) + mprint('Download file '+str(i)+' from archive.', logfile) + download(arch_user, arch_pass, file[i], file_path, filename[i]) + mprint(get_time(),logfile) + mprint('##################################',logfile) + +if load_flag==1: + + for i in range(n): + loadindx(file_path,filename[i],outname[i],outclass[i],outdisk[i], + nfiles[i],ncount[i],doconcat[i],antname,logfile) + +data = range(n) + +mprint('##################################',logfile) +for i in range(n): + data[i]=AIPSUVData(outname[i], outclass[i], int(outdisk[i]), int(1)) + if data[i].exists(): + data[i].clrstat() + if dtsum_flag==1: + rundtsum(data[i]) + if listr_flag==1: + runlistr(data[i]) + if get_key_flag==1 and antname == 'VLBA': + get_key_file(data[i], code) +mprint('##################################',logfile) + +########################### +# Data Preparation + +if geo_data_nr < 0: do_geo_block=0 +else: do_geo_block=1 + +pr_data_nr = [] + +if cont!=-1: + pr_data_nr.append(cont) + if line != cont: + pr_data_nr.append(line) + +check_data(data, n, geo_data_nr, cont, line, logfile) + +# Download TEC maps and EOPs + +if pr_prep_flag==1 or geo_prep_flag==1: + if do_geo_block==1: + (year, month, day)=get_observation_year_month_day(data[geo_data_nr]) + num_days=get_num_days(data[geo_data_nr]) + else: + (year, month, day)=get_observation_year_month_day(data[pr_data_nr[0]]) + num_days=get_num_days(data[pr_data_nr[0]]) + + doy=get_day_of_year(year, month, day) + get_TEC(year,doy,TECU_model,geo_path) + get_eop(geo_path) + + if num_days==2: get_TEC(year,doy+1,TECU_model,geo_path) + +mprint('######################',logfile) +mprint(get_time(),logfile) +mprint('######################',logfile) + + +###########################b######################################## +# Geodetic block analysis + +if RDBE_check_flag ==1: + blocks = check_RDBE(data[geo_data_nr],logfile,inter_flag,'GEO') + +if geo_prep_flag>0: + geo_data= data[geo_data_nr] + #runuvflg(geo_data,flagfile[geo_data_nr],logfile) + check_sncl(geo_data, 0, 1,logfile) + if geo_data.header['telescop']=='EVN': # only TECOR for EVN, no eops + if geo_prep_flag==1: + runTECOR(geo_data,year,doy,num_days,3,TECU_model) + elif geo_prep_flag==2:#skip tecr + runtacop(geo_data, geo_data, 'CL', 1, 3, 0) + else: + if geo_prep_flag==1: + runTECOR(geo_data,year,doy,num_days,2,TECU_model) + elif geo_prep_flag==2:#skip tecr + runtacop(geo_data, geo_data, 'CL', 1, 2, 0) + runeops(geo_data, geo_path) +''' + geo_data= data[geo_data_nr] + sx_geo = False + if check_sx(geo_data,logfile): + mprint('####################################',logfile) + mprint('Geoblock observation in SX mode',logfile) + mprint('####################################',logfile) + (geo_data_l, geo_data_h)=split_sx(geo_data, 1) + if dual_geo>0: + sx_geo = True + cw_geo = False + geo_data = geo_data_h + elif check_clh(geo_data,logfile): + mprint('#########################################',logfile) + mprint('Geoblock observation in wide C-band mode',logfile) + mprint('########################################',logfile) + (geo_data_l, geo_data_h)=split_clh(geo_data, 1) + if dual_geo>0: + sx_geo = True + cw_geo = True + geo_data = geo_data_h + +if do_geo_block==1: + geo_data= data[geo_data_nr] + sx_geo = False + if check_sx(geo_data,logfile): + mprint('####################################',logfile) + mprint('Geoblock observation in SX mode',logfile) + mprint('####################################',logfile) + (geo_data_l, geo_data_h)=split_sx(geo_data, 0) + if dual_geo>0: + sx_geo = True + cw_geo = False + if geo_data_h.exists(): geo_data = geo_data_h + elif check_clh(geo_data,logfile): + mprint('#########################################',logfile) + mprint('Geoblock observation in wide C-band mode',logfile) + mprint('########################################',logfile) + (geo_data_l, geo_data_h)=split_clh(geo_data, 0) + if dual_geo>0: + sx_geo = True + cw_geo = True + if geo_data_h.exists(): geo_data = geo_data_h + + if delzn_flag==0: + if (os.path.exists('geoblock')==False): + os.mkdir('geoblock') + +if geo_fringe_flag==1 and do_geo_block==1 and sx_geo==False: + mprint('##########################################',logfile) + mprint('Processing geoblock file: '+geo_data.name+'.'+geo_data.klass,logfile) + mprint('##########################################',logfile) + + check_sncl(geo_data, 0, 3, logfile) + runquack(geo_data, [0], 2./60.) + if refant_flag==1: refant=select_refant(geo_data) + testfringe(geo_data, refant, 0, logfile) + if refant_flag==1: refant=select_refant2(geo_data,logfile) + geo_man_pcal(geo_data, refant, logfile) + runclcal(geo_data, 1, 3, 4, '', 1, refant) + fringegeo(geo_data, refant) + get_geosource_stats(geo_data) + +if geo_fringe_flag==1 and do_geo_block==1 and sx_geo==True: + mprint('###################################################',logfile) + mprint('Processing geoblock files: '+geo_data_l.name+'.'+geo_data_l.klass+ + ' and '+geo_data_h.name+'.'+geo_data_h.klass,logfile) + mprint('###################################################',logfile) + check_sncl(geo_data_l, 0, 3, logfile) + check_sncl(geo_data_h, 0, 3, logfile) + runquack(geo_data_l, [0], 2./60.) + runquack(geo_data_h, [0], 2./60.) + if refant_flag==1: refant=select_refant(geo_data_h) + testfringe(geo_data_h, refant, 0, logfile) + if refant_flag==1: refant=select_refant2(geo_data_h,logfile) + geo_man_pcal_sx(geo_data_l, geo_data_h, refant, logfile) + runclcal(geo_data_l, 1, 3, 4, '', 1, refant) + runclcal(geo_data_h, 1, 3, 4, '', 1, refant) + fringegeo(geo_data_l, refant) + fringegeo(geo_data_h, refant) + get_geosource_stats(geo_data_h) + + mprint('######################',logfile) + mprint(get_time(),logfile) + mprint('######################',logfile) + +if doprt_flag==1 and do_geo_block==1 and delzn_flag==0: + check_sn_ver(geo_data) + # Creates directories + if (os.path.exists('geoblock')==False): + os.mkdir('geoblock') + else: + os.popen(r'rm -rf geoblock/*') + + make_station_file(geo_data) + + if sx_geo==False: + make_calibrator_file(geo_data) + make_control_file(geo_data,refant,max_ant) + else: + make_calibrator_file_sx(geo_data_h) + make_control_file_sx(geo_data_h,data[line],refant,max_ant) + + if sx_geo: + runprtsn_sx(geo_data_l,geo_data_h,data[line]) + runprtsu(geo_data_h) + os.popen(r'mv 20* geoblock/') + else: + runprtsn(geo_data) + runprtsu(geo_data) + os.popen(r'mv 20* geoblock/') + +if dofit_flag==1 and do_geo_block==1: + if refant==0: refant=select_refant(geo_data) + if delzn_flag==1: + run_delzn(geo_data) + else: + if sx_geo==False: + os.chdir('geoblock') + if os.path.exists('tropos'): + os.popen('rm -rf tropos') + os.mkdir('tropos') + os.popen('rm -rf fit_geodetic_bl*') + os.popen(fit_path+'fit_geoblocks > fit_geoblocks.prt','w') + os.popen('cat fit_geoblocks.prt','w') + os.popen('mv fit_geodetic_bl* tropos/') + os.chdir('../') + os.popen(r' cp geoblock/ATMOS.FITS .') + make_name_atmos(geo_data) + else: + os.chdir('geoblock') + if os.path.exists('tropos'): + os.popen('rm -rf tropos') + if os.path.exists('ionos'): + os.popen('rm -rf ionos') + os.mkdir('tropos') + os.mkdir('ionos') + os.popen('rm -rf fit_geodetic_bl*') + os.popen(fit_path+'diff_dual_freq_delays','w') + os.popen('cp calibrator_file_tropos.inp calibrator_file.inp') + os.popen('cp control_file_tropos.inp control_file.inp') + os.popen(fit_path+'fit_geoblocks > fit_geoblocks_tropos.prt','w') + os.popen('cat fit_geoblocks_tropos.prt','w') + os.popen('mv fit_geodetic_bl* tropos/') + os.chdir('../') + os.popen(r' cp geoblock/ATMOS.FITS .') + + os.chdir('geoblock') + os.popen('cp calibrator_file_ionos.inp calibrator_file.inp') + os.popen('cp control_file_ionos.inp control_file.inp') + os.popen(fit_path+'fit_geoblocks_ionos > fit_geoblocks_ionos.prt','w') + os.popen('cat fit_geoblocks_ionos.prt','w') + os.popen('mv fit_geodetic_bl* ionos/') + os.chdir('../') + os.popen(r' cp geoblock/IONOS.FITS .') + make_name_atmos(geo_data) + make_name_ionos(geo_data) + +if doplot_flag>0 and do_geo_block==1 and delzn_flag==0: + if refant==0: refant=select_refant(geo_data) + plot_baseline(geo_data,refant, inter_flag,'A',doplot_flag,logfile) + plotatmos(inter_flag, logfile) + if sx_geo: + plot_baseline(geo_data,refant, inter_flag,'I',doplot_flag,logfile) + plotionos(inter_flag, logfile) + +mprint('######################',logfile) +mprint(get_time(),logfile) +mprint('######################',logfile) +''' + + + +mprint('############################',logfile) +mprint('Data flaging before apcal',logfile) +mprint('############################',logfile) + +if quack_flag==1:#deal with fgv2 + if data[0].table_highver('AIPS FG')>=2: + data[0].zap_table('AIPS FG',2) + else: + runtacop(data[0],data[0], 'FG', 1, 2, 1) + if antname == 'EVN' or antname == 'LBA': + begquack(data[0],[0], 30./60.,2) + endquack(data[0],[0], 5./60.,2) + elif antname == 'VLBA': + begquack(data[0],[0], 4./60.,2) + endquack(data[0],[0], 2./60.,2) + run_elvflag(data[0],15,2,logfile) + +if clip_flag >= 1: + if data[0].table_highver('AIPS FG')>=2: + #data[0].zap_table('AIPS FG',clip_outfg) + infg=infg + else: + infg=1 + run_aclip(data[0],infg,clip_outfg,3,0,0,'',2.5,0) + if clip_flag ==2:#tbd + for i in range(antnum): + for j in range(ifnum): + run_aclip(data[0],infg,clip_outfg,3,i+1,j+1,'RR',clpmx[0][j+4*i],clpmx[2][j+4*i]) + run_aclip(data[0],infg,clip_outfg,3,i+1,j+1,'LL',clpmx[1][j+4*i],clpmx[2][j+4*i]) + + +if man_uvflg_flag == 1: + if data[0].table_highver('AIPS FG')>=3: + data[0].zap_table('AIPS FG',outfg) + else: + tacop = AIPSTask('TACOP') + tacop.indata = data[0] + tacop.outdata = data[0] + tacop.inext = 'FG' + tacop.inver = 1 + tacop.outver = outfg + tacop.ncount = 1 + tacop() + for i in range(len(fgbchan)): + print i + print fgbchan[i] + print fgechan[i] + new_uvflg(data[0],fgtimer,fgbif[i],fgeif[i],fgbchan[i],fgechan[i],fgantennas[i],outfg) +################################################################### +# Phase referencing analysis +cont_data = data[0] +print(data[0]) +''' +line_data = data[line] +cont_data = data[0] + +if RDBE_check_flag ==2: + newdata=get_phasecal_sources(cont_data,mp_source,logfile) + blocks = check_RDBE(newdata,logfile,inter_flag,'CONT') + +if line_data.sources==cont_data.sources: + pass +else: + mprint('########################################################',logfile) + mprint('### Sources in line and continuum files not idential ###',logfile) + mprint('########################################################',logfile) + sys.exit() + +if do_geo_block==1 and pr_prep_flag==1 and delzn_flag==0: + for i in pr_data_nr: + if (get_ant(geo_data)==get_ant(data[i])): + mprint('Antennas identical in geoblock data and file '+str(i),logfile) + else: + mprint('## ATTENTION ## ATTENTION ## ATTENTION ##',logfile) + mprint('Antennas different for geoblock data and file '+str(i),logfile) + mprint('## ATTENTION ## ATTENTION ## ATTENTION ##',logfile) + mprint('####################################',logfile) + #+++ ZB + #checkatmos(inter_flag, logfile) + #--- ZB + mprint('####################################',logfile) +''' +n=0 +for i in pr_data_nr: + n=n+1 + pr_data = data[i] + mprint('#######################################',logfile) + mprint('Processing phase-ref file: '+outname[i],logfile) + mprint('#######################################',logfile) + + if tasav_flag==1: + if flagfile[i]!='': + runuvflg(pr_data,flagfile[i],logfile) + if antabfile[i]!='': + runantab(pr_data,antabfile[i]) + runtasav(pr_data, i, logfile) + + if restore_su_flag==1: + restore_su(pr_data, logfile) + + if restore_fg_flag==1: + restore_fg(pr_data, logfile) + + if pr_prep_flag>0: + runuvflg(pr_data,flagfile[i],logfile) + check_sncl(pr_data, 0, 1,logfile) + if pr_data.header['telescop']=='EVN': + if pr_prep_flag==1: + runTECOR(pr_data,year,doy,num_days,3,TECU_model) + else: + runtacop(pr_data, pr_data, 'CL', 1, 3, 0) + else:#for VLBA + if pr_prep_flag==1: + runTECOR(pr_data,year,doy,num_days,2,TECU_model) + else: + runtacop(pr_data, pr_data, 'CL', 1, 2, 0) + runeops(pr_data, geo_path) + + if refant_flag==1: + refant=select_refant(pr_data) + if do_geo_block==1: + if delzn_flag==1: + atmos_file='DELZN.FITS' + else: + geo_data=data[geo_data_nr] + #+++ ZB + #make_name_atmos(geo_data) + #--- ZB + atmos_file='ATMOS_NAME.FITS' + runatmos(pr_data, atmos_file) + if sx_geo==True and dual_geo==1: + ionos_file='IONOS_NAME.FITS' + make_name_ionos(geo_data) + runionos(pr_data, ionos_file) + runpang(pr_data) + for source in pos_shift: + [ra, dec] = [pos_shift[source][0],pos_shift[source][1]] + if ra!=0 or dec!=0: + if source == '': + source=findcal(pr_data, '') + mprint('###############################'+ + '###########################',logfile) + mprint('Shift '+source+' by '+str(ra)+ + ' arcsec in RA and '+str(dec)+ + ' arcsec in DEC', logfile) + mprint('###############################'+ + '###########################',logfile) + shift_pos(pr_data, source, ra, dec, 4, 4) + else: + mprint('####################################',logfile) + mprint('Using no ATMOS.FITS file',logfile) + mprint('####################################',logfile) + runpang2(pr_data) + for source in pos_shift: + [ra, dec] = [pos_shift[source][0],pos_shift[source][1]] + if ra!=0 or dec!=0: + if source == '': + source=findcal(pr_data, '') + mprint('####################################'+ + '################################',logfile) + mprint('Shift '+source+' by '+str(ra)+ + ' arcsec in RA and '+str(dec)+ + ' arcsec in DEC', logfile) + mprint('####################################'+ + '################################',logfile) + shift_pos(pr_data, source, ra, dec, 4, 4) + + + if first_cal_flag==1:#include accor and pang + check_sncl(pr_data,0,3,logfile) + runaccor(pr_data) + runclcal(pr_data, 1, 3, 4, 'self', 1, refant) + mprint('######################',logfile) + mprint('finish accor',logfile) + mprint('######################',logfile) + runpang2(pr_data) + mprint('######################',logfile) + mprint('finish pang',logfile) + mprint('######################',logfile) + if pr_fringe_flag==1: + mprint('######################',logfile) + mprint('Begin mannual phase-cal',logfile) + mprint('######################',logfile) + check_sncl(pr_data,1,5,logfile) + man_pcal(pr_data, refant, mp_source, mp_timera,5,logfile, dpfour) + runclcal2(pr_data,2,5,6,'2pt',0,refant,[0],mp_source,'') + if new_amp_flag==1: #TODO, optimize bandpass method and improve this + check_sncl(pr_data, 2, 6,logfile) + if pr_data.table_highver('AIPS BP') >= 1: + pr_data.zap_table('AIPS BP', -1) + run_bpass(pr_data, bandcal,6,flagver,refant,logfile) + #run_bpass(indata, bandcal,gainuse,flagver,refant,logfile) + else: + run_bpass(pr_data, bandcal,6,flagver, refant,logfile) + run_acscl(pr_data,flagver,6,2,1) + #run_acscl(indata,flagver,gainuse,doband,bpver) + #runclcal2(pr_data,3,6,7,'2pt',0,refant,[0],'','') + runclcal(pr_data, 3, 6, 7, 'SELF', 1, refant) + if new_amp_flag==2: #only use aclip and acscl, no bandpass used,iteration not ready; This may not be good. + check_sncl(pr_data, 2, 6,logfile) + for i in range(6): + if i <=0: + run_aclip(data[0],2,flagver,6,0,0,'',2.5,8) + # run_bpass(data[0], bandcal,6,flagver,refant,logfile) + run_acscl(data[0],flagver,6,2,-1) + else: + pass + runclcal(pr_data, 3, 6, 7, 'self', 1, refant) + if new_amp_flag==3: #no acscl used + check_sncl(data[0], 2, 6,logfile) + run_bpass(data[0], bandcal,6,flagver,refant,logfile) + runtacop(data[0],data[0], 'CL', 6, 7, 1) + runtacop(data[0],data[0], 'SN', 2, 3, 1) + if apcal_flag == 1: + check_sncl(pr_data,3,7,logfile) + runapcal(pr_data, tyver, 1, 4, dofit, 'GRID') #generate sn4 + runclcal(pr_data, 4, 7, 8, '', 1, refant) + +if bandcal==['']: + doband = -1 + bpver = -1 +else: + doband = 1 + bpver = 1 + + if do_fringe_flag == 1: + mprint('######################',logfile) + mprint('Begin first fringe',logfile) + mprint('######################',logfile) + check_sncl(pr_data,4,8,logfile) + doband = -1 + fringecal_ini(pr_data,refant, refant_candi, calsource[0],8,flagver,solint,doband,bpver,apfive) + fringecal_ini(pr_data,refant, refant_candi, p_ref_cal[0],8,flagver,solint,doband,bpver,apfive) + #fringecal_ini(pr_data,refant, refant_candi, p_ref_cal,7,flagver,solint,-1,0,apfive) + runclcal2(pr_data,5,8,9,'ambg',-1,refant,[0],calsource,calsource) + runclcal2(pr_data,6,8,10,'ambg',1,refant,[0],p_ref_cal[0],targets) + if do_fringe_flag == 2: + mprint('######################',logfile) + mprint('Begin first fringe',logfile) + mprint('######################',logfile) + check_sncl(pr_data,4,8,logfile) + fringecal_ini(pr_data,refant, refant_candi, calsource[0],8,flagver,solint,-1,0,apfive) + fringecal_ini(pr_data,refant, refant_candi, targets,8,flagver,solint,-1,0,apfive) + runclcal2(pr_data,5,8,9,'ambg',-1,refant,[0],calsource,calsource) + runclcal2(pr_data,6,8,10,'ambg',-1,refant,[0],target,targets) +#fringecal_ini(indata, refant, refant_candi, calsource, gainuse, flagver, solint, doband, bpver,apfive) + if do_fringe_flag == 3: + mprint('######################',logfile) + mprint('Do fringe for special cases',logfile) + mprint('######################',logfile) + check_sncl(pr_data,8,cluse+1,logfile) + fringecal_ini(pr_data,refant, refant_candi, calsource[0],cluse+1,flagver,solint,-1,0,apfive) + fringecal_ini(pr_data,refant, refant_candi, targets,cluse+1,flagver,solint,-1,0,apfive) + runclcal2(pr_data,4,cluse+1,cluse+2,'ambg',-1,refant,[0],calsource,calsource) + runclcal2(pr_data,5,cluse+1,cluse+3,'ambg',-1,refant,[0],target,targets) + + if plot_first_run == 1: + #check_sncl(pr_data,5,7,logfile) + runsnplt(pr_data,inver=10,inex='CL',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=6,inex='SN',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=6,inex='SN',sources=targets,optype='DELA',nplot=4,timer=[]) + runsnplt(pr_data,inver=6,inex='SN',sources=targets,optype='RATE',nplot=4,timer=[]) + possmplot(pr_data,sources=p_ref_cal[0],timer=chk_trange,gainuse=10,flagver=flagver,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) + possmplot(pr_data,sources=p_ref_cal[0],timer=chk_trange,gainuse=10,flagver=flagver,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + possmplot(pr_data,sources=p_ref_cal[0],timer=chk_trange,gainuse=10,flagver=flagver,stokes='HALF',nplot=9,bpv=1,ant_use=[0],cr=1) + mprint('######################',logfile) + mprint(get_time(),logfile) + mprint('######################',logfile) + if do_band_flag==1: + check_sncl(pr_data, 6, 10,logfile) + if pr_data.table_highver('AIPS BP') >= 1: + pr_data.zap_table('AIPS BP', -1) + do_band(pr_data, bandcal,9,1, logfile) + else: + do_band(pr_data, bandcal,9,1, logfile) + possmplot(pr_data,sources=p_ref_cal[0],timer=chk_trange,gainuse=10,flagver=0,stokes='HALF',nplot=9,bpv=1,ant_use=[0],cr=1) + possmplot(pr_data,sources=bandcal[0],timer=possm_scan,gainuse=9,flagver=0,stokes='HALF',nplot=9,bpv=1,ant_use=[0],cr=1) + + + +if split_1_flag == 1: + doband = -1 + check_sncl(cont_data, 6, 10,logfile) + run_split2(cont_data, calsource[0], 9, 'v1cal', doband, bpver, flagver, split_seq) + run_split2(cont_data, p_ref_cal[0], 10, 'v1ref', doband, bpver, flagver,split_seq) + if len(p_ref_cal)>=2: + run_split2(cont_data, p_ref_cal[1], 10, split_outcl, doband, bpver, flagver,split_seq) + #run_fittp_data(source, split_outcl, defdisk, logfile) + run_split2(cont_data, target[0], 10, 'v1tar', doband, bpver, flagver,split_seq) +if split_1_flag == 2: + check_sncl(cont_data, 6, 10,logfile) + run_split2(cont_data, calsource[0], 9, split_outcl, doband, bpver, flagver,split_seq) + run_split2(cont_data, p_ref_cal[0], 10, 'BKREF', doband, bpver, flagver,split_seq) + run_split2(cont_data, target[0], 10,'SELF', doband, bpver, flagver,split_seq) + #if len(p_ref_cal)>=2: + #run_split2(cont_data, p_ref_cal[1], 9, split_outcl, doband, bpver, flagver) +if split_1_flag == 3: + doband =-1 + check_sncl(cont_data, 15, cluse+3,logfile) + run_split2(cont_data, calsource[0], cluse+2, split_outcl, doband, bpver, flagver,split_seq) + run_split2(cont_data, p_ref_cal[0], cluse+3, 'BKREF2', doband, bpver, flagver,split_seq) + run_split2(cont_data, target[0], cluse+3,'SELF2', doband, bpver, flagver,split_seq) +#================================================================== +if do_gaincor_flag == 1:#for EVN ususally + check_sncl(cont_data, snchk, cluse,logfile) + runtacop(cont_data,cont_data, 'CL', cluse, cluse+1, 1) + if pol == 'I': + gcal_app(cont_data,matxi,cluse+1,'') + elif pol =='LR': + gcal_app(cont_data,matxl,cluse+1,'L') + gcal_app(cont_data,matxr,cluse+1,'R') + #fringecal_ini(cont_data,refant, refant_candi, p_ref_cal[0],cluse+1,flagver,solint,-1,0,apfive) + #runclcal2(cont_data,4,cluse+1,cluse+2,'ambg',1,refant,[0],p_ref_cal[0],targets) + #run_split2(cont_data, p_ref_cal[0], cluse+2, 'LRcor', doband, bpver, flagver,split_seq) +##up: zyk++ + +################################################################### +# Data inspect + +if inspect_flag == 1: + possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) + #possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=0,bpv=0,ant_use=[0],cr=0) #this will average all antennas + possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + runsnplt(data[0],inver=1,inex='TY',sources='',optype='TSYS',nplot=4,timer=[]) + #possmplot(data[0],sources='',timer=possm_scan,gainuse=4,flagver=0,stokes='HALF',nplot=0,bpv=0,ant_use=[0],cr=0) #this will average all antennas + #possmplot(data[0],sources='',timer=possm_scan,gainuse=4,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + + #if antname == 'VLBA': + +if inspect_flag ==2: + for i in range(len(pref_names)): + possmplot(data[0],sources=pref_names[i],timer=RFIck_tran,gainuse=3,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + possmplot(data[0],sources=pref_names[i],timer=RFIck_tran,gainuse=3,flagver=0,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) + possmplot(pr_data,sources=pref_names[i],timer=RFIck_tran,gainuse=4,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + possmplot(pr_data,sources=pref_names[i],timer=RFIck_tran,gainuse=7,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + possmplot(pr_data,sources=pref_names[i],timer=RFIck_tran,gainuse=7,flagver=0,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) + if antname != 'VLBA': + runsnplt(data[0],inver=1,inex='TY',sources='',optype='TSYS',nplot=4,timer=[]) + possmplot(data[0],sources=p_ref_cal[0],timer=RFIck_tran,gainuse=3,flagver=0,stokes='HALF',nplot=0,bpv=0,ant_use=[0],cr=0) + print data[0].sources +''' +#######################not used#################################### +if cvel_flag==1: + check_sncl(line_data, 3, 7,logfile) + check_sncl(cont_data, 3, 7,logfile) + calsource = findcal(line_data, calsource) + if isinstance(cvelsource, str): + cvelsource=[cvelsource] + if cvelsource[0]=='': + cvelsource[0]=calsource + runcvel(line_data,cvelsource,vel,inter_flag, doband, bpver) + +if possm_flag==1: + if refant_flag==1: + refant=select_refant(line_data) + if line_data2.exists(): + line_data2.clrstat() + calsource = findcal(line_data, cvelsource[0]) + + tv=AIPSTV.AIPSTV() + if tv.exists()==False: tv.start() + + rep='Y' + while (rep=='Y' or rep=='y' or rep=='yes'): + if line_data2.exists(): + mprint('Using shifted data (CVEL).',logfile) + #runpossm(line_data2, calsource, ant_use=[0], doband, bpver, bchan, echan, gainuse, flagver=0, stokes= 'HALF', nplot) + else: + mprint('Using unshifted data (CVEL).',logfile) + #runpossm(line_data, calsource, ant_use=[0], doband, bpver, bchan, echan, gainuse, flagver=0, stokes= 'HALF', nplot) + rep=raw_input('Repeat POSSM with different channels? (y/n) ') + + channel=input('Enter channel for fringe fit: ') +''' +################################################################### + +##zyk+++ +if ld_fr_fringe_flag == 1: + fr_image=AIPSImage(fr_nm, fr_cls, fr_dsk, fr_sq) + if fr_image.exists(): + print 'removing old fr image and load again' + fr_image.zap() + loadfr(fr_path,fr_file,fr_nm,fr_cls,fr_dsk,antname,logfile) + else: + print 'load new image data' + loadfr(fr_path,fr_file,fr_nm,fr_cls,fr_dsk,antname,logfile) + + +if do_fr_fringe_flag == 1: + if cont_data.table_highver('AIPS CL')==cluse: #if no need for Gcal, copy the latest CL table + runtacop(cont_data,cont_data, 'CL', cluse, cluse+1, 1) + elif cont_data.table_highver('AIPS CL')>=cluse: #if done Gcal, use gcal(cluse+1) + check_sncl(cont_data, snchk, cluse+1,logfile) + fringecal_ini2(cont_data,refant, refant_candi, p_ref_cal[0],cluse+1,flagver,solint,-1, bpver, 1,no_rate1, dwin,rwin) + runclcal2(cont_data,snchk+1,cluse+1,cluse+2,'AMBG',1,refant,[0],p_ref_cal[0],targets) + if nofit_rate == 1: + #runsncor(cont_data,sncor_timer,4) + fringecal(cont_data, fr_image, nmaps, cluse+2, refant, refant_candi, p_ref_cal[0], solint, smodel, -1, 0, dpfour,apfive, 1,dwin,rwin) + runclcal2(cont_data,snchk+2,cluse+2,cluse+3,'2PT',1,refant,[0],p_ref_cal[0],targets) + else: + fringecal(cont_data, fr_image, nmaps, cluse+2, refant, refant_candi, p_ref_cal[0], solint, smodel, -1, 0, dpfour,apfive, 0,dwin,rwin) + runclcal2(cont_data,snchk+2,cluse+2,cluse+3,'2PT',1,refant,[0],p_ref_cal[0],targets) + +if do_calib_1_flag == 1: + doband = -1 + check_sncl(cont_data, snchk+2, cluse+3,logfile) + calib_1(cont_data,fr_image,'A&P',cluse+3,refant,snchk+3,doband,bpver,p_ref_cal[0],flagver,solint) + runclcal2(cont_data,snchk+3,cluse+3,cluse+4,'2PT',1,refant,[0],p_ref_cal[0],targets) + +if check_delay_rate == 1: + #chk_sn_cl(cont_data,6,10,p_ref_cal[0],chk_trange,1) + #chk_sn_cl(cont_data,5,9,p_ref_cal[0],chk_trange,1) + runsnplt(pr_data,inver=cluse+4,inex='CL',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+4,inex='CL',sources=targets,optype='DELA',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+4,inex='CL',sources=targets,optype='RATE',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+3,inex='CL',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+3,inex='CL',sources=targets,optype='DELA',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+2,inex='CL',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+2,inex='CL',sources=targets,optype='DELA',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+1,inex='CL',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=cluse+1,inex='CL',sources=targets,optype='DELA',nplot=4,timer=[]) + #runsnplt(pr_data,inver=cluse+4,inex='CL',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=snchk+2,inex='SN',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=snchk+2,inex='SN',sources=targets,optype='DELA',nplot=4,timer=[]) + runsnplt(pr_data,inver=snchk+1,inex='SN',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(pr_data,inver=snchk+1,inex='SN',sources=targets,optype='DELA',nplot=4,timer=[]) + runsnplt(pr_data,inver=snchk+1,inex='SN',sources=targets,optype='RATE',nplot=4,timer=[]) + runsnplt(pr_data,inver=snchk+2,inex='SN',sources=targets,optype='RATE',nplot=4,timer=[]) + #list_sncl(pr_data,inext='CL',inver=cluse+2,sources=targets,listparm='phase') + #list_sncl(pr_data,inext='CL',inver=cluse+2,sources=targets,listparm='delay') + #list_sncl(pr_data,inext='CL',inver=cluse+3,sources=targets,listparm='phase') + #list_sncl(pr_data,inext='CL',inver=cluse+3,sources=targets,listparm='delay') + #list_sncl(pr_data,inext='CL',inver=cluse+3,sources=targets,listparm='EL') + + +if split_2_flag >= 1: + check_sncl(cont_data, snchk+3, cluse+4,logfile) + #check_sncl(cont_data, 5, 9,logfile) + doband=-1 + run_split2(cont_data, p_ref_cal[0], cluse+2, 'SCL9', doband, bpver, flagver,split_seq) + run_split2(cont_data, p_ref_cal[0], cluse+3, 'SCL10', doband, bpver, flagver,split_seq) + + run_split2(cont_data, target[0], cluse+3, 'SCL10', doband, bpver, flagver,split_seq) + run_split2(cont_data, target[0], cluse+4, 'SCL11', doband, bpver, flagver,split_seq) + run_split2(cont_data, p_ref_cal[0], cluse+4, 'SCL11', doband, bpver, flagver,split_seq) +#run_split2(cont_data, target[0], 11, 'SCL12', doband, bpver, flagver) + if split_2_flag>=2: + run_split2(cont_data, p_ref_cal[0], cluse+2, 'SCL10', doband, bpver, flagver,split_seq) + run_split2(cont_data, p_ref_cal[0], cluse+3, 'SCL11', doband, bpver, flagver,split_seq) + +if do_uvshift_flag ==1: + doband = -1 + check_sncl(cont_data, snchk+3, cluse+4,logfile) + split3_data=AIPSUVData(target[0],'4uvsh',1,split_seq) + if split3_data.exists(): + print 'Clear old split3 data' + split3_data.clrstat() + split3_data.zap() + run_split3(cont_data, target[0], '4uvsh', doband, bpver, cluse+3, 0, 0) + uvfix_data=AIPSUVData(target[0],'UVFIX',1,split_seq) + if uvfix_data.exists(): + print 'Clear old uvfix data' + uvfix_data.clrstat() + uvfix_data.zap() + run_uvfix(split3_data,rash,decsh,'UVFIX') + shav_data=AIPSUVData(target[0],'shav',1,split_seq) + if shav_data.exists(): + print 'Clear old uvfix data' + shav_data.clrstat() + shav_data.zap() + run_split3(uvfix_data, target[0], 'shav', -1, 0, 0, avg_if+1, 1) + ##run_split3(indata, target, outclass, doband, bpver, gainuse, avg(1 is keep ifs, 2 is average ifs), fittp) +########################################################################### +if ld_fr2_fringe_flag == 1: + fr2_image=AIPSImage(fr2_nm, fr2_cls, fr2_dsk, fr2_sq) + if fr2_image.exists(): + print 'removing old fr image and load again' + fr2_image.zap() + else: + print 'load new image data' + loadfr(fr_path,fr2_file,fr2_nm,fr2_cls,fr2_dsk,antname,logfile) + + +if resi_phcal_flag == 1: + check_sncl(cont_data, snchk+3, cluse+4,logfile) + calib_1(cont_data,fr2_image,'P',cluse+4,refant,snchk+4,-1,0,targets[1],flagver,solint) + + +########################################################################### +#zyk+++ +import numpy as np +def p_rotate(real,imag,factor): + if real <=0 and imag <= 0: + phas0= np.arctan(imag/real)-np.pi + elif real <= 0 and imag >= 0: + phas0= np.pi+np.arctan(imag/real) + else: + phas0= np.arctan(imag/real) + amp0= np.sqrt(real**2+imag**2) + phas1=phas0 * factor + amp1=amp0 + real_n = amp1*np.cos(phas1) + imag_n = amp1*np.sin(phas1) + #print phas0/np.pi*180 + return real_n, imag_n + + +if sn_rotate_flag == 1: + check_sncl(cont_data, snchk+4, cluse+4,logfile) + factor = r_factor + runtacop(cont_data, cont_data, 'SN', snchk+4, snchk+5, 1) + data = WAIPSUVData(outname[0], outclass[0],1, 1) + old_tab = data.table('SN',snchk+4) + new_tab = data.table('SN',snchk+5) + snrow1=[]; snrow2=[] + snrow1_new=[] + snrow2_new=[] + for row in old_tab: + snrow1.append(row.real1) + snrow2.append(row.imag1) + for i in range(len(snrow1)): + aa=[];bb=[] + for j in range(4): + a=p_rotate(snrow1[i][j],snrow2[i][j],factor)[0] + b=p_rotate(snrow1[i][j],snrow2[i][j],factor)[1] + aa.append(a) + bb.append(b) + snrow1_new.append(aa) + snrow2_new.append(bb) + for row in new_tab: + row.real1 = snrow1_new[row._rownum] + row.imag1 = snrow2_new[row._rownum] + row.real2 = snrow1_new[row._rownum] + row.imag2 = snrow2_new[row._rownum] + row.update() + old_tab.close() + new_tab.close() + print "Rotation done" + +if sn_rotate_flag == 2: # This is for checking whether the roration is right + real = [1,-1,1,-1] + imag = [1,1,-1,-1] + newr=[] + newi=[] + for i in range(4): + a=p_rotate(real[i],imag[i],1)[0] + b=p_rotate(real[i],imag[i],1)[1] + newr.append(a) + newi.append(b) + print newr, newi + print "45,135,-45,-135" + + +if app_rotate_flag == 1: + runclcal2(cont_data,snchk+5,cluse+4,cluse+5,'2PT',1,refant,[0],targets[1],targets) + runsnplt(cont_data,inver=snchk+4,inex='SN',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(cont_data,inver=snchk+5,inex='SN',sources=targets,optype='PHAS',nplot=4,timer=[]) + runsnplt(cont_data,inver=cluse+5,inex='CL',sources=targets,optype='PHAS',nplot=4,timer=[]) + +if splt_3_flag == 1: + doband,bpver=[-1,0] + run_split2(cont_data, targets[0], cluse+5, 'S12-RO', doband, bpver, flagver,split_seq) + + +########################################################################### + + + +if phase_cal_flag==1: + source = calsource + indata = AIPSUVData(source,split_outcl,line_data.disk,1) + cal_ants = antennas + im_ants = [] + for entry in dofit[0]: + im_ants.append(-entry) + + for i in range(len(phase_loop)): + cal_data = phase_selfcal(indata, source, phase_loop[i], line_data.disk, + niter, cellsize,imsize,logfile, imna, + cal_ants, im_ants, refant, fr_image, beam) + indata = cal_data + mprint('########################################################', logfile) + +if amp_cal_flag==1: + source = calsource + if len(dofit)!=len(amp_loop): + dofit=range(amp_loop) + mprint('dofit and amp_loop not equal length, solving for all antennas', logfile) + for i in range(len(dofit)): + dofit[i]=0 + + indata = AIPSUVData(source,split_outcl,line_data.disk,1) + indata = check_cal(indata, source, outdisk, logfile, imna) + for i in range(len(amp_loop)): + cal_data = amp_selfcal(indata, source, amp_loop[i], line_data.disk, + niter, cellsize,imsize,logfile, imna, antennas, + refant, dofit[i], beam) + indata = cal_data + mprint('########################################################', logfile) + + + + +if refeed_flag==1: + + source=calsource + if imna=='': + outname = source + else: + outname = source[:11-len(imna)]+'-'+imna + nimage = 1 + while AIPSImage(outname,'ICL001',line_data.disk, nimage+1).exists(): + nimage+=1 + + model = AIPSImage(outname,'ICL001',line_data.disk, nimage) + + + if cont_data2.exists(): + mprint('Using shifted data (CVEL).',logfile) + cont_used=cont_data2 + else: + mprint('Using unshifted data (CVEL).',logfile) + cont_used=cont_data + + check_sncl(cont_used, 3, 7,logfile) + #fringecal(cont_used,model,nmaps,refant,calsource,solint,smodel,doband,bpver,dpfour) + if snflg_flag==1: + runsnflg(cont_used, 4, calsource) + if min_elv>0: + run_elvflag(cont_used,min_elv,logfile) + runclcal(cont_used, 4, 7, 8, '', 1, refant) + run_snplt(cont_used, inter_flag) + + mprint('######################',logfile) + mprint(get_time(),logfile) + mprint('######################',logfile) + + split_sources=get_split_sources(cont_data, target, cvelsource, calsource) + + if cont_data2.exists(): + check_sncl(cont_data2, 4, 8,logfile) + run_split(cont_data2, split_sources, split_outcl, doband, bpver) + else: + check_sncl(cont_data, 4, 8,logfile) + run_split(cont_data, split_sources, split_outcl, doband, bpver) + + cvelsource = findcvelsource(line_data, cvelsource) + + if line_data2.exists(): + check_sncl(line_data2, 4, 8,logfile) + run_masplit(line_data2, cvelsource, split_outcl, doband, bpver,smooth,channel) + else: + check_sncl(line_data, 4, 8,logfile) + run_masplit(line_data, cvelsource, split_outcl,smooth,channel) + + + split_sources=get_split_sources(cont_data, target, cvelsource, calsource) + + for source in split_sources: + split_data=AIPSUVData(source,split_outcl,cont_data.disk,1) + if split_data.exists(): + runimagr(split_data, source, niter, cellsize, imsize, -1, imna, + antennas,uvwtfn, robust, beam) + +if phase_target_flag!='': + source = phase_target_flag + indata = AIPSUVData(source,split_outcl,line_data.disk,1) + for entry in phase_loop: + cal_data = phase_selfcal(indata, source, entry, line_data.disk, niter, + cellsize,imsize,logfile, imna, antennas, + refant, beam) + indata = cal_data + +if amp_target_flag!='': + source = phase_target_flag + indata = AIPSUVData(source,split_outcl,line_data.disk,1) + for entry in amp_loop: + cal_data = amp_selfcal(indata, source, entry, line_data.disk, niter, + cellsize,imsize,logfile, imna, antennas, + beam, refant) + indata = cal_data + +if apply_selfcal==1: + do_apply_selfcal(calsource,calsource,split_outcl,defdisk, refant) + for entry in target: + do_apply_selfcal(entry,calsource,split_outcl,defdisk, refant) + + +if plot_tables!=-1: + + if plot_tables==line: + if line_data2.exists(): + mprint('Using shifted data (CVEL).',logfile) + line_used = line_data2 + else: + mprint('Using unshifted data (CVEL).',logfile) + line_used = line_data + plot_data=line_used + else: + plot_data=data[plot_tables] + + setup_plotfiles(plot_data) + run_snplt_2(plot_data, inver=1, inext='sn', optype='AMP', nplot=8, sources='', timer=[]) + #run_snplt_2(plot_data, 1, 'AMP', 'SN1') + #run_snplt_2(plot_data, 2, 'AMP', 'SN2') + #run_snplt_2(plot_data, 3, 'DELA', 'SN3') + #run_snplt_2(plot_data, 4, 'PHAS', 'SN4') + if (os.path.exists('delay-rate.ps')): + os.popen(r'convert delay-rate.ps delay-rate.png') + os.popen(r'mv delay-rate.png plotfiles/') + if (os.path.exists('delay-rate-ionos.ps')): + os.popen(r'convert delay-rate-ionos.ps delay-rate-ionos.png') + os.popen(r'mv delay-rate-ionos.png plotfiles/') +# rdbe_plot(data[geo_data_nr],logfile,'GEO') + +if rpossm_flag==1: + cvelsource=findcvelsource(line_data, cvelsource) + for source in cvelsource: + split_data=AIPSUVData(source,split_outcl,line_data.disk,1) + if split_data.exists(): + tv=AIPSTV.AIPSTV() + if inter_flag==1: + if tv.exists()==False: tv.start() + runrpossm(split_data,cvelsource,tv,inter_flag,antennas) + +if ma_sad_flag==1: + cvelsource=findcvelsource(line_data, cvelsource) + for source in cvelsource: + ma_cube=AIPSImage(source,'ICL001',line_data.disk,1) + run_ma_sad(ma_cube,line_data,min_snr,dyna) +# orfit_to_plot_sorted(ma_cube, line_data) + orfit_to_plot_sorted(ma_cube, line_data,bchan,vel) + +if plot_map==1: + cvelsource=findcvelsource(line_data, cvelsource) + for source in cvelsource: + ma_cube=AIPSImage(source,'ICL001',line_data.disk,1) + plot_spot_map(ma_cube,line_data) + +tv=AIPSTV.AIPSTV() +if tv.exists(): + raw_input('Press Enter to close window. ') + tv.kill() + +# End main script +############################################################################## + + + diff --git a/test_config_loading.py b/test_config_loading.py new file mode 100644 index 0000000..09f114a --- /dev/null +++ b/test_config_loading.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python +""" +Test script to verify configuration loading works correctly +""" +import sys +import os + +# Add vlbi-pipeline directory to path +sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'vlbi-pipeline')) + +# Simulate command line argument +sys.argv = ['test_config_loading.py', '--config', 'configs/test_input.py'] + +# Set environment variable +os.environ['VLBI_CONFIG'] = 'configs/test_input.py' + +print("=" * 60) +print("Testing Configuration Loading") +print("=" * 60) + +try: + # Import config module + from config import AIPS_NUMBER, file_name, target, antname + + print("✓ Configuration loaded successfully!") + print(f" AIPS_NUMBER: {AIPS_NUMBER}") + print(f" antname: {antname}") + print(f" file_name: {file_name}") + print(f" target: {target}") + print() + print("=" * 60) + print("Test PASSED!") + print("=" * 60) + +except Exception as e: + print(f"✗ Error loading configuration: {e}") + import traceback + traceback.print_exc() + print() + print("=" * 60) + print("Test FAILED!") + print("=" * 60) + sys.exit(1) diff --git a/utils/dscrip-new-s b/utils/dscrip-new-s new file mode 100644 index 0000000..51b63ba --- /dev/null +++ b/utils/dscrip-new-s @@ -0,0 +1,157 @@ +!----------------------------------------------------------------------- +! Hands off mapping procedure for reasonably well calibrated and edited +! data. Works only in versions 2.1 and later of Difmap. +! +! WARNING: The output of this script should be checked carefully! +! This script is not intended for use as a "black box" that spits +! out maps ready for publication. Some parameters will require +! careful setting and adjustment before this script will produce +! reasonable results. There are several common failure +! modes for this script. A few of them are indicated below and +! the potential user is advised to peruse Appendix A. Automatic +! Mapping. +! Failure Mode Symptoms Key Parameter +! ------------------------ ----------------------- ---------------- +! 1) Map size too small high noise in map,bad fit field_size +! 2) dynam too low too many clean boxes dynam +! 3) dynam too high real components missed dynam +! +! Input: +! uvfile literal-string The name of the UV FITS file. +! field_size int The map dimension for a single field. +! This depends on the source size. +! field_cell float The cell size to use with 'field_size'. +! This depends on the sampling of the data. +! clean_niter int The number of CLEAN-iterations per cycle. +! clean_gain float The CLEAN loop gain. +! dynam float The minimum dynamic range required for a peak. +! This depends strongly on the SNR of the data. +! soltime float Solution time for phase selfcal (minutes). +! This depends strongly on the SNR of the data. +! thresh float The threshold peak clean flux above which +! unconstrained amplitude self-cal is viable. +! This depends strongly on the SNR of the data. +! win_mult float Multiplier for the size of the clean windows +! in units of the restoring beam. +! Output: +! One cleaned and self-calibrated map. +! +! Written by Martin Shepherd and Greg Taylor on 3/15/1994 +! Modified 12/21/1995 to clear model and start over. Takes +! a bit longer but seems to improve image quality. +!----------------------------------------------------------------------- + +float field_size; field_size = 2048 +float field_cell; field_cell = 0.4 +integer clean_niter; clean_niter = 50 +float clean_gain; clean_gain = 0.04 +float dynam; dynam = 7.0 +float soltime; soltime = 60*24 +float solt_short; solt_short = 20 +float thresh; thresh = 0.5 +float win_mult; win_mult = 1 +float inte; inte=0 +! Define the inner loop as a macro. + +float old_peak +float new_peak +float flux_cutoff + +#+map_residual \ +flux_cutoff = imstat(rms) * dynam;\ +inte=0;\ +repeat;\ + if (peak(flux) > flux_cutoff) peakwin win_mult;\ + clean clean_niter,clean_gain,flux_cutoff;\ + flux_cutoff = imstat(rms) * dynam;\ + selfcal;\ + new_peak = peak(flux,abs);\ + inte = inte + 1;\ + if (inte > 7) break;\ +until(new_peak<=flux_cutoff) + +#+map_noselfcal \ +flux_cutoff = imstat(rms) * dynam;\ +inte=0;\ +repeat;\ + if (peak(flux) > flux_cutoff) peakwin win_mult;\ + clean clean_niter,clean_gain,imstat(rms) * 5;\ + flux_cutoff = imstat(rms) * dynam;\ + keep;\ + new_peak = peak(flux);\ + inte = inte + 1;\ + if (inte > 10) break;\ +until(new_peak<=flux_cutoff) + +! Assumes UV data has previously been read in, otherwise uncomment +! the following line: +! observe %1 + +! Create the map grid. + +select i +mapsize field_size, field_cell + +! Self-cal to a point source. +startmod + +! Start mapping the field, using uniform weighting. +dynam = 7 +uvw 2,-1 +map_residual +print "************** FINISHED UNIFORM WEIGHTING CLEAN **************" + +! See if natural weighting reveals any further flux in the current field. + +uvw 0,-1 +!win_mult = win_mult * 1.1 +clean_niter = 60 +dynam = 6 +map_residual +print "************** FINISHED NATURAL WEIGHTING CLEAN **************" + +! check antenna gain calibration (computes 1 scale factor/antenna) +gscale +dynam = 5.5 +map_residual + +! Amplitude self-cal with a long solution time. +selfcal true, true, soltime +dynam = 5 +clean_niter=50; clean_gain = 0.03 +repeat;\ + map_residual + soltime = soltime/2 + selfcal true,true, soltime +until(soltime<3) + +print "************** FINISHED AMPLITUDE SELF-CAL **************" + + +! now clean the entire map +!x = (field_size-8) * field_cell / 4 +!addwin -x,x,-x,x +!clean (field_size*4),0.01 +!keep + +!device %1.ps/vps +!mapcol none +!cmul= imstat(rms)*3 +!lev -1,1,2,4,8,16,32,64,128,256,512,1024,2048,4096 +!mapl cln +!device /null + +! save data +save %1 + +! show the map (uncomment and put in a bottom contour level +! in cmul in units of Jy/beam if you want this displayed) +!device /xw +!cmul=0.001 +!loglevs (imstat(rms)*3),10000,2 +!mapl cln + + + + + diff --git a/utils/dscrip-new-u b/utils/dscrip-new-u new file mode 100644 index 0000000..2794488 --- /dev/null +++ b/utils/dscrip-new-u @@ -0,0 +1,157 @@ +!----------------------------------------------------------------------- +! Hands off mapping procedure for reasonably well calibrated and edited +! data. Works only in versions 2.1 and later of Difmap. +! +! WARNING: The output of this script should be checked carefully! +! This script is not intended for use as a "black box" that spits +! out maps ready for publication. Some parameters will require +! careful setting and adjustment before this script will produce +! reasonable results. There are several common failure +! modes for this script. A few of them are indicated below and +! the potential user is advised to peruse Appendix A. Automatic +! Mapping. +! Failure Mode Symptoms Key Parameter +! ------------------------ ----------------------- ---------------- +! 1) Map size too small high noise in map,bad fit field_size +! 2) dynam too low too many clean boxes dynam +! 3) dynam too high real components missed dynam +! +! Input: +! uvfile literal-string The name of the UV FITS file. +! field_size int The map dimension for a single field. +! This depends on the source size. +! field_cell float The cell size to use with 'field_size'. +! This depends on the sampling of the data. +! clean_niter int The number of CLEAN-iterations per cycle. +! clean_gain float The CLEAN loop gain. +! dynam float The minimum dynamic range required for a peak. +! This depends strongly on the SNR of the data. +! soltime float Solution time for phase selfcal (minutes). +! This depends strongly on the SNR of the data. +! thresh float The threshold peak clean flux above which +! unconstrained amplitude self-cal is viable. +! This depends strongly on the SNR of the data. +! win_mult float Multiplier for the size of the clean windows +! in units of the restoring beam. +! Output: +! One cleaned and self-calibrated map. +! +! Written by Martin Shepherd and Greg Taylor on 3/15/1994 +! Modified 12/21/1995 to clear model and start over. Takes +! a bit longer but seems to improve image quality. +!----------------------------------------------------------------------- + +float field_size; field_size = 1024 +float field_cell; field_cell = 0.1 +integer clean_niter; clean_niter = 50 +float clean_gain; clean_gain = 0.04 +float dynam; dynam = 6.0 +float soltime; soltime = 60*24 +float solt_short; solt_short = 20 +float thresh; thresh = 0.5 +float win_mult; win_mult = 1 +float inte; inte=0 +! Define the inner loop as a macro. + +float old_peak +float new_peak +float flux_cutoff + +#+map_residual \ +flux_cutoff = imstat(rms) * dynam;\ +inte = 0;\ +repeat;\ + if (peak(flux) > flux_cutoff) peakwin win_mult;\ + clean clean_niter,clean_gain,flux_cutoff;\ + flux_cutoff = imstat(rms) * dynam;\ + selfcal;\ + new_peak = peak(flux,abs);\ + inte = inte + 1;\ + if (inte>6) break;\ +until(new_peak<=flux_cutoff) + +#+map_noselfcal \ +flux_cutoff = imstat(rms) * dynam;\ +inte = 0;\ +repeat;\ + if (peak(flux) > flux_cutoff) peakwin win_mult;\ + clean clean_niter,clean_gain,imstat(rms) * 5;\ + flux_cutoff = imstat(rms) * dynam;\ + keep;\ + new_peak = peak(flux);\ + inte = inte + 1;\ + if (inte > 10) break;\ +until(new_peak<=flux_cutoff) + +! Assumes UV data has previously been read in, otherwise uncomment +! the following line: +! observe %1 + +! Create the map grid. + +select i +mapsize field_size, field_cell + +! Self-cal to a point source. +startmod + +! Start mapping the field, using uniform weighting. +dynam = 6 +uvw 2,-1 +map_residual +print "************** FINISHED UNIFORM WEIGHTING CLEAN **************" + +! See if natural weighting reveals any further flux in the current field. + +uvw 0,-1 +win_mult = win_mult * 1.1 +!clean_niter = clean_niter * 2 +dynam = 5.5 +map_residual +print "************** FINISHED NATURAL WEIGHTING CLEAN **************" + +! check antenna gain calibration (computes 1 scale factor/antenna) +gscale +dynam = 5 +map_residual + +! Amplitude self-cal with a long solution time. +selfcal true, true, soltime +dynam = 5 +clean_niter=50; clean_gain = 0.02 +repeat;\ + map_residual + soltime = soltime/2 + selfcal true,true,soltime +until(soltime<3) + +print "************** FINISHED AMPLITUDE SELF-CAL **************" + + +! now clean the entire map +!x = (field_size-8) * field_cell / 4 +!addwin -x,x,-x,x +!clean (field_size*4),0.01 +!keep + +!device %1.ps/vps +!mapcol none +!cmul= imstat(rms)*3 +!lev -1,1,2,4,8,16,32,64,128,256,512,1024,2048,4096 +!mapl cln +!device /null + +! save data +save %1 + +! show the map (uncomment and put in a bottom contour level +! in cmul in units of Jy/beam if you want this displayed) +!device /xw +!cmul=0.001 +!loglevs (imstat(rms)*3),10000,2 +!mapl cln + + + + + diff --git a/utils/dscrip-new-x b/utils/dscrip-new-x new file mode 100644 index 0000000..fc0519f --- /dev/null +++ b/utils/dscrip-new-x @@ -0,0 +1,157 @@ +!----------------------------------------------------------------------- +! Hands off mapping procedure for reasonably well calibrated and edited +! data. Works only in versions 2.1 and later of Difmap. +! +! WARNING: The output of this script should be checked carefully! +! This script is not intended for use as a "black box" that spits +! out maps ready for publication. Some parameters will require +! careful setting and adjustment before this script will produce +! reasonable results. There are several common failure +! modes for this script. A few of them are indicated below and +! the potential user is advised to peruse Appendix A. Automatic +! Mapping. +! Failure Mode Symptoms Key Parameter +! ------------------------ ----------------------- ---------------- +! 1) Map size too small high noise in map,bad fit field_size +! 2) dynam too low too many clean boxes dynam +! 3) dynam too high real components missed dynam +! +! Input: +! uvfile literal-string The name of the UV FITS file. +! field_size int The map dimension for a single field. +! This depends on the source size. +! field_cell float The cell size to use with 'field_size'. +! This depends on the sampling of the data. +! clean_niter int The number of CLEAN-iterations per cycle. +! clean_gain float The CLEAN loop gain. +! dynam float The minimum dynamic range required for a peak. +! This depends strongly on the SNR of the data. +! soltime float Solution time for phase selfcal (minutes). +! This depends strongly on the SNR of the data. +! thresh float The threshold peak clean flux above which +! unconstrained amplitude self-cal is viable. +! This depends strongly on the SNR of the data. +! win_mult float Multiplier for the size of the clean windows +! in units of the restoring beam. +! Output: +! One cleaned and self-calibrated map. +! +! Written by Martin Shepherd and Greg Taylor on 3/15/1994 +! Modified 12/21/1995 to clear model and start over. Takes +! a bit longer but seems to improve image quality. +!----------------------------------------------------------------------- + +float field_size; field_size = 2048 +float field_cell; field_cell = 0.2 +integer clean_niter; clean_niter = 50 +float clean_gain; clean_gain = 0.04 +float dynam; dynam = 7.0 +float soltime; soltime = 60*24 +float solt_short; solt_short = 20 +float thresh; thresh = 0.5 +float win_mult; win_mult = 1.5 +float inte; inte=0 +! Define the inner loop as a macro. + +float old_peak +float new_peak +float flux_cutoff + +#+map_residual \ +flux_cutoff = imstat(rms) * dynam;\ +inte=0;\ +repeat;\ + if (peak(flux) > flux_cutoff) peakwin win_mult;\ + clean clean_niter,clean_gain,flux_cutoff;\ + flux_cutoff = imstat(rms) * dynam;\ + selfcal;\ + new_peak = peak(flux,abs);\ + inte=inte+1;\ + if (inte>6) break;\ +until(new_peak<=flux_cutoff) + +#+map_noselfcal \ +flux_cutoff = imstat(rms) * dynam;\ +inte=0;\ +repeat;\ + if (peak(flux) > flux_cutoff) peakwin win_mult;\ + clean clean_niter,clean_gain,imstat(rms) * 5;\ + flux_cutoff = imstat(rms) * dynam;\ + keep;\ + new_peak = peak(flux);\ + inte=inte+1;\ + if(inte>10) break;\ +until(new_peak<=flux_cutoff) + +! Assumes UV data has previously been read in, otherwise uncomment +! the following line: +! observe %1 + +! Create the map grid. + +select i +mapsize field_size, field_cell + +! Self-cal to a point source. +startmod + +! Start mapping the field, using uniform weighting. +dynam = 9 +uvw 2,-1 +map_residual +print "************** FINISHED UNIFORM WEIGHTING CLEAN **************" + +! See if natural weighting reveals any further flux in the current field. + +uvw 0,-1 +win_mult = win_mult * 1.1 +!clean_niter = clean_niter * 2 +dynam = 7 +map_residual +print "************** FINISHED NATURAL WEIGHTING CLEAN **************" + +! check antenna gain calibration (computes 1 scale factor/antenna) +gscale +dynam = 6 +map_residual + +! Amplitude self-cal with a long solution time. +selfcal true, true, soltime +dynam = 5.5 +clean_niter=50; clean_gain = 0.02 +repeat;\ + map_residual + soltime = soltime/2 + selfcal true,true, soltime +until(soltime<3) + +print "************** FINISHED AMPLITUDE SELF-CAL **************" + + +! now clean the entire map +!x = (field_size-8) * field_cell / 4 +!addwin -x,x,-x,x +!clean (field_size*4),0.01 +!keep + +!device %1.ps/vps +!mapcol none +!cmul= imstat(rms)*3 +!lev -1,1,2,4,8,16,32,64,128,256,512,1024,2048,4096 +!mapl cln +!device /null + +! save data +save %1 + +! show the map (uncomment and put in a bottom contour level +! in cmul in units of Jy/beam if you want this displayed) +!device /xw +!cmul=0.001 +!loglevs (imstat(rms)*3),10000,2 +!mapl cln + + + + + diff --git a/vlbi-pipeline/ba158l1_inputs-old.py b/vlbi-pipeline/ba158l1_inputs-old.py new file mode 100644 index 0000000..96d9807 --- /dev/null +++ b/vlbi-pipeline/ba158l1_inputs-old.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python + +AIPS_NUMBER = 158 +antname = 'VLBA' # Antenna order for FITLD +geo_path = '../geod/' +#file_path = sys.argv[1] +# data information +#file_path = '../data/' +file_path = '/data/VLBI/VLBA/ba158/' +#file_name = sys.argv[2] +file_name = 'ba158l1.idifits' #better use obs_code.idifits as name +num_files = 1 #number of files to load +#exp_path = '' +#source information# +do_quack = 1 +ap_dofit = 1 +#ap_dofit = [-1,1,1,1,1,1,1,1,1,1] #modify this if some antenna is not suitable for opacity in apcal +solint = 4 +calsource = ['4C39.25','test'] # calibrator for fringe fitting and bandpass(if used). '' => automatically +target = ['J0106+00','J0824+51','J0839+03'] # target sourcer continuum source +p_ref_cal = ['P0108+0135','P0827+5217','P0839+0319'] +#please put the corresponding files in the outname[0]/ +logfilename = file_name.split('.')[0] + +##################################################### +auto_fringe = 0 #for automatic step connecting step1 and step2, if =0, the following parameters must be set, please refer to the results from step1. If =1, the following parameters are ignored. It is high recommanded to set 0, especially for EVN + +reference_antenna = 8 +search_antennas = [3,2,0] +scan_for_fringe = [1,0,30,0,1,0,32,0] + +auto_mapping = 0 #automatic step connecting step2 and step3, if =0, the following parameters must be set, just file name end with .fits +man_fr_file = ['P0108-v1-mod1.fits','P0827-v1-mod1.fits','P0839-v1-mod1.fits'] +####################mannual flagging################################ +do_flag = 1 +fgbchan=[0,0] +fgechan=[0,0] +fgbif=[2,4] +fgeif=[2,4] +fgantennas=[[0],[2,10]] +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] + +[fgtimer,outfg]=[[0],2] + +#############for_EVN_data_only######################################## +pipepath='/data/VLBI/EVN/eg119/pipeline-eg119a/' +#format'/data/path/' + +if antname != 'VLBA': + fgfile = pipepath+'eg119a.uvflg' + antfile = pipepath+'eg119a.antab' +else: + fgfile = '' + antfile = '' +###############Mannual calibration of antenna gain############################################################## +matxi=[[1.0,1.0,1.0,0.9,1.0,1.0,1.0,1.0,1.0], + [1.1,1.0,0.8,0.8,1.0,1.0,0.8,0.8,1.2], + [1.0,1.0,1.0,0.9,1.0,1.0,1.0,1.0,1.0], + [1.1,1.0,2.0,0.8,1.0,1.0,1.2,1.0,1.0]] +#[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0] + +#matxl=[[1.3,1.0,1.1,0.9,1.1,1.0,1.0,1.0,0.9,1.1], +#[1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.0,1.0,0.9], +#[1.0,0.9,0.9,0.9,1.0,1.0,0.9,1.0,1.0,1.1], +#[0.9,0.9,1.0,1.0,1.2,1.0,1.2,1.1,1.0,1.2]] + +#matxr=[[1.0,1.0,1.0,0.9,0.8,1.0,1.1,1.0,1.0,1.0], +#[1.1,1.0,1.2,1.0,0.9,1.1,1.0,1.1,0.9,1.0], +#[1.0,0.9,0.9,0.9,1.0,1.0,1.0,1.0,1.0,1.1], +#[1.0,1.0,1.0,0.9,0.8,1.0,1.2,0.8,0.9,1.2]] + +pol='I' #if use I correction, set POL='I' and ues matxi; if use both x and l, set pol='LR' and used maxtl and matxr. +# snchk=3 +# cluse=7 +ant_gan_cal = 0 #set this and go back to step2s +############################################################################# +step1 = 0 # auto control of the flags in this block +step2 = 0 # Auto control of the second block +step3 = 0 +stepn = 1 +############################################################################# +#in stepn +#same with the difmap position value(not in shift after shifted), no need to reverse +rash=[-0.186,0,1.144] #in arcsec, no need to times cos(dec) +decsh=[0.570,0,1.760] #in arcsec +do_uvshift_flag = 1 ###note!! this is in stepn and must have step3 runned diff --git a/vlbi-pipeline/ba158l1_inputsv2.py b/vlbi-pipeline/ba158l1_inputsv2.py new file mode 100644 index 0000000..2c4f623 --- /dev/null +++ b/vlbi-pipeline/ba158l1_inputsv2.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python + +AIPS_NUMBER = 158 +antname = 'VLBA' # Antenna order for FITLD +geo_path = '../geod/' +#file_path = sys.argv[1] +# data information +#file_path = '../data/' +file_path = '/data/VLBI/VLBA/ba158/' +#file_name = sys.argv[2] +file_name = 'ba158l1.idifits' #better use obs_code.idifits as name +num_files = 1 #number of files to load +#exp_path = '' +#source information# +do_quack = 1 +ap_dofit = 1 +#ap_dofit = [-1,1,1,1,1,1,1,1,1,1] #modify this if some antenna is not suitable for opacity in apcal +solint = 4 +calsource = ['4C39.25']#,'test'] # calibrator for fringe fitting and bandpass(if used). '' => automatically +target = ['J0106+00']#,'J0824+51','J0839+03'] # target sourcer continuum source +p_ref_cal = ['P0108+0135']#,'P0827+5217','P0839+0319'] +#please put the corresponding files in the outname[0]/ +logfilename = file_name.split('.')[0] + +##################################################### +auto_fringe = 0 #for automatic step connecting step1 and step2, if =0, the following parameters must be set, please refer to the results from step1. If =1, the following parameters are ignored. It is high recommanded to set 0, especially for EVN + +reference_antenna = 8 +search_antennas = [3,2,0] +scan_for_fringe = [1,0,30,0,1,0,32,0] + +auto_mapping = 0 #automatic step connecting step2 and step3, if =0, the following parameters must be set, just file name end with .fits +man_fr_file = ['P0108-v1-mod1.fits']#,'P0827-v1-mod1.fits','P0839-v1-mod1.fits'] +####################mannual flagging################################ +do_flag = 1 +fgbchan=[0,0] +fgechan=[0,0] +fgbif=[2,4] +fgeif=[2,4] +fgantennas=[[0],[2,10]] +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] + +[fgtimer,outfg]=[[0],2] + +#############for_EVN_data_only######################################## +pipepath='/data/VLBI/EVN/eg119/pipeline-eg119a/' +#format'/data/path/' + +if antname != 'VLBA': + fgfile = pipepath+'eg119a.uvflg' + antfile = pipepath+'eg119a.antab' +else: + fgfile = '' + antfile = '' +###############Mannual calibration of antenna gain############################################################## +matxi=[[1.0,1.0,1.0,0.9,1.0,1.0,1.0,1.0,1.0], + [1.1,1.0,0.8,0.8,1.0,1.0,0.8,0.8,1.2], + [1.0,1.0,1.0,0.9,1.0,1.0,1.0,1.0,1.0], + [1.1,1.0,2.0,0.8,1.0,1.0,1.2,1.0,1.0]] +#[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0] + +#matxl=[[1.3,1.0,1.1,0.9,1.1,1.0,1.0,1.0,0.9,1.1], +#[1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.0,1.0,0.9], +#[1.0,0.9,0.9,0.9,1.0,1.0,0.9,1.0,1.0,1.1], +#[0.9,0.9,1.0,1.0,1.2,1.0,1.2,1.1,1.0,1.2]] + +#matxr=[[1.0,1.0,1.0,0.9,0.8,1.0,1.1,1.0,1.0,1.0], +#[1.1,1.0,1.2,1.0,0.9,1.1,1.0,1.1,0.9,1.0], +#[1.0,0.9,0.9,0.9,1.0,1.0,1.0,1.0,1.0,1.1], +#[1.0,1.0,1.0,0.9,0.8,1.0,1.2,0.8,0.9,1.2]] + +pol='I' #if use I correction, set POL='I' and ues matxi; if use both x and l, set pol='LR' and used maxtl and matxr. +# snchk=3 +# cluse=7 +ant_gan_cal = 0 #set this and go back to step2s +############################################################################# +step1 = 0 # auto control of the flags in this block +step2 = 1 # Auto control of the second block +step3 = 1 +stepn = 0 +############################################################################# +#in stepn +#same with the difmap position value(not in shift after shifted), no need to reverse +rash=[-0.186,0,1.144] #in arcsec, no need to times cos(dec) +decsh=[0.570,0,1.760] #in arcsec +do_uvshift_flag = 1 ###note!! this is in stepn and must have step3 runned diff --git a/vlbi-pipeline/ba158l2_inputs.py b/vlbi-pipeline/ba158l2_inputs.py new file mode 100644 index 0000000..091947f --- /dev/null +++ b/vlbi-pipeline/ba158l2_inputs.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python + +AIPS_NUMBER = 160 +antname = 'VLBA' # Antenna order for FITLD +geo_path = '../geod/' +#file_path = sys.argv[1] +# data information +#file_path = '../data/' +file_path = '/data/VLBI/VLBA/ba158/' +#file_name = sys.argv[2] +file_name = 'ba158l2.idifits' #better use obs_code.idifits as name +num_files = 1 #number of files to load +#exp_path = '' +#source information# +do_quack = 1 +ap_dofit = 1 +#ap_dofit = [-1,1,1,1,1,1,1,1,1,1] #modify this if some antenna is not suitable for opacity in apcal +solint = 4 +calsource = ['4C39.25','test'] # calibrator for fringe fitting and bandpass(if used). '' => automatically +target = ['J1133+47','J1204+55','J1256+27','J1318+32'] # target sourcer continuum source +p_ref_cal = ['P1138+4745','P1208+5441','P1300+2830','P1317+3425'] +#please put the corresponding files in the outname[0]/ +logfilename = file_name.split('.')[0] + +##################################################### +auto_fringe = 0 #for automatic step connecting step1 and step2, if =0, the following parameters must be set, please refer to the results from step1. If =1, the following parameters are ignored. It is high recommanded to set 0, especially for EVN + +reference_antenna = 4 +search_antennas = [8,2,0] +scan_for_fringe = [0,8,15,0,0,8,17,0] + +auto_mapping = 0 #automatic step connecting step2 and step3, if =0, the following parameters must be set, just file name end with .fits +man_fr_file = ['P1138-v1-mod1.fits','P1208-v1-mod1.fits','P1300-v1-mod1.fits','P1317-v1-mod1.fits'] +#####################mannual flagging################################ +do_flag = 0 +fgbchan=[0] +fgechan=[0] +fgbif=[0] +fgeif=[0] +fgantennas=[[1]] +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] + +[fgtimer,outfg]=[[0],2] + +#############for_EVN_data_only######################################## +pipepath='/data/VLBI/EVN/eg119/pipeline-eg119a/' +#format'/data/path/' + +if antname != 'VLBA': + fgfile = pipepath+'eg119a.uvflg' + antfile = pipepath+'eg119a.antab' +else: + fgfile = '' + antfile = '' +###############Mannual calibration of antenna gain############################################################## +matxi=[[1.0,1.0,1.0,0.9,1.0,1.0,1.0,1.0,1.0], + [1.1,1.0,0.8,0.8,1.0,1.0,0.8,0.8,1.2], + [1.0,1.0,1.0,0.9,1.0,1.0,1.0,1.0,1.0], + [1.1,1.0,2.0,0.8,1.0,1.0,1.2,1.0,1.0]] +#[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0] + +#matxl=[[1.3,1.0,1.1,0.9,1.1,1.0,1.0,1.0,0.9,1.1], +#[1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.0,1.0,0.9], +#[1.0,0.9,0.9,0.9,1.0,1.0,0.9,1.0,1.0,1.1], +#[0.9,0.9,1.0,1.0,1.2,1.0,1.2,1.1,1.0,1.2]] + +#matxr=[[1.0,1.0,1.0,0.9,0.8,1.0,1.1,1.0,1.0,1.0], +#[1.1,1.0,1.2,1.0,0.9,1.1,1.0,1.1,0.9,1.0], +#[1.0,0.9,0.9,0.9,1.0,1.0,1.0,1.0,1.0,1.1], +#[1.0,1.0,1.0,0.9,0.8,1.0,1.2,0.8,0.9,1.2]] + +pol='I' #if use I correction, set POL='I' and ues matxi; if use both x and l, set pol='LR' and used maxtl and matxr. +# snchk=3 +# cluse=7 +ant_gan_cal = 0 #set this and go back to step2s +############################################################################# +step1 = 0 # auto control of the flags in this block +step2 = 0 # Auto control of the second block +step3 = 1 +stepn = 0 +############################################################################# +#in stepn +#in difmap, is peak(x),peak(y) +rash=[-0.186,0,1.144,0.0] #in arcsec, no need to times cos(dec) +decsh=[0.570,0,1.760,0.0] #in arcsec +do_uvshift_flag = 1 ###note!! this is in stepn and must have step3 runned \ No newline at end of file diff --git a/vlbi-pipeline/ba160d_input.py.exampleInput b/vlbi-pipeline/ba160d_input.py.exampleInput new file mode 100644 index 0000000..1563698 --- /dev/null +++ b/vlbi-pipeline/ba160d_input.py.exampleInput @@ -0,0 +1,94 @@ +#!/usr/bin/env python + +AIPS_NUMBER = 160 +antname = 'VLBA' # Antenna order for FITLD +geo_path = '../geod/' +#file_path = sys.argv[1] +# data information +#file_path = '../data/' +file_path = '/data/VLBI/VLBA/ba160/' +#file_name = sys.argv[2] +file_name = 'ba160d.idifits' #better use obs_code.idifits as name +num_files = 1 #number of files to load +#exp_path = '' +#source information# +do_quack = 1 +ap_dofit = 1 +#ap_dofit = [-1,1,1,1,1,1,1,1,1,1] #modify this if some antenna is not suitable for opacity in apcal +solint = 2 +calsource = ['J1642+3948'] # calibrator for fringe fitting and bandpass(if used). '' => automatically +target = ['GRB221009A'] # target sourcer continuum source +p_ref_cal = ['J1905+1943'] +#please put the corresponding files in the outname[0]/ +logfilename = file_name.split('.')[0] + +##################################################### +auto_fringe = 0 #for automatic step connecting step1 and step2, if =0, the following parameters must be set, please refer to the results from step1. If =1, the following parameters are ignored. It is high recommanded to set 0, especially for EVN + +reference_antenna = 9 +search_antennas = [4,2,0] +scan_for_fringe = [0,4,41,0,0,4,43,0] + +auto_mapping = 0 #automatic step connecting step2 and step3, if =0, the following parameters must be set, just file name end with .fits +man_fr_file = ['J1905-v1-mod1.fits'] +#####################mannual flagging################################ +do_flag = 0 +fgbchan=[0] +fgechan=[0] +fgbif=[0] +fgeif=[0] +fgantennas=[[1]] +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] + +[fgtimer,outfg]=[[0],2] + +#############for_EVN_data_only######################################## +pipepath='/data/VLBI/EVN/eg119/pipeline-eg119a/' +#format'/data/path/' + +if antname != 'VLBA': + fgfile = pipepath+'eg119a.uvflg' + antfile = pipepath+'eg119a.antab' +else: + fgfile = '' + antfile = '' +###############Mannual calibration of antenna gain############################################################## +matxi=[[1.9,1.0,0.8,1.0,1.1,1.0,1.0,1.1,1.1,1.7], + [1.9,1.0,0.7,1.0,1.0,1.0,1.0,1.0,1.1,1.8], + [1.7,1.0,0.8,1.0,1.0,1.0,1.0,1.1,1.1,1.8], + [1.9,1.0,0.8,1.0,1.0,1.0,1.0,1.0,1.0,1.8]] +#[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0] + +#matxl=[[1.3,1.0,1.1,0.9,1.1,1.0,1.0,1.0,0.9,1.1], +#[1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.0,1.0,0.9], +#[1.0,0.9,0.9,0.9,1.0,1.0,0.9,1.0,1.0,1.1], +#[0.9,0.9,1.0,1.0,1.2,1.0,1.2,1.1,1.0,1.2]] + +#matxr=[[1.0,1.0,1.0,0.9,0.8,1.0,1.1,1.0,1.0,1.0], +#[1.1,1.0,1.2,1.0,0.9,1.1,1.0,1.1,0.9,1.0], +#[1.0,0.9,0.9,0.9,1.0,1.0,1.0,1.0,1.0,1.1], +#[1.0,1.0,1.0,0.9,0.8,1.0,1.2,0.8,0.9,1.2]] + +pol='I' #if use I correction, set POL='I' and ues matxi; if use both x and l, set pol='LR' and used maxtl and matxr. +# snchk=3 +# cluse=7 +ant_gan_cal = 1 #set this and go back to step2s +############################################################################# +######parms may be used in step3 +no_rate = 1 # if =1 suppress rate +dwin = 1 # the delay search window centered on 0 and in unit of nsec +rwin = 10 # the rate search window centered on 0 and in unit of MHz +solint_cal = 150 # the solution interval for task CALIB "A&P"(output file is SCL11) +############################################################################# +step1 = 0 # auto control of the flags in this block +step2 = 0 # Auto control of the second block +step3 = 0 +stepn = 1 +############################################################################# +#in stepn +#same with the difmap position value, no need to reverse +rash=[-2.56e-3] #in arcsec, no need to times cos(dec) +decsh=[-3.94e-4] #in arcsec +do_uvshift_flag = 1 ###note!! this is from stepn diff --git a/vlbi-pipeline/check_utils.py b/vlbi-pipeline/check_utils.py index a7ecafb..2ba33da 100644 --- a/vlbi-pipeline/check_utils.py +++ b/vlbi-pipeline/check_utils.py @@ -11,14 +11,11 @@ from utils import * from config import * from get_utils import * +from logging_config import logger + -def mprint(intext, logfile): - print(intext) - f = open(logfile, 'a') - f.writelines(intext + '\n') - f.close() -def check_sx(indata, logfile): +def check_sx(indata): if indata.header.naxis[3] > 1: fq = indata.table('AIPS FQ', 0) fq_span = fq[0]['if_freq'][indata.header.naxis[3]-1] - \ @@ -31,7 +28,7 @@ def check_sx(indata, logfile): return False -def check_clh(indata, logfile): +def check_clh(indata): if indata.header.naxis[3] > 1: fq = indata.table('AIPS FQ', 0) fq_span = fq[0]['if_freq'][indata.header.naxis[3]-1] - \ @@ -61,16 +58,18 @@ def check_geo(indata): ############################################################################## # Check table versions # -def check_sncl(indata, sn, cl, logfile): +def check_sncl(indata, sn, cl): if (indata.table_highver('AIPS CL') == cl and indata.table_highver('AIPS SN') == sn): - logging.info('SN and CL tables ok. ') + logger.info('SN and CL tables ok. ') + logger.info('Current top CL table:' + str(indata.table_highver('AIPS CL'))) + logger.info('Current top SN table:' + str(indata.table_highver('AIPS SN'))) if indata.table_highver('AIPS CL') < cl: raise RuntimeError('Not enough CL tables') if indata.table_highver('AIPS CL') > cl: - logging.warning('Deleting old CL tables. ') + logger.warning('Deleting old CL tables. ') while indata.table_highver('AIPS CL') > cl: indata.zap_table('AIPS CL', 0) @@ -78,7 +77,7 @@ def check_sncl(indata, sn, cl, logfile): raise RuntimeError('Not enough SN tables') if indata.table_highver('AIPS SN') > sn: - logging.warning('Deleting old SN tables. ') + logger.warning('Deleting old SN tables. ') while indata.table_highver('AIPS SN') > sn: indata.zap_table('AIPS SN', 0) ############################################################################## @@ -92,7 +91,7 @@ def check_sn_ver(indata): ############################################################################## # - +''' def check_calsource(indata, calsource): if isinstance(calsource, str): @@ -125,11 +124,11 @@ def check_calsource(indata, calsource): return calsource -def check_RDBE(indata, logfile, inter_flag, dtype): +def check_RDBE(indata, inter_flag, dtype): - logging.info('################################################ ',) - logging.info('### Checking geoblock data for RDBE errors ##### ',) - logging.info('################################################') + logger.info('################################################ ',) + logger.info('### Checking geoblock data for RDBE errors ##### ',) + logger.info('################################################') avspc = AIPSTask('AVSPC') nchan = indata.header['naxis'][2] @@ -155,7 +154,7 @@ def check_RDBE(indata, logfile, inter_flag, dtype): uvavg.outdisk = indata.disk uvavg.go() - block_nr = make_check_RDBE(indata, logfile, inter_flag, dtype) + block_nr = make_check_RDBE(indata, inter_flag, dtype) data1.zap() data2.zap() @@ -163,8 +162,8 @@ def check_RDBE(indata, logfile, inter_flag, dtype): ############################################################################## # check_cal - -def check_cal(indata, source, outdisk, logfile, imna): +''' +def check_cal(indata, source, outdisk, imna): if imna == '': outname = source else: @@ -180,22 +179,22 @@ def check_cal(indata, source, outdisk, logfile, imna): return indata -def check_data(data, n, geo, cont, line, logfile): +def check_data(data, n, geo, cont, line): count = 0 for i in range(len(data)): if data[i].exists(): count = count+1 - data_info(data[i], i, geo, cont, line, logfile) + data_info(data[i], i, geo, cont, line) if count == n: - logging.info('Found %s data files on disk', str(count)) + logger.info('Found %s data files on disk', str(count)) else: - logging.info( + logger.info( 'Expected %s files, but found %s data files on disk ', str(n), str(count)) ############################################################################## # -def checkatmos(inter_flag, logfile): +def checkatmos(inter_flag): file = 'ATMOS.FITS' data = loadtxt(file, skiprows=1) @@ -240,8 +239,8 @@ def checkatmos(inter_flag, logfile): n = n + 1 if m < len(data): - logging.info('Original ATMOS.FITS file has zero zenith delays.') - logging.info('Making new ATMOS file.') + logger.info('Original ATMOS.FITS file has zero zenith delays.') + logger.info('Making new ATMOS file.') f = open('NEWATMOS.FITS', 'w') f.writelines(' ' + str(n) + '\n') for i in data: @@ -256,6 +255,6 @@ def checkatmos(inter_flag, logfile): os.popen('mv ATMOS.FITS ATMOS.FITS.orig') os.popen('mv NEWATMOS.FITS ATMOS.FITS') else: - logging.info('ATMOS.FITS file ok.') + logger.info('ATMOS.FITS file ok.') - plotatmos(inter_flag, logfile) + plotatmos(inter_flag) diff --git a/vlbi-pipeline/code_input.pytest b/vlbi-pipeline/code_input.pytest new file mode 100644 index 0000000..8c01a1f --- /dev/null +++ b/vlbi-pipeline/code_input.pytest @@ -0,0 +1,88 @@ +#!/usr/bin/env python + +AIPS_NUMBER = 159 +antname = 'VLBA' # Antenna order for FITLD +geo_path = '../geod/' +#file_path = sys.argv[1] +# data information +#file_path = '../data/' +file_path = '/data/VLBI/VLBA/ba160/' +#file_name = sys.argv[2] +file_name = 'ba160b.idifits' #better use obs_code.idifits as name +num_files = 1 #number of files to load +#exp_path = '' +#source information# +do_quack = 1 +ap_dofit = 1 +#ap_dofit = [-1,1,1,1,1,1,1,1,1,1] #modify this if some antenna is not suitable for opacity in apcal +solint = 4 +calsource = ['J1642+3948'] # calibrator for fringe fitting and bandpass(if used). '' => automatically +target = ['GRB221009A'] # target sourcer continuum source +p_ref_cal = ['J1905+1943'] +#please put the corresponding files in the outname[0]/ +logfilename = file_name.split('.')[0] + +##################################################### +auto_fringe = 0 #for automatic step connecting step1 and step2, if =0, the following parameters must be set, please refer to the results from step1. If =1, the following parameters are ignored. It is high recommanded to set 0, especially for EVN + +reference_antenna = 1 +search_antennas = [6,2,0] +scan_for_fringe = [0,20,31,0,0,20,33,0] + +auto_mapping = 0 #automatic step connecting step2 and step3, if =0, the following parameters must be set, just file name end with .fits +man_fr_file = ['J1905-v1-mod1.fits'] +#####################mannual flagging################################ +do_flag = 0 +fgbchan=[0] +fgechan=[0] +fgbif=[0] +fgeif=[0] +fgantennas=[[1]] +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] + +[fgtimer,outfg]=[[0],2] + +#############for_EVN_data_only######################################## +pipepath='/data/VLBI/EVN/eg119/pipeline-eg119a/' +#format'/data/path/' + +if antname != 'VLBA': + fgfile = pipepath+'eg119a.uvflg' + antfile = pipepath+'eg119a.antab' +else: + fgfile = '' + antfile = '' +###############Mannual calibration of antenna gain############################################################## +matxi=[[1.9,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.8], + [1.9,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.8], + [1.9,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.8], + [1.9,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.8]] +#[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0] + +#matxl=[[1.3,1.0,1.1,0.9,1.1,1.0,1.0,1.0,0.9,1.1], +#[1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.0,1.0,0.9], +#[1.0,0.9,0.9,0.9,1.0,1.0,0.9,1.0,1.0,1.1], +#[0.9,0.9,1.0,1.0,1.2,1.0,1.2,1.1,1.0,1.2]] + +#matxr=[[1.0,1.0,1.0,0.9,0.8,1.0,1.1,1.0,1.0,1.0], +#[1.1,1.0,1.2,1.0,0.9,1.1,1.0,1.1,0.9,1.0], +#[1.0,0.9,0.9,0.9,1.0,1.0,1.0,1.0,1.0,1.1], +#[1.0,1.0,1.0,0.9,0.8,1.0,1.2,0.8,0.9,1.2]] + +pol='I' #if use I correction, set POL='I' and ues matxi; if use both x and l, set pol='LR' and used maxtl and matxr. +# snchk=3 +# cluse=7 +ant_gan_cal = 0 #set this and go back to step2s +############################################################################ +step1 = 0 # auto control of the flags in this block +step2 = 0 # Auto control of the second block +step3 = 0 +stepn = 1 +############################################################################# +#in stepn +#same with the difmap position value, no need to reverse +rash=-2.56e-3 #in arcsec, no need to times cos(dec) +decsh=-3.94e-4 #in arcsec +do_uvshift_flag = 1 ###note!! this is from stepn diff --git a/vlbi-pipeline/config.py b/vlbi-pipeline/config.py index 7ef2d94..fdb2941 100644 --- a/vlbi-pipeline/config.py +++ b/vlbi-pipeline/config.py @@ -1,56 +1,191 @@ #!/usr/bin/env python import sys -#####################Edit part######################################### -AIPS_NUMBER = 248 -antname = 'VLBA' # Antenna order for FITLD +import os +import numpy as np +import argparse + +try: + FileNotFoundError +except NameError: + FileNotFoundError = IOError + +# Function to load configuration file from custom path +def load_config(config_path=None): + """ + Load configuration file from specified path. + + Priority: + 1. Environment variable VLBI_CONFIG (set by main.py from --config argument) + 2. Default: configs/default_input.py + + Args: + config_path: Path to configuration file + + Returns: + Module object with configuration parameters + """ + if config_path is None: + # Get from environment variable (set by main.py) + config_path = os.environ.get('VLBI_CONFIG') + + if config_path is None: + # Default configuration + config_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), + 'configs', 'default_input.py') + print("No configuration file specified. Using default: {0}".format(config_path)) + + # Convert to absolute path + if not os.path.isabs(config_path): + config_path = os.path.abspath(config_path) + + if not os.path.exists(config_path): + raise FileNotFoundError("Configuration file not found: {}".format(config_path)) + + print("Loading configuration from: {0}".format(config_path)) + + module_name = "config_module" + if sys.version_info[0] >= 3: + import importlib.util + spec = importlib.util.spec_from_file_location(module_name, config_path) + config_module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(config_module) + else: + import imp + config_module = imp.load_source(module_name, config_path) + print(config_module) + return config_module + +# Load configuration +inputs = load_config() + +#set input parameters in sparate py files which can be one data per input and can also be tracked for history. + +AIPS_NUMBER = inputs.AIPS_NUMBER +antname = inputs.antname # Antenna order for FITLD geo_path = '../geod/' -# file_path = sys.argv[1] +#file_path = sys.argv[1] # data information #file_path = '../data/' -file_path = '/data/VLBI/VLBA/br240/br240a/' +file_path = inputs.file_path #file_name = sys.argv[2] -file_name = 'br240a.idifits' #better use obs_code.idifits as name -num_files = 1 #number of files to load +file_name = inputs.file_name #better use obs_code.idifits as name +num_files = inputs.num_files #number of files to load #exp_path = '' #source information# -do_quack = 1 -solint = 4 -calsource = ['J1642+3948'] # calibrator '' => automatically -target = ['J1702+1301'] # target sourcer continuum source -p_ref_cal = ['J1707+1331'] +do_quack = inputs.do_quack +ap_dofit = inputs.ap_dofit +#ap_dofit = [-1,1,1,1,1,1,1,1,1,1] #modify this if some antenna is not suitable for opacity in apcal +solint = inputs.solint +calsource = inputs.calsource # calibrator for fringe fitting and bandpass(if used). '' => automatically +target = inputs.target # target sourcer continuum source +p_ref_cal = inputs.p_ref_cal +#please put the corresponding files in the outname[0]/ +logfilename = inputs.logfilename + +##################################################### +auto_fringe = inputs.auto_fringe #for automatic step connecting step1 and step2, if =0, the following parameters must be set, +# please refer to the results from step1. If =1, the following parameters are ignored. It is high recommanded to set 0, especially for EVN + +reference_antenna = inputs.reference_antenna +search_antennas = inputs.search_antennas +scan_for_fringe = inputs.scan_for_fringe +av_ifs_f1 = inputs.av_ifs_f1 + +auto_mapping = inputs.auto_mapping #automatic step connecting step2 and step3, +# if =0, the following parameters must be set, just file name end with .fits +man_fr_file = inputs.man_fr_file +#####################mannual flagging################################ +do_flag = inputs.do_flag +fgbchan= inputs.fgbchan +fgechan= inputs.fgechan +fgbif=inputs.fgbif +fgeif=inputs.fgeif +fgantennas=inputs.fgantennas +fgtimer = inputs.fgtimer +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] +sp_quack_flag = inputs.sp_quack_flag +sp_quack_ant = inputs.sp_quack_ant +sp_quack_beg =inputs.sp_quack_beg +sp_quack_endb =inputs.sp_quack_endb +sp_quack_el =inputs.sp_quack_el +outfg=inputs.outfg +#############for_EVN_data_only######################################## +pipepath=inputs.pipepath +#format'/data/path/' + +if antname != 'VLBA': + fgfile = inputs.fgfile + antfile = inputs.antfile +else: + fgfile = '' + antfile = '' +###############Mannual calibration of antenna gain############################################################## +matxi=inputs.matxi +#[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0] + +#matxl=inputs.matxl + +#matxr=inputs.matxr + +pol=inputs.pol #if use I correction, set POL='I' and ues matxi; if use both x and l, set pol='LR' and used maxtl and matxr. +# snchk=3 +# cluse=7 +ant_gan_cal = inputs.ant_gan_cal #set this and go back to step2s +############################################################################# +######parms may be used in step3### +del_old_mod = inputs.del_old_mod +no_rate = inputs.no_rate +av_ifs_f2=inputs.av_ifs_f2 +av_ifs_ca1=inputs.av_ifs_ca1 +rdp_parm= inputs.rdp_parm +dwin = inputs.dwin +rwin = inputs.rwin +solint_cal = inputs.solint_cal +############################################################################# ################# # Control Flags # ################# # set to 1 for automatic procedure, set 0 to enable task by ta sk mannual checking -step1 = 0 # auto control of the flags in this block -step2 = 0 # Auto control of the second block -step3 = 1 +step1 = inputs.step1 # auto control of the flags in this block +step2 = inputs.step2 # Auto control of the second block +step3 = inputs.step3 +stepn = inputs.stepn +############################################################################# +#if you need further functions after step3, please check these +#uv-shift before spliting, belong to stepn +rash=inputs.rash #in arcsec, no need to times cos(dec) +decsh=inputs.decsh #in arcsec +do_uvshift_flag = inputs.do_uvshift_flag ###note!! this is out of any steps +########DO NOT EDIT UNLESS YOU KNOW THE MEANING ####################################################################################### -########DO NOT EDIT UNLESS YOU KNOW THE MEANING ########## -AIPS_VERSION = '31DEC19' -version_date = '2016/04/06' +# AIPS_VERSION = '31DEC19' +# version_date = '2016/04/06' +AIPS_VERSION = inputs.AIPS_VERSION +version_date = inputs.version_date INTER_FLAG = 0 # interactive (1) or non-interactive (0) main_file = 'main.py' -DEF_DISKS = 1 +DEF_DISKS = 1 # FITLD parameters, for multiple input files change ncount # file_path = sys.argv[1] #fr_path = exp_path TECU_model = 'jplg' ############################################################################# -### Do not change or move this part #### +### Do not change or move this part #### defdisk=1 n = 1 -[filename, outname, outclass] = [range(n), range(n), range(n)] -[nfiles, ncount, doconcat] = [range(n), range(n), range(n)] -[outdisk, flagfile, antabfile] = [range(n), range(n), range(n)] +[filename, outname, outclass] = [list(range(n)), list(range(n)), list(range(n))] +[nfiles, ncount, doconcat] = [list(range(n)), list(range(n)), list(range(n))] +[outdisk, flagfile, antabfile] = [list(range(n)), list(range(n)), list(range(n))] for i in range(n): - [flagfile[i], antabfile[i], outdisk[i]] = ['', '', defdisk] - [nfiles[i], ncount[i], doconcat[i]] = [0, 1, 1] + [flagfile[i], antabfile[i], outdisk[i]] = ['', '', defdisk] + [nfiles[i], ncount[i], doconcat[i]] = [0, 1, 1] ############################################################################# ############### # Input Files # @@ -63,7 +198,10 @@ nfiles[0] = 1 # FITLD parameter NFILES ncount[0] = num_files # FITLD parameter NCOUNT doconcat[0] = 1 # FITLD parameter DOCONCAT - +flagfile[0] = fgfile +antabfile[0] = antfile +code = '' +smodel=[0,0] #note: this version no bandpass used for fringe fitting. #### for mannual checking########### ''' @@ -76,4 +214,4 @@ outname[0] = filename.split(',')[0] execfile(r''+main_file) -''' \ No newline at end of file +''' diff --git a/vlbi-pipeline/configs/.gitignore b/vlbi-pipeline/configs/.gitignore new file mode 100644 index 0000000..c285624 --- /dev/null +++ b/vlbi-pipeline/configs/.gitignore @@ -0,0 +1,12 @@ +# Ignore personal configuration files +*_input.py + +# Keep template and examples +!template_input.py +!bz111ac_input.py + + +# Keep documentation +!README.md +!USAGE.md +!.gitkeep diff --git a/vlbi-pipeline/configs/.gitkeep b/vlbi-pipeline/configs/.gitkeep new file mode 100644 index 0000000..8193512 --- /dev/null +++ b/vlbi-pipeline/configs/.gitkeep @@ -0,0 +1 @@ +# Keep configs directory in git diff --git a/vlbi-pipeline/configs/README.md b/vlbi-pipeline/configs/README.md new file mode 100644 index 0000000..070a742 --- /dev/null +++ b/vlbi-pipeline/configs/README.md @@ -0,0 +1,26 @@ +# Configuration Files + +This directory contains parameter files for different VLBI observations. + +## File Naming Convention + +Use the format: `{obs_code}_input.py` + +Example: `bz111cl_input.py`, `ba158l1_input.py` + +## Usage + +When running the pipeline, specify the configuration file: + +```bash +# Method 1: Using command-line argument (Recommended) +ParselTongue main.py --config configs/bz111cl_input.py + +# Method 2: Using environment variable +export VLBI_CONFIG=configs/bz111cl_input.py +ParselTongue main.py +``` + +## Template + +See `template_input.py` for a template configuration file with all available parameters. diff --git a/vlbi-pipeline/configs/USAGE.md b/vlbi-pipeline/configs/USAGE.md new file mode 100644 index 0000000..229c84c --- /dev/null +++ b/vlbi-pipeline/configs/USAGE.md @@ -0,0 +1,267 @@ +# 配置文件使用指南 / Configuration Guide + +## 概述 / Overview + +从 2026 年版本开始,所有参数配置文件都存放在 `configs/` 目录下,与主程序代码分离,便于管理和版本控制。 + +Starting from the 2026 version, all parameter configuration files are stored in the `configs/` directory, separated from the main program code for better management and version control. + +--- + +## 快速开始 / Quick Start + +### 1. 创建配置文件 / Create Configuration File + +```bash +# 复制模板 / Copy template +cp configs/template_input.py configs/bz111cl_input.py + +# 编辑配置 / Edit configuration +vim configs/bz111cl_input.py +``` + +### 2. 运行管道 / Run Pipeline + +```bash +# 方法1:命令行参数(推荐)/ Method 1: Command-line argument (Recommended) +ParselTongue main.py --config configs/bz111cl_input.py + +# 方法2:环境变量 / Method 2: Environment variable +export VLBI_CONFIG=configs/bz111cl_input.py +ParselTongue main.py + +# 方法3:默认配置 / Method 3: Default configuration +# 创建 configs/default_input.py 后直接运行 +# Create configs/default_input.py then run directly +ParselTongue main.py +``` + +--- + +## 配置文件命名规范 / Naming Convention + +建议使用以下命名格式: +Recommended naming format: + +``` +{observation_code}_input.py +``` + +示例 / Examples: +- `bz111cl_input.py` - 观测代码 bz111cl +- `ba158l1_input.py` - 观测代码 ba158l1 +- `eg119a_input.py` - 观测代码 eg119a + +--- + +## 目录结构 / Directory Structure + +``` +vlbi-pipeline/ +├── configs/ # 配置文件目录 / Configuration directory +│ ├── README.md # 配置说明 / Configuration guide +│ ├── template_input.py # 配置模板 / Template file +│ ├── ba158l1_input.py # 示例配置 / Example configuration +│ ├── bz111cl_input.py # 你的配置 / Your configuration +│ └── default_input.py # 默认配置(可选)/ Default config (optional) +├── vlbi-pipeline/ # 主程序代码 / Main program code +│ ├── config.py # 配置加载器 / Configuration loader +│ ├── main.py # 主程序 / Main program +│ └── ... +└── ... +``` + +--- + +## 配置文件内容 / Configuration Content + +### 必需参数 / Required Parameters + +```python +# AIPS 设置 / AIPS Settings +AIPS_NUMBER = 158 +antname = 'VLBA' # or 'EVN' + +# 数据信息 / Data Information +file_path = '/path/to/data/' +file_name = 'obs_code.idifits' +num_files = 1 + +# 源信息 / Source Information +calsource = ['4C39.25'] +target = ['J0106+00'] +p_ref_cal = ['P0108+0135'] +``` + +### 可选参数 / Optional Parameters + +详见 [template_input.py](template_input.py) 查看所有可用参数和说明。 + +See [template_input.py](template_input.py) for all available parameters and descriptions. + +--- + +## 高级用法 / Advanced Usage + +### 使用绝对路径 / Using Absolute Paths + +```bash +ParselTongue main.py --config /full/path/to/configs/your_obs_input.py +``` + +### 使用相对路径 / Using Relative Paths + +```bash +# 从项目根目录运行 / Run from project root +ParselTongue vlbi-pipeline/main.py --config configs/your_obs_input.py + +# 从其他目录运行 / Run from other directory +ParselTongue main.py --config ../configs/your_obs_input.py +``` + +### 批处理多个观测 / Batch Processing Multiple Observations + +```bash +#!/bin/bash +# process_all.sh + +for config in configs/*_input.py; do + if [ "$config" != "configs/template_input.py" ]; then + echo "Processing $config..." + ParselTongue main.py --config "$config" + fi +done +``` + +--- + +## 版本控制建议 / Version Control Recommendations + +### .gitignore 设置 + +```gitignore +# 忽略个人配置 / Ignore personal configurations +configs/*_input.py + +# 保留模板和示例 / Keep templates and examples +!configs/template_input.py +!configs/README.md +!configs/.gitkeep +``` + +### 配置文件版本管理 / Configuration Version Management + +```bash +# 为重要观测创建配置备份 / Create backup for important observations +cp configs/bz111cl_input.py configs/backups/bz111cl_input_20260115.py + +# 或使用 git 标签 / Or use git tags +git add configs/bz111cl_input.py +git commit -m "Config for observation bz111cl" +git tag -a bz111cl-config -m "Configuration for bz111cl observation" +``` + +--- + +## 迁移指南 / Migration Guide + +### 从旧版本迁移 / Migrating from Old Version + +如果你有旧的配置文件(如 `bz111cl_input.py`)在 `vlbi-pipeline/` 目录下: + +If you have old configuration files (like `bz111cl_input.py`) in the `vlbi-pipeline/` directory: + +```bash +# 1. 移动到 configs 目录 / Move to configs directory +mv vlbi-pipeline/bz111cl_input.py configs/ + +# 2. 使用新方式运行 / Run with new method +ParselTongue main.py --config configs/bz111cl_input.py +``` + +旧的直接导入方式仍然支持,但不推荐: +The old direct import method still works but is deprecated: + +```python +# 旧方式(不推荐)/ Old way (deprecated) +# In config.py: +import bz111cl_input as inputs + +# 新方式(推荐)/ New way (recommended) +# Use --config parameter +``` + +--- + +## 故障排除 / Troubleshooting + +### 找不到配置文件 / Configuration File Not Found + +``` +Error: Configuration file not found: configs/your_obs_input.py +``` + +**解决方案 / Solution:** +- 检查文件路径是否正确 / Check file path is correct +- 使用绝对路径 / Use absolute path +- 确认文件存在 / Confirm file exists: `ls -l configs/` + +### 配置文件语法错误 / Configuration Syntax Error + +``` +Error: invalid syntax in configuration file +``` + +**解决方案 / Solution:** +- 检查 Python 语法 / Check Python syntax +- 确保所有列表、字典正确闭合 / Ensure all lists/dicts are properly closed +- 参考模板文件 / Refer to template file + +### 导入错误 / Import Error + +``` +ModuleNotFoundError: No module named 'inputs' +``` + +**解决方案 / Solution:** +- 使用新的配置加载方式 / Use new configuration loading method +- 确保使用 `--config` 参数 / Ensure using `--config` parameter + +--- + +## 最佳实践 / Best Practices + +1. **使用描述性文件名** / Use descriptive filenames + - ✅ `bz111cl_phase1_input.py` + - ❌ `test.py`, `config1.py` + +2. **添加注释** / Add comments + ```python + # 2026-01-15: Adjusted gain for antenna 3 due to weather + matxi = [[1.0, 1.0, 0.8, ...]] + ``` + +3. **保持模板更新** / Keep template updated + - 当添加新参数时更新模板 / Update template when adding new parameters + +4. **使用版本控制** / Use version control + - 为重要配置创建 git 标签 / Create git tags for important configs + +5. **分离环境配置** / Separate environment configs + ``` + configs/ + ├── production/ + │ └── bz111cl_input.py + ├── testing/ + │ └── bz111cl_test_input.py + └── development/ + └── bz111cl_dev_input.py + ``` + +--- + +## 获取帮助 / Getting Help + +- 查看模板文件:[template_input.py](template_input.py) +- 查看示例配置:[ba158l1_input.py](ba158l1_input.py) +- 提交 Issue:[GitHub Issues](https://github.com/SHAO-SKA/vlbi-pipeline/issues) diff --git a/vlbi-pipeline/configs/bz111ac_input.py b/vlbi-pipeline/configs/bz111ac_input.py new file mode 100644 index 0000000..9884d31 --- /dev/null +++ b/vlbi-pipeline/configs/bz111ac_input.py @@ -0,0 +1,119 @@ +#!/usr/bin/env python + +AIPS_NUMBER = 111 +antname = 'VLBA' # Antenna order for FITLD +geo_path = '../geod/' +#file_path = sys.argv[1] +# data information +#file_path = '../data/' +file_path = '/data/VLBI/bz111/' +#file_name = sys.argv[2] +file_name = 'bz111ac.idifits' #better use obs_code.idifits as name +num_files = 1 #number of files to load +#exp_path = ''AIPS_VERSION +AIPS_VERSION = '31DEC25' #'31DEC19' or '31DEC25' +version_date = '2025/06/01' #'2016/04/06' or '2025/06/01' +#source information# +do_quack = 1 +ap_dofit = 1 +#ap_dofit = [-1,1,1,1,1,1,1,1,1,1] #modify this if some antenna is not suitable for opacity in apcal +solint = 4 +calsource = ['3C286'] # calibrator for fringe fitting and bandpass(if used). '' => automatically +target = ['TARG'] # target sourcer continuum source +p_ref_cal = ['PHCAL'] +#please put the corresponding files in the outname[0]/ +logfilename = file_name.split('.')[0] + +##################################################### +auto_fringe = 0 #for automatic step connecting step1 and step2, if =0, the following parameters must be set, please refer to the results from step1. If =1, the following parameters are ignored. It is high recommanded to set 0, especially for EVN +##################################################### +reference_antenna = 8 +search_antennas = [2,3,0] #HN, KP +scan_for_fringe = [1,0,22,0,1,0,24,0] +av_ifs_f1 = 0 # average ifs if is 1 duriong fring + +auto_mapping = 0 #automatic step connecting step2 and step3, if =0, the following parameters must be set, just file name end with .fits +#man_fr_file = ['J1925-v1-mod1.fits'] +#####################mannual flagging################################ +## This two parms can work through out each step, so you can update it every time +do_flag = 0 +fgbchan=[0,0,0,0] +fgechan=[0,0,0,0] +fgbif=[0,1,3,4] +fgeif=[0,1,3,4] +fgantennas=[[0],[7],[3,7,9],[1]] +fgtimer=[[1,1,35,40,1,1,36,50],[0,21,30,0,0,23,0,0],[0,21,30,0,0,23,0,0],[0]] +#print len(fgbchan),len(fgechan),len(fgbif),len(fgantennas) +#fgbchan,fgechan,fgbif,fgeif=[[0,0],[0,0],[5,7],[5,7]] +#fgantennas=[[0],[7]] +#fgtimer=[[0],[0,0,0,0,1,1,1,1,]] + + +sp_quack_flag = 0 +# for specific antennas, do specal quack option *e.g. in HSA or other combiniton of arrays*, format similar with do_flag +# this time for EB, SC +sp_quack_ant = [[2,11]] +sp_quack_beg = [25] +sp_quack_endb = [0] +sp_quack_el = [30] + +outfg=2 + +#############for_EVN_data_only######################################## +pipepath='/data/VLBI/EVN/eg119/pipeline-eg119a/' +#format'/data/path/' + +if antname != 'VLBA': + fgfile = pipepath+'eg119a.uvflg' + antfile = pipepath+'eg119a.antab' +else: + fgfile = '' + antfile = '' +###############Mannual calibration of antenna gain############################################################## +matxi=[[1.0,1.0,1.0,1.0,1.0,1.1,1.1,0.9,1.1,1.0], + [1.0,1.0,1.0,1.0,1.0,1.0,1.1,0.9,1.1,1.0], + [1.1,1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.1,1.0], + [1.0,1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.1,1.0], + [1.0,1.0,0.9,1.0,0.9,1.0,1.0,1.0,1.1,1.0], + [1.0,1.0,0.9,1.0,0.9,1.0,1.0,1.0,1.1,1.0], + [0.9,1.0,0.9,1.0,0.9,0.9,1.2,0.9,1.0,1.0], + [1.0,1.0,1.0,1.0,0.9,0.9,1.2,0.9,1.0,1.1]] + +#matxl=[[1.3,1.0,1.1,0.9,1.1,1.0,1.0,1.0,0.9,1.1], +#[1.0,0.9,1.1,1.0,1.0,1.0,1.0,1.0,1.0,0.9], +#[1.0,0.9,0.9,0.9,1.0,1.0,0.9,1.0,1.0,1.1], +#[0.9,0.9,1.0,1.0,1.2,1.0,1.2,1.1,1.0,1.2]] + +#matxr=[[1.0,1.0,1.0,0.9,0.8,1.0,1.1,1.0,1.0,1.0], +#[1.1,1.0,1.2,1.0,0.9,1.1,1.0,1.1,0.9,1.0], +#[1.0,0.9,0.9,0.9,1.0,1.0,1.0,1.0,1.0,1.1], +#[1.0,1.0,1.0,0.9,0.8,1.0,1.2,0.8,0.9,1.2]] + +pol='I' #if use I correction, set POL='I' and ues matxi; if use both x and l, set pol='LR' and used maxtl and matxr. +# snchk=3 +# cluse=7 +ant_gan_cal = 0 #set this and go back to step3 +######parms may be used in step3########################################## +man_fr_file = ['phase-v1-cln2.fits'] +del_old_mod = True +no_rate = 0 # if =1 suppress rate, defualt is 0 +rdp_parm = 0 # whehter zero rate, delay or phase, if not familiar, set 0 +dwin = 200 # the delay search window centered on 0 and in unit of nsec, set 100 if not sure +rwin = 100 # the rate search window centered on 0 and in unit of MHz, set 200 if not sure +av_ifs_f2 = 0 # whether to averege ifs in this step's fring -->cl10 +av_ifs_ca1 = 0 # same with above but for calib -->cl11 +## note, if you want to make trustworthy cl11, make sure the final p_cal data is save for selet i. +## i.e. the calib will average L and R (not make it adjustable this time) + +solint_cal = 400 # the solution interval for task CALIB "A&P"(output file is SCL11), set as large as possible e.g 1000 if not sure +############################################################################ +step1 = 1 # auto control of the flags in this block +step2 = 0 # Auto control of the second block +step3 = 0 +stepn = 0 +############################################################################# +#in stepn +#same with the difmap position value, no need to reverse +rash=-2.56e-3 #in arcsec, no need to times cos(dec) +decsh=-3.94e-4 #in arcsec +do_uvshift_flag = 0 ###note!! this is from stepn diff --git a/vlbi-pipeline/configs/template_input.py b/vlbi-pipeline/configs/template_input.py new file mode 100644 index 0000000..278b5b3 --- /dev/null +++ b/vlbi-pipeline/configs/template_input.py @@ -0,0 +1,132 @@ +#!/usr/bin/env python +""" +VLBI Pipeline Configuration Template +===================================== +Copy this file and modify for your observation. +Naming convention: {obs_code}_input.py (e.g., bz111cl_input.py) +""" + +# ============================================================================ +# BASIC SETTINGS +# ============================================================================ +AIPS_NUMBER = 158 # AIPS user number +antname = 'VLBA' # Antenna array: 'VLBA' or 'EVN' + +# ============================================================================ +# DATA INFORMATION +# ============================================================================ +file_path = '/path/to/data/' # Path to data directory +file_name = 'obs_code.idifits' # Better use obs_code.idifits as name +num_files = 1 # Number of files to load + +# ============================================================================ +# SOURCE INFORMATION +# ============================================================================ +do_quack = 1 # Flag initial data +ap_dofit = 1 # Opacity calibration: 1=all antennas, or list for specific antennas + # ap_dofit = [-1,1,1,1,1,1,1,1,1,1] for individual antenna control +solint = 4 # Solution interval in minutes + +# Source names +calsource = ['4C39.25'] # Calibrator for fringe fitting and bandpass +target = ['J0106+00'] # Target source +p_ref_cal = ['P0108+0135'] # Phase reference calibrator + +logfilename = file_name.split('.')[0] # Log file name + +# ============================================================================ +# FRINGE FITTING CONTROL +# ============================================================================ +auto_fringe = 0 # 0=manual (recommended for EVN), 1=automatic + # If 0, set the following parameters from step1 results + +# Manual fringe fitting parameters (when auto_fringe=0) +reference_antenna = 8 +search_antennas = [3, 2, 0] +scan_for_fringe = [1, 0, 30, 0, 1, 0, 32, 0] +av_ifs_f1 = 0 # Average IFs for fringe fitting + +# ============================================================================ +# MAPPING CONTROL +# ============================================================================ +auto_mapping = 0 # 0=manual, 1=automatic +man_fr_file = ['P0108-v1-mod1.fits'] # Manual model files (when auto_mapping=0) + +# ============================================================================ +# MANUAL FLAGGING +# ============================================================================ +do_flag = 1 # Enable manual flagging + +# Channel and IF flagging +fgbchan = [0, 0] # Beginning channels to flag +fgechan = [0, 0] # Ending channels to flag +fgbif = [2, 4] # Beginning IFs to flag +fgeif = [2, 4] # Ending IFs to flag +fgantennas = [[0], [2, 10]] # Antennas to flag + +# Time flagging +fgtimer = [0] # Time ranges to flag +outfg = 2 # Output flag table + +# Special quack flagging +sp_quack_flag = 0 +sp_quack_ant = [] +sp_quack_beg = [] +sp_quack_endb = [] +sp_quack_el = [] + +# ============================================================================ +# EVN-SPECIFIC SETTINGS (for EVN data only) +# ============================================================================ +pipepath = '/data/VLBI/EVN/eg119/pipeline-eg119a/' # EVN pipeline path + +if antname != 'VLBA': + fgfile = pipepath + 'eg119a.uvflg' # Flag file + antfile = pipepath + 'eg119a.antab' # Antenna table file +else: + fgfile = '' + antfile = '' + +# ============================================================================ +# MANUAL ANTENNA GAIN CALIBRATION +# ============================================================================ +# Gain correction factors per antenna per source +matxi = [[1.0, 1.0, 1.0, 0.9, 1.0, 1.0, 1.0, 1.0, 1.0], + [1.1, 1.0, 0.8, 0.8, 1.0, 1.0, 0.8, 0.8, 1.2], + [1.0, 1.0, 1.0, 0.9, 1.0, 1.0, 1.0, 1.0, 1.0], + [1.1, 1.0, 2.0, 0.8, 1.0, 1.0, 1.2, 1.0, 1.0]] + +# For polarization data (L and R hand) +# matxl = [[...], [...]] +# matxr = [[...], [...]] + +pol = 'I' # Polarization: 'I' for Stokes I only, 'LR' for both hands +ant_gan_cal = 0 # Enable antenna gain calibration (set 1 to go back to step2) + +# ============================================================================ +# ADVANCED CALIBRATION PARAMETERS (Step 3) +# ============================================================================ +del_old_mod = 1 # Delete old model before self-cal +no_rate = 0 # Disable rate correction +av_ifs_f2 = 0 # Average IFs for second fringe fit +av_ifs_ca1 = 0 # Average IFs for calibration +rdp_parm = [0, 0, 0, 0, 0, 0, 0, 0, 0] # Rate/delay/phase parameters +dwin = 0 # Delay window +rwin = 0 # Rate window +solint_cal = 2 # Solution interval for calibration (minutes) + +# ============================================================================ +# PIPELINE CONTROL FLAGS +# ============================================================================ +step1 = 0 # Data loading and initial calibration +step2 = 1 # Fringe fitting +step3 = 1 # Self-calibration and imaging +stepn = 0 # Additional post-processing + +# ============================================================================ +# UV-SHIFT PARAMETERS (Step N) +# ============================================================================ +# Position shifts in arcseconds (same as difmap position values) +rash = [-0.186, 0, 1.144] # RA shift (no need to multiply by cos(dec)) +decsh = [0.570, 0, 1.760] # Dec shift +do_uvshift_flag = 1 # Enable UV-shift (requires step3 completed) diff --git a/vlbi-pipeline/get_utils.py b/vlbi-pipeline/get_utils.py index 174d447..4a1e7e9 100644 --- a/vlbi-pipeline/get_utils.py +++ b/vlbi-pipeline/get_utils.py @@ -5,37 +5,48 @@ from Wizardry.AIPSData import AIPSUVData as WAIPSUVData from config import * import AIPSTV -import AIPS, os, math, time, sys +import AIPS +import os +import math +import time +import sys import numpy as np import pandas as pd -from utils import * -import logging +from logging_config import logger + #################################################################### + def get_load_data(data): antennas = {} for row in data.table('AN', 0): antennas[row.nosta] = row.anname[0:2] return antennas + def get_ant(data): antennas = {} for row in data.table('AN', 0): antennas[row.nosta] = row.anname[0:2] return antennas -def get_timerange_tab(indata,table,i): + + +def get_timerange_tab(indata, table, i): sn_table = indata.table(table, 0) time1 = sn_table[i].time-0.5*sn_table[i].time_interval time2 = sn_table[i].time+0.5*sn_table[i].time_interval - (day1,hour1,min1,sec1)=time_to_hhmmss(time1) - (day2,hour2,min2,sec2)=time_to_hhmmss(time2) + (day1, hour1, min1, sec1) = time_to_hhmmss(time1) + (day2, hour2, min2, sec2) = time_to_hhmmss(time2) timerange = [day1, hour1, min1, sec1, day2, hour2, min2, sec2] return timerange + ############################################################################## # Get the day-of-year integer from the year/month/day # + + def get_day_of_year(year, month, day): day_of_year_list = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334] doy = day_of_year_list[month - 1] + day @@ -87,7 +98,8 @@ def get_center_freq(indata): fq = indata.table('AIPS FQ', 0) naxis = indata.header['naxis'] if naxis[3] > 1: - fq_span = fq[0]['if_freq'][indata.header.naxis[3] - 1] - fq[0]['if_freq'][0] + fq_span = fq[0]['if_freq'][indata.header.naxis[3] - 1] - \ + fq[0]['if_freq'][0] frq = (indata.header.crval[2] + 0.5 * fq_span) else: frq = indata.header.crval[2] @@ -98,7 +110,8 @@ def get_center_freq(indata): # Download TEC maps # def get_TEC(year, doy, TECU_model, geo_path): - year = str(year)[2:4] + year1 = str(year)[0:2] + year2 = str(year)[2:4] if doy < 10: doy = '00' + str(doy) elif doy < 100: @@ -106,33 +119,50 @@ def get_TEC(year, doy, TECU_model, geo_path): else: doy = str(doy) - name = TECU_model + doy + '0.' + year + 'i' + name = TECU_model + doy + '0.' + year2 + 'i' # name4='esag'+doy+'0.'+year+'i' # if os.path.exists(name) or os.path.exists(name2): if os.path.exists(geo_path + name): - print - 'TEC File already there.' + fs = os.path.getsize(geo_path + name) + if fs >= 1024: + logger.info('TEC File already there. Not going to download') + else: + os.remove(geo_path + name) + if os.path.exists(geo_path + name): + print('Error') + elif year <= 1998: + logger.info('The observing data is too early for ionex records. Not doing tecor this time.') else: - path = 'https://cddis.nasa.gov/archive/gps/products/ionex/20' + year + '/' + doy + '/' - os.popen(r'curl -c cookies.curl --netrc-file ~/.netrc -n -L -O ' + path + name + '.Z') - os.popen(r'uncompress -f ' + name + '.Z') - os.popen(r'mv ' + name + ' ' + geo_path) + #old way (need account) not recommended + print("not doing cddis method this time. may modify the password for future use") + # path = 'https://cddis.nasa.gov/archive/gps/products/ionex/' + year1 + year2 + '/' + doy + '/' + # os.popen(r'curl -c cookies.curl --netrc-file ~/.netrc -n -L -O ' + path + name + '.Z') + # os.popen(r'uncompress -f ' + name + '.Z') + if os.path.exists(name): + fs = os.path.getsize(name) + if fs >= 1024: + logger.info('The old way still working, good!') + else: + os.remove(name) + logger.info('old way not good') + logger.info('Try another method of downloading from VLBATECR explain') + yyyy = year1 + year2 + if int(yyyy) <=2023 and int(doy) <=218: #New way, no account needed! (see EXPLAIN VLBATECR in AIPS cookbook) + fpath = 'ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/'+yyyy+'/'+doy+'/jplg'+doy+'0.'+year2+'i.Z' + os.popen(r'curl -u anonymousdaip@nrao.edu --ftp-ssl ' + fpath ) + os.popen(r'uncompress -f ' + name + '.Z') + else: + fpath = 'ftp://gdc.cddis.eosdis.nasa.gov/gps/products/ionex/'+yyyy+'/'+doy+'/JPL0OPSFIN_'+yyyy+doy+'0000_01D_02H_GIM.INX.gz' + os.popen(r'curl -u anonymous:daip@nrao.edu --ftp-ssl ' + fpath + '> ./' + name +'.gz') + os.popen(r'gzip -d ' + name + '.gz') + print(fpath) + os.popen(r'mv ' + name + ' ' + geo_path) # if os.path.exists(name+'.Z'): # os.popen(r'rm '+name+'.Z') # os.popen(r'wget -t 30 -O '+name2+'.Z '+path+name2+'.Z') # os.popen(r'uncompress -f '+name2+'.Z') -''' -CDDIS Archive Access: .netrc instructions -In order for cURL to use those credentials you will need to create a .netrc file. - -To create a .netrc file, you will need to create a text file with the name .netrc; this file needs to have read permissions set to only yourself, so that no one can read your file and get your username and password. The format of the file is: - -machine urs.earthdata.nasa.gov login password - -where and are the values you set when you created your Earthdata login account. -''' ############################################################################## @@ -140,44 +170,50 @@ def get_TEC(year, doy, TECU_model, geo_path): # def get_eop(geo_path): if os.path.exists(geo_path + 'usno_finals.erp'): - late = (time.time() - os.stat(eop_path+'usno_finals.erp')[8])/3600/24 - if late<7: - print 'Using local erp file' - pass - else: - os.popen( - r'curl -c cookies.curl --netrc-file ~/.netrc -n -L -O "https://cddis.nasa.gov/archive/vlbi/gsfc/ancillary/solve_apriori/usno_finals.erp"') - os.popen(r'mv usno_finals.erp ' + geo_path) - print 'Download new erp file online' + #+++ ZB + # age = (time.time() - os.stat(geo_path+'usno_finals.erp')[8])/3600 + # if age<12: pass + # else: + # os.popen(r'curl -c cookies.curl --netrc-file ~/.netrc -n -L -O "https://cddis.nasa.gov/archive/vlbi/gsfc/ancillary/solve_apriori/usno_finals.erp"') + # os.popen(r' rm -rf '+geo_path+'usno_finals.erp') + # os.popen(r'mv usno_finals.erp '+geo_path) + # print + # '---> Use downloaed erp file' + print("The curret usno file are valid until 2025-11-13, if the observation time is after it, you may got error in next step.") + print("IF that happens, please donwload the latest version of usno. If you have questions ,please contact Yingkang!") + else: + os.popen( + r'curl -c cookies.curl --netrc-file ~/.netrc -n -L -O "https://cddis.nasa.gov/archive/vlbi/gsfc/ancillary/solve_apriori/usno_finals.erp"') + os.popen(r'mv usno_finals.erp ' + geo_path) ############################################################################## # Get .key and .sum file from archive -def get_key_file(indata,code): + + +def get_key_file(indata, code): mon_dir={1:'jan',2:'feb',3:'mar',4:'apr',5:'may',6:'jun',7:'jul',8:'aug' - ,9:'sep',10:'oct',11:'nov',12:'dec'} + ,9:'sep',10:'oct',11:'nov',12:'dec'} path0=('http://www.vlba.nrao.edu/astro/VOBS/astronomy/') (year,month,day) = get_observation_year_month_day(indata) if code=='': code_str = indata.header.observer.lower() else: - code_str = code + code_str = outname[0] path1=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+code_str+'.key' path2=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+code_str+'.sum' path3=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+code_str+'log.vlba' - path4=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+'jobs'+'sniffer'+'*.sniff' - if os.path.exists(code_str+'.key'): + path4=path0+mon_dir[month]+str(year)[2:4]+'/'+code_str+'/'+'jobs/'+'sniffer/'+code_str.upper()+'.'+str(year)+str(month).zfill(2)+str(day).zfill(2)+'.sniff' + if os.path.exists(outname[0]+'/'+code_str+'log.vlba'): pass else: os.popen(r'wget '+path1) - if os.path.exists(code_str+'.sum'): - pass - else: os.popen(r'wget '+path2) - if os.path.exists(code_str+'log.vlba'): - pass - else: os.popen(r'wget '+path3) - op.popen(r'wget '+path4) + os.popen(r'wget '+path4) + os.popen(r'mv '+code_str+'.key'+' '+outname[0]+'/') + os.popen(r'mv '+code_str+'.sum'+' '+outname[0]+'/') + os.popen(r'mv '+code_str+'log.vlba'+' '+outname[0]+'/') + os.popen(r'mv '+'*.sniff'+' '+outname[0]+'/') ############################################################################## @@ -203,15 +239,18 @@ def get_sources(indata): # Find best scan for manual phasecal # Get the best scan and good ref antenna (from Sumit) def delete_temp(): - if os.path.exists('test.txt'): - os.remove('test.txt') + if os.path.exists('tmp*.txt'): + os.remove('tmp*.txt') if os.path.exists('test*.txt'): - os.remove('test*.txt') -#Function to get time range covered by a scan of a bright calibrator to be used for short duration fringe fitting: + os.remove('test*.txt') +# Function to get time range covered by a scan of a bright calibrator to be used for short duration fringe fitting: + + def isinde(number): INDE = 3140.892822265625 return abs(number - INDE) < 1e-12 + def get_fringe_time_range(uvdata, fringe_cal): ''' Get time range coverd by a scan of a bright calibrator to be used @@ -232,7 +271,8 @@ def get_fringe_time_range(uvdata, fringe_cal): except NameError: fringeCal_SUexist = False if fringeCal_SUexist == False: - logging.info('The fringe fitter is not in the SU table!') + logger.info('The fringe fitter is not in the SU table!') + logger.warning("Forece quitting") sys.exit() NXtab = uvdata.table('NX', 1) for row in NXtab: @@ -244,10 +284,9 @@ def get_fringe_time_range(uvdata, fringe_cal): except NameError: fringeCal_NXexist = False if fringeCal_NXexist == False: - logging.info("The fringe finder ", fringe_cal, - " is not in the NX table!") - logging.warning("The fringe finder ", fringe_cal, - " is not in the NX table!") + logger.info("The fringe finder is not in the NX table!") + logger.warning("The fringe finder is not in the NX table!") + logger.warning("Forece quitting") sys.exit() # Finding the number of not-completely flagged antennas: N_ant, refantList = get_refantList(uvdata) @@ -284,25 +323,17 @@ def get_fringe_time_range(uvdata, fringe_cal): list_of_lists1.append(list_i) else: list_of_lists1.append(list_i) - #todo get the first value + # todo get the first value N_obs.append(list_i[2]) # print list_of_lists1 if len(list_of_lists1) == 0: - logging.info("There is no best scan of fringe fitter ", - fringe_cal, ". Try to change the fringe fitter!") + logger.info( + "There is no best scan of fringe finder. Try to change the fringe fitter!") sys.exit() - #todo add later - #else: - # logging.info("There are %d best scans of fringe fitter '%s' having %d antennas present.".format( len(list_of_lists1), fringe_cal, N_obs[0])) - print ("################") - print (list_of_lists) - print (list_of_lists1) - print (fringe_cal) - print (N_obs) - print ("################") - - #delete_temp() - + # todo add later + # else: + # logger.info("There are %d best scans of fringe fitter '%s' having %d antennas present.".format( len(list_of_lists1), fringe_cal, N_obs[0])) + # delete_temp() # Finding start and end time of the mid scan of the fringe fitter (in case of many scans) for which all antennas are present: if len(list_of_lists1) % 2 == 1: # median value for odd number of scans of fringe fitting calibrator. @@ -356,7 +387,8 @@ def get_central_antennas(uvdata): xsep = row.stabxyz[0] - row2.stabxyz[0] ysep = row.stabxyz[1] - row2.stabxyz[1] zsep = row.stabxyz[2] - row2.stabxyz[2] - baselineLength_3d = np.sqrt((xsep * xsep) + (ysep * ysep) + (zsep * zsep)) + baselineLength_3d = np.sqrt( + (xsep * xsep) + (ysep * ysep) + (zsep * zsep)) Sum_baselineLength_3d["{}".format(i)].append(baselineLength_3d) Sum_baselineLength_3d["{}".format(i)] = np.sum( Sum_baselineLength_3d["{}".format(i)]) @@ -416,7 +448,7 @@ def get_refantList(uvdata): for j in range(len(df2)): if df2.iloc[i, j] == 0: df2.iloc[i, j] = df2.iloc[j, i] - # print df2 + print df2 # Averaging each antenna column's visibilities: antMeanVisibilities = df2.mean(axis=0).values # Taking care of any completely flagged antenna: @@ -454,56 +486,64 @@ def get_refantList(uvdata): ############################################################################## # Write out qualities of geosources # + + def get_geosource_stats(indata): - (year, month, day)=get_observation_year_month_day(indata) - frq = get_center_freq(indata) + (year, month, day) = get_observation_year_month_day(indata) + frq = get_center_freq(indata) sn_table = indata.table('AIPS SN', 0) - naxis = indata.header['naxis'] - obs = indata.header['observer'] - sources = get_sources(indata) + naxis = indata.header['naxis'] + obs = indata.header['observer'] + sources = get_sources(indata) - num_sour=len(indata.sources) - snr=[] - for i in range(0,len(sources)+1): + num_sour = len(indata.sources) + snr = [] + for i in range(0, len(sources)+1): snr.append([]) - for i in range(1,len(sn_table)): + for i in range(1, len(sn_table)): for j in range(naxis[3]): - if isinde(sn_table[i]['weight_1'][j])==False and sn_table[i]['weight_1'][j] > 6: - snr[sn_table[i]['source_id']].append(sn_table[i]['weight_1'][j]) + if isinde(sn_table[i]['weight_1'][j]) == False and sn_table[i]['weight_1'][j] > 6: + snr[sn_table[i]['source_id']].append( + sn_table[i]['weight_1'][j]) file = './geoblock/'+obs+'_geostat.dat' - f = open(file,'w') - f.writelines('!Source #Det Max Min Avgerage Median on '+str(year)+'-'+str(month)+'-'+str(day)+' at '+str(round(frq,1))+' GHz \n') - for i in range(1,len(sources)): - if len(snr[i])>0 and sources[i]!=[]: - outprint= sources[i]+' %4d %6.1f %6.1f %6.1f %6.1f\n' % (len(snr[i]), round(max(snr[i]),1), round(min(snr[i]),1), round(average(snr[i]),1), round(median(snr[i]),1)) + f = open(file, 'w') + f.writelines('!Source #Det Max Min Avgerage Median on ' + + str(year)+'-'+str(month)+'-'+str(day)+' at '+str(round(frq, 1))+' GHz \n') + for i in range(1, len(sources)): + if len(snr[i]) > 0 and sources[i] != []: + outprint = sources[i]+' %4d %6.1f %6.1f %6.1f %6.1f\n' % (len(snr[i]), round(max( + snr[i]), 1), round(min(snr[i]), 1), round(average(snr[i]), 1), round(median(snr[i]), 1)) f.writelines(outprint) - elif sources[i]!=[]: - outprint= sources[i]+' %4d %6.1f %6.1f %6.1f %6.1f\n' % (0, 0, 0, 0, 0) + elif sources[i] != []: + outprint = sources[i] + \ + ' %4d %6.1f %6.1f %6.1f %6.1f\n' % (0, 0, 0, 0, 0) f.writelines(outprint) f.close() ############################################################################## # + + def get_time(): - t=range(6) - t[0]=time.localtime()[0] - t[0]=str(t[0]) - for i in range(1,6): - t[i]=time.localtime()[i] - if t[i]<10: - t[i]='0'+str(t[i]) + t = range(6) + t[0] = time.localtime()[0] + t[0] = str(t[0]) + for i in range(1, 6): + t[i] = time.localtime()[i] + if t[i] < 10: + t[i] = '0'+str(t[i]) else: - t[i]=str(t[i]) - a=t[3]+':'+t[4]+':'+t[5]+' on '+t[0]+'/'+t[1]+'/'+t[2] + t[i] = str(t[i]) + a = t[3]+':'+t[4]+':'+t[5]+' on '+t[0]+'/'+t[1]+'/'+t[2] return a ############################################################################## # def findtarget(indata, target): - targets=[] + targets = [] for entry in target: targets.append(entry) @@ -511,15 +551,15 @@ def findtarget(indata, target): targets = [] n = 0 for source in indata.sources: - if source[0]=='J': + if source[0] == 'J': targets.append(source) - n=n+1 + n = n+1 return targets def get_split_sources(indata, target, cvelsource, calsource): - split_sources=findtarget(indata, target) + split_sources = findtarget(indata, target) if calsource in cvelsource or calsource in target: pass @@ -529,62 +569,65 @@ def get_split_sources(indata, target, cvelsource, calsource): return split_sources ############################################################################## # -def get_velocity(indata,cvelsource): - cvelsource=findcvelsource(indata, cvelsource) + + +def get_velocity(indata, cvelsource): + cvelsource = findcvelsource(indata, cvelsource) light = 299792458 nchan = indata.header['naxis'][2] - res = indata.header['cdelt'][2] - su = indata.table('AIPS SU',0) - nif = indata.header['naxis'][3] + res = indata.header['cdelt'][2] + su = indata.table('AIPS SU', 0) + nif = indata.header['naxis'][3] for entry in su: if entry['source'].strip() in cvelsource: - vel=entry['lsrvel'] - restfreq=entry['restfreq'] + vel = entry['lsrvel'] + restfreq = entry['restfreq'] - if nif>1: - restfreq=restfreq[0] - spacing=res/restfreq*light + if nif > 1: + restfreq = restfreq[0] + spacing = res/restfreq*light return vel, restfreq, nchan, res, spacing ############################################################################## # def get_real_sources(indata): - nx=indata.table('AIPS NX',0) - su=indata.table('AIPS SU',0) + nx = indata.table('AIPS NX', 0) + su = indata.table('AIPS SU', 0) - real_sources=[] + real_sources = [] for entry in nx: - if (su[entry['source_id']-1]['source'].rstrip() in real_sources)==False: + if (su[entry['source_id']-1]['source'].rstrip() in real_sources) == False: real_sources.append(su[entry['source_id']-1]['source'].rstrip()) return real_sources ############################################################################## # -def get_antname(an_table,n): - name='' + + +def get_antname(an_table, n): + name = '' for entry in an_table: - if n==entry['nosta']: - name=entry['anname'] + if n == entry['nosta']: + name = entry['anname'] return name - ############################################################################## # -def get_phasecal_sources(indata,mp_source,logfile): +def get_phasecal_sources(indata, mp_source): if mp_source == ['']: mp_source = [] for source in indata.sources: - if source[0]=='F': + if source[0] == 'F': mp_source.append(source) newdata = AIPSUVData(indata.name, 'UVCOP', indata.disk, 1) if newdata.exists(): newdata.zap() - uvcop = AIPSTask('UVCOP') + uvcop = AIPSTask('UVCOP') uvcop.indata = indata uvcop.source[1:] = mp_source uvcop.go() @@ -593,23 +636,25 @@ def get_phasecal_sources(indata,mp_source,logfile): ################################################################################ # Extract line name from a uvdata # + + def get_line_name(indata): freq = get_center_freq(indata)/1e9 - if freq>12 and freq<13: - restfreq = [1.2178E+10,597000] - linename='CH3OH_12GHz' + if freq > 12 and freq < 13: + restfreq = [1.2178E+10, 597000] + linename = 'CH3OH_12GHz' print 'Assuming 12.2 GHz methanol maser.' - elif freq>22 and freq<23: - restfreq = [2.2235E+10,80000] - linename='H2O' + elif freq > 22 and freq < 23: + restfreq = [2.2235E+10, 80000] + linename = 'H2O' print 'Assuming 22.2 GHz water maser.' - elif freq>6 and freq<7: + elif freq > 6 and freq < 7: restfreq = [6.668e+09, 519200] - linename='CH3OH_6.7GHz' + linename = 'CH3OH_6.7GHz' print 'Assuming 6.7 GHz methanol maser.' - elif freq>43.1 and freq<43.2: - restfreq = [43.122e+09,80000] - linename='SiO_43.1GHz' + elif freq > 43.1 and freq < 43.2: + restfreq = [43.122e+09, 80000] + linename = 'SiO_43.1GHz' print 'Assuming 43.122 GHz SiO maser.' else: print 'Unknown maser line.' @@ -618,9 +663,6 @@ def get_line_name(indata): return (linename, restfreq) - - - ############################################################################## # def get_image_peak(idir='./'): @@ -630,96 +672,98 @@ def get_image_peak(idir='./'): for line in myfile.readlines(): strtmp = 'Maximum' - if cmp(strtmp,line[0:7]) == 0: + if cmp(strtmp, line[0:7]) == 0: peak = line[9:20] myfile.close() - peak=float(peak) + peak = float(peak) return peak else: print('###--- '+infile) print('###--- Input file dose not exsit') + +''' def get_download_names(ou, op, of): - user=ou - passw=op - if user=='nopass': + user = ou + passw = op + if user == 'nopass': file_names = [] file_sizes = [] for entry in date_pubfiles_nr[date_nr+1]: file_names.append(pubfiles[entry-1]) file_sizes.append('') else: - os.popen(r'wget --no-check-certificate --http-user '+user+ - ' --http-passwd '+passw+' -t45 -O files.txt'+ + os.popen(r'wget --no-check-certificate --http-user '+user + + ' --http-passwd '+passw+' -t45 -O files.txt' + ' https://archive.nrao.edu/secured/'+user+'/', 'w') - f=open('files.txt') - content=f.read() + f = open('files.txt') + content = f.read() f.close() - t=content.split('"') - t=content.split('\n') - file_names=[] - file_sizes=[] + t = content.split('"') + t = content.split('\n') + file_names = [] + file_sizes = [] for entry in t: if 'fits' in entry: - t2=entry.split('"') + t2 = entry.split('"') file_names.append(t2[1]) file_sizes.append(entry[-8:]) os.popen(r'rm files.txt') - if inter_flag==1 and of[0]==0: - print_download_options(user,passw, file_names,file_sizes) - cont=raw_input('Use these filenames? (y/n) ') - if cont=='n' or cont=='N': - order=[] - for i in range(0,len(file_names)): + if inter_flag == 1 and of[0] == 0: + print_download_options(user, passw, file_names, file_sizes) + cont = raw_input('Use these filenames? (y/n) ') + if cont == 'n' or cont == 'N': + order = [] + for i in range(0, len(file_names)): entry = file_names[i] - print entry,file_sizes[i] - cont=raw_input('File number? ') - if int(cont)>len(file_names)-1: + print entry, file_sizes[i] + cont = raw_input('File number? ') + if int(cont) > len(file_names)-1: print 'Only Number 0 to '+str(len(file_names)-1)+' allowed.' - cont=raw_input('File number? ') + cont = raw_input('File number? ') order.append(cont) - - new_file_names=range(0,len(file_names)) - for i in range(0,len(file_names)): - new_file_names[int(order[i])]=file_names[i] + new_file_names = range(0, len(file_names)) + for i in range(0, len(file_names)): + new_file_names[int(order[i])] = file_names[i] file_names = new_file_names - print_download_options(user,passw,file_names,file_sizes) + print_download_options(user, passw, file_names, file_sizes) return file_names, len(file_names) else: return file_names, len(file_names) - elif inter_flag==1 and of[0]!=0: - print_download_options(user,passw, of, file_sizes) - cont=raw_input('Use these filenames? (y/n) ') - if cont=='n' or cont=='N': - order=[] + elif inter_flag == 1 and of[0] != 0: + print_download_options(user, passw, of, file_sizes) + cont = raw_input('Use these filenames? (y/n) ') + if cont == 'n' or cont == 'N': + order = [] for entry in file_names: print entry - cont=raw_input('File number? ') - if int(cont)>len(file_names)-1: + cont = raw_input('File number? ') + if int(cont) > len(file_names)-1: print 'Only Number 0 to '+str(len(file_names)-1)+' allowed.' - cont=raw_input('File number? ') + cont = raw_input('File number? ') order.append(cont) - new_file_names=range(0,len(file_names)) - for i in range(0,len(file_names)): - new_file_names[int(order[i])]=file_names[i] + new_file_names = range(0, len(file_names)) + for i in range(0, len(file_names)): + new_file_names[int(order[i])] = file_names[i] file_names = new_file_names - print_download_options(user,passw,file_names, file_sizes) + print_download_options(user, passw, file_names, file_sizes) return file_names, len(file_names) else: return of, len(of) else: - if of[0]!=0: - print_download_options(ou,op,of,file_sizes) + if of[0] != 0: + print_download_options(ou, op, of, file_sizes) return of, len(of) else: - print_download_options(user,passw, file_names,file_sizes) + print_download_options(user, passw, file_names, file_sizes) return file_names, len(file_names) +''' diff --git a/vlbi-pipeline/logging_config.py b/vlbi-pipeline/logging_config.py new file mode 100644 index 0000000..7046528 --- /dev/null +++ b/vlbi-pipeline/logging_config.py @@ -0,0 +1,48 @@ +import logging +import time, os, sys +from config import logfilename + +def current_time(): + cur_time = time.strftime('%Y%m%d.%H%M%S') + print(time.strftime('%Y%m%d.%H%M%S')) + return cur_time + +# logging.basicConfig(level=logging.DEBUG, +# format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s', +# datefmt='%m-%d %H:%M', +# filemode='a') +logger = logging.getLogger(__name__) +logger.setLevel(logging.DEBUG) + +if os.path.exists('logs'): + logger.info("<< Start VLBI-pipeline >>") + logger.info("Commanding : %s ", sys.argv) +else: + os.mkdir('logs') + logger.info("<< Start VLBI-pipeline >>") + +#set loggings in output file +file_handler = logging.FileHandler('logs/'+current_time()+logfilename+'.log',mode='a') +file_handler.setFormatter(logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')) +file_handler.setLevel(logging.DEBUG) +#set loggings in the command console +console_handler = logging.StreamHandler() +console_handler.setFormatter(logging.Formatter('%(message)s')) +console_handler.setLevel(logging.INFO) +#get logger, both on counsole and file output +logger.addHandler(file_handler) +logger.addHandler(console_handler) + + + +#Examples +logger.debug('Test Debug message') +logger.info('Test Info message') +logger.warning('Test Warning message') +logger.error('Test Error message') +logger.critical('Test Critical message') + +#For other modoules to import this +__all__ = ['logger'] + + diff --git a/vlbi-pipeline/main-bk.py b/vlbi-pipeline/main-bk.py deleted file mode 100644 index d1a2764..0000000 --- a/vlbi-pipeline/main-bk.py +++ /dev/null @@ -1,838 +0,0 @@ -#!/usr/bin/env ParselTongue - -import time -import sys -#import pathlib - -import os -from AIPS import AIPS -import logging -import argparse -from config import AIPS_VERSION, AIPS_NUMBER, INTER_FLAG, DEF_DISKS, step1, step2, step3 #, split_outcl, antname -from make_utils import * -from run_tasks import * -from get_utils import * -from check_utils import * -from plot_utils import * -from utils import * - -# Init setting -aipsver = AIPS_VERSION -AIPS.userno = AIPS_NUMBER -inter_flag = INTER_FLAG -step1 = step1 -step2 = step2 -step3 = step3 -antname = antname - -# Setting the parameters -parser = argparse.ArgumentParser(description="VLBI pipeline") -parser.add_argument('--aipsnumber', metavar='aips number', - type=int, nargs='+', help='the AIPS number ') -parser.add_argument('--fitsfile', metavar='fits file', - type=str, nargs='+', help='files file name') -parser.add_argument('--filepath', metavar='file path', - type=str, nargs='+', help='files path') -#parser.add_argument('-p', '--file-path', type=pathlib.Path, default='/data/VLBI/VLBA/', help='the data path of fits file') -#parser.add_argument('-i', '--image-path', type=pathlib.Path, default='/data/VLBI/VLBA/images/', help='the data path of image file') -parser.add_argument('-o', '--output-filename', - default='demo', help='the output file name') -parser.add_argument('--step1', type=int, default=0, help='VLBI pipeline step1') -parser.add_argument('--step2', type=int, default=0, help='VLBI pipeline step2') -parser.add_argument('--step3', type=int, default=0, help='VLBI pipeline step3') - -''' -args = parser.parse_args() -print(args) - -file_path = args.filepath -fitsname = args.fitsfile -step1 = args.step1 -step2 = args.step2 -step3 = args.step3 -print(file_path) -print(fitsname) -print(step1) -print(step2) -print(step3) -''' -global line -line = 0 - -def run_main(logfile): - - logging.basicConfig(level=logging.DEBUG, - format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s', - datefmt='%m-%d %H:%M', - filename=logfile+'-test', - filemode='a') - - console = logging.StreamHandler() - console.setLevel(logging.INFO) - formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s') - console.setFormatter(formatter) - logging.getLogger('').addHandler(console) - - if os.path.exists('logs'): - logging.info("<< Start VLBI-pipeline >>") - logging.info("Commanding : %s ", sys.argv) - else: - os.mkdir('logs') - logging.info("<< Start VLBI-pipeline >>") - - #AIPS.log = logfile+'-test' - - n = DEF_DISKS - defdisk = 1 # Default AIPS disk to use (can be changed later) - - ############################################################################# - ### Do not change or move this part #### - [filename, outname, outclass] = [range(n), range(n), range(n)] - [nfiles, ncount, doconcat] = [range(n), range(n), range(n)] - [outdisk, flagfile, antabfile] = [range(n), range(n), range(n)] - for i in range(n): - [flagfile[i], antabfile[i], outdisk[i]] = ['', '', defdisk] - [nfiles[i], ncount[i], doconcat[i]] = [0, NCOUNT, -1] - - #filename[0] = 'BZ064A.idifits' - #outname[0] = 'bz064a' - #filename[0] = sys.argv[2] - #fitsname = parser.fitsfile - fitsname = sys.argv[2] - filename[0] = fitsname - #parms_filename = filename[0]+'-parms.txt' - parms_filename = 'parms.txt' - if os.path.exists(fitsname): - print('Folder exists') - else: - os.mkdir(fitsname) - outname[0] = fitsname.split('.')[0] - outclass[0] = 'UVDATA' - nfiles[0] = 1 # FITLD parameter NFILES - ncount[0] = NCOUNT # FITLD parameter NCOUNT - doconcat[0] = 1 # FITLD parameter DOCONCAT - # Optional parameters for each file - # outdisk[0] = 3 # AIPS disk for this file (if != defdisk) - # usually for EVN stations - # flagfile[0] = 'es094.uvflg' # flag file for UVFLG - # antabfile[0] = 'es094.antab' # antab file for ANTAB - - logging.info('#############################################') - logging.info('### Using definition file from %s ###', version_date) - logging.info('### Using AIPS Version %s ###', aipsver) - logging.info('#############################################') - - debug = 1 - #n = DEF_DISKS - - try: - debug = debug - except: - debug = 0 - - try: - if inter_flag == 0: - print - 'Running in non-interactive mode.' - else: - print - 'Running in interactive mode.' - except: - inter_flag = 1 - print - 'Running in interactive mode.' - - try: - if split_outcl == '': - split_outcl = 'SPLIT' - else: - if len(split_outcl) > 6: - split_outcl = split_outcl[0:6] - logging.info('################################################' ) - logging.warning('split_outcl longer than 6 characters. Truncating ') - logging.warning('it to: %s ' ,split_outcl ) - logging.info('################################################' ) - except: - split_outcl = 'SPLIT' - - ############################################################################## - ##### Set default parameters, if not set ##### - ############################################################################## - if 'ld_fr_fringe_flag' in locals() and globals(): - pass - else: - ld_fr_fringe_flag = 0 - if 'do_fr_fringe_flag' in locals() and globals(): - pass - else: - do_fr_fringe_flag = 0 - if 'do_calib_1_flag' in locals() and globals(): - pass - else: - do_calib_1_flag = 0 - if 'check_delay_rate' in locals() and globals(): - pass - else: - check_delay_rate = 0 - if 'split_2_flag' in locals() and globals(): - pass - else: - split_2_flag = 0 - - if 'apcal_flag' in locals() and globals(): - pass - else: - apcal_flag = 0 - if 'pang_flag' in locals() and globals(): - pass - else: - pang_flag = 0 - if 'do_fringe_flag' in locals() and globals(): - pass - else: - do_fringe_flag = 0 - if 'plot_first_run' in locals() and globals(): - pass - else: - plot_first_run = 0 - if 'split_1_flag' in locals() and globals(): - pass - else: - split_1_flag = 0 - - if 'pr_fringe_flag' in locals() and globals(): - pass - else: - pr_fringe_flag = 0 - if 'delzn_flag' in locals() and globals(): - pass - else: - delzn_flag = 0 - if 'restore_fg_flag' in locals() and globals(): - pass - else: - restore_fg_flag = 0 - if 'restore_su_flag' in locals() and globals(): - pass - else: - restore_su_flag = 0 - if 'do_gaincor_flag' in locals() and globals(): - pass - else: - do_gaincor_flag = 0 - if 'split_flag' in locals() and globals(): - pass - else: - split_flag = 0 - if 'ma_imagr_flag' in locals() and globals(): - pass - else: - ma_imagr_flag = 0 - if 'co_imagr_flag' in locals() and globals(): - pass - else: - co_imagr_flag = 0 - if 'cube_imagr_flag' in locals() and globals(): - pass - else: - cube_imagr_flag = 0 - if 'fr_nm' in locals() and globals(): - pass - else: - fr_nm = '' - if 'fr_cls' in locals() and globals(): - pass - else: - fr_cls = '' - if 'fr_dsk' in locals() and globals(): - pass - else: - fr_dsk = defdisk - if 'fr_sq' in locals() and globals(): - pass - else: - fr_sq = 1 - if 'nmaps' in locals() and globals(): - pass - else: - nmaps = 1 - if 'flux' in locals() and globals(): - pass - else: - flux = {'': [0, 0, 0, 0]} - if 'niter' in locals() and globals(): - pass - else: - niter = 100 - if 'grid_flag' in locals() and globals(): - pass - else: - grid_flag = 0 - if 'gridsource' in locals() and globals(): - pass - else: - gridsource = '' - if 'n_grid' in locals() and globals(): - pass - else: - n_grid = 0 - if 'm_grid' in locals() and globals(): - pass - else: - m_grid = 0 - if 'grid_offset' in locals() and globals(): - pass - else: - grid_offset = 0 - if 'dual_geo' in locals() and globals(): - pass - else: - dual_geo = 0 - if 'arch_user' in locals() and globals(): - pass - else: - arch_user = '' - if 'arch_pass' in locals() and globals(): - pass - else: - arch_pass = '' - if 'file' in locals() and globals(): - pass - else: - file = [] - if 'kntr_flag' in locals() and globals(): - pass - else: - kntr_flag = 0 - if 'fittp_flag' in locals() and globals(): - pass - else: - fittp_flag = 0 - if 'get_key_flag' in locals() and globals(): - pass - else: - get_key_flag = 0 - if 'code' in locals() and globals(): - pass - else: - code = '' - if 'max_ant' in locals() and globals(): - pass - else: - max_ant = 12 - if 'phase_cal_flag' in locals() and globals(): - pass - else: - phase_cal_flag = 0 - if 'amp_cal_flag' in locals() and globals(): - pass - else: - amp_cal_flag = 0 - if 'imna' in locals() and globals(): - pass - else: - imna = '' - if 'phase_target_flag' in locals() and globals(): - pass - else: - phase_target_flag = '' - if 'amp_target_flag' in locals() and globals(): - pass - else: - amp_target_flag = '' - if 'antennas' in locals() and globals(): - pass - else: - antennas = [0] - if 'refeed_flag' in locals() and globals(): - pass - else: - refeed_flag = 0 - if 'plot_tables' in locals() and globals(): - pass - else: - plot_tables = -1 - if 'dofit' in locals() and globals(): - pass - else: - dofit = [0] - if 'apply_selfcal' in locals() and globals(): - pass - else: - apply_selfcal = 0 - if 'tysmo_flag' in locals() and globals(): - pass - else: - tysmo_flag = 0 - if 'solint' in locals() and globals(): - pass - else: - solint = 0 - if 'smodel' in locals() and globals(): - pass - else: - smodel = [1, 0] - if 'uvwtfn' in locals() and globals(): - pass - else: - uvwtfn = '' - if 'robust' in locals() and globals(): - pass - else: - robust = 0 - if 'bandcal' in locals() and globals(): - pass - else: - bandcal = [''] - if 'do_band_flag' in locals() and globals(): - pass - else: - do_band_flag = 0 - if 'dpfour' in locals() and globals(): - pass - else: - dpfour = 0 - if 'min_elv' in locals() and globals(): - pass - else: - min_elv = 0 - if 'rpossm_flag' in locals() and globals(): - pass - else: - rpossm_flag = 0 - if 'ma_sad_flag' in locals() and globals(): - pass - else: - ma_sad_flag = 0 - if 'plot_map' in locals() and globals(): - pass - else: - plot_map = 0 - if 'min_snr' in locals() and globals(): - pass - else: - min_snr = 7 - if 'smooth' in locals() and globals(): - pass - else: - smooth = [0] - if 'beam' in locals() and globals(): - pass - else: - beam = [0, 0, 0] - if 'TECU_model' in locals() and globals(): - pass - else: - TECU_model = 'jplg' - - ############################################################################## - # Start main script - - logging.info('######################') - logging.info('%s', get_time()) - logging.info('###################### ') - - # constrain time range for fringe finder? - #mp_timera = [0, 0, 0, 0, 0, 0, 0, 0] - #TODO - mp_timera = [0, 23, 00, 1, 0, 23, 2, 59] - bandcal = p_ref_cal # Bandpass calibrator - - - ################# - # Split Options # - ################# - - smooth = [0, 0, 0] # Smooth during split for line data - split_outcl = 'SPLIT' # outclass in SPLIT '' => 'SPLIT' - - ################################## - # Optional inputs for fringe fit # - ################################## - - [fr_n, fr_c, fr_d, fr_s] = ['', '', 1, 1] - # Input image to use in FRINGE: - # ['NAME','CLASS',DISK,SEQUENCE] - smodel = [1, 0] # SMODEL in FRING - solint = 0 # SOLINT in FRING - nmaps = 1 # NMAPS in FRING - - logging.info("FILE NAME %s", filename[0]) - logging.info("OUT NAME %s ", outname[0]) - # print("FILE NAME =========", filename[0]) # ,filename[1],filename[2]) - # print("OUT NAME =========", outname[0]) # ,outname[1],outname[2]) - if not os.path.exists(outname[0]): - os.mkdir(outname[0]) - ################################## - # Data preparation and first prep# - ################################## - - load_flag = 0 # Load data from disk? - listr_flag = 0 # Print out LISTR? - dtsum_flag = 0 # Run dtsum to check antena participation? - tasav_flag = 0 # Run tasav on original tables? - geo_prep_flag = 0 # Run TECOR and EOP corrections? and uvflg for evn data - # get_key_flag = 0 # Download key-file from archive - # RDBE_check = 0 # Check Geoblock data for RDBE errors? - if step1 == 1: - load_flag = 1 - listr_flag = 1 - tasav_flag = 1 - geo_prep_flag = 3 - dtsum_flag = 1 - - if load_flag == 1: - loadindx(file_path, filename[0], outname[0], outclass[0], outdisk[0], - nfiles[0], ncount[0], doconcat[0], antname, logfile+'-test') - # for i in range(n): - # loadindx(file_path, filename[i], outname[i], outclass[i], outdisk[i], nfiles[i], ncount[i], doconcat[i], antname, logfile) - - data = range(n) - - logging.info('################################## ') - for i in range(n): - data[i] = AIPSUVData(outname[i], outclass[i], int(outdisk[i]), int(1)) - if data[i].exists(): - data[i].clrstat() - if dtsum_flag == 1: - rundtsum(data[i]) - if listr_flag == 1: - runlistr(data[i]) - logging.info('################################## ') - - # Download TEC maps and EOPs - - if pr_prep_flag == 1 or geo_prep_flag >= 1: - (year, month, day) = get_observation_year_month_day(data[0]) - num_days = get_num_days(data[0]) - - doy = get_day_of_year(year, month, day) - - get_TEC(year, doy, TECU_model, geo_path) - get_eop(geo_path) - - if num_days == 2: - get_TEC(year, doy + 1, TECU_model, geo_path) - - logging.info('################################## ') - logging.info(get_time()) - logging.info('################################## ') - - if geo_prep_flag > 0: - geo_data = data[geo_data_nr] - # runuvflg(geo_data,flagfile[geo_data_nr],logfile) - check_sncl(geo_data, 0, 1, logfile) - if geo_data.header['telescop'] == 'EVN': - if geo_prep_flag == 1: - runTECOR(geo_data, year, doy, num_days, 3, TECU_model) - else: - runtacop(geo_data, geo_data, 'CL', 1, 3, 0) - else: - #TODO ADD GEO--- - if geo_prep_flag == 1: - runTECOR(geo_data, year, doy, num_days, 2, TECU_model) - runeops(geo_data, geo_path) - elif geo_prep_flag == 2:#no tecr - runtacop(geo_data, geo_data, 'CL', 1, 2, 0) - runeops(geo_data, geo_path) - elif geo_prep_flag == 3:#no eop - runTECOR(geo_data, year, doy, num_days, 3, TECU_model) - - pr_data = data[0] - - if tasav_flag == 1: - if flagfile[0] != '': - runuvflg(pr_data, flagfile[0], logfile) - if antabfile[0] != '': - runantab(pr_data, antabfile[0]) - runtasav(pr_data, 0, logfile) - - # todo : possom choose time range - # pass - ################################################################### - # Data inspect - - if inspect_flag == 1: - timerange,N_obs=get_fringe_time_range(data[0],calsource[0]) - N_ant,refants=get_refantList(data[0]) - print (">>>>>>>>>>>>>>>>>>>>>>>>>>") - print (timerange,N_ant,refants,N_obs) - print (">>>>>>>>>>>>>>>>>>>>>>>>>>") - possmplot(data[0],sources='',timer=timerange,gainuse=3,flagver=0,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) - possmplot(data[0],sources='',timer=timerange,gainuse=3,flagver=0,stokes='HALF',nplot=2,bpv=0,ant_use=[0],cr=0) - if antname == 'VLBA': - runsnplt(data[0],inver=1,inex='TY',sources='',optype='TSYS',nplot=4,timer=[]) - if inspect_flag ==2: - if antname != 'VLBA': - runsnplt(data[0],inver=1,inex='TY',sources='',optype='TSYS',nplot=4,timer=[]) - possmplot(data[0],sources=p_ref_cal[0],timer=RFIck_tran,gainuse=3,flagver=0,stokes='HALF',nplot=2,bpv=0,ant_use=[0],cr=0) - print (data[0].sources) - if inspect_flag == 3: - timerange,N_obs=get_fringe_time_range(data[0],calsource[0]) - N_ant,refants=get_refantList(data[0]) - refant = refants[0] - refant_candi= refants[1:]+[0] - if os.path.exists(parms_filename): - os.remove(parms_filename) - sys.stdout = open(parms_filename,'w') - print (N_ant,N_obs) - print (timerange) - print (refant) - print (refant_candi) - sys.stdout = sys.__stdout__ - - logging.info('############################') - logging.info('Data inspection before apcal') - logging.info('############################') - - - #============================================================================= - - lines=open(parms_filename,'r').read() - lines=lines.splitlines() - - refant = int(lines[2]) # refant=0 to select refant automatically - refant_candi=[] - possm_scan =[] - b = lines[3] # candidate refant for search in fringe - c = lines[1] - for i in b.split(','): - refant_candi.append(int(i.strip().strip('[]'))) - for i in c.split(','): - possm_scan.append(int(i.strip().strip('[]'))) - - print (possm_scan) - apfive = 1 #This sets the aparm(5) in fringe (how to combine IFs in the global finge fitting: 0=not combine, 1=combine all, 3=combine in halves - # phase ref calbrator sources '' => automatically - split_seq = 1 #for muti pyfiles in the same username, set this differently will avoid bugs during split and fittp, if not, use 1 only. - targets = target + p_ref_cal - mp_source = calsource # fringe finder '' => automatically - mp_timera = possm_scan # constrain time range for fringe finder? - bandcal = calsource # Bandpass calibrator - flagver = 1 # Flag table version to be used - tyver = 1 # Tsys table version to be used - chk_trange = [0] #timerange on p_cal for possm checking - # 1 for all VLGA, 0/-1 not do - dofit=-1 - #todo - #dofit= [-1,1,1,1,1,1,-1,-1,1,1,1,1,1,1,-1] #usually for EVN with tsys antenas - - ######################################################################### - # second-run--data_calibration # - ######################################################################### - #step2 = 0 # Auto control of the seond block - apcal_flag = 0 # Do amplitude calibration? - pang_flag = 0 # Run PANG? - pr_fringe_flag = 0 # Do manual phase cal? - do_fringe_flag = 0 # Do first run of fringe cal on all sources? - plot_first_run = 0 # DO possm and snplt to check first run result? - do_band_flag = 0 - split_1_flag = 0 # Split calibrated data in first run? - if step2 >= 1:# if step2 = 1: normal p-ref, if step2=2, do self-cal for targets. Do not set step2 >=3 - apcal_flag = 2-step2 - pang_flag = 2-step2 - pr_fringe_flag = 2-step2 - do_fringe_flag = step2 - plot_first_run = 2-step2 - do_band_flag = 1 - split_1_flag = step2 - #todo step2 - if step2 == 1: - if apcal_flag == 1: - check_sncl(pr_data, 0, 3, logfile) - # if antabfile[i]!='': - # runantab(pr_data,antabfile[i]) - if tysmo_flag == 1: - runtysmo(pr_data, 90, 10) - print pr_data.header['telescop'] - if antname == 'EVN': - runapcal(pr_data, tyver, 1, 1, dofit, 'GRID') - runclcal(pr_data, 1, 3, 4, '', 1, refant) - runtacop(pr_data, pr_data, 'SN', 1, 2, 1) - runtacop(pr_data, pr_data, 'CL', 4, 5, 1) - elif antname == 'VLBA': - runaccor(pr_data) - runclcal(pr_data, 1, 3, 4, 'self', 1, refant) - runapcal(pr_data, tyver, 1, 2, 1, 'GRID') - runclcal(pr_data, 2, 4, 5, '', 1, refant) - elif antname == 'LBA' : # for LBA - runaccor(pr_data) - runclcal(pr_data, 1, 3, 4, 'self', 1, refant) - runapcal(pr_data, tyver, 1, 2, -1, 'GRID') - runclcal(pr_data, 2, 4, 5, '', 1, refant) - else: - print("Error ANT : choose EVN/VLBA/LBA") - - logging.info('####################################') - logging.info(get_time()) - logging.info('####################################') - - if pang_flag == 1: - check_sncl(pr_data, 2, 5, logfile) - runpang2(pr_data) - logging.info('####################################') - logging.info('Finish PANG') - logging.info('####################################') - - so = '' - ti = '' - if pr_fringe_flag == 1 and step2 == 1: - logging.info('####################################') - logging.info('Begin mannual phase-cal') - logging.info('####################################') - check_sncl(pr_data, 2, 6, logfile) - # if refant_flag==1: - # refant=select_refant2(pr_data, logfile) - so, ti = man_pcal(pr_data, refant, mp_source, mp_timera, debug, logfile, dpfour) - print(so, ti) - if n == 1: - so_ti = [so, ti] - if n == 2: - if so_ti[0] == so and so_ti[1] == ti: - logging.info('#############################################') - logging.info( '### Both manual phasecal scans identical. ###' ) - logging.info('#############################################') - else: - logging.info('#############################################') - logging.info( '### Manual phasecal scans different. ###' ) - logging.info('### Select one manually. ###') - logging.info('#############################################') - sys.exit() - # runclcal(pr_data, 3, 6, 7, '', 0, refant,[0], ['']) - runclcal2(pr_data, 3, 6, 7, '2pt', 0, refant, [0], mp_source, '') - if do_fringe_flag == 1: - logging.info('####################################') - logging.info('Begin first fringe') - logging.info('####################################') - check_sncl(pr_data, 3, 7, logfile) - fringecal_ini(pr_data, refant, refant_candi, calsource[0], 7, 1, solint, -1, 0) - fringecal_ini(pr_data, refant, refant_candi, p_ref_cal[0], 7, 1, solint, -1, 0) - # fringecal_ini(pr_data,refant, refant_candi, p_ref_cal,7,1,solint,-1,0) - runclcal2(pr_data, 4, 7, 8, 'ambg', -1, refant, [0], calsource, calsource) - runclcal2(pr_data, 5, 7, 9, 'ambg', 1, refant, [0], p_ref_cal[0], targets) - if do_fringe_flag == 2: - logging.info('####################################') - logging.info('Begin first fringe') - logging.info('####################################') - check_sncl(pr_data, 3, 7, logfile) - fringecal_ini(pr_data, refant, refant_candi, calsource[0], 7, 1, solint, -1, 0) - fringecal_ini(pr_data, refant, refant_candi, targets, 7, 1, solint, -1, 0) - runclcal2(pr_data, 4, 7, 8, 'ambg', -1, refant, [0], calsource, calsource) - runclcal2(pr_data, 5, 7, 9, 'ambg', -1, refant, [0], targets, targets) - # fringecal_ini(indata, refant, refant_candi, calsource, gainuse, flagver, solint, doband, bpver) - if plot_first_run == 1: - # check_sncl(pr_data,5,7,logfile) - runsnplt(pr_data, inver=9, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) - runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='RATE', nplot=4, timer=[]) - possmplot(pr_data, sources=p_ref_cal[0], timer=chk_trange, gainuse=9, flagver=flagver, stokes='HALF', nplot=9, bpv=0, - ant_use=[0]) - logging.info('####################################') - logging.info(get_time()) - logging.info('####################################') - if do_band_flag == 1: - check_sncl(pr_data, 5, 9, logfile) - if pr_data.table_highver('AIPS BP') >= 1: - pr_data.zap_table('AIPS BP', -1) - do_band(pr_data, bandcal, 8, 1, logfile) - else: - do_band(pr_data, bandcal, 8, 1, logfile) - possmplot(pr_data, sources=p_ref_cal[0], timer=chk_trange, gainuse=9, flagver=0, stokes='HALF', nplot=9, bpv=1, - ant_use=[0]) - possmplot(pr_data, sources=bandcal[0], timer=possm_scan, gainuse=8, flagver=0, stokes='HALF', nplot=9, bpv=1, - ant_use=[0]) - - #line_data = data[line] - #cont_data = data[cont] - line_data = data[0] - cont_data = data[0] - line_data2 = AIPSUVData(line_data.name, line_data.klass, line_data.disk, 2) - cont_data2 = AIPSUVData(cont_data.name, cont_data.klass, cont_data.disk, 2) - - if bandcal == ['']: - doband = -1 - bpver = -1 - else: - doband = 1 - bpver = 1 - - if split_1_flag == 1: - check_sncl(cont_data, 5, 9, logfile) - run_split2(cont_data, calsource[0], 8, split_outcl, doband, bpver, flagver, split_seq) - run_split2(cont_data, p_ref_cal[0], 9, split_outcl, doband, bpver, flagver,split_seq) - #todo for multi phase cal - if len(p_ref_cal)>=2: - run_split2(cont_data, p_ref_cal[1], 9, split_outcl, doband, bpver, flagver,split_seq) - #run_fittp_data(source, split_outcl, defdisk, logfile) - run_split2(cont_data, target[0], 9, split_outcl, doband, bpver, flagver,split_seq) - - ################################## - # Optional inputs for fringe fit # - ################################## - #Step3 - #TODO add run_difmap.py - #os.system('python3 run_difmap.py') - # TODO - fr_path='/data/VLBI/code/vlbi-pipeline/vlbi-pipeline/BB203A/' - # TODO Phase cal - #fr_file=p_ref_cal'J1339+6328_SPLIT_1-cln.fits' - fr_file='J1339+6328_SPLIT_1-cln.fits' - #TODO fr_nm limit to 6 chars - [fr_nm, fr_cls, fr_dsk, fr_sq] = [fr_file[0:4]+ '-fr','CLN',1,1] - # Input image to use in FRINGE: - # ['NAME','CLASS',DISK,SEQUENCE] - smodel = [0,0] # SMODEL in FRING - solint = 4 # SOLINT in FRING - nmaps = 1 # NMAPS in FRING - nofit_rate = 1 #if =1, suppress rate in fringe(dparm8), if=0 fit rate as usual - #ftrate=1 - cluse=7 - sncor_timer =[0] - if step3 == 1: - ld_fr_fringe_flag = 1 - do_fr_fringe_flag = 1 - #do_calib_1_flag = 1 - check_delay_rate = 1 - split_2_flag = 1 - - ##zyk+++ - if ld_fr_fringe_flag == 1: - fr_image = AIPSImage(fr_nm, fr_cls, fr_dsk, fr_sq) - if fr_image.exists(): - pass - else: - loadfr(fr_path, fr_file, fr_nm, fr_cls, fr_dsk, antname, logfile) - - if do_fr_fringe_flag == 1: - cont_data = data[0] - check_sncl(cont_data, 3, 7, logfile) - doband = 0 - bpver = -1 - fringecal(cont_data, fr_image, nmaps, 7, refant, refant_candi, p_ref_cal[0], solint, smodel, doband, bpver, dpfour, logfile) - runclcal2(cont_data, 4, 7, 8, 'AMBG', -1, refant, [0], p_ref_cal[0], targets) - if check_delay_rate == 1: - # chk_sn_cl(cont_data,6,10,p_ref_cal[0],chk_trange,1) - #chk_sn_cl(cont_data, 5, 9, p_ref_cal[0], chk_trange, 1) - chk_sn_cl(cont_data, 4, 8, p_ref_cal[0], chk_trange, 1, flagver) - runsnplt(pr_data, inver=8, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) - runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='RATE', nplot=4, timer=[]) - # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='DELA',nplot=4,timer=[]) - # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='RATE',nplot=4,timer=[]) - - if split_2_flag >= 1: - #check_sncl(cont_data, 5, 9, logfile) - check_sncl(cont_data, 4,8, logfile) - # run_split2(cont_data, p_ref_cal[0], 10, 'SCL10', doband, bpver, flagver) - run_split2(cont_data, target[0], 8, 'SCL10', doband, bpver, flagver, 1) - # run_split2(cont_data, p_ref_cal[0], 11, 'SCL11', doband, bpver, flagver) - if split_2_flag >= 2: - run_split2(cont_data, p_ref_cal[0], 8, 'SCL10', doband, bpver, flagver, 1) - - -if __name__ == '__main__': - # current_time() - logfilename = 'logs/vlbi-pipeline.' + current_time() + '.log' - run_main(logfilename) diff --git a/vlbi-pipeline/main-bk240220.py b/vlbi-pipeline/main-bk240220.py new file mode 100644 index 0000000..04b1e41 --- /dev/null +++ b/vlbi-pipeline/main-bk240220.py @@ -0,0 +1,866 @@ +#!/usr/bin/env ParselTongue + +import time +import sys +#import pathlib +# import logging +from AIPS import AIPS +import os +from config import * +import argparse +from utils import * +from make_utils import * +from run_tasks import * +from get_utils import * +from check_utils import * +from plot_utils import * +from logging_config import logger + +# Init setting +aipsver = AIPS_VERSION +AIPS.userno = AIPS_NUMBER +inter_flag = INTER_FLAG +antname = antname + +# Setting the parameters +parser = argparse.ArgumentParser(description="VLBI pipeline") +#parser.add_argument('aips-number', metavar='aips number', type=int, nargs='+', help='the AIPS number ') +#parser.add_argument('fits_file', metavar='fits file', type=str, nargs='+', help='files file name') +#parser.add_argument('-p', '--file-path', type=pathlib.Path, default='/data/VLBI/VLBA/', help='the data path of fits file') +#parser.add_argument('-i', '--image-path', type=pathlib.Path, default='/data/VLBI/VLBA/images/', help='the data path of image file') +#parser.add_argument('-o', '--output-filename', default='demo', help='the output file name') + + + +# Optional parameters for each file +# outdisk[0] = 3 # AIPS disk for this file (if != defdisk) +# usually for EVN stations +# flagfile[0] = 'es094.uvflg' # flag file for UVFLG +# antabfile[0] = 'es094.antab' # antab file for ANTAB + +#antname = 'VLBA' # Antenna order for FITLD +#refant = 4 # refant=0 to select refant automatically +#AIPS.log = open(logfile, 'a') + + + +################# +# Control Flags # +################# +step1 = step1 # auto control of the flags in this block +finder_man_flag = auto_fringe #activate automatice selecting fringe scan and refant +# set to 1 for automatic procedure, set 0 to enable task by ta sk mannual checking +step2 = step2 # Auto control of the seond block +step3 = step3 + +################################## +# Data preparation and first prep# +################################## +RFI_clip_flag = 0 # Automatic flagging of RFI by cliping auto-correlation with 2.5 + # Download key-file from archive +# RDBE_check = 0 # Check Geoblock data for RDBE errors? +quack_flag = 0 # Run quack if special considerations (e.g. EVN p-ref) +get_key_flag = 0 +load_flag = 0 # Load data from disk? +listr_flag = 0 # Print out LISTR? +dtsum_flag = 0 # Run dtsum to check antena participation? +tasav_flag = 0 # Run tasav on original tables? +geo_prep_flag = 0 # Run TECOR and EOP corrections? and uvflg for evn data +inspect_flag = 0 +man_uvflg_flag = 0 #comissioning + +if step1 == 1: + load_flag = 1 + listr_flag = 1 + dtsum_flag = 1 + if antname=='VLBA': + get_key_flag = 1 + geo_prep_flag = 1 + RFI_clip_flag = 1 # Automatic flagging of RFI by cliping auto-correlation with 2.5 + quack_flag = do_quack # Run quack if special considerations (e.g. EVN p-ref) + man_uvflg_flag = do_flag + tasav_flag = 1 + inspect_flag = 1 +######################################################################### +# information to fill after first prep # +######################################################################### +## single step before step 2: find the calibrator scan as possm scan ## +## and run possm, snplt(ty) to find refantenna and fill the rest info ## +######################################################################### +if os.path.exists(outname[0]+'/'): + pass +else: + os.system('mkdir '+ outname[0]) +calsource = calsource # calibrator '' => automatically +mp_source = calsource # fringe finder '' => automatically + # constrain time range for fringe finder? +bandcal = calsource # Bandpass calibrator +targets= target + p_ref_cal +flagver = 2 # Flag table version to be used +tyver = 1 # Tsys table version to be used +chk_trange = [0] # set the whole time range +dofit = ap_dofit +outfg=2 +dpfour = 1 +split_seq = 1 +# dofit= [-1,1,1,1,1,1,-1,-1,1,1,1,1,1,1,-1] #usually for EVN with tsys antenas + +apcal_flag = 0 # Do amplitude calibration? +pang_flag = 0 # Run PANG? +pr_fringe_flag = 0 # Do manual phase cal? +do_fringe_flag = 0 # Do first run of fringe cal on all sources? +plot_first_run = 0 # DO possm and snplt to check first run result? +do_band_flag = 0 +split_1_flag = 0 # Split calibrated data in first run? +auto_difmap_flag = 0 +if step2 == 1: + apcal_flag = 1 # Do amplitude calibration? + pang_flag = 1 # Run PANG? + pr_fringe_flag = 1 # Do manual phase cal? + do_fringe_flag = 1 # Do first run of fringe cal on all sources? + plot_first_run = 1 # DO possm and snplt to check first run result? + do_band_flag = 1 + split_1_flag = 1 + auto_difmap_flag = 1 +######################################################################### +# second-run--data_calibration # +######################################################################### + +########################################################################### +# for networks that are not well constained with tgain(e.g. EVN) +matxl = [[0.89, 0.92, 0.79, 1.03, 0.9, 0.89, 0.79, 0.94, ], + [1, 1, 1, 1, 0.43, 0.37, 0.31, 0.34, ], + [1.1, 1.08, 1.23, 1.1, 1.11, 1.12, 1.12, 1.11, ], + [1, 0.93, 0.97, 0.99, 1, 0.99, 0.98, 0.97, ], + [1.01, 1.02, 1.02, 1, 1.02, 1.02, 1, 1.02, ], + [1, 1, 1, 0.99, 0.96, 0.96, 0.95, 0.95, ], + [0.95, 1.01, 0.96, 0.97, 0.99, 1.05, 1.07, 1.07, ], + [0.92, 0.91, 0.93, 0.91, 0.95, 0.99, 1, 1.41, ], + [1.09, 1.02, 1.1, 1.18, 1.23, 1.15, 1.15, 1.3, ], + [0.82, 0.8, 0.84, 0.87, 0.85, 0.88, 0.91, 0.92, ], + [0.7, 0.73, 0.71, 0.73, 0.75, 0.77, 0.78, 0.78, ], + [0.96, 0.99, 1, 1.05, 1.07, 1.1, 1.14, 1.14, ], + [1.07, 1.05, 1.02, 1.03, 1.05, 1.05, 1.1, 1.08, ], + [1.14, 1.16, 1.19, 1.13, 1.12, 1.14, 1.18, 1.26, ]] +matxr = [[1.05, 1.17, 1.18, 1.02, 0.97, 1.27, 0.92, 1.28, ], + [1, 1, 1, 1, 0.68, 0.51, 0.35, 0.35,1 ], + [1.39, 1.39, 1.71, 1.43, 1.43, 1.5, 1.43, 1.41, ], + [1.26, 1.12, 1.06, 1.24, 1.23, 1.1, 1.2, 1.19, ], + [1.23, 1.25, 1.24, 1.23, 1.25, 1.24, 1.25, 1.23, ], + [1.27, 1.27, 1.28, 1.24, 1.24, 1.24, 1.22, 1.23, ], + [1.25, 1.45, 1.17, 1.25, 1.27, 1.4, 1.34, 1.38, ], + [1.13, 1.14, 1.13, 1.12, 1.17, 1.23, 1.28, 1.58, ], + [1.35, 1.26, 1.29, 1.38, 1.47, 1.42, 1.34, 1.53, ], + [1.01, 1.01, 0.97, 1, 1.11, 1.17, 1.17, 1.18, ], + [0.96, 0.99, 0.97, 0.99, 0.96, 0.99, 1.01, 1.03, ], + [0.58, 0.54, 0.54, 0.58, 0.59, 0.63, 0.69, 0.69, ], + [1.43, 1.39, 1.37, 1.37, 1.37, 1.36, 1.41, 1.4, ], + [1.48, 1.47, 1.49, 1.46, 1.45, 1.45, 1.49, 1.58, ]] + +do_gaincor_flag = 0 # set this and go back to step2s + +########################################################################### +################################## +# Optional inputs for fringe fit # +################################## + +# fr_files=['J0932-v1-mod2.fits','J1002-v1-mod2.fits','J1119-v1-mod2.fits','J1213-v1-mod2.fits','J1353-v1-mod2.fits','J1453-v1-mod2.fits','J1609-v1-mod2.fits'] +# fr_nms=['J0932-fr','J1002-fr','J1119-fr','J1213-fr','J1353-fr','J1453-fr','J1609-fr'] +''' +fr_files = ['J1453-v1-mod2.fits', 'J1609-v1-mod2.fits'] +fr_nms = ['J1453-fr', 'J1609-fr'] +solint = 2 # SOLINT in FRING +nmaps = 1 # NMAPS in FRING +# doband = -1 +''' +[fr_nm, fr_cls, fr_dsk, fr_sq] = [p_ref_cal[0][:5], 'CLN', 1, 1] +[dwin,rwin]=[100,100] +no_rate = 0 #if =1,supress rate solutions in fringe, if =0 not do this. +smodel = [0, 0] # SMODEL in FRING step3 +#---------------------------------------------------------------- +ld_fr_fringe_flag = 0 +do_gaincor_flag = 0 +do_fr_fringe_flag = 0 +do_calib_1_flag = 0 +check_delay_rate = 0 +split_2_flag = 0 +if step3 == 1: + ld_fr_fringe_flag = 1 + do_gaincor_flag = ant_gan_cal + do_fr_fringe_flag = 1 + do_calib_1_flag = 1 + check_delay_rate = 1 + split_2_flag = 1 + +''' + for i in range(len(fr_files)): + target = [tar_names[i]] # target sourcer + p_ref_cal = [pref_names[i]] # phase ref calbrator sources '' => automatically + targets = [target[0], p_ref_cal[0]] + fr_file = fr_files[i] + [fr_nm, fr_cls, fr_dsk, fr_sq] = [fr_nms[i], 'CLN', 1, 1] + # Input image to use in FRINGE: + # ['NAME','CLASS',DISK,SEQUENCE] + + #execfile(r'' + def_file) +# step3 +''' + + +def run_main(): + logger.info('#############################################') + logger.info('### Using definition file from ' + version_date + ' ###') + logger.info('### Using AIPS Version ' + aipsver + (19 - len(aipsver)) * ' ' + '###') + logger.info('#############################################') + #n = DEF_DISKS + debug = 1 + global n + try: + debug = debug + except: + debug = 0 + + try: + if inter_flag == 0: + print + 'Running in non-interactive mode.' + else: + print + 'Running in interactive mode.' + except: + inter_flag = 1 + print + 'Running in interactive mode.' + + try: + if split_outcl == '': + split_outcl = 'SPLIT' + else: + if len(split_outcl) > 6: + split_outcl = split_outcl[0:6] + logger.info('################################################') + logger.info('split_outcl longer than 6 characters. Truncating') + logger.info('it to: ' + split_outcl) + logger.info('################################################') + except: + split_outcl = 'SPLIT' + + ############################################################################## + ##### Set default parameters, if not set ##### + ############################################################################## + ############################################################################## + # Start main script + if load_flag == 1: + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + logger.info('Step1 begins') + logger.info('This step will load the data and creat necessary AIPS tables for further calibrations') + logger.info('It will also do some basic flaggings, and print out some plots for checking') + for i in range(n): + loadindx(file_path, filename[i], outname[i], outclass[i], outdisk[i], + nfiles[i], ncount[i], doconcat[i], antname) + + data = range(n) + + logger.info('##################################') + for i in range(n): + data[i] = AIPSUVData(outname[i], outclass[i], int(outdisk[i]), int(1)) + if data[i].exists(): + data[i].clrstat() + if dtsum_flag == 1: + rundtsum(data[i]) + if listr_flag == 1: + runlistr(data[i]) + if get_key_flag == 1:#for vlba only + if antname=='VLBA': + get_key_file(data[i], code) + else: + pass + logger.info('##################################') + + ########################### + + ###########################b######################################## + # Geodetic block analysis + # Data Preparation + # Download TEC maps and EOPs + + if geo_prep_flag > 0: + geo_data = data[0] + f1=0 + #download TEC and eop files + (year, month, day) = get_observation_year_month_day(geo_data) + num_days = get_num_days(geo_data) + doy = get_day_of_year(year, month, day) + get_TEC(year, doy, TECU_model, geo_path) + get_eop(geo_path) + if num_days == 2: + get_TEC(year, doy + 1, TECU_model, geo_path) + logger.info('######################') + logger.info(get_time()) + logger.info('######################') + # runuvflg(geo_data,flagfile[geo_data_nr]) + check_sncl(geo_data, 0, 1) + if year < 1998:#do not do tecor if year <1998 + logger.info('The observing time is too early for inoex recordings, so no tecor can be made') + f1=1 # just a factor to control whether to do runTECOR or not. + if geo_data.header['telescop'] == 'EVN':#no eops for EVN + if geo_prep_flag + f1 == 1: + runTECOR(geo_data, year, doy, num_days, 3, TECU_model) + else: + runtacop(geo_data, geo_data, 'CL', 1, 3, 0) + else: + if geo_prep_flag + f1 == 1: #generate CL2 + runTECOR(geo_data, year, doy, num_days, 2, TECU_model) + else: + runtacop(geo_data, geo_data, 'CL', 1, 2, 0) + runeops(geo_data, geo_path) #generate CL3 + + geo_data = data[0] + sx_geo = False +################################################################### +#save tables, do flaggings + pr_data = data[0] + if tasav_flag == 1: + logger.info('Begin tasave') + if flagfile[i] != '': + runuvflg(pr_data, flagfile[i]) + if antabfile[i] != '': + if pr_data.table_highver('AIPS TY') > 0: + pr_data.zap_table('AIPS TY',1) + pr_data.zap_table('AIPS GC',1) + logger.info('Deleting old TY and GC tables') + logger.info('Creating TY and GC tables from' + antabfile[i]) + runantab(pr_data, antabfile[i]) + runtasav(pr_data, i) + logger.info('Finish tasave') + if quack_flag == 1: # for EVN + if data[0].table_highver('AIPS FG')>=2: + data[0].zap_table('AIPS FG',outfg) + else: + runtacop(data[0],data[0], 'FG', 1, 2, 1) + if antname == 'EVN' or antname == 'LBA': + begquack(data[0],[0], 30./60.,2) + endquack(data[0],[0], 5./60.,2) + elif antname == 'VLBA': + begquack(data[0],[0], 4./60.,2) + endquack(data[0],[0], 2./60.,2) + run_elvflag(data[0],10,2) + if RFI_clip_flag >= 1: + if data[0].table_highver('AIPS FG')>=2: + #data[0].zap_table('AIPS FG',outfg) + infg=2 + else: + infg=1 + run_aclip(data[0],infg,flagver,3,0,0,'',2.5,0) + if man_uvflg_flag == 1: + if data[0].table_highver('AIPS FG')>=2: + #data[0].zap_table('AIPS FG',outfg) + pass + else: + tacop = AIPSTask('TACOP') + tacop.indata = data[0] + tacop.outdata = data[0] + tacop.inext = 'FG' + tacop.inver = 1 + tacop.outver = outfg + tacop.ncount = 1 + tacop() + for i in range(len(fgbchan)): + # print i + # print fgbchan[i] + # print fgechan[i] + run_uvflg(data[0],fgtimer,fgbif[i],fgeif[i],fgbchan[i],fgechan[i],fgantennas[i],outfg) + +################################################################### +#automatic search refant and fringe scan + if finder_man_flag == 1: + logger.info('Automaticlly search for refant and fringe scan') + parms_filename = 'parms-'+ outname[0] +'.txt' + p_path = './'+outname[0] + if os.path.exists(p_path+'/'+parms_filename): + pass + else: + timerange,N_obs=get_fringe_time_range(data[0],calsource[0]) + N_ant,refants=get_refantList(data[0]) + refant = refants[0] + refant_candi= refants[1:]+[0] + parms_filename = 'parms-'+ outname[0] +'.txt' + if os.path.exists(parms_filename): + os.remove(parms_filename) + sys.stdout = open(parms_filename,'w') + print (N_ant,N_obs) + print (timerange) + print (refant) + print (refant_candi) + sys.stdout = sys.__stdout__ + logger.info('mv tmp_test*.txt ' + outname[0]) + os.system('mv tmp_test*.txt ' + outname[0]) + os.system('mv ' + parms_filename + ' ' + outname[0]) + lines=open(outname[0] + '/' + parms_filename,'r').read() + lines=lines.splitlines() + refant = int(lines[2]) # refant=0 to select refant automatically + refant_candi=[] + possm_scan =[] + b = lines[3] # candidate refant for search in fringe + c = lines[1] + for i in b.split(','): + refant_candi.append(int(i.strip().strip('[]'))) + for i in c.split(','): + possm_scan.append(int(i.strip().strip('[]'))) + mp_timera = possm_scan # constrain time range for fringe finder? + logger.info('end finding scans') + elif finder_man_flag != 1: + refant = reference_antenna + refant_candi = search_antennas + possm_scan = scan_for_fringe + mp_timera = possm_scan + if inspect_flag == 1: + logger.info('############################') + logger.info('Data inspection') + logger.info('############################') + #possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=2,bpv=0,ant_use=[0],cr=0) + possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) + #possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=0,bpv=0,ant_use=[0],cr=0) #this will average all antennas + possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + runsnplt(data[0],inver=1,inex='TY',sources='',optype='TSYS',nplot=4,timer=[]) + logger.info('Step1 ends') + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') +################################################################### + # Phase referencing analysis + + n = 1 + if step2 == 1: + for i in range(n): + #n = n + 1 + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + logger.info('Step2 begins') + pr_data = data[i] + logger.info('#######################################') + logger.info('Processing phase-ref file: ' + outname[i]) + logger.info('#######################################') + if apcal_flag == 1: + logger.info('Begin apmlitute calibration APCAL') + check_sncl(data[i],0,3) + if antname == 'EVN': + runapcal(pr_data, tyver, 1, 1, dofit, 'GRID') + runclcal(pr_data, 1, 3, 4, '', 1, refant) + runtacop(pr_data, pr_data, 'SN', 1, 2, 1) + runtacop(pr_data, pr_data, 'CL', 4, 5, 1) + elif antname == 'VLBA': + runaccor(pr_data) + runclcal(pr_data, 1, 3, 4, 'self', 1, refant) + runapcal(pr_data, tyver, 1, 2, dofit, 'GRID') + runclcal(pr_data, 2, 4, 5, '', 1, refant) + elif antname == 'LBA': # for LBA + runaccor(pr_data) + runclcal(pr_data, 1, 3, 4, 'self', 1, refant) + runapcal(pr_data, tyver, 1, 2, dofit, 'GRID') + runclcal(pr_data, 2, 4, 5, '', 1, refant) + logger.info('######################') + logger.info(get_time()) + logger.info('End apmlitute calibration APCAL') + logger.info('######################') + if pang_flag == 1: + check_sncl(pr_data, 2, 5) + runpang2(pr_data) + logger.info('######################') + logger.info('finish pang') + logger.info('######################') + if pr_fringe_flag == 1: + check_sncl(data[i],2,6) + #if refant_flag==1: + # refant=select_refant2(data[i]) + man_pcal(data[i], refant, mp_source, mp_timera,6, dpfour) + runclcal2(data[i],3,6,7,'2pt',0,refant,[0],mp_source,'') + logger.info('######################') + logger.info('Finish mannual phase-cal') + logger.info('######################') + if do_fringe_flag == 1: + logger.info('######################') + logger.info('Begin first fringe') + logger.info('######################') + check_sncl(pr_data, 3, 7) + run_fringecal_1(pr_data, refant, refant_candi, calsource[0], 7, 1, solint, -1, 0,200,200) + run_fringecal_1(pr_data, refant, refant_candi, p_ref_cal[0], 7, 1, solint, -1, 0,200,200) + runclcal2(pr_data, 4, 7, 8, 'ambg', -1, refant, [0], calsource, calsource) + runclcal2(pr_data, 5, 7, 9, 'ambg', 1, refant, [0], p_ref_cal[0], targets) + logger.info('Finish fringe') + logger.info('######################') + if do_band_flag == 1: + check_sncl(pr_data, 5, 9) + logger.info('Making bandpass table') + logger.info('######################') + if pr_data.table_highver('AIPS BP') >= 1: + pr_data.zap_table('AIPS BP', -1) + run_bpass_cal(pr_data, bandcal, 8, 1) + else: + run_bpass_cal(pr_data, bandcal, 8, 1) + possmplot(pr_data, sources=p_ref_cal[0], timer=chk_trange, gainuse=9, flagver=0, stokes='HALF', nplot=9, bpv=1,ant_use=[0]) + possmplot(pr_data, sources=bandcal[0], timer=possm_scan, gainuse=8, flagver=0, stokes='HALF', nplot=9, bpv=1,ant_use=[0]) + + if bandcal == ['']: + doband = -1 + bpver = -1 + else: + doband = 1 + bpver = 1 + + if split_1_flag == 1: + logger.info('######################') + logger.info('Begin Spliting data') + check_sncl(data[i], 5, 9) + run_split2(data[i], calsource[0], 8, split_outcl, doband, bpver, flagver,split_seq) + run_split2(data[i], p_ref_cal[0], 9, split_outcl, doband, bpver, flagver,split_seq) + run_split2(data[i], target[0], 9, split_outcl, doband, bpver, flagver,split_seq) + if len(p_ref_cal) >= 2: + run_split2(data[i], p_ref_cal[1], 9, split_outcl, doband, bpver, flagver,split_seq) + logger.info('Data has been exported by SPLIT') + logger.info('################################') + # run_fittp_data(source, split_outcl, defdisk) + if auto_difmap_flag ==1: + if auto_mapping == 1: + check_sncl(data[i], 5, 9) + os.system('python3 run_difmap.py '+outname[0]+'/') + else: + pass + ##up: zyk++ + logger.info('Step2 ends') + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') +################################################################### + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + ##step3 from here + if step3==1: + logger.info('Step 3 begins') + pr_data = data[0] + fr_path=outname[0]+'/' + if bandcal == ['']: + doband = -1 + bpver = -1 + else: + doband = 1 + bpver = 1 + if auto_mapping == 1: + fr_file=str(p_ref_cal[0])+'_SPLIT_'+str(int(split_seq))+'-cln.fits' + else: + fr_file= man_fr_file + fr_image = AIPSImage(fr_nm, fr_cls, fr_dsk, fr_sq) + if ld_fr_fringe_flag == 1: + if fr_image.exists(): + pass + else: + loadfr(fr_path, fr_file, fr_nm, fr_cls, fr_dsk, antname) + logger.info('###############################') + logger.info('Loading calibrated phase-calibrator image for precise phase calibration') + logger.info('Image info:' + fr_image.name) + logger.info('###############################') + #generate a new cltable for gaincor + check_sncl(data[i],3,7) + runtacop(data[i],data[i], 'CL', 7, 8, 1) + if do_gaincor_flag == 1: # for EVN ususally, sometimes also for VLBA + # runtacop(data[i],data[i], 'CL', 9, 10, 1) + if pol == 'I': + gcal_apply(data[i],matxi,8,'') + elif pol =='LR': + gcal_apply(data[i],matxl,8,'L') + gcal_apply(data[i],matxr,8,'R') + logger.info('Finish antenna gain cor based on difmap amp_aor to cl 7') + logger.info('################################') + if do_fr_fringe_flag == 1: + check_sncl(data[i], 3, 8) + logger.info('##########################') + logger.info('Begin second fringe fitting') + run_fringecal_1(pr_data, refant, refant_candi, p_ref_cal[0], 8, 0, solint, -1, 0,dwin,rwin) + runclcal2(pr_data,4,8,9,'AMBG',1,refant,[0],p_ref_cal[0],targets) + run_fringecal_2(pr_data, fr_image, 1, 8, refant, refant_candi, p_ref_cal[0],solint,smodel, -1, 0, no_rate,dwin,rwin) + runclcal2(pr_data,5,9,10,'2PT',1,refant,[0],p_ref_cal[0],targets) + logger.info('Finish fringe fitting with FRING') + logger.info('################################') + if do_calib_1_flag == 1: + check_sncl(pr_data, 5, 10) + logger.info('######################') + logger.info('Doing Calib for possible better solutions') + run_calib_1(pr_data,fr_image,'P',10,refant,6,-1,bpver,p_ref_cal[0],0,solint) + runclcal2(pr_data, 6, 10, 11, '2PT', 1, refant, [0], p_ref_cal[0], targets) + logger.info('Finishing second calibration using CALIB') + logger.info('########################################') + if check_delay_rate == 1: + #plt_sn_cl(pr_data,6, 10, p_ref_cal[0], chk_trange, 1) + logger.info('######################') + logger.info('Begin phase and delay checking with SNPLT') + runsnplt(pr_data, inver=9, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=10, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='RATE', nplot=4, timer=[]) + runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) + #runsnplt(pr_data, inver=6, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='DELA',nplot=4,timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='RATE',nplot=4,timer=[]) + logger.info('phase and delay check have been done using SNPLT') + if split_2_flag >= 1: + check_sncl(pr_data, 6, 11) + doband =-1 + logger.info('######################') + logger.info('Spliting data') + run_split2(pr_data, target[0], 10, 'SCL10', doband, bpver, flagver,split_seq) + run_split2(pr_data, target[0], 11, 'SCL11', doband, bpver, flagver,split_seq) + run_split2(pr_data, p_ref_cal[0], 9, 'SCL9', doband, bpver, flagver,split_seq) + run_split2(pr_data, p_ref_cal[0], 10, 'SCL10', doband, bpver, flagver,split_seq) + run_split2(pr_data, p_ref_cal[0], 11, 'SCL11', doband, bpver, flagver,split_seq) + logger.info('Data spliting done') + logger.info('######################') + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + logger.info('Step3 ends') + #Step3 + #further steps after step3 + if stepn == 1: + if do_uvshift_flag ==1: + doband = -1 + check_sncl(pr_data, 6,11) + logger.info('######################') + logger.info('Shifting data before averaging') + split3_data=AIPSUVData(target[0],'4uvsh',1,split_seq) + if split3_data.exists(): + logger.info('Clear old split3 data') + split3_data.clrstat() + split3_data.zap() + run_split3(pr_data, target[0], '4uvsh', doband, bpver, 10, 0, 0) + uvfix_data=AIPSUVData(target[0],'UVFIX',1,split_seq) + if uvfix_data.exists(): + logger.info('Clear old uvfix data') + uvfix_data.clrstat() + uvfix_data.zap() + run_uvfix(split3_data,rash,decsh,'UVFIX') + shav_data=AIPSUVData(target[0],'shav',1,split_seq) + if shav_data.exists(): + logger.info('Clear old uvfix data') + shav_data.clrstat() + shav_data.zap() + run_split3(uvfix_data, target[0], 'shav', -1, 0, 0, 1, 1) + + +''' + #TODO add run_difmap.py + + # TODO + fr_path='/data/VLBI/code/vlbi-pipeline/vlbi-pipeline/BB203A/' + # TODO Phase cal + #fr_file=p_ref_cal'J1339+6328_SPLIT_1-cln.fits' + fr_file='J1339+6328_SPLIT_1-cln.fits' + #TODO fr_nm limit to 6 chars + if ld_fr_fringe_flag == 1: + fr_image = AIPSImage(fr_nm, fr_cls, fr_dsk, fr_sq) + if fr_image.exists(): + pass + else: + loadfr(fr_path, fr_file, fr_nm, fr_cls, fr_dsk, antname) + + if do_fr_fringe_flag == 1: + check_sncl(data[i], 3, 7) + fringecal(data[i], fr_image, nmaps, 7, refant, refant_candi, p_ref_cal[0], solint, smodel, doband, bpver, dpfour) + runclcal2(data[i], 4, 7, 8, 'AMBG', -1, refant, [0], p_ref_cal[0], targets) + + if do_calib_1_flag == 1: + check_sncl(data[i], 4, 8) + calib_1(data[i], fr_image, 8, refant, 5, doband, bpver, p_ref_cal[0], flagver, solint) + runclcal2(data[i], 5, 8, 9, '2PT', -1, refant, [0], p_ref_cal[0], targets) + + if check_delay_rate == 1: + # chk_sn_cl(data[i],6,10,p_ref_cal[0],chk_trange,1) + plt_sn_cl(indata,,clchk,source_chk,cl_trange,bpv) + runsnplt(pr_data, inver=8, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=9, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='RATE', nplot=4, timer=[]) + runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='DELA',nplot=4,timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='RATE',nplot=4,timer=[]) + + if split_2_flag >= 1: + # check_sncl(data[i], 6, 10) + check_sncl(data[i], 5, 9) + # run_split2(data[i], p_ref_cal[0], 10, 'SCL10', doband, bpver, flagver) + run_split2(data[i], target[0], 8, 'SCL10', doband, bpver, flagver,split_seq) + # run_split2(data[i], p_ref_cal[0], 11, 'SCL11', doband, bpver, flagver) + run_split2(data[i], target[0], 9, 'SCL11', doband, bpver, flagver,split_seq) + if split_2_flag >= 2: + run_split2(data[i], p_ref_cal[0], 8, 'SCL10', doband, bpver, flagver,split_seq) + run_split2(data[i], p_ref_cal[0], 9, 'SCL11', doband, bpver, flagver,split_seq) +''' +########################################################################### +''' + if phase_cal_flag == 1: + source = calsource + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + cal_ants = antennas + im_ants = [] + for entry in dofit[0]: + im_ants.append(-entry) + + for i in range(len(phase_loop)): + cal_data = phase_selfcal(indata, source, phase_loop[i], line_data.disk, + niter, cellsize, imsize, imna, + cal_ants, im_ants, refant, fr_image, beam) + indata = cal_data + logger.info('########################################################') + + if amp_cal_flag == 1: + source = calsource + if len(dofit) != len(amp_loop): + dofit = range(amp_loop) + logger.info('dofit and amp_loop not equal length, solving for all antennas') + for i in range(len(dofit)): + dofit[i] = 0 + + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + indata = check_cal(indata, source, outdisk, imna) + for i in range(len(amp_loop)): + cal_data = amp_selfcal(indata, source, amp_loop[i], line_data.disk, + niter, cellsize, imsize, imna, antennas, + refant, dofit[i], beam) + indata = cal_data + logger.info('########################################################') + + if refeed_flag == 1: + + source = calsource + if imna == '': + outname = source + else: + outname = source[:11 - len(imna)] + '-' + imna + nimage = 1 + while AIPSImage(outname, 'ICL001', line_data.disk, nimage + 1).exists(): + nimage += 1 + + model = AIPSImage(outname, 'ICL001', line_data.disk, nimage) + + if data[i].exists(): + logger.info('Using shifted data (CVEL).') + cont_used = data[i] + else: + logger.info('Using unshifted data (CVEL).') + cont_used = data[i] + + check_sncl(cont_used, 3, 7) + fringecal(cont_used, model, nmaps, refant, calsource, solint, smodel, doband, bpver, dpfour) + if snflg_flag == 1: + runsnflg(cont_used, 4, calsource) + if min_elv > 0: + run_elvflag(cont_used, min_elv) + runclcal(cont_used, 4, 7, 8, '', 1, refant) + run_snplt(cont_used, inter_flag) + + logger.info('######################') + logger.info(get_time()) + logger.info('######################') + + split_sources = get_split_sources(data[i], target, cvelsource, calsource) + + if data[i].exists(): + check_sncl(data[i], 4, 8) + run_split(data[i], split_sources, split_outcl, doband, bpver) + else: + check_sncl(data[i], 4, 8) + run_split(data[i], split_sources, split_outcl, doband, bpver) + + cvelsource = findcvelsource(line_data, cvelsource) + + if line_data2.exists(): + check_sncl(line_data2, 4, 8) + run_masplit(line_data2, cvelsource, split_outcl, doband, bpver, smooth, channel) + else: + check_sncl(line_data, 4, 8) + run_masplit(line_data, cvelsource, split_outcl, smooth, channel) + + split_sources = get_split_sources(data[i], target, cvelsource, calsource) + + for source in split_sources: + split_data = AIPSUVData(source, split_outcl, data[i].disk, 1) + if split_data.exists(): + runimagr(split_data, source, niter, cellsize, imsize, -1, imna, + antennas, uvwtfn, robust, beam) + + if phase_target_flag != '': + source = phase_target_flag + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + for entry in phase_loop: + cal_data = phase_selfcal(indata, source, entry, line_data.disk, niter, + cellsize, imsize, imna, antennas, + refant, beam) + indata = cal_data + + if amp_target_flag != '': + source = phase_target_flag + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + for entry in amp_loop: + cal_data = amp_selfcal(indata, source, entry, line_data.disk, niter, + cellsize, imsize, imna, antennas, + beam, refant) + indata = cal_data + + if apply_selfcal == 1: + do_apply_selfcal(calsource, calsource, split_outcl, defdisk, refant) + for entry in target: + do_apply_selfcal(entry, calsource, split_outcl, defdisk, refant) + + if plot_tables != -1: + + if plot_tables == line: + if line_data2.exists(): + logger.info('Using shifted data (CVEL).') + line_used = line_data2 + else: + logger.info('Using unshifted data (CVEL).') + line_used = line_data + plot_data = line_used + else: + plot_data = data[plot_tables] + + setup_plotfiles(plot_data) + run_snplt_2(plot_data, inver=1, inext='sn', optype='AMP', nplot=8, sources='', timer=[]) + # run_snplt_2(plot_data, 1, 'AMP', 'SN1') + # run_snplt_2(plot_data, 2, 'AMP', 'SN2') + # run_snplt_2(plot_data, 3, 'DELA', 'SN3') + # run_snplt_2(plot_data, 4, 'PHAS', 'SN4') + if (os.path.exists('delay-rate.ps')): + os.popen(r'convert delay-rate.ps delay-rate.png') + os.popen(r'mv delay-rate.png plotfiles/') + if (os.path.exists('delay-rate-ionos.ps')): + os.popen(r'convert delay-rate-ionos.ps delay-rate-ionos.png') + os.popen(r'mv delay-rate-ionos.png plotfiles/') + # rdbe_plot(data[geo_data_nr],'GEO') + + if rpossm_flag == 1: + cvelsource = findcvelsource(line_data, cvelsource) + for source in cvelsource: + split_data = AIPSUVData(source, split_outcl, line_data.disk, 1) + if split_data.exists(): + tv = AIPSTV.AIPSTV() + if inter_flag == 1: + if tv.exists() == False: tv.start() + runrpossm(split_data, cvelsource, tv, inter_flag, antennas) + + if ma_sad_flag == 1: + cvelsource = findcvelsource(line_data, cvelsource) + for source in cvelsource: + ma_cube = AIPSImage(source, 'ICL001', line_data.disk, 1) + run_ma_sad(ma_cube, line_data, min_snr, dyna) + # orfit_to_plot_sorted(ma_cube, line_data) + orfit_to_plot_sorted(ma_cube, line_data, bchan, vel) + + if plot_map == 1: + cvelsource = findcvelsource(line_data, cvelsource) + for source in cvelsource: + ma_cube = AIPSImage(source, 'ICL001', line_data.disk, 1) + plot_spot_map(ma_cube, line_data) + + tv = AIPSTV.AIPSTV() + if tv.exists(): + raw_input('Press Enter to close window. ') + tv.kill() +''' + +if __name__ == '__main__': + run_main() diff --git a/vlbi-pipeline/main.py b/vlbi-pipeline/main.py index 4894e39..9a4dfa7 100644 --- a/vlbi-pipeline/main.py +++ b/vlbi-pipeline/main.py @@ -1,511 +1,925 @@ -#!/usr/bin/env ParselTongue - -import time -import sys -#import pathlib - -from AIPS import AIPS -import os -from config import * -import argparse -from utils import * -from make_utils import * -from run_tasks import * -from get_utils import * -from check_utils import * -from plot_utils import * - -# Init setting -aipsver = AIPS_VERSION -AIPS.userno = AIPS_NUMBER -inter_flag = INTER_FLAG -antname = antname - -# Setting the parameters -parser = argparse.ArgumentParser(description="VLBI pipeline") -parser.add_argument('aips-number', metavar='aips number', type=int, nargs='+', help='the AIPS number ') -parser.add_argument('fits_file', metavar='fits file', type=str, nargs='+', help='files file name') -#parser.add_argument('-p', '--file-path', type=pathlib.Path, default='/data/VLBI/VLBA/', help='the data path of fits file') -#parser.add_argument('-i', '--image-path', type=pathlib.Path, default='/data/VLBI/VLBA/images/', help='the data path of image file') -parser.add_argument('-o', '--output-filename', default='demo', help='the output file name') - - - -def current_time(): - cur_time = time.strftime('%Y%m%d.%H%M%S') - print (time.strftime('%Y%m%d.%H%M%S')) - return cur_time - - - -# Optional parameters for each file -# outdisk[0] = 3 # AIPS disk for this file (if != defdisk) -# usually for EVN stations -# flagfile[0] = 'es094.uvflg' # flag file for UVFLG -# antabfile[0] = 'es094.antab' # antab file for ANTAB - -#antname = 'VLBA' # Antenna order for FITLD -#refant = 4 # refant=0 to select refant automatically -#AIPS.log = open(logfile, 'a') - - -################# -# Control Flags # -################# -step1 = step1 # auto control of the flags in this block -# set to 1 for automatic procedure, set 0 to enable task by ta sk mannual checking -step2 = step2 # Auto control of the seond block -step3 = step3 -finder_man_flag = 1 #activate automatice selecting fringe scan and refant -################################## -# Data preparation and first prep# -################################## -RFI_clip_flag = 0 # Automatic flagging of RFI by cliping auto-correlation with 2.5 -get_key_flag = 0 # Download key-file from archive -# RDBE_check = 0 # Check Geoblock data for RDBE errors? -quack_flag = 0 # Run quack if special considerations (e.g. EVN p-ref) - -load_flag = 0 # Load data from disk? -listr_flag = 0 # Print out LISTR? -dtsum_flag = 0 # Run dtsum to check antena participation? -tasav_flag = 0 # Run tasav on original tables? -geo_prep_flag = 0 # Run TECOR and EOP corrections? and uvflg for evn data -inspect_flag = 0 - -if step1 == 1: - load_flag = 1 - listr_flag = 1 - dtsum_flag = 1 - tasav_flag = 1 - geo_prep_flag = 1 - RFI_clip_flag = 1 # Automatic flagging of RFI by cliping auto-correlation with 2.5 - inspect_flag = 1 - quack_flag = do_quack # Run quack if special considerations (e.g. EVN p-ref) -######################################################################### -# information to fill after first prep # -######################################################################### -## single step before step 2: find the calibrator scan as possm scan ## -## and run possm, snplt(ty) to find refantenna and fill the rest info ## -######################################################################### -if os.path.exists(outname[0]+'/'): - pass -else: - os.system('mkdir '+ outname[0]) -calsource = calsource # calibrator '' => automatically -mp_source = calsource # fringe finder '' => automatically -#mp_timera = possm_scan # constrain time range for fringe finder? -bandcal = calsource # Bandpass calibrator -targets= target + p_ref_cal -flagver = 2 # Flag table version to be used -tyver = 1 # Tsys table version to be used -chk_trange = [0] # set the whole time range -dofit = 1 -outfg=2 -dpfour = 1 -split_seq = 1 -# dofit= [-1,1,1,1,1,1,-1,-1,1,1,1,1,1,1,-1] #usually for EVN with tsys antenas - -apcal_flag = 0 # Do amplitude calibration? -pang_flag = 0 # Run PANG? -pr_fringe_flag = 0 # Do manual phase cal? -do_fringe_flag = 0 # Do first run of fringe cal on all sources? -plot_first_run = 0 # DO possm and snplt to check first run result? -do_band_flag = 0 -split_1_flag = 0 # Split calibrated data in first run? - -if step2 == 1: - apcal_flag = 1 # Do amplitude calibration? - pang_flag = 1 # Run PANG? - pr_fringe_flag = 1 # Do manual phase cal? - do_fringe_flag = 1 # Do first run of fringe cal on all sources? - plot_first_run = 1 # DO possm and snplt to check first run result? - do_band_flag = 1 - split_1_flag = 1 - -######################################################################### -# second-run--data_calibration # -######################################################################### - -########################################################################### -# for networks that are not well constained with tgain(e.g. EVN) -matxl = [[0.89, 0.92, 0.79, 1.03, 0.9, 0.89, 0.79, 0.94, ], - [1, 1, 1, 1, 0.43, 0.37, 0.31, 0.34, ], - [1.1, 1.08, 1.23, 1.1, 1.11, 1.12, 1.12, 1.11, ], - [1, 0.93, 0.97, 0.99, 1, 0.99, 0.98, 0.97, ], - [1.01, 1.02, 1.02, 1, 1.02, 1.02, 1, 1.02, ], - [1, 1, 1, 0.99, 0.96, 0.96, 0.95, 0.95, ], - [0.95, 1.01, 0.96, 0.97, 0.99, 1.05, 1.07, 1.07, ], - [0.92, 0.91, 0.93, 0.91, 0.95, 0.99, 1, 1.41, ], - [1.09, 1.02, 1.1, 1.18, 1.23, 1.15, 1.15, 1.3, ], - [0.82, 0.8, 0.84, 0.87, 0.85, 0.88, 0.91, 0.92, ], - [0.7, 0.73, 0.71, 0.73, 0.75, 0.77, 0.78, 0.78, ], - [0.96, 0.99, 1, 1.05, 1.07, 1.1, 1.14, 1.14, ], - [1.07, 1.05, 1.02, 1.03, 1.05, 1.05, 1.1, 1.08, ], - [1.14, 1.16, 1.19, 1.13, 1.12, 1.14, 1.18, 1.26, ]] -matxr = [[1.05, 1.17, 1.18, 1.02, 0.97, 1.27, 0.92, 1.28, ], - [1, 1, 1, 1, 0.68, 0.51, 0.35, 0.35, ], - [1.39, 1.39, 1.71, 1.43, 1.43, 1.5, 1.43, 1.41, ], - [1.26, 1.12, 1.06, 1.24, 1.23, 1.1, 1.2, 1.19, ], - [1.23, 1.25, 1.24, 1.23, 1.25, 1.24, 1.25, 1.23, ], - [1.27, 1.27, 1.28, 1.24, 1.24, 1.24, 1.22, 1.23, ], - [1.25, 1.45, 1.17, 1.25, 1.27, 1.4, 1.34, 1.38, ], - [1.13, 1.14, 1.13, 1.12, 1.17, 1.23, 1.28, 1.58, ], - [1.35, 1.26, 1.29, 1.38, 1.47, 1.42, 1.34, 1.53, ], - [1.01, 1.01, 0.97, 1, 1.11, 1.17, 1.17, 1.18, ], - [0.96, 0.99, 0.97, 0.99, 0.96, 0.99, 1.01, 1.03, ], - [0.58, 0.54, 0.54, 0.58, 0.59, 0.63, 0.69, 0.69, ], - [1.43, 1.39, 1.37, 1.37, 1.37, 1.36, 1.41, 1.4, ], - [1.48, 1.47, 1.49, 1.46, 1.45, 1.45, 1.49, 1.58, ]] - -do_gaincor_flag = 0 # set this and go back to step2s - -########################################################################### -################################## -# Optional inputs for fringe fit # -################################## - -# fr_files=['J0932-v1-mod2.fits','J1002-v1-mod2.fits','J1119-v1-mod2.fits','J1213-v1-mod2.fits','J1353-v1-mod2.fits','J1453-v1-mod2.fits','J1609-v1-mod2.fits'] -# fr_nms=['J0932-fr','J1002-fr','J1119-fr','J1213-fr','J1353-fr','J1453-fr','J1609-fr'] -''' -fr_files = ['J1453-v1-mod2.fits', 'J1609-v1-mod2.fits'] -fr_nms = ['J1453-fr', 'J1609-fr'] -solint = 2 # SOLINT in FRING -nmaps = 1 # NMAPS in FRING -# doband = -1 -''' -[fr_nm, fr_cls, fr_dsk, fr_sq] = [p_ref_cal[0][:5], 'CLN', 1, 1] -[dwin,rwin]=[100,100] -no_rate = 0 #if =1,supress rate solutions in fringe, if =0 not do this. -smodel = [0, 0] # SMODEL in FRING step3 -#---------------------------------------------------------------- -ld_fr_fringe_flag = 0 -do_fr_fringe_flag = 0 -do_calib_1_flag = 0 -check_delay_rate = 0 -split_2_flag = 0 -if step3 == 1: - ld_fr_fringe_flag = 1 - do_fr_fringe_flag = 1 - do_calib_1_flag = 1 - check_delay_rate = 1 - split_2_flag = 1 - -''' - for i in range(len(fr_files)): - target = [tar_names[i]] # target sourcer - p_ref_cal = [pref_names[i]] # phase ref calbrator sources '' => automatically - targets = [target[0], p_ref_cal[0]] - fr_file = fr_files[i] - [fr_nm, fr_cls, fr_dsk, fr_sq] = [fr_nms[i], 'CLN', 1, 1] - # Input image to use in FRINGE: - # ['NAME','CLASS',DISK,SEQUENCE] - - #execfile(r'' + def_file) -# step3 -''' - - -def run_main(logfile): - mprint('#############################################', logfile) - mprint('### Using definition file from ' + version_date + ' ###', logfile) - mprint('### Using AIPS Version ' + aipsver + (19 - len(aipsver)) * ' ' + '###', logfile) - mprint('#############################################', logfile) - #n = DEF_DISKS - debug = 1 - global n - try: - debug = debug - except: - debug = 0 - - try: - if inter_flag == 0: - print - 'Running in non-interactive mode.' - else: - print - 'Running in interactive mode.' - except: - inter_flag = 1 - print - 'Running in interactive mode.' - - try: - if split_outcl == '': - split_outcl = 'SPLIT' - else: - if len(split_outcl) > 6: - split_outcl = split_outcl[0:6] - mprint('################################################', logfile) - mprint('split_outcl longer than 6 characters. Truncating', logfile) - mprint('it to: ' + split_outcl, logfile) - mprint('################################################', logfile) - except: - split_outcl = 'SPLIT' - - ############################################################################## - ##### Set default parameters, if not set ##### - ############################################################################## - ############################################################################## - # Start main script - if load_flag == 1: - for i in range(n): - loadindx(file_path, filename[i], outname[i], outclass[i], outdisk[i], - nfiles[i], ncount[i], doconcat[i], antname, logfile) - - data = range(n) - - mprint('##################################', logfile) - for i in range(n): - data[i] = AIPSUVData(outname[i], outclass[i], int(outdisk[i]), int(1)) - if data[i].exists(): - data[i].clrstat() - if dtsum_flag == 1: - rundtsum(data[i]) - if listr_flag == 1: - runlistr(data[i]) - if get_key_flag == 1:#for vlba only - if antname=='VLBA': - get_key_file(data[i], code) - else: - pass - ########################### - # Data Preparation - # Download TEC maps and EOPs - ###########################b######################################## - # Geodetic block analysis - if geo_prep_flag > 0: - geo_data = data[0] - (year, month, day) = get_observation_year_month_day(geo_data) - num_days = get_num_days(geo_data) - doy = get_day_of_year(year, month, day) - get_TEC(year, doy, TECU_model, geo_path) - get_eop(geo_path) - if num_days == 2: - get_TEC(year, doy + 1, TECU_model, geo_path) - mprint('######################', logfile) - mprint(get_time(), logfile) - mprint('######################', logfile) - # runuvflg(geo_data,flagfile[geo_data_nr],logfile) - check_sncl(geo_data, 0, 1, logfile) - if geo_data.header['telescop'] == 'EVN':#no eops for EVN - if geo_prep_flag == 1: - runTECOR(geo_data, year, doy, num_days, 3, TECU_model) - else: - runtacop(geo_data, geo_data, 'CL', 1, 3, 0) - else: - if geo_prep_flag == 1: - runTECOR(geo_data, year, doy, num_days, 2, TECU_model) - else: - runtacop(geo_data, geo_data, 'CL', 1, 2, 0) - runeops(geo_data, geo_path) - geo_data = data[0] - sx_geo = False -################################################################### - # Data inspect - if finder_man_flag == 1: - parms_filename = 'parms-'+ outname[0] +'.txt' - p_path = './'+outname[0] - if os.path.exists(p_path+'/'+parms_filename): - pass - else: - timerange,N_obs=get_fringe_time_range(data[0],calsource[0]) - N_ant,refants=get_refantList(data[0]) - refant = refants[0] - refant_candi= refants[1:]+[0] - parms_filename = 'parms-'+ outname[0] +'.txt' - if os.path.exists(parms_filename): - os.remove(parms_filename) - sys.stdout = open(parms_filename,'w') - print (N_ant,N_obs) - print (timerange) - print (refant) - print (refant_candi) - sys.stdout = sys.__stdout__ - os.system('mv tmp_test*.txt ' + outname[0]) - os.system('mv ' + parms_filename + ' ' + outname[0]) - lines=open(outname[0] + '/' + parms_filename,'r').read() - lines=lines.splitlines() - refant = int(lines[2]) # refant=0 to select refant automatically - refant_candi=[] - possm_scan =[] - b = lines[3] # candidate refant for search in fringe - c = lines[1] - for i in b.split(','): - refant_candi.append(int(i.strip().strip('[]'))) - for i in c.split(','): - possm_scan.append(int(i.strip().strip('[]'))) - mp_timera = possm_scan # constrain time range for fringe finder? - if inspect_flag == 1: - mprint('############################', logfile) - mprint('Data inspection', logfile) - mprint('############################', logfile) - ############################################################## - ############################################################## - # if antname == 'EVN': - # runantab(data[0],antabfile[0]) - possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) - possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=0,bpv=0,ant_use=[0],cr=0) #this will average all antennas - possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) - runsnplt(data[0],inver=1,inex='TY',sources='',optype='TSYS',nplot=4,timer=[]) - -################################################################### - # Phase referencing analysis - for i in range(n): - n = n + 1 - pr_data = data[i] - mprint('#######################################', logfile) - mprint('Processing phase-ref file: ' + outname[i], logfile) - mprint('#######################################', logfile) - - if tasav_flag == 1: - if flagfile[i] != '': - runuvflg(pr_data, flagfile[i], logfile) - if antabfile[i] != '': - runantab(pr_data, antabfile[i]) - runtasav(pr_data, i, logfile) - if quack_flag == 1: # for EVN - if data[0].table_highver('AIPS FG')>=2: - data[0].zap_table('AIPS FG',outfg) - else: - runtacop(data[0],data[0], 'FG', 1, 2, 1) - if antname == 'EVN' or antname == 'LBA': - begquack(data[0],[0], 30./60.,2) - endquack(data[0],[0], 5./60.,2) - elif antname == 'VLBA': - begquack(data[0],[0], 4./60.,2) - endquack(data[0],[0], 2./60.,2) - run_elvflag(data[0],15,2,logfile) - if RFI_clip_flag >= 1: - if data[0].table_highver('AIPS FG')>=2: - #data[0].zap_table('AIPS FG',outfg) - infg=2 - else: - infg=1 - run_aclip(data[0],infg,flagver,3,0,0,'',2.5,0) - possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=2,bpv=0,ant_use=[0],cr=0) - if apcal_flag == 1: - print pr_data.header['telescop'] - if pr_data.header['telescop'] == 'EVN': - runapcal(pr_data, tyver, 1, 1, dofit, 'GRID') - runclcal(pr_data, 1, 3, 4, '', 1, refant) - runtacop(pr_data, pr_data, 'SN', 1, 2, 1) - runtacop(pr_data, pr_data, 'CL', 4, 5, 1) - if antname == 'VLBA': - runaccor(pr_data) - runclcal(pr_data, 1, 3, 4, 'self', 1, refant) - runapcal(pr_data, tyver, 1, 2, 1, 'GRID') - runclcal(pr_data, 2, 4, 5, '', 1, refant) - else: # for LBA - runaccor(pr_data) - runclcal(pr_data, 1, 3, 4, 'self', 1, refant) - runapcal(pr_data, tyver, 1, 2, -1, 'GRID') - runclcal(pr_data, 2, 4, 5, '', 1, refant) - mprint('######################', logfile) - mprint(get_time(), logfile) - mprint('######################', logfile) - if pang_flag == 1: - check_sncl(pr_data, 2, 5, logfile) - runpang2(pr_data) - mprint('######################', logfile) - mprint('finish pang', logfile) - mprint('######################', logfile) - if pr_fringe_flag == 1: - mprint('######################',logfile) - mprint('Begin mannual phase-cal',logfile) - mprint('######################',logfile) - check_sncl(data[i],2,6,logfile) - man_pcal(data[i], refant, mp_source, mp_timera,6,logfile, dpfour) - runclcal2(data[i],3,6,7,'2pt',0,refant,[0],mp_source,'') - if do_fringe_flag == 1: - mprint('######################', logfile) - mprint('Begin first fringe', logfile) - mprint('######################', logfile) - check_sncl(pr_data, 3, 7, logfile) - run_fringecal_1(pr_data, refant, refant_candi, calsource[0], 7, 1, solint, -1, 0,100,100) - run_fringecal_1(pr_data, refant, refant_candi, p_ref_cal[0], 7, 1, solint, -1, 0,100,100) - # run_fringecal_1(pr_data,refant, refant_candi, p_ref_cal,7,1,solint,-1,0) - runclcal2(pr_data, 4, 7, 8, 'ambg', -1, refant, [0], calsource, calsource) - runclcal2(pr_data, 5, 7, 9, 'ambg', 1, refant, [0], p_ref_cal[0], targets) - if do_band_flag == 1: - check_sncl(pr_data, 5, 9, logfile) - if pr_data.table_highver('AIPS BP') >= 1: - pr_data.zap_table('AIPS BP', -1) - run_bpass_cal(pr_data, bandcal, 8, 1, logfile) - else: - run_bpass_cal(pr_data, bandcal, 8, 1, logfile) - possmplot(pr_data, sources=p_ref_cal[0], timer=chk_trange, gainuse=9, flagver=0, stokes='HALF', nplot=9, bpv=1,ant_use=[0]) - possmplot(pr_data, sources=bandcal[0], timer=possm_scan, gainuse=8, flagver=0, stokes='HALF', nplot=9, bpv=1,ant_use=[0]) - if split_1_flag == 1: - check_sncl(data[i], 5, 9, logfile) - run_split2(data[i], calsource[0], 8, split_outcl, doband, bpver, flagver,split_seq) - run_split2(data[i], p_ref_cal[0], 9, split_outcl, doband, bpver, flagver,split_seq) - run_split2(data[i], target[0], 9, split_outcl, doband, bpver, flagver,split_seq) - if len(p_ref_cal) >= 2: - run_split2(data[i], p_ref_cal[1], 9, split_outcl, doband, bpver, flagver,split_seq) - #run_fittp_data(source, split_outcl, defdisk, logfile) - if do_gaincor_flag == 1: # for EVN ususally - # runtacop(data[i],data[i], 'CL', 9, 10, 1) - gcal_app(data[i], matxl, matxr, 5) - # run_split2(data[i], p_ref_cal[0], 9, split_outcl, doband, bpver, flagver) - ##up: zyk++ - -################################################################### - print step3 - ##step3 from here - if step3==1: - pr_data = data[0] - fr_path=outname[0]+'/' - os.system('python3 run_difmap.py '+fr_path) - fr_file=str(p_ref_cal[0])+'_SPLIT_'+str(int(split_seq))+'-cln.fits' - fr_image = AIPSImage(fr_nm, fr_cls, fr_dsk, fr_sq) - print fr_image - if ld_fr_fringe_flag == 1: - if fr_image.exists(): - pass - else: - loadfr(fr_path, fr_file, fr_nm, fr_cls, fr_dsk, antname, logfile) - if do_fr_fringe_flag == 1: - check_sncl(data[i], 3, 7, logfile) - run_fringecal_1(pr_data, refant, refant_candi, p_ref_cal[0], 7, 0, solint, -1, 0,dwin,rwin) - runclcal2(pr_data,4,7,8,'AMBG',1,refant,[0],p_ref_cal[0],targets) - run_fringecal_2(pr_data, fr_image, 1, 8, refant, refant_candi, p_ref_cal[0],solint,smodel, -1, 0, no_rate,dwin,rwin, logfile) - runclcal2(pr_data,5,8,9,'2PT',1,refant,[0],p_ref_cal[0],targets) - if do_calib_1_flag == 1: - check_sncl(pr_data, 5, 9, logfile) - run_calib_1(pr_data,fr_image,'A&P',9,refant,6,-1,bpver,p_ref_cal[0],0,solint) - runclcal2(pr_data, 6, 9, 10, '2PT', 1, refant, [0], p_ref_cal[0], targets) - if check_delay_rate == 1: - #plt_sn_cl(pr_data,6, 10, p_ref_cal[0], chk_trange, 1) - runsnplt(pr_data, inver=8, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=9, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) - runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='RATE', nplot=4, timer=[]) - runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) - runsnplt(pr_data, inver=6, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) - # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='DELA',nplot=4,timer=[]) - # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='RATE',nplot=4,timer=[]) - if split_2_flag >= 1: - check_sncl(pr_data, 5, 10, logfile) - doband =-1 - run_split2(pr_data, target[0], 9, 'SCL9', doband, bpver, flagver,split_seq) - run_split2(pr_data, target[0], 10, 'SCL10', doband, bpver, flagver,split_seq) - run_split2(pr_data, p_ref_cal[0], 8, 'SCL8', doband, bpver, flagver,split_seq) - run_split2(pr_data, p_ref_cal[0], 9, 'SCL9', doband, bpver, flagver,split_seq) - run_split2(pr_data, p_ref_cal[0], 10, 'SCL10', doband, bpver, flagver,split_seq) -#Step3 - -if __name__ == '__main__': - #current_time() - logfilename = 'logs/vlbi-pipeline.' + current_time() + '.log' - if os.path.exists('logs'): - logfile = open(logfilename, 'a') - logfile.write("Start VLBI-pipeline >>\n") - logfile.close() - else: - os.mkdir('logs') - logfile = open(logfilename, 'a') - logfile.write("Start VLBI-pipeline >>\n") - logfile.close() - run_main(logfilename) \ No newline at end of file +#!/usr/bin/env ParselTongue + +import time +import sys +import os +import argparse +from AIPS import AIPS + +# Parse command line arguments for config file BEFORE importing config +parser = argparse.ArgumentParser(description='VLBI pipeline', add_help=False) +parser.add_argument('--config', type=str, default=None, + help='Path to configuration file (e.g., configs/bz111cl_input.py)') +args, remaining_argv = parser.parse_known_args() + +# Set config path as environment variable so config.py can find it +if args.config: + os.environ['VLBI_CONFIG'] = args.config + print("Using configuration:", args.config) + +# Usage: +# ParselTongue main.py --config configs/bz111ac_input.py + +# Now import config module (it will use the VLBI_CONFIG environment variable) +from config import * +from utils import * +from make_utils import * +from run_tasks import * +from get_utils import * +from check_utils import * +from plot_utils import * +from logging_config import logger + + + +# Init setting +aipsver = AIPS_VERSION +AIPS.userno = AIPS_NUMBER +inter_flag = INTER_FLAG +antname = antname + +# Setting the parameters +# parser = argparse.ArgumentParser(description="VLBI pipeline") +#parser.add_argument('aips-number', metavar='aips number', type=int, nargs='+', help='the AIPS number ') +#parser.add_argument('fits_file', metavar='fits file', type=str, nargs='+', help='files file name') +#parser.add_argument('-p', '--file-path', type=pathlib.Path, default='/data/VLBI/VLBA/', help='the data path of fits file') +#parser.add_argument('-i', '--image-path', type=pathlib.Path, default='/data/VLBI/VLBA/images/', help='the data path of image file') +#parser.add_argument('-o', '--output-filename', default='demo', help='the output file name') + + + +# Optional parameters for each file +# outdisk[0] = 3 # AIPS disk for this file (if != defdisk) +# usually for EVN stations +# flagfile[0] = 'es094.uvflg' # flag file for UVFLG +# antabfile[0] = 'es094.antab' # antab file for ANTAB + +#antname = 'VLBA' # Antenna order for FITLD +#refant = 4 # refant=0 to select refant automatically +#AIPS.log = open(logfile, 'a') + + + +################# +# Control Flags # +################# +step1 = step1 # auto control of the flags in this block +finder_man_flag = auto_fringe #activate automatice selecting fringe scan and refant +# set to 1 for automatic procedure, set 0 to enable task by ta sk mannual checking +step2 = step2 # Auto control of the seond block +step3 = step3 + +################################## +# Data preparation and first prep# +################################## +RFI_clip_flag = 0 # Automatic flagging of RFI by cliping auto-correlation with 2.5 + # Download key-file from archive +# RDBE_check = 0 # Check Geoblock data for RDBE errors? +quack_flag = do_quack # Run quack if special considerations (e.g. EVN p-ref) +get_key_flag = 0 +load_flag = 0 # Load data from disk? +listr_flag = 0 # Print out LISTR? +dtsum_flag = 0 # Run dtsum to check antena participation? +tasav_flag = 0 # Run tasav on original tables? +geo_prep_flag = 0 # Run TECOR and EOP corrections? and uvflg for evn data +inspect_flag = 0 +man_uvflg_flag = do_flag #comissioning + +if step1 == 1: + load_flag = 1 + listr_flag = 1 + dtsum_flag = 1 + if antname=='VLBA': + get_key_flag = 1 + geo_prep_flag = 1 + RFI_clip_flag = 1 # Automatic flagging of RFI by cliping auto-correlation with 2.5 + quack_flag = do_quack # Run quack if special considerations (e.g. EVN p-ref) + man_uvflg_flag = do_flag + sp_quack = sp_quack_flag + tasav_flag = 1 + inspect_flag = 1 +######################################################################### +# information to fill after first prep # +######################################################################### +## single step before step 2: find the calibrator scan as possm scan ## +## and run possm, snplt(ty) to find refantenna and fill the rest info ## +######################################################################### +if os.path.exists(outname[0]+'/'): + pass +else: + os.system('mkdir '+ outname[0]) +calsource = calsource # calibrator '' => automatically +mp_source = calsource # fringe finder '' => automatically + # constrain time range for fringe finder? +bandcal = calsource # Bandpass calibrator +# bandcal = [''] # Bandpass calibrator +flagver = 2 # Flag table version to be used +tyver = 1 # Tsys table version to be used +chk_trange = [0] # set the whole time range +dofit = ap_dofit +outfg=2 +dpfour = 1 +split_seq = 1 +# dofit= [-1,1,1,1,1,1,-1,-1,1,1,1,1,1,1,-1] #usually for EVN with tsys antenas + +apcal_flag = 0 # Do amplitude calibration? +pang_flag = 0 # Run PANG? +pr_fringe_flag = 0 # Do manual phase cal? +do_fringe_flag = 0 # Do first run of fringe cal on all sources? +plot_first_run = 0 # DO possm and snplt to check first run result? +do_band_flag = 0 +split_1_flag = 0 # Split calibrated data in first run? +auto_difmap_flag = 0 +if step2 == 1: + apcal_flag = 1 # Do amplitude calibration? + pang_flag = 1 # Run PANG? + pr_fringe_flag = 1 # Do manual phase cal? + do_fringe_flag = 1 # Do first run of fringe cal on all sources? + plot_first_run = 1 # DO possm and snplt to check first run result? + do_band_flag = 1 + split_1_flag = 1 + auto_difmap_flag = 1 +######################################################################### +# second-run--data_calibration # +######################################################################### + +########################################################################### +# for networks that are not well constained with tgain(e.g. EVN) +matxl = [[0.89, 0.92, 0.79, 1.03, 0.9, 0.89, 0.79, 0.94, ], + [1, 1, 1, 1, 0.43, 0.37, 0.31, 0.34, ], + [1.1, 1.08, 1.23, 1.1, 1.11, 1.12, 1.12, 1.11, ], + [1, 0.93, 0.97, 0.99, 1, 0.99, 0.98, 0.97, ], + [1.01, 1.02, 1.02, 1, 1.02, 1.02, 1, 1.02, ], + [1, 1, 1, 0.99, 0.96, 0.96, 0.95, 0.95, ], + [0.95, 1.01, 0.96, 0.97, 0.99, 1.05, 1.07, 1.07, ], + [0.92, 0.91, 0.93, 0.91, 0.95, 0.99, 1, 1.41, ], + [1.09, 1.02, 1.1, 1.18, 1.23, 1.15, 1.15, 1.3, ], + [0.82, 0.8, 0.84, 0.87, 0.85, 0.88, 0.91, 0.92, ], + [0.7, 0.73, 0.71, 0.73, 0.75, 0.77, 0.78, 0.78, ], + [0.96, 0.99, 1, 1.05, 1.07, 1.1, 1.14, 1.14, ], + [1.07, 1.05, 1.02, 1.03, 1.05, 1.05, 1.1, 1.08, ], + [1.14, 1.16, 1.19, 1.13, 1.12, 1.14, 1.18, 1.26, ]] +matxr = [[1.05, 1.17, 1.18, 1.02, 0.97, 1.27, 0.92, 1.28, ], + [1, 1, 1, 1, 0.68, 0.51, 0.35, 0.35,1 ], + [1.39, 1.39, 1.71, 1.43, 1.43, 1.5, 1.43, 1.41, ], + [1.26, 1.12, 1.06, 1.24, 1.23, 1.1, 1.2, 1.19, ], + [1.23, 1.25, 1.24, 1.23, 1.25, 1.24, 1.25, 1.23, ], + [1.27, 1.27, 1.28, 1.24, 1.24, 1.24, 1.22, 1.23, ], + [1.25, 1.45, 1.17, 1.25, 1.27, 1.4, 1.34, 1.38, ], + [1.13, 1.14, 1.13, 1.12, 1.17, 1.23, 1.28, 1.58, ], + [1.35, 1.26, 1.29, 1.38, 1.47, 1.42, 1.34, 1.53, ], + [1.01, 1.01, 0.97, 1, 1.11, 1.17, 1.17, 1.18, ], + [0.96, 0.99, 0.97, 0.99, 0.96, 0.99, 1.01, 1.03, ], + [0.58, 0.54, 0.54, 0.58, 0.59, 0.63, 0.69, 0.69, ], + [1.43, 1.39, 1.37, 1.37, 1.37, 1.36, 1.41, 1.4, ], + [1.48, 1.47, 1.49, 1.46, 1.45, 1.45, 1.49, 1.58, ]] + +do_gaincor_flag = 0 # set this and go back to step2s + +########################################################################### +################################## +# Optional inputs for fringe fit # +################################## + +# fr_files=['J0932-v1-mod2.fits','J1002-v1-mod2.fits','J1119-v1-mod2.fits','J1213-v1-mod2.fits','J1353-v1-mod2.fits','J1453-v1-mod2.fits','J1609-v1-mod2.fits'] +# fr_nms=['J0932-fr','J1002-fr','J1119-fr','J1213-fr','J1353-fr','J1453-fr','J1609-fr'] +''' +fr_files = ['J1453-v1-mod2.fits', 'J1609-v1-mod2.fits'] +fr_nms = ['J1453-fr', 'J1609-fr'] +solint = 2 # SOLINT in FRING +nmaps = 1 # NMAPS in FRING +# doband = -1 +''' + +# [dwin,rwin]=[50,100] +# no_rate = config.no_rate #if =1,supress rate solutions in fringe, if =0 not do this. +# smodel = [0, 0] # SMODEL in FRING step3 +#---------------------------------------------------------------- +ld_fr_fringe_flag = 0 +do_gaincor_flag = 0 +do_fr_fringe_flag = 0 +do_calib_1_flag = 0 +check_delay_rate = 0 +split_2_flag = 0 +split_before_average = 0 +if step3 == 1: + ld_fr_fringe_flag = 1 + do_gaincor_flag = ant_gan_cal + do_fr_fringe_flag = 1 + do_calib_1_flag = 1 + check_delay_rate = 1 + split_2_flag = 1 + split_before_average = 1 + +''' + for i in range(len(fr_files)): + target = [tar_names[i]] # target sourcer + p_ref_cal = [pref_names[i]] # phase ref calbrator sources '' => automatically + targets = [target[0], p_ref_cal[0]] + fr_file = fr_files[i] + [fr_nm, fr_cls, fr_dsk, fr_sq] = [fr_nms[i], 'CLN', 1, 1] + # Input image to use in FRINGE: + # ['NAME','CLASS',DISK,SEQUENCE] + + #execfile(r'' + def_file) +# step3 +''' + + +def run_main(): + logger.info('#############################################') + logger.info('### Using definition file from ' + version_date + ' ###') + logger.info('### Using AIPS Version ' + aipsver + (19 - len(aipsver)) * ' ' + '###') + logger.info('#############################################') + #n = DEF_DISKS + debug = 1 + global n + try: + debug = debug + except: + debug = 0 + + try: + if inter_flag == 0: + print + 'Running in non-interactive mode.' + else: + print + 'Running in interactive mode.' + except: + inter_flag = 1 + print + 'Running in interactive mode.' + + try: + if split_outcl == '': + split_outcl = 'SPLIT' + else: + if len(split_outcl) > 6: + split_outcl = split_outcl[0:6] + logger.info('################################################') + logger.info('split_outcl longer than 6 characters. Truncating') + logger.info('it to: ' + split_outcl) + logger.info('################################################') + except: + split_outcl = 'SPLIT' + + ############################################################################## + ##### Set default parameters, if not set ##### + ############################################################################## + ############################################################################## + # Start main script + if load_flag == 1: + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + logger.info('Step1 begins') + logger.info('This step will load the data and creat necessary AIPS tables for further calibrations') + logger.info('It will also do some basic flaggings, and print out some plots for checking') + for i in range(n): + loadindx(file_path, filename[i], outname[i], outclass[i], outdisk[i], + nfiles[i], ncount[i], doconcat[i], antname) + + data = range(n) + + logger.info('##################################') + for i in range(n): + data[i] = AIPSUVData(outname[i], outclass[i], int(outdisk[i]), int(1)) + if data[i].exists(): + data[i].clrstat() + if dtsum_flag == 1: + rundtsum(data[i]) + if listr_flag == 1: + runlistr(data[i]) + if get_key_flag == 1:#for vlba only + if antname=='VLBA': + get_key_file(data[i], code) + else: + pass + logger.info('##################################') + + ########################### + + ###########################b######################################## + # Geodetic block analysis + # Data Preparation + # Download TEC maps and EOPs + + if geo_prep_flag > 0: + geo_data = data[0] + f1=0 + #download TEC and eop files + (year, month, day) = get_observation_year_month_day(geo_data) + num_days = get_num_days(geo_data) + doy = get_day_of_year(year, month, day) + print(doy) + get_TEC(year, doy, TECU_model, geo_path) + get_eop(geo_path) + if num_days == 2: + get_TEC(year, doy + 1, TECU_model, geo_path) + logger.info('######################') + logger.info(get_time()) + logger.info('######################') + # runuvflg(geo_data,flagfile[geo_data_nr]) + check_sncl(geo_data, 0, 1) + if year < 1998:#do not do tecor if year <1998 + logger.info('The observing time is too early for inoex recordings, so no tecor can be made') + f1=1 # just a factor to control whether to do runTECOR or not. + if geo_data.header['telescop'] == 'EVN':#no eops for EVN + if geo_prep_flag + f1 == 1: + runTECOR(geo_data, year, doy, num_days, 3, TECU_model) + else: + runtacop(geo_data, geo_data, 'CL', 1, 3, 0) + else: + if geo_prep_flag + f1 == 1: #generate CL2 + runTECOR(geo_data, year, doy, num_days, 2, TECU_model) + else: + runtacop(geo_data, geo_data, 'CL', 1, 2, 0) + runeops(geo_data, geo_path) #generate CL3 + + geo_data = data[0] + sx_geo = False +################################################################### +#save tables, do flaggings + pr_data = data[0] + if tasav_flag == 1: + logger.info('Begin tasave') + if flagfile[i] != '': + runuvflg(pr_data, flagfile[i]) + if antabfile[i] != '': + if pr_data.table_highver('AIPS TY') > 0: + pr_data.zap_table('AIPS TY',1) + pr_data.zap_table('AIPS GC',1) + logger.info('Deleting old TY and GC tables') + logger.info('Creating TY and GC tables from' + antabfile[i]) + runantab(pr_data, antabfile[i]) + runtasav(pr_data, i) + logger.info('Finish tasave') + if quack_flag == 1: # for EVN + if data[0].table_highver('AIPS FG')>=2: + data[0].zap_table('AIPS FG',outfg) + else: + runtacop(data[0],data[0], 'FG', 1, 2, 1) + if antname == 'EVN' or antname == 'LBA': + begquack(data[0],[0], 30./60.,2) + endquack(data[0],[0], 6./60.,2) + elif antname == 'VLBA': + begquack(data[0],[0], 6./60.,2) + endquack(data[0],[0], 4./60.,2) + run_elvflag(data[0],15,[0],2) + if sp_quack_flag == 1: + for m in range(len(sp_quack_beg)): + begquack(data[0],sp_quack_ant[m],sp_quack_beg[m]/60.,outfg) + endquack(data[0],sp_quack_ant[m],sp_quack_endb[m]/60.,outfg) + run_elvflag(data[0],sp_quack_el[m],sp_quack_ant[m],outfg) + + + if RFI_clip_flag >= 1: + if data[0].table_highver('AIPS FG')>=2: + #data[0].zap_table('AIPS FG',outfg) + infg=2 + else: + infg=1 + run_aclip(data[0],infg,flagver,3,0,0,'',2.5,0) + if man_uvflg_flag == 1: + if data[0].table_highver('AIPS FG')>=2: + #data[0].zap_table('AIPS FG',outfg) + pass + else: + tacop = AIPSTask('TACOP') + tacop.indata = data[0] + tacop.outdata = data[0] + tacop.inext = 'FG' + tacop.inver = 1 + tacop.outver = outfg + tacop.ncount = 1 + tacop() + for i in range(len(fgbchan)): + # print i + # print fgbchan[i] + # print fgechan[i] + run_uvflg(data[0],fgtimer[i],fgbif[i],fgeif[i],fgbchan[i],fgechan[i],fgantennas[i],outfg) + +################################################################### +#automatic search refant and fringe scan + if finder_man_flag == 1: + logger.info('Automaticlly search for refant and fringe scan') + parms_filename = 'parms-'+ outname[0] +'.txt' + p_path = './'+outname[0] + if os.path.exists(p_path+'/'+parms_filename): + pass + else: + timerange,N_obs=get_fringe_time_range(data[0],calsource[0]) + N_ant,refants=get_refantList(data[0]) + refant = refants[0] + refant_candi= refants[1:]+[0] + parms_filename = 'parms-'+ outname[0] +'.txt' + if os.path.exists(parms_filename): + os.remove(parms_filename) + sys.stdout = open(parms_filename,'w') + print (N_ant,N_obs) + print (timerange) + print (refant) + print (refant_candi) + sys.stdout = sys.__stdout__ + logger.info('mv tmp_test*.txt ' + outname[0]) + os.system('mv tmp_test*.txt ' + outname[0]) + os.system('mv ' + parms_filename + ' ' + outname[0]) + lines=open(outname[0] + '/' + parms_filename,'r').read() + lines=lines.splitlines() + refant = int(lines[2]) # refant=0 to select refant automatically + refant_candi=[] + possm_scan =[] + b = lines[3] # candidate refant for search in fringe + c = lines[1] + for i in b.split(','): + refant_candi.append(int(i.strip().strip('[]'))) + for i in c.split(','): + possm_scan.append(int(i.strip().strip('[]'))) + mp_timera = possm_scan # constrain time range for fringe finder? + logger.info('end finding scans') + elif finder_man_flag != 1: + refant = reference_antenna + refant_candi = search_antennas + possm_scan = scan_for_fringe + mp_timera = possm_scan + if inspect_flag == 1: + logger.info('############################') + logger.info('Data inspection') + logger.info('############################') + #possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=2,bpv=0,ant_use=[0],cr=0) + possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=9,bpv=0,ant_use=[0],cr=1) + #possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=0,bpv=0,ant_use=[0],cr=0) #this will average all antennas + possmplot(data[0],sources='',timer=possm_scan,gainuse=3,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=0) + runsnplt(data[0],inver=1,inex='TY',sources='',optype='TSYS',nplot=4,timer=[]) + logger.info('Step1 ends') + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') +################################################################### + # Phase referencing analysis + n = 0 + if step2 == 1: + print(data) + pr_data=data[0] + for i in range(len(target)): + print(i) + targets=[target[i],p_ref_cal[i]] + #n = n + 1 + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + logger.info('Step2 begins') + logger.info('#######################################') + logger.info('Processing phase-ref file: ' + outname[0]) + logger.info('#######################################') + if apcal_flag == 1 and i == 0: + logger.info('Begin apmlitute calibration APCAL') + check_sncl(pr_data,0,3) + if antname == 'EVN': + runapcal(pr_data, tyver, 1, 1, dofit, 'GRID') + runclcal(pr_data, 1, 3, 4, '', 1, refant) + runtacop(pr_data, pr_data, 'SN', 1, 2, 1) + runtacop(pr_data, pr_data, 'CL', 4, 5, 1) + elif antname == 'VLBA': + runaccor(pr_data) + runclcal(pr_data, 1, 3, 4, 'self', 1, refant) + runapcal(pr_data, tyver, 1, 2, dofit, 'GRID') + runclcal(pr_data, 2, 4, 5, '', 1, refant) + elif antname == 'LBA': # for LBA + runaccor(pr_data) + runclcal(pr_data, 1, 3, 4, 'self', 1, refant) + runapcal(pr_data, tyver, 1, 2, dofit, 'GRID') + runclcal(pr_data, 2, 4, 5, '', 1, refant) + logger.info('######################') + logger.info(get_time()) + logger.info('End apmlitute calibration APCAL') + logger.info('######################') + if pang_flag == 1 and i == 0: + check_sncl(pr_data, 2, 5) + runpang2(pr_data) + logger.info('######################') + logger.info('finish pang') + logger.info('######################') + if pr_fringe_flag == 1 and i == 0: + check_sncl(pr_data,2,6) + #if refant_flag==1: + # refant=select_refant2(pr_data) + man_pcal(pr_data, refant, mp_source[0], mp_timera,6, dpfour) + runclcal2(pr_data,3,6,7,'2pt',0,refant,[0],mp_source[0],'') + if len(mp_source) >= 2: + if scan_for_fringe2 !=[0]: + man_pcal(pr_data, refant, mp_source[0], mp_timera,6, dpfour) + runclcal2(pr_data,4,6,7,'2pt',0,refant,[0],mp_source[0],'') + else: + RaiseValueError("s") + logger.info('######################') + logger.info('Finish mannual phase-cal') + logger.info('######################') + if do_fringe_flag == 1: + logger.info('######################') + logger.info('Begin first fringe') + logger.info('######################') + check_sncl(pr_data, 3, 7) + run_fringecal_1(pr_data, refant, refant_candi, calsource[0], 7, 1, solint, -1, 0,av_ifs_f1,500,500) + run_fringecal_1(pr_data, refant, refant_candi, p_ref_cal[i], 7, 1, solint, -1, 0,av_ifs_f1,500,500) + runclcal2(pr_data, 4, 7, 8, 'ambg', -1, refant, [0], calsource[0], calsource[0]) + runclcal2(pr_data, 5, 7, 9, 'ambg', 1, refant, [0], p_ref_cal[i], targets) + logger.info('Finish fringe') + logger.info('######################') + if do_band_flag == 1: + check_sncl(pr_data, 5, 9) + logger.info('Making bandpass table') + logger.info('######################') + if pr_data.table_highver('AIPS BP') >= 1: + pr_data.zap_table('AIPS BP', -1) + run_bpass_cal(pr_data, bandcal, 8, 1) + else: + run_bpass_cal(pr_data, bandcal, 8, 1) + possmplot(pr_data, sources=p_ref_cal[i], timer=chk_trange, gainuse=9, flagver=0, stokes='HALF', nplot=9, bpv=1,ant_use=[0]) + possmplot(pr_data, sources=bandcal[0], timer=possm_scan, gainuse=8, flagver=0, stokes='HALF', nplot=9, bpv=1,ant_use=[0]) + + if bandcal == ['']: + doband = -1 + bpver = -1 + else: + doband = 1 + bpver = 1 + + if split_1_flag == 1: + logger.info('######################') + logger.info('Begin Spliting data') + check_sncl(pr_data, 5, 9) + if i ==0: + run_split2(pr_data, calsource[0], 8, split_outcl, doband, bpver, flagver,1,split_seq) + run_split2(pr_data, p_ref_cal[i], 9, split_outcl, doband, bpver, flagver,1,split_seq) + run_split2(pr_data, target[i], 9, split_outcl, doband, bpver, flagver,1,split_seq) + # if len(p_ref_cal) >= 2: + # run_split2(pr_data, p_ref_cal[1], 9, split_outcl, doband, bpver, flagver,split_seq) + logger.info('Data has been exported by SPLIT') + logger.info('################################') + # run_fittp_data(source, split_outcl, defdisk) + if auto_difmap_flag ==1: + if auto_mapping == 1: + check_sncl(pr_data, 5, 9) + os.system('python3 run_difmap.py '+outname[0]+'/') + else: + pass + ##up: zyk++ + logger.info('Step2 ends') + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') +################################################################### + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + ##step3 from here + if step3==1: + for i in range(len(target)): + targets=[target[i],p_ref_cal[i]] + logger.info('Step 3 begins') + pr_data = data[0] + fr_path=outname[0]+'/' + if bandcal == ['']: + doband = -1 + bpver = -1 + else: + doband = 1 + bpver = 1 + if auto_mapping == 1: + fr_file=str(p_ref_cal[i])+'_SPLIT_'+str(int(split_seq))+'-cln.fits' + else: + fr_file= man_fr_file[i] + [fr_nm, fr_cls, fr_dsk, fr_sq] = [p_ref_cal[i][:5], 'CLN', 1, 1] + fr_image = AIPSImage(fr_nm, fr_cls, fr_dsk, fr_sq) + if ld_fr_fringe_flag == 1: + if fr_image.exists(): + if del_old_mod == True: + fr_image.clrstat() + fr_image.zap() + logger.info('##############################') + logger.info('Data already there => deleted!') + logger.info('##############################') + loadfr(fr_path, fr_file, fr_nm, fr_cls, fr_dsk, antname) + else: + pass + else: + loadfr(fr_path, fr_file, fr_nm, fr_cls, fr_dsk, antname) + logger.info('###############################') + logger.info('Loading calibrated phase-calibrator image for precise phase calibration') + logger.info('Image info:' + fr_image.name) + logger.info('###############################') + #generate a new cltable for gaincor + check_sncl(pr_data,3,7) + runtacop(pr_data,pr_data, 'CL', 7, 8, 1) + if do_gaincor_flag == 1: # for EVN ususally, sometimes also for VLBA + # runtacop(pr_data,pr_data, 'CL', 9, 10, 1) + if pol == 'I': + gcal_apply(pr_data,matxi,8,'') + elif pol =='LR': + gcal_apply(pr_data,matxl,8,'L') + gcal_apply(pr_data,matxr,8,'R') + logger.info('Finish antenna gain cor based on difmap amp_aor to cl 7') + logger.info('################################') + if do_fr_fringe_flag == 1: + check_sncl(pr_data, 3, 8) + logger.info('##########################') + logger.info('Begin second fringe fitting') + # run_fringecal_1(pr_data, refant, refant_candi, p_ref_cal[i], 8, 0, solint, -1, 0,300,300) + run_fringecal_2(pr_data, fr_image, 1, 8, refant, refant_candi, p_ref_cal[i],solint,smodel, -1, 0, no_rate,rdp_parm,av_ifs_f2,dwin,rwin) + runclcal2(pr_data,4,8,9,'AMBG',1,refant,[0],p_ref_cal[i],targets) + run_fringecal_2(pr_data, fr_image, 1, 9, refant, refant_candi, p_ref_cal[i],solint,smodel, -1, 0, no_rate,rdp_parm,av_ifs_f2,dwin,rwin) + runclcal2(pr_data,5,9,10,'2PT',1,refant,[0],p_ref_cal[i],targets) + logger.info('Finish fringe fitting with FRING') + logger.info('################################') + if do_calib_1_flag == 1: + check_sncl(pr_data, 5, 10) + logger.info('######################') + logger.info('Doing Calib for possible better solutions') + run_calib_1(pr_data,fr_image,'A&P',10,refant,6,-1,bpver,p_ref_cal[i],0,solint_cal,av_ifs_ca1) + runclcal2(pr_data, 6, 10, 11, '2PT', 1, refant, [0], p_ref_cal[i], targets) + logger.info('Finishing second calibration using CALIB') + logger.info('########################################') + if check_delay_rate == 1: + #plt_sn_cl(pr_data,6, 10, p_ref_cal[0], chk_trange, 1) + logger.info('######################') + logger.info('Begin phase and delay checking with SNPLT') + runsnplt(pr_data, inver=9, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=10, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='RATE', nplot=4, timer=[]) + runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) + #runsnplt(pr_data, inver=6, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='DELA',nplot=4,timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='RATE',nplot=4,timer=[]) + logger.info('phase and delay check have been done using SNPLT') + if split_2_flag >= 1: + check_sncl(pr_data, 6, 11) + doband =-1 + logger.info('######################') + logger.info('Spliting data') + run_split2(pr_data, target[i], 10, 'SCL10', doband, bpver, flagver,1,split_seq) + run_split2(pr_data, target[i], 10, 'S10av', doband, bpver, flagver,0,split_seq) + run_split2(pr_data, target[i], 11, 'SCL11', doband, bpver, flagver,1,split_seq) + run_split2(pr_data, target[i], 11, 'S11av', doband, bpver, flagver,0,split_seq) + run_split2(pr_data, p_ref_cal[i], 9, 'SCL9', doband, bpver, flagver,1,split_seq) + run_split2(pr_data, p_ref_cal[i], 10, 'SCL10', doband, bpver, flagver,1,split_seq) + run_split2(pr_data, p_ref_cal[i], 10, 'S10av', doband, bpver, flagver,0,split_seq) + run_split2(pr_data, p_ref_cal[i], 11, 'SCL11', doband, bpver, flagver,1,split_seq) + run_split2(pr_data, p_ref_cal[i], 11, 'S11av', doband, bpver, flagver,0,split_seq) + logger.info('Data spliting done') + logger.info('######################') + if split_before_average == 1: + logger.info('######################') + logger.info('Spliting data before averaging, for further useage of uvshift') + check_sncl(pr_data, 6,11) + split3_data=AIPSUVData(target[i],'4uvsh',1,split_seq) + if split3_data.exists(): + logger.info('Clear old split3 data') + split3_data.clrstat() + split3_data.zap() + run_split3(pr_data, target[i], '4uvsh', doband, bpver, 10, 0, 0) + logger.info('++++++++++++++++++++++++++++++++++++++++++++++++++++++++++') + logger.info('Step3 ends') + #Step3 + #further steps after step3 + if stepn == 1: + for i in range(len(target)): + doband = -1 + bpver = -1 + if do_uvshift_flag ==1: + check_sncl(pr_data, 6,11) + split3_data=AIPSUVData(target[i],'4uvsh',1,split_seq) + logger.info('######################') + logger.info('Using the non_averaged data before shifting') + uvfix_data=AIPSUVData(target[i],'UVFIX',1,split_seq) + if uvfix_data.exists(): + logger.info('Clear old uvfix data') + uvfix_data.clrstat() + uvfix_data.zap() + run_uvfix(split3_data,rash[i],decsh[i],'UVFIX') + shav_data=AIPSUVData(target[i],'shav',1,split_seq) + if shav_data.exists(): + logger.info('Clear old uvfix data') + shav_data.clrstat() + shav_data.zap() + run_split3(uvfix_data, target[i], 'shav', -1, 0, 0, 1, 1) + + +''' + #TODO add run_difmap.py + + # TODO + fr_path='/data/VLBI/code/vlbi-pipeline/vlbi-pipeline/BB203A/' + # TODO Phase cal + #fr_file=p_ref_cal'J1339+6328_SPLIT_1-cln.fits' + fr_file='J1339+6328_SPLIT_1-cln.fits' + #TODO fr_nm limit to 6 chars + if ld_fr_fringe_flag == 1: + fr_image = AIPSImage(fr_nm, fr_cls, fr_dsk, fr_sq) + if fr_image.exists(): + pass + else: + loadfr(fr_path, fr_file, fr_nm, fr_cls, fr_dsk, antname) + + if do_fr_fringe_flag == 1: + check_sncl(data[i], 3, 7) + fringecal(data[i], fr_image, nmaps, 7, refant, refant_candi, p_ref_cal[0], solint, smodel, doband, bpver, dpfour) + runclcal2(data[i], 4, 7, 8, 'AMBG', -1, refant, [0], p_ref_cal[0], targets) + + if do_calib_1_flag == 1: + check_sncl(data[i], 4, 8) + calib_1(data[i], fr_image, 8, refant, 5, doband, bpver, p_ref_cal[0], flagver, solint) + runclcal2(data[i], 5, 8, 9, '2PT', -1, refant, [0], p_ref_cal[0], targets) + + if check_delay_rate == 1: + # chk_sn_cl(data[i],6,10,p_ref_cal[0],chk_trange,1) + plt_sn_cl(indata,,clchk,source_chk,cl_trange,bpv) + runsnplt(pr_data, inver=8, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=9, inex='CL', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='DELA', nplot=4, timer=[]) + runsnplt(pr_data, inver=4, inex='SN', sources=targets, optype='RATE', nplot=4, timer=[]) + runsnplt(pr_data, inver=5, inex='SN', sources=targets, optype='PHAS', nplot=4, timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='DELA',nplot=4,timer=[]) + # runsnplt(pr_data,inver=7,inex='SN',sources='',optype='RATE',nplot=4,timer=[]) + + if split_2_flag >= 1: + # check_sncl(data[i], 6, 10) + check_sncl(data[i], 5, 9) + # run_split2(data[i], p_ref_cal[0], 10, 'SCL10', doband, bpver, flagver) + run_split2(data[i], target[0], 8, 'SCL10', doband, bpver, flagver,split_seq) + # run_split2(data[i], p_ref_cal[0], 11, 'SCL11', doband, bpver, flagver) + run_split2(data[i], target[0], 9, 'SCL11', doband, bpver, flagver,split_seq) + if split_2_flag >= 2: + run_split2(data[i], p_ref_cal[0], 8, 'SCL10', doband, bpver, flagver,split_seq) + run_split2(data[i], p_ref_cal[0], 9, 'SCL11', doband, bpver, flagver,split_seq) +''' +########################################################################### +''' + if phase_cal_flag == 1: + source = calsource + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + cal_ants = antennas + im_ants = [] + for entry in dofit[0]: + im_ants.append(-entry) + + for i in range(len(phase_loop)): + cal_data = phase_selfcal(indata, source, phase_loop[i], line_data.disk, + niter, cellsize, imsize, imna, + cal_ants, im_ants, refant, fr_image, beam) + indata = cal_data + logger.info('########################################################') + + if amp_cal_flag == 1: + source = calsource + if len(dofit) != len(amp_loop): + dofit = range(amp_loop) + logger.info('dofit and amp_loop not equal length, solving for all antennas') + for i in range(len(dofit)): + dofit[i] = 0 + + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + indata = check_cal(indata, source, outdisk, imna) + for i in range(len(amp_loop)): + cal_data = amp_selfcal(indata, source, amp_loop[i], line_data.disk, + niter, cellsize, imsize, imna, antennas, + refant, dofit[i], beam) + indata = cal_data + logger.info('########################################################') + + if refeed_flag == 1: + + source = calsource + if imna == '': + outname = source + else: + outname = source[:11 - len(imna)] + '-' + imna + nimage = 1 + while AIPSImage(outname, 'ICL001', line_data.disk, nimage + 1).exists(): + nimage += 1 + + model = AIPSImage(outname, 'ICL001', line_data.disk, nimage) + + if data[i].exists(): + logger.info('Using shifted data (CVEL).') + cont_used = data[i] + else: + logger.info('Using unshifted data (CVEL).') + cont_used = data[i] + + check_sncl(cont_used, 3, 7) + fringecal(cont_used, model, nmaps, refant, calsource, solint, smodel, doband, bpver, dpfour) + if snflg_flag == 1: + runsnflg(cont_used, 4, calsource) + if min_elv > 0: + run_elvflag(cont_used, min_elv) + runclcal(cont_used, 4, 7, 8, '', 1, refant) + run_snplt(cont_used, inter_flag) + + logger.info('######################') + logger.info(get_time()) + logger.info('######################') + + split_sources = get_split_sources(data[i], target, cvelsource, calsource) + + if data[i].exists(): + check_sncl(data[i], 4, 8) + run_split(data[i], split_sources, split_outcl, doband, bpver) + else: + check_sncl(data[i], 4, 8) + run_split(data[i], split_sources, split_outcl, doband, bpver) + + cvelsource = findcvelsource(line_data, cvelsource) + + if line_data2.exists(): + check_sncl(line_data2, 4, 8) + run_masplit(line_data2, cvelsource, split_outcl, doband, bpver, smooth, channel) + else: + check_sncl(line_data, 4, 8) + run_masplit(line_data, cvelsource, split_outcl, smooth, channel) + + split_sources = get_split_sources(data[i], target, cvelsource, calsource) + + for source in split_sources: + split_data = AIPSUVData(source, split_outcl, data[i].disk, 1) + if split_data.exists(): + runimagr(split_data, source, niter, cellsize, imsize, -1, imna, + antennas, uvwtfn, robust, beam) + + if phase_target_flag != '': + source = phase_target_flag + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + for entry in phase_loop: + cal_data = phase_selfcal(indata, source, entry, line_data.disk, niter, + cellsize, imsize, imna, antennas, + refant, beam) + indata = cal_data + + if amp_target_flag != '': + source = phase_target_flag + indata = AIPSUVData(source, split_outcl, line_data.disk, 1) + for entry in amp_loop: + cal_data = amp_selfcal(indata, source, entry, line_data.disk, niter, + cellsize, imsize, imna, antennas, + beam, refant) + indata = cal_data + + if apply_selfcal == 1: + do_apply_selfcal(calsource, calsource, split_outcl, defdisk, refant) + for entry in target: + do_apply_selfcal(entry, calsource, split_outcl, defdisk, refant) + + if plot_tables != -1: + + if plot_tables == line: + if line_data2.exists(): + logger.info('Using shifted data (CVEL).') + line_used = line_data2 + else: + logger.info('Using unshifted data (CVEL).') + line_used = line_data + plot_data = line_used + else: + plot_data = data[plot_tables] + + setup_plotfiles(plot_data) + run_snplt_2(plot_data, inver=1, inext='sn', optype='AMP', nplot=8, sources='', timer=[]) + # run_snplt_2(plot_data, 1, 'AMP', 'SN1') + # run_snplt_2(plot_data, 2, 'AMP', 'SN2') + # run_snplt_2(plot_data, 3, 'DELA', 'SN3') + # run_snplt_2(plot_data, 4, 'PHAS', 'SN4') + if (os.path.exists('delay-rate.ps')): + os.popen(r'convert delay-rate.ps delay-rate.png') + os.popen(r'mv delay-rate.png plotfiles/') + if (os.path.exists('delay-rate-ionos.ps')): + os.popen(r'convert delay-rate-ionos.ps delay-rate-ionos.png') + os.popen(r'mv delay-rate-ionos.png plotfiles/') + # rdbe_plot(data[geo_data_nr],'GEO') + + if rpossm_flag == 1: + cvelsource = findcvelsource(line_data, cvelsource) + for source in cvelsource: + split_data = AIPSUVData(source, split_outcl, line_data.disk, 1) + if split_data.exists(): + tv = AIPSTV.AIPSTV() + if inter_flag == 1: + if tv.exists() == False: tv.start() + runrpossm(split_data, cvelsource, tv, inter_flag, antennas) + + if ma_sad_flag == 1: + cvelsource = findcvelsource(line_data, cvelsource) + for source in cvelsource: + ma_cube = AIPSImage(source, 'ICL001', line_data.disk, 1) + run_ma_sad(ma_cube, line_data, min_snr, dyna) + # orfit_to_plot_sorted(ma_cube, line_data) + orfit_to_plot_sorted(ma_cube, line_data, bchan, vel) + + if plot_map == 1: + cvelsource = findcvelsource(line_data, cvelsource) + for source in cvelsource: + ma_cube = AIPSImage(source, 'ICL001', line_data.disk, 1) + plot_spot_map(ma_cube, line_data) + + tv = AIPSTV.AIPSTV() + if tv.exists(): + raw_input('Press Enter to close window. ') + tv.kill() +''' + +if __name__ == '__main__': + run_main() diff --git a/vlbi-pipeline/plot_utils.py b/vlbi-pipeline/plot_utils.py index 9c8e8a2..088159e 100644 --- a/vlbi-pipeline/plot_utils.py +++ b/vlbi-pipeline/plot_utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -#from get_utils import get_ant -from select_utils import * +# from get_utils import get_ant +# from select_utils import * import os import logging import argparse @@ -11,6 +11,7 @@ from get_utils import * from check_utils import * from config import * +from logging_config import logger from AIPS import AIPS, AIPSDisk from AIPSTask import AIPSTask, AIPSList from AIPSData import AIPSUVData, AIPSImage @@ -20,214 +21,227 @@ ############################################################################## # Plot results from geofit # -def possmplot(uvdata,sources='',timer=[0,0,0,0,0,0,0,0],gainuse=0,flagver=0,stokes='HALF',nplot=1,bpv=0,ant_use=[0],cr=1): - uvdata.zap_table('AIPS PL', -1) - possm=AIPSTask('possm') - possm.default() - possm.indata = uvdata - if(type(sources) == type('string')): - possm.sources[1] = sources - else: - possm.sources[1:] = sources - if(timer != None): - if(timer[0] == None): possm.timerange = timer - else: possm.timerang[1:] = timer - possm.stokes=stokes - possm.nplot=nplot - #if cr == 0: - #possm.nplot=0 - if(gainuse >= 0): - possm.docalib = 1 - possm.gainuse = gainuse - possm.flagv=flagver - if cr == 1:#cross-correlation - possm.aparm[1:] = [0,1,0,0,-180,180,0,0,1,0] - elif cr == 0:#total power - possm.aparm[1:] = [0,0,0,0,0,0,0,1,0] - possm.bchan = 0 - possm.echan = 0 - possm.dotv=-1 - if(bpv > 0): - possm.doband = 1 - possm.bpver = bpv - if(ant_use!=0): - possm.antennas[1:]=ant_use - possm.baseline=[None,0] - textname = outname[0]+'-'+possm.sources[1]+'.rfichk'+str(nplot) - possm.outtext = 'PWD:'+ textname - #possm.input() - print ant_use - if(ant_use!=[0]): - ants=ant_use - elif(ant_use==[0]): - ants=get_ant(uvdata) - if cr == 1: - for i in ants: - possm.antennas[1:]=[i,0] - possm.go() - else: - possm.go() - lwpla = AIPSTask('lwpla') - lwpla.indata = uvdata - #lwpla.outfile = 'PWD:'+outname[0]+'-'+sources[0]+'-cl'+str(gainuse)+'-bp'+str(bpv)+'.possm' - if sources == '': - sources=[''] - filename=outname[0]+'-'+possm.sources[1]+'-cl'+str(gainuse)+'-bp'+str(bpv)+'-'+str(cr)+'.possm'+str(nplot) - lwpla.outfile='PWD:'+filename - lwpla.plver = 1 - lwpla.inver = 100 - if os.path.exists(filename): - os.popen('rm '+filename) - lwpla.go() - if (os.path.exists(filename)==True): - os.popen(r'mv '+filename+' '+outname[0]+'/') - if (os.path.exists(textname)==True): - os.popen(r'mv '+textname+' '+outname[0]+'/') + + +def possmplot(uvdata, sources='', timer=[0, 0, 0, 0, 0, 0, 0, 0], gainuse=0, flagver=0, stokes='HALF', nplot=1, bpv=0, ant_use=[0], cr=1): + logger.info('Running POSSUM to check CL table' + str(gainuse)) + uvdata.zap_table('AIPS PL', -1) + possm = AIPSTask('possm') + possm.default() + possm.indata = uvdata + if (type(sources) == type('string')): + possm.sources[1] = sources + else: + possm.sources[1:] = sources + if (timer != None): + if (timer[0] == None): + possm.timerange = timer + else: + possm.timerang[1:] = timer + possm.stokes = stokes + possm.nplot = nplot + # if cr == 0: + # possm.nplot=0 + if (gainuse >= 0): + possm.docalib = 1 + possm.gainuse = gainuse + possm.flagv = flagver + if cr == 1: # cross-correlation + possm.aparm[1:] = [0, 1, 0, 0, -180, 180, 0, 0, 1, 0] + elif cr == 0: # total power + possm.aparm[1:] = [0, 0, 0, 0, 0, 0, 0, 1, 0] + possm.bchan = 0 + possm.echan = 0 + possm.dotv = -1 + if (bpv > 0): + possm.doband = 1 + possm.bpver = bpv + if (ant_use != 0): + possm.antennas[1:] = ant_use + possm.baseline = [None, 0] + textname = outname[0]+'-'+possm.sources[1]+'.rfichk'+str(nplot) + possm.outtext = 'PWD:' + textname + # possm.input() + #print ant_use + if (ant_use != [0]): + ants = ant_use + elif (ant_use == [0]): + ants = get_ant(uvdata) + if cr == 1: + for i in ants: + possm.antennas[1:] = [i, 0] + possm.go() + else: + possm.go() + lwpla = AIPSTask('lwpla') + lwpla.indata = uvdata + # lwpla.outfile = 'PWD:'+outname[0]+'-'+sources[0]+'-cl'+str(gainuse)+'-bp'+str(bpv)+'.possm' + if sources == '': + sources = [''] + filename = outname[0]+'-'+possm.sources[1]+'-cl' + str(gainuse)+'-bp'+str(bpv)+'-'+str(cr)+'.possm'+str(nplot) + lwpla.outfile = 'PWD:'+filename + lwpla.plver = 1 + lwpla.inver = 500 + if os.path.exists(filename): + os.popen('rm '+filename) + lwpla.go() + if (os.path.exists(filename) == True): + os.popen(r'mv '+filename+' '+outname[0]+'/') + if (os.path.exists(textname) == True): + os.popen(r'mv '+textname+' '+outname[0]+'/') + logger.info('POSSM done!') ################################################################################# -def plt_sn_cl(indata,snchk,clchk,source_chk,cl_trange,bpv): + + +def plt_sn_cl(indata, snchk, clchk, source_chk, cl_trange, bpv): if bpv == 0: - doband = -1 + doband = -1 else: doband = 1 - #runsnplt(data_i,inver=snchk,inex='SN',sources=source_chk,optype='DELA',nplot=4,timer=[]) - #runsnplt(data_i,inver=snchk,inex='SN',sources=source_chk,optype='RATE',nplot=4,timer=[]) - possmplot(data_i,sources=source_chk,timer=chk_trange,gainuse=clchk,flagver=flagver,stokes='HALF',nplot=9,bpv=bpv,ant_use=[0],cr=1) - + # runsnplt(data_i,inver=snchk,inex='SN',sources=source_chk,optype='DELA',nplot=4,timer=[]) + # runsnplt(data_i,inver=snchk,inex='SN',sources=source_chk,optype='RATE',nplot=4,timer=[]) + possmplot(data_i, sources=source_chk, timer=chk_trange, gainuse=clchk, + flagver=flagver, stokes='HALF', nplot=9, bpv=bpv, ant_use=[0], cr=1) -def runpossm(indata, calsource='', ant_use=[0], doband=-1, bpver=1, bchan=1, echan=0, gainuse=1, flagver=0,bpv=0, +def runpossm(indata, calsource='', ant_use=[0], doband=-1, bpver=1, bchan=1, echan=0, gainuse=1, flagver=0, bpv=0, stokes='HALF', nplot=9): indata.zap_table('PL', -1) # calsource=check_calsource(indata, calsource) if bchan == echan and echan != 0: - print - 'Only one channel selected.' - + print 'Only one channel selected.' elif bchan > echan: - print - 'bchan > echan' - + print 'bchan > echan' else: possm = AIPSTask('POSSM') possm.eif = 0 possm.bif = 0 possm.indata = indata - if (type(calsource) == type('string')): - possm.source[1] = calsource - else: - possm.source[1:] = calsource - # possm.source[1:] = [calsource] - possm.antenna[1:] = ant_use - possm.stokes = stokes - possm.docal = 1 - possm.gainuse = gainuse - possm.nplots = nplot - possm.bchan = bchan - possm.echan = echan - possm.doband = doband - possm.bpver = bpver - possm.flagver = flagver - - if AIPSTV.AIPSTV().exists(): - possm.dotv = 1 - gv_flag = 0 - else: - possm.dotv = -1 - gv_flag = 1 - possm() - - if gv_flag == 1: - if os.path.exists('possm.ps'): - os.popen('rm possm.ps') - lwpla = AIPSTask('LWPLA') - lwpla.indata = indata - lwpla.inver = 0 - lwpla.outfile = 'PWD:' + outname[0] + '-' + [calsource] + '-cl' + str(gainuse) + '-bp' + str(bpv) + '.possm' - lwpla() - - indata.zap_table('PL', -1) - os.popen('gv possm.ps') - # os.popen('rm possm.ps') + if (type(calsource) == type('string')): + possm.source[1] = calsource + else: + possm.source[1:] = calsource + # possm.source[1:] = [calsource] + possm.antenna[1:] = ant_use + possm.stokes = stokes + possm.docal = 1 + possm.gainuse = gainuse + possm.nplots = nplot + possm.bchan = bchan + possm.echan = echan + possm.doband = doband + possm.bpver = bpver + possm.flagver = flagver + + if AIPSTV.AIPSTV().exists(): + possm.dotv = 1 + gv_flag = 0 + else: + possm.dotv = -1 + gv_flag = 1 + possm() + + if gv_flag == 1: + if os.path.exists('possm.ps'): + os.popen('rm possm.ps') + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.inver = 0 + lwpla.outfile = 'PWD:' + \ + outname[0] + '-' + [calsource] + '-cl' + \ + str(gainuse) + '-bp' + str(bpv) + '.possm' + lwpla() + + indata.zap_table('PL', -1) + os.popen('gv possm.ps') + # os.popen('rm possm.ps') ############################################################################## # + + def run_snplt(indata, inter_flag): indata.zap_table('PL', -1) - n_ant = len(get_ant(indata)) - snplt = AIPSTask('SNPLT') - snplt.indata = indata - snplt.stokes = 'RR' - snplt.inver = 4 - snplt.inext = 'SN' - snplt.optype = 'PHAS' - snplt.nplots = n_ant - snplt.bif = 1 - snplt.eif = 1 - snplt.dotv = -1 + n_ant = len(get_ant(indata)) + snplt = AIPSTask('SNPLT') + snplt.indata = indata + snplt.stokes = 'RR' + snplt.inver = 4 + snplt.inext = 'SN' + snplt.optype = 'PHAS' + snplt.nplots = n_ant + snplt.bif = 1 + snplt.eif = 1 + snplt.dotv = -1 snplt() - name=indata.name+'_sn4.ps' + name = indata.name+'_sn4.ps' if os.path.exists(name): os.popen('rm '+name) - lwpla = AIPSTask('LWPLA') - lwpla.indata = indata - lwpla.inver = 0 + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.inver = 0 lwpla.outfile = 'PWD:'+name lwpla() - if inter_flag==1: - tv=AIPSTV.AIPSTV() - if tv.exists()==False: - tv.start() - if tv.exists(): - tv.clear() - - if AIPSTV.AIPSTV().exists(): - snplt.dotv = 1 - snplt() - else: - os.popen('gv '+name) + if inter_flag == 1: + tv = AIPSTV.AIPSTV() + if tv.exists() == False: + tv.start() + if tv.exists(): + tv.clear() + + if AIPSTV.AIPSTV().exists(): + snplt.dotv = 1 + snplt() + else: + os.popen('gv '+name) indata.zap_table('PL', -1) -def runsnplt(indata,inver=1,inex='cl',sources='',optype='phas',nplot=4,timer=[]): + +def runsnplt(indata, inver=1, inex='cl', sources='', optype='phas', nplot=4, timer=[]): + logger.info('Begin SNPLT for ' + str(inex) + str(inver) +' on ' + str(optype)) indata.zap_table('PL', -1) - snplt=AIPSTask('snplt') + snplt = AIPSTask('snplt') snplt.default() - snplt.indata=indata - snplt.dotv=-1 - snplt.nplot=nplot - snplt.inex=inex - snplt.inver=inver - snplt.optype=optype - snplt.do3col=2 - if(type(sources) == type('string')): + snplt.indata = indata + snplt.dotv = -1 + snplt.nplot = nplot + snplt.inex = inex + snplt.inver = inver + snplt.optype = optype + snplt.do3col = 2 + if (type(sources) == type('string')): snplt.sources[1] = sources else: snplt.sources[1:] = sources - if(timer != None): + if (timer != None): snplt.timerang[1:] = timer snplt.go() lwpla = AIPSTask('lwpla') lwpla.indata = indata if sources == '': lwpla.outfile = 'PWD:'+outname[0]+'-'+inex+str(inver)+'-'+optype+'.snplt' - filename= outname[0]+'-'+inex+str(inver)+'-'+optype+'.snplt' + filename = outname[0]+'-'+inex+str(inver)+'-'+optype+'.snplt' else: - lwpla.outfile = 'PWD:'+outname[0]+'-'+inex+str(inver)+'-'+optype+'-'+sources[0]+'.snplt' - filename= outname[0]+'-'+inex+str(inver)+'-'+optype+'-'+sources[0]+'.snplt' + lwpla.outfile = 'PWD:'+outname[0]+'-'+inex + \ + str(inver)+'-'+optype+'-'+sources[0]+'.snplt' + filename = outname[0]+'-'+inex + \ + str(inver)+'-'+optype+'-'+sources[0]+'.snplt' lwpla.plver = 1 - lwpla.inver = 200 + lwpla.inver = 500 if os.path.exists(filename): os.popen('rm '+filename) lwpla.go() - if (os.path.exists(filename)==True): + if (os.path.exists(filename) == True): os.popen(r'mv '+filename+' '+outname[0]+'/') + logger.info('Done SNPLT') ############################################################################## @@ -257,36 +271,37 @@ def run_snplt_2(indata, inver=1, inext='sn', optype='phas', nplot=1, sources='', if (os.path.exists('plotfiles') == False): os.mkdir('plotfiles') - # f = open('./index.html','a') - # f.writelines('\n') - # f.writelines(snplt_name+' TOP
\n') - # for n in range(1,indata.table_highver('AIPS PL')+1): - # name=indata.name.strip()+'_'+snplt_name+'_'+str(n)+'.ps' - # name2=indata.name.strip()+'_'+snplt_name+'_'+str(n)+'.png' - name = indata.name + '_sn4.ps' - name2 = indata.name + '_sn4.png' + # f = open('./index.html','a') + # f.writelines('\n') + # f.writelines(snplt_name+' TOP
\n') + # for n in range(1,indata.table_highver('AIPS PL')+1): + # name=indata.name.strip()+'_'+snplt_name+'_'+str(n)+'.ps' + # name2=indata.name.strip()+'_'+snplt_name+'_'+str(n)+'.png' + name = indata.name + '_sn4.ps' + name2 = indata.name + '_sn4.png' - if os.path.exists(name): - os.popen('rm ' + name) + if os.path.exists(name): + os.popen('rm ' + name) - lwpla = AIPSTask('LWPLA') - lwpla.indata = indata - lwpla.plver = n - lwpla.inver = n - lwpla.dparm[5] = 1 - lwpla.outfile = 'PWD:' + outname[0] + '-' + inext + str(inver) + '-' + optype + '.snplt' - lwpla() - f.writelines('\n') - os.popen(r'convert ' + name + ' ' + name2) - os.popen(r'mv ' + name + ' plotfiles/') - os.popen(r'mv ' + name2 + ' plotfiles/') + lwpla = AIPSTask('LWPLA') + lwpla.indata = indata + lwpla.plver = n + lwpla.inver = n + lwpla.dparm[5] = 1 + lwpla.outfile = 'PWD:' + outname[0] + '-' + \ + inext + str(inver) + '-' + optype + '.snplt' + lwpla() + f.writelines('\n') + os.popen(r'convert ' + name + ' ' + name2) + os.popen(r'mv ' + name + ' plotfiles/') + os.popen(r'mv ' + name2 + ' plotfiles/') f.writelines('

\n') f.close() indata.zap_table('PL', -1) - ############################################################################## # Print out SN table # @@ -369,21 +384,20 @@ def runprtsn_sx(indata_s, indata_x, indata): if indata.exists(): f_tar = get_center_freq(indata) else: - print - 'Target frequency unknonw. Using 6.67 GHz.' - f_tar = 6.67e9 + print 'Target frequency unknonw. Using 6.67 GHz.' + f_tar = 6.67e9 f = open('./geoblock/diff_files.inp', 'w') - f.writelines(namma + '_low.dat ' + - ' ! Low frequency data\n') - f.writelines(namma + '_high.dat ' + - ' ! High frequency data\n') - f.writelines(str(f_low / 1e9) + ' ' + - ' ! Low frequency\n') - f.writelines(str(f_high / 1e9) + ' ' + - ' ! High frequency\n') - f.writelines(str(f_tar / 1e9) + ' ' + - ' ! Target frequency\n') + f.writelines(namma + '_low.dat ' + + ' ! Low frequency data\n') + f.writelines(namma + '_high.dat ' + + ' ! High frequency data\n') + f.writelines(str(f_low / 1e9) + ' ' + + ' ! Low frequency\n') + f.writelines(str(f_high / 1e9) + ' ' + + ' ! High frequency\n') + f.writelines(str(f_tar / 1e9) + ' ' + + ' ! Target frequency\n') f.close() @@ -419,8 +433,9 @@ def runprtsu(indata): prtab.outprint = 'PWD:' + namma + '_SU_TABLE.PRTAB' prtab() + ''' -def plot_baseline(indata, ant, inter_flag, ptype, doplot_flag, logfile): +def plot_baseline(indata, ant, inter_flag, ptype, doplot_flag): baselines = [] str_baselines = [] str_baselines2 = [] @@ -431,54 +446,54 @@ def plot_baseline(indata, ant, inter_flag, ptype, doplot_flag, logfile): ant_str = get_ant(indata) if ant < 10: - str_ant = '0' + str(ant) + str_ant = '0' + str(ant) else: - str_ant = str(ant) + str_ant = str(ant) for ant2 in ant_str: - if ant2 < 10: - str_ant2 = '0' + str(ant2) - else: - str_ant2 = str(ant2) - if ant2 > ant: - bl = str_ant + str_ant2 - str_bl = str(ant) + '-' + str(ant2) - str_bl2 = ant_str[ant] + '-' + ant_str[ant2] - else: - bl = str_ant2 + str_ant - str_bl = str(ant2) + '-' + str(ant) - str_bl2 = ant_str[ant2] + '-' + ant_str[ant] - - if ptype == 'A': - file = './geoblock/tropos/fit_geodetic_bl' + bl + '.dat' - elif ptype == 'I': - file = './geoblock/ionos/fit_geodetic_bl' + bl + '.dat' - if os.path.exists(file): - f = open(file) - content = f.read() - if len(content) > 99: - newdata = loadtxt(file, usecols=(0, 1, 2, 3, 4, 5, 6), comments='!') - data.append(newdata) - baselines.append(ant2) - str_baselines.append(str_bl) - str_baselines2.append(str_bl2) + if ant2 < 10: + str_ant2 = '0' + str(ant2) + else: + str_ant2 = str(ant2) + if ant2 > ant: + bl = str_ant + str_ant2 + str_bl = str(ant) + '-' + str(ant2) + str_bl2 = ant_str[ant] + '-' + ant_str[ant2] + else: + bl = str_ant2 + str_ant + str_bl = str(ant2) + '-' + str(ant) + str_bl2 = ant_str[ant2] + '-' + ant_str[ant] + + if ptype == 'A': + file = './geoblock/tropos/fit_geodetic_bl' + bl + '.dat' + elif ptype == 'I': + file = './geoblock/ionos/fit_geodetic_bl' + bl + '.dat' + if os.path.exists(file): + f = open(file) + content = f.read() + if len(content) > 99: + newdata = loadtxt(file, usecols=(0, 1, 2, 3, 4, 5, 6), comments='!') + data.append(newdata) + baselines.append(ant2) + str_baselines.append(str_bl) + str_baselines2.append(str_bl2) num_baselines = len(baselines) f1 = figure() if ptype == 'A': - toptext = indata.header['observer'] + ' observed on ' + indata.header['date_obs'] + ' at ' + str( - round(get_center_freq(indata) / 1e9, 2)) + ' GHz' + toptext = indata.header['observer'] + ' observed on ' + indata.header['date_obs'] + ' at ' + str( + round(get_center_freq(indata) / 1e9, 2)) + ' GHz' elif ptype == 'I': - toptext = indata.header['observer'] + ' observed on ' + indata.header['date_obs'] + ' for target frequency' + toptext = indata.header['observer'] + ' observed on ' + indata.header['date_obs'] + ' for target frequency' figtext(0.25, 0.97, toptext) times2 = [] block_times = [] for tmp in data: - for tmp2 in tmp: - times2.append(tmp2[0]) + for tmp2 in tmp: + times2.append(tmp2[0]) times2.sort() start = min(times2) end = max(times2) @@ -486,10 +501,10 @@ def plot_baseline(indata, ant, inter_flag, ptype, doplot_flag, logfile): n = 1 block_times.append([min(times2), 0]) for i in range(1, len(times2)): - if times2[i] - times2[i - 1] > 1: - block_times[n - 1][1] = times2[i - 1] - block_times.append([times2[i], 0]) - n += 1 + if times2[i] - times2[i - 1] > 1: + block_times[n - 1][1] = times2[i - 1] + block_times.append([times2[i], 0]) + n += 1 block_times[n - 1][1] = max(times2) n_blocks = len(block_times) @@ -497,76 +512,76 @@ def plot_baseline(indata, ant, inter_flag, ptype, doplot_flag, logfile): print 'Baseline rms_delay rms_rate data/block' print - ' [nsec] [mHz]' + ' [nsec] [mHz]' if len(baselines) > 20: - print - 'More than 20 antennas, plotting only 15.' - b = int(round(len(baselines) / 2.)) - num_baselines = b - num_baselines2 = len(baselines) - b - oneplot = False + print + 'More than 20 antennas, plotting only 15.' + b = int(round(len(baselines) / 2.)) + num_baselines = b + num_baselines2 = len(baselines) - b + oneplot = False else: - oneplot = True - b = len(baselines) + oneplot = True + b = len(baselines) n = 0 m = 0 for i in baselines[0:b]: + n += 1 + m += 1 + make_baseline_plot2(num_baselines, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, block_times, + f1) + + draw() + if ptype == 'A': + savefig('delay-rate.ps') + elif ptype == 'I': + savefig('delay-rate-ionos.ps') + + if oneplot == False: + m = 0 + f2 = figure() + toptext = indata.header['observer'] + ' observed on ' + indata.header['date_obs'] + ' at ' + str( + round(get_center_freq(indata) / 1e9, 2)) + ' GHz' + figtext(0.25, 0.97, toptext) + for i in baselines[b:]: n += 1 m += 1 - make_baseline_plot2(num_baselines, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, block_times, - f1) + make_baseline_plot2(num_baselines2, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, + block_times, f2) draw() if ptype == 'A': - savefig('delay-rate.ps') + savefig('delay-rate2.ps') elif ptype == 'I': - savefig('delay-rate-ionos.ps') + savefig('delay-rate2-ionos.ps') - if oneplot == False: - m = 0 - f2 = figure() - toptext = indata.header['observer'] + ' observed on ' + indata.header['date_obs'] + ' at ' + str( - round(get_center_freq(indata) / 1e9, 2)) + ' GHz' - figtext(0.25, 0.97, toptext) - for i in baselines[b:]: - n += 1 - m += 1 - make_baseline_plot2(num_baselines2, data, n, m, start, end, str_baselines, str_baselines2, n_blocks, - block_times, f2) - - draw() - if ptype == 'A': - savefig('delay-rate2.ps') - elif ptype == 'I': - savefig('delay-rate2-ionos.ps') - - mprint('', logfile) - mprint('Note: A small number of high delays or rates is usually no problem.', logfile) - mprint('', logfile) + logger.info('') + logger.info('Note: A small number of high delays or rates is usually no problem.') + logger.info('') if inter_flag == 1: - if int(matplotlib.__version__[0]) == 0: - if int(matplotlib.__version__[2:4]) < 99: - print - 'Close figure to continue.' - show() - close() - else: - f1.show() - raw_input('Press enter to close figure and continue. ') - close() + if int(matplotlib.__version__[0]) == 0: + if int(matplotlib.__version__[2:4]) < 99: + print + 'Close figure to continue.' + show() + close() else: - print - 'Close figure to continue.' - show() - close() + f1.show() + raw_input('Press enter to close figure and continue. ') + close() + else: + print + 'Close figure to continue.' + show() + close() ############################################################################# # -def plotatmos(inter_flag, logfile): +def plotatmos(inter_flag): file = 'ATMOS.FITS' data = loadtxt(file, skiprows=1) @@ -576,21 +591,21 @@ def plotatmos(inter_flag, logfile): rms = [] for i in range(int(max(data[:, 0]))): - ant.append([]) - data2.append([]) - avg.append(-1) - rms.append(-1) + ant.append([]) + data2.append([]) + avg.append(-1) + rms.append(-1) for row in data: - if (row[0] in ant) == False: - ant[int(row[0]) - 1] = int(row[0]) - time = row[1] * 24. + (row[2] + row[3] / 60. + row[4] / 3600.) - data2[int(row[0]) - 1].append([int(row[0]), time, row[5], row[6], row[7], row[8]]) + if (row[0] in ant) == False: + ant[int(row[0]) - 1] = int(row[0]) + time = row[1] * 24. + (row[2] + row[3] / 60. + row[4] / 3600.) + data2[int(row[0]) - 1].append([int(row[0]), time, row[5], row[6], row[7], row[8]]) max_ant = len(data2) num_ant = 0 for i in ant: - if i != []: - num_ant += 1 + if i != []: + num_ant += 1 fig = figure(0) n = 0 @@ -598,105 +613,105 @@ def plotatmos(inter_flag, logfile): end = 0 for entry in data2: - n = n + 1 - if entry != []: - ant_data = array(entry) - if start > min(ant_data[:, 1]): - start = min(ant_data[:, 1]) - if end < max(ant_data[:, 1]): - end = max(ant_data[:, 1]) - sum = 0 - for i in range(len(ant_data)): - sum = sum + ant_data[i][2] - avg[n - 1] = (sum / len(ant_data)) - rms[n - 1] = (ant_data[:, 2].std()) + n = n + 1 + if entry != []: + ant_data = array(entry) + if start > min(ant_data[:, 1]): + start = min(ant_data[:, 1]) + if end < max(ant_data[:, 1]): + end = max(ant_data[:, 1]) + sum = 0 + for i in range(len(ant_data)): + sum = sum + ant_data[i][2] + avg[n - 1] = (sum / len(ant_data)) + rms[n - 1] = (ant_data[:, 2].std()) n = 0 plot = 0 span = 2 - mprint('', logfile) - mprint('Plotting ATMOS.FITS file.', logfile) - mprint('Antenna rms [cm]', logfile) + logger.info('') + logger.info('Plotting ATMOS.FITS file.') + logger.info('Antenna rms [cm]') for entry in data2: - n += 1 - if entry != []: - plot += 1 - ant_data = array(entry) - ax = fig.add_subplot(num_ant, 1, plot) - line = ' %4d %12.3f ' % (int(ant_data[0][0]), round(rms[n - 1], 3)) - - if (max(ant_data[:, 2]) < avg[n - 1] + span) and (min(ant_data[:, 2]) > avg[n - 1] - span): - ax.plot(ant_data[:, 1], ant_data[:, 2], 'gx') - ax.set_ylim(avg[n - 1] - span, avg[n - 1] + span) - line2 = '' - elif (max(ant_data[:, 2]) < avg[n - 1] + 2 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 2 * span): - ax.plot(ant_data[:, 1], ant_data[:, 2], 'bx') - ax.set_ylim(avg[n - 1] - 2 * span, avg[n - 1] + 2 * span) - line2 = ' (variations > ' + str(int(span)) + ' cm from mean)' - elif (max(ant_data[:, 2]) < avg[n - 1] + 3 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 3 * span): - ax.plot(ant_data[:, 1], ant_data[:, 2], 'rx') - ax.set_ylim(avg[n - 1] - 3 * span, avg[n - 1] + 3 * span) - line2 = ' (variations > ' + str(int(2 * span)) + ' cm from mean)' - else: - ax.plot(ant_data[:, 1], ant_data[:, 2], 'ro') - ax.set_ylim(avg[n - 1] - 4 * span, avg[n - 1] + 4 * span) - line2 = ' (variations > ' + str(int(3 * span)) + ' cm from mean)' - ax.set_xlim(start - 1., end + 1.) - yticks([int(avg[n - 1]) - 2 * span, int(avg[n - 1]), int(avg[n - 1]) + 2 * span]) - - mprint(line + line2, logfile) - - ax.text(0.03, 0.60, str(int(ant_data[0][0])), transform=ax.transAxes) - - if n == 1: - title('ATMOS.FITS zenith delays [cm]') - if n < max_ant: - ax.xaxis.set_major_locator(NullLocator()) - if n == max_ant: - xlabel('UT [hours]') - - mprint('', logfile) - mprint('Green *: variations < ' + str(int(span)) + ' cm from mean', logfile) - mprint('Blue x: variations between ' + str(int(span)) + ' and ' + str(int(2 * span)) + ' cm from mean', logfile) - mprint('Red x: variations between ' + str(int(2 * span)) + ' and ' + str(int(3 * span)) + ' cm from mean', - logfile) - mprint('Red o: variations > ' + str(int(3 * span)) + ' cm from mean', logfile) - mprint('', logfile) + n += 1 + if entry != []: + plot += 1 + ant_data = array(entry) + ax = fig.add_subplot(num_ant, 1, plot) + line = ' %4d %12.3f ' % (int(ant_data[0][0]), round(rms[n - 1], 3)) + + if (max(ant_data[:, 2]) < avg[n - 1] + span) and (min(ant_data[:, 2]) > avg[n - 1] - span): + ax.plot(ant_data[:, 1], ant_data[:, 2], 'gx') + ax.set_ylim(avg[n - 1] - span, avg[n - 1] + span) + line2 = '' + elif (max(ant_data[:, 2]) < avg[n - 1] + 2 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 2 * span): + ax.plot(ant_data[:, 1], ant_data[:, 2], 'bx') + ax.set_ylim(avg[n - 1] - 2 * span, avg[n - 1] + 2 * span) + line2 = ' (variations > ' + str(int(span)) + ' cm from mean)' + elif (max(ant_data[:, 2]) < avg[n - 1] + 3 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 3 * span): + ax.plot(ant_data[:, 1], ant_data[:, 2], 'rx') + ax.set_ylim(avg[n - 1] - 3 * span, avg[n - 1] + 3 * span) + line2 = ' (variations > ' + str(int(2 * span)) + ' cm from mean)' + else: + ax.plot(ant_data[:, 1], ant_data[:, 2], 'ro') + ax.set_ylim(avg[n - 1] - 4 * span, avg[n - 1] + 4 * span) + line2 = ' (variations > ' + str(int(3 * span)) + ' cm from mean)' + ax.set_xlim(start - 1., end + 1.) + yticks([int(avg[n - 1]) - 2 * span, int(avg[n - 1]), int(avg[n - 1]) + 2 * span]) + + logger.info(line + line2) + + ax.text(0.03, 0.60, str(int(ant_data[0][0])), transform=ax.transAxes) + + if n == 1: + title('ATMOS.FITS zenith delays [cm]') + if n < max_ant: + ax.xaxis.set_major_locator(NullLocator()) + if n == max_ant: + xlabel('UT [hours]') + + logger.info('') + logger.info('Green *: variations < ' + str(int(span)) + ' cm from mean') + logger.info('Blue x: variations between ' + str(int(span)) + ' and ' + str(int(2 * span)) + ' cm from mean') + logger.info('Red x: variations between ' + str(int(2 * span)) + ' and ' + str(int(3 * span)) + ' cm from mean', + logfile) + logger.info('Red o: variations > ' + str(int(3 * span)) + ' cm from mean') + logger.info('') draw() savefig('atmos.ps') if inter_flag == 1: - if int(matplotlib.__version__[0]) == 0: - if int(matplotlib.__version__[2:4]) < 99: - print - 'Close figure to continue.' - show() - close() - cont = raw_input('Continue with current ATMOS.FITS file? (y/n) ') - if cont == 'n' or cont == 'N': - sys.exit() - close() - else: - fig.show() - cont = raw_input('Continue with current ATMOS.FITS file? (y/n) ') - if cont == 'n' or cont == 'N': - sys.exit() - close() + if int(matplotlib.__version__[0]) == 0: + if int(matplotlib.__version__[2:4]) < 99: + print + 'Close figure to continue.' + show() + close() + cont = raw_input('Continue with current ATMOS.FITS file? (y/n) ') + if cont == 'n' or cont == 'N': + sys.exit() + close() else: - print - 'Close figure to continue.' - show() - close() - cont = raw_input('Continue with current ATMOS.FITS file? (y/n) ') - if cont == 'n' or cont == 'N': - sys.exit() - close() + fig.show() + cont = raw_input('Continue with current ATMOS.FITS file? (y/n) ') + if cont == 'n' or cont == 'N': + sys.exit() + close() + else: + print + 'Close figure to continue.' + show() + close() + cont = raw_input('Continue with current ATMOS.FITS file? (y/n) ') + if cont == 'n' or cont == 'N': + sys.exit() + close() ############################################################################# # -def plotionos(inter_flag, logfile): +def plotionos(inter_flag): file = 'IONOS.FITS' data = loadtxt(file, skiprows=1) @@ -706,21 +721,21 @@ def plotionos(inter_flag, logfile): rms = [] for i in range(int(max(data[:, 0]))): - ant.append([]) - data2.append([]) - avg.append(-1) - rms.append(-1) + ant.append([]) + data2.append([]) + avg.append(-1) + rms.append(-1) for row in data: - if (row[0] in ant) == False: - ant[int(row[0]) - 1] = int(row[0]) - time = row[1] * 24. + (row[2] + row[3] / 60. + row[4] / 3600.) - data2[int(row[0]) - 1].append([int(row[0]), time, row[5], row[6], row[7], row[8]]) + if (row[0] in ant) == False: + ant[int(row[0]) - 1] = int(row[0]) + time = row[1] * 24. + (row[2] + row[3] / 60. + row[4] / 3600.) + data2[int(row[0]) - 1].append([int(row[0]), time, row[5], row[6], row[7], row[8]]) max_ant = len(data2) num_ant = 0 for i in ant: - if i != []: - num_ant += 1 + if i != []: + num_ant += 1 fig = figure(0) n = 0 @@ -728,100 +743,100 @@ def plotionos(inter_flag, logfile): end = 0 for entry in data2: - n = n + 1 - if entry != []: - ant_data = array(entry) - if start > min(ant_data[:, 1]): - start = min(ant_data[:, 1]) - if end < max(ant_data[:, 1]): - end = max(ant_data[:, 1]) - sum = 0 - for i in range(len(ant_data)): - sum = sum + ant_data[i][2] - avg[n - 1] = (sum / len(ant_data)) - rms[n - 1] = (ant_data[:, 2].std()) + n = n + 1 + if entry != []: + ant_data = array(entry) + if start > min(ant_data[:, 1]): + start = min(ant_data[:, 1]) + if end < max(ant_data[:, 1]): + end = max(ant_data[:, 1]) + sum = 0 + for i in range(len(ant_data)): + sum = sum + ant_data[i][2] + avg[n - 1] = (sum / len(ant_data)) + rms[n - 1] = (ant_data[:, 2].std()) n = 0 plot = 0 span = 2 - mprint('', logfile) - mprint('Plotting IONOS.FITS file.', logfile) - mprint('Antenna rms [cm]', logfile) + logger.info('') + logger.info('Plotting IONOS.FITS file.') + logger.info('Antenna rms [cm]') for entry in data2: - n += 1 - if entry != []: - plot += 1 - ant_data = array(entry) - ax = fig.add_subplot(num_ant, 1, plot) - line = ' %4d %12.3f ' % (int(ant_data[0][0]), round(rms[n - 1], 3)) - - if (max(ant_data[:, 2]) < avg[n - 1] + span) and (min(ant_data[:, 2]) > avg[n - 1] - span): - ax.plot(ant_data[:, 1], ant_data[:, 2], 'gx') - ax.set_ylim(avg[n - 1] - span, avg[n - 1] + span) - line2 = '' - elif (max(ant_data[:, 2]) < avg[n - 1] + 2 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 2 * span): - ax.plot(ant_data[:, 1], ant_data[:, 2], 'bx') - ax.set_ylim(avg[n - 1] - 2 * span, avg[n - 1] + 2 * span) - line2 = ' (variations > ' + str(int(span)) + ' cm from mean)' - elif (max(ant_data[:, 2]) < avg[n - 1] + 3 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 3 * span): - ax.plot(ant_data[:, 1], ant_data[:, 2], 'rx') - ax.set_ylim(avg[n - 1] - 3 * span, avg[n - 1] + 3 * span) - line2 = ' (variations > ' + str(int(2 * span)) + ' cm from mean)' - else: - ax.plot(ant_data[:, 1], ant_data[:, 2], 'ro') - ax.set_ylim(avg[n - 1] - 4 * span, avg[n - 1] + 4 * span) - line2 = ' (variations > ' + str(int(3 * span)) + ' cm from mean)' - ax.set_xlim(start - 1., end + 1.) - yticks([int(avg[n - 1]) - 2 * span, int(avg[n - 1]), int(avg[n - 1]) + 2 * span]) - - mprint(line + line2, logfile) - - ax.text(0.03, 0.60, str(int(ant_data[0][0])), transform=ax.transAxes) - - if n == 1: - title('IONOS.FITS zenith delays [cm]') - if n < max_ant: - ax.xaxis.set_major_locator(NullLocator()) - if n == max_ant: - xlabel('UT [hours]') - - mprint('', logfile) - mprint('Green *: variations < ' + str(int(span)) + ' cm from mean', logfile) - mprint('Blue x: variations between ' + str(int(span)) + ' and ' + str(int(2 * span)) + ' cm from mean', logfile) - mprint('Red x: variations between ' + str(int(2 * span)) + ' and ' + str(int(3 * span)) + ' cm from mean', - logfile) - mprint('Red o: variations > ' + str(int(3 * span)) + ' cm from mean', logfile) - mprint('', logfile) + n += 1 + if entry != []: + plot += 1 + ant_data = array(entry) + ax = fig.add_subplot(num_ant, 1, plot) + line = ' %4d %12.3f ' % (int(ant_data[0][0]), round(rms[n - 1], 3)) + + if (max(ant_data[:, 2]) < avg[n - 1] + span) and (min(ant_data[:, 2]) > avg[n - 1] - span): + ax.plot(ant_data[:, 1], ant_data[:, 2], 'gx') + ax.set_ylim(avg[n - 1] - span, avg[n - 1] + span) + line2 = '' + elif (max(ant_data[:, 2]) < avg[n - 1] + 2 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 2 * span): + ax.plot(ant_data[:, 1], ant_data[:, 2], 'bx') + ax.set_ylim(avg[n - 1] - 2 * span, avg[n - 1] + 2 * span) + line2 = ' (variations > ' + str(int(span)) + ' cm from mean)' + elif (max(ant_data[:, 2]) < avg[n - 1] + 3 * span) and (min(ant_data[:, 2]) > avg[n - 1] - 3 * span): + ax.plot(ant_data[:, 1], ant_data[:, 2], 'rx') + ax.set_ylim(avg[n - 1] - 3 * span, avg[n - 1] + 3 * span) + line2 = ' (variations > ' + str(int(2 * span)) + ' cm from mean)' + else: + ax.plot(ant_data[:, 1], ant_data[:, 2], 'ro') + ax.set_ylim(avg[n - 1] - 4 * span, avg[n - 1] + 4 * span) + line2 = ' (variations > ' + str(int(3 * span)) + ' cm from mean)' + ax.set_xlim(start - 1., end + 1.) + yticks([int(avg[n - 1]) - 2 * span, int(avg[n - 1]), int(avg[n - 1]) + 2 * span]) + + logger.info(line + line2) + + ax.text(0.03, 0.60, str(int(ant_data[0][0])), transform=ax.transAxes) + + if n == 1: + title('IONOS.FITS zenith delays [cm]') + if n < max_ant: + ax.xaxis.set_major_locator(NullLocator()) + if n == max_ant: + xlabel('UT [hours]') + + logger.info('') + logger.info('Green *: variations < ' + str(int(span)) + ' cm from mean') + logger.info('Blue x: variations between ' + str(int(span)) + ' and ' + str(int(2 * span)) + ' cm from mean') + logger.info('Red x: variations between ' + str(int(2 * span)) + ' and ' + str(int(3 * span)) + ' cm from mean', + logfile) + logger.info('Red o: variations > ' + str(int(3 * span)) + ' cm from mean') + logger.info('') draw() savefig('ionos.ps') if inter_flag == 1: - if int(matplotlib.__version__[0]) == 0: - if int(matplotlib.__version__[2:4]) < 99: - print - 'Close figure to continue.' - show() - close() - cont = raw_input('Continue with current IONOS.FITS file? (y/n) ') - if cont == 'n' or cont == 'N': - sys.exit() - close() - else: - fig.show() - cont = raw_input('Continue with current IONOS.FITS file? (y/n) ') - if cont == 'n' or cont == 'N': - sys.exit() - close() + if int(matplotlib.__version__[0]) == 0: + if int(matplotlib.__version__[2:4]) < 99: + print + 'Close figure to continue.' + show() + close() + cont = raw_input('Continue with current IONOS.FITS file? (y/n) ') + if cont == 'n' or cont == 'N': + sys.exit() + close() else: - print - 'Close figure to continue.' - show() - close() - cont = raw_input('Continue with current IONOS.FITS file? (y/n) ') - if cont == 'n' or cont == 'N': - sys.exit() - close() + fig.show() + cont = raw_input('Continue with current IONOS.FITS file? (y/n) ') + if cont == 'n' or cont == 'N': + sys.exit() + close() + else: + print + 'Close figure to continue.' + show() + close() + cont = raw_input('Continue with current IONOS.FITS file? (y/n) ') + if cont == 'n' or cont == 'N': + sys.exit() + close() def plot_spot_map(inimg,indata): srcname = inimg.name obs=inimg.header['observer'] @@ -840,20 +855,20 @@ def plot_spot_map(inimg,indata): f_max=0 n_poi=0 for entry in content: - if entry[0]=='!': - pass - else: - n_poi+=1 - x_off = float(entry.split()[3]) - y_off = float(entry.split()[5]) - if abs(x_off)<0.48*xsize and abs(y_off)<0.48*ysize: - x.append(x_off) - y.append(y_off) - z.append(float(entry.split()[1])) - flux=float(entry.split()[2]) - f.append(flux**0.5) - if float(entry.split()[2])>f_max: - f_max=float(entry.split()[2]) + if entry[0]=='!': + pass + else: + n_poi+=1 + x_off = float(entry.split()[3]) + y_off = float(entry.split()[5]) + if abs(x_off)<0.48*xsize and abs(y_off)<0.48*ysize: + x.append(x_off) + y.append(y_off) + z.append(float(entry.split()[1])) + flux=float(entry.split()[2]) + f.append(flux**0.5) + if float(entry.split()[2])>f_max: + f_max=float(entry.split()[2]) min_x=min(x) max_x=max(x) dx=max_x-min_x @@ -869,7 +884,7 @@ def plot_spot_map(inimg,indata): ra,dec= deg_to_radec([inimg.header['crval'][0],inimg.header['crval'][1]]) title(srcname+' '+linename+' on '+date_obs+'\n (0,0)='+ra+','+ - dec+' (J2000)') + dec+' (J2000)') ax=axes() s=ax.scatter(x,y,c=z,s=f2*scale,marker='o',edgecolors='') ax.scatter(x_cent+1.05*size,y_cent-1.15*size,c='0.8',s=max(f2)*scale) @@ -881,12 +896,12 @@ def plot_spot_map(inimg,indata): ax.set_ylim(y_cent-1.3*size,y_cent+1.1*size) xy=(x_cent+0.93*size,y_cent-1.17*size) ax.annotate('= '+str(round(f_max,1))+ - ' Jy bm$^{-1}$', xy, xytext=None, xycoords='data', - textcoords='data', arrowprops=None, - bbox=dict(boxstyle="round", fc="0.8"),) + ' Jy bm$^{-1}$', xy, xytext=None, xycoords='data', + textcoords='data', arrowprops=None, + bbox=dict(boxstyle="round", fc="0.8"),) draw() imname = srcname+'.'+linename+'.spotmap.ps' # show() savefig(imname) os.popen('ps2pdf '+imname) -''' \ No newline at end of file +''' diff --git a/vlbi-pipeline/run_difmap.py b/vlbi-pipeline/run_difmap.py index 0a1b15a..20b089a 100644 --- a/vlbi-pipeline/run_difmap.py +++ b/vlbi-pipeline/run_difmap.py @@ -17,6 +17,7 @@ from matplotlib.patches import Ellipse from matplotlib.dates import YearLocator, MonthLocator, DateFormatter, datestr2num from matplotlib.backends.backend_pdf import PdfPages +#from logging_config import logger def word2pix(h,xy): x,y = xy @@ -127,6 +128,7 @@ def apscal(difmap,solint): difmap.sendline('selfcal true,true,%s' % solint) difmap.expect('0>') return + def modfcal(difmap,snrcut,numcut): nm=0 snr,rms,pkx,pky=getsnr(difmap) @@ -145,12 +147,72 @@ def modfcal(difmap,snrcut,numcut): print(snr,rms,pkx,pky) nm=nm+1 return + +# ========== 模块化工具函数 ========== + +def init_difmap(timeout=8000000): + """初始化 difmap 会话并返回 difmap 对象和日志文件名""" + difmap = pexpect.spawn('difmap') + difmap.waitnoecho + difmap.expect('0>') + p = re.compile(r'(difmap.log_?\d*)') + logfile = p.findall(difmap.before.decode())[0] + difmap.timeout = timeout + return difmap, logfile + +def cleanup_difmap(difmap, logfile): + """关闭 difmap 会话并删除日志文件""" + difmap.sendline('quit') + difmap.close() + if os.path.isfile(logfile): + os.remove(logfile) + +def setup_mapsize(difmap, freq): + """根据频率设置地图大小""" + if freq <= 3: + difmap.sendline('mapsize 2048,0.4') + elif 3.1 <= freq <= 10: + difmap.sendline('mapsize 2048,0.2') + elif freq >= 10.1: + difmap.sendline('mapsize 2048,0.1') + difmap.expect('0>') + +def iterative_modelfit(difmap, snr_threshold=5.5, max_iterations=12): + """迭代模型拟合:持续添加组件直到 SNR 低于阈值或达到最大迭代次数""" + snr, rms, pkx, pky = getsnr(difmap) + print(snr, rms, pkx, pky) + nm = 0 + while snr > snr_threshold: + if nm >= max_iterations: + break + difmap.sendline('addcmp 0.1,true,%f,%f,true,0,false,1,false,0,true,0' % (pkx, pky)) + difmap.expect('0>') + difmap.sendline('modelfit 80') + difmap.expect('0>', timeout=500) + snr, rms, pkx, pky = getsnr(difmap) + print(snr, rms, pkx, pky) + nm += 1 + return nm +def note_mod_parms(difmap): + difmap.sendline('modelfit 80') + difmap.expect('0>', timeout=500) + + +def prepare_observation(difmap, filename, freq): + """准备观测:加载文件,选择偏振,设置地图大小和 UV 权重""" + difmap.sendline('obs %s' % filename) + difmap.expect('0>') + difmap.sendline('select i') + difmap.expect('0>') + setup_mapsize(difmap, freq) + difmap.sendline('uvw 0,-1') + difmap.expect('0>') def difmap_image(band):#imaging # TODO setting the script path :( # Must be absolutely data path - src_path='/data/VLBI/code/vlbi-pipeline/utils/' + src_path='../../utils/' difmap = pexpect.spawn('difmap') difmap.waitnoecho difmap.expect('0>') @@ -166,27 +228,35 @@ def difmap_image(band):#imaging difmap.sendline('obs %s' %tname) difmap.expect('0>') print('obs ' + tname) - if band == 'S' or 'L': + if band == 'S' or band == 'L': print('running [S] ' + tname) difmap.sendline('@%sdscrip-new-s %s' % (src_path,code)) difmap.expect('Writing difmap environment.*0>',timeout=400) - elif band == 'X' or 'C' or 'U': + elif band == 'X' or band == 'C' or band == 'U': print('running [X] ' + tname) difmap.sendline('@%sdscrip-new-x %s' % (src_path,code)) difmap.expect('Writing difmap environment.*0>',timeout=400) - elif band == 'K' or 'Q' or 'W' : + elif band == 'K' or band == 'Q' or band == 'W' : print('running [U] ' + tname) difmap.sendline('@%sdscrip-new-u %s' % (src_path,code)) difmap.expect('Writing difmap environment.*0>',timeout=400) print('done %s' % code) else: print('file already there, move on') + #difmap.sendline('restore bmaj*3600*1000*180/3.1416') + #difmap.expect('0>') + #difmap.sendline('mapplot cln') + #difmap.expect('0>') + #name_restore=tname[:-5]+'circle_beam.fits' + #difmap.sendline('wmap %s' %name_restore) + #difmap.expect('0>') + print('done %s'%names) difmap.sendline('quit') #print('0>',difmap.read().decode('ascii')) difmap.close() if os.path.isfile(logfile): os.remove(logfile) - + def modfit1(step,freq,solint): #direct auto-model fitting with point models difmap = pexpect.spawn('difmap') @@ -251,7 +321,27 @@ def modfit1(step,freq,solint): #direct auto-model fitting with point models if os.path.isfile(logfile): os.remove(logfile) -def modfit2(freq): # mod files after mannual cleaning +def modfit2(freq): # mod files after mannual cleaning (使用模块化函数重构) + difmap, logfile = init_difmap() + images = get_splt() + + for i in range(images.size): + name2 = images[i] + '.uvf' + names = name2[:-4] + '-clnmod' + print(name2) + + if not os.path.exists('%s.mod' % names): + prepare_observation(difmap, name2, freq) + iterative_modelfit(difmap, snr_threshold=5.5, max_iterations=12) + difmap.sendline('save %s' % names) + difmap.expect('0>') + print('done %s' % names) + else: + print('model already there, move on') + + cleanup_difmap(difmap, logfile) + +def modfit_single(freq): # model fit for single compnent difmap = pexpect.spawn('difmap') difmap.waitnoecho difmap.expect('0>') @@ -304,8 +394,6 @@ def modfit2(freq): # mod files after mannual cleaning if os.path.isfile(logfile): os.remove(logfile) - - def check(): difmap = pexpect.spawn('difmap') difmap.waitnoecho @@ -355,4 +443,4 @@ def check(): # check() # debug() #check_mod('S',0) #'' means original point fitting, for preview. 'r' means rmod results, for checking re - # check_mod('X',0) \ No newline at end of file + # check_mod('X',0) diff --git a/vlbi-pipeline/run_tasks.py b/vlbi-pipeline/run_tasks.py index d5d7d8a..27ac74c 100644 --- a/vlbi-pipeline/run_tasks.py +++ b/vlbi-pipeline/run_tasks.py @@ -1,9 +1,9 @@ #!/usr/bin/env ParselTongue #####!/usr/bin/python3 -#sys.path.append('/usr/share/parseltongue/python/') -#sys.path.append('/usr/lib/obit/python3') -#export PYTHONPATH=$PYTHONPATH:/usr/share/parseltongue/python:/usr/lib/obit/python3 +# sys.path.append('/usr/share/parseltongue/python/') +# sys.path.append('/usr/lib/obit/python3') +# export PYTHONPATH=$PYTHONPATH:/usr/share/parseltongue/python:/usr/lib/obit/python3 import sys from AIPS import AIPS, AIPSDisk @@ -11,17 +11,21 @@ from AIPSData import AIPSUVData, AIPSImage from Wizardry.AIPSData import AIPSUVData as WAIPSUVData import AIPSTV -import AIPS, os, math, time +import AIPS +import os +import math +import time from pylab import * from utils import * from config import * from check_utils import * from get_utils import * -import logging +from logging_config import logger -#def load_index_data(filepath, filename, outname, outclass, outdisk, nfiles, ncount, doconcat, antname, logfile): -def loadindx(filepath, filename, outname, outclass, outdisk, nfiles, ncount, doconcat, antname, logfile): +# def load_index_data(filepath, filename, outname, outclass, outdisk, nfiles, ncount, doconcat, antname): + +def loadindx(filepath, filename, outname, outclass, outdisk, nfiles, ncount, doconcat, antname): '''load_data Load the data into AIPS and index it @@ -40,18 +44,18 @@ def loadindx(filepath, filename, outname, outclass, outdisk, nfiles, ncount, doc ''' if os.path.exists(filepath + filename): - print ("File {} exists.".format(filepath+filename)) + logger.info("File {} exists.".format(filepath+filename)) else: - print("File {} not exists. Check the path first!!".format(filepath+filename)) + logger.info("File {} not exists. Check the path first!!".format(filepath+filename)) - fitld = AIPSTask('FITLD', version = AIPS_VERSION) - #fitld.infile = filepath + '/' + filename - fitld.datain = filepath + filename - #fitld.outdata = uvdata + fitld = AIPSTask('FITLD', version=AIPS_VERSION) + # fitld.infile = filepath + '/' + filename + fitld.datain = filepath + filename + # fitld.outdata = uvdata fitld.outname = outname fitld.outclass = outclass fitld.outdisk = int(outdisk) - fitld.outseq = 1 + fitld.outseq = 1 fitld.ncount = ncount fitld.nfiles = nfiles fitld.doconcat = doconcat @@ -62,132 +66,135 @@ def loadindx(filepath, filename, outname, outclass, outdisk, nfiles, ncount, doc elif antname == 'EVN': fitld.digicor = -1 - data = AIPSUVData(fitld.outname, fitld.outclass,int(fitld.outdisk), int(fitld.outseq)) - print data + data = AIPSUVData(fitld.outname, fitld.outclass, + int(fitld.outdisk), int(fitld.outseq)) + logger.info('Processing following data file in AIPS') + logger.info(data) if data.exists(): - print('Data already there') - data.zap_table('AIPS CL',1) - data.zap_table('AIPS NX',1) + logger.info('Data already there, re-index') + data.zap_table('AIPS CL', 1) + data.zap_table('AIPS NX', 1) runindxr(data) - mprint('#################',logfile) - mprint('Data new indexed!',logfile) - mprint('#################',logfile) + logger.info('#################') + logger.info('Data new indexed!') + logger.info('#################') else: - print('Data not there, read in') + logger.info('Data not in AIPS, read in') fitld.input() fitld.go() - data.zap_table('AIPS CL',1) - data.zap_table('AIPS NX',1) + data.zap_table('AIPS CL', 1) + data.zap_table('AIPS NX', 1) runindxr(data) - mprint('#################',logfile) - mprint('Data new indexed!',logfile) - mprint('#################',logfile) - - logging.info('#############################') - logging.info('#############################') - logging.info('################################################') - logging.info('%s loaded!', str(data)) - logging.info('################################################') - -#print("LOADED DATA:====================") -#AIPSTask('pca', version='31DEC20') -#print("LOADED DATA:====================") -#loadindx(sys.argv[1], sys.argv[2],'test','tstc',1,1,1,1,'VLBA','loggg.txt') - -#_____________________________________________________________ -def loadfr(filepath,filename,outname,outclass,outdisk,antname,logfile): + logger.info('#################') + logger.info('Data new indexed!') + logger.info('#################') + + logger.info('#############################') + logger.info('#############################') + logger.info('################################################') + logger.info('%s loaded!', str(data)) + logger.info('################################################') + +# print("LOADED DATA:====================") +# AIPSTask('pca', version='31DEC20') +# print("LOADED DATA:====================") +# loadindx(sys.argv[1], sys.argv[2],'test','tstc',1,1,1,1,'VLBA','loggg.txt') + +# _____________________________________________________________ + + +def loadfr(filepath, filename, outname, outclass, outdisk, antname): if os.path.exists(filepath+filename): - mprint('File exists!',logfile) + logger.info('File exists!') else: - mprint('File '+filepath+filename+' dose not exists',logfile) + logger.info('File '+filepath+filename+' dose not exists') raise RuntimeError('File does not exists!') fitld = AIPSTask('FITLD') - fitld.datain = filepath+filename - fitld.outname = outname + fitld.datain = filepath+filename + fitld.outname = outname fitld.outclass = outclass - fitld.outseq = 1 - fitld.outdisk = int(outdisk) - #if aipsver!='31DEC09': - # fitld.antname[1:] = [antname] - + fitld.outseq = 1 + fitld.outdisk = int(outdisk) + # if aipsver!='31DEC09': + # fitld.antname[1:] = [antname] + data = AIPSUVData(fitld.outname, fitld.outclass, int(fitld.outdisk), int(fitld.outseq)) if data.exists(): - mprint('##############################',logfile) - mprint('Data already there => passed!',logfile) - mprint('##############################',logfile) + logger.info('##############################') + logger.info('Data already there => passed!') + logger.info('##############################') pass - #data.clrstat() - #data.zap() - #mprint('##############################',logfile) - #mprint('Data already there => deleted!',logfile) - #mprint('##############################',logfile) + # data.clrstat() + # data.zap() + # logger.info('##############################') + # logger.info('Data already there => deleted!') + # logger.info('##############################') else: - mprint('#########################',logfile) - mprint('Data not there => read in',logfile) - mprint('#########################',logfile) - fitld.go() + logger.info('#########################') + logger.info('Data not there => read in') + logger.info('#########################') + fitld.go() - #fitld.go() - - mprint('################################################',logfile) - mprint(str(data)+' loaded!',logfile) - mprint('################################################',logfile) + # fitld.go() + logger.info('################################################') + logger.info(str(data)+' loaded!') + logger.info('################################################') ############################################################################## # -def runTECOR(indata,year,doy,num_days,gainuse,TECU_model): - year=str(year)[2:4] - if doy<10: - doy='00'+str(doy) - if doy<100: - doy='0'+str(doy) +def runTECOR(indata, year, doy, num_days, gainuse, TECU_model): + logger.info('Doing TECOR to generate CL table'+str(gainuse)) + year = str(year)[2:4] + if doy < 10: + doy = '00'+str(doy) + if doy < 100: + doy = '0'+str(doy) else: - doy=str(doy) - name=TECU_model+doy+'0.'+year+'i' + doy = str(doy) + name = TECU_model+doy+'0.'+year+'i' # name2='codg'+doy+'0.'+year+'i' - print(geo_path+name) tecor = AIPSTask('TECOR') if os.path.exists(geo_path+name): - tecor.infile=geo_path+name + tecor.infile = geo_path+name # elif os.path.exists(name2): # tecor.infile='PWD:'+name2 - print(tecor.infile) - tecor.indata=indata - tecor.nfiles=num_days + tecor.indata = indata + tecor.nfiles = num_days tecor.gainuse = gainuse - tecor.aparm[1:] = [1,0] + tecor.aparm[1:] = [1, 0] tecor() - - ############################################################################## # def runeops(indata, geo_path): - eops = AIPSTask('CLCOR') + logger.info('Doing EOPS to generate CL table 3') + eops = AIPSTask('CLCOR') eops.indata = indata eops.gainver = 2 eops.gainuse = 3 - eops.opcode = 'EOPS' - eops.infile = geo_path+'usno_finals.erp' + eops.opcode = 'EOPS' + eops.infile = geo_path+'usno_finals.erp' eops() ############################################################################## # -def runuvflg(indata,flagfile,logfile): - if flagfile!='' and os.path.exists(flagfile): - uvflg = AIPSTask('UVFLG') + + +def runuvflg(indata, flagfile): + if flagfile != '' and os.path.exists(flagfile): + uvflg = AIPSTask('UVFLG') uvflg.indata = indata uvflg.intext = flagfile uvflg.opcode = 'FLAG' uvflg.go() else: - mprint('No UVFLG file applied.',logfile) + logger.info('No UVFLG file applied.') ############################################################################## @@ -200,57 +207,64 @@ def runindxr(indata): ############################################################################## # + + def runsnflg(indata, inver, calsource): flag_sources = [calsource] - snflg = AIPSTask('snflg') - snflg.indata = indata - snflg.flagver = 0 - snflg.inext = 'SN' - snflg.inver = inver - snflg.optype = 'JUMP' - snflg.dparm[1:] = [57., 10., 0.] + snflg = AIPSTask('snflg') + snflg.indata = indata + snflg.flagver = 0 + snflg.inext = 'SN' + snflg.inver = inver + snflg.optype = 'JUMP' + snflg.dparm[1:] = [57., 10., 0.] snflg() ############################################################################## # -def run_elvflag(indata,elv_min,outfg,logfile): - uvflg = AIPSTask('UVFLG') + + +def run_elvflag(indata, elv_min,antennas ,outfg): + uvflg = AIPSTask('UVFLG') uvflg.indata = indata uvflg.opcode = 'FLAG' - uvflg.aparm[1:] = [0,elv_min] - uvflg.outfgver = outfg - mprint('#####################################',logfile) - mprint('Flagging data for Elevations < '+str(elv_min),logfile) - mprint('#####################################',logfile) + uvflg.antennas[1:] = antennas + uvflg.aparm[1:] = [0, elv_min] + uvflg.outfgver = outfg + logger.info('#####################################') + logger.info('Flagging data for Elevations < '+str(elv_min)) + logger.info('#####################################') uvflg.go() ############################################################################## + def rundtsum(indata): - dtsum=AIPSTask('DTSUM') - dtsum.indata = indata - dtsum.docrt = -1 + dtsum = AIPSTask('DTSUM') + dtsum.indata = indata + dtsum.docrt = -1 if os.path.exists(indata.name+'.DTSM'): os.popen('rm '+indata.name+'.DTSM') dtsum.outprint = 'PWD:'+indata.name.strip()+'.DTSM' dtsum() - if (os.path.exists(dtsum.outprint)==False): + if (os.path.exists(dtsum.outprint) == False): os.popen(r'mv '+dtsum.outprint[4:]+' '+outname[0]+'/') # + + def runlistr(indata): - listr=AIPSTask('LISTR') - listr.indata = indata - listr.optype = 'SCAN' - listr.docrt = -1 + listr = AIPSTask('LISTR') + listr.indata = indata + listr.optype = 'SCAN' + listr.docrt = -1 if os.path.exists(indata.name+'.LST'): os.popen('rm '+indata.name+'.LST') listr.outprint = 'PWD:'+indata.name.strip()+'.Listr' listr() - if (os.path.exists(listr.outprint)==False): + if (os.path.exists(listr.outprint) == False): os.popen(r'mv '+listr.outprint[4:]+' '+outname[0]+'/') - ############################################################################## # Run DELZN # @@ -301,17 +315,27 @@ def runclcal2(indata, snver, gainver, gainuse, interpol, dobtween, refant, anten clcal.indata = indata clcal.refant = refant clcal.antennas[1:] = antenna - clcal.source[1:] = sources + if type(sources) == type('string'): + clcal.source[1] = sources + print('str') + print(type(sources),sources) + else: + print(type(sources),sources) + clcal.source[1:] = sources if (type(cals) == type('string')): clcal.calsour[1] = cals + print('str') + print(type(cals),cals) else: + print(type(cals),cals) clcal.calsour[1:] = cals clcal.snver = snver clcal.inver = 0 clcal.gainver = gainver clcal.gainuse = gainuse clcal.interpol = interpol - clcal.dobtween = dobtween # if >= 1, smooth within with one source;if <=0 smooth separately + # if >= 1, smooth within with one source;if <=0 smooth separately + clcal.dobtween = dobtween clcal.input() clcal() @@ -326,138 +350,166 @@ def runquack(indata, antennas, time): quack.opcode = 'ENDB' quack.aparm[1:] = [0, time, 0] quack() + + def endquack(indata, antennas, time, outfgver): - quack = AIPSTask('QUACK') - quack.indata = indata + quack = AIPSTask('QUACK') + quack.indata = indata quack.antennas[1:] = antennas - quack.opcode = 'ENDB' - quack.aparm[1:] = [0,time,0] - quack.flagver = outfgver + quack.opcode = 'ENDB' + quack.aparm[1:] = [0, time, 0] + quack.flagver = outfgver quack() + def begquack(indata, antennas, time, outfgver): - quack = AIPSTask('QUACK') - quack.indata = indata + quack = AIPSTask('QUACK') + quack.indata = indata quack.antennas[1:] = antennas - quack.opcode = 'BEG' - quack.aparm[1:] = [0,time,0] - quack.flagver = outfgver + quack.opcode = 'BEG' + quack.aparm[1:] = [0, time, 0] + quack.flagver = outfgver quack() ############################################################### -def run_aclip(indata,infg,outfg,gainuse,ant,ifnum,pol,vmax,near): - aclip = AIPSTask('ACLIP') - aclip.indata = indata - aclip.flagver = infg - aclip.outfgver = outfg - aclip.antenna[1:] = [ant,0] - aclip.bif = ifnum - aclip.eif = ifnum - aclip.stokes = pol - aclip.docalib = 1 - aclip.gainuse = gainuse - aclip.aparm[1] = vmax #maximum allowed - aclip.aparm[3] = 0.01 #minimum allowed (0 is -1e6) - aclip.aparm[7] = near #if =1 flag surrounding channels - aclip.go() + + +def run_aclip(indata, infg, outfg, gainuse, ant, ifnum, pol, vmax, near): + aclip = AIPSTask('ACLIP') + aclip.indata = indata + aclip.flagver = infg + aclip.outfgver = outfg + aclip.antenna[1:] = [ant, 0] + aclip.bif = ifnum + aclip.eif = ifnum + aclip.stokes = pol + aclip.docalib = 1 + aclip.gainuse = gainuse + aclip.aparm[1] = vmax # maximum allowed + aclip.aparm[3] = 0.01 # minimum allowed (0 is -1e6) + aclip.aparm[7] = near # if =1 flag surrounding channels + aclip.go() ############################################################################## # + +def run_uvflg(indata, timeran, bif, eif, bchan, echan, antennas, outfg): + uvflg = AIPSTask('UVFLG') + uvflg.indata = indata + uvflg.opcode = 'FLAG' + uvflg.timer[1:] = timeran + uvflg.bif = bif + uvflg.eif = eif + uvflg.bchan = bchan + uvflg.echan = echan + uvflg.antenna[1:] = antennas + uvflg.outfgver = outfg + # uvflg.input() + uvflg.go() +############################################################################## +# def runsnsmo(indata, inver, outver, refant): - snsmo = AIPSTask('SNSMO') - snsmo.indata = indata - snsmo.refant = refant - snsmo.inver = inver - snsmo.outver = outver + snsmo = AIPSTask('SNSMO') + snsmo.indata = indata + snsmo.refant = refant + snsmo.inver = inver + snsmo.outver = outver snsmo.bparm[1:] = [0, 0, 1, 1, 1] - snsmo.smotype = 'VLBI' + snsmo.smotype = 'VLBI' snsmo() ############################################################################## # -def runtasav(indata, i, logfile): - tasav = AIPSTask('TASAV') - tasav.indata = indata - tasav.outna = indata.name - tasav.outcla = 'TASAV'+str(i) + + +def runtasav(indata, i): + tasav = AIPSTask('TASAV') + tasav.indata = indata + tasav.outna = indata.name + tasav.outcla = 'TASAV'+str(i) tasav.outdisk = indata.disk - tasav_data=AIPSUVData(indata.name,'TASAV'+str(i),int(indata.disk),1) + tasav_data = AIPSUVData(indata.name, 'TASAV'+str(i), int(indata.disk), 1) if tasav_data.exists(): - mprint('TASAV file exists, do not need save tables', logfile) + logger.info('TASAV file exists, do not need save tables') else: tasav() ############################################################################## # -def man_pcal(indata, refant, mp_source, mp_timera, gainuse, logfile, dpfour): + + +def man_pcal(indata, refant, mp_source, mp_timera, gainuse, dpfour): if mp_source == ['']: mp_source = [] for source in indata.sources: - if source[0]=='F': + if source[0] == 'F': mp_source.append(source) - fringe = AIPSTask('FRING') - fringe.indata = indata - fringe.refant = refant - fringe.docal = 1 - fringe.solint = 10 - fringe.bchan = 0 - fringe.echan = 0 - fringe.gainuse = gainuse - fringe.aparm[1:] = [3,0] - fringe.dparm[8] = 1 - fringe.dparm[2] = 0 - fringe.dparm[3] = 0 - #+++ZB (same as 060907) - fringe.dparm[2] = 500 - #fringe.dparm[2] = 50 - #---ZB - fringe.dparm[3] = 500 - fringe.dparm[4] = dpfour - fringe.snver = 0 - fringe.calso[1:] = mp_source + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + fringe.solint = 10 + fringe.bchan = 0 + fringe.echan = 0 + fringe.gainuse = gainuse + fringe.aparm[1:] = [3, 0] + fringe.dparm[8] = 1 + fringe.dparm[2] = 0 + fringe.dparm[3] = 0 + # +++ZB (same as 060907) + fringe.dparm[2] = 500 + # fringe.dparm[2] = 50 + fringe.dparm[3] = 500 + fringe.dparm[4] = dpfour + fringe.snver = 0 + fringe.calso[1:] = [mp_source] # fringe.inputs() - if mp_timera==0: - fringe.timer[1:]=[0] + if mp_timera == 0: + fringe.timer[1:] = [0] fringe() else: - fringe.timer[1:] = mp_timera - fringe.input() + fringe.timer[1:] = mp_timera + fringe.input() fringe() ############################################################################## # -def run_bpass_cal(indata, bandcal,gainuse,flagver,logfile): - if bandcal==['']: - print mprint('No Bandpass calibrator selected.', logfile) + + +def run_bpass_cal(indata, bandcal, gainuse, flagver): + if bandcal == ['']: + logger.info('No Bandpass calibrator selected.') sys.exit() - if indata.table_highver('AIPS BP')>0: - mprint('Deleting old BP tables.',logfile) - while indata.table_highver('AIPS BP')>0: + if indata.table_highver('AIPS BP') > 0: + logger.info('Deleting old BP tables.') + while indata.table_highver('AIPS BP') > 0: indata.zap_table('AIPS BP', 0) - - bpass = AIPSTask('BPASS') - bpass.indata = indata - bpass.calsour[1:] = bandcal - bpass.docal = 1 - bpass.gainuse = gainuse - bpass.flagver = flagver - bpass.solint = -1 - bpass.bpassprm[4] = 1 # only store phase - bpass.bpassprm[5] = 0 + + bpass = AIPSTask('BPASS') + bpass.indata = indata + bpass.calsour[1:] = bandcal + bpass.docal = 1 + bpass.gainuse = gainuse + bpass.flagver = flagver + bpass.solint = -1 + bpass.bpassprm[4] = 1 # only store phase + bpass.bpassprm[5] = 0 bpass.bpassprm[10] = 3 - bpass.outver = 1 + bpass.outver = 1 bpass.go() ############################################################################## # + + def runtacop(indata, outdata, inext, inver, outver, ncount): - tacop = AIPSTask('TACOP') - tacop.indata = indata + tacop = AIPSTask('TACOP') + tacop.indata = indata tacop.outdata = outdata - tacop.inext = inext - tacop.inver = inver - tacop.outver = outver - tacop.ncount = ncount + tacop.inext = inext + tacop.inver = inver + tacop.outver = outver + tacop.ncount = ncount tacop() @@ -540,7 +592,6 @@ def run_setjy(indata, source, flux): setjy.bif = 0 setjy.eif = 0 setjy.optype = 'VCAL' - print setjy.optype setjy() @@ -553,7 +604,7 @@ def runantab(indata, antabfile): antab.calin = antabfile antab.tyver = 1 antab.gcver = 1 - antab.offset = 3600 + antab.offset = 60 antab.go() @@ -584,15 +635,13 @@ def runapcal(indata, tyver, gcver, snver, dofit, opcode): apcal.opcode = opcode ant = get_ant(indata) apcal.dotv = -1 - if antname == 'VLBA': + if indata.table_highver('AIPS WX')>=1: apcal.inver = 1 # use WX table 1 - for i in ant: - apcal.dofit[i] = dofit - elif antname == 'LBA': - for i in ant: - apcal.dofit[i] = dofit + if isinstance(dofit, int): + for i in ant: apcal.dofit[i] = dofit + if antname == 'EVN': + for i in range(30): apcal.dofit[i+1] = -1 else: - apcal.inver = 0 apcal.dofit[1:] = dofit apcal.input() apcal() @@ -612,87 +661,88 @@ def runapcal(indata, tyver, gcver, snver, dofit, opcode): ################################################################################# -def run_fringecal_2(indata, fr_image, nmaps, gainuse, refant, refant_candi, calsource,solint,smodel, doband, bpver, no_rate,dwin,rwin, logfile): - fringe = AIPSTask('FRING') +def run_fringecal_2(indata, fr_image, nmaps, gainuse, refant, refant_candi, calsource, solint, smodel, doband, bpver, no_rate, rdp_parm, if_av ,dwin, rwin): + fringe = AIPSTask('FRING') if fr_image.exists(): fringe.in2data = fr_image - mprint('################################################',logfile) - mprint('Using input model '+fringe.in2name+'.'+fringe.in2class+'.'+str(int(fringe.in2seq))+' on diks '+str(int(fringe.in2disk)), logfile) - mprint('################################################',logfile) - elif smodel!=[1,0]: + logger.info('################################################') + logger.info('Using input model '+fringe.in2name+'.'+fringe.in2class+'.' + + str(int(fringe.in2seq))+' on diks '+str(int(fringe.in2disk))) + logger.info('################################################') + elif smodel != [1, 0]: fringe.smodel[1:] = smodel - mprint('################################################',logfile) - mprint('Using SMODEL='+str(smodel)+' for fringe.',logfile) - mprint('################################################',logfile) + logger.info('################################################') + logger.info('Using SMODEL='+str(smodel)+' for fringe.') + logger.info('################################################') else: - mprint('################################################',logfile) - mprint('Using point source as imput model for fringe.',logfile) - mprint('################################################',logfile) - - if doband==1: - mprint('################################################',logfile) - mprint('Applying bandpass table '+str(bpver), logfile) - mprint('################################################',logfile) + logger.info('################################################') + logger.info('Using point source as imput model for fringe.') + logger.info('################################################') + + if doband == 1: + logger.info('################################################') + logger.info('Applying bandpass table '+str(bpver)) + logger.info('################################################') else: - mprint('################################################',logfile) - mprint('Applying no bandpass table ', logfile) - mprint('################################################',logfile) + logger.info('################################################') + logger.info('Applying no bandpass table ') + logger.info('################################################') - fringe.indata = indata - fringe.refant = refant - fringe.docal = 1 + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 fringe.calsour[1:] = [calsource] - fringe.solint = solint - fringe.aparm[1:] = [2, 0, 1, 0, 1, 0, 0, 0, 1] #change if needed - fringe.dparm[1:] = [0, dwin, rwin, 0] - #fringe.dparm[4] = dpfour - fringe.dparm[8] = 0 # zeroing rate, delay, phase? - fringe.dparm[9] = no_rate # supressing rate(1) or not(0)? - fringe.nmaps = nmaps - fringe.snver = 0 - fringe.gainuse = gainuse - fringe.doband = int(doband) - fringe.bpver = int(bpver) - fringe.search[1:] = refant_candi + fringe.solint = solint + fringe.aparm[1:] = [3, 0, 0, 0, if_av, 0, 0, 0, 1] # change if needed. if_av =0, not average if for solution, =1, avereage IFs + fringe.dparm[1:] = [0, dwin, rwin, 0] + # fringe.dparm[4] = dpfour + fringe.dparm[8] = rdp_parm # zeroing rate, delay, phase? + fringe.dparm[9] = no_rate # supressing rate(1) or not(0)? + fringe.nmaps = nmaps + fringe.snver = 0 + fringe.gainuse = gainuse + fringe.doband = int(doband) + fringe.bpver = int(bpver) + fringe.search[1:] = refant_candi fringe() -def run_fringecal_1(indata, refant, refant_candi, calsource, gainuse, flagver, solint, doband, bpver, dwin, rwin): - fringe = AIPSTask('FRING') - fringe.indata = indata - fringe.refant = refant - fringe.docal = 1 - print type(calsource) - if(type(calsource) == type('string')): - fringe.calsour[1] = calsource + +def run_fringecal_1(indata, refant, refant_candi, calsource, gainuse, flagver, solint, doband, bpver,if_av, dwin, rwin): + fringe = AIPSTask('FRING') + fringe.indata = indata + fringe.refant = refant + fringe.docal = 1 + if (type(calsource) == type('string')): + fringe.calsour[1] = calsource else: - fringe.calsour[1:] = calsource - fringe.search[1:] = refant_candi - fringe.solint = solint - fringe.aparm[1:] = [3, 0, 0, 0, 1, 0, 0, 0, 1] - fringe.dparm[1:] = [0, dwin, rwin, 0] - #fringe.dparm[4] = dpfour - fringe.dparm[8] = 0 - fringe.gainuse = gainuse - fringe.flagv = flagver - fringe.snver = 0 - fringe.doband = int(doband) - fringe.bpver = int(bpver) + fringe.calsour[1:] = calsource + fringe.search[1:] = refant_candi + fringe.solint = solint + fringe.aparm[1:] = [3, 0, 0, 0, if_av, 0, 0, 0, 1] + fringe.dparm[1:] = [0, dwin, rwin, 0] + # fringe.dparm[4] = dpfour + fringe.dparm[8] = 0 + fringe.gainuse = gainuse + fringe.flagv = flagver + fringe.snver = 0 + fringe.doband = int(doband) + fringe.bpver = int(bpver) fringe.input() fringe() ############################################################################## # -def runimagr(indata, source, niter, cz, iz, docal, imna, antennas, uvwtfn, robust, beam, logfile): +def runimagr(indata, source, niter, cz, iz, docal, imna, antennas, uvwtfn, robust, beam): if imna == '': outname = source else: outname = source[:11 - len(imna)] + '-' + imna - mprint('#########################################################', logfile) - mprint('Imaging ' + source + ' with imsize=' + str(iz) + ', cellsize=' + str(cz) + + logger.info('#########################################################') + logger.info('Imaging ' + source + ' with imsize=' + str(iz) + ', cellsize=' + str(cz) + ' and ' + str(niter) + ' iterations. Using antennas=' + str(antennas) + - '.', logfile) - mprint('#########################################################', logfile) + '.') + logger.info('#########################################################') imagr = AIPSTask('IMAGR') imagr.indata = indata imagr.docal = docal @@ -835,7 +885,8 @@ def runprtmasn(indata, channel): prtab.box[2][2] = 15 prtab.dohms = -1 (year, month, day) = get_observation_year_month_day(indata) - monthlist = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'] + monthlist = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', + 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'] if day < 10: strday = '0' + str(day) @@ -844,7 +895,8 @@ def runprtmasn(indata, channel): namma = str(year) + monthlist[int(month) - 1] + strday - prtab.outprint = 'PWD:' + namma + '_' + prtab.inname + '_CH' + str(channel) + '.RATE' + prtab.outprint = 'PWD:' + namma + '_' + \ + prtab.inname + '_CH' + str(channel) + '.RATE' prtab() @@ -866,7 +918,8 @@ def runprtmasu(indata, channel): prtab.dohms = -1 prtab.ndig = 4 (year, month, day) = get_observation_year_month_day(indata) - monthlist = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'] + monthlist = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', + 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'] if day < 10: strday = '0' + str(day) @@ -875,15 +928,15 @@ def runprtmasu(indata, channel): namma = str(year) + monthlist[int(month) - 1] + strday - prtab.outprint = 'PWD:' + namma + '_' + prtab.inname + '_CH' + str(channel) + '.SU' + prtab.outprint = 'PWD:' + namma + '_' + \ + prtab.inname + '_CH' + str(channel) + '.SU' prtab() ############################################################################## # def runcvel(indata, cvelsource, vel, inter_flag, doband, bpver): - print - 'Running CVEL.' + logger.info('Running CVEL.') if inter_flag == 1: cvelsource = check_calsource(indata, cvelsource) @@ -894,8 +947,8 @@ def runcvel(indata, cvelsource, vel, inter_flag, doband, bpver): vel = [vel] if naxis[3] != len(vel): - print - 'You have ' + str(naxis[3]) + ' IFs, and ' + str(len(vel)) + ' velocities.' + logger.info('You have ' + str(naxis[3]) + ' IFs, and ' + \ + str(len(vel)) + ' velocities.') sys.exit() (linename, restfreq) = get_line_name(indata) @@ -962,132 +1015,216 @@ def runcvel(indata, cvelsource, vel, inter_flag, doband, bpver): indxr() ######################################################################################### -def run_calib_1(indata,fr_image,smode,gainuse,refant,snout,doband,bpver,calsour,flagver,solint): - calib = AIPSTask('CALIB') - calib.indata = indata - calib.docalib = 1 - calib.doband = int(doband) - calib.bpver = int(bpver) - calib.gainuse = gainuse - calib.cmethod = 'DFT' - calib.in2data = fr_image - calib.nmaps = 1 - if(type(calsour) == type('string')): - calib.calsour[1] = calsour + + +def run_calib_1(indata, fr_image, smode, gainuse, refant, snout, doband, bpver, calsour, flagver, solint, if_av): + channels = indata.header['naxis'][2] + if channels == 16: + bad = 1 # remove 1 channel from each side + elif channels == 32: + bad = 2 # remove 2 channels from each side + elif channels == 64: + bad = 4 # remove 2 channels from each side + elif channels == 128: + bad = 8 # remove 6 channels from each side + elif channels == 256: + bad = 10 # remove 8 channels from each side + elif channels == 512: + bad = 16 # remove 10 channels from each side + elif channels == 1024: + bad = 20 # remove 12 channels from each side + else: + bad = 0 + + [bchan, echan] = [1+bad, channels-bad] + + logger.info ('Averaging channels '+str(bchan)+' - '+str(echan)+'.') + calib = AIPSTask('CALIB') + calib.indata = indata + calib.docalib = 1 + calib.doband = int(doband) + calib.bpver = int(bpver) + calib.gainuse = gainuse + calib.cmethod = 'DFT' + calib.in2data = fr_image + calib.nmaps = 1 + if (type(calsour) == type('string')): + calib.calsour[1] = calsour else: - calib.calsour[1:] = calsour - calib.flagver = flagver - calib.refant = refant - calib.solmode = smode - calib.snver = snout - calib.solint = solint*2 + calib.calsour[1:] = calsour + calib.flagver = flagver + calib.refant = refant + calib.soltype = 'L1R' + calib.solmode = smode + calib.snver = snout + calib.solint = solint if smode == 'P': - nant =3 + nant = 3 elif smode == 'A&P': - nant =4 - calib.aparm[1:] = nant,0,1,0,1,0 - calib.normaliz = 1 - calib.cparm[1:] = 15,1,0 + nant = 4 + calib.aparm[1:] = nant, 0, 1, 0, if_av, 0 # aparm[3], averege L, R; aparm[5]: avg ifs + calib.normaliz = 3 # 1,2 to not separate by IF; 3 by IF; 4 by IF and pol also + calib.cparm[1:] = 15, 1, 0 # (1) elevation 15 deg; (2) 0, use mean, 1 use median for normalize + calib.ichansel[1] = [None, bchan, echan, 1, 0] calib.input() calib.go() ############################################################################## # -def run_split2(indata, source, gainuse, outclass, doband, bpver, flagver,split_seq): +def run_uvfix(indata,rash,decsh,outclass): + uvfix = AIPSTask('UVFIX') + uvfix.indata = indata + uvfix.shift[1] = rash + uvfix.shift[2] = decsh + uvfix.outclass = outclass + uvfix() + +def run_split2(indata, source, gainuse, outclass, doband, bpver, flagver,av_chan, split_seq): channels = indata.header['naxis'][2] - if channels==16: - bad=1 # remove 1 channel from each side - elif channels==32: - bad=2 # remove 2 channels from each side - elif channels==64: - bad=4 # remove 2 channels from each side - elif channels==128: - bad=6 # remove 6 channels from each side - elif channels==256: - bad=8 # remove 8 channels from each side - elif channels==512: - bad=10 # remove 10 channels from each side - elif channels==1024: - bad=12 # remove 12 channels from each side + if channels == 16: + bad = 1 # remove 1 channel from each side + elif channels == 32: + bad = 2 # remove 2 channels from each side + elif channels == 64: + bad = 4 # remove 2 channels from each side + elif channels == 128: + bad = 8 # remove 6 channels from each side + elif channels == 256: + bad = 10 # remove 8 channels from each side + elif channels == 512: + bad = 16 # remove 10 channels from each side + elif channels == 1024: + bad = 20 # remove 12 channels from each side else: - bad=0 + bad = 0 - [bchan,echan]=[1+bad,channels-bad] + [bchan, echan] = [1+bad, channels-bad] - print 'Averaging channels '+str(bchan)+' - '+str(echan)+'.' + logger.info ('Averaging channels '+str(bchan)+' - '+str(echan)+'.') - split_data=AIPSUVData(source,outclass,indata.disk,split_seq) + split_data = AIPSUVData(source, outclass, indata.disk, split_seq) if split_data.exists(): - print 'Zapping old split data' + logger.info ('Zapping old split data') split_data.clrstat() split_data.zap() if isinstance(source, str): - source=[source] - - split = AIPSTask('SPLIT') - split.indata = indata - split.bchan = 0 #bchan - split.echan = 0 #echan - #split.freqid = 1 - split.docalib = 1 - #split.qual = -1 - split.gainuse = gainuse - split.flagver = flagver + source = [source] + + split = AIPSTask('SPLIT') + split.indata = indata + split.bchan = 0 # bchan + split.echan = 0 # echan + # split.freqid = 1 + split.docalib = 1 + # split.qual = -1 + split.gainuse = gainuse + split.flagver = flagver split.source[1:] = source - split.outclass = outclass - split.outseq = split_seq - split.aparm[1:] = [2,2,0] - #split.aparm[6] = 1 - split.outdisk = indata.disk - split.doband = doband - split.bpver = bpver - #split.smooth[1:] = smooth - #split.input() - split.ichansel[1] = [None,1+bad,channels-bad,1,0] + split.outclass = outclass + split.outseq = split_seq + if av_chan == 1:# average within IFs + split.aparm[1:] = [2, 2, 0] + elif av_chan == 0: # average IFs also + split.aparm[1:] = [3, 2, 0] + # split.aparm[6] = 1 + split.outdisk = indata.disk + split.doband = doband + split.bpver = bpver + # split.smooth[1:] = smooth + # split.input() + split.ichansel[1] = [None, 1+bad, channels-bad, 1, 0] split() - - fittp = AIPSTask('FITTP') - fittp.indata = split_data - fitname=fittp.inname+'_'+fittp.inclass+'_'+str(int(fittp.inseq))+'.splt' + fittp = AIPSTask('FITTP') + fittp.indata = split_data + fitname = fittp.inname+'_CL'+str(gainuse)+'_'+fittp.inclass+'_'+str(int(fittp.inseq))+'.splt' fittp.dataout = 'PWD:'+fitname if split_data.exists(): - print('Writing out calibrated and splitted uv-data for '+source[0]) + logger.info('Writing out calibrated and splitted uv-data for '+source[0]) fittp.go() else: - print('No calibrated and splitted uv-data for '+source[0]) + logger.info('No calibrated and splitted uv-data for '+source[0]) if os.path.exists(outname[0]+'/'+fitname): os.popen(r'rm '+outname[0]+'/'+fitname) if os.path.exists(fitname): os.popen(r'mv '+fitname+' '+outname[0]+'/') - +#split3 specially designed for shifting +def run_split3(indata, target, outclass, doband, bpver, gainuse, avg, fittp): + if fittp >= 0: + split = AIPSTask('SPLIT') + split.indata = indata + if gainuse <= 0: + split.docalib = -1 + else: + split.docalib = 1 + split.gainuse = gainuse + split.flagver = 0 + if isinstance(target, str): + source=[target] + split.source[1:] = [target] + split.outclass = outclass + #split.outname = parm not there + if avg == 0: + split.aparm[1:] = [0] + elif avg == 1: + split.aparm[1:] = [2,2,0] + elif avg == 2: + split.aparm[1:] = [3,2,0] + #split.aparm[6] = 1 + split.outdisk = indata.disk + split.doband = doband + split.bpver = bpver + #split.smooth[1:] = smooth + split.input() + split() + splt_data=AIPSUVData(target,outclass,indata.disk,1) + # if uvfix_data.exists(): +# print 'Clear old uvfix data' +# splt_data.clrstat() +# splt_data.zap() + if fittp == 1: + fittp = AIPSTask('FITTP') + fittp.indata = splt_data + fitname=fittp.inname+'_'+fittp.inclass+'_'+str(int(fittp.inseq))+'.splt' + fittp.dataout = 'PWD:'+fitname + if splt_data.exists(): + logger.info('Writing out calibrated and splitted uv-data for '+source[0]) + fittp.go() + else: + logger.info('No calibrated and splitted uv-data for '+source[0]) + if os.path.exists(outname[0]+'/'+fitname): + os.popen(r'rm '+outname[0]+'/'+fitname) + if os.path.exists(fitname): + os.popen(r'mv '+fitname+' '+outname[0]+'/') def run_split(indata, source, outclass, doband, bpver): + channels = indata.header['naxis'][2] if channels == 16: - bad = 1 # remove 1 channel from each side + bad = 1 # remove 1 channel from each side elif channels == 32: - bad = 2 # remove 2 channels from each side + bad = 2 # remove 2 channels from each side elif channels == 64: - bad = 4 # remove 2 channels from each side + bad = 4 # remove 2 channels from each side elif channels == 128: - bad = 6 # remove 6 channels from each side + bad = 8 # remove 6 channels from each side elif channels == 256: - bad = 8 # remove 8 channels from each side + bad = 10 # remove 8 channels from each side elif channels == 512: - bad = 10 # remove 10 channels from each side + bad = 16 # remove 10 channels from each side elif channels == 1024: - bad = 12 # remove 12 channels from each side + bad = 20 # remove 12 channels from each side else: bad = 0 - [bchan, echan] = [1 + bad, channels - bad] + [bchan, echan] = [1+bad, channels-bad] + - print ('Averaging channels ' + str(bchan) + ' - ' + str(echan) + '.') + logger.info('Averaging channels ' + str(bchan) + ' - ' + str(echan) + '.') target = findtarget(indata, source) if isinstance(target, str): @@ -1118,7 +1255,7 @@ def run_split(indata, source, outclass, doband, bpver): split() -def run_fittp_data(source, outcl, disk, logfile): +def run_fittp_data(source, outcl, disk): fittp = AIPSTask('FITTP') data = AIPSUVData(source, outcl, disk, 1) fittp.indata = data @@ -1127,26 +1264,27 @@ def run_fittp_data(source, outcl, disk, logfile): fittp.dataout = 'PWD:' + fittp.inname + '.' + fittp.inclass + '.fits' if data.exists(): - mprint('Writing out calibrated and splitted uv-data for ' + source, logfile) + logger.info('Writing out calibrated and splitted uv-data for ' + source) fittp.go() else: - mprint('No calibrated and splitted uv-data for ' + source, logfile) + logger.info('No calibrated and splitted uv-data for ' + source) def shift_pos(indata, source, ra, dec, inver, outver): if source == '': - source=findcal(indata, '') - clcor = AIPSTask('CLCOR') - clcor.indata = indata - clcor.source[1] = source - clcor.opcode = 'ANTC' + source = findcal(indata, '') + clcor = AIPSTask('CLCOR') + clcor.indata = indata + clcor.source[1] = source + clcor.opcode = 'ANTC' clcor.clcorprm[5] = ra clcor.clcorprm[6] = dec - clcor.gainver = inver - clcor.gainuse = outver - if ra!=0 or dec!=0: + clcor.gainver = inver + clcor.gainuse = outver + if ra != 0 or dec != 0: clcor() + def run_grid(indata, source, cellsize, imsize, n, m, grid_offset, uvwtfn, robust, beam): grid = [] if n % 2 != 0: @@ -1156,7 +1294,8 @@ def run_grid(indata, source, cellsize, imsize, n, m, grid_offset, uvwtfn, robust grid.append([i - n / 2, j - m / 2]) for shift in grid: - shift_pos(indata, source, shift[0] * grid_offset, shift[1] * grid_offset, 8, 9) + shift_pos(indata, source, shift[0] * + grid_offset, shift[1] * grid_offset, 8, 9) channels = indata.header['naxis'][2] if channels == 16: @@ -1166,13 +1305,13 @@ def run_grid(indata, source, cellsize, imsize, n, m, grid_offset, uvwtfn, robust elif channels == 64: bad = 4 # remove 2 channels from each side elif channels == 128: - bad = 6 # remove 6 channels from each side + bad = 8 # remove 6 channels from each side elif channels == 256: - bad = 8 # remove 8 channels from each side + bad = 10 # remove 8 channels from each side elif channels == 512: - bad = 10 # remove 10 channels from each side + bad = 15 # remove 10 channels from each side elif channels == 1024: - bad = 12 # remove 12 channels from each side + bad = 20 # remove 12 channels from each side else: bad = 0 @@ -1198,27 +1337,27 @@ def run_grid(indata, source, cellsize, imsize, n, m, grid_offset, uvwtfn, robust print 'Imaging ' + str(shift[0]) + ' ' + str(shift[1]) - rungridimagr(split_data, source, 10, cellsize, imsize, -1, uvwtfn, robust, beam) + rungridimagr(split_data, source, 10, cellsize, + imsize, -1, uvwtfn, robust, beam) split_data.zap() - restore_su(indata, logfile) - check_sncl(indata, 4, 8, logfile) + restore_su(indata) + check_sncl(indata, 4, 8) def findcal(indata, calsource): if calsource == '': n = 0 for source in indata.sources: - if source[0]=='G': - calsource=source - n=n+1 - if n>1: - print ('More than one Maser source! Using '+calsource ) + if source[0] == 'G': + calsource = source + n = n+1 + if n > 1: + logger.info('More than one Maser source! Using '+calsource) return calsource - def run_masplit(indata, source, outclass, doband, bpver, smooth, channel): source = findcal(indata, source) if isinstance(source, str): @@ -1339,11 +1478,13 @@ def runrpossm(indata, cvelsource, tv, interflag, antennas): # --- x-axis labeled with channel number if chvel == 'ch': if bchan == 0 and echan == 0: - spectfile = 'PWD:' + cvelsource[0] + '.' + linename + '.spectrum.txt' + spectfile = 'PWD:' + \ + cvelsource[0] + '.' + linename + '.spectrum.txt' filename = cvelsource[0] + '.' + linename + '.POSSM.ps' else: spectfile = '' - filename = cvelsource[0] + '.' + linename + '.POSSM_CH' + str(bchan) + '-' + str(echan) + '.ps' + filename = cvelsource[0] + '.' + linename + \ + '.POSSM_CH' + str(bchan) + '-' + str(echan) + '.ps' if gv_flag == 0: possm.dotv = -1 @@ -1401,14 +1542,16 @@ def runimean(imgdata, blc=[0, 0, 0], trc=[0, 0, 0]): ################################################################################ # run SAD for maser source # -def run_ma_sad(inimg,indata,cut,dyna): + + +def run_ma_sad(inimg, indata, cut, dyna): if inimg.exists(): inimg.clrstat() num_ch = inimg.header.naxis[3-1] srcname = inimg.name - obs=inimg.header['observer']; - date_obs=inimg.header['date_obs'] - (linename,restfreq) = get_line_name(indata) + obs = inimg.header['observer'] + date_obs = inimg.header['date_obs'] + (linename, restfreq) = get_line_name(indata) for line in inimg.history: if line[0:11] == 'IMAGR BCHAN': bchan = int(line[15:22]) @@ -1421,59 +1564,59 @@ def run_ma_sad(inimg,indata,cut,dyna): ech_str = str(echan+1000) ech_str = ech_str[1:4] - sad_file = srcname+'_'+linename+'_'+obs+'_'+ \ - date_obs+'_CH'+bch_str+'-'+ech_str+'_sad.txt' + sad_file = srcname+'_'+linename+'_'+obs+'_' + \ + date_obs+'_CH'+bch_str+'-'+ech_str+'_sad.txt' if os.path.exists(sad_file): os.popen('rm '+sad_file) if os.path.exists('sad.txt'): os.popen('rm sad.txt') - sad = AIPSTask('SAD') - sad.indata = inimg - sad.doresid = -1 - sad.ngauss = 3 - #--- for weak source, we may need to increase gain - sad.gain = 0.3 - sad.sort = 'S' - sad.docrt = -4 - sad.fitout = 'PWD:'+'sad.txt' - mpeak=[] - mrms=[] - for i in range(1,num_ch+1): - (peak, rms) = runimean(inimg,[0,0,i],[0,0,i]) + sad = AIPSTask('SAD') + sad.indata = inimg + sad.doresid = -1 + sad.ngauss = 3 + # --- for weak source, we may need to increase gain + sad.gain = 0.3 + sad.sort = 'S' + sad.docrt = -4 + sad.fitout = 'PWD:'+'sad.txt' + mpeak = [] + mrms = [] + for i in range(1, num_ch+1): + (peak, rms) = runimean(inimg, [0, 0, i], [0, 0, i]) mpeak.append(peak) mrms.append(rms) c1 = peak*0.5 - c3 = max(rms*cut,peak*dyna) + c3 = max(rms*cut, peak*dyna) c2 = (c1 + c3)*0.5 d1 = c3 d2 = c3 d3 = 0 - #--- pixel (depended on the compactness) - #--- cellsize = 0.1 mas, then 40 means 4 mas + # --- pixel (depended on the compactness) + # --- cellsize = 0.1 mas, then 40 means 4 mas d4 = 40 d5 = 40 - cparm=[c1,c2,c3] + cparm = [c1, c2, c3] cparm.sort() cparm.reverse() sad.cparm[1:] = cparm - sad.icut = c3 - sad.dparm[1:] = [d1,d2,d3,d4,d5] - sad.blc[3] = i - sad.trc[3] = i - if peak>rms*cut: + sad.icut = c3 + sad.dparm[1:] = [d1, d2, d3, d4, d5] + sad.blc[3] = i + sad.trc[3] = i + if peak > rms*cut: sad() - cmd='cp sad.txt '+sad_file + cmd = 'cp sad.txt '+sad_file os.popen(cmd) - mprint ('Channel: Peak rms SNR',logfile) - mprint (' (Jy) (Jy)',logfile) - mprint ('---------------------------------',logfile) + logger.info('Channel: Peak rms SNR') + logger.info(' (Jy) (Jy)') + logger.info('---------------------------------') for i in range(len(mpeak)): - mprint(('%3d %7.4f %7.4f %8.4f' % (i+bchan-1, - mpeak[i], mrms[i], mpeak[i]/mrms[i])),logfile) + logger.info(('%3d %7.4f %7.4f %8.4f' % (i+bchan-1, + mpeak[i], mrms[i], mpeak[i]/mrms[i]))) else: - print 'Image does not exist, please check it.' - exit() \ No newline at end of file + logger.info ('Image does not exist, please check it.') + exit() diff --git a/vlbi-pipeline/utils.py b/vlbi-pipeline/utils.py index 37685df..44381dd 100644 --- a/vlbi-pipeline/utils.py +++ b/vlbi-pipeline/utils.py @@ -8,15 +8,16 @@ #import AIPSTV #import AIPS, os, math, time from pylab import * -from config import * +# from config import * from check_utils import * #from get_utils import * +from logging_config import logger -def mprint(intext, logfile): - print(intext) - f = open(logfile, 'a') - f.writelines(intext + '\n') - f.close() +# def logger.info(intext): +# print(intext) +# f = open(logfile, 'a') +# f.writelines(intext + '\n') +# f.close() def current_time(): ''' Get current time in format 'yyyymmdd.HHMMSS' @@ -85,6 +86,49 @@ def deg_to_radec(pos): return ra, dec +############################################################################## +#apply gain calibration factors to CL tables +def gcal_apply(indata,matx,cluse,pol): + clcor = AIPSTask('CLCOR') + clcor.indata = indata + clcor.opcode = 'GAIN' # 'GAIN' is voltage, 'POGN' is power, use gain + clcor.gainver = cluse + clcor.gainuse = cluse + clcor.stokes = pol + for i in range(len(matx)): + for j in range(len(matx[i])): + clcor.antenna[1] = j+1 + clcor.clcorprm[1] = matx[i][j] + clcor.bif = i+1 + clcor.eif = i+1 + # clcor.input() + clcor() + # clcor.stokes = 'R' + # for i in range(len(matxr)): + #for j in range (len(matxr[i])): + # clcor.antenna[1] = i+1 + # clcor.clcorprm[1] = matxr[i][j] + # clcor.bif = j+1 + # clcor.eif = j+1 + # clcor() + +def copy_uvdata(indata, outname, outclass): + # copy single-source uv data + # replace old data if exists + if outclass == indata.outclass and outname == indata.name: + logger.error('Output class name must be different from input class name.') + sys.exit() + newdata = AIPSUVData(outname, outclass, indata.disk, 1) + if newdata.exists(): + newdata.zap() + + uvcop = AIPSTask('UVCOP') + uvcop.indata = indata + uvcop.go() + + return newdata + + ############################################################################## @@ -138,23 +182,23 @@ def read_mail(mail_path, ou, op, of, inter_flag): if len(dates)>1: - print 'Found VLA/VLBA archive emails from:' + print('Found VLA/VLBA archive emails from:') for i in range(len(dates)): - print str(i+1)+': '+dates[i] + print(str(i+1)+': '+dates[i]) if inter_flag==1: date_nr=input('Which one? (1-'+str(len(dates))+') ')-1 if (date_nr in range(len(dates)))==False: - print 'No such date.' + print('No such date.') sys.exit() else: date_nr=len(dates)-1 - print 'Using: '+date - print '' + print('Using: '+date) + print('') user=users[date_nr] passw=passs[date_nr] - print user, passw + print(user, passw) if user=='nopass': @@ -165,7 +209,7 @@ def read_mail(mail_path, ou, op, of, inter_flag): os.popen(r'wget --no-check-certificate --http-user '+user+ ' --http-passwd '+passw+' -t45 -O files.txt'+ ' https://archive.nrao.edu/secured/'+user+'/', 'w') - print ' https://archive.nrao.edu/secured/'+user+'/' + print(' https://archive.nrao.edu/secured/'+user+'/') f=open('files.txt') content=f.read() @@ -184,7 +228,7 @@ def read_mail(mail_path, ou, op, of, inter_flag): if inter_flag==1: cont=raw_input('Use these filenames? (y/n) ') if cont=='n' or cont=='N': - print 'Using other filenames:' + print('Using other filenames:') print_download_options(ou,op,of) return ou, op, '', of, len(of) @@ -195,24 +239,23 @@ def read_mail(mail_path, ou, op, of, inter_flag): def print_download_options(user,passw,file_names,file_sizes): - print ' file = range(n)' - print ' arch_user = \''+user+'\'' - print ' arch_pass = \''+passw+'\'' - print '' + print(' file = range(n)') + print(' arch_user = \''+user+'\'') + print(' arch_pass = \''+passw+'\'') + print('') n=0 for i in range(0,len(file_names)): - print ' file['+str(n)+'] = \''+file_names[i]+'\' ('+file_sizes[i]+')' + print(' file['+str(n)+'] = \''+file_names[i]+'\' ('+file_sizes[i]+')') n=n+1 - print '' - -def data_info(indata, i, geo, cont, line, logfile): + print('') +def data_info(indata, i, geo, cont, line): if indata.exists(): frq=get_center_freq(indata)/1e9 if frq>1.3 and frq< 1.8: band='L' elif frq>2.1 and frq<2.4: band='S' elif frq>4.5 and frq<8: - if check_sx(indata, logfile): band='S/X' + if check_sx(indata): band='S/X' else: band='C' elif frq>8.0 and frq<10.0: band='X' elif frq>11.5 and frq<16.0: band='U' @@ -226,37 +269,37 @@ def data_info(indata, i, geo, cont, line, logfile): elif i==line and i==cont: add = ' (line or continuum data)' else: add = ' (data not used)' naxis = indata.header['naxis'] - mprint('File '+str(i)+': '+indata.name+' '+band+' band, '+str(naxis[1]) + logger.info('File '+str(i)+': '+indata.name+' '+band+' band, '+str(naxis[1]) +' Stokes, '+str(naxis[2])+' channels '+str(naxis[3]) - +' IFs'+add, logfile) + +' IFs'+add) return band, naxis[1], naxis[2], naxis[3] -def restore_su(indata, logfile): +def restore_su(indata): tasav_data=AIPSUVData(indata.name,'TASAV'+str(i),int(indata.disk),1) if tasav_data.exists(): - mprint('##########################################', logfile) - mprint('TASAV file exists, restoring old SU table.', logfile) - mprint('##########################################', logfile) + logger.info('##########################################') + logger.info('TASAV file exists, restoring old SU table.') + logger.info('##########################################') while indata.table_highver('AIPS SU')>0: indata.zap_table('AIPS SU', 1) runtacop(tasav_data, indata, 'SU', 1, 1, 0) else: - mprint('###############################################',logfile) - mprint('No TASAV file. Restoring SU table not possible.',logfile) - mprint('###############################################',logfile) + logger.info('###############################################') + logger.info('No TASAV file. Restoring SU table not possible.') + logger.info('###############################################') ############################################################################## # -def restore_fg(indata, logfile): +def restore_fg(indata): tasav_data=AIPSUVData(indata.name,'TASAV'+str(i),int(indata.disk),1) if tasav_data.exists(): - mprint('##########################################', logfile) - mprint('TASAV file exists, restoring old FG table.', logfile) - mprint('##########################################', logfile) + logger.info('##########################################') + logger.info('TASAV file exists, restoring old FG table.') + logger.info('##########################################') while indata.table_highver('AIPS FG')>0: indata.zap_table('AIPS FG', 0) runtacop(tasav_data, indata, 'FG', 1, 1, 0) else: - mprint('###############################################',logfile) - mprint('No TASAV file. Restoring SU table not possible.',logfile) - mprint('###############################################',logfile) \ No newline at end of file + logger.info('###############################################') + logger.info('No TASAV file. Restoring SU table not possible.') + logger.info('###############################################') \ No newline at end of file