From 8d92c03eaaf8be6913b1fcc7feb22549d0bc718b Mon Sep 17 00:00:00 2001 From: Pedro Bernardinelli Date: Wed, 13 Dec 2023 15:12:07 -0800 Subject: [PATCH 1/2] Implements unit tests for orbit conversion utils, fixes obliquity of the ecliptic value --- docs/notebooks/demo_Lightcurve.ipynb | 2 +- src/sorcha/ephemeris/simulation_constants.py | 2 +- tests/ephemeris/test_orbit_conversion.py | 204 +++++++++++++++++++ 3 files changed, 206 insertions(+), 2 deletions(-) create mode 100644 tests/ephemeris/test_orbit_conversion.py diff --git a/docs/notebooks/demo_Lightcurve.ipynb b/docs/notebooks/demo_Lightcurve.ipynb index e96ea037..c7afd188 100644 --- a/docs/notebooks/demo_Lightcurve.ipynb +++ b/docs/notebooks/demo_Lightcurve.ipynb @@ -16,7 +16,7 @@ "The goal of this notebook is to demonstrate the use of lightcurves within `sorcha`.\n", "\n", "This will be done in two different ways:\n", - "- We will use the community tools part of the [`sorcha_addons`](https://github.com/dirac-institute/sorcha-addons) package\n", + "- We will use the community tools part of the [`sorcha-addons`](https://github.com/dirac-institute/sorcha-addons) package\n", "- We will implement a custom lightcurve, and use it inside the code\n", "\n", "The idea is that the user can, in principle, implement their own lightcurves, and incorporate them in their simulation. The goal of `sorcha-addons` is for both the development team, as well as for the community, to share their implementations of custom lightcurve models. " diff --git a/src/sorcha/ephemeris/simulation_constants.py b/src/sorcha/ephemeris/simulation_constants.py index 85674043..190c56d7 100644 --- a/src/sorcha/ephemeris/simulation_constants.py +++ b/src/sorcha/ephemeris/simulation_constants.py @@ -4,7 +4,7 @@ AU_M = 149597870700 AU_KM = AU_M / 1000.0 SPEED_OF_LIGHT = 2.99792458e5 * 86400.0 / AU_KM -OBLIQUITY_ECLIPTIC = 84381.4118 * (1.0 / 3600) * np.pi / 180.0 +OBLIQUITY_ECLIPTIC = 84381.448 * (1.0 / 3600) * np.pi / 180.0 def create_ecl_to_eq_rotation_matrix(ecl): diff --git a/tests/ephemeris/test_orbit_conversion.py b/tests/ephemeris/test_orbit_conversion.py new file mode 100644 index 00000000..280e850a --- /dev/null +++ b/tests/ephemeris/test_orbit_conversion.py @@ -0,0 +1,204 @@ +import numpy as np + + +def test_orbit_conversion_relationships(): + # this uses a very similar idea to the demo notebook - this is a case where we *know* the answer + from sorcha.ephemeris.orbit_conversion_utilities import universal_cartesian, universal_keplerian + + # define orbits (no e) + q = 10 + i = 0 + Omega = 0 + omega = 0 + Tp = 0 + # define constants + epochMJD_TDB = 0 + mu = 1 + # the answer is: (10,0,0) for all tested orbits. They're at perihelion in a well chosen set of units + # this also means the vx = 0, and, since i = 0, vz = 0. vy > 0 is the final constraint from this setup + + for e in [0, 0.1, 0.9999, 1.0, 1.0001, 6.0]: + x, y, z, vx, vy, vz = universal_cartesian(mu, q, e, i, Omega, omega, Tp, epochMJD_TDB) + assert np.isclose(x, 10.0) + assert np.isclose(y, 0.0) + assert np.isclose(z, 0.0) + assert np.isclose(vx, 0.0) + assert vy > 0 + assert np.isclose(vz, 0.0) + + # we also know that we are invariant under 2 pi rotations in Omega and omega + for e in [0, 0.1, 0.9999, 1.0, 1.0001, 6.0]: + x, y, z, vx, vy, vz = universal_cartesian( + mu, q, e, i, Omega + 2 * np.pi, omega + 2 * np.pi, Tp, epochMJD_TDB + ) + assert np.isclose(x, 10.0) + assert np.isclose(y, 0.0) + assert np.isclose(z, 0.0) + assert np.isclose(vx, 0.0) + assert vy > 0 + assert np.isclose(vz, 0.0) + x, y, z, vx, vy, vz = universal_cartesian( + mu, q, e, i, Omega - 2 * np.pi, omega - 2 * np.pi, Tp, epochMJD_TDB + ) + assert np.isclose(x, 10.0) + assert np.isclose(y, 0.0) + assert np.isclose(z, 0.0) + assert np.isclose(vx, 0.0) + assert vy > 0 + assert np.isclose(vz, 0.0) + + # finally, if we rotate inclination to 90 deg, we should flip vz and vy + for e in [0, 0.1, 0.9999, 1.0, 1.0001, 6.0]: + x_0, y_0, z_0, vx_0, vy_0, vz_0 = universal_cartesian(mu, q, e, 0.0, Omega, omega, Tp, epochMJD_TDB) + x_90, y_90, z_90, vx_90, vy_90, vz_90 = universal_cartesian( + mu, q, e, np.pi / 2, Omega, omega, Tp, epochMJD_TDB + ) + assert np.isclose(x_0, x_90) + assert np.isclose(y_0, y_90) + assert np.isclose(z_0, z_90) + assert np.isclose(vx_0, vx_90) + # note these are different now! + assert np.isclose(vy_0, vz_90) + assert np.isclose(vz_0, vy_90) + + +def test_orbit_conversion_realdata(): + from sorcha.ephemeris.simulation_parsing import parse_orbit_row + from collections import namedtuple + + # constants + + # values from the spice kernel - dec 13 2023 + gm_sun = 2.9591220828559115e-04 + gm_total = 2.9630927487993194e-04 + + # this is a hack where we are hardcoding the Sun positions at the time (computed using JPL) + # note that this needs to be a namedtuple due to the way `parse_orbit_row` expects the input + Sun = namedtuple("Sun", "x y z vx vy vz") + + # this is similar to the notebook - values come from JPL and are for asteroid Holman and 2I/Borisov + # let's start with Holman + epochJD_TDB = 2457545.5 + # note these are equatorially aligned\ + sun_epoch = Sun( + x=3.743893517879733e-03, + y=2.355922092887896e-03, + z=8.440770737482685e-04, + vx=-7.096646739414067e-07, + vy=6.421467712437571e-06, + vz=2.788964122162865e-06, + ) + # sun_epoch = Sun(x = 0, y = 0, z = 0, vx = 0, vy = 0, vz = 0) + sun_dict = {epochJD_TDB: sun_epoch} + # heliocentric keplerian and cometary - note angles are in degrees! + e_helio = 1.273098035049758e-01 + q_helio = 2.719440725596252e00 + inc_helio = 2.363582123773087e00 + lan_helio = 1.203869311659506e02 + aop_helio = 5.506308037812056e01 + Tp_helio = 2457934.552658705506 + M_helio = 2.902919054404318e02 + a_helio = 3.116158215731438e00 + # heliocentric cartesian (ecliptic) + X_helio = -7.569545429706993e-02 + Y_helio = 3.024083648650882e00 + Z_helio = -6.044399403284755e-02 + VX_helio = -9.914117209213893e-03 + VY_helio = -1.485136186100886e-03 + VZ_helio = 3.840061650310168e-04 + # barycentric keplerian and cometary + e_bary = 1.277080918842867e-01 + q_bary = 2.718601009368714e00 + inc_bary = 2.364051308275402e00 + lan_bary = 1.203686955102486e02 + aop_bary = 5.537099088407054e01 + Tp_bary = 2457936.050825081766 + M_bary = 2.899920485236385e02 + a_bary = 3.116618398124679e00 + # barycentric cartesian (ecliptic!) + X_bary = -7.195156074800051e-02 + Y_bary = 3.026580919478138e00 + Z_bary = -6.060670045129734e-02 + VX_bary = -9.914826873812788e-03 + VY_bary = -1.478135218486216e-03 + VZ_bary = 3.840106764287660e-04 + + # barycentric cartesian (equatorial) - these are the reference values for comparison + x_bary_eq = -7.195156074800051e-02 + y_bary_eq = 2.800941663957977e00 + z_bary_eq = 1.148299189842545e00 + vx_bary_eq = -9.914826873812788e-03 + vy_bary_eq = -1.508913222991139e-03 + vz_bary_eq = -2.356455160257992e-04 + vec_bary = np.array([x_bary_eq, y_bary_eq, z_bary_eq, vx_bary_eq, vy_bary_eq, vz_bary_eq]) + # let's not import pandas - we can use simple dictionaries here + + # COM - note Tp needs to be in MJD for input + COM_elements = { + "q": q_helio, + "e": e_helio, + "inc": inc_helio, + "node": lan_helio, + "argPeri": aop_helio, + "t_p_MJD_TDB": Tp_helio - 2400000.5, + "FORMAT": "COM", + } + KEP_elements = { + "a": a_helio, + "e": e_helio, + "inc": inc_helio, + "node": lan_helio, + "argPeri": aop_helio, + "ma": M_helio, + "FORMAT": "KEP", + } + CART_elements = { + "x": X_helio, + "y": Y_helio, + "z": Z_helio, + "xdot": VX_helio, + "ydot": VY_helio, + "zdot": VZ_helio, + "FORMAT": "CART", + } + + BCOM_elements = { + "q": q_bary, + "e": e_bary, + "inc": inc_bary, + "node": lan_bary, + "argPeri": aop_bary, + "t_p_MJD_TDB": Tp_bary - 2400000.5, + "FORMAT": "BCOM", + } + BKEP_elements = { + "a": a_bary, + "e": e_bary, + "inc": inc_bary, + "node": lan_bary, + "argPeri": aop_bary, + "ma": M_bary, + "FORMAT": "BKEP", + } + BCART_elements = { + "x": X_bary, + "y": Y_bary, + "z": Z_bary, + "xdot": VX_bary, + "ydot": VY_bary, + "zdot": VZ_bary, + "FORMAT": "BCART", + } + + orbit_types = { + "COM": COM_elements, + "KEP": KEP_elements, + "CART": CART_elements, + "BCOM": BCOM_elements, + "BKEP": BKEP_elements, + "BCART": BCART_elements, + } + for i in orbit_types: + converted = np.array(parse_orbit_row(orbit_types[i], epochJD_TDB, None, sun_dict, gm_sun, gm_total)) + for j in range(6): + assert np.isclose(converted[j], vec_bary[j]) From 77c0d260dee6a88593fb4234bfe78137d90262c4 Mon Sep 17 00:00:00 2001 From: Pedro Bernardinelli Date: Wed, 13 Dec 2023 16:26:14 -0800 Subject: [PATCH 2/2] New golden using the changed obliquity --- demo/goldens/sorcha_ephemeris.csv | 822 +++++++++++++++--------------- 1 file changed, 411 insertions(+), 411 deletions(-) diff --git a/demo/goldens/sorcha_ephemeris.csv b/demo/goldens/sorcha_ephemeris.csv index 674ed973..e267cdc1 100644 --- a/demo/goldens/sorcha_ephemeris.csv +++ b/demo/goldens/sorcha_ephemeris.csv @@ -1,412 +1,412 @@ ObjID,FieldID,FieldMJD_TAI,JD_TDB,AstRange(km),AstRangeRate(km/s),AstRA(deg),AstRARate(deg/day),AstDec(deg),AstDecRate(deg/day),Ast-Sun(J2000x)(km),Ast-Sun(J2000y)(km),Ast-Sun(J2000z)(km),Ast-Sun(J2000vx)(km/s),Ast-Sun(J2000vy)(km/s),Ast-Sun(J2000vz)(km/s),Obs-Sun(J2000x)(km),Obs-Sun(J2000y)(km),Obs-Sun(J2000z)(km),Obs-Sun(J2000vx)(km/s),Obs-Sun(J2000vy)(km/s),Obs-Sun(J2000vz)(km/s),Sun-Ast-Obs(deg) -1998 BW1,48293,60292.27976446247,2460292.780136993,227295902.9812936,-10.476239856515503,118.6894826058022,-0.1111400901935596,17.984101401796785,0.0183420592413471,-82446301.90443467,323350394.5717701,128130603.42261712,-20.95874665458217,-2.8151299664004443,-0.7605894435640461,21338756.185895886,133700469.71007615,57952293.17491885,-30.344258216466265,3.704017746886937,1.672849902406322,13.887099885274251 -1998 BW1,48294,60292.28021348675,2460292.780585993,227295496.60371903,-10.47500419614527,118.68943013918172,-0.1111459802998277,17.98410963584805,0.0183352352151303,-82447114.99775726,323350285.358223,128130573.91530114,-20.95873735463957,-2.815166422261467,-0.7606038896054803,21337579.03076561,133700613.37759984,57952358.06893497,-30.343861070245666,3.702747888336201,1.672754872550221,13.886919215791613 -1998 BW1,48339,60292.30168842488,2460292.802060993,227276116.3170424,-10.415662902538058,118.68691811022242,-0.1113459439277739,17.98449986698784,0.0180072726473784,-82486003.61873963,323345060.1855174,128129161.96992992,-20.95829245232997,-2.8169100094864743,-0.7612948073010688,21281297.58217547,133707428.22204792,57955457.543527775,-30.32145521525885,3.6435931245550752,1.668201661549354,13.878276666350883 -1998 BW1,48340,60292.30213726795,2460292.802509993,227275712.28953525,-10.414420657352904,118.686865547114,-0.111348411846958,17.984507950710697,0.0180004073282168,-82486816.69427349,323344950.90293634,128129132.43525556,-20.95828314821156,-2.816946463571116,-0.7613092527145157,21280121.31439125,133707569.5468282,57955522.25721543,-30.3209170683812,3.642392675330912,1.6681062977428869,13.878095950859256 -2000 QR19,51129,60296.34362463712,2460296.843996994,222125215.17732763,-13.128753492237443,139.27094893553175,-0.0436541617634267,18.868436416356293,0.0142119093551337,-148513591.87904403,271852332.5498136,130223944.54065844,-19.61242978593135,-5.172378572787428,-2.823819366012284,10768403.263158385,134707629.59399176,58389498.12215452,-30.4617241934915,1.583274565951292,0.8182758322007858,19.653247056909684 -1999 JO12,55172,60302.32214138439,2460302.822513996,390583401.60707617,-20.64782894153456,160.6004175538052,0.0399652972132769,15.78523556410518,0.058067606125873,-359371629.80562973,259775577.4531188,164738454.7858479,-11.649606382132632,-11.292122554349524,-1.645550729381678,-4856928.839620175,134934147.65409476,58487159.190590926,-30.519288036189856,-1.305206820327402,-0.4376701606128958,16.299405992900272 -1999 JO12,55194,60302.33205759109,2460302.832429996,390565722.5173687,-20.62346470605731,160.60082850134444,0.0397976438342128,15.78581108505088,0.058011319322596,-359381611.0385422,259765902.22670355,164737044.79958683,-11.649220329142643,-11.292401720301154,-1.645727751369275,-4883067.859773326,134933020.24649626,58486783.31209482,-30.5000955011418,-1.326442534816629,-0.4397900059065945,16.29792163339781 -1999 LZ3,55213,60302.34057754053,2460302.8409499964,315636224.34168905,-24.19053012600169,163.31917683947557,0.0982607389962239,7.469599713103697,-0.0051327512556976,-304693548.6863152,224763399.12028968,99519208.46555646,-9.345569923143405,-14.216472690734816,-3.9105127790054497,-4905513.5160567565,134932037.4002746,58486458.89937735,-30.482811043651445,-1.3437175400811925,-0.4416132635869688,20.663446549429413 -1999 LZ3,55217,60302.3423690182,2460302.842741996,315632479.35214394,-24.18604903418605,163.3193543997517,0.0982277026304003,7.469590511810434,-0.0051365567200155,-304694995.75799125,224761197.81758592,99518602.95411304,-9.3454655636594,-14.216549690383056,-3.910546872433949,-4910232.84436269,134931829.08146113,58486390.49523588,-30.479087149536348,-1.3472328420435262,-0.441996953139989,20.663222292683688 -1999 LZ3,55238,60302.35182548247,2460302.8521979963,315612729.4081748,-24.162146318684776,163.320290402585,0.0980660337381034,7.469541843815776,-0.005157149600445,-304702631.37878007,224749581.8155796,99515407.7120316,-9.344914868860558,-14.21695599145014,-3.910726774004499,-4935126.041081077,134930721.0220647,58486028.55702184,-30.458956359296163,-1.3650819230687852,-0.4440227228871499,20.662038104070263 -1999 LZ3,55242,60302.35361811831,2460302.8539909963,315608986.7327649,-24.15756945732171,163.3204677141909,0.0980377994954103,7.469532593470972,-0.0051611430105343,-304704079.1565388,224747379.209506,99514801.82951276,-9.34481044655707,-14.217033030412672,-3.910760885634649,-4939844.294088073,134930509.29789194,58485959.7413884,-30.45505179382645,-1.3683311122202664,-0.4444070435995354,20.661813415872697 -1998 BW1,58570,60311.1993120951,2460311.6996849994,216330816.14451623,-2.7497494292988027,115.55325896159256,-0.209121550719079,18.58738474656576,0.0435750412574504,-116346524.24948116,317511583.996294,126396379.39698082,-20.493244106783145,-4.3165267332730535,-1.3568868633155664,-27899649.48508817,132521584.32418863,57440796.74061595,-30.12419686212092,-5.359559697909525,-2.285331867006836,5.459579995740383 -1998 BW1,58620,60311.22306453634,2460311.723437,216325241.9855062,-2.6825396429970625,115.54801440758771,-0.2094177147788597,18.588414856822368,0.0431620417101486,-116388579.6173621,317502723.7708908,126393594.05448537,-20.49257019226757,-4.318364860863032,-1.3576186001528678,-27961451.45296694,132510514.2509127,57436101.77408147,-30.10512443561964,-5.428658929066804,-2.2902768746385243,5.447960150039668 -1998 BW1,59863,60313.16431007392,2460313.664683,215956497.30596432,-1.906458406079114,115.13273987045648,-0.2139080390006442,18.67316678274529,0.0455743820483295,-119821033.46229991,316765851.66671205,126160880.91514102,-20.436761924338544,-4.468171157457343,-1.417269181743317,-32928807.941490203,131546404.46018884,57018229.46748777,-29.922476159645544,-6.220121392822414,-2.690397778249068,4.514524716072286 -1998 BW1,59913,60313.188383797686,2460313.688756,215952599.90639225,-1.8407659663966576,115.12729720030326,-0.2144350367292368,18.674259067497896,0.0451695827815596,-119863539.56638478,316756556.30079013,126157932.34104373,-20.436060846365173,-4.470023594009162,-1.4180069732582763,-32991036.463786475,131533392.05711208,57012628.533924274,-29.913776878158068,-6.292213685660958,-2.69535915225899,4.5027467722572725 -1998 BW1,60052,60313.25232715747,2460313.7527,215942931.70537412,-1.6585636132976298,115.1128016718036,-0.2148260549099259,18.677111315013004,0.04403645521213,-119976439.4434083,316731846.75029856,126150092.7314902,-20.43419753832571,-4.474943502285649,-1.4199665038906486,-33156147.672515035,131498120.42842253,56997700.70315053,-29.84747054542225,-6.472384212588348,-2.708636807687846,4.471458163628447 -1998 BW1,60102,60313.27612119792,2460313.776494,215939591.2256005,-1.591586531317052,115.10740845622972,-0.2145915449961848,18.67815415680064,0.0436217817580597,-120018447.61399668,316722645.2226847,126147172.79677534,-20.43350379300457,-4.476773998705284,-1.420695572931033,-33217469.008058365,131484752.67228732,56992127.17305885,-29.808191493816445,-6.53161216962165,-2.7136110567352194,4.459827343677827 -1999 LZ3,60213,60313.32734769782,2460313.82772,293569970.3613135,-22.395606341503548,164.12705884636634,0.0335260397026998,7.580669384923133,0.0265631452090461,-313257551.9497098,211046698.63233072,95708420.08281653,-8.692075688076008,-14.67739686858229,-4.116995984683969,-33349172.551802862,131455597.79009569,56980093.14372629,-29.7019694077617,-6.637577043258409,-2.724369933126735,18.95590822359677 -1999 LZ3,60235,60313.33721928334,2460313.837592,293550879.62200195,-22.369410273085933,164.12739195470414,0.0333738742195242,7.580931503110564,0.0265400940969971,-313264966.0731569,211034178.573813,95704908.18828867,-8.691476240849013,-14.677800788044584,-4.117179160937567,-33374496.7236766,131449929.20176832,56977768.53058952,-29.67874986132797,-6.6540620764265,-2.726449655931348,18.95394156531363 -1999 LZ3,62206,60316.287777232086,2460316.788150001,287944967.43065554,-21.84775469129927,164.21920144853812,0.0151225654612174,7.6723082014921715,0.0359875823606131,-315457908.6439355,207276801.06287187,94648283.7823702,-8.511329678583236,-14.797680659595592,-4.171730525119978,-40846393.103480704,129668964.68743896,56205553.2037565,-29.377496393638268,-7.987877559845565,-3.329769959973316,18.353301070388795 -1999 LZ3,62207,60316.288225577206,2460316.788598001,287944121.796598,-21.846638444236383,164.21920828209426,0.0151112786431577,7.672324323733148,0.0359866822339722,-315458238.11723894,207276228.24377197,94648122.29436693,-8.511302177228183,-14.797698733227207,-4.171738777985362,-40847530.20670277,129668655.4804138,56205424.31583887,-29.376576628973837,-7.988835361490947,-3.3298630711284587,18.35320237291244 -1999 LZ3,62252,60316.309741698096,2460316.810114001,287903560.5239967,-21.79157886928964,164.21953090356894,0.0146288900989252,7.673098123602404,0.0359401582778528,-315474060.40074265,207248716.77192432,94640366.171908,-8.509981323011171,-14.79856670514269,-4.17213512561244,-40902098.19237592,129653763.44901538,56199229.99908618,-29.330049947164326,-8.03188612057365,-3.3343402642447777,18.348457270783847 -1999 LZ3,62253,60316.31018889152,2460316.810561001,287902718.9485471,-21.790408276741847,164.2195374997845,0.0146201316125555,7.673114188620406,0.0359391310467574,-315474389.0862995,207248145.19763088,94640205.02885896,-8.509953880856443,-14.798584736501205,-4.172143359601629,-40903230.92259573,129653453.23515548,56199101.22242532,-29.329037391928136,-8.03271700883655,-3.334433383680044,18.34835859555637 -1999 LZ3,63727,60318.354045602304,2460318.854418002,284116739.16714966,-21.19702506000034,164.24935126505767,0.000975610278534,7.752664468004836,0.0421678178366512,-316966155.49610263,204627431.26761863,93900077.83896102,-8.384008591650321,-14.880621569832885,-4.209696325478458,-46016809.57879723,128208500.71813951,55573579.49078873,-28.898032057979968,-9.03785994654624,-3.748636593651448,17.894193401276 -1999 LZ3,63751,60318.36616278587,2460318.866535002,284094565.5087877,-21.1637232146034,164.24936281027493,0.0009193961838473,7.753175220685624,0.0421357112316283,-316974933.0154985,204611851.25940216,93895670.24292342,-8.383259129744745,-14.881105474531282,-4.209918382617885,-46047046.53200965,128199032.09371036,55569653.695831686,-28.866133960220555,-9.050488069626352,-3.751147749165944,17.891332040786462 -2000 QR19,65578,60321.2472551315,2460321.747628003,202207765.3049119,-4.629434818794795,135.7585968941451,-0.2291279043553558,19.82216459013104,0.0558850062023718,-189428760.15843207,258600189.87891212,123133014.7874608,-18.38105914482933,-7.108153884003333,-3.7484278287671615,-53148956.67677436,125882129.86547624,54563983.44767074,-28.585649122209595,-10.234762698130556,-4.326157897124858,9.01368186565493 -2000 QR19,65581,60321.248594129625,2460321.7489670026,202207229.95669323,-4.625671865975391,135.75827075701596,-0.2291443970840198,19.8222394020131,0.0558579282469499,-189430886.68401647,258599367.52122045,123132581.12403268,-18.380987307295424,-7.108251948210677,-3.748474522434005,-53152263.59936612,125880945.6226957,54563482.940696426,-28.583241947323017,-10.237999799206497,-4.326427643007789,9.012991051645727 -2000 QR19,65628,60321.271009641234,2460321.7713820026,202198333.015571,-4.56241776995097,135.75280852857875,-0.2293164066103837,19.82348635694699,0.0554024223768669,-189466483.7140808,258585599.4815748,123125320.7500853,-18.379784656755287,-7.109893456477389,-3.749256130826842,-53207578.36768567,125861067.53048384,54555099.7613666,-28.53978836334983,-10.289342018332514,-4.330950238870571,9.00142543864285 -2000 QR19,65631,60321.27234969544,2460321.7727220026,202197805.0275199,-4.55863332291516,135.7524818854687,-0.2293204542387729,19.82356057793063,0.0553751698782239,-189468611.680156,258584776.3083539,123124886.66690454,-18.379712755699742,-7.109991582321698,-3.7493028535587487,-53210882.42954152,125859876.10418946,54554598.32561346,-28.53701112340548,-10.292231410971665,-4.331221004521075,9.000734003234216 -1998 BW1,66095,60322.1605678669,2460322.6609400027,216251463.47896785,2.441856658178894,113.11646639482696,-0.2230844043828511,19.093329507111253,0.0488754529931278,-135600300.50999025,313026197.45628947,124952990.16604188,-20.15973171330423,-5.151158599871745,-1.689593856527719,-55370300.99454505,125079288.89473815,54215431.56593978,-28.490599825499007,-10.457012825353443,-4.505943834202165,1.0634181382801278 -1998 BW1,66145,60322.18423623309,2460322.684609003,216256525.5461316,2.5091051152641906,113.11087552446732,-0.2233123783244988,19.094481171115003,0.0484367671383026,-135641526.0686674,313015661.6040756,124949534.2492878,-20.158963839803956,-5.152930413310675,-1.6903011288414462,-55428547.13172931,125057833.2852523,54206212.12614504,-28.47233939010021,-10.526116013783692,-4.510619284124673,1.064756530271702 -2000 QR19,66294,60322.25536588568,2460322.7557380027,201827652.3639874,-4.158971319128019,135.52060102618265,-0.2343561732923732,19.87842589265708,0.0562154937935539,-191027426.6244514,257977845.6056304,122804990.98371422,-18.326817041102533,-7.18179977510482,-3.7834901020153087,-55603241.02410019,124992549.88807522,54178448.47897656,-28.3682624695914,-10.712919878916717,-4.524779095141698,8.50117194700653 -1999 LZ3,67162,60323.33260478329,2460323.8329770034,275269060.3085175,-19.920670503227942,164.20716753634244,-0.0321268165428817,8.002548492493746,0.0582605960288218,-320506133.161764,198183716.8022686,92069622.01647843,-8.073305048774998,-15.076983297631502,-4.300352273882115,-58207332.8243262,123996076.78018849,53747448.63566104,-27.975873956011892,-11.305488168469324,-4.735453401469264,16.658285361473972 -1999 LZ3,67184,60323.34382401689,2460323.844197003,275249764.4260652,-19.889349747773142,164.20680304697143,-0.0322057734902108,8.003201986313277,0.0582267115291892,-320513959.6647144,198169099.8714538,92065452.84518264,-8.072598566433822,-15.077420207581197,-4.300555248406681,-58234438.512635045,123985110.72519612,53742856.96248879,-27.94618078738845,-11.318420827909703,-4.737695912361136,16.65521370927755 -2000 QR19,70503,60328.24883619729,2460328.749209005,200383916.45501748,-1.3942562330652497,134.00566359784804,-0.2583056575117546,20.219467572323573,0.0568683531195677,-200433123.40039623,254146867.6418316,120792481.66031158,-17.998004076193006,-7.61198402053233,-3.988112850165273,-69799398.17901991,118898442.2130642,51536382.812076494,-26.98034463751089,-13.362743452708589,-5.66636108996025,5.39160833067421 -2000 QR19,70553,60328.27263791997,2460328.773010005,200381118.79917288,-1.3268752567892872,133.99911275892978,-0.2582003422260511,20.220814964694476,0.0563546872244911,-200470133.41530508,254131212.50818655,120784279.62007512,-17.99667723504375,-7.613666173607334,-3.9889123538837183,-69854827.48779972,118870912.19778468,51524725.84868327,-26.927606689426,-13.410965899548671,-5.670858398511713,5.378911530037395 -1999 LZ3,70604,60328.29552924374,2460328.795902005,267046961.87254852,-18.488941117502723,163.99965156207185,-0.0652632550126678,8.331001017535534,0.0742707802762116,-323900766.6036787,191677263.08337563,90206362.22709572,-7.75806802300927,-15.267729474051524,-4.389533421323127,-69908032.46601759,118844346.9177101,51513505.34835264,-26.87199112948746,-13.450366256782624,-5.675194473534216,15.24056817381454 -1999 LZ3,70654,60328.31927890933,2460328.8196510053,267009092.79253528,-18.42219802096831,163.9980813604434,-0.0655464840857569,8.332763890496908,0.0741874771870603,-323916684.90686315,191645932.16712263,90197354.2936745,-7.756546342429356,-15.26863004034112,-4.389957249340688,-69963108.81122795,118816712.67364134,51501855.71694744,-26.81034541529425,-13.483340370782647,-5.679701198325089,15.233173074859677 -1998 BW1,71041,60329.1652519911,2460329.6656240053,218801430.24476025,5.845762841479508,111.5610240769859,-0.2115573025959329,19.4303262261411,0.0478144688664776,-147730384.9824249,309751264.8759344,123867558.11811247,-19.92385864118816,-5.669544446685251,-1.89670650067182,-71902100.9123795,117849585.3458475,51081003.00195795,-26.852271279533383,-13.578940152790535,-5.834309973666134,3.7311688795073055 -1998 BW1,71048,60329.16839823954,2460329.668771005,218803020.92760372,5.854753669611004,111.56031809221436,-0.2115601896815774,19.430476602787703,0.0477537734215506,-147735802.17490128,309749723.3211227,123867042.39967726,-19.923748841667045,-5.669774609268311,-1.896798541369452,-71909401.62536854,117845892.0077213,51079416.56956258,-26.84900219773817,-13.587857757317868,-5.834890058223444,3.732666173583255 -1998 BW1,71091,60329.18892285564,2460329.689295005,218813455.0200124,5.91345596192045,111.5557142586532,-0.2114910885946043,19.43145263413234,0.0473575853801958,-147771131.10433838,309739668.1264573,123863678.39091948,-19.9230326719023,-5.6712756147278425,-1.897398786682698,-71956991.04876871,117821746.28539422,51069066.35378391,-26.82404979826093,-13.644654376700592,-5.838681238800215,3.742432513922856 -2000 QR19,71202,60329.24121958907,2460329.741592005,200282855.2596894,-0.939932625178759,133.74149142332186,-0.2611069135362972,20.27596019707071,0.0567240015816926,-201973936.73059627,253491197.26283205,120449105.3342437,-17.942543462265345,-7.681945565622107,-4.021360317398447,-72078004.77700415,117759790.88813052,51042662.57546885,-26.734160125952087,-13.774379078559674,-5.848399364351639,4.87215548153396 -2000 QR19,71252,60329.26556171201,2460329.765934005,200280951.28832892,-0.8708275151691989,133.73471618813286,-0.2610278356967923,20.27733449371765,0.0561929704435801,-202011671.249031,253475039.1395032,120440646.93431713,-17.941179538894254,-7.68365711215094,-4.022173576816916,-72134176.08078085,117730766.87748584,51030357.74147158,-26.681193603361493,-13.824958255390577,-5.85294705909023,4.859181265337996 -1999 LZ3,71294,60329.28484484582,2460329.7852170053,265486504.4678072,-18.18948968274129,163.9384962139992,-0.0717924175018572,8.405826087673104,0.0774330879121171,-324561229.6048466,190370546.0229804,89830382.07586692,-7.69457308389162,-15.305144975281692,-4.407164894278756,-72178590.44222374,117707704.17878574,51020603.4244765,-26.635188809666428,-13.859673175834804,-5.856558346651112,14.935874716146609 -1999 LZ3,71344,60329.30917942818,2460329.809552005,265448331.9825266,-18.121323512618737,163.93672557734172,-0.0721367590110915,8.40770936791188,0.0773457897993518,-324577407.1169101,190338363.36750385,89821114.80077276,-7.693008506737845,-15.30606274193278,-4.4075979695468845,-72234527.46392441,117678523.84078012,51008284.95424932,-26.57303762950048,-13.896072574684949,-5.8611244590953495,14.92811680636956 -1999 LZ3,72090,60330.326418787605,2460330.8267910057,263873175.57553983,-17.73571349975412,163.866615550448,-0.07892996121639,8.487918944403607,0.0803772135758966,-325250704.0623367,188991358.7498164,89432915.46435352,-7.627489303136677,-15.3443158052311,-4.425674354384271,-74545915.24022947,116470865.50396104,50485005.25905341,-26.25500616803997,-14.336798181335377,-6.045640979652766,14.606833707704254 -1999 LZ3,72112,60330.33773078708,2460330.8381030057,263855857.2662291,-17.703665868100927,163.8657125862299,-0.0789620017358802,8.488827928506842,0.0803343341152384,-325258158.92428994,188976360.7841079,89428589.64739993,-7.626759419534105,-15.344739970212476,-4.425875074081016,-74571560.5667644,116456848.08625606,50479095.48257877,-26.22387028888355,-14.34720862552873,-6.047745065057198,14.603140102793123 -1998 BW1,76233,60337.11287054269,2460337.613243008,224088413.59722984,9.396197663398471,109.96756026106895,-0.1813697338053715,19.796841206844523,0.0449230843456555,-161313599.62662393,305660507.2245308,122486047.8580762,-19.6359848548795,-6.242752509304571,-2.1261650981781086,-89312665.9934464,107490535.58418716,46590428.71876552,-24.568058129451643,-16.708290735848095,-7.22181488118414,7.402479229618523 -1998 BW1,76283,60337.1365879975,2460337.636960008,224107735.42668223,9.462432163366676,109.962986781035,-0.1814740361663051,19.79790125285708,0.0444664038096434,-161353834.50396034,305647713.5714607,122481690.47457165,-19.63509472806054,-6.24443857932587,-2.1268407514005787,-89362992.08045278,107456227.6968322,46575626.0789225,-24.54948757407338,-16.776447804805876,-7.22578732679748,7.413342026889752 -2000 QR19,77063,60338.15619314396,2460338.656566008,201184743.39784968,3.1866417452281794,131.2834666453369,-0.2700974785249712,20.75892118443283,0.0513948512718551,-215598989.89501327,247336484.80323145,117238798.9447492,-17.432087251064328,-8.29426560378319,-4.311963189885718,-91477731.67947324,105969971.16697846,45931554.87108606,-24.203001195760265,-17.219380444105497,-7.394478774035872,1.1133053409394145 -1998 BW1,77077,60338.1624506888,2460338.662823008,224969345.2375844,9.979972775383922,109.77713743805778,-0.1765236914967471,19.84295983261633,0.0433235257130687,-163092414.73071566,305091030.7453264,122291891.44612962,-19.596419941672192,-6.317226833345621,-2.156012998506568,-91490813.66611604,105960657.71982671,45927557.098616846,-24.19450128810217,-17.236235881011996,-7.39552154244657,7.872004259812696 -2000 QR19,77113,60338.179920415,2460338.680293008,201191343.30330592,3.252665186955634,131.27660822405286,-0.2704446553102994,20.76013432815818,0.0508605253216241,-215634724.0915529,247319480.00496057,117229958.687216,-17.430700370766306,-8.295856429625053,-4.312717247518013,-91527313.43360353,105934606.5149802,45916392.03829533,-24.167807697956,-17.281818860491263,-7.398439542005275,1.114310857749682 -1999 LZ3,78883,60340.32387050209,2460340.8242430086,250079955.1125216,-13.975963232796856,162.81574523121515,-0.1430795547737756,9.4408783976024,0.1091284340504233,-331557737.5816528,175577687.41478443,85534028.66288064,-6.971394219099405,-15.708515621616955,-4.600466778597747,-95877484.00660846,102693428.42819262,44513462.8957063,-23.14228969506384,-18.27426125320523,-7.746450186647538,11.051696349822809 -1999 LZ3,78905,60340.3351075902,2460340.8354800087,250066401.69107917,-13.944195762645148,162.81411575016307,-0.1430059185749401,9.4421043413779,0.1090695305995349,-331564505.8974026,175562435.47779733,85529561.8742519,-6.970644400111461,-15.708912744153944,-4.600660238805881,-95899936.65683676,102675683.5845241,44505941.14385899,-23.110010626986643,-18.27966697716089,-7.748310362632877,11.047229315873764 -2000 QR19,79169,60341.108826462274,2460341.609199009,202209703.0673306,4.527687941676421,130.46430859453267,-0.2659925063426909,20.902173703015304,0.0484798088350021,-220023878.9561063,245195467.19631413,116126897.42658988,-17.25839748534549,-8.490646980994057,-4.405010354371649,-97431040.28642891,101476505.23520806,43983845.82554795,-23.237993364110423,-18.2221767452876,-7.870246514713571,2.007037658574203 -2000 QR19,79219,60341.13257017374,2460341.632943009,202219053.7256713,4.589050589525295,130.45753937985086,-0.2666326925850537,20.90331896373183,0.0479815979991917,-220059282.26134613,245178047.4487193,116117860.00549054,-17.25699181568634,-8.492213267554227,-4.405752159734305,-97478691.71903816,101439053.47891778,43967696.287351,-23.21617238802687,-18.28939402720658,-7.8740247510985215,2.017812741210842 -1999 LZ3,79531,60341.27976003631,2460341.780133009,248934515.2064764,-13.68696707293817,162.68215429411669,-0.1490398064576408,9.546659509303552,0.1119320038779207,-332130887.1680758,174278886.06585786,85153384.66034822,-6.907510941593479,-15.742197303274825,-4.616898959769357,-97772283.40648057,101204225.64027542,43867409.95119498,-22.915472615303543,-18.60214278227109,-7.897807069892984,10.675930543318849 -1999 LZ3,79581,60341.304136717066,2460341.804509009,248905764.1534599,-13.61601677651596,162.6784686419012,-0.1491396419935119,9.549386269941545,0.1117931980496533,-332145433.92612326,174245729.22596428,85143660.18848564,-6.905879247497322,-15.743053561893731,-4.617317337240995,-97820474.13009614,101165020.0393583,43850772.29976095,-22.847407019385454,-18.627093201243405,-7.901784433594821,10.666078937081467 -1999 JO12,81613,60344.2069858676,2460344.7073580096,339086201.90088207,-5.875553928993266,157.79654474840822,-0.1638216336923033,19.942821989169826,0.1241105856302507,-398517686.6168058,216920248.67056093,157468667.5967555,-9.967723013582514,-12.351508365380006,-2.361175414130006,-103401498.6676564,96464801.64133872,41812395.778413154,-22.006636988580865,-19.558071111220325,-8.34865352942374,6.043849348249591 -1999 JO12,81614,60344.20743387352,2460344.70780601,339085974.5008518,-5.874331389753386,157.79646667272397,-0.1638288872974552,19.94287758954388,0.1241052845242111,-398518072.446782,216919770.5685216,157468576.2002994,-9.96770453415656,-12.351518427649465,-2.361182717845752,-103402350.46392156,96464044.58497578,41812072.62395812,-22.0056381194868,-19.55899738800912,-8.34872293639159,6.043713730118598 -1999 JO12,81661,60344.23068718395,2460344.73106001,339074236.88343143,-5.809611704056979,157.79240978187582,-0.1641441183199343,19.945760280217748,0.1238234363369136,-398538098.4428921,216894953.5608138,157463831.7669327,-9.966745324098344,-12.352040685232764,-2.361561815696758,-103446508.9727063,96424701.66991916,41795295.20065167,-21.95096602801652,-19.603702329580056,-8.3523316186796,6.036671832785197 -1999 JO12,81663,60344.23158136251,2460344.7319540097,339073788.2426821,-5.807082169047345,157.79225366835294,-0.1641538007653262,19.945870973406947,0.1238123810949746,-398538868.3035724,216893999.45034143,157463649.3520518,-9.96670844677996,-12.35206076197486,-2.361576389698218,-103448204.41497278,96423187.38775969,41794650.04795637,-21.948760497608028,-19.60528330178264,-8.35247057447566,6.03640102979345 -1999 LZ3,81696,60344.246388355656,2460344.7467610096,245589777.9874681,-12.491916215657254,162.23176689489108,-0.1661495788555659,9.889448926631738,0.1193381499855902,-333875942.0407261,170230449.95241937,83963439.74754067,-6.707974897963178,-15.845430915834354,-4.667574413156921,-103476260.20128368,96398089.79829532,41783963.05224145,-21.911239240975085,-19.629898625110467,-8.35477413187633,9.472276755041223 -1999 JO12,81711,60344.25444226055,2460344.75481501,339062382.6303006,-5.741751164809581,157.78825894750292,-0.1643388013647236,19.94869818806881,0.1235262315556209,-398558553.89805216,216869600.80098975,157458984.33092266,-9.965765422495632,-12.352574119891395,-2.361949059777033,-103491500.15466456,96384425.76012725,41778148.81567465,-21.890107797511888,-19.64200712105308,-8.356028613497337,6.0294751771792745 -1999 JO12,81713,60344.255336867165,2460344.7557090097,339061939.23278946,-5.739179241683724,157.7881026482535,-0.1643435709979759,19.94880861545542,0.1235149496610907,-398559323.682868,216868646.64952907,157458801.88617113,-9.965728544200823,-12.352594193788663,-2.3619636329679063,-103493190.88962528,96382908.53059123,41777503.37740202,-21.88773360664237,-19.64329402109581,-8.356167920681353,6.029204316804757 -1999 LZ3,81746,60344.27016229351,2460344.77053501,245564189.73045424,-12.42261777774961,162.22775360056366,-0.1664225624580552,9.892284294761296,0.1191880378029413,-333889719.6365712,170197900.07572234,83953851.39215818,-6.706368091206893,-15.846250225121825,-4.667978529366205,-103521202.7886532,96357733.20730652,41766797.92655637,-21.847611673532104,-19.66293158331502,-8.358479695167818,9.462230432856458 -1999 JO12,81793,60344.29113113689,2460344.7915040096,339044349.1964755,-5.636377392330908,157.7818427110917,-0.1643813677182598,19.953221746372204,0.1230640480002494,-398590142.8727174,216830441.9615862,157451496.02845916,-9.96425193815612,-12.353397847766868,-2.36254710619118,-103560731.67745364,96322088.39343484,41751651.72376257,-21.78888582918676,-19.68505270953986,-8.361753220173807,6.018361147330088 -1999 JO12,81794,60344.29157550452,2460344.7919480097,339044133.00269455,-5.635113810361902,157.7817650650694,-0.1643799680310921,19.953276385596087,0.1230585146049014,-398590525.124296,216829968.05624357,157451405.39550155,-9.964233622008663,-12.35340781518938,-2.3625543432686933,-103561567.50998202,96321333.23552094,41751330.95211198,-21.787622787618584,-19.685447760616537,-8.361822570687112,6.018226694729957 -1999 JO12,81843,60344.31479006917,2460344.81516301,339032896.0379981,-5.569950286005483,157.77770666870833,-0.1642442035016924,19.956129865545776,0.1227739114302554,-398610510.5576803,216805188.9011879,157446666.17246702,-9.963275930898456,-12.353928935277116,-2.362932730780648,-103605201.84265973,96281830.83361904,41734555.37163512,-21.72085399985026,-19.701779715101065,-8.365449808285966,6.011199517224977 -1999 JO12,81844,60344.31523470671,2460344.81560701,339032682.3917011,-5.56872516731657,157.7776290866089,-0.1642404251169104,19.956184375993377,0.122768578866796,-398610892.77173406,216804714.9755745,157446575.52473572,-9.963257614268135,-12.353938901292617,-2.3629399674572453,-103606035.06492136,96281075.0372137,41734234.45817678,-21.719567260116715,-19.702008781766427,-8.36551919396872,6.011065181841291 -1999 LZ3,82430,60345.23336970853,2460345.7337420103,244549292.04314056,-12.085005495757528,162.07060230714853,-0.1715142444026884,10.00808284049685,0.1216437707414111,-334445141.6729506,168877725.98330262,83564680.7794155,-6.641164489321779,-15.87933714555632,-4.684324522832436,-105312529.9692028,94740057.77632225,41065167.30628876,-21.56650253714432,-19.956190608980712,-8.502103280151347,9.060147457141245 -1999 LZ3,82480,60345.25654279181,2460345.75691501,244525163.09936285,-12.017857913876828,162.06656205978146,-0.1718526407236309,10.010899964908262,0.1214938407859163,-334458437.2225877,168845931.14002115,83555301.30184379,-6.639593319529146,-15.8801305672819,-4.684717131007251,-105355649.43894295,94700065.66961752,41048141.29112256,-21.506049990925508,-19.99176682478846,-8.505653945715402,9.050223699901103 -1999 LZ3,84874,60348.31459678,2460348.814969011,241541608.32471696,-10.474769606379928,161.5321723253988,-0.1874159938307323,10.39174743961016,0.127087452522482,-336185306.05774,164636252.5864678,82310656.89271066,-6.431227495291706,-15.983760663102252,-4.736258985481168,-110840550.18068604,89377625.58428721,38741991.4030655,-20.161466651476,-21.03993728969208,-8.946252116300672,7.7385089137798735 -1999 LZ3,84884,60348.31872463115,2460348.819097012,241537874.48039016,-10.46313771551215,161.5313858730444,-0.1873659955522818,10.392271997723094,0.1270589593771404,-336187599.8439062,164630551.60696018,82308967.59088397,-6.430944854604648,-15.9838991016104,-4.736328196910778,-110847738.7956654,89370121.27483584,38738800.5325894,-20.14936604473512,-21.04113576303748,-8.946853093659136,7.736676679272239 -1999 LZ3,84916,60348.33355811639,2460348.833931011,241524490.74306816,-10.422138119039865,161.528561718871,-0.1871432988987166,10.394156046567993,0.1269594974608748,-336195841.7489353,164610064.68863052,82302896.86889662,-6.429929152758745,-15.984396548969396,-4.736576900529954,-110873535.55914268,89343152.04707335,38727332.34679347,-20.105988702322957,-21.04319887440813,-8.94901212552653,7.730094728972807 -1999 LZ3,84926,60348.338027378304,2460348.838400011,241520468.8684144,-10.41006236878095,161.52771160081517,-0.1870632779442387,10.39472336365529,0.1269305457036377,-336198324.51042,164603892.52461678,82301067.89625315,-6.429623145626864,-15.984546403662128,-4.736651824303804,-110881296.40383533,89335026.81599393,38723876.814535,-20.092986911944944,-21.04313479648761,-8.949662312967705,7.728112572572938 -1999 JO12,85474,60349.23183736454,2460349.732210011,337140030.49746186,-3.243407033390021,156.90933382951718,-0.1780217636892038,20.55969626654737,0.1218357759162048,-402800133.6134662,211533540.31500116,156425841.23383915,-9.759878349961388,-12.462682125603465,-2.4426141253173004,-112423126.0441446,87733157.06222865,38027958.03746464,-19.988878977404102,-21.28172952295328,-9.072654946659435,4.62399565884571 -1999 LZ3,85483,60349.23586445162,2460349.7362370114,240714587.3078317,-10.234869090370497,161.3624700890728,-0.1921964597515086,10.510042616627056,0.1294355664187751,-336694720.8039904,163362713.10411197,81933035.06255205,-6.368057474316063,-16.014559202766733,-4.751680733044559,-112430078.98739237,87725751.38361996,38024801.26357574,-19.97826071432994,-21.287822294089167,-9.07322706813272,7.335035213652658 -1999 JO12,85524,60349.25559645247,2460349.755969011,337133442.9782072,-3.1747698600639627,156.9048151624775,-0.1781006466232397,20.56258711659455,0.121511788370691,-402820167.6759287,211507956.3948691,156420826.6436139,-9.758892901770205,-12.463199787212313,-2.442996902099538,-112464093.45027772,87689435.57264547,38009330.42806511,-19.92461468805481,-21.31430033270311,-9.076033590765087,4.617682834439045 -1999 LZ3,85533,60349.25961871862,2460349.759991011,240693653.6234791,-10.16478011827006,161.3578237995868,-0.1924081973269206,10.513115081664608,0.129254292724877,-336707789.0286849,163329843.76308626,81923282.2320987,-6.366426265386969,-16.015350717672572,-4.75207771425425,-112471015.32203913,87682028.01429968,38006176.399729416,-19.91339101632024,-21.31899134732973,-9.076606199716188,7.3243769109521555 -2000 QR19,86917,60351.185213986646,2460351.6855860115,208404184.02772364,9.515004332881563,127.8290200621798,-0.2340327157221234,21.294131493251243,0.0297762082284896,-234785459.01423815,237519724.58554807,112157629.87213384,-16.649709740722304,-9.136816001698357,-4.71059646769019,-115695859.9329945,84150802.28088892,36474441.63301859,-19.273130257574213,-21.821837504914377,-9.33382577883768,6.984402546628258 -2000 QR19,86967,60351.20899265591,2460351.709365012,208423800.2932633,9.58060539809049,127.82305227450782,-0.2336007992576513,21.29483298367649,0.0292275430762899,-234819663.3435621,237500952.0229612,112147951.51539402,-16.648245623854624,-9.13829701993369,-4.71129580470696,-115735399.7917882,84105921.30964658,36455261.93787248,-19.216786892939357,-21.86728933896997,-9.337037944900771,6.99623078001569 -1999 LZ3,86996,60351.22198166559,2460351.722354012,239048600.10426337,-9.319187632962205,160.98148089491607,-0.2011222346569311,10.769928647195671,0.1327047904532115,-337775791.53768593,160608864.82254532,81114776.28529717,-6.231247523384134,-16.08028638174169,-4.784758817077472,-115756947.4180332,84081368.32892,36444782.46394608,-19.18374274417165,-21.88905336401065,-9.338797162408138,6.451864634114254 -1999 LZ3,87046,60351.24577148336,2460351.746144012,239029516.76373565,-9.249083427906925,160.97660685950208,-0.2013819841359529,10.77308339703787,0.1325109189279806,-337788598.299372,160575810.67370212,81104940.7134292,-6.229603627752282,-16.08106809684905,-4.785153622822293,-115796313.73789184,84036340.24964426,36425583.66026005,-19.11981186712897,-21.92282142647166,-9.342025979172488,6.441003335965746 -1992 SF17,89915,60355.32327832208,2460355.823651013,373127460.4693308,-21.66676529160043,209.26882864877348,0.0261770567545455,-12.554294540530456,-0.0043593715322368,-439885515.23405993,-101830150.78101829,-48060811.45727989,2.315186472198693,-14.453005095277218,-5.457044269579553,-122175595.84143037,76233129.8674419,33043916.891495097,-17.160000942711648,-23.107361675519392,-9.846205897518786,17.271212160476857 -1992 SF17,89964,60355.34697428703,2460355.847347013,373083163.7780683,-21.606289231275003,209.26945982388068,0.0258410444641288,-12.55439525884778,-0.0041403834294931,-439880773.6227551,-101859742.75049582,-48071984.516105615,2.3164630955077072,-14.452709666635426,-5.456904824216855,-122210657.60089824,76185828.49809906,33023755.446449853,-17.091497587724813,-23.098950579433897,-9.849104952241587,17.26781528999276 -1992 SF17,90020,60355.37445360857,2460355.874826013,373031952.8195409,-21.53420236167113,209.27018350371847,0.0255975561277523,-12.554505472303966,-0.0038806922437846,-439875271.7547228,-101894058.22940136,-48084940.96187215,2.317943476443952,-14.452366974046166,-5.456743079937231,-122251145.06241716,76131009.27570753,33000367.862302296,-17.0157026486205,-23.078597799749705,-9.852456350833588,17.263866330461425 -1992 SF17,90046,60355.38811582269,2460355.888488013,373006555.7076869,-21.49817096463825,209.27054130646988,0.025535886352661,-12.554557604401175,-0.0037510465471758,-439872535.0301741,-101911118.8814354,-48091382.49900773,2.318679471065252,-14.4521965544566,-5.456662649241182,-122271209.14343466,76103775.45586321,32988737.074024677,-16.980038528192217,-23.064476753067986,-9.854117085357128,17.261900257811384 -2000 QR19,90489,60356.22702860823,2460356.727401013,213011930.8974116,11.850641520844574,126.68520617598789,-0.2049145344250036,21.42300311100822,0.0190944520380943,-241970018.8375288,233472025.9581034,110073742.72387175,-16.336533270752724,-9.446227149296757,-4.856587752539973,-123505128.45752914,74453510.45143974,32271016.69222613,-16.99547153943446,-23.31964694794268,-9.949705710284851,9.38334416634477 -1999 JO12,90511,60356.23686237687,2460356.737235013,336300730.571002,0.4677063087666804,155.5692428461573,-0.1893226578784442,21.389501641526007,0.1142315286477879,-408619033.50178814,203945132.26950157,154913517.1291379,-9.4682717021488,-12.612056860933452,-2.554533329421657,-123519557.1716514,74433691.57368754,32262562.35190765,-16.968029222158297,-23.331560493129093,-9.950876534304385,3.301293135376471 -2000 QR19,90539,60356.25076120372,2460356.751134013,213036289.7923301,11.907218785905371,126.6799934028659,-0.2039901783297208,21.423450660286765,0.018628045058368,-242003514.55732745,233452655.4723308,110063783.84079409,-16.33504631500455,-9.44766175742242,-4.85726411321334,-123539909.90132236,74405664.40308039,32250611.61266049,-16.928353944468338,-23.34591928256989,-9.952532954179365,9.3944394105894 -1992 SF17,90728,60356.340883438526,2460356.841256013,371241293.8691292,-21.445643114307263,209.2983773254132,0.0204237825599274,-12.557251733951292,-0.0020581195695454,-439679537.7626167,-103100405.64269993,-48540370.96407289,2.369972995431997,-14.440246531799849,-5.451029394434093,-123670689.68101808,74223721.35972284,32173073.954322472,-16.663279236218532,-23.36533204460216,-9.963278723268834,17.12714087760624 -1992 SF17,90729,60356.3413314268,2460356.841704013,371240463.80818427,-21.444481384550148,209.2983866982122,0.0204181939050538,-12.557252655046216,-0.0020539138149794,-439679446.0206088,-103100964.62372172,-48540581.97306463,2.369997098465307,-14.44024088257559,-5.45102673444424,-123671334.64465022,74222816.95807368,32172688.30293947,-16.661998112280546,-23.36510941674632,-9.963331999951906,17.12707401663613 -1992 SF17,90749,60356.3503249034,2460356.850697013,371223810.97897714,-21.42103710168339,209.2985743300968,0.0203148820360199,-12.557270745123116,-0.0019691225288815,-439677604.2240566,-103112185.38054796,-48544817.67710121,2.3704809318021525,-14.440127475882704,-5.450973336451682,-123684271.00285564,74204664.2866246,32164946.426257145,-16.636496412938612,-23.35999739411616,-9.964400839174278,17.125731264943944 -1992 SF17,90750,60356.35079393589,2460356.851166013,371222943.006579,-21.41980866457126,209.2985840900889,0.0203099596868767,-12.557271667600869,-0.001964683497521,-439677508.16096,-103112770.55943383,-48545038.57503835,2.3705061643603687,-14.440121561219486,-5.450970551540597,-123684945.11371116,74203717.70806324,32164542.651596807,-16.635178399432462,-23.359697423644175,-9.964456546913803,17.12566120791382 -1992 SF17,90751,60356.35124402132,2460356.851617013,371222108.39375615,-21.418626900767237,209.29859347327377,0.0203052699347381,-12.55727255271018,-0.0019604134429107,-439677415.78378296,-103113333.27903534,-48545250.99484674,2.3705304284824398,-14.440115873530626,-5.4509678735030285,-123685593.30196908,74202807.47053514,32164154.371603176,-16.633912152483134,-23.359405869570224,-9.964510113267451,17.125593836961922 -1992 SF17,90771,60356.360252079474,2460356.860625013,371205448.0099773,-21.39493946657452,209.2987804618144,0.0202205946817706,-12.557289827197277,-0.0018748811602747,-439675570.4999383,-103124572.65317678,-48549493.71760999,2.371015062244208,-14.440002265052032,-5.45091438177237,-123698529.55476116,74184629.48415776,32156398.664790977,-16.608876693007936,-23.35295193426593,-9.96557929975448,17.1242476839201 -1999 LZ3,92850,60359.22760871111,2460359.727981014,233997453.29808268,-5.336405628781762,159.28718620427597,-0.2278252572316594,11.864931381056568,0.1395924429364759,-341893060.0173323,149396842.1450603,77759636.98756292,-5.671189939152132,-16.335765946831923,-4.915688601431964,-127696262.02499464,68403868.7378351,29648534.95825402,-15.633964769244178,-24.082115932202147,-10.275973682797035,2.8312547630539693 -1999 LZ3,92900,60359.25166454761,2460359.752037014,233986436.24541003,-5.264938179561401,159.28158611018182,-0.227780234837915,11.868286352664136,0.1393381769946497,-341904845.6738128,149362887.8878222,77749419.44821423,-5.669486365500308,-16.336510418100342,-4.916076094712172,-127728684.60958764,68353790.28080902,29627174.24377851,-15.564589597111572,-24.104947101863345,-10.278607604361994,2.820543848500059 -1992 SF17,94616,60362.30684568294,2460362.8072180143,360518764.9666914,-20.321525326114024,209.35486439795756,-0.0126034269892985,-12.529932402171784,0.0106563822837242,-438375322.2077892,-110524457.92754312,-51341059.31279472,2.6896407809237077,-14.362511243055303,-5.414679721267426,-131631110.32599884,61998800.182279766,26873349.72607236,-14.003530344670194,-24.80547259014302,-10.581296475559844,16.162187751529085 -1992 SF17,94617,60362.30729246676,2460362.807665014,360517980.1696757,-20.32037862274329,209.35485862506692,-0.0126108441668642,-12.529927637823135,0.0106605959353085,-438375218.32409793,-110525012.65719278,-51341268.44636575,2.6896646334949,-14.362505231849088,-5.414676928640018,-131631651.12851556,61997842.17657545,26872941.066729933,-14.002210757723091,-24.80535293147557,-10.581341163309943,16.16210548456965 -1992 SF17,94666,60362.33129375543,2460362.8316660146,360475907.6116605,-20.25759141773253,209.35454418236912,-0.0129471508522086,-12.529669026524743,0.0108905419825063,-438369639.0964047,-110554797.67133358,-51352497.39331985,2.690945338830263,-14.36218242844808,-5.41452696767204,-131660614.60554278,61946413.49670684,26850996.197909053,-13.93248567294533,-24.794381892752792,-10.583737212860884,16.157683241010304 -1992 SF17,94667,60362.33174598792,2460362.8321180143,360475116.5351257,-20.256390425524504,209.3545381862904,-0.012952302084102,-12.52966410301139,0.0108949286796357,-438369533.9999248,-110555358.59222664,-51352708.859870605,2.6909694573478617,-14.362176348470795,-5.414524143241792,-131661158.68263713,61945445.21294532,26850582.87271478,-13.93119826783002,-24.794090876198368,-10.583782262243544,16.157599872856313 -1992 SF17,96648,60366.2988831496,2460366.799256016,353709118.3159882,-19.38559789776283,209.27882853163095,-0.0352370100810878,-12.468411837483952,0.0194535762741256,-437410900.3752095,-115469201.77152307,-53204422.36800695,2.902068024946092,-14.3077186933095,-5.389329856368732,-136164558.65548518,53436022.58954245,23161847.43676336,-12.11464824266717,-25.61491935553851,-10.932177981819214,15.39919079682246 -1992 SF17,96698,60366.32184862882,2460366.822221016,353670714.77736783,-19.324614059053435,209.2779958293642,-0.035552825474983,-12.467962527005296,0.0196774025426138,-437405140.5795264,-115497592.31868856,-53215116.290915005,2.9032866114763807,-14.307397095341978,-5.389181663165399,-136188529.55368364,53385208.52163792,23140154.080992498,-12.047810734273227,-25.603047598627462,-10.934183299431083,15.394410955281383 -1999 LZ3,97210,60367.17300861422,2460367.673381015,231691365.0225685,-1.447436359423172,157.4535909874811,-0.2370107050091182,12.971785807265956,0.1377999411078702,-345591617.790677,138099866.96531302,74341591.20621623,-5.101851525576956,-16.573886399004945,-5.041665966493588,-137069288.1097185,51529143.64810258,22333548.416838985,-11.994979729586271,-25.723006826527584,-11.001641697937623,1.8344923078812576 -1999 LZ3,97260,60367.19695433125,2460367.6973270155,231688443.4616459,-1.3766116936359578,157.44776490710024,-0.237137446720103,12.975081893156856,0.1374925648670607,-345602171.44072354,138065575.8018831,74331159.89441574,-5.100115524310564,-16.57458018019982,-5.042039442515581,-137094038.43106854,51475888.9844404,22310784.66157563,-11.929971628009914,-25.755928837045847,-11.00365387169232,1.843364282633754 -1999 LZ3,97305,60367.21724357919,2460367.717616016,231686083.09572253,-1.3164004358377632,157.44282776974734,-0.2370915972694413,12.977868824643684,0.1372310350043737,-345611110.5390513,138036520.42079592,74322321.03542893,-5.098644548919906,-16.575167894221316,-5.042355852058379,-137114900.78831482,51430719.99493764,22291494.092055053,-11.871954794150112,-25.77729501049013,-11.005364447794973,1.8509046476241149 -1999 LZ3,97355,60367.23994659988,2460367.7403190155,231683566.38328293,-1.2498721387640093,157.43730614111172,-0.2368745819322788,12.980981091492188,0.1369424024807652,-345621110.15844405,138004006.79526722,74312429.86722568,-5.096998453769219,-16.575825411031087,-5.042709875891296,-137138122.58319622,51380139.3913408,22269904.757820062,-11.804866829371656,-25.79372591688565,-11.007282362735152,1.859365616491867 -1999 LZ3,98153,60368.22011875329,2460368.720491016,231590024.2416704,-0.8030279794375691,157.2075417180371,-0.2369307812717453,13.115254401339302,0.1362318080710758,-346049748.3305479,136599048.53717616,73884730.75165851,-5.025827455035962,-16.60408801419085,-5.057961803695297,-138112809.00714654,49222612.7729869,21334497.01078875,-11.374057863554045,-25.95961618389094,-11.082780407617392,2.2451477402724405 -1999 LZ3,98203,60368.24427788037,2460368.744650016,231588421.6572536,-0.7328208079410663,157.2016676125353,-0.236636214185758,13.118541848372038,0.1359207399233289,-346060237.1224512,136564389.38760155,73874172.65932772,-5.024070712479228,-16.604781536271922,-5.058336922521321,-138136475.71044946,49168409.13456624,21311361.456026006,-11.302120403166942,-25.974524891975733,-11.084745693435416,2.255238802379541 -2000 QR19,99699,60370.166865357576,2460370.667238016,230339854.88970733,17.04142709569772,124.44166857965698,-0.1073089853216474,21.530575743722043,-0.0061636995446771,-261111167.16556272,221602194.9248592,103992502.70977928,-15.444151062160644,-10.253785591214385,-5.236464287399036,-139928745.45277765,44895547.132792,19458308.18160939,-10.535962240914296,-26.23743742612071,-11.22358115007654,15.108884797260089 -1999 LZ3,99716,60370.17448696637,2460370.674859016,231526482.55953947,0.0678420963262679,156.75016197926448,-0.2359070424718175,13.380006809748018,0.1345108473205056,-346886376.9964599,133790612.18578818,73028100.42821278,-4.883319673526573,-16.659709067155216,-5.088181266247602,-139935676.2089309,44878267.32173976,19450917.778134312,-10.515548613338357,-26.24840181574828,-11.224148021172669,3.0968710824305536 -1999 LZ3,99718,60370.17537774718,2460370.675750016,231526487.88347468,0.0704722624599287,156.7499459196908,-0.2359109604691126,13.38012665350107,0.1344986885260001,-346886752.92354774,133789329.6806828,73027708.7273554,-4.883254522163053,-16.659734201514233,-5.088194984830474,-139936485.62814915,44876246.60930791,19450053.713697005,-10.513131924366688,-26.249631100325782,-11.224214356211256,3.097279247535861 -2000 QR19,99749,60370.19060102974,2460370.690974016,230374862.75490892,17.098573857951706,124.4389401613528,-0.1065180089017162,21.53042396390462,-0.0066196458160924,-261142836.49131456,221581166.4091333,103981763.797924,-15.44260103166526,-10.255101024357396,-5.237081579212681,-139950286.55118468,44841706.03285332,19435289.15673267,-10.470953280454603,-26.26888757421852,-11.225349525359745,15.117518158225742 -1999 LZ3,99766,60370.19822345097,2460370.6985960165,231526693.7183008,0.1381115967711443,156.7444054451156,-0.2359187355547947,13.38319583908135,0.1341858668065267,-346896390.3003012,133756444.49968874,73017664.82399504,-4.881583929326187,-16.660378598076303,-5.088546722653614,-139957174.98061383,44824404.09431378,19427896.618332185,-10.449269993502178,-26.277258497662924,-11.225918945754303,3.107746291534649 -1999 LZ3,99768,60370.19911409484,2460370.699487016,231526704.45208707,0.1407488152495503,156.7441893753973,-0.235915419956993,13.383315393195868,0.1341736682678817,-346896766.0934834,133755161.9440105,73017273.0953,-4.881518773601722,-16.66040372697563,-5.088560439799189,-139957979.29172707,44822381.17330158,19427032.418005407,-10.44671336376282,-26.27818054545705,-11.225985551114968,3.1081545403561663 -1998 BW1,100215,60371.013785925,2460371.514158016,270451928.3820643,20.804114045667,107.53050811833457,0.0407851551523766,20.851509498854213,0.0165087254092869,-216793112.7416487,283999359.8584047,114901484.68170236,-18.194744334181536,-8.494938807439121,-3.0328037247768944,-140664704.54590225,42998427.15682778,18634868.09978938,-10.309325187976704,-26.055915307195608,-11.280695537893614,18.937040178106763 -1998 BW1,100237,60371.024986631535,2460371.5253590164,270472075.9064541,20.83261956426276,107.53099676756084,0.0407573721729253,20.851693340648985,0.0163168214146992,-216810719.527334,283991138.9795886,114898549.70514262,-18.19421759145993,-8.495628778851218,-3.0330828738395383,-140674677.6016411,42973196.61143505,18623950.65816041,-10.300802921427731,-26.085856836465155,-11.281446881472606,18.93956802153918 -1992 SF17,101396,60372.30875567979,2460372.809128016,344115236.24374425,-17.685909074020095,208.9901492780176,-0.0696477042025781,-12.309151492715724,0.0330577136709046,-435821333.4848971,-122876704.95731652,-55992792.77187712,3.2196146006122777,-14.221081576227332,-5.349633420376414,-141742184.58451274,40067940.033123285,17367909.692405634,-9.119268571584952,-26.593758262146228,-11.365403342659931,14.070523507445063 -1992 SF17,101446,60372.33269035583,2460372.833063016,344078731.0796221,-17.619684563277303,208.98844051061928,-0.0698322086120887,-12.308357374465205,0.0332987631036619,-435814673.6781685,-122906115.2923467,-56003856.21289705,3.220873809101634,-14.22072664078014,-5.349471670848973,-141760973.68419677,40012966.90807641,17344404.544873364,-9.052811954753505,-26.570778792771787,-11.367021764620183,14.064670630510026 -1992 SF17,101502,60372.35831577906,2460372.8586880164,344039800.1873401,-17.549010419523988,208.9866079557061,-0.0698840819071579,-12.307500791065864,0.0335559582105107,-435807540.7516207,-122937601.4087156,-56015700.44682874,3.22222187920413,-14.220346557555995,-5.349298468584803,-141780942.4039812,39954174.521430336,17319236.052659366,-8.986774227570661,-26.53743880009623,-11.368740702973252,14.058399418017984 -1992 SF17,101524,60372.36986484486,2460372.870237016,344022305.1716033,-17.517662227382925,208.98578200032628,-0.0698587163587097,-12.30711259209132,0.0336702231043182,-435804325.0187357,-122951791.69292451,-56021038.42992334,3.2228294281300407,-14.220175227584129,-5.349220396797087,-141789895.78699186,39927703.290411904,17307891.55742161,-8.959104793662325,-26.519702041483537,-11.369509900777468,14.05557225421314 -1999 LZ3,105269,60377.15718489009,2460377.657557017,232617755.0985344,3.4632340982923813,155.15310362076687,-0.2230069089104146,14.279798827190644,0.1224813064898248,-349677454.9600265,123681639.50540884,69926297.10856743,-4.367679666661525,-16.85034097849334,-5.194021542473571,-145114180.2683803,28956877.55223167,12549419.296806566,-7.013508280539827,-27.17303058003848,-11.625789977854186,6.359501989119166 -1999 LZ3,105319,60377.17969600706,2460377.680069017,232624555.48757976,3.5292060412766832,155.1479237687993,-0.222928972841278,14.282552237067884,0.1221358471407688,-349685948.5263647,123648864.77696814,69916194.33691671,-4.366000998189409,-16.850934810812074,-5.194357277011428,-145127760.59691367,28903998.80635717,12526805.60498784,-6.950022325001232,-27.198741958252214,-11.62692457983097,6.370214325552267 -1992 SF17,106442,60378.30203797946,2460378.802410017,335470870.3490603,-15.72513059411755,208.49543644283384,-0.1031478155416252,-12.070039233355295,0.0464624665394311,-434072655.87775695,-130217638.76386698,-58752450.49384663,3.533555210276149,-14.1297773514319,-5.308235074321721,-145760262.58300218,26293486.16030759,11396936.533953406,-6.06713650878318,-27.29593335147837,-11.67571699234134,12.530967385009504 -1992 SF17,106492,60378.32590107096,2460378.8262740173,335438517.52740735,-15.657706263944968,208.49291756749463,-0.1032658533472292,-12.068927581076576,0.0467030701101379,-434065368.5528775,-130246773.3809281,-58763395.67597253,3.534799764284625,-14.129404090623504,-5.3080666532810445,-145772704.39620954,26237232.88557123,11372861.83197851,-6.00219901678427,-27.268581570340693,-11.676810512770604,12.524283896506676 -1992 SF17,107189,60379.25008294898,2460379.7504550177,334198809.0159884,-15.508587737657454,208.3989977539642,-0.1078920142977625,-12.024930233758148,0.0481523759310759,-433781179.3556056,-131374475.2685621,-59187001.71949705,3.582963940615144,-14.114889894459978,-5.301522478196368,-146251690.36501592,24085639.499039955,10439068.289943043,-5.699539786381621,-27.41481258500527,-11.71220299392181,12.268459793412658 -1992 SF17,107239,60379.273526391735,2460379.773899018,334167460.21033275,-15.444666270717075,208.39640674981044,-0.1082752050879355,-12.023798689375706,0.048380611169369,-433773920.2291258,-131403066.9503636,-59197740.666086815,3.584184883428052,-14.114520214866271,-5.3013559192277935,-146263163.6950151,24030117.586823333,10415343.486509567,-5.629292563435572,-27.405005952250928,-11.71320383043087,12.26177489808007 -1992 SF17,107293,60379.29854018832,2460379.798913018,334134157.2286218,-15.374406934946482,208.3936338553577,-0.108544250867769,-12.022585380268264,0.0486305034241331,-433766172.2474123,-131433572.52972804,-59209198.40474541,3.585487543567936,-14.114125697206015,-5.301178176135247,-146275251.01675835,23970909.28873287,10390027.651058389,-5.556982629602945,-27.38524590881496,-11.71426345521695,12.254632579748073 -1992 SF17,107343,60379.32285192187,2460379.823224018,334101936.6205931,-15.305500763757175,208.3909340809194,-0.1086643170525062,-12.02140014903104,0.0488751663934932,-433758639.32092017,-131463219.94825812,-59220333.76138066,3.586753547023482,-14.113742186719389,-5.301005398716397,-146286852.86501482,23913415.244078062,10365421.115525251,-5.490686740778672,-27.357349846094134,-11.71528192710077,12.247684488089716 -1992 SF17,110116,60383.21469260357,2460383.7150650183,329185276.57487875,-14.082365397290433,207.9422331622945,-0.1282238807316451,-11.815437425949494,0.0563928603601433,-432518506.48459417,-136198831.3991202,-60998217.83570223,3.788834791067712,-14.051326979525705,-5.272969869695529,-147871080.17977166,14782963.6258834,6405688.451306487,-3.7141694672227694,-27.683539215348407,-11.827198656549411,11.114979217861688 -1992 SF17,110166,60383.23884298534,2460383.739215018,329155958.9054677,-14.018823745079434,207.93906293118,-0.1287379146366958,-11.814072876377349,0.0566153445097019,-432510599.17754936,-136228151.30035418,-61009220.53586977,3.790085109053437,-14.050933358894978,-5.2727935726597925,-147878753.1786435,14725200.459780669,6381009.606295611,-3.64059296866646,-27.681797601591864,-11.827855166884582,11.107569571625245 -1992 SF17,110380,60383.343291344616,2460383.843664018,329030775.7940606,-13.723852924132435,207.92526707547265,-0.1294011407727114,-11.808106110991618,0.0576394054719048,-432476369.9715824,-136354950.63968444,-61056803.06224127,3.795492224063156,-14.049230051907434,-5.272030756834328,-147910252.01307213,14475762.970959734,6274257.833666584,-3.352801449921604,-27.573082096764853,-11.830601691424892,11.075422546892623 -1992 SF17,110439,60383.37128533245,2460383.8716580183,328997674.5549376,-13.648602193215355,207.9215695785965,-0.1291438814995329,-11.806488855431736,0.0579011440638478,-432467187.7116668,-136388932.2543153,-61069554.76143913,3.796941272813092,-14.048773291774364,-5.271826219118119,-147918286.6926488,14409134.72394631,6245642.534902776,-3.2926425282900804,-27.520254830000447,-11.831291921423894,11.066800270544578 -1999 LZ3,110757,60384.11003201465,2460384.610405018,235672084.5436272,6.5494598553570444,153.69880198874,-0.1965058749555955,15.072721233207218,0.1053997809290882,-352144483.21100444,113505578.589934,66775365.9566045,-3.844308314959951,-17.027257301454995,-5.295982783032173,-148138417.6343609,12674193.372632183,5490062.691981195,-3.4895856872450666,-27.63754310993788,-11.844199926415744,9.546735801263424 -1999 LZ3,110807,60384.13385294682,2460384.6342250183,235685633.67458004,6.617475408040274,153.6939532693197,-0.1965675156415245,15.075227208742902,0.1050084782412577,-352152392.94644946,113470535.84635156,66764466.45606852,-3.84249843313074,-17.02784076906032,-5.2963260342189535,-148145536.1647957,12617276.869384998,5465686.204068095,-3.4273176218238426,-27.672358107099143,-11.844741632880153,9.557506892744756 -1999 LZ3,110841,60384.15099817706,2460384.651371018,235695473.6332187,6.666838297163414,153.690463287872,-0.1964943022905003,15.07702525030387,0.1047245645304419,-352158084.1880477,113445310.8064798,66756620.39354575,-3.841195582019156,-17.028260661105126,-5.296573085602483,-148150578.391064,12576267.132632434,5448138.941103594,-3.3796445715663617,-27.692595167039663,-11.845137119524406,9.56525730279448 -1999 JO12,110844,60384.152345109,2460384.6527180183,354317114.16760576,14.06203194188739,150.37547357716278,-0.1428131255017336,23.7649148919831,0.0488031373350903,-430036427.0698207,172865915.37862435,148231223.00825995,-8.287230586722242,-13.14320251355223,-2.981657683655227,-148150971.4940674,12573044.163340786,5446760.3925023535,-3.3758136998751183,-27.694005460614516,-11.84516835038791,9.405645331053858 -1999 LZ3,110891,60384.17512363386,2460384.675496018,235709442.32211936,6.735816658056504,153.6855568032825,-0.1962244965535831,15.079546931814734,0.1043277938161614,-352166088.6870198,113409817.27826028,66745580.1013724,-3.839362326557374,-17.02885132608736,-5.296920658288412,-148157550.34327886,12518521.120375248,5423448.352412228,-3.309493746171443,-27.713745398146845,-11.845699211192514,9.576155287684887 -1999 JO12,110894,60384.17647416459,2460384.6768470183,354346498.07823145,14.127091672137452,150.37171143962593,-0.1425580750168374,23.76608756026265,0.0483984355420406,-430053701.9497739,172838516.0013814,148225006.9321233,-8.286198063799949,-13.14361775528804,-2.982013697512923,-148157936.41458547,12515286.139864529,5422065.644461375,-3.305482048235454,-27.71466795663352,-11.84573082941261,9.412492687216815 -1992 SF17,113420,60390.32038221607,2460390.820755019,321539344.3441005,-10.852811348494852,206.9264044697284,-0.1619173333766543,-11.36034577009044,0.0711362892932877,-430079791.8275638,-144789508.83058026,-64219420.33919871,4.1547594249246345,-13.93217600585699,-5.219868730095812,-149015598.7427999,-2034602.177785745,-882969.9066360386,0.2423969237579246,-27.71565305911246,-11.887780380765026,8.840876985240978 -1992 SF17,113470,60390.34474055205,2460390.8451130185,321516575.70186096,-10.785732171909334,206.9223843269023,-0.1616818161371995,-11.358610330090652,0.071356407024609,-430071046.37773263,-144818830.14631993,-64230405.9164516,4.156007009929502,-13.931756104065038,-5.219682480978109,-149015030.63486558,-2092883.416997725,-907988.1166356336,0.2963233176527942,-27.66972156389388,-11.887782690239268,8.832530198295563 -1999 LZ3,116037,60394.10335063107,2460394.603723019,243139698.24550396,10.518635754256575,152.01609578509598,-0.1418033434008336,15.972200589872523,0.0744925136079416,-355132993.780977,98702603.91488272,62141737.945382655,-3.075057440043792,-17.258090582007775,-5.436215522719908,-148710199.60420772,-10979970.142312285,-4763238.366979767,1.6983548402299191,-27.680673501927785,-11.848012122248225,13.720590332942258 -1999 LZ3,116087,60394.12603700732,2460394.626410019,243160378.94585675,10.58193454952605,152.01275110074533,-0.1416394786524249,15.97388614358089,0.0740996914288606,-355139019.43081367,98668776.06025174,62131082.1823849,-3.0732886235126906,-17.258582282391764,-5.436525084526271,-148706809.5746242,-11034254.40447239,-4786462.077985404,1.7612009389432506,-27.70577702120265,-11.847757492675854,13.729544723785386 -2001 SF198,116639,60394.38681638566,2460394.887189019,268755715.6109927,-19.20523407679505,252.76248855213947,0.1195813468746337,-13.838424460143978,0.0605231195443334,-225988429.71576327,-260891328.5703161,-69335623.78221275,13.923847406506177,-12.317134159299773,-4.06044143175229,-148658794.06468272,-11657393.246539949,-5053374.236387955,2.4313278986624924,-27.45319615149533,-11.84460874772257,23.21525866201481 -2001 SF198,116661,60394.39718156925,2460394.897554019,268738529.0902843,-19.178488919731283,252.7637646882531,0.1195163953966549,-13.837796466955924,0.0606525829584107,-225975959.33477008,-260902359.39586404,-69339260.20216371,13.92446289730552,-12.316423564594777,-4.060252592499751,-148656610.83845174,-11681967.161402944,-5063981.43796218,2.444196058681839,-27.42763027062195,-11.844447342708772,23.213692974468056 -1999 LZ3,117062,60395.1615621406,2460395.66193502,244120492.25994337,11.034549304272302,151.8720864252342,-0.1347542286637595,16.049089471480816,0.0702237563490876,-355410359.99770105,97123717.8848668,61644066.43491044,-2.992445801220059,-17.28086669100243,-5.450611265553811,-148512015.83621687,-13479278.429205634,-5845689.312331636,2.382785882118996,-27.688800330762987,-11.82912638235234,14.127354908147788 -1999 LZ3,117112,60395.1853890408,2460395.685762019,244143272.9500681,11.096016899234163,151.8687529702963,-0.1341160345375169,16.050758067030536,0.0698388487443672,-355416518.2607005,97088143.37076177,61632845.60090054,-2.990583180896082,-17.281375782577168,-5.450934379321847,-148507036.22795516,-13536285.522246549,-5870041.032251831,2.455071698312832,-27.692606251209227,-11.828792407466311,14.136569457652298 -1999 LZ3,117162,60395.20910835882,2460395.709481019,244166072.12524307,11.153172695088331,151.86545233344862,-0.1333193763605068,16.052410256356666,0.0694791760342555,-355422644.8008167,97052729.06973894,61621674.96861397,-2.988728893648523,-17.281882402584316,-5.451255983545685,-148501931.09958002,-13593032.777803194,-5894281.690661868,2.5270876104244726,-27.68740292387788,-11.828458601002348,14.145723290508531 -1999 LZ3,120565,60399.09997425072,2460399.6003470197,248055937.1438684,12.21344657719504,151.40305863681064,-0.1097189970391968,16.303395319726384,0.0580825088927442,-356376037.61658084,91229570.49768797,59780394.01842597,-2.683074455059305,-17.362760226775155,-5.503400041473946,-147338647.68968123,-22726838.45696415,-9854758.189580362,4.260697566703364,-27.409138597814223,-11.725268464027266,15.573056332310577 -1999 LZ3,120615,60399.123835000006,2460399.624208019,248081184.31684467,12.278724192231332,151.4003340161146,-0.1094412767467962,16.304776294612626,0.0576699945182901,-356381566.85056835,91193776.56408118,59769048.39993776,-2.6811909930466555,-17.36324246458894,-5.503716033690935,-147329794.6994603,-22783368.72015026,-9878930.216721846,4.328398253944602,-27.4308772287196,-11.72461610573166,15.581662155901896 -1992 SF17,120879,60399.24922813567,2460399.749601019,314630105.1049406,-6.868545597915402,205.35297783687423,-0.1943628017105609,-10.662445914633157,0.0848638763614679,-426698895.6862801,-155477131.11920115,-68219593.63834147,4.608943289829287,-13.773064217218636,-5.149685134936027,-147280869.09556395,-23080607.408058,-10005935.758935835,4.700628106135367,-27.39968801763228,-11.721201282039726,5.668721498051813 -1992 SF17,120945,60399.28118382621,2460399.781556019,314611272.40777135,-6.774275170636367,205.3466582215754,-0.1942994556109051,-10.659729625025,0.0851422406218477,-426686168.2810721,-155515157.3916169,-68233811.4334382,4.61055736995378,-13.772476202406834,-5.1494271204409605,-147267772.53405833,-23156195.490139306,-10038295.725049775,4.785044089072781,-27.35389738835443,-11.72029974243222,5.656662748626618 -1992 SF17,120995,60399.30417585096,2460399.804548019,314597881.14558434,-6.7084546876189615,205.3421145596393,-0.1940984742119638,-10.65776979030326,0.0853362200087372,-426677008.0084176,-155542516.7321088,-68244040.86151667,4.611718668932432,-13.772053037430055,-5.1492414460299445,-147258211.76021257,-23210494.57942119,-10061577.5458755,4.8397140872463735,-27.31291881348349,-11.719635069694808,5.647987443267185 -2000 QR19,122203,60401.01488077102,2460401.515253019,285802709.1583124,23.637929208506044,124.89828887487938,0.1100425621007222,20.658620319716864,-0.0488476549966914,-299521254.5374599,192146371.3542461,89041718.74392574,-13.358584022011216,-11.795745918612148,-5.955912153469479,-146521506.20897037,-27187583.53269078,-11789237.848307772,5.076719273729408,-27.11678685143024,-11.656174857714973,22.3717817677966 -2000 QR19,122253,60401.03878397265,2460401.539156019,285851588.81482023,23.69739910718855,124.9011022273608,0.1102456882208833,20.657447973337483,-0.0492436899836121,-299548839.0482236,192122011.37636665,89029418.9410241,-13.35692095513989,-11.79681281406465,-5.956406549301184,-146510971.7384001,-27243633.410410155,-11813309.52513536,5.126267155590686,-27.16210369137763,-11.655325689226776,22.374912302833955 -1992 SF17,123406,60402.15432435613,2460402.654697019,313081351.0673415,-5.657540723603527,204.78623539831676,-0.2012045000974524,-10.410695540314933,0.0878040616833989,-425523637.305107,-158927491.69966432,-69509232.42723271,4.755348619195289,-13.719069333798265,-5.126030854662336,-145963121.45205715,-29833889.371293567,-12934572.021596432,5.949456950988645,-27.184182866185967,-11.610135582790848,4.577852810818509 -1992 SF17,123456,60402.17809368587,2460402.678466019,313069799.0365739,-5.592205514022535,204.78136709868585,-0.2016661586396843,-10.408606352280708,0.0879887399320761,-425513870.1125611,-158955665.82207116,-69519759.45475553,4.756543691764646,-13.718623084685287,-5.125835674289844,-145950829.37555194,-29889715.46017245,-12958414.17497977,6.021557509523071,-27.18221166623934,-11.609254845799082,4.568705611110556 -1992 SF17,123491,60402.19394080225,2460402.694313019,313062173.29322267,-5.546810035898198,204.7781158660248,-0.2019003051033671,-10.40721098209898,0.088117121383171,-425507356.8776462,-158974449.24270394,-69526777.69187188,4.757340431736835,-13.7183255263041,-5.125705531048806,-145942551.98937556,-29926928.952607304,-12974308.940843802,6.069369144331979,-27.175895445477696,-11.60866616255624,4.56260115600951 -1992 SF17,123541,60402.218192296605,2460402.71856502,313050625.1897311,-5.475467617588341,204.7731342472578,-0.2021394620377142,-10.405071529073847,0.0883188615316762,-425497387.0147184,-159003194.30085185,-69537517.9448657,4.758559710843074,-13.717870085350018,-5.125506338974585,-145929758.8425639,-29983856.060768545,-12998632.476822944,6.141107037471403,-27.158604124517318,-11.60776051864392,4.553252056529572 -1992 SF17,123585,60402.23804355536,2460402.738416019,313041284.8913241,-5.416239458988095,204.76905346393468,-0.2022253996935077,-10.403316651378816,0.0884862271653773,-425489224.4790945,-159026722.28945923,-69546308.85590716,4.75955769250896,-13.717497237026766,-5.125343273593705,-145919177.21118924,-30030419.49560425,-13018540.612781797,6.197686418395877,-27.137803992179293,-11.60701295572816,4.545595284661857 -1992 SF17,123587,60402.23895168128,2460402.7393240198,313040860.090372,-5.413526347514979,204.76886677349643,-0.2022269466381586,-10.403236302370727,0.0884938896894541,-425488851.07737136,-159027798.46282864,-69546710.95238833,4.759603340217098,-13.717480181443271,-5.125335814410685,-145918690.89581892,-30032548.44715461,-13019451.195924705,6.200214961076806,-27.13671430227403,-11.606978595154374,4.545244999311395 -1992 SF17,123635,60402.26210283164,2460402.76247502,313030100.8131822,-5.344637386937128,204.7641068830438,-0.2021960788245939,-10.401185325264573,0.0886882819673679,-425479329.36273545,-159055236.86093557,-69556962.88079722,4.760767182957797,-13.717045284943492,-5.125145616858537,-145906225.8714667,-30086798.103584208,-13042667.133060422,6.262559656752266,-27.105024481703765,-11.60609672441928,4.536313114245752 -1992 SF17,123637,60402.26300464005,2460402.763377019,313029684.3977227,-5.341973424380815,204.763921457014,-0.2021921505881684,-10.401105325057188,0.0886957916079874,-425478958.3344738,-159056305.88695046,-69557362.3045301,4.760812527250917,-13.717028339293266,-5.125138205947829,-145905737.72155118,-30088910.41997169,-13043571.627210025,6.2648980863500885,-27.103642181786004,-11.606062121182312,4.5359651050745375 -2000 QR19,125840,60404.99990943106,2460405.500282019,294023415.0383592,24.074417714187422,125.4444047619396,0.1326185130082333,20.45442257528811,-0.0534893702810658,-304072513.7773851,188055031.35731345,86977185.40034729,-13.080501777215886,-11.970936691102484,-6.037017806403543,-144315036.03347978,-36377011.63515354,-15772875.300132804,7.06244762059506,-26.683183170127847,-11.473084541193929,22.818072772022575 -1998 BW1,125849,60405.00393638609,2460405.504309019,339640757.9548413,25.29336250486867,112.87814237552936,0.2239264673629631,20.797054066512988,-0.0206123700902683,-267752162.75937256,256147408.32911852,104815605.67224176,-16.47421962028081,-10.4167932309266,-3.81450035578804,-144312577.46085125,-36386296.9929045,-15776867.127829676,7.070044723306467,-26.691222718032854,-11.47288403712218,22.7405520138014 -1998 BW1,125850,60405.00438469447,2460405.504757019,339641737.0251864,25.29442450785595,112.87824968778264,0.2239314795349135,20.79704483076725,-0.0206186231768159,-267752800.376266,256147005.15768895,104815458.03585307,-16.474195533886647,-10.416816274467925,-3.814509785146434,-144312303.7825176,-36387330.15289669,-15777311.210766522,7.070903230451036,-26.69210825208908,-11.47286175925304,22.740564015117645 -2000 QR19,125890,60405.02361988217,2460405.5239920192,294072793.33482164,24.13306796199802,125.44776237630344,0.1327740876585202,20.453149841020707,-0.0538687690063755,-304099305.9088303,188030509.2886828,86964818.81251076,-13.078842426516864,-11.971962950592612,-6.037492450688215,-144300520.61857507,-36431720.47562964,-15796377.213696493,7.110194705743085,-26.72833340201054,-11.471910346261804,22.820595097549404 -1998 BW1,125899,60405.02764827529,2460405.528021019,339692634.5854247,25.348579688649583,112.88382607108493,0.2242538138384664,20.79656142454329,-0.0209376391189601,-267785909.61481264,256126067.8249952,104807790.9909848,-16.47294471841563,-10.41801280898517,-3.814999406164102,-144298043.99252778,-36441026.00072209,-15800370.615157451,7.119003768417199,-26.73544730951317,-11.471712269682977,22.741183009557773 -1998 BW1,125900,60405.02809565688,2460405.528468019,339693613.6015265,25.349597299787757,112.88393330047984,0.2242611827294093,20.796552064079485,-0.020943638057371,-267786545.7587624,256125665.50669625,104807643.66497634,-16.472920684112893,-10.418035797878805,-3.8150088132431126,-144297769.0318685,-36442058.55992374,-15800813.66135146,7.119992942078962,-26.73622584301192,-11.471690318561986,22.74119481276778 -1992 SF17,126148,60405.143232581446,2460405.643605019,311862512.75686765,-4.168747499690903,204.18204789734529,-0.2073860580527141,-10.14191766578033,0.0907984850256616,-424276215.097665,-162463088.27283803,-70829820.93770152,4.905270051694499,-13.662387305349071,-5.101278765721121,-144225463.000092,-36708744.16696517,-15914904.465827612,7.43257693124855,-26.84939755354421,-11.466151202571895,3.432731998445423 -1992 SF17,126198,60405.16648370551,2460405.6668560198,311854201.92892617,-4.104756581697203,204.1771439147712,-0.2078332545413083,-10.139804539572062,0.0909697199557389,-424266359.66235775,-162490534.3889154,-70840068.7738664,4.906433481937355,-13.661941897984129,-5.1010845723671165,-144210461.13400465,-36762681.67796988,-15937937.55021502,7.502965574624003,-26.84807926942446,-11.465044788896774,3.423629491953549 -1992 SF17,126223,60405.17800431546,2460405.6783770192,311850132.3569364,-4.071820660421332,204.17471042616617,-0.2080080103639273,-10.138755970732534,0.0910580039582882,-424261475.3741867,-162504133.75828624,-70845146.48829265,4.907009951835148,-13.661721170657644,-5.100988339107525,-144202975.23567638,-36789404.90196312,-15949349.747668764,7.537772777663794,-26.844229750076888,-11.464495786690788,3.419115359707487 -1992 SF17,126273,60405.2023766127,2460405.702749019,311841633.17909,-4.000270950118854,204.16955689500924,-0.2082708612021451,-10.13653437777827,0.0912499415841627,-424251141.05987805,-162532901.69761696,-70855887.77784444,4.908229404591012,-13.661254179263564,-5.100784742825292,-144187025.86157575,-36845917.67850123,-15973489.778369902,7.610387929910648,-26.829180009130628,-11.463330698325755,3.409559575007779 -1992 SF17,127380,60406.28009397116,2460406.780466019,311500308.1322612,-3.2554422126193256,203.94698407390237,-0.2097056591148991,-10.037516394376953,0.0927112168781404,-423791597.8502883,-163804017.71404082,-71330431.85052249,4.96210494256566,-13.640528438769852,-5.091754021273716,-143462255.4690581,-39304033.080962,-17038115.70022552,8.31778643741286,-26.588917942396435,-11.403751171216012,2.991586587642741 -1992 SF17,127430,60406.30412573269,2460406.804498019,311493618.43569595,-3.188901082676161,203.9418703922179,-0.2093324287000883,-10.03528625781268,0.0928841624464305,-423781293.35316473,-163832340.2501815,-71341004.09335037,4.963305241126822,-13.640064591187782,-5.091552026108222,-143444929.7574753,-39359191.40357944,-17061792.710722223,8.369558144004142,-26.5397765393911,-11.402460295103898,2.98212037022636 -1992 SF17,127431,60406.30454239935,2460406.80491502,311493503.5642503,-3.1877823021287064,203.9417817459271,-0.2093247926389441,-10.035247524499182,0.092887058929056,-423781114.5288886,-163832831.69060072,-71341187.53781474,4.963326068137355,-13.640056541917142,-5.091548520876334,-143444628.19717237,-39360147.58393128,-17062203.527422827,8.370393690041311,-26.538872058429675,-11.40243773182103,2.981956178689109 -1992 SF17,127481,60406.32834317959,2460406.828716019,311487012.24189913,-3.1263521303403623,203.9367279911271,-0.2088270243123687,-10.033034807444556,0.0930453422492907,-423770906.5835193,-163860881.0131479,-71351657.73533715,4.964514782114473,-13.639597079356609,-5.09134844028993,-143427368.855297,-39414667.40997153,-17085650.242225252,8.414256185710459,-26.48469340055614,-11.401139945211831,2.97258933388525 -1999 JO12,127743,60407.00871442623,2460407.509087019,390101087.5375393,21.443034123001297,148.20745134743336,-0.0368466147741464,24.17753245195969,-0.0101733543669821,-445430250.087004,146546082.72961798,142017248.45587802,-7.301647543867451,-13.503126791979636,-3.308572440939706,-142944583.20123318,-40948519.732489474,-17754632.281057876,8.075320666860666,-26.44936124147979,-11.359359351382237,14.666129602696977 -1999 JO12,127793,60407.03255018349,2460407.532923019,390145308.3983073,21.50178563752374,148.20648714724038,-0.0369411402523999,24.177285746940598,-0.0105289901777316,-445445285.1805987,146518275.62238342,142010434.83005303,-7.300612563099137,-13.503467479891844,-3.3089025304594197,-142927900.15469316,-41003034.16019754,-17778024.70230406,8.12741483413656,-26.490894369412302,-11.3580131300731,14.670382921072642 -1999 LZ3,127914,60407.08985114443,2460407.5902240197,257291530.62904757,14.51025382489524,150.78021809716114,-0.0549899500311402,16.663811547398442,0.0318833347461883,-358009078.20528954,79190604.83280866,55945512.000599496,-2.046340940773272,-17.51469078736394,-5.606565584052679,-142887306.42611778,-41134380.26168078,-17834248.11041566,8.276208729149381,-26.562313469884625,-11.35482468787754,18.171241592144987 -1999 LZ3,127964,60407.11219956464,2460407.612572019,257319605.96590385,14.569280410587869,150.77893910398956,-0.0546392721160412,16.664519847710817,0.0315062505976527,-358013027.4915297,79156787.54840323,55934686.72133097,-2.0445431135434617,-17.51508854537561,-5.606846575615171,-142871264.3190334,-41185684.524932384,-17856171.57938244,8.340702440069187,-26.57759196385489,-11.353593534360432,18.178012476525744 -1992 SF17,128140,60407.192451153336,2460407.692824019,311250671.0486952,-2.9980268416106006,203.75817292033256,-0.2113363977448838,-9.952994969120557,0.0927992815678325,-423398647.0362941,-164878585.58290195,-71731504.76802357,5.007640643708512,-13.622867277752146,-5.084066481805452,-142812597.96777984,-41369993.13124147,-17934879.530058727,8.581346726042405,-26.56794168989395,-11.349180977946569,2.637138868871855 -1999 LZ3,131572,60411.047927265936,2460411.548300019,262402179.07941908,15.363997460278306,150.642063820479,-0.027244805703755,16.765890500857388,0.0196760602789256,-358654239.6369246,73189497.22533715,54019854.30552895,-1.7264827117386283,-17.58272745823939,-5.655657400210572,-139673171.16420883,-49988272.67897695,-21673158.83026259,10.125364162400144,-25.905444241362225,-11.086048015604408,19.28634559898093 -1999 LZ3,131622,60411.07164209287,2460411.572015019,262433724.6460453,15.426690752964332,150.6413906020296,-0.0270891913302173,16.766352384716008,0.0192767953084174,-358657775.005771,73153472.08716434,54008266.29766117,-1.7245575666489128,-17.583120400486205,-5.6559474114575385,-139652360.38955313,-50041380.150682695,-21695872.17884412,10.188723363893615,-25.93131943327757,-11.084392217825105,19.29284789368985 -1998 BW1,132364,60411.97424452221,2460412.4746170198,354908999.5242493,25.482919287450475,114.68803540260204,0.2498435354096359,20.62774357721585,-0.0286261738355444,-277559075.1047465,249768105.1321844,102474966.7990023,-16.095714352995135,-10.768003623870866,-3.958401353920014,-138825267.70491832,-52026814.03425595,-22557650.51733137,10.443984741828404,-25.612072241063828,-11.01495521247463,22.783891502048792 -1998 BW1,132385,60411.98501559516,2460412.485388019,354932726.5115194,25.508409010566854,114.69091128436736,0.2499303000690542,20.62743446157333,-0.0287713790607091,-277574052.46019626,249758084.878884,102471283.26595864,-16.095123841918483,-10.768535020689107,-3.9586193741164175,-138815539.37927428,-52050658.93125175,-22567900.817353856,10.463595157058847,-25.633257533191014,-11.014148241668202,22.783862349092416 -1999 LZ3,132605,60412.09158317338,2460412.591956019,263800755.039225,15.698373796706898,150.62420356252633,-0.0198094595462621,16.78452679479472,0.0157751448549918,-358806089.33793426,71603337.07771096,53509325.4570836,-1.6416630631445228,-17.59985313639272,-5.6683733113901615,-138718067.82024574,-52287427.96773944,-22669277.051414333,10.726525040503692,-25.77250745638201,-11.00630813065756,19.561683737878823 -1999 LZ3,132655,60412.11554532927,2460412.61591802,263833319.9524619,15.759188909940754,150.62371350819942,-0.0193230694118371,16.784900124196383,0.0153873234910744,-358809485.9051474,71566901.31548564,53497590.4435676,-1.6397132963292178,-17.6002423155733,-5.668664132937263,-138695787.9819462,-52340796.5713987,-22692061.794019416,10.79694130270336,-25.781981548920864,-11.004567516488615,19.56805852135165 -2001 SF198,133173,60412.35795336095,2460412.8583260197,241124068.34776187,-16.021423987149404,253.9403378759732,-0.0112624244811913,-12.565455671326513,0.079511751575126,-203569226.7569744,-279042253.56469524,-75380056.35681021,14.932366568040004,-11.049665832372916,-3.720754461597672,-138462796.15219498,-52878245.2440658,-22922355.57963701,11.367541498144297,-25.419377484781617,-10.986538228468142,19.578444404475967 -2001 SF198,133174,60412.35841602942,2460412.8587890198,241123427.4797696,-16.020174144307628,253.9403325331333,-0.011263991110794,-12.565418856095162,0.079517313405034,-203568629.38205457,-279042695.6096904,-75380205.20668787,14.932391024291336,-11.049632307445735,-3.720745405729762,-138462341.4051756,-52879262.075872496,-22922795.075632904,11.367988339765922,-25.418142018260777,-10.986502120363973,19.57831864954656 -2001 SF198,133216,60412.379403575454,2460412.879776019,241094430.2758277,-15.963967915089842,253.94009010295025,-0.0112618228390338,-12.563747395361151,0.0797671781162878,-203541550.37370205,-279062731.3433306,-75386951.93608408,14.933499500878275,-11.048112635155784,-3.7203349029429793,-138441711.89914277,-52925301.073349245,-22942715.15546565,11.38469033087886,-25.361596957296843,-10.984856350003758,19.572618400032827 -2001 SF198,133217,60412.37985783738,2460412.880230019,241093804.1184969,-15.9627651521467,253.94008486502605,-0.0112602043581663,-12.563711179871076,0.079772518976199,-203540964.56688845,-279063164.73437315,-75387097.87597218,14.933523478111672,-11.048079759990936,-3.7203260224304446,-138441265.32251427,-52926295.87246972,-22943146.04209081,11.38497435931774,-25.3603655430457,-10.984820551063208,19.572495101454454 -2000 QM186,133906,60413.26447794604,2460413.764850019,291676121.9637091,-23.453789591177998,270.1595157850194,0.0953778932731217,-22.57843885271597,-0.0240227098919683,-136839597.41209686,-324174504.42694014,-135768363.74810648,17.24436709573352,-3.236956254763637,-3.2149140135161853,-137589405.19641018,-54855010.532493696,-23779935.236432478,11.687854900257705,-25.45207818822649,-10.913131811008556,21.421178572278155 -2000 QM186,133956,60413.288760198375,2460413.7891330197,291626963.6855998,-23.406844448232437,270.16201308882347,0.09456072244908,-22.579018618459,-0.0237215122578593,-136803414.2725041,-324181294.4942775,-135775108.59101722,17.24507708256629,-3.2352737687766524,-3.2142093512026326,-137564829.1096965,-54908356.89501861,-23802829.554670528,11.738474911592624,-25.40017025703844,-10.911230461553972,21.41787285879152 -2000 QM186,134235,60413.42235583642,2460413.9227280198,291358567.0140739,-23.09066214935403,270.17549972199964,0.0926404261638655,-22.582053879029026,-0.021658971722681,-136604323.1270908,-324218587.46377933,-135812189.45085374,17.248980264797883,-3.226015640222699,-3.2103314801419955,-137428343.8135139,-55199586.3460234,-23928711.67147922,11.864685278657698,-25.052390071209945,-10.90038165844085,21.399451289358865 -1992 SF17,136549,60416.18322366022,2460416.6835960187,310768305.4472558,1.6733637404267787,201.86158432291097,-0.214466476355579,-9.099967233578258,0.0954796498957296,-419335384.2707248,-175391764.9446064,-75650845.33771327,5.452743369254513,-13.443204720639155,-5.006244772803953,-134545712.18181604,-61128794.0765456,-26500506.27016156,12.879363885772412,-24.97021284109752,-10.660045333016276,0.8960908301769777 -1992 SF17,136599,60416.20764484783,2460416.7080170186,310771913.8526609,1.7469181999567924,201.8562804237152,-0.2144145440014601,-9.097633634370457,0.0956342910298507,-419323877.92162186,-175420129.0710106,-75661408.09733085,5.453943353861351,-13.442702903549844,-5.006028319199292,-134518465.0504111,-61181450.227710254,-26522996.492536794,12.946969553927673,-24.939986279593416,-10.657957960057228,0.905830959210474 -1992 SF17,136641,60416.22679643129,2460416.7271690187,310774851.8358908,1.803929608463956,201.8521229219872,-0.2142681263691775,-9.095800899372438,0.0957536114470359,-419314852.3775832,-175442372.6950417,-75669691.5470608,5.454884398958519,-13.44230930498885,-5.005858547882881,-134496999.5461897,-61222695.44085103,-26540631.20510929,12.996890427244622,-24.910390245318364,-10.656312689760556,0.9134687809927846 -1992 SF17,136691,60416.25091203088,2460416.7512850184,310778683.734579,1.8737245644339928,201.8468933827409,-0.2139548717034778,-9.093489943809786,0.0958984406113246,-419303485.2937984,-175470380.7031297,-75680121.57915859,5.456069310015545,-13.44181362476814,-5.005644749751778,-134469857.4999713,-61274554.67861794,-26562832.767737865,13.054871991651517,-24.86637981285379,-10.654228268458416,0.9230824845508494 -2000 QM186,137870,60417.35570978302,2460417.8560820185,283583050.7440986,-22.62373328579092,270.54753916434555,0.0679777616563114,-22.672069229222117,-0.0239086338050578,-130722674.3942385,-325268529.3374961,-136883778.47997954,17.361709418429186,-2.9520790657899694,-3.095314208740033,-133223244.43070082,-63610994.36475559,-27574912.367427614,13.673598526122529,-24.39169041465341,-10.552109404450617,20.83171210539922 -2000 QM186,137917,60417.380642771735,2460417.8810150186,283534382.0061391,-22.5615347251847,270.54937260000554,0.0677551418382423,-22.67266017761306,-0.0234936708702182,-130685270.02998114,-325274887.34071416,-136890446.1528096,17.362410396982668,-2.9503342867393654,-3.094579930474284,-133193771.57772014,-63663465.549206346,-27597641.32186931,13.687760650521328,-24.323217259044124,-10.549767571453083,20.82761486630333 -2000 QM186,138682,60418.29961597492,2460418.799988019,281748991.5612727,-22.586300133439806,270.6215234198704,0.062639977228279,-22.694429139087333,-0.0251381380923244,-129305581.36179948,-325506604.17782366,-137135096.25963774,17.388126437077,-2.885952839449069,-3.0674704843154825,-132125202.03505152,-65587150.60540921,-28431730.90386531,14.05651731727966,-24.312875425994196,-10.46178754692297,20.68069959230132 -2000 QM186,138732,60418.32406782271,2460418.8244400187,281701334.5758291,-22.52951579761911,270.62317564015075,0.0620622426693839,-22.695039240686647,-0.0247597081997276,-129268842.80272582,-325512699.8427673,-137141576.48476353,17.388807481698993,-2.884237842021797,-3.066747943289589,-132095467.9045209,-65638449.513157554,-28453830.58873148,14.090628181299325,-24.250027773316177,-10.45947410775355,20.676540059336748 -2000 QM186,139913,60420.30384433893,2460420.804217018,277896880.80011475,-22.218428337984108,270.757212767197,0.0494203595961877,-22.74314386082405,-0.0257994829270058,-126289534.35113922,-325994197.51684386,-137661175.34892613,17.44339463934624,-2.7450493363359256,-3.0080382512061403,-129676522.59646216,-69726947.56299186,-30226072.75136192,14.948824519044242,-23.830608651294217,-10.262117158892105,20.339464462021564 -2000 QM186,139963,60420.327139237976,2460420.8275120184,277852217.9467881,-22.163003432790365,270.75845438945345,0.0489150785328056,-22.743740544327057,-0.0254256766108152,-126254422.99973646,-325999721.2029813,-137667229.3425585,17.444030400583216,-2.7434076764091797,-3.00734499329002,-129646404.60879044,-69774849.86608897,-30246724.842224777,14.977931490524956,-23.76925289197544,-10.259779161496782,20.335181955936854 -2000 QM186,141829,60422.30507373817,2460422.805446018,274112655.52676225,-21.83473176871426,270.86438429086616,0.0360149034670691,-22.793410637118956,-0.0265497285447007,-123268553.00848144,-326456655.87726563,-138176160.6766466,17.497453616188363,-2.6036878510819514,-2.9482740870423907,-127080828.64749214,-73778841.96336211,-31982296.30550517,15.816985850318025,-23.330498482021166,-10.052050929488887,19.971492368620957 -2000 QM186,141879,60422.33074131335,2460422.8311140183,274064301.4002844,-21.77250771720186,270.8653794767039,0.0355025925219884,-22.79408671038675,-0.026125052205361,-123229745.05455504,-326462428.52158046,-138182698.73216572,17.49813962572271,-2.601870406492568,-2.9475048158042387,-127045717.3313082,-73830506.52968925,-32004585.882614747,15.84573290882748,-23.26162678317145,-10.049332809419711,19.966415319130608 -2001 SF198,142692,60423.25057897233,2460423.750951018,227335032.93546772,-13.280448549936304,253.44235942225896,-0.0943073959346655,-11.669248413451776,0.0835853594236051,-189251512.49183536,-289067080.50963205,-78780373.37663983,15.485644240692425,-10.24950874618506,-3.503639499913693,-125804649.00530197,-75662664.7337657,-32799202.87335059,16.152510963800413,-23.20639008524472,-9.949019527415318,16.314848862225098 -2001 SF198,142742,60423.27522695109,2460423.775599018,227306820.8636239,-13.21492933675162,253.4399777609449,-0.0949195280136884,-11.667184930912429,0.0838528937463791,-189218531.72424933,-289088906.7429833,-78787834.47989249,15.486845873354977,-10.247673007274834,-3.5031392233292635,-125770200.44243668,-75712024.49886745,-32820387.38456545,16.19849958339282,-23.148868640329848,-9.94639272422445,16.30639896559188 -1992 SF17,145370,60426.12066758172,2460426.621040018,314368164.19647723,6.560000974035291,199.83505269752385,-0.1982616061610991,-8.171745700091298,0.0897051059686049,-414445292.0529447,-186844464.28659624,-79910669.41832612,5.936966285938026,-13.232897105008576,-4.915924459310848,-121730121.7876416,-81258183.64568841,-35226118.427660964,17.078799278784604,-22.59804615888664,-9.622177903175846,4.731393517535215 -1992 SF17,145420,60426.14503737415,2460426.6454100176,314382052.5346732,6.632227205212506,199.83017018159236,-0.1983451948581071,-8.16955818784088,0.0898203965218216,-414432790.40283054,-186872325.87884355,-79921019.76456669,5.938143662384929,-13.23236640023401,-4.915697477675587,-121694086.7062632,-81305747.39241463,-35246375.718575865,17.149263949129825,-22.57942156547955,-9.619461544419556,4.7406844735425295 -2000 QR19,145597,60426.9986178272,2460427.498990018,341165036.2077857,25.24523390261089,129.92602146778825,0.2310857823722307,18.998200184841767,-0.0788517924036458,-327455750.9710556,164450128.92919445,75110265.6871212,-11.520123548760916,-12.842794391220568,-6.43792418303296,-120423680.16294618,-82929055.00087376,-35952072.41927388,17.14931025089044,-22.28282764492616,-9.517556516348218,23.736433550863403 -2000 QR19,145647,60427.02241854762,2460427.522791018,341217007.6788361,25.299491953472288,129.93184258311717,0.2314418257789941,18.99631990886073,-0.0791456854712929,-327479437.27583224,164423720.27112913,75097027.41282283,-11.518416059327452,-12.8436519757421,-6.438315859871526,-120388352.56956431,-82974904.89275554,-35971641.57848162,17.2100585656637,-22.30814111599233,-9.51483032645815,23.736341541562386 -1992 SF17,146030,60427.20578892668,2460427.706161017,315016289.82258713,7.301430730376742,199.62547991103972,-0.1952387943843146,-8.074771188781211,0.0891023111404384,-413886231.8852156,-188083968.8152829,-80371074.03151217,5.989343027530724,-13.209196012288526,-4.905791848062679,-120111575.22513442,-83328286.5656753,-36122221.00390393,17.721345214615003,-22.215649294771318,-9.493891272554636,5.137767787816824 -1992 SF17,146080,60427.230345442,2460427.7307180176,315031854.64895856,7.369775417335727,199.62064278512085,-0.1947841719752255,-8.07258183718772,0.0892039562567989,-413873523.2028119,-188111993.8370158,-80381482.27292222,5.990527205311869,-13.20865797453266,-4.905561929686023,-120073915.49655576,-83375371.10531804,-36142361.418518245,17.776724952485434,-22.166443873897997,-9.49105120314734,5.147048341489586 -1998 WD8,147449,60428.42281821025,2460428.923191017,439859144.7863799,-22.305593488255948,329.90950786105054,0.2818806508189357,-17.508703574841007,0.0690361140398034,244707530.8109976,-295928748.4511528,-169444644.09839073,14.060701288707426,10.039060551470987,3.214061844918964,-118241979.23305067,-85614736.51416059,-37112725.06916517,18.312718836133943,-21.37078969535164,-9.346172923861833,20.006880273383963 -1999 LZ3,147537,60428.99991073471,2460429.5002830173,288672177.708278,18.07765201659168,151.4013007464984,0.0906832227867362,16.63977621443992,-0.0315653816786768,-360186919.280946,45715254.456629805,45085419.97863931,-0.2405138412798268,-17.82834290264628,-5.860482608761289,-117348094.33435062,-86677619.27473426,-37576894.69103049,17.961418889662834,-21.727862021028976,-9.273291434852672,22.96186471524437 -1999 LZ3,147587,60429.02367443869,2460429.524047017,288709357.6042243,18.137570305224973,151.4035511814102,0.0908102752835179,16.639021888225916,-0.0319194642676499,-360187411.02057475,45678651.08315669,45073387.6493716,-0.2385099118968583,-17.828597333852297,-5.860733499164316,-117311153.16568016,-86722255.8738586,-37595931.7841788,18.02314719141319,-21.75065743924572,-9.27045089709588,22.965479480253208 -1999 LZ3,147604,60429.03133883447,2460429.531711017,288721374.5264027,18.156848245889464,151.40427785106746,0.0908841530573292,16.638776820771312,-0.0320333504569366,-360187568.73146445,45666846.21563949,45069507.05805117,-0.2378636153629123,-17.828679348134536,-5.860814400640141,-117299211.9248444,-86736660.41340011,-37602070.09231655,18.04393144607316,-21.75629872562158,-9.269536625412892,22.96664383361225 -1999 LZ3,147654,60429.05520522838,2460429.555578017,288758878.4689512,18.216074393510347,151.40654558664804,0.0912159895376693,16.638008083593245,-0.0323836723054321,-360188057.128505,45630083.50757321,45057421.895161055,-0.2358508755121569,-17.828934626567836,-5.861066304590072,-117261934.95893422,-86781538.06702842,-37621181.953028224,18.11075864388509,-21.768241384769613,-9.266693608774462,22.9702636450682 -1992 SF17,147791,60429.11931522979,2460429.6196880173,316277331.94230354,8.01376054984947,199.26546753581965,-0.1899992634279812,-7.906868041433829,0.0864980313156593,-412888427.4073333,-190264295.15600124,-81180636.34859663,6.081464729651277,-13.16705040092554,-4.887795302293391,-117161102.26224656,-86902111.23197451,-37672490.01334311,18.297253514749773,-21.75612761464049,-9.259067667162563,5.844422193177335 -1992 SF17,147841,60429.14372251138,2460429.644095017,316294307.3895444,8.086249377660778,199.26078517878491,-0.1900189059991328,-7.904755599829804,0.0866035504856063,-412875602.1368055,-190292060.05226505,-81190943.03905825,6.082637753482191,-13.166509949849749,-4.887564699744107,-117122443.83323236,-86947968.53542596,-37692012.14354787,18.36689501857664,-21.73443134203564,-9.256159074449068,5.85350663153611 -1992 SF17,148793,60430.13571288456,2460430.636085017,317008059.5065197,8.540262536431616,199.078359350332,-0.1869322847020675,-7.819435975568003,0.0853492137421618,-412352244.49333966,-191419559.99932268,-81609432.1856207,6.130271318583175,-13.144482656918605,-4.878169679724126,-115542381.58541568,-88765461.26508845,-38479963.307247065,18.741732629145552,-21.448669715094027,-9.130835314117595,6.215315311667967 -1992 SF17,148865,60430.17011313594,2460430.670486017,317033595.51883423,8.642479365010741,199.0718707938218,-0.1867429864043435,-7.8164973961944995,0.085492969488066,-412334021.8868626,-191458626.38179457,-81623930.40667595,6.131921705853709,-13.143716629167423,-4.877843084958298,-115486535.34928976,-88829151.9184647,-38507096.16173163,18.835536778998936,-21.40533406880053,-9.126634636535464,6.228002626874735 -1992 SF17,148915,60430.19461971733,2460430.694992017,317051970.18640494,8.713636232206113,199.06725513145275,-0.1864302209718253,-7.8144010882938915,0.0855914288307897,-412321037.78817385,-191486454.43076152,-81634257.8079797,6.133097319604594,-13.1431708516929,-4.877610398831289,-115446588.4652574,-88874431.75886208,-38526416.972724624,18.897060702293672,-21.3642582275112,-9.123628240677638,6.237035759008261 -2001 SF198,149255,60430.35531883368,2460430.855691017,219967750.38645527,-10.668863007358205,252.62694635997843,-0.1462546712979871,-11.06947553941141,0.0847806568079902,-179640898.1006255,-295195660.762037,-80886575.7854415,15.822532826627873,-9.715915292474383,-3.3578279486132057,-115182274.22198115,-89168433.90670364,-38652953.96525688,19.115072007383706,-20.95899337546543,-9.103443180108718,13.79757928346949 -2000 QM186,150084,60431.29687338574,2460431.797246017,257981311.85782132,-19.84592802579098,270.9807283409775,-0.0271672459993638,-23.04131260767933,-0.0304593886533879,-109583620.23903084,-328230532.0102939,-140361030.7258934,17.726171643550828,-1.9603874942313135,-2.67457503767986,-113646988.27790985,-90865003.0235688,-39388500.02117526,19.466140438805045,-20.81728559130628,-8.981546025061972,17.96781969921205 -2000 QM186,150134,60431.32242346413,2460431.8227960174,257937573.13102543,-19.78120570398395,270.9799677006616,-0.0275911844704423,-23.042084932520485,-0.0299940997619882,-109544486.09208086,-328234857.8539612,-140366934.42300317,17.72678792686445,-1.9585408050713036,-2.6737853191103764,-113603991.28949076,-90910879.09656724,-39408323.31411698,19.487164465058225,-20.745860464398863,-8.97823499859269,17.961089884220115 -2001 SF198,151059,60432.29566528121,2460432.7960380167,218210300.7498612,-10.11091701772201,252.3416040198794,-0.1603384179997019,-10.906885099685494,0.0836120646485474,-176980767.00417915,-296812218.6432321,-81446140.98475263,15.911220164333628,-9.568680595346702,-3.317457478688321,-111984283.23412178,-92639578.64745852,-40157819.05191344,19.846349295992336,-20.50873413268602,-8.849680076420029,13.06833227761345 -2001 SF198,151060,60432.29611829165,2460432.7964910166,218209905.04832628,-10.109627756192234,252.34153005006985,-0.1603398437492828,-10.906847222343997,0.0836168319913009,-176980144.23039225,-296812593.1656692,-81446270.83157177,15.911240702759937,-9.568646148139804,-3.317448026815544,-111983506.45517054,-92640381.31829704,-40158165.42011018,19.84679790073749,-20.5074804003528,-8.849620351286369,13.068156160387812 -2001 SF198,151109,60432.31974068287,2460432.8201130168,218189340.52740392,-10.042901084575474,252.33767277512067,-0.1603117055238452,-10.904869107321955,0.0838629247931946,-176947668.14488274,-296832121.029989,-81453041.27150407,15.91231158529931,-9.56684982747744,-3.316955135059092,-111942979.49523956,-92682168.51571263,-40176223.78559448,19.86573651510992,-20.44122573472213,-8.846494719332185,13.0589738016882 -2001 SF198,151110,60432.3201897205,2460432.8205620167,218188950.95781025,-10.04164664584994,252.33759947207244,-0.1603092368047011,-10.90483145183951,0.083867535914706,-176947050.8280488,-296832492.174255,-81453169.95224768,15.912331938260731,-9.566815682658795,-3.3169457659923203,-111942208.82659194,-92682961.47965248,-40176566.97175928,19.866011099588217,-20.43995408059368,-8.846435093047113,13.058799308188924 -2001 SF198,151142,60432.33586361277,2460432.836236017,218175381.87769827,-9.99834256987957,252.3350415123301,-0.1601786006418468,-10.903515662190944,0.0840262386617521,-176925500.61153692,-296845447.5039325,-81457661.80054934,15.913042385493064,-9.56562371084859,-3.316618696470105,-111915300.03772835,-92710611.83129635,-40188545.6997834,19.87358208580974,-20.39544193738807,-8.844348537581253,13.052709529686236 -2001 SF198,151192,60432.36052296814,2460432.8608950167,218154150.8782884,-9.932768007933891,252.3310233582298,-0.1598027095362475,-10.901440690926584,0.0842642143347484,-176891594.9583906,-296865826.1051265,-81464727.6683473,15.914159902096952,-9.563748368330996,-3.316104106738328,-111872952.66628136,-92753990.5612056,-40207385.40288938,19.877562651741947,-20.325619269412165,-8.841045856683102,13.043137242346816 -1999 JO12,151485,60433.02971977216,2460433.530092017,443791538.3984264,25.497428019084275,149.05674866709597,0.0833713338475146,23.2101656346284,-0.0601270742752671,-460569142.491045,115804268.47150467,134184556.5991794,-6.1646738943679695,-13.83276730473095,-3.6553799962924,-110745455.89397308,-93919713.4265344,-40715898.70756511,19.59979808445848,-20.563059320670085,-8.749801234078792,17.49983836722429 -1999 LZ3,151487,60433.03061429086,2460433.530987017,295042114.8215584,18.51609752836016,151.8610915730058,0.114427506885372,16.49136919163782,-0.0421454012501618,-360211338.0742626,39499667.92000798,43037297.92860494,0.1007168181679425,-17.868735670245023,-5.90223737194538,-110743940.18483788,-93921303.54462096,-40716575.307752006,19.60227765274024,-20.563515638315543,-8.749685094513842,23.500742579354142 -1999 JO12,151535,60433.05345753535,2460433.553830017,443843889.6742447,25.55208529019574,149.05890546469425,0.0836552938736168,23.208734902607155,-0.0604146651076298,-460581783.86623,115775900.12283972,134177059.87668796,-6.1636309802118046,-13.833029732647226,-3.655683960123163,-110705189.14893197,-93961897.1383253,-40733841.07069468,19.666764525120783,-20.571003894785072,-8.746723119427498,17.501075456551536 -1999 LZ3,151537,60433.05435247749,2460433.554725017,295080151.48622423,18.57385767374963,151.86392872000195,0.1148024602767621,16.490364761545084,-0.0424792181240126,-360211129.45305526,39463021.8419629,43025193.159082085,0.102734321769107,-17.868956995760943,-5.902478474169549,-110703668.2580946,-93963487.8580663,-40734517.43286211,19.669329726453185,-20.571132145429424,-8.746607135788777,23.503769190534896 -1992 SF17,152641,60434.11610479162,2460434.616477017,320267960.38032424,10.347987667666024,198.3797994404096,-0.1730384502715721,-7.490409790197473,0.0796762026351771,-410211315.674416,-195924532.53938293,-83280472.72504672,6.320567581631523,-13.054896060004827,-4.840031825830599,-108874637.07763714,-95801145.40101343,-41530264.02646921,20.22430218830749,-20.23132756814836,-8.601633907263649,7.631241890657256 -1992 SF17,152691,60434.13965422124,2460434.640027017,320289086.6241096,10.417703434133353,198.3756899094517,-0.1729660356417613,-7.488532407124355,0.0797618645710279,-410198454.3938941,-195951094.13187495,-83290320.26156858,6.321689481367771,-13.05436031387295,-4.839804093345724,-108833419.13077676,-95842286.2023678,-41547762.76565752,20.289871148862503,-20.20604737599776,-8.59850950299712,7.639570185348208 -1992 SF17,152753,60434.16545641086,2460434.665829017,320312395.5590011,10.493475317446874,198.3711913788766,-0.1727298464183956,-7.486473193552833,0.0798541756451227,-410184360.61935794,-195980194.45324025,-83301108.94720875,6.322918610015545,-13.053773259543348,-4.839554555542484,-108788110.33102372,-95887291.7936162,-41566927.5361775,20.357931407979663,-20.168927079505437,-8.595076033995703,7.648692127502347 -1992 SF17,152803,60434.1888529561,2460434.6892250166,320333675.2224141,10.560252308997573,198.36711936508783,-0.1723768973264817,-7.484603985142986,0.0799336430995127,-410171578.703894,-196006580.07294905,-83310891.11986491,6.324033075126184,-13.053240877814485,-4.839328261389668,-108746900.0160052,-95928020.75468592,-41584298.58964531,20.41497336016045,-20.12736926514393,-8.591950449739768,7.656957800507786 -2000 QM186,153241,60434.39808324944,2460434.898456017,252796080.4127196,-18.798394420409583,270.87534478660814,-0.0495031411055397,-23.13553140340492,-0.0298378967208309,-104823786.26703867,-328725741.4883924,-141064828.13263705,17.79955692475148,-1.7354733615448794,-2.578225480650679,-108375177.66853142,-96287152.25671726,-41739362.47988426,20.601550070349926,-19.57997771931624,-8.563176377200872,17.137712961828438 -2000 QM186,153263,60434.409795636064,2460434.910168017,252777072.2590579,-18.770721360040888,270.8747153341478,-0.0493343257916773,-23.13587968971689,-0.0296384647013603,-104805773.32929702,-328727497.3224564,-141067437.06104124,17.799828624660385,-1.7346210336295762,-2.577859717948077,-108354335.09648052,-96306950.19496876,-41748026.86240586,20.59236413061245,-19.54976410086919,-8.561515931984285,17.134360502655014 -1999 JO12,155445,60437.0334204716,2460437.5337930163,452625399.12881786,25.74154750303913,149.473669406528,0.0995284821647446,22.959162892588225,-0.0660562920948068,-462671008.3479275,111012106.18816122,132911366.73947726,-5.988650400863481,-13.876052363672848,-3.706326087231309,-103667222.0736321,-100679571.8967386,-43646461.76676836,21.080906254767967,-19.27204907448598,-8.18597611836917,17.659793933114326 -1999 LZ3,155447,60437.0343153372,2460437.5346880164,301471656.7847339,18.79712270245632,152.41333528365263,0.1370197821080943,16.30451886217284,-0.0518940232299665,-360117501.9826063,33312764.86933455,40988783.7869772,0.4422779025909203,-17.90329067148669,-5.942094202645923,-103665591.83193824,-100681062.17498548,-43647094.76711415,21.083422304845755,-19.27228310510963,-8.185850421755744,23.9418145162102 -1999 JO12,155495,60437.057147843385,2460437.557520016,452678224.6632544,25.79419442887841,149.47623810807212,0.0998571795817816,22.957592334780745,-0.0663270977864355,-462683283.0344195,110983662.29330374,132903769.06999804,-5.9876065177717095,-13.876303033951206,-3.706626080772295,-103623936.9972284,-100719083.36409543,-43663239.707800016,21.14842088253141,-19.274006205740665,-8.182645196928059,17.66062868177574 -1999 LZ3,155497,60437.05804185979,2460437.5584140164,301510248.5829103,18.85305334402461,152.41672759232011,0.1374611396291442,16.303283850972214,-0.0522099109705243,-360116593.3213872,33276066.55430132,40976603.45959824,0.4443096319327076,-17.90347871089625,-5.942325511464482,-103622303.35965437,-100720572.11586694,-43663871.7437657,21.15098912079863,-19.2739059554396,-8.182519727948767,23.944290570155733 -2001 SF198,155907,60437.24997618656,2460437.7503490164,214265408.40754244,-8.320349735839631,251.49830443259916,-0.1919304164718961,-10.499426515279866,0.0804955307652269,-170122309.7321761,-300827321.3783688,-82844000.20502652,16.131174143956112,-9.189943148762795,-3.213349297118938,-103267316.99728924,-101038458.65935196,-43799339.62369953,21.614940756091716,-18.982390899743223,-8.155339033505987,11.151076308411762 -2001 SF198,155957,60437.27317160858,2460437.7735440163,214248801.13011685,-8.253536640412467,251.4937739649881,-0.1921387752068847,-10.497556746839429,0.0807263718206776,-170089980.18099445,-300845737.18903273,-82850439.5976432,16.1321819243358,-9.188160733772484,-3.2128584674796654,-103223968.690236,-101076438.16407771,-43815679.95846741,21.64447410544445,-18.91987456332484,-8.151986423058613,11.141778903558976 -2000 QM186,156017,60437.301246595416,2460437.801619016,248143236.5251004,-18.188264212803308,270.7088319093782,-0.0715787401580142,-23.22781096916345,-0.0328362806530691,-100350446.87040532,-329134528.3238973,-141700165.1290375,17.86564007969548,-1.5235312470072249,-2.487126249875183,-103171433.6105584,-101122236.48986565,-43835449.11986409,21.66923089689953,-18.840908033764546,-8.14790085963797,16.295949265435667 -2000 QM186,156067,60437.32666156726,2460437.827034016,248103370.902086,-18.121828447426395,270.7068481641082,-0.0718412953780645,-23.2286392260654,-0.0323415620893356,-100311213.49817556,-329137871.93926847,-141705625.95148075,17.866207314593098,-1.5216699560344538,-2.486324899843139,-103123836.40353043,-101163528.4616993,-43853336.651016936,21.680899986145352,-18.768013328791582,-8.144175409992108,16.28808732682356 -2000 QM186,157643,60441.24763375227,2460441.748006016,242160931.13980255,-17.081299839249603,270.3736819125732,-0.1000505739738225,-23.358997486454868,-0.0352956962273834,-94243732.53861988,-329604620.51808,-142526939.69261372,17.95135039344369,-1.233298281666498,-2.3618972708693877,-95693643.67714132,-107296266.2034222,-46512305.75541044,22.95326889127268,-17.56685699869035,-7.54948751517758,15.048372675743046 -2000 QM186,157645,60441.24854631062,2460441.7489190158,242159583.8111171,-17.07905045348876,270.3735823986757,-0.1000755919474248,-23.35902970366581,-0.0352787113844157,-94242316.39758652,-329604717.80749243,-142527126.01605818,17.95136966755667,-1.2332308542902883,-2.3618681137120707,-95691833.00407122,-107297651.83561882,-46512901.27743923,22.954440570587245,-17.564389336932948,-7.549347265957386,15.048063431826453 -2000 QM186,157693,60441.27263018707,2460441.773003015,242124107.83159345,-17.018212541358995,270.370949149736,-0.1006431515748119,-23.359873849490352,-0.0348175239879117,-94204959.49928576,-329607282.2816249,-142532040.20695385,17.95187800562163,-1.2314521423593388,-2.361098946867422,-95644039.11180176,-107334131.9312578,-46528606.53691788,22.980815943075285,-17.497695199138533,-7.545636403331696,15.039898346173215 -2000 QM186,157695,60441.27358203158,2460441.7739550155,242122708.1467193,-17.015757324372444,270.3708447729906,-0.1006618613555663,-23.359906986897528,-0.0347988535492427,-94203482.82195532,-329607383.57494193,-142532234.42380038,17.95189809568033,-1.2313818310025604,-2.361068541766968,-95642148.839352,-107335571.0554845,-46529227.18076149,22.98167590176145,-17.49500542215051,-7.54548926664164,15.039575327143805 -1992 SF17,158373,60442.121666028346,2460442.6220390154,328646722.15531355,13.80856259669191,197.16610746202312,-0.1387186723487792,-6.907242542750459,0.065419124638688,-405708414.4368527,-204890117.912633,-86600997.11144605,6.699224453890831,-12.868934452710745,-4.761211064180487,-93980892.31881236,-108596361.1914444,-47077177.02660216,23.013790602895725,-17.467317634568467,-7.411887373590562,10.27279763265344 -1992 SF17,158374,60442.12211294648,2460442.6224850155,328647254.28863484,13.809855023963086,197.1660451420261,-0.1387148179482317,-6.907213365548469,0.06542030547723,-405708156.29768544,-204890613.7863879,-86601180.57336836,6.699245396676988,-12.868923878918954,-4.761206594817119,-93980005.47320372,-108597034.27261968,-47077462.638014734,23.014969819058845,-17.466713191272053,-7.411819506185409,10.272938628272591 -1992 SF17,158423,60442.14600853552,2460442.6463810154,328675837.53996986,13.878395761419377,197.16270923154684,-0.1384391256651435,-6.905649336553723,0.0654821550332184,-405694324.42067176,-204917181.3391112,-86611009.92746587,6.700367453792488,-12.868357316864609,-4.760967120570329,-93932424.58880132,-108633059.95082012,-47092761.42999029,23.07611760728741,-17.43015298758524,-7.408178074982379,10.280490410013464 -1992 SF17,158424,60442.14645656498,2460442.646829016,328676374.7621409,13.879663097283997,197.162646759036,-0.1384326722775892,-6.905620000286442,0.0654832797780547,-405694065.0797387,-204917679.41407812,-86611194.20260885,6.700388489552425,-12.868346694359436,-4.760962630690634,-93931531.35522328,-108633734.60873508,-47093048.178594,23.07722186555528,-17.429391367582976,-7.408109698692139,10.280631932497668 -2000 QM186,158947,60442.39596038328,2460442.896333015,240499112.89974332,-16.37415106643495,270.2514878900789,-0.1078219438751045,-23.39829297472911,-0.0327165914313955,-92461385.716784,-329722778.9611283,-142759467.9427199,17.97538789654938,-1.1483891106044852,-2.3251572246007823,-93430195.93388449,-109002886.2608822,-47252328.53043001,23.28327670472004,-16.784053593466023,-7.369013475196088,14.662001289871776 -2000 QM186,158969,60442.407420217336,2460442.907793015,240482913.15564555,-16.348248970019366,270.25014305195026,-0.1075726883462109,-23.398666792102617,-0.0325236397949553,-92443586.40512425,-329723915.6742143,-142761770.12714463,17.97562571740216,-1.1475407096360513,-2.3247898873756494,-93407148.2877851,-109019490.81327666,-47259623.99876288,23.270564336589885,-16.75581464823743,-7.367162578573958,14.658028867249651 -2000 QM186,159638,60443.2501127467,2460443.750485015,239286269.3643244,-16.413810818904565,270.15607730145325,-0.1147281298292336,-23.42790525764125,-0.0358631954187053,-91134100.74948384,-329805198.5168795,-142930059.80347663,17.993001208892778,-1.0850992573772362,-2.297741463100878,-91732194.611875,-110246242.88505548,-47791077.29950767,23.58250521457616,-16.819810578080975,-7.233254874822607,14.370265394978166 -2000 QM186,159688,60443.27453295188,2460443.774905015,239251704.1112885,-16.351026767687635,270.15301660308427,-0.1152458322937129,-23.428775182133503,-0.035380238239547,-91096134.92917414,-329807486.1702559,-142934907.2178979,17.993501418127995,-1.0832881582251628,-2.296956554206508,-91682411.55435294,-110281658.83123206,-47806334.58595217,23.6062015456238,-16.75117066121498,-7.229392111140791,14.361616798588374 -2000 QM186,160877,60448.37666036951,2460448.877033014,232459108.08872244,-14.322821271274403,269.4561936129861,-0.1499953662675036,-23.609853186572927,-0.0343138344623397,-83141332.10118736,-330201347.1421277,-143911167.97754684,18.093887613234376,-0.7028877807612205,-2.131628278723525,-81119726.19158478,-117210085.7102346,-50809757.69498677,25.00724307075956,-14.5383468973676,-6.391654494692276,12.499271980074864 -2000 QM186,160898,60448.386195174586,2460448.886568014,232447317.76890147,-14.300823199064888,269.45463385596304,-0.1497788029573548,-23.61017955081404,-0.0341433540320552,-83126425.13592125,-330201925.93160653,-143912924.01982057,18.094067472446643,-0.7021731727187608,-2.131316826784839,-81099128.86557917,-117222052.79128437,-50815022.62069565,24.9967422347842,-14.514301637148776,-6.390020698734568,12.495550402981722 -2000 QM186,160928,60448.40106792405,2460448.901440014,232428963.40424907,-14.268054695003048,269.4522059142857,-0.1493906553288269,-23.610685437940848,-0.0338918791404623,-83103174.04163155,-330202827.5099931,-143915662.4544067,18.09434794561006,-0.7010585517432745,-2.130831028296703,-81067021.2773337,-117240679.55406362,-50823231.77880881,24.97798978586368,-14.478458877018094,-6.387466498239164,12.48975014144056 -2000 QM186,160949,60448.41055385032,2460448.910926014,232417277.6798752,-14.248230938012613,269.4506607437577,-0.1491127162727202,-23.61100621678885,-0.0337415500646659,-83088343.30866896,-330203401.82718295,-143917408.81930402,18.094526806409863,-0.7003475812556299,-2.130521153455317,-81046554.97144523,-117252537.00260413,-50828466.21614549,24.96459652770187,-14.456759083557412,-6.385833731133316,12.48605362981853 -2000 QM186,161762,60450.19590377167,2460450.6962760133,230229702.8172677,-14.042211932719626,269.16226267370934,-0.1622186293807396,-23.67585242416284,-0.0382142580249589,-80294483.7679259,-330301105.1993798,-144241559.57123595,18.127675328478688,-0.5662953371330963,-2.072037309675552,-77211672.86428055,-119471933.33964892,-51790098.63524075,25.473674663483106,-14.249113211089366,-6.083260520072053,11.792284310348192 -2000 QM186,161812,60450.21870081662,2460450.7190730134,230202098.5311745,-13.986789372583562,269.15821535402904,-0.1629426826421681,-23.67671863134532,-0.0377733431560056,-80258776.31577379,-330302218.97326785,-144245640.23556942,18.12809196013755,-0.5645805398731206,-2.071288444172202,-77161464.58973993,-119499940.96649674,-51802076.82856775,25.50675212817165,-14.18926779068524,-6.079433010287736,11.783088161119675 -2000 QM186,162942,60460.30767032746,2460460.8080430105,219848361.99274448,-9.695656094647058,267.10412552487054,-0.2230781600381367,-24.04423183045021,-0.03444634714307,-64380612.20086104,-330461410.2777761,-145905280.46448544,18.29573858308664,0.2018259617853352,-1.7347382773063569,-54237385.09129623,-129945416.22359668,-56329874.55884163,27.71189696661784,-9.76426115882375,-4.288167711478957,7.464952278709974 -2000 QM186,162992,60460.33181502685,2460460.8321880107,219828199.7339493,-9.634762548193471,267.09823319973617,-0.2226169844422315,-24.045057254805247,-0.033932016855279,-64342443.34082982,-330460987.298391,-145908898.61467323,18.29609911008892,0.203677804555983,-1.733920631328753,-54179592.57275663,-129965715.33810742,-56338815.52826023,27.693159479121658,-9.697368621659589,-4.283660725760602,7.453711235643564 -2000 QM186,162999,60460.33494728511,2460460.835320011,219825593.55035776,-9.627145462656664,267.09746983684425,-0.2225434294029351,-24.04516342968649,-0.0338681538757084,-64337492.16296107,-330460932.1480037,-145909367.82269204,18.296145861858037,0.2039180248006031,-1.7338145650833336,-54172099.08061762,-129968338.35459252,-56339974.62814828,27.69010606252789,-9.688969067630971,-4.283074553938316,7.452253921897533 -2000 QM186,163049,60460.35912670188,2460460.8594990107,219805541.3167689,-9.570971155239922,267.09158610096483,-0.2218758377371006,-24.0459765893924,-0.0334017225302824,-64299268.71272409,-330460504.19967085,-145912989.13594916,18.29650667312985,0.205772568734099,-1.73299570232174,-54114280.635110885,-129988513.42191936,-56348917.51667868,27.66197877400739,-9.626775998536797,-4.278537989219861,7.44101170112689 -1992 SF17,163373,60461.02658015218,2460461.526953011,356461964.8481464,19.78899987784828,195.54322909268447,-0.0418255339978665,-6.059169196747542,0.0234546993927333,-394050098.1624297,-225531325.8056112,-94218531.71359268,7.571438387181503,-12.39967072713484,-4.564068071198717,-52543039.32796794,-130545498.00646938,-56592029.52499662,27.50873288113933,-9.979479300810802,-4.154381065203872,15.160813162077652 -1992 SF17,163423,60461.05150750582,2460461.551880011,356504658.88731045,19.85793308703133,195.5421813146874,-0.0417496610315545,-6.058584079345059,0.0234919113782776,-394033791.4737027,-225558028.4241817,-94228360.37287249,7.572567766103933,-12.399024453272055,-4.563798079921477,-52483722.37429863,-130566967.01247849,-56600971.96458929,27.57487683082839,-9.955827891246749,-4.14990319671386,15.166043850276877 -2000 QM186,164058,60465.146209515005,2460465.6465820093,216178249.08420908,-7.908687021723136,265.9075935735489,-0.2442000572389938,-24.21347414479369,-0.0360115385729013,-56717307.682041936,-330299234.58852977,-146596098.07959822,18.36401589524073,0.5745674078676901,-1.5697328010028573,-42646957.50656955,-133642258.05977637,-57933286.22692085,28.44055841793576,-8.024339524689584,-3.3791899183926817,5.198704082566841 -2000 QM186,164108,60465.169428405046,2460465.6698010094,216162440.90331265,-7.85059864870817,265.90136713621047,-0.244907999930368,-24.21430452497858,-0.0355082372532083,-56680465.95481887,-330298080.1045111,-146599246.43763417,18.364324159201995,0.576363985373513,-1.568935410171312,-42589867.09202388,-133658295.96945764,-57940060.92205694,28.474420803547822,-7.963885335490845,-3.374829507790084,5.187399222200974 -2000 QM186,165483,60466.33255919102,2460466.8329320094,215414740.58076093,-6.963866480725327,265.59541284046924,-0.2481072205858581,-24.25351863467919,-0.0311952628264942,-54834138.3546799,-330235631.8050994,-146754910.33018,18.37952720844436,0.6664567268677704,-1.5289232383979878,-39750724.57094483,-134414132.48394188,-58267953.71103155,28.614017237317096,-7.049130819196055,-3.151903883553937,4.626538675506718 -2000 QM186,165484,60466.33297340517,2460466.8333460093,215414491.5020565,-6.9629166511249965,265.5953001833402,-0.2480940946030609,-24.253531547841604,-0.0311871833038333,-54833480.91113806,-330235607.96509475,-146754965.02015716,18.379532536132928,0.6664888272121737,-1.5289089730160073,-39749701.06844666,-134414384.60940957,-58268066.45189661,28.61350307831323,-7.04806557692655,-3.151822981861228,4.626335635207322 -2000 QM186,165533,60466.35552258345,2460466.8558950094,215400974.88750583,-6.913604571792387,265.58917377797525,-0.2473060736765414,-24.254230014716267,-0.0307723379683506,-54797672.17637807,-330234307.7563304,-146757943.0042175,18.37982262501206,0.6682372463389155,-1.5281319665751851,-39693984.78269576,-134428060.9177013,-58274202.64152853,28.58213501784881,-6.992448255909668,-3.147408285944244,4.615285104087766 -2000 QM186,165534,60466.35596989156,2460466.8563420093,215400707.89540085,-6.912677875715928,265.58905253397666,-0.2472890625191337,-24.25424376822792,-0.030764643469262,-54796962.316578366,-330234281.9472221,-146758002.0229518,18.37982837379855,0.6682719068136465,-1.5281165630919158,-39692880.93123817,-134428330.9512781,-58274324.19523714,28.581448841168605,-6.991396640659847,-3.147320612349372,4.6150662202211805 -2001 SF198,166407,60467.28136055165,2460467.781733009,209322879.8226917,4.922442806903558,244.4308981514133,-0.2450138419453279,-8.742862687054245,0.0278472126586099,-126723167.40435512,-321622155.2035938,-90335911.01648691,17.26253034705715,-6.818553025547354,-2.553632574102444,-37429300.32899571,-134993263.1423323,-58518777.77071658,28.78497654132436,-6.739689636077516,-2.9691967812592868,7.117527904044446 -2001 SF198,166409,60467.282258004765,2460467.782631009,209323261.82340625,4.924531545610965,244.4306755595593,-0.2449760529019772,-8.742837678552899,0.0278510122718354,-126721828.07408074,-321622684.224428,-90336109.14160556,17.26255894791204,-6.8184804292039285,-2.5536121849862163,-37427067.002707645,-134993785.95524785,-58519008.13556351,28.784482620442542,-6.737095814468323,-2.969022008883084,7.117826355611259 -2000 QM186,166441,60467.29675869286,2460467.797131009,214833751.26200497,-6.59228216449348,265.3393230841966,-0.2523774655723479,-24.28566180756169,-0.0313676965299287,-53302450.87587544,-330176994.2589467,-146880897.81121567,18.391773492857958,0.7412816172122902,-1.4956538617700297,-37391011.53240294,-135002200.17457852,-58522725.95683356,28.774803792364843,-6.695740521744529,-2.9661958194526497,4.159863865865599 -2000 QM186,166445,60467.29856699975,2460467.798940009,214832721.2581949,-6.587692587147129,265.33882224849094,-0.2523373908228351,-24.28571851546008,-0.0313276382424598,-53299576.2207628,-330176878.3849105,-146881131.57859752,18.39179616418822,0.7414221207199155,-1.4955913573253576,-37386514.21064103,-135003246.3053994,-58523189.53853592,28.77337384482593,-6.690658829402244,-2.965842686865753,4.158970046368365 -2001 SF198,166789,60476.1100274578,2460476.610400006,214292981.8882432,8.241698807527658,242.44686889596244,-0.2126478390853826,-8.609623550825638,0.0029584329794396,-113452277.5622995,-326549956.64536726,-92206889.01864566,17.528494084977854,-6.100749895856213,-2.351495398199852,-15443591.890833115,-138702530.22772107,-60126926.30399079,29.4674733174128,-3.1169764950981564,-1.2442498433930478,10.366220373537482 -2001 SF198,166839,60476.13468020435,2460476.635053006,214310612.5809069,8.312825169152037,242.44156601679765,-0.212668658329039,-8.609548768992171,0.0031087972961478,-113414941.82028168,-326562948.85390514,-92211897.00435506,17.52919406367697,-6.09873461130898,-2.3509263892029515,-15380786.433932189,-138709102.9161251,-60129571.51393181,29.50290422333032,-3.053619295271284,-1.2394898599117423,10.3759193733356 -2000 QM186,169261,60485.2027167642,2460485.7030890035,210734082.6118339,1.5036464215880885,260.29684714157827,-0.2604610566096901,-24.77383998650077,-0.0199352433311881,-24704625.485332176,-327943420.01781386,-148708236.43442407,18.558657117367257,2.1530391271410267,-0.8615332362638571,7544509.5670958,-139340699.97043294,-60402739.13470467,29.657813201481236,1.2794992671787375,0.5390971111341418,4.926842902077253 -2000 QM186,169311,60485.22596281841,2460485.726335003,210737164.40161204,1.564711726412894,260.290184684192,-0.2599656558503376,-24.7742967678146,-0.0193691092941747,-24667351.31987205,-327939093.8922583,-148709965.92920402,18.5587969530104,2.154898055386947,-0.86069027549215,7604067.777504999,-139338060.95595545,-60401651.79722032,29.64827224803778,1.3481867184414482,0.5436667226310523,4.938645227174193 -1992 SF17,169796,60485.95987688283,2460486.4602490035,404328027.757744,23.802344779401835,196.21835729977525,0.0812369070977439,-6.160092728158415,-0.0297359168329967,-376543861.8626676,-251519435.87867072,-103749731.61051898,8.673265365402413,-11.717807108050438,-4.281105106919894,9451924.04898759,-139243171.1753257,-60362548.328182936,29.292631197186765,1.1911147553464088,0.6881336623569413,18.539062349221982 -1992 SF17,169818,60485.971184949645,2460486.4715570034,404351297.52167225,23.83155523476391,196.21928130405587,0.0812484395592904,-6.160428884745962,-0.0297186853813168,-376535388.4215055,-251530883.2383736,-103753913.90002222,8.673752265520445,-11.717481957236592,-4.280970987305761,9480556.934361782,-139242002.6865366,-60361874.96554286,29.32052826157512,1.2011864875283762,0.6902798200378399,18.539912767265392 -2000 QM186,170376,60486.238924623896,2460486.7392970035,210881604.0858395,2.045899323499051,260.01112675856666,-0.2569502501167903,-24.795104433432133,-0.0183039092056937,-23042835.120812807,-327746951.86014605,-148783684.20597053,18.564691425810107,2.2359648168033472,-0.8239089032931642,10163954.483196056,-139207792.46318564,-60345313.34863618,29.609983088860915,1.844433075965776,0.741960285838695,5.443244431798812 -2000 QM186,170384,60486.24254275176,2460486.742915003,210882245.02192128,2.054764764240621,260.0101029369777,-0.2568349490440032,-24.795170509850976,-0.018222754270802,-23037031.92454272,-327746252.867825,-148783941.7335815,18.56471178081754,2.236254581463889,-0.8237773607649382,10173209.934456095,-139207214.29221693,-60345081.30369011,29.60683857065766,1.8547230635405036,0.7426753281191485,5.445072249138922 -2000 QM186,170426,60486.263196721,2460486.7635690034,210885955.7661028,2.103448202731345,260.00426772040487,-0.2560968607841538,-24.79554225163096,-0.0177805855303938,-23003903.218160607,-327742260.8105565,-148785411.08864045,18.56482788569912,2.2379087846003203,-0.8230264034789193,10226025.10450779,-139203853.04656383,-60343752.34757307,29.585176680747885,1.9119658003945328,0.746766127863001,5.45549798991002 -2000 QM186,170434,60486.26679731381,2460486.767170003,210886611.48071328,2.111569519981499,260.003252144227,-0.2559547934743956,-24.795606147556303,-0.017707507897513,-22998127.24803624,-327741564.49811774,-148785667.13168514,18.564848111833143,2.2381971980434985,-0.822895470961044,10235229.15249274,-139203256.67494497,-60343519.89776017,29.580769821253067,1.921647386444965,0.7474808585344298,5.457314067916968 -2000 QM186,171443,60487.25115415722,2460487.751527003,211064932.8958401,2.52059639967592,259.73528863556544,-0.2535709127111754,-24.815198567959317,-0.0172941402060997,-21418996.982809693,-327547856.426302,-148854129.35661292,18.570191859419303,2.3170943652347,-0.7870592149444199,12719208.286817305,-139037541.4050293,-60271682.05538493,29.560879608104383,2.337304198113283,0.9401158432628378,5.945468013018117 -2000 QM186,171493,60487.27527167573,2460487.775644003,211070242.24417928,2.574500374369219,259.7285636546485,-0.2526019123890697,-24.815609693671156,-0.0168097405095495,-21380302.30817753,-327543026.30191034,-148855768.42891395,18.570318143810137,2.3190287955472395,-0.7861800950079677,12780774.720572118,-139032603.05691445,-60269718.14307678,29.53088532102503,2.4019195906756936,0.9449035088848692,5.957577638964266 -2001 SF198,172111,60488.0745613417,2460488.5749340025,225168603.5596878,12.531332393977609,240.390007179958,-0.1418691837861325,-8.76069371868042,-0.0281456111062814,-95167145.3736072,-332348562.00202155,-94493937.28176908,17.840183849154492,-5.116325123690561,-2.072578231856168,14789206.092246458,-138868957.24321964,-60198990.95267683,29.472857528543937,2.293881174120692,1.101430952746119,14.8353440030803 -2001 SF198,172161,60488.098963502525,2460488.5993360025,225195096.5380521,12.600145778002217,240.3865046322425,-0.1418171131615664,-8.761378725260812,-0.0279975017347553,-95129533.2967601,-332359346.3359653,-94498306.17758876,17.840762079654684,-5.114305212120192,-2.0720039658552616,14851381.603321144,-138864056.48489565,-60196663.82661272,29.50657001848469,2.3559533040998843,1.1061230968582971,14.844072894383393 -1992 SF17,172896,60488.95877275518,2460489.4591450025,410539568.3418961,24.03578274548956,196.49755350075645,0.0941284683460247,-6.257292215230168,-0.0351821364655486,-374280067.0341521,-254544117.3394249,-104854273.6425322,8.80197846470049,-11.63107791362124,-4.245355106300505,17013240.436678037,-138655932.96598384,-60108174.086078286,29.18892373828253,2.5493701633890544,1.2750868756407965,18.730108183503717 -1992 SF17,172918,60488.97061368176,2460489.470986002,410564174.4171517,24.06628246724729,196.49867488457727,0.0941544980540343,-6.257708694762051,-0.0351631654590397,-374271062.52546126,-254556015.5259684,-104858616.48422743,8.802485034505771,-11.630733485459112,-4.245213228735733,17043117.228313025,-138653318.89768314,-60106868.442839645,29.21758374121689,2.5612754384354144,1.277334904260781,18.7308323580001 -1992 SF17,173052,60489.03290189512,2460489.5332740024,410694122.3880991,24.22396608947377,196.50458900651637,0.0947318136703425,-6.259895879539811,-0.0350672985068636,-374223686.9901978,-254618598.52856025,-104881459.02692084,8.805149562825331,-11.628921411234495,-4.244466807791217,17200739.702549506,-138639299.04573786,-60099962.35855648,29.355290025065425,2.65818081766184,1.289190065627549,18.734629177515885 -1992 SF17,173102,60489.05675780356,2460489.5571300024,410744110.8529771,24.279858422206807,196.50686720276244,0.0951413840963745,-6.2607320702249725,-0.035036745070852,-374205538.6006336,-254642564.92186248,-104890206.5423222,8.806169968648753,-11.628227281806632,-4.244180890853513,17261291.928494412,-138633768.8829062,-60097300.43573494,29.399233849641263,2.709024798302449,1.293750896352915,18.73607186217069 -1998 WD8,174720,60490.34074194592,2460490.841114002,320475498.6538336,-19.82905732091796,341.68554494123407,0.0407168764280967,-15.958496571151564,-0.0360793458205488,313012306.1545022,-235091486.167569,-148051628.19213933,11.359594574015594,12.609184076300917,4.7509406685072095,20495257.126791254,-138268844.3851951,-59939782.76926112,29.240547942615496,3.915133737065969,1.545215075286679,18.26620268733364 -1998 WD8,174770,60490.36519018611,2460490.865563002,320433679.59366834,-19.76543017026816,341.6865766176327,0.0404489542835669,-15.959376221427714,-0.0358777011872285,313036302.4109986,-235064847.90052217,-148041591.07525238,11.358397326974211,12.61008295670342,4.751506802898969,20556965.113712527,-138260532.01726782,-59936513.47779951,29.183453482033386,3.953533699889628,1.5501297010562085,18.261794860126194 -1998 WD8,174781,60490.37031059925,2460490.870683002,320424939.1263203,-19.75198694618958,341.68679191571454,0.0404113944836717,-15.959559805851802,-0.035834952543512,313041327.27838534,-235059269.19445667,-148039488.996105,11.358146592672238,12.610271183744462,4.751625355639185,20569872.19085448,-138258781.55120897,-59935827.52214617,29.171002311178142,3.960473059236408,1.5511601035075493,18.26087131195008 -1998 WD8,174822,60490.39125984777,2460490.891632002,320389238.584921,-19.696998137692027,341.6876712968309,0.0403250056544635,-15.960308678978596,-0.0356601059249528,313061885.8763741,-235036442.48664385,-148030887.58023122,11.357120643776186,12.61104128887676,4.752110409695111,20622624.48314341,-138251590.15932232,-59933016.11453873,29.11870327152825,3.984723064646973,1.5553794244497716,18.257091866809905 -2001 SF198,175215,60491.084973102894,2460491.585346001,228569133.8622844,13.5309584671057,240.01497126620325,-0.1215565311588913,-8.855867813836852,-0.0352653453249762,-90517999.25865602,-333646822.7263051,-95023763.90532053,17.90975004288841,-4.866795073495522,-2.001576425750906,22353041.184288885,-138030420.6991185,-59835691.46848374,29.32689538214181,3.691676662098734,1.6904966847591163,15.864527125650056 -2001 SF198,175263,60491.1086784589,2460491.6090510013,228596915.4164129,13.597527509917752,240.01205720738025,-0.121340110385405,-8.856702053713487,-0.0351200598100652,-90481319.19877893,-333656788.0011406,-95027862.5984026,17.91028367579444,-4.864827534487294,-2.0010161007947347,22413134.18846495,-138022795.07339555,-59832224.46750565,29.35314553533568,3.7555112626666847,1.6950644043341705,15.872614200825485 -2001 SF198,175313,60491.13293707583,2460491.6333100013,228625486.5387756,13.664593569905849,240.00908285371747,-0.1209189692657933,-8.857552263398075,-0.0349753780084468,-90443780.78109342,-333666981.99616617,-95032055.89133602,17.910829550861603,-4.862813971269238,-2.0004426611445445,22474678.502349265,-138014851.8262923,-59828666.7343798,29.371491659914188,3.824514962791609,1.6997588602443563,15.88088569149058 -2000 QM186,175463,60491.2052091824,2460491.705582001,212147631.1081044,4.15781968753659,258.6937132982952,-0.2403321465557252,-24.88765854504891,-0.0155951455284088,-15071724.698147086,-326701998.0611033,-149098308.67014515,18.587911170912207,2.6351504878657552,-0.6422114670515269,22658126.275180064,-137990303.1012051,-59818008.963697016,29.37154253963526,4.0386398092900375,1.7138731874562358,7.880139944304387 -2000 QM186,175513,60491.2296752954,2460491.7300480013,212156484.9149872,4.218270746338778,258.6872412065212,-0.2395701229647027,-24.888033220804928,-0.0150403717646849,-15032432.86481374,-326696425.70725113,-149099665.2457807,18.588002000476656,2.63712404935193,-0.6413107657586758,22720195.59181973,-137981690.85741213,-59814380.978699215,29.352900965264453,4.10927428690327,1.7186953983386497,7.892157973595574 -1998 WD8,175903,60491.41629244073,2460491.9166650013,318650254.5828849,-19.43211139699331,341.73406537881425,0.0348275047344178,-15.99825417036412,-0.0377441565287749,314065545.1664819,-233917833.5553033,-147608949.52824378,11.306834535699757,12.648634303664622,4.775811650469475,23190882.32274354,-137912054.26617673,-59786369.26344861,28.97876243398643,4.456146066868544,1.7560306757853754,18.074943037708373 -1998 WD8,175905,60491.41719804266,2460491.917571001,318648733.5849613,-19.429809957020247,341.7340982060722,0.034832268419063,-15.998288363271852,-0.0377368854805296,314066430.30299085,-233916843.37511617,-147608575.66035587,11.306790014235649,12.648667454612209,4.7758325712141385,23193150.64129253,-137911705.42666405,-59786231.797044285,28.976401731694416,4.456643607193325,1.7562132490601343,18.07477444016217 -1998 WD8,175925,60491.4277020255,2460491.9280750016,318631112.47509646,-19.40340147389028,341.7344791816193,0.0349016903201384,-15.998684313111584,-0.0376537951837017,314076692.1618376,-233905363.21487305,-147604240.98382336,11.30627383074984,12.649051790852315,4.776075118924459,23219435.62187246,-137907658.502566,-59784636.99285083,28.94901654061176,4.461455238080994,1.7583300281303895,18.07282025640133 -1998 WD8,175927,60491.42860293984,2460491.928975001,318629603.7800368,-19.401164152421455,341.7345118621231,0.0349088437926496,-15.99871819836779,-0.0376467879569858,314077571.3927942,-233904379.55985767,-147603869.57145298,11.306229602483487,12.649084720560312,4.776095900495163,23221686.605869707,-137907311.56692755,-59784500.25807615,28.94667091246993,4.461785566504211,1.7585113970861477,18.072652866673444 -2001 SF198,176149,60492.039852946175,2460492.540225001,229698888.13455603,13.717632657752567,239.90945336862853,-0.1145439830264325,-8.890582981929489,-0.0378716375977466,-89039602.8107204,-334045052.3824703,-95187958.06609656,17.931070667023395,-4.787507220911633,-1.978990574384404,24740407.127386272,-137689574.49198878,-59688453.12396716,29.187768544819097,4.039549148618947,1.877313938479969,16.179839658521587 -2000 QM186,176498,60492.20155635008,2460492.7019290016,212511539.39725897,4.5768874362029175,258.4415588376962,-0.2360688339656156,-24.904469474413936,-0.0150676581235393,-13471464.581381822,-326471695.11842966,-149152012.25417763,18.591421608096944,2.715575818415798,-0.6054875739382223,25149409.121774036,-137630170.29643154,-59662007.25752833,29.296938464596945,4.485310297044636,1.90859903056754,8.359444472137415 -2000 QM186,176506,60492.2051704231,2460492.705543001,212512969.9864146,4.586044933574669,258.4406184164436,-0.2359683212800191,-24.9045237761135,-0.0149832296950766,-13465659.504989233,-326470847.1484066,-149152201.29367813,18.591433636886915,2.7158677437100573,-0.6053542034563877,25158556.747584585,-137628768.10485944,-59661411.18747869,29.29478783387276,4.49590620037348,1.9093090260444792,8.36120712748749 -2000 QM186,176548,60492.22584068312,2460492.726213001,212521206.0745192,4.636827039205842,258.43524813403866,-0.2353093747036431,-24.90482861531745,-0.0145178357988301,-13432457.736438924,-326465995.4962732,-149153281.69060314,18.59150233665538,2.717537416484189,-0.6045913783136796,25210860.484013557,-137620685.41549644,-59657997.74347906,29.27860616801356,4.555509719644014,1.9133789668479737,8.371280947462358 -2000 QM186,176556,60492.22943181704,2460492.7298040013,212522646.05742705,4.64534004452084,258.43431675753067,-0.2351807465062005,-24.904880609455837,-0.0144403721647519,-13426689.579640005,-326465152.31458,-149153469.2490986,18.59151425486025,2.71782749366096,-0.6044588487318101,25219944.001023717,-137619270.43680084,-59657403.98399197,29.275132564099877,4.565652157556195,1.9140876047770836,8.373029628224062 -1992 SF17,177102,60492.99511002275,2460493.4954830008,418976827.6428771,24.366576149722544,196.93327600587932,0.1109515544039812,-6.413423894661955,-0.0420718759298975,-371180696.5384761,-258579431.95837644,-106326207.16778244,8.973903129694305,-11.512769694095397,-4.19666508081058,27122848.04326915,-137312839.53857127,-59525758.04391518,29.0222646553896,4.408309518118984,2.064007599959881,18.92239160925294 -2001 SF198,177282,60493.08140440486,2460493.581777001,230957712.87571785,14.137685816353908,239.8008647071611,-0.1076209138291429,-8.930903115877001,-0.039919874319698,-87425028.30358455,-334471966.5190825,-95364929.549578,17.953917106363118,-4.700948907646212,-1.9543199150990505,27339842.39874021,-137279330.4929872,-59510307.99891755,29.172466621682663,4.594767007659884,2.0804590216681165,16.518252551980744 -2001 SF198,177332,60493.10432647012,2460493.6046990007,230985775.9227221,14.201722519887795,239.79836984511712,-0.1073925008719006,-8.931816534021529,-0.0397783779326107,-87389472.46318328,-334481274.2361511,-95368799.28223076,17.954415095273042,-4.699043120792806,-1.95377657078864,27397642.82173597,-137270170.0273735,-59506183.37174124,29.19697047868637,4.6567138263886845,2.084864584151643,16.52579873366022 -2001 SF198,177338,60493.106822114205,2460493.607195001,230988839.38186476,14.208654357515409,239.798098547656,-0.1073568059001223,-8.931915801829744,-0.0397631311606986,-87385600.69171311,-334482287.5351479,-95369220.59642452,17.954469309302148,-4.6988355955086805,-1.953717404423752,27403939.5179084,-137269165.036253,-59505733.70961338,29.199181480742578,4.663677105575552,2.085345375839943,16.526620233417855 -2001 SF198,177388,60493.12957205908,2460493.629945001,231016829.90660968,14.27100810550655,239.7956307229939,-0.1069348317316414,-8.93281885464693,-0.0396271594280488,-87350310.5786406,-334491521.2679758,-95373060.11059491,17.954963334347354,-4.6969440696219085,-1.9531781183415744,27461350.279100493,-137259934.6378272,-59501630.4410004,29.215016366228717,4.728688631797037,2.0897376731683286,16.53410450486148 -2000 QM186,177558,60493.21054825881,2460493.710921001,212916846.9896257,5.0230942196767545,258.1909676136167,-0.2311595265791579,-24.920946864018745,-0.0142828887886696,-11850606.434255004,-326231409.11529374,-149203171.61344656,18.59458160853444,2.797134932908873,-0.5682060125146776,27665775.174116086,-137226012.9777867,-59486954.8659192,29.205417431778564,4.968090988454378,2.1055261758347883,8.840934074038138 -2000 QM186,177608,60493.23367369584,2460493.734046001,212926938.9754463,5.07813123408003,258.1850832727562,-0.2303423536698282,-24.9212712776058,-0.0137818380579151,-11813455.01906834,-326225818.66494924,-149204306.01513973,18.594649359159924,2.7990055025302114,-0.5673504826822859,27724107.3780012,-137216020.72511563,-59482743.47917771,29.18383556053113,5.033689335851687,2.1100793639677224,8.85210185710483 -1998 WD8,178028,60493.43292514957,2460493.933298001,315281860.81678134,-18.969424485666977,341.8078035419263,0.023764783425185,-16.080020697998414,-0.0421813973650745,316027089.42665094,-231707420.92303708,-146772722.4754694,11.207409362388386,12.722088102024667,4.822254625460593,28223298.154167764,-137125782.47786024,-59446076.15086201,28.75835629117183,5.362131786485148,2.149878362866574,17.698976908573343 -2000 QM186,178654,60495.2379085837,2460495.738281,213841155.03603145,5.917605605775888,257.7034828831845,-0.2200009672672872,-24.952566419041084,-0.0126740674946899,-8593090.44588459,-325727085.1638272,-149296119.5406975,18.59972219340278,2.961350257393988,-0.4930193072695237,32697865.26308929,-136294338.8795756,-59083419.77514342,28.97821795935568,5.953933175687759,2.499867601059542,9.79508614835871 -2000 QM186,178704,60495.262095230486,2460495.762468,213853574.80171305,5.967504535790573,257.6976283377477,-0.2188914338943028,-24.952867514181623,-0.0122338291526629,-8554222.26704738,-325720894.734481,-149297148.87100935,18.59977373479195,2.9633120973918534,-0.4921200838962064,32758387.931282084,-136281829.91938,-59078190.685643785,28.94362371244413,6.016942840396945,2.5046312501913257,9.806514586404871 -1998 WD8,179028,60495.42004746927,2460495.92042,312035179.99161094,-18.551520261019693,341.85731837345304,0.0123084229369255,-16.169791423489944,-0.046816120041254,317942924.9917557,-229516895.35325143,-145940838.94066858,11.10880337569652,12.793807119413517,4.867774029332321,33151095.706236526,-136197704.2775836,-59043795.828789495,28.580380569855965,6.253398197852551,2.536062189466241,17.305428219284483 -1998 WD8,179050,60495.43159257562,2460495.931965,312016689.64267206,-18.52305505029833,341.8574669917414,0.0124241461111022,-16.17033138374507,-0.0467245925603633,317954006.28910905,-229504132.688604,-145935982.96288994,11.10822864899276,12.794221878414607,4.868037780518551,33179589.121549763,-136191465.1116969,-59041264.98688145,28.54999150995052,6.2560044728335065,2.5383684615802955,17.30301136452501 -1998 WD8,180990,60503.38702894039,2460503.887400998,299840876.95269006,-16.55486645648317,341.81845849118884,-0.0340888612007276,-16.61857337302914,-0.0643530679194919,325452436.05873084,-220612500.7140489,-142527730.7837316,10.707216051523805,13.07469162728951,5.047794319228782,52480897.132946245,-130961462.10393526,-56773537.27475497,27.4823187391798,9.739474584303016,4.048491492642196,15.49552160760054 -1998 WD8,181033,60503.40788660944,2460503.908258998,299811091.6553184,-16.50165055004026,341.81771831925306,-0.0339009642914276,-16.61991366464758,-0.064164682933341,325471731.9726635,-220588936.45620352,-142518633.0750249,10.70615171490222,13.07541286713858,5.048260323853822,52530373.01131108,-130943903.42307992,-56766237.77102176,27.42592083432675,9.745942181763244,4.052476466500847,15.490179072357169 -2000 QM186,181120,60503.960730688894,2460504.4611029974,219392265.1912476,8.677331909774036,255.90247233708288,-0.1653155954012388,-25.07357236238477,-0.0159940746005189,5427482.348391905,-323227703.24631554,-149544632.0405583,18.60310924358384,3.6728411013674567,-0.1653732306065569,53829779.65278773,-130494882.55810824,-56570208.29418095,27.549722203604883,9.219934302647149,4.154050839563665,13.649399908874784 -2000 QM186,181142,60503.97253602735,2460504.472908997,219401127.8422304,8.699590336457211,255.90031479557305,-0.1657346274065827,-25.073760054006566,-0.0157992790105985,5446457.674868205,-323223956.4220452,-149544800.4941405,18.603092908750018,3.673809285940319,-0.1649252829286287,53857893.902220026,-130485468.29100028,-56565969.92606527,27.574008932313003,9.239045919109362,4.156162704360756,13.654380540059403 -1998 WD8,182001,60505.25198735829,2460505.7523599965,297198414.0844366,-16.323996366861714,341.75481376144006,-0.0443554511094848,-16.743152307195288,-0.0696360828237298,327170128.97200286,-218500448.26668927,-141710971.65569195,10.611787205990831,13.13888473617945,5.089349712090327,56879292.100081824,-129397074.22069705,-56093510.98906832,27.435756128913155,10.397522113693237,4.390467352644521,15.019773837684374 -1998 WD8,182002,60505.25243578651,2460505.7528079967,297197782.2578594,-16.322918694956797,341.7547930076706,-0.0443674046599026,-16.743183503317102,-0.0696322698216278,327170539.7466542,-218499939.6691081,-141710774.65023756,10.611764218038664,13.138900084947666,5.089359667448426,56880354.04536284,-129396671.74165036,-56093341.0446971,27.43490950675424,10.398552166513849,4.390550854341883,15.019654368502716 -1998 WD8,182051,60505.27667949025,2460505.777051997,297163653.9899591,-16.262544668014947,341.75366215200506,-0.0449432102104082,-16.74486908107818,-0.0694156785440104,327192767.920354,-218472415.49191424,-141700112.9188973,10.610520155141025,13.139730648182129,5.089898392638045,56937771.05410103,-129374834.05966544,-56084139.50032599,27.385721085398497,10.450908603571676,4.395077339592122,15.013182770737282 -1998 WD8,182052,60505.27712950303,2460505.7775019966,297163021.7340647,-16.26138997263881,341.7536410298296,-0.0449525452306801,-16.744900317170174,-0.0694114883011185,327193180.47905463,-218471904.59153312,-141699915.0128586,10.610497062892742,13.139746063543148,5.089908391705619,56938835.79133616,-129374427.71099262,-56083968.61819684,27.384748884993865,10.451814338483398,4.395161491957654,15.01306254206474 -1992 SF17,183914,60509.95939686034,2460510.459768995,454711108.3032402,24.305667613435052,199.4543356985747,0.1727015407027742,-7.352116442809369,-0.06703667181443,-357508020.77542144,-275077621.5940908,-112323049.79451244,9.679750247978198,-10.995973980029824,-3.9849272669548794,67717381.12601721,-124878701.38118084,-54135130.43836927,26.382542997700707,11.72887826687086,5.232742571226203,18.989842264267235 -1992 SF17,183935,60509.97028471335,2460510.470656995,454733985.8746592,24.331722825912173,199.4562322326184,0.1728087764387356,-7.35284620450777,-0.0670122423487903,-357498915.3403448,-275087964.7614508,-112326798.1380334,9.68019448787058,-10.995632235525418,-3.984787724007574,67742209.58287093,-124867658.6642488,-54130207.00456856,26.40317569263769,11.748465194114344,5.234595679806824,18.989582798276565 -2001 SF198,184473,60512.12309317165,2460512.623465995,258170377.37419623,18.752502469789817,239.20155162482604,0.0294920003706606,-10.05707923488275,-0.0745982532164184,-57587680.178629786,-340897154.6017112,-98205671.54514822,18.29620667854075,-3.106986468544525,-1.4974998983566226,72569444.6962707,-122543102.02009653,-53121590.995358855,26.080359525527225,12.95788669898696,5.608057560927295,21.452715088942437 -2001 SF198,184545,60512.15676332662,2460512.657135995,258225036.6595912,18.823118606718403,239.20258098829052,0.0307570492311642,-10.05958792432004,-0.0744245659240971,-57534457.54462906,-340906188.40812755,-98210026.44284172,18.29668520775608,-3.1041519220957787,-1.4966833649807132,72645289.13245049,-122505263.73677333,-53105268.20564405,26.059760301553784,13.055510320544863,5.613878347064556,21.459512811200664 -2001 SF198,184595,60512.1806199396,2460512.6809919947,258263879.909559,18.86564704063103,239.20333863055052,0.0318029420842497,-10.061362191649758,-0.0743274619409149,-57496747.20179757,-340912584.0838907,-98213110.55366164,18.29702398621346,-3.102143550794264,-1.496104814850367,72698977.90281649,-122478285.0928249,-53093692.84127776,26.03453272019782,13.12213613272998,5.618026939548866,21.464303901053466 -2001 SF198,185515,60513.13139772396,2460513.6317699943,259792832.15991095,18.944833517742623,239.24176981438825,0.0366181863546981,-10.13374453798256,-0.0758882825448809,-55993241.4617802,-341164112.70125896,-98335056.42148706,18.310343074140874,-3.0220815516940585,-1.4730354516241546,74796418.0967036,-121398307.98236376,-52625411.15377592,25.837194483038484,13.385040329116586,5.78086634210138,21.647212789636544 -2001 SF198,185808,60514.02937495805,2460514.5297469944,261248771.6396524,18.8618085964066,239.28419620345065,0.0410860426001354,-10.203215567481486,-0.0778524079108949,-54572241.26960867,-341395632.6173836,-98448489.19809836,18.32259481827577,-2.94643335501636,-1.4512272294582806,76758149.62363857,-120348957.09204993,-52170888.24199922,25.56770006420302,13.495184035725362,5.933705246716418,21.814210181638007 -2001 SF198,185858,60514.05359098071,2460514.5539629944,261288303.3954913,18.92575063805243,239.28521019505465,0.0413643101171271,-10.205098718853868,-0.077677682105281,-54533907.66989676,-341401794.8050343,-98451524.73892368,18.32292080664881,-2.944392903568763,-1.4506388550093166,76811666.27914648,-120320654.27139685,-52158469.15132196,25.58761972092198,13.56022785602741,5.937744570810352,21.818837325373423 -1998 WD8,186043,60518.365990130354,2460518.866362993,281293961.3556396,-11.59946296694668,340.713233705124,-0.118305996304287,-17.79567251635115,-0.0892082680842024,338808238.8931346,-203363828.1709919,-135781256.3138628,9.9259602277153,13.573211836845603,5.375062604207267,86005114.35059808,-114898978.89136472,-49811242.014622025,24.033551679311124,15.759338777741922,6.65677602170729,11.149787708148091 -1998 WD8,186088,60518.387651328165,2460518.888023993,281272303.90397,-11.545708117229877,340.7105461263409,-0.1179492944682967,-17.79760233382554,-0.0889785802810706,338826815.0689638,-203338424.1362011,-135771196.00771186,9.924806428274405,13.57390416761168,5.375524903611809,86050036.9847231,-114869485.22797568,-49798780.35448938,23.97348715932445,15.757999168835056,6.660445899731775,11.142599844126568 -1998 WD8,188066,60524.394038930586,2460524.894410991,275777275.0763689,-9.12897678634019,339.9057283714604,-0.1473977723171514,-18.357668450303155,-0.0942533152644621,343894023.4255832,-196244719.5969948,-132948413.166684,9.602270131501063,13.762635716902327,5.502456571454719,98083982.09564029,-106318884.37390646,-46092940.17074096,22.11364759449605,17.929619101235126,7.610998513454001,9.12353903167224 -2001 SF198,188172,60524.967865455306,2460525.468237991,279811771.0037284,20.25388284922977,240.21866336282417,0.1110259804350136,-11.123076623120088,-0.0896764649060655,-37194792.14799119,-343743944.9640753,-99693930.22406057,18.446283628769745,-2.022826232285507,-1.1841358998223326,99174537.66122276,-105449717.25826325,-45713432.61872832,22.383771212061585,17.494707111804413,7.696974375080202,23.45654582930524 -2001 SF198,188193,60524.97937505204,2460525.479747991,279831927.8653381,20.2833610619499,240.2199656472569,0.1110164615164016,-11.124108284119297,-0.0895867801089136,-37176449.171476685,-343745955.97135204,-99695107.58434892,18.446388910844657,-2.021852676876972,-1.1838535604517504,99196804.84904286,-105432306.19798484,-45705777.41269808,22.39824335535239,17.52148179634846,7.698668429735728,23.45797529113524 -1998 WD8,189285,60526.3004658234,2460526.800837991,274295483.26398087,-8.517258248403968,339.6120984827739,-0.1578013234519739,-18.541387921073536,-0.0963728300926587,345467199.1058508,-193972904.46693495,-132038769.27797943,9.4988271183408,13.821177602037976,5.542213937958895,101700423.88694116,-103375441.32555684,-44815658.173519365,21.70607947362831,18.612768358850197,7.89676313968323,8.464724655329107 -1998 WD8,189335,60526.324555290885,2460526.824927991,274277825.0124179,-8.451105227476809,339.60809083685695,-0.1576221077536798,-18.54370559234509,-0.0960471428657341,345486968.9330297,-193944135.82053256,-132027232.9995711,9.4975167324675,13.821913122779216,5.542714665479704,101745530.93723288,-103336685.08883588,-44799218.18101145,21.637266235556908,18.626670044541005,7.90047168207396,8.45619472272312 -2000 QM186,189904,60527.12754119473,2460527.62791399,244026514.87423807,15.255927136024631,254.0201183830239,0.0087443124422923,-25.41625663852504,-0.0164857628104969,42554769.981541246,-313959125.9139312,-148981072.60410765,18.457212290685764,5.5958840896440325,0.735691075344559,103233065.64758033,-102067985.2860976,-44246985.88842971,21.73943781387998,18.626292833361887,8.017586891723237,21.398645430587862 -2000 QM186,189954,60527.15171080865,2460527.6520829904,244058423.6606233,15.303212182567822,254.0203650443758,0.0097158653969561,-25.416650131015903,-0.0160846262210663,42593310.10952688,-313947439.05789834,-148979535.40636513,18.4569372710766,5.597911303101289,0.7366530602366028,103278429.67335686,-102029021.98220134,-44230239.81272941,21.707069946276665,18.690662663873688,8.021169909383975,21.40484497221009 -2000 QM186,190019,60527.18128955398,2460527.68166199,244097600.00051343,15.353111236029385,254.02070519693416,0.0110884974455829,-25.41711955705985,-0.0156712483928078,42640476.28650193,-313933130.4529865,-148977651.3883769,18.456600331640143,5.600392338214498,0.7378304348748495,103333842.43186024,-101981161.02694131,-44209735.07628737,21.65629470004977,18.763445588668983,8.025579873666771,21.412399047633414 -1998 WD8,190253,60527.29542872531,2460527.7958009904,273575400.4360573,-8.097800997476396,339.451692898362,-0.1621224128810097,-18.637902915286038,-0.0967753947780796,346281458.5087054,-192783433.1930538,-131561432.67659792,9.444638262407109,13.85146802382033,5.562860444080845,103546108.68247366,-101795067.96983512,-44130505.29679614,21.37499935990277,18.94815469943295,8.042784217586435,8.119068105232746 -1998 WD8,190303,60527.32007870435,2460527.82045099,273558226.92412335,-8.02987057090285,339.44747730776186,-0.1619453703716447,-18.64028421573933,-0.0964358725420678,346301572.43129885,-192753931.30129075,-131549584.25692566,9.44329399436023,13.852216170879569,5.56337105781484,103591557.41756973,-101754695.38726668,-44113372.119337365,21.30450696197105,18.96303828352118,8.046519734920626,8.110324421711987 -1998 WD8,192063,60529.21821533509,2460529.71858799,272288158.34948075,-7.433946152288517,339.1295740676823,-0.1698368889631977,-18.82522814850791,-0.0982262928693377,347841801.4018556,-190477416.776453,-130633956.187966,9.33952746477849,13.909492570907144,5.602559066417746,107028658.0224766,-98662215.78813224,-42771336.03258457,20.87137317676317,19.510787923403925,8.317711981125633,7.451512259202258 -1998 WD8,192113,60529.241934032696,2460529.7423069896,272272991.4599818,-7.36772709841674,339.12531382020285,-0.1701445864391639,-18.827553953050035,-0.0978851856643533,347860940.23815185,-190448910.320824,-130622473.95944336,9.338227652747332,13.91020412011382,5.603047116079808,107071370.28630534,-98622189.96934517,-42754286.824033335,20.812125993098483,19.550451134665938,8.3211703887389,7.443119052258129 -2001 SF198,192568,60529.98951572502,2460530.4898879896,288738904.48362654,20.807202078124263,240.8987733957624,0.140451337442872,-11.581465186912858,-0.0929051763863513,-29182795.331008505,-344529357.0422654,-100180902.75326306,18.48725467361851,-1.5978388793231464,-1.0607261754141737,108387443.75525016,-97376871.50221008,-42213384.50789395,20.71280286452525,19.246782536386316,8.425268055430397,23.975478711569625 -2001 SF198,192618,60530.01341784297,2460530.513789989,288781938.18877274,20.8681065408984,240.90220279506963,0.1406861169915791,-11.583683478636322,-0.0927109375071224,-29144619.173617862,-344532654.47159874,-100183092.533303,18.487425907142605,-1.5958150320365672,-1.060137716828615,108430236.14413288,-97337059.84438977,-42195981.85114645,20.728552813598263,19.309854594798463,8.428524545316684,23.97777412256938 -2000 QM186,193835,60531.13038164903,2460531.6307539893,249351935.02357084,15.958212553695796,254.15603732910327,0.0396390823763924,-25.493681512964717,-0.0179803872355869,48929492.134456016,-311965803.96025443,-148699033.97503743,18.40804496847545,5.932108847521237,0.8955967109370203,110378639.47030784,-95443383.68893272,-41375078.99971521,20.31265230568665,19.95953712960741,8.581876640429398,22.34226200726773 -2000 QM186,193885,60531.154405991365,2460531.6547779893,249385106.06204543,16.00146206269183,254.15710562513163,0.0406589351497923,-25.49410901430032,-0.0176183255607743,48967698.86016741,-311953489.3969623,-148697174.10768586,18.407727780475707,5.934129582420344,0.8965599220240593,110420764.40176123,-95401889.9801086,-41357262.37341643,20.2751609701034,20.02069510487548,8.585205384306542,22.34772200821945 -2000 QM186,196148,60543.11315233727,2460543.613524986,266446258.59512943,17.411236224718287,255.3376348188333,0.124792126892784,-25.762477084401198,-0.0220686860174539,67893130.88829297,-305301601.0505841,-147521459.7801782,18.216415605622714,6.943481483597324,1.380965868476705,128633038.56469576,-73153702.03234032,-31712887.920319904,15.55590548378829,23.314299556220504,10.018555054928736,24.51031038149336 -2000 QM186,196198,60543.13721034336,2460543.637582986,266482492.21652672,17.44977091370229,255.34098160078696,0.1257976518366051,-25.763004072837308,-0.0217505042113874,67930993.06017625,-305287166.9739851,-147518588.43286017,18.215962462353733,6.94551792450128,1.3819499016314851,128665328.81116185,-73105181.11625555,-31692060.54749691,15.511872558459478,23.370742340949302,10.021148027603196,24.513856572410116 -2000 QM186,196950,60544.03954102843,2460544.539913986,267821855.50637257,17.353622206173547,255.47515042808587,0.1291550190943083,-25.785252921163405,-0.023531852889022,69350385.76891805,-304742738.15262455,-147409416.5459857,18.19876545664053,7.0219112905879175,1.4188839064125256,129832038.5768222,-71295266.63866019,-30907081.7872469,15.213733782437345,23.364731590329143,10.114236442221484,24.639101334035843 -2000 QM186,197000,60544.06401857104,2460544.564390986,267858613.6445816,17.407111576936593,255.47866918744447,0.1297593111312247,-25.785823308000595,-0.0230791353535343,69388870.01986857,-304727886.7930464,-147406414.98553976,18.198293497739243,7.023983927799731,1.4198865050892922,129864193.9811786,-71245783.39733532,-30885689.407270573,15.194381499061082,23.431843236442187,10.116758389419209,24.64261539607432 -1998 WD8,197182,60544.24833628226,2460544.748708986,267186279.8324124,-0.3622606275498221,336.175605325724,-0.2071747340687295,-20.240623936134263,-0.0860603272121207,359428882.55371994,-172130541.3411449,-123161131.5700643,8.500693957004351,14.339445249428104,5.90351653866922,130103496.9576275,-70869340.12623459,-30724424.681506436,14.798427607877276,23.782093827745268,10.13630677906776,3.493107128426556 -1998 WD8,197232,60544.27091212456,2460544.771284986,267185634.0361384,-0.3002771427761642,336.1706235000071,-0.2068832941388216,-20.24256248645871,-0.0856777221602252,359445462.4892134,-172102570.67193025,-123149615.928112,8.499411688454733,14.340059132725637,5.9039558291249925,130132297.63458976,-70822938.58053885,-30704650.770014465,14.731992567177311,23.79406933624609,10.13873953922489,3.491882495647243 -1998 WD8,197272,60544.289593986105,2460544.789965986,267185189.4111479,-0.2510328822896646,336.1665075821014,-0.2065353681849181,-20.24416018144115,-0.0853750048896258,359459180.0223538,-172079424.83469924,-123140086.4146158,8.498350598457808,14.34056703041835,5.904319299971425,130156030.9929454,-70784530.24623351,-30688284.830333497,14.67668551272628,23.797840168297533,10.140752674871678,3.490886989607832 -1998 WD8,197301,60545.30498079835,2460545.8053529854,267168905.44525063,0.2647086076697786,335.94947216479807,-0.2068849045373768,-20.331252604232635,-0.0835223269592141,360202204.1412451,-170820126.19237098,-122621238.07839537,8.44060909488687,14.36807342358973,5.924035157567549,131426942.18039988,-68720977.45279714,-29794154.863342844,14.19455792300846,24.02712330002671,10.242842509187264,3.4676155058568727 -1998 WD8,197351,60545.328949925,2460545.8293219856,267169512.1406107,0.3203043440606965,335.9441924149029,-0.206192214702903,-20.333250397065516,-0.0831818951729851,360219682.5509885,-170790370.39767548,-122608969.39697523,8.439244476337882,14.36872036094575,5.924499609224498,131456266.14452724,-68671228.20705888,-29772940.131670427,14.125560476601503,24.016912744588964,10.245359770878052,3.467618367480464 -2000 QM186,200531,60549.0432418313,2460549.543613985,275359356.6984026,17.755232906948283,256.3212348218217,0.1612881692035425,-25.91068309592595,-0.0241999284059365,77195890.61000565,-301615571.622959,-146751629.71957624,18.09623851412546,7.445955350695877,1.6246033146525884,135766591.38420892,-60961318.88878379,-26427987.10046104,13.01580158792067,24.51357312565243,10.594074627337008,25.249151090861343 -2000 QM186,200581,60549.06792710815,2460549.568299985,275397282.87362003,17.806273779329768,256.3256704159558,0.161973418027,-25.91127513759712,-0.0237719571588403,77234484.67883308,-301599689.073775,-146748163.77009678,18.095702381594958,7.448048900502333,1.625621964324622,135794325.46300587,-60908964.2704231,-26405388.9344543,12.988971429883248,24.579126682240965,10.596307922963849,25.25195948039011 -1998 WD8,201564,60550.087518927896,2460550.5878909845,267655921.0321521,2.076124928674991,334.92190273446687,-0.2072491780439479,-20.717577591081,-0.07781679342623,363633492.9967809,-164856728.9422989,-120154343.7209786,8.166892178880659,14.494980679114017,6.015827602530995,136885487.50429058,-58745883.063708656,-25467900.89162072,12.505630634296914,24.836297316363343,10.685572837353174,4.02220445647024 -2001 SF198,203183,60561.00651885256,2460561.506890983,346160182.5257819,21.697066069795707,248.01281422130597,0.2839697720853278,-14.554541887139315,-0.0926088573482973,20485864.9619468,-345291056.316534,-101994411.96216136,18.52038612922985,1.0279752092581775,-0.2911859854580259,145928887.2665073,-34608646.07229226,-15003837.264617575,7.35991110452821,26.427154837312987,11.42945992269976,24.516229775278784 -2000 QM186,203197,60561.01288332519,2460561.5132559827,293845315.4033865,18.165256240035852,259.02876345473857,0.230413168548398,-26.21800712516409,-0.0240731775111474,95762851.51637734,-293390370.62057763,-144814834.36427,17.800656934541603,8.461931265270719,2.1224788346379677,145932933.1594255,-34594108.25293407,-14997551.70520589,7.354033088714399,26.44377823604617,11.429780676301124,26.147314131519938 -2001 SF198,203233,60561.0306911931,2460561.5310639828,346205549.7300516,21.74476908983492,248.0199133939832,0.2845601016430793,-14.556778170460886,-0.092417622459244,20524542.73136568,-345288907.36559445,-101995019.443916,18.52026482614272,1.0300156306078383,-0.2905833000844048,145944233.5529862,-34553386.18715996,-14979965.021919178,7.334231313567431,26.489550277844565,11.430685397294768,24.515274795783103 -2000 QM186,203247,60561.03699275545,2460561.537364983,293883207.3361497,18.2145139028836,259.0349630811626,0.2309973249288218,-26.218582493600582,-0.0236625765202944,95799927.65120932,-293372743.2055022,-144810412.4190822,17.799988534017285,8.463978072309866,2.123489149094404,145948224.15850037,-34538960.7795063,-14973741.995617555,7.326059472986162,26.50541052263278,11.431008053851077,26.148534645988324 -2000 QM186,203268,60561.04790460416,2460561.5482769827,293900390.53370327,18.23548506849502,259.03777465741666,0.2313064346201746,-26.21883973943883,-0.0234878718419465,95816708.25949906,-293364763.4422642,-144808410.30631566,17.799685910742323,8.464904478498715,2.1239464377556607,145955123.94820735,-34513958.80583176,-14962964.613518834,7.310500575052539,26.532357693267475,11.431569889441883,26.149082420014164 -2000 QM186,203318,60561.07233178472,2460561.5727039827,293938924.5052542,18.27879332700173,259.0440831957989,0.2320915688337146,-26.21940898235288,-0.0231272930725973,95854271.36405762,-293346897.2211544,-144803926.92504388,17.799008254013263,8.466978277347406,2.124970119643782,145970510.85984007,-34457901.1156943,-14938837.029360387,7.269443034738212,26.589739892017136,11.4328411109849,26.15029618518874 -1998 WD8,203460,60561.139313112064,2460561.639685983,272313723.99167943,7.353691622597169,332.6219146452565,-0.189462516764503,-21.417559945241265,-0.0494080793008115,371125798.1079635,-150882233.40817657,-114311317.80728024,7.523664649998562,14.771315697280082,6.221052506891447,146012168.31578833,-34303625.98737426,-14872662.105211733,7.118380374652695,26.71748719089437,11.436409614425472,7.410247076767631 -1998 WD8,203510,60561.16303088659,2460561.663402983,272328860.9603769,7.420142414566019,332.61708796299445,-0.1894243112391214,-21.418726279159227,-0.0489459029772976,371141213.4058067,-150851964.94833204,-114298569.81842636,7.522268718444678,14.771883008954282,6.221482374039038,146026689.98333785,-34248843.86106115,-14849225.884148529,7.054257225660103,26.74938216626069,11.437695399525092,7.41859179850647 -1998 WD8,203645,60561.22853937814,2460561.728911983,272371369.8640214,7.597973173012157,332.60378432992087,-0.1884819555934405,-21.421891595869937,-0.0477106036764676,371183777.2978529,-150768354.0818671,-114263353.88973132,7.51841266239457,14.77344941034606,6.222669477089322,146066078.4946289,-34097285.72833829,-14784478.662924066,6.861440884000044,26.79385255145896,11.44127602742673,7.441598238960213 -1998 WD8,203695,60561.25212092049,2460561.752492983,272386910.2858676,7.656368059690145,332.59901746829524,-0.1878599003563761,-21.423011830569568,-0.0473060177380618,371199093.4954089,-150738254.87084943,-114250675.72003894,7.517024492799525,14.77401305399738,6.223096708069089,146079985.35979688,-34042695.04030498,-14761166.910598546,6.790229855948726,26.79329314225017,11.442566247120164,7.449857642417433 -1998 WD8,204491,60563.20040441238,2460563.7007769826,273710838.617195,8.409960434754817,332.224972959243,-0.1825705287424868,-21.51291509806185,-0.0425412032619534,372454748.6322819,-148247486.79421762,-113200196.50574093,7.40211092810101,14.820202605320263,6.258238451306814,147150870.5993589,-29583697.957790777,-12827436.56143224,5.946463427940422,26.99537873630859,11.530403601879254,8.12691351097131 -1998 WD8,204541,60563.22474067464,2460563.7251129826,273728589.10110915,8.473396806104333,332.22020359769743,-0.1820553562291922,-21.513944937685796,-0.0420979397452944,372470310.5848949,-148216325.66118595,-113187037.65426064,7.400672786412871,14.82077481333821,6.258675446525895,147163296.75712076,-29526926.91651799,-12803191.160294011,5.87303115534474,27.00307048741394,11.5315679300773,8.13547632736173 -1998 WD8,206470,60565.282790000885,2460565.783162982,275284308.37892336,9.466323188753424,331.8392326437147,-0.1728749439915046,-21.59698010368895,-0.0354128335403553,373775399.3000074,-145576761.89201692,-112070905.38810287,7.278807641120138,14.868740689964586,6.295455612034019,148115769.87883836,-24777999.87358449,-10745483.188257346,4.694703588609275,27.155618472926445,11.610633502102116,8.84970441178563 -2000 QM186,207719,60567.01745298455,2460567.517824982,303202405.1482644,18.18591592502649,260.717157543951,0.2612381385348257,-26.364726085397468,-0.0221107152729941,104952408.80218716,-288868432.1552628,-143648356.33363718,17.624929641317568,8.971512216576855,2.374941637402317,148774211.5107441,-20761231.49726381,-9001124.46310786,4.364425131200673,27.039995902681756,11.664565064171724,26.331683322344524 -2000 QM186,207720,60567.01789955423,2460567.5182719817,303203107.5469574,18.186806476886957,260.7172878762709,0.2612489615104171,-26.36473596723085,-0.0221033153699269,104953089.44934756,-288868085.6886226,-143648264.61670157,17.62491586320528,8.97155013031693,2.374960491389204,148774380.05701435,-20760187.16988024,-9000673.968097784,4.363840103458242,27.041099718721014,11.664578830884992,26.331693696407243 -2000 QM186,207769,60567.04144418392,2460567.541816982,303240152.50786245,18.231657302221244,260.72416113071944,0.2618820256111929,-26.365251932064933,-0.0217304125807396,104988940.68701552,-288849834.0481801,-143643432.54599157,17.624189975879464,8.973547169496388,2.375953606740804,148783223.13565686,-20705119.741804373,-8976944.111220086,4.328829989615271,27.09758840672005,11.6653131660427,26.332233237022532 -1998 WD8,210276,60572.05591767253,2460572.5562899816,281459653.6864701,11.740635345224511,330.7146315267891,-0.1461027566193451,-21.784666133516804,-0.0189366100297855,377916716.4840039,-136831017.53528985,-108352067.62113328,6.874400671104776,15.020637240511329,6.414024930473234,149960678.2733964,-8984588.90817663,-3896948.14906437,1.7770961609487397,27.40278325758834,11.770781712171036,11.132434125204156 -1998 WD8,210326,60572.08050465147,2460572.5808769814,281484662.4379916,11.80478393683056,330.7107595028291,-0.1463419220667629,-21.78512618660624,-0.0184825107376219,377931317.745353,-136799109.62804842,-108338442.28536288,6.872923475352701,15.021171887431834,6.414448364344408,149964397.44379243,-8926325.472764052,-3871942.83014025,1.7232263144688549,27.449955094952337,11.771207802728425,11.140593699148711 -1998 WD8,210553,60572.1865121623,2460572.6868849816,281594099.74345213,12.089669206158328,330.69407336797696,-0.1454630215475852,-21.786977924274467,-0.0164697900834572,377994235.7968658,-136661524.27369672,-108279685.74959505,6.866553732336072,15.023475648028732,6.416273435809919,149978894.8355799,-8674267.51998496,-3764120.376329966,1.4301267671951068,27.56309375370255,11.7731735698008,11.175702649114037 -1998 WD8,210603,60572.21088829548,2460572.7112609814,281619625.73334044,12.14955320551423,330.6902627271656,-0.1448343175171614,-21.78737417889441,-0.0160469724602427,378008695.2240663,-136629884.25724378,-108266172.62772626,6.865088871512525,15.024005065854803,6.416692967730675,149981828.92627198,-8616213.584602674,-3739324.566995031,1.3561394016899884,27.56500634340757,11.7736375738911,11.183741364239252 -2000 QM186,211018,60572.98199923911,2460573.4823719813,312461413.6611025,18.01876959677051,262.5887697937304,0.2884483207601504,-26.49700690063261,-0.0197425239822649,113985667.76814124,-284115085.46691734,-142359588.94053477,17.431732979113924,9.476957087079017,2.627243068062862,150056388.05351168,-6811485.542096825,-2954597.5165393394,1.3846821332110306,27.26547104200688,11.78172120444772,26.361413368138816 -2000 QM186,211039,60572.99318108737,2460573.493553981,312478834.0372748,18.042102483161564,262.59237508740455,0.2886594540269628,-26.4972265806064,-0.0195500496801095,114002507.80050084,-284105929.63674366,-142357050.6192344,17.431353115033033,9.477903635114954,2.6277173584344964,150057720.02427006,-6785130.225669372,-2943214.83958043,1.372341680279856,27.29327438065145,11.781854383711805,26.361402972043667 -2000 QM186,211100,60573.021532990446,2460573.521904981,312523099.7670487,18.097876137533515,262.6015294822638,0.2893224107674527,-26.497774209416797,-0.019089229507194,114045202.60491136,-284082711.72078484,-142350612.8709359,17.43038970419901,9.480303505772856,2.628919901225633,150061035.3136543,-6718190.704711744,-2914354.4449981414,1.3325419255498998,27.361037069293925,11.782210848749044,26.36136538868439 -1998 WD8,211495,60573.20902749124,2460573.7093999814,282666362.1788621,12.529252678462038,330.5435053031259,-0.1400389022649647,-21.803367325328534,-0.0131617298908403,378598123.1328043,-135333346.629716,-107712085.02599628,6.805051326815585,15.045580664143134,6.433828803180081,150079088.28857803,-6272458.646179869,-2723465.5751428874,0.8507908813488737,27.59097908884297,11.78503893786903,11.506483289320805 -1998 WD8,212355,60574.199558013854,2460574.6999309813,283736921.43338,12.885547705212105,330.40300102325546,-0.1353472192712036,-21.81641899006435,-0.0104119005297929,379177934.7216479,-134044862.20011286,-107160764.16306886,6.745365814679094,15.066793130210892,6.450750849586719,150132675.26601177,-3944913.320296339,-1714507.6773049578,0.3674519337569191,27.610423543235893,11.793273576247062,11.822591993240362 -1998 WD8,212356,60574.20000415996,2460574.7003769814,283737417.99732584,12.88661529562616,330.40293600443727,-0.1353348817440797,-21.81642363209431,-0.0104043737158335,379178194.6386423,-134044281.63486192,-107160515.59771168,6.745338916895058,15.066802636774842,6.450758450263742,150132689.3994341,-3943849.369205932,-1714053.2303353806,0.3660961836642447,27.61040546406069,11.793279319936016,11.822735273265362 -1998 WD8,212357,60574.20045402672,2460574.7008269816,283737919.05645967,12.887690921180695,330.40287040850194,-0.1353223853624521,-21.816428312357537,-0.0103967901714977,379178456.8856957,-134043695.86234193,-107160264.80275711,6.745311777852208,15.06681222855928,6.450766119091651,150132703.60666797,-3942775.876648704,-1713594.707352721,0.3647283494560562,27.610384002684324,11.793285114447484,11.82287983206476 -2000 QM186,213796,60576.054993998725,2460576.555365981,317204307.97028553,18.0744771087026,263.62264288833364,0.3035004532021846,-26.557674300748435,-0.0167599320897026,118599554.05199824,-281564525.05138266,-141644762.62038147,17.324828890103003,9.736901294288588,2.757752505715012,150115693.38679728,414116.2183503234,176786.60262093763,-0.2607527353896686,27.487201254196844,11.799581382804844,26.322655601981864 -2000 QM186,213846,60576.07931101434,2460576.5796839814,317242321.3967796,18.10775870545917,263.6309054946656,0.3043576155392575,-26.55807836560511,-0.0164804604842736,118635951.71204232,-281544066.164131,-141638967.63800827,17.323962744497123,9.738956783421113,2.758786578282782,150115087.69054988,471915.5546905447,201578.5342112227,-0.3169111717949774,27.53049647692776,11.799701728825104,26.322301200882254 +1998 BW1,48293,60292.27976446247,2460292.780136993,227295901.74588123,-10.476239524957636,118.68948546526438,-0.1111400750940538,17.984116544498285,0.0183421074027541,-82446301.90451269,323350372.08483505,128130660.1705978,-20.958746654578235,-2.8151298328525347,-0.7605899377978248,21338756.182655893,133700469.70398596,57952293.16729157,-30.344257776232105,3.704017515089116,1.6728499089988853,13.887099446852684 +1998 BW1,48294,60292.28021348675,2460292.780585993,227295495.36831847,-10.475003865426284,118.68943299864571,-0.1111459651761744,17.984124778571307,0.018335283374551,-82447114.99783202,323350262.87129366,128130630.6632628,-20.958737354635662,-2.815166288710874,-0.7606043838455993,21337579.027542718,133700613.37150069,57952358.06130792,-30.34386062935669,3.702747657784433,1.672754879151834,13.88691877736286 +1998 BW1,48339,60292.30168842488,2460292.802060993,227276115.082216,-10.415662615341642,118.68692096982495,-0.1113459277084351,17.984515010744474,0.0180073207357044,-82486003.61881438,323345037.69883585,128129218.71697424,-20.95829245232606,-2.8169098758146176,-0.7612953018472065,21281297.579797056,133707428.21557756,57955457.53591335,-30.32145474725616,3.643592955572052,1.6682016685168566,13.878276227602656 +1998 BW1,48340,60292.30213726795,2460292.802509993,227275711.05472,-10.414420371134405,118.68686840671968,-0.1113483956060266,17.98452309448892,0.0180004554155606,-82486816.69434823,323344928.41626006,128129189.1822807,-20.95828314820764,-2.8169463298967243,-0.7613097472670511,21280121.312031,133707569.54035129,57955522.24960126,-30.32091659990132,3.642392507672339,1.668106304716551,13.87809551210452 +2000 QR19,51129,60296.34362463712,2460296.843996994,222125216.5026101,-13.128753122111144,139.27095365513654,-0.043654139432915,18.86844930709251,0.0142119517928297,-148513591.8791068,271852309.69530874,130223992.25106569,-19.612429785965187,-5.172378077180512,-2.8238202738376423,10768403.26298109,134707629.58696145,58389498.1144296,-30.461723685068502,1.5832745578431922,0.8182758405321211,19.653247339048285 +1999 JO12,55172,60302.32214138439,2460302.822513996,390583404.7724452,-20.64782814241182,160.6004217099213,0.0399653147333327,15.7852423841378,0.0580676096763543,-359371629.80559367,259775548.5410121,164738500.3776216,-11.649606382158494,-11.292122265599112,-1.6455527110557453,-4856928.84004745,134934147.64686018,58487159.18264746,-30.51928751349393,-1.3052068467937432,-0.4376701517348633,16.299406213206918 +1999 JO12,55194,60302.33205759109,2460302.832429996,390565725.6834178,-20.62346391829733,160.60083265765684,0.0397976617276124,15.785817905118698,0.0580113228744817,-359381611.0385061,259765873.3148443,164737090.3896626,-11.649220329168507,-11.29240143151968,-1.645729733092323,-4883067.859752358,134933020.239253,58486783.304158986,-30.500094977792447,-1.3264425285992554,-0.4397899969903631,16.297921853857527 +1999 LZ3,55213,60302.34057754053,2460302.8409499964,315636224.5023689,-24.190529479187155,163.3191799013192,0.0982607515676531,7.469606932612836,-0.0051327444717347,-304693548.6863136,224763381.65426025,99519247.91250496,-9.3455699231451,-14.216472004470816,-3.910515273932082,-4905513.515650838,134932037.39304626,58486458.89144807,-30.48281052137197,-1.3437175057946744,-0.4416132546669631,20.663446558231023 +1999 LZ3,55217,60302.3423690182,2460302.842741996,315632479.5129232,-24.186048389588358,163.31935746162057,0.0982277152849338,7.469597731331857,-0.0051365499404154,-304694995.7579882,224761180.35166505,99518642.40067583,-9.3454655636612,-14.216549004113002,-3.9105493673740575,-4910232.84387594,134931829.07423857,58486390.48730799,-30.47908662767361,-1.3472328018630058,-0.4419969442225981,20.663222301493647 +1999 LZ3,55238,60302.35182548247,2460302.8521979963,315612729.5694764,-24.16214568675906,163.32029346459257,0.0980660468245455,7.469549063401068,-0.0051571428420786,-304702631.37877864,224749564.3502172,99515447.15655524,-9.344914868862253,-14.216955305148591,-3.91072926901594,-4935126.040169187,134930721.0148876,58486028.54910122,-30.458955840732205,-1.365081851887796,-0.4440227140033194,20.662038112926368 +1999 LZ3,55242,60302.35361811831,2460302.8539909963,315608986.89416414,-24.15756882798122,163.32047077622514,0.0980378126624088,7.469539813068379,-0.0051611362558494,-304704079.1565373,224747361.74424997,99514841.27364989,-9.34481044655876,-14.21703234410513,-3.910763380659608,-4939844.293095913,134930509.29072636,58485959.73346916,-30.45505127609609,-1.3683310351859967,-0.444407034725823,20.66181342473798 +1998 BW1,58570,60311.1993120951,2460311.6996849994,216330814.937488,-2.749749350285027,115.55326163529006,-0.2091215508061018,18.58740042462809,0.0435750438259977,-116346524.24954966,317511561.8138254,126396435.11994652,-20.493244106778416,-4.316526495069746,-1.3568876210589589,-27899649.48508817,132521584.32418863,57440796.74061595,-30.12419686212093,-5.359559697909572,-2.285331867006858,5.459578664426928 +1998 BW1,58620,60311.22306453634,2460311.723437,216325240.7786344,-2.682539569417613,115.54801708079944,-0.209417714942972,18.588430534940656,0.0431620438516712,-116388579.6174306,317502701.58891124,126393649.77589571,-20.49257019226285,-4.3183646225313,-1.3576193582188687,-27961451.45296694,132510514.2509127,57436101.77408147,-30.10512443561964,-5.428658929066804,-2.2902768746385243,5.447958815890043 +1998 BW1,59863,60313.16431007392,2460313.664683,215956496.1150885,-1.9064583062239988,115.1327425040164,-0.2139080400291193,18.67318245828129,0.0455743787171956,-119821033.46236762,316765829.5255854,126160936.50719784,-20.43676192433374,-4.4681709086564245,-1.4172699661017512,-32928807.941490203,131546404.46018884,57018229.46748777,-29.922476159645555,-6.220121392822369,-2.6903977782490904,4.514523113053337 +1998 BW1,59913,60313.188383797686,2460313.688756,215952598.7157181,-1.8407658722936984,115.12729983333286,-0.2144350378332168,18.67427474294875,0.0451695790353032,-119863539.56645246,316756534.16018105,126157987.93146878,-20.43606084636037,-4.470023345078755,-1.418007757941831,-32991036.463786475,131533392.05711208,57012628.533924274,-29.913776878158064,-6.292213685660911,-2.69535915225899,4.502745165156111 +1998 BW1,60052,60313.25232715747,2460313.7527,215942930.5151794,-1.6585635332447566,115.11280430341044,-0.2148260562173722,18.67712699018739,0.0440364502996328,-119976439.44347274,316731824.6110665,126150148.31757788,-20.434197538320955,-4.47494325301119,-1.4199672894376387,-33156147.672515035,131498120.42842253,56997700.70315053,-29.84747054542225,-6.472384212588437,-2.7086368076878014,4.471456545515329 +1998 BW1,60102,60313.27612119792,2460313.776494,215939590.03556567,-1.5915864556873385,115.10741108730402,-0.2145915463762914,18.67816983185295,0.0436217764111813,-120018447.61406112,316722623.0839651,126147228.38124774,-20.43350379299981,-4.476773749302864,-1.4206963587992922,-33217469.008058365,131484752.67228732,56992127.17305885,-29.8081914938164,-6.531612169621603,-2.713611056735242,4.4598257214121935 +1999 LZ3,60213,60313.32734769782,2460313.82772,293569970.6936842,-22.39560617576296,164.12706202747404,0.0335260489234592,7.580676669039156,0.0265631494458988,-313257551.94970423,211046681.8350728,95708457.12255318,-8.692075688078752,-14.677396146084895,-4.116998560492343,-33349172.551802862,131455597.79009569,56980093.14372629,-29.7019694077617,-6.637577043258409,-2.724369933126712,18.95590826200612 +1999 LZ3,60235,60313.33721928334,2460313.837592,293550879.9545132,-22.36941010804775,164.1273951359087,0.0333738834166377,7.58093878726828,0.0265400982781869,-313264966.07315004,211034161.77717367,95704945.22582878,-8.691476240851863,-14.67780006551496,-4.117181736816786,-33374496.7236766,131449929.20176832,56977768.53058952,-29.67874986132797,-6.6540620764265,-2.7264496559313702,18.9539416037568 +1999 LZ3,62206,60316.287777232086,2460316.788150001,287944967.81029063,-21.84775452540132,164.21920465801614,0.0151225744488461,7.672315495286377,0.0359875853077952,-315457908.64392936,207276784.45166105,94648320.16050996,-8.511329678586263,-14.797679927493297,-4.171733122035726,-40846393.103480704,129668964.68743896,56205553.2037565,-29.377496393638268,-7.987877559845519,-3.329769959973293,18.353301120571583 +1999 LZ3,62207,60316.288225577206,2460316.788598001,287944122.1762395,-21.846638278383235,164.21921149157646,0.0151112876297565,7.672331617528677,0.0359866851787605,-315458238.1172328,207276211.6325894,94648158.67240617,-8.511302177231208,-14.797698001123472,-4.171741374904281,-40847530.20670277,129668655.4804138,56205424.31583887,-29.37657662897388,-7.988835361490947,-3.329863071128482,18.35320242309705 +1999 LZ3,62252,60316.309741698096,2460316.810114001,287903560.90394473,-21.791578705418168,164.2195341132512,0.0146288990346062,7.673105417460023,0.0359401611039858,-315474060.4007366,207248700.1621029,94640402.54511914,-8.509981323014195,-14.798565972969405,-4.172137722683671,-40902098.19237592,129653763.44901538,56199229.99908618,-29.33004994716428,-8.031886120573628,-3.3343402642447777,18.348457321058277 +1999 LZ3,62253,60316.31018889152,2460316.810561001,287902719.32850134,-21.79040811290795,164.21954070947098,0.0146201405471504,7.673121482479293,0.0359391338703575,-315474389.08629334,207248128.58783776,94640241.4019698,-8.509953880859472,-14.798584004326464,-4.172145956676023,-40903230.92259573,129653453.23515548,56199101.22242532,-29.329037391928136,-8.032717008836526,-3.334433383680066,18.34835864583264 +1999 LZ3,63727,60318.354045602304,2460318.854418002,284116739.5791253,-21.1970249022108,164.249354493162,0.0009756188259218,7.752671765857345,0.0421678192496611,-316966155.496097,204627414.7877113,93900113.75215034,-8.384008591653474,-14.880620831068324,-4.209698936948742,-46016809.57879723,128208500.71813951,55573579.49078873,-28.898032057979968,-9.037859946546217,-3.748636593651471,17.894193460987704 +1999 LZ3,63751,60318.36616278587,2460318.866535002,284094565.9209278,-21.163723057276407,164.24936603848326,0.0009194046993357,7.75318251855495,0.0421357125699326,-316974933.01549166,204611834.78027067,93895706.1533792,-8.383259129748012,-14.881104735727678,-4.209920994173054,-46047046.53200965,128199032.09371036,55569653.695831686,-28.866133960220555,-9.050488069626352,-3.751147749165921,17.891332100554227 +2000 QR19,65578,60321.2472551315,2460321.747628003,202207766.5113729,-4.6294349868844575,135.75860155717126,-0.2291279043063975,19.822178136585137,0.0558850064441286,-189428760.158578,258600168.26891887,123133060.17195806,-18.381059144867248,-7.108153226129012,-3.748429076322688,-53148956.67677436,125882129.86547624,54563983.44767074,-28.585649122209578,-10.234762698130556,-4.326157897124836,9.013682735805157 +2000 QR19,65581,60321.248594129625,2460321.7489670026,202207231.1631357,-4.625672034372987,135.7582754200153,-0.2291443970429261,19.822252948467234,0.0558579284670526,-189430886.68416527,258599345.9113021,123132626.50838505,-18.380987307333253,-7.108251290328296,-3.7484757700068014,-53152263.59936612,125880945.6226957,54563482.940696426,-28.583241947323017,-10.237999799206587,-4.326427643007789,9.012991921859784 +2000 QR19,65628,60321.271009641234,2460321.7713820026,202198334.2216816,-4.562417943194312,135.75281319111107,-0.2293164067021491,19.82349990340224,0.0554024222300692,-189466483.7142268,258585577.87293184,123125366.13202178,-18.379784656793216,-7.109892798457698,-3.749257378687665,-53207578.36768567,125861067.53048384,54555099.7613666,-28.53978836334983,-10.28934201833247,-4.330950238870526,9.001426309915203 +2000 QR19,65631,60321.27234969544,2460321.7727220026,202197806.2336104,-4.558633496428881,135.75248654797304,-0.2293204543385258,19.823574124385665,0.055375169709302,-189468611.680302,258584754.69978717,123124932.04869656,-18.379712755737675,-7.109990924293809,-3.7493041014367927,-53210882.42954152,125859876.10418946,54554598.32561346,-28.537011123405527,-10.292231410971665,-4.331221004521053,9.000734874569776 +1998 BW1,66095,60322.1605678669,2460322.6609400027,216251462.39001533,2.441856809877089,113.11646880869064,-0.223084409723992,19.093345009495227,0.0488754195865017,-135600300.51004538,313026175.5272053,124953045.10163644,-20.15973171329925,-5.151158303275064,-1.6895947607568411,-55370300.99454505,125079288.89473815,54215431.56593978,-28.490599825499007,-10.457012825353443,-4.505943834202165,1.063411848667891 +1998 BW1,66145,60322.18423623309,2460322.684609003,216256524.45748365,2.5091052614623197,113.11087793767273,-0.2233123837336641,19.094496672703297,0.04843673330938,-135641526.06872252,313015639.6755981,124949589.1830329,-20.15896383979897,-5.152930116589861,-1.6903020333815382,-55428547.13172931,125057833.2852523,54206212.12614504,-28.4723393901002,-10.526116013783648,-4.510619284124673,1.064750250561702 +2000 QR19,66294,60322.25536588568,2460322.7557380027,201827653.55783528,-4.1589714963580535,135.52060566830374,-0.2343561742052738,19.878439437421346,0.0562154910764994,-191027426.6246035,257977824.05320632,122805036.25898296,-18.32681704114051,-7.181799111077182,-3.7834913624958695,-55603241.02410019,124992549.88807522,54178448.47897656,-28.368262469591432,-10.712919878916804,-4.524779095141652,8.50117286810553 +1999 LZ3,67162,60323.33260478329,2460323.8329770034,275269060.7958965,-19.920670356549977,164.2071708045499,-0.0321268088482738,8.002555789187578,0.0582605941660474,-320506133.1617561,198183700.6435972,92069656.79883268,-8.073305048778824,-15.076982542958207,-4.300354919810204,-58207332.8243262,123996076.78018849,53747448.63566104,-27.975873956011803,-11.305488168469337,-4.735453401469241,16.658285449378823 +1999 LZ3,67184,60323.34382401689,2460323.844197003,275249764.9135866,-19.88934960163536,164.20680631525985,-0.0322057658270994,8.003209282985644,0.0582267095937169,-320513959.66470766,198169083.71351168,92065487.62497102,-8.072598566437533,-15.077419452872356,-4.300557894411472,-58234438.512635045,123985110.72519612,53742856.96248879,-27.946180787388407,-11.318420827909703,-4.737695912361114,16.655213797251907 +2000 QR19,70503,60328.24883619729,2460328.749209005,200383917.5623212,-1.3942564494932088,134.00566808553353,-0.2583056640253758,20.21948104654421,0.0568683326281888,-200433123.40057388,254146846.4426136,120792526.2632036,-17.998004076231616,-7.611983320593443,-3.9881141861440126,-69799398.17901991,118898442.2130642,51536382.812076494,-26.980344637510903,-13.362743452708608,-5.66636108996025,5.3916097308514646 +2000 QR19,70553,60328.27263791997,2460328.773010005,200381119.90602687,-1.3268754776664584,133.99911724588088,-0.2582003488787388,20.22082843842263,0.0563546663322208,-200470133.4154828,254131191.3104081,120784324.2202195,-17.99667723508237,-7.6136654735281315,-3.98891369015768,-69854827.48779972,118870912.19778468,51524725.84868327,-26.927606689426,-13.41096589954865,-5.670858398511758,5.378912933097276 +1999 LZ3,70604,60328.29552924374,2460328.795902005,267046962.4289244,-18.48894098740816,163.99965486204306,-0.0652632484528693,8.331008294710319,0.0742707744786268,-323900766.60367125,191677247.25169185,90206395.86760414,-7.758068023013565,-15.267728703728316,-4.389536100723878,-69908032.46601759,118844346.9177101,51513505.34835264,-26.87199112948746,-13.450366256782624,-5.675194473534216,15.240568298609404 +1999 LZ3,70654,60328.31927890933,2460328.8196510053,267009093.3491764,-18.42219789244037,163.99808466054202,-0.0655464775960672,8.332771167532117,0.0741874712302833,-323916684.9068557,191645916.33701968,90197387.92868452,-7.756546342433655,-15.268629269943528,-4.389959928899475,-69963108.81122795,118816712.67364134,51501855.71694744,-26.810345415294297,-13.4833403707826,-5.679701198325089,15.23317319984745 +1998 BW1,71041,60329.1652519911,2460329.6656240053,218801429.26246145,5.845763021135284,111.5610262952836,-0.2115573105274778,19.43034141157865,0.0478144131883139,-147730384.9824685,309751243.1373907,123867612.47883417,-19.923858641183124,-5.669544113738077,-1.8967074958823509,-71902100.9123795,117849585.3458475,51081003.00195795,-26.85227127953337,-13.578940152790535,-5.834309973666156,3.731167305638869 +1998 BW1,71048,60329.16839823954,2460329.668771005,218803019.9453536,5.8547538485605095,111.56032031041866,-0.211560197621094,19.43049178805005,0.0477537176889802,-147735802.17494172,309749701.5826705,123867096.76012865,-19.92374884166208,-5.6697742763048495,-1.8967995366203247,-71909401.62536854,117845892.0077213,51079416.56956258,-26.849002197738137,-13.587857757317868,-5.834890058223444,3.732664600454593 +1998 BW1,71091,60329.18892285564,2460329.689295005,218813454.03807572,5.913456136399548,111.55571647625464,-0.2114910965857752,19.431467818247075,0.0473575292913569,-147771131.10438192,309739646.3885946,123863732.7496055,-19.923032671897264,-5.671275281659167,-1.897399782197064,-71956991.04876871,117821746.28539422,51069066.35378391,-26.82404979826095,-13.644654376700542,-5.838681238800215,3.742430945594948 +2000 QR19,71202,60329.24121958907,2460329.741592005,200282856.3508747,-0.9399328461645868,133.74149588070946,-0.2611069209493553,20.27597364929045,0.0567239781388817,-201973936.7307744,253491176.12387997,120449149.8220597,-17.942543462304183,-7.681944859848113,-4.021361665655497,-72078004.77700415,117759790.88813052,51042662.57546885,-26.734160125952062,-13.774379078559626,-5.848399364351616,4.872157014669729 +2000 QR19,71252,60329.26556171201,2460329.765934005,200280952.37904525,-0.8708277408326209,133.73472064473944,-0.2610278432513345,20.27734794536149,0.0561929465910129,-202011671.2492121,253475018.00203443,120440691.4192966,-17.941179538932996,-7.6836564062343475,-4.022174925374404,-72134176.08078085,117730766.87748584,51030357.74147158,-26.68119360336154,-13.824958255390534,-5.852947059090206,4.859182802046118 +1999 LZ3,71294,60329.28484484582,2460329.7852170053,265486505.0369465,-18.189489556462565,163.93849951915348,-0.0717924111995797,8.405833358435512,0.0774330812593794,-324561229.60483825,190370530.2572801,89830415.48705457,-7.694573083896107,-15.305144201864362,-4.40716758024528,-72178590.44222374,117707704.17878574,51020603.4244765,-26.63518880966647,-13.859673175834804,-5.856558346651112,14.935874849542422 +1999 LZ3,71344,60329.30917942818,2460329.809552005,265448332.5519298,-18.12132338811921,163.93672888261753,-0.0721367527809208,8.407716638510255,0.077345782983488,-324577407.116903,190338347.60342747,89821148.20631184,-7.693008506742218,-15.306061968439522,-4.407600655674492,-72234527.46392441,117678523.84078012,51008284.95424932,-26.57303762950048,-13.896072574685014,-5.861124459095326,14.928116939974316 +1999 LZ3,72090,60330.326418787605,2460330.8267910057,263873176.15759924,-17.735713381080124,163.86661886060423,-0.0789299553424444,8.487926207443463,0.0803772056834017,-325250704.06232995,188991343.05386543,89432948.6335009,-7.627489303141124,-15.344315028565704,-4.425677047224668,-74545915.24022947,116470865.50396104,50485005.25905341,-26.25500616803997,-14.33679818133533,-6.045640979652766,14.606833850641308 +1999 LZ3,72112,60330.33773078708,2460330.8381030057,263855857.84840423,-17.703665749876198,163.86571589643606,-0.0789619958964558,8.488835191456984,0.080334326144477,-325258158.92428327,188976345.0889161,89428622.8139153,-7.626759419538552,-15.344739193511856,-4.425877766995847,-74571560.5667644,116456848.08625606,50479095.48257877,-26.223870288883504,-14.347208625528731,-6.047745065057221,14.6031402458321 +1998 BW1,76233,60337.11287054269,2460337.613243008,224088412.7554989,9.396197873487717,109.96756225585176,-0.1813697435724024,19.796855861385367,0.044923008161589,-161313599.62665474,305660485.72849745,122486101.50072806,-19.635984854874437,-6.24275213608501,-2.1261661939915437,-89312665.9934464,107490535.58418716,46590428.71876552,-24.568058129451643,-16.708290735848095,-7.221814881184116,7.4024785939686355 +1998 BW1,76283,60337.1365879975,2460337.636960008,224107734.58537617,9.462432368056524,109.96298877514906,-0.1814740459838819,19.797915905586795,0.0444663272565136,-161353834.50398803,305647692.0761932,122481744.11497808,-19.63509472805555,-6.244438205987597,-2.126841847509881,-89362992.08045278,107456227.6968322,46575626.0789225,-24.549487574073368,-16.776447804805876,-7.225787326797525,7.413341392654565 +2000 QR19,77063,60338.15619314396,2460338.656566008,201184744.32542565,3.1866414986505447,131.28347077997478,-0.2700974935408343,20.758934304703,0.0513948015344098,-215598989.8952332,247336464.2277023,117238842.35235173,-17.43208725110386,-8.294264847008382,-4.311964645606141,-91477731.67947324,105969971.16697846,45931554.87108606,-24.203001195760265,-17.219380444105497,-7.394478774035872,1.113311083551152 +1998 BW1,77077,60338.1624506888,2460338.662823008,224969344.41538,9.97997297577788,109.7771394042909,-0.1765237015441535,19.842974405320884,0.043323446461975,-163092414.7307429,305091009.2833756,122291944.98881955,-19.596419941667165,-6.317226454887368,-2.156014107390819,-91490813.66611604,105960657.71982671,45927557.098616846,-24.194501288102195,-17.236235881011996,-7.395521542446615,7.872003682722522 +2000 QR19,77113,60338.179920415,2460338.680293008,201191344.2303705,3.2526649345999314,131.27661235771296,-0.2704446704473748,20.76014744724392,0.050860475218101,-215634724.09177297,247319459.43098292,117230002.09183402,-17.430700370805845,-8.295855672717902,-4.312718703517628,-91527313.43360353,105934606.5149802,45916392.03829533,-24.167807697956,-17.281818860491263,-7.398439542005252,1.1143165917250504 +1999 LZ3,78883,60340.32387050209,2460340.8242430086,250079955.79204345,-13.975963178075624,162.81574856213177,-0.1430795527474505,9.440885528702552,0.1091284149429702,-331557737.58164746,175577672.40305826,85534059.47800829,-6.971394219104964,-15.708514814277718,-4.600469535349513,-95877484.00660846,102693428.42819262,44513462.8957063,-23.14228969506384,-18.274261253205218,-7.746450186647538,11.051696619085549 +1999 LZ3,78905,60340.3351075902,2460340.8354800087,250066402.3706538,-13.94419570815217,162.8141190810682,-0.1430059165858452,9.442111472263058,0.1090695114099043,-331564505.89739627,175562420.46685746,85529592.68670365,-6.97064440011714,-15.708911936780696,-4.600662995627305,-95899936.65683676,102675683.5845241,44505941.14385899,-23.110010626986643,-18.279666977160904,-7.748310362632833,11.047229585317265 +2000 QR19,79169,60341.108826462274,2460341.609199009,202209703.93489352,4.52768769669183,130.46431260625337,-0.2659925235222113,20.90218666106782,0.048479750985407,-220023878.95633903,245195446.81592885,116126940.45842348,-17.25839748538527,-8.49064620788938,-4.405011844557315,-97431040.28642891,101476505.23520806,43983845.82554795,-23.237993364110448,-18.22217674528752,-7.870246514713617,2.007040609819661 +2000 QR19,79219,60341.13257017374,2460341.632943009,202219054.5927253,4.589050338373092,130.45754339054892,-0.2666327098710196,20.903331920406966,0.0479815398247788,-220059282.261579,245178027.06992015,116117903.03426684,-17.25699181572611,-8.49221249431936,-4.405753650194855,-97478691.71903816,101439053.47891778,43967696.287351,-23.21617238802687,-18.289394027206622,-7.874024751098589,2.0178156746938813 +1999 LZ3,79531,60341.27976003631,2460341.780133009,248934515.8923039,-13.686967024138514,162.68215762408616,-0.1490398047509118,9.546666621697502,0.1119319838172883,-332130887.1680699,174278871.1209336,85153415.24754465,-6.907510941599238,-15.742196493051887,-4.616901722431732,-97772283.40648057,101204225.64027542,43867409.95119498,-22.915472615303543,-18.60214278227113,-7.897807069893006,10.67593082915299 +1999 LZ3,79581,60341.304136717066,2460341.804509009,248905764.8393888,-13.616016729027372,162.67847197183485,-0.1491396403696648,9.54939338184429,0.1117931778077796,-332145433.92611736,174245714.2827466,85143690.76986323,-6.905879247503085,-15.743052751597364,-4.61732010005363,-97820474.13009614,101165020.0393583,43850772.29976095,-22.847407019385454,-18.627093201243397,-7.901784433594821,10.666079223336132 +1999 JO12,81613,60344.2069858676,2460344.7073580096,339086205.068874,-5.875554381309246,157.79654934770755,-0.1638216278907944,19.94282863822335,0.1241105683830488,-398517686.61688566,216920221.0341046,157468705.66783735,-9.967723013620365,-12.351507951056211,-2.361177581685576,-103401498.6676564,96464801.64133872,41812395.778413154,-22.006636988580865,-19.55807111122028,-8.34865352942374,6.043850814474032 +1999 JO12,81614,60344.20743387352,2460344.70780601,339085977.66882616,-5.87433184215148,157.7964712720228,-0.1638288814973857,19.942884238589667,0.1241052672751569,-398518072.44686186,216919742.9320812,157468614.2712973,-9.967704534194407,-12.351518013324387,-2.3611848854030875,-103402350.46392156,96464044.58497578,41812072.62395812,-22.005638119486758,-19.55899738800909,-8.34872293639159,6.043715196372858 +1999 JO12,81661,60344.23068718395,2460344.73106001,339074240.0504928,-5.809612160455531,157.79241438114636,-0.1641441125967356,19.94576692886129,0.123823418987977,-398538098.4429721,216894925.92520607,157463869.8335755,-9.966745324136202,-12.352040270841163,-2.361563983345732,-103446508.9727063,96424701.66991916,41795295.20065167,-21.95096602801652,-19.60370232958008,-8.352331618679576,6.036673300590374 +1999 JO12,81663,60344.23158136251,2460344.7319540097,339073791.4097082,-5.807082625588813,157.79225826762234,-0.1641537950451575,19.94587762203497,0.1238123637420637,-398538868.3036524,216893971.8147657,157463687.41852716,-9.96670844681782,-12.352060347580704,-2.361578557350716,-103448204.41497278,96423187.38775969,41794650.04795637,-21.948760497608028,-19.605283301782663,-8.35247057447566,6.03640249765806 +1999 LZ3,81696,60344.246388355656,2460344.7467610096,245589778.68856776,-12.491916189849698,162.23177021819222,-0.1661495785284364,9.889455973449012,0.1193381261818573,-333875942.04072165,170230435.2163194,83963469.62426068,-6.707974897969207,-15.84543009671848,-4.667577193935298,-103476260.20128368,96398089.79829532,41783963.05224145,-21.91123924097504,-19.62989862511049,-8.354774131876306,9.472277099805323 +1999 JO12,81711,60344.25444226055,2460344.75481501,339062385.79642147,-5.7417516247094005,157.78826354674226,-0.1643387957234333,19.94870483629895,0.123526214098302,-398558553.89813215,216869573.16623265,157459022.39311635,-9.965765422533496,-12.352573705431846,-2.361951227519607,-103491500.15466456,96384425.76012725,41778148.81567465,-21.890107797511888,-19.64200712105306,-8.356028613497383,6.0294766465670655 +1999 JO12,81713,60344.255336867165,2460344.7557090097,339061942.39887494,-5.739179701702929,157.78810724749158,-0.1643435653598144,19.948815263669943,0.1235149321995926,-398559323.68294805,216868619.0148039,157458839.94819736,-9.965728544238692,-12.352593779326554,-2.3619658007140023,-103493190.88962528,96382908.53059123,41777503.37740202,-21.88773360664242,-19.643294021095745,-8.35616792068133,6.029205786252079 +1999 LZ3,81746,60344.27016229351,2460344.77053501,245564190.43160492,-12.42261775378897,162.22775692378565,-0.1664225622126797,9.89229134101057,0.1191880138229348,-333889719.6365668,170197885.34130505,83953881.26316588,-6.706368091212923,-15.846249405935046,-4.667981310288357,-103521202.7886532,96357733.20730652,41766797.92655637,-21.847611673532104,-19.66293158331502,-8.358479695167773,9.462230778131884 +1999 JO12,81793,60344.29113113689,2460344.7915040096,339044352.3611318,-5.636377856327769,157.78184731027844,-0.1643813622066227,19.953228393958653,0.1230640303675543,-398590142.8727976,216830414.328143,157451534.08378088,-9.964251938193996,-12.353397433202376,-2.36254927407829,-103560731.67745364,96322088.39343484,41751651.72376257,-21.788885829186707,-19.685052709539896,-8.36175322017383,6.018362619159449 +1999 JO12,81794,60344.29157550452,2460344.7919480097,339044136.16733295,-5.6351142743979885,157.78176966425548,-0.1643799625210272,19.95328303317472,0.1230584969700505,-398590525.1243761,216829940.42281628,157451443.45074013,-9.96423362204654,-12.353407400623611,-2.3625565111575524,-103561567.50998202,96321333.23552094,41751330.95211198,-21.787622787618535,-19.685447760616537,-8.361822570687112,6.018228166588741 +1999 JO12,81843,60344.31479006917,2460344.81516301,339032899.2017039,-5.569950751730094,157.7777112678585,-0.1642441980733189,19.9561365127137,0.1227738936824757,-398610510.5577605,216805161.2685922,157446704.22335714,-9.96327593093634,-12.353928520644947,-2.3629348987609458,-103605201.84265973,96281830.83361904,41734555.37163512,-21.72085399985026,-19.701779715101065,-8.365449808285966,6.011200990626581 +1999 JO12,81844,60344.31523470671,2460344.81560701,339032685.5553891,-5.568725633066523,157.77763368575833,-0.1642404196900842,19.956191023153423,0.1227685611168592,-398610892.7718142,216804687.34299472,157446613.5755427,-9.963257614306022,-12.353938486659182,-2.362942135439291,-103606035.06492136,96281075.0372137,41734234.45817678,-21.71956726011676,-19.702008781766423,-8.36551919396872,6.011066655272484 +1999 LZ3,82430,60345.23336970853,2460345.7337420103,244549292.747884,-12.08500547779137,162.0706056269389,-0.1715142445580127,10.008089862897094,0.121643745655907,-334445141.67294675,168877711.31718114,83564710.41874056,-6.641164489327896,-15.879336323501008,-4.684327309560872,-105312529.9692028,94740057.77632225,41065167.30628876,-21.56650253714432,-19.956190608980712,-8.502103280151324,9.060147824587595 +1999 LZ3,82480,60345.25654279181,2460345.75691501,244525163.80414015,-12.01785789792656,162.0665653794799,-0.1718526409583274,10.010906986725235,0.1214938155301366,-334458437.22258383,168845916.47554567,83555330.93558903,-6.639593319535264,-15.880129745157683,-4.684719917874921,-105355649.43894295,94700065.66961752,41048141.29112256,-21.506049990925508,-19.991766824788524,-8.505653945715379,9.05022406788798 +1999 LZ3,84874,60348.31459678,2460348.814969011,241541609.03567252,-10.474769621306722,161.53217562985913,-0.1874159959366939,10.391754377123084,0.1270874225704036,-336185306.05773777,164636238.14041582,82310685.7876827,-6.431227495298112,-15.98375983193303,-4.736261790534449,-110840550.18068604,89377625.58428721,38741991.4030655,-20.16146665147596,-21.039937289692084,-8.946252116300695,7.738509365491359 +1999 LZ3,84884,60348.31872463115,2460348.819097012,241537875.1913404,-10.463137730496546,161.53138917747842,-0.1873659976724908,10.392278935112312,0.1270589293943927,-336187599.843904,164630537.16120464,82308996.48485553,-6.430944854611054,-15.98389827042903,-4.736331001988353,-110847738.7956654,89370121.27483584,38738800.5325894,-20.14936604473512,-21.04113576303747,-8.946853093659136,7.736677131109705 +1999 LZ3,84916,60348.33355811639,2460348.833931011,241524491.4539992,-10.422138134094634,161.52856502320992,-0.1871433010692944,10.394162983511633,0.1269594673694469,-336195841.7489331,164610050.24394035,82302925.75927284,-6.429929152765152,-15.984395717744382,-4.736579705694825,-110873535.55914268,89343152.04707335,38727332.34679347,-20.105988702322957,-21.043198874408105,-8.94901212552653,7.730095181262748 +1999 LZ3,84926,60348.338027378304,2460348.838400011,241520469.5793396,-10.410062383815148,161.52771490512532,-0.187063280129699,10.394730300464383,0.1269305155800157,-336198324.5104178,164603878.08024755,82301096.7855462,-6.429623145633271,-15.984545572423974,-4.736654629494971,-110881296.40383533,89335026.81599393,38723876.814535,-20.092986911944944,-21.04313479648761,-8.949662312967705,7.728113024999088 +1999 JO12,85474,60349.23183736454,2460349.732210011,337140033.4543725,-3.2434076036231407,156.90933841331974,-0.1780217609261892,20.559702816666363,0.1218357543581531,-402800133.613569,211533512.8615255,156425878.35961124,-9.759878350000523,-12.462681696988977,-2.44261631238017,-112423126.0441446,87733157.06222865,38027958.03746464,-19.988878977404102,-21.28172952295328,-9.072654946659412,4.623997503663659 +1999 LZ3,85483,60349.23586445162,2460349.7362370114,240714588.0193416,-10.234869111017904,161.3624733876522,-0.1921964621597906,10.510049526147098,0.1294355356076668,-336694720.80398875,163362698.72432873,81933063.73402554,-6.368057474322537,-16.014558368891176,-4.751683543502557,-112430078.98739237,87725751.38361996,38024801.26357574,-19.97826071432999,-21.287822294089143,-9.07322706813272,7.335035695771369 +1999 JO12,85524,60349.25559645247,2460349.755969011,337133445.93394446,-3.174770433339356,156.9048197461557,-0.1781006439452648,20.56259366619994,0.1215117667014181,-402820167.67603314,211507928.94227135,156420863.76489592,-9.758892901809276,-12.463199358530693,-2.4429990892532687,-112464093.45027772,87689435.57264547,38009330.42806511,-19.924614688054763,-21.3143003327031,-9.076033590765112,4.617684681252394 +1999 LZ3,85533,60349.25961871862,2460349.759991011,240693654.33494475,-10.164780140723249,161.357827098003,-0.1924081998197264,10.513121990450642,0.1292542617348197,-336707789.02868336,163329829.38501456,81923310.89780381,-6.366426265393446,-16.01534988372735,-4.752080524851147,-112471015.32203913,87682028.01429968,38006176.399729416,-19.91339101632024,-21.318991347329757,-9.076606199716164,7.324377393874784 +2000 QR19,86917,60351.185213986646,2460351.6855860115,208404184.68023255,9.515004055799578,127.82902362440234,-0.2340327394522049,21.29414372327725,0.0297761240530202,-234785459.0145187,237519704.90178472,112157671.55680355,-16.649709740762646,-9.136815174963091,-4.710598071279302,-115695859.9329945,84150802.28088892,36474441.63301859,-19.273130257574167,-21.8218375049144,-9.3338257788377,6.984403138162119 +2000 QR19,86967,60351.20899265591,2460351.709365012,208423800.94519916,9.580605117262554,127.82305583562696,-0.2336008230862787,21.294845211696927,0.0292274585681532,-234819663.34384277,237500932.3408965,112147993.196769,-16.648245623894972,-9.13829619307569,-4.71129740855599,-115735399.7917882,84105921.30964658,36455261.93787248,-19.21678689293931,-21.86728933897,-9.337037944900771,6.996231369878705 +1999 LZ3,86996,60351.22198166559,2460351.722354012,239048600.81419003,-9.319187672732342,160.98148417866452,-0.2011222382125241,10.76993549218799,0.1327047567980231,-337775791.5376856,160608850.58635882,81114804.47348705,-6.2312475233908025,-16.080285542061283,-4.784761639069671,-115756947.4180332,84081368.32892,36444782.46394608,-19.18374274417165,-21.8890533640106,-9.33879716240816,6.451865192908441 +1999 LZ3,87046,60351.24577148336,2460351.746144012,239029517.4735784,-9.249083469662384,160.97661014305262,-0.2013819877763691,10.773090241227424,0.1325108850948639,-337788598.2993716,160575796.43924168,81104968.89581826,-6.229603627758952,-16.081067257099367,-4.785156444951669,-115796313.73789184,84036340.24964426,36425583.66026005,-19.11981186712892,-21.92282142647164,-9.342025979172508,6.4410038957729085 +1992 SF17,89915,60355.32327832208,2460355.823651013,373127460.3286534,-21.666765220050745,209.26882749134,0.0261770399934928,-12.554297356542966,-0.0043594199741216,-439885515.2340408,-101830142.34693772,-48060829.326957,2.315186472201922,-14.45300413765553,-5.457046805860749,-122175595.84143037,76233129.8674419,33043916.891495097,-17.160000942711648,-23.10736167551941,-9.846205897518765,17.27121215079279 +1992 SF17,89964,60355.34697428703,2460355.847347013,373083163.63753706,-21.6062891600455,209.2694586660474,0.0258410277161328,-12.554398076007814,-0.0041404318412103,-439880773.622736,-101859734.31445456,-48072002.39097568,2.316463095510938,-14.45270870903823,-5.456907360446171,-122210657.60089824,76185828.49809906,33023755.446449853,-17.091497587724813,-23.098950579433897,-9.84910495224161,17.267815280306937 +1992 SF17,90020,60355.37445360857,2460355.874826013,373031952.67917806,-21.53420229105201,209.27018234542183,0.0255975393955154,-12.554508290793818,-0.0038807406198071,-439875271.7547037,-101894049.79108648,-48084958.84276404,2.317943476447183,-14.452366016477352,-5.456745616106372,-122251145.06241716,76131009.27570753,33000367.862302296,-17.015702648620458,-23.07859779974973,-9.852456350833569,17.2638663207736 +1992 SF17,90046,60355.38811582269,2460355.888488013,373006555.5674071,-21.49817089441323,209.27054014794305,0.0255358696283463,-12.554560423551822,-0.003751094905556,-439872535.0301549,-101911110.44199008,-48091400.3828935,2.3186794710684837,-14.452195596901918,-5.4566651853803965,-122271209.14343466,76103775.45586321,32988737.074024677,-16.980038528192264,-23.064476753067986,-9.854117085357174,17.261900248122554 +2000 QR19,90489,60356.22702860823,2460356.727401013,213011931.44208255,11.85064124283907,126.68520951072676,-0.2049145602492862,21.423014892730205,0.0190943580458825,-241970018.83783212,233472006.64007047,110073783.69813488,-16.336533270793375,-9.446226296939836,-4.8565894104308365,-123505128.45752914,74453510.45143974,32271016.69222613,-16.995471539434416,-23.31964694794263,-9.949705710284878,9.383344511814318 +1999 JO12,90511,60356.23686237687,2460356.737235013,336300733.1551397,0.4677055912483341,155.569247375444,-0.1893226596438031,21.389508018448208,0.1142315011310134,-408619033.5019272,203945105.0813833,154913552.92322615,-9.468271702189591,-12.61205641267961,-2.5545355426948584,-123519557.1716514,74433691.57368754,32262562.35190765,-16.968029222158208,-23.331560493129025,-9.950876534304385,3.301295436108357 +2000 QR19,90539,60356.25076120372,2460356.751134013,213036290.33642903,11.907218506042511,126.67999673652486,-0.2039902042304799,21.423462439774735,0.0186279507914767,-242003514.5576309,233452636.1560457,110063824.81165752,-16.335046315045194,-9.447660904946796,-4.857265771355977,-123539909.90132236,74405664.40308039,32250611.61266049,-16.928353944468295,-23.34591928256989,-9.952532954179365,9.39443975517331 +1992 SF17,90728,60356.340883438526,2460356.841256013,371241293.73396224,-21.445643043201567,209.29837615081797,0.0204237657114088,-12.557254599361457,-0.002058168304279,-439679537.7625973,-103100397.12446456,-48540389.05666022,2.369972995435251,-14.440245575234243,-5.451031928474908,-123670689.68101808,74223721.35972284,32173073.954322472,-16.663279236218532,-23.36533204460216,-9.963278723268834,17.127140867813726 +1992 SF17,90729,60356.3413314268,2460356.841704013,371240463.6730201,-21.44448131345202,209.2983855236093,0.0204181770567932,-12.557255520478211,-0.0020539625491169,-439679446.02058935,-103100956.10544932,-48540600.06575005,2.369997098468561,-14.440239926010454,-5.451029268484062,-123671334.64465022,74222816.95807368,32172688.30293947,-16.661998112280546,-23.36510941674634,-9.963331999951906,17.127074006843618 +1992 SF17,90749,60356.3503249034,2460356.850697013,371223810.8438682,-21.42103703075174,209.2985731553408,0.0203148651929819,-12.557273610993326,-0.0019691712510035,-439677604.2240372,-103112176.8615323,-48544835.771755695,2.3704809318054068,-14.44012651932694,-5.450975870471591,-123684271.00285564,74204664.2866246,32164946.426257145,-16.636496412938612,-23.359997394116142,-9.964400839174278,17.125731255150992 +1992 SF17,90750,60356.35079393589,2460356.851166013,371222942.87147295,-21.41980859364906,209.2985829153249,0.0203099428441128,-12.557274533493924,-0.0019647322190139,-439677508.1609406,-103112762.0403794,-48545056.669795536,2.370506164363624,-14.44012060466422,-5.450973085559466,-123684945.11371116,74203717.70806324,32164542.651596807,-16.635178399432462,-23.359697423644175,-9.96445654691383,17.125661198120827 +1992 SF17,90751,60356.35124402132,2460356.851617013,371222108.2586518,-21.418626829854112,209.29859229850177,0.0203052530922358,-12.557275418625114,-0.001960462163799,-439677415.783764,-103113324.75994135,-48545269.08970181,2.370530428485596,-14.440114916975842,-5.450970407520909,-123685593.30196908,74202807.47053514,32164154.371603176,-16.633912152483134,-23.35940586957025,-9.964510113267432,17.125593827168846 +1992 SF17,90771,60356.360252079474,2460356.860625013,371205447.8749292,-21.394939395858792,209.29877928688936,0.020220577844569,-12.557292693551126,-0.0018749298690652,-439675570.4999189,-103124564.13334054,-48549511.814438246,2.3710150622474626,-14.440001308506622,-5.450916915770292,-123698529.55476116,74184629.48415776,32156398.664790977,-16.608876693007936,-23.35295193426593,-9.965579299754502,17.12424767412673 +1999 LZ3,92850,60359.22760871111,2460359.727981014,233997453.9654321,-5.336405755544495,159.28718939817836,-0.2278252658937353,11.864937907159518,0.139592397326642,-341893060.0173377,149396828.49766675,77759663.20811115,-5.671189939159492,-16.335765084174763,-4.915691468257271,-127696262.02499464,68403868.7378351,29648534.95825402,-15.633964769244226,-24.082115932202168,-10.275973682796993,2.8312560359546257 +1999 LZ3,92900,60359.25166454761,2460359.752037014,233986436.9124947,-5.264938307733535,159.28158930373547,-0.2277802435874349,11.868292877667932,0.1393381312062191,-341904845.6738173,149362874.24222428,77749445.66280447,-5.669486365507799,-16.33650955537512,-4.916078961668094,-127728684.60958764,68353790.28080902,29627174.24377851,-15.56458959711162,-24.10494710186331,-10.278607604361994,2.820545125884008 +1992 SF17,94616,60362.30684568294,2460362.8072180143,360518764.862975,-20.32152525684345,209.3548631194855,-0.012603444391975,-12.529935563471716,0.0106563317783941,-438375322.2077683,-110524448.91783264,-51341078.708186045,2.689640780927041,-14.362510292871814,-5.414682241658426,-131631110.32599884,61998800.182279766,26873349.72607236,-14.00353034467024,-24.80547259014302,-10.581296475559844,16.16218774157987 +1992 SF17,94617,60362.30729246676,2460362.807665014,360517980.0659629,-20.3203785534782,209.35485734658727,-0.0126108615692483,-12.52993079914575,0.0106605454306787,-438375218.3240767,-110525003.64744784,-51341287.84185527,2.6896646334983303,-14.362504281666064,-5.414679449029952,-131631651.12851556,61997842.17657545,26872941.066729933,-14.002210757723091,-24.80535293147557,-10.581341163309924,16.162105474620592 +1992 SF17,94666,60362.33129375543,2460362.8316660146,360475907.50809,-20.257591348871784,209.3545429034575,-0.0129471682385812,-12.52967218905896,0.0108904915161897,-438369639.0963838,-110554788.65961592,-51352516.79403531,2.690945338833598,-14.362181478291404,-5.414529488005304,-131660614.60554278,61946413.49670684,26850996.197909053,-13.93248567294533,-24.794381892752792,-10.583737212860884,16.157683231064055 +1992 SF17,94667,60362.33174598792,2460362.8321180143,360475116.431558,-20.256390356673432,209.35453690737063,-0.0129523194701668,-12.529667265568415,0.0108948782140494,-438369533.9999039,-110555349.58047186,-51352728.260684505,2.6909694573511955,-14.36217539831462,-5.414526663573988,-131661158.68263713,61945445.21294532,26850582.87271478,-13.931198267829975,-24.794090876198368,-10.58378226224352,16.157599862910136 +1992 SF17,96648,60366.2988831496,2460366.799256016,353709118.23228925,-19.385597830950037,209.27882718056796,-0.0352370277829766,-12.468415202097349,0.019453524815251,-437410900.3751875,-115469192.43482472,-53204442.6311207,2.902068024949523,-14.307717747576708,-5.389332367138792,-136164558.65548518,53436022.58954245,23161847.43676336,-12.11464824266717,-25.614919355538504,-10.932177981819237,15.39919078725226 +1992 SF17,96698,60366.32184862882,2460366.822221016,353670714.69380105,-19.3246139926761,209.27799447787424,-0.0355528431597982,-12.467965892799963,0.0196773511252283,-437405140.5795044,-115497582.9801136,-53215136.55901082,2.903286611479813,-14.307396149635204,-5.389184173878992,-136188529.55368364,53385208.52163792,23140154.080992498,-12.047810734273227,-25.603047598627462,-10.934183299431083,15.39441094571672 +1999 LZ3,97210,60367.17300861422,2460367.673381015,231691365.58813453,-1.4474365699283065,157.4535940454891,-0.2370107186300951,12.971791925915433,0.1377998847262483,-345591617.7906894,138099853.9177491,74341615.44421469,-5.101851525584933,-16.573885514240114,-5.041668875105565,-137069288.1097185,51529143.64810258,22333548.416838985,-11.994979729586271,-25.723006826527563,-11.001641697937602,1.8344940071467424 +1999 LZ3,97260,60367.19695433125,2460367.6973270155,231688444.02677423,-1.3766119061302566,157.44776796462915,-0.2371374604244569,12.975088010454282,0.1374925083225439,-345602171.4407358,138065562.7561498,74331184.12639631,-5.100115524318543,-16.57457929536945,-5.042042351249306,-137094038.43106854,51475888.9844404,22310784.66157563,-11.929971628009914,-25.755928837045847,-11.003653871692364,1.8433659724135092 +1999 LZ3,97305,60367.21724357919,2460367.717616016,231686083.6604772,-1.3164006496491027,157.44283082686874,-0.2370916110450298,12.97787494079246,0.1372309783196194,-345611110.5390637,138036507.37661374,74322345.26231048,-5.098644548927887,-16.57516700933542,-5.042358760895239,-137114900.78831482,51430719.99493764,22291494.092055053,-11.871954794150112,-25.77729501049015,-11.005364447794973,1.850906329405416 +1999 LZ3,97355,60367.23994659988,2460367.7403190155,231683566.94761708,-1.2498723536250562,157.43730919777536,-0.2368745957869678,12.980987206352264,0.1369423456391086,-345621110.15845644,138003993.75282085,74312454.08840127,-5.096998453777203,-16.575824526083068,-5.04271278484354,-137138122.58319622,51380139.3913408,22269904.757820062,-11.804866829371656,-25.793725916885656,-11.007282362735086,1.8593672893704023 +1999 LZ3,98153,60368.22011875329,2460368.720491016,231590024.78932053,-0.8030282039814562,157.20754475489724,-0.2369307956784993,13.115260459993335,0.1362317500838384,-346049748.33056176,136599035.56978437,73884754.72627208,-5.025827455043928,-16.60408712656633,-5.057964717607209,-138112809.00714654,49222612.7729869,21334497.01078875,-11.374057863554045,-25.9596161838909,-11.082780407617392,2.245149084284445 +1999 LZ3,98203,60368.24427788037,2460368.744650016,231588422.2044345,-0.732821033454386,157.20167064889156,-0.2366362286755611,13.118547905623336,0.1359206817716412,-346060237.1224643,136564376.4220652,73874196.62785962,-5.024070712487327,-16.60478064858152,-5.0583398365549055,-138136475.71044946,49168409.13456624,21311361.456026006,-11.30212040316685,-25.974524891975733,-11.084745693435464,2.255240139205662 +2000 QR19,99699,60370.166865357576,2460370.667238016,230339855.1616368,17.041426864616497,124.44167133988302,-0.1073090128857855,21.53058611662617,-0.006163805899855,-261111167.16593164,221602176.6741052,103992541.60078824,-15.444151062201923,-10.253784672188846,-5.236466087015325,-139928745.45277765,44895547.132792,19458308.18160939,-10.535962240914342,-26.23743742612073,-11.22358115007654,15.108884880721886 +1999 LZ3,99716,60370.17448696637,2460370.674859016,231526483.0713362,0.0678418540269804,156.75016497483273,-0.2359070579379588,13.380012752773345,0.1345107871674043,-346886376.9964757,133790599.3687249,73028123.90996304,-4.883319673534662,-16.659708174227536,-5.088184189920121,-139935676.2089309,44878267.32173976,19450917.778134312,-10.515548613338357,-26.24840181574828,-11.224148021172669,3.09687199070575 +1999 LZ3,99718,60370.17537774718,2460370.675750016,231526488.3952527,0.0704720200871164,156.74994891523951,-0.2359109759382853,13.380132596472802,0.134498628367063,-346886752.9235635,133789316.86368826,73027732.2088806,-4.883254522171143,-16.659733308584148,-5.088197908507402,-139936485.62814915,44876246.60930791,19450053.713697005,-10.513131924366734,-26.249631100325743,-11.224214356211208,3.0972801556569847 +2000 QR19,99749,60370.19060102974,2460370.690974016,230374863.0263622,17.098573624749044,124.4389429206799,-0.1065180365210791,21.5304343342818,-0.0066197523805244,-261142836.49168357,221581148.16026405,103981802.68524233,-15.442601031706545,-10.255100105223518,-5.237083379059825,-139950286.55118468,44841706.03285332,19435289.15673267,-10.470953280454603,-26.26888757421854,-11.22534952535972,15.117518241449908 +1999 LZ3,99766,60370.19822345097,2460370.6985960165,231526694.22959816,0.1381113527305013,156.74440844016416,-0.2359187511021271,13.383201780676798,0.1341858064964679,-346896390.3003177,133756431.6844542,73017688.2997483,-4.8815839293341465,-16.66037770508453,-5.088549646443651,-139957174.98061383,44824404.09431378,19427896.618332185,-10.449269993502178,-26.277258497662967,-11.225918945754303,3.1077471957073706 +1999 LZ3,99768,60370.19911409484,2460370.699487016,231526704.96336624,0.1407485711527701,156.7441923704256,-0.2359154355073784,13.383321334737746,0.1341736079518879,-346896766.09349924,133755149.12884729,73017296.57082897,-4.881518773609815,-16.660402833981408,-5.088563363593609,-139957979.29172707,44822381.17330158,19427032.418005407,-10.44671336376282,-26.27818054545703,-11.225985551114968,3.1081554443758685 +1998 BW1,100215,60371.013785925,2460371.514158016,270451928.1538031,20.804114217485992,107.5305094952742,0.0407851438407605,20.85152081608376,0.0165086210464053,-216793112.7416253,283999339.69371766,114901534.5221892,-18.194744334176825,-8.494938275096759,-3.032805215861953,-140664704.54590225,42998427.15682778,18634868.09978938,-10.309325187976697,-26.05591530719556,-11.28069553789366,18.93704014454908 +1998 BW1,100237,60371.024986631535,2460371.5253590164,270472075.67835814,20.83261973396601,107.5309981444016,0.0407573608490249,20.851704656709064,0.0163167169620189,-216810719.5273106,283991118.8154168,114898599.54418647,-18.19421759145522,-8.495628246459864,-3.0330843650456893,-140674677.6016411,42973196.61143505,18623950.65816041,-10.30080292142774,-26.085856836465155,-11.281446881472538,18.939567988021828 +1992 SF17,101396,60372.30875567979,2460372.809128016,344115236.1878764,-17.685909013061934,208.9901478132919,-0.0696477222017024,-12.309155169500087,0.0330576612564901,-435821333.4848738,-122876695.13130675,-55992814.33488307,3.219614600615761,-14.221080637464013,-5.349635915934298,-141742184.58451274,40067940.033123285,17367909.692405634,-9.119268571584952,-26.59375826214625,-11.36540334265991,14.070523499198435 +1992 SF17,101446,60372.33269035583,2460372.833063016,344078731.02387947,-17.619684503094128,208.98843904542895,-0.0698322265898515,-12.30836105250348,0.0332987107413532,-435814673.6781452,-122906105.46439552,-56003877.781064,3.220873809105119,-14.220725702045208,-5.349474166344537,-141760973.68419677,40012966.90807641,17344404.544873364,-9.052811954753553,-26.570778792771808,-11.367021764620208,14.064670622273432 +1992 SF17,101502,60372.35831577906,2460372.8586880164,344039800.1317297,-17.549010360420187,208.9866064900189,-0.0698840998620827,-12.307504470445211,0.0335559059030705,-435807540.7515973,-122937591.57868598,-56015722.02052097,3.2222218792076167,-14.22034561885148,-5.349300964013629,-141780942.4039812,39954174.521430336,17319236.052659366,-8.986774227570661,-26.5374388000963,-11.368740702973252,14.05839940979209 +1992 SF17,101524,60372.36986484486,2460372.870237016,344022305.11605144,-17.517662168843202,208.9857805344153,-0.0698587343035114,-12.307116272074634,0.0336701708209044,-435804325.0187123,-122951781.86195818,-56021060.00610573,3.222829428133526,-14.220174288893322,-5.34922289219583,-141789895.78699186,39927703.290411904,17307891.55742161,-8.959104793662394,-26.519702041483537,-11.36950990077749,14.055572245991833 +1999 LZ3,105269,60377.15718489009,2460377.657557017,232617755.45531037,3.4632337903548627,155.1531064512902,-0.2230069282059429,14.279804322084807,0.1224812389547638,-349677454.9600501,123681627.23267204,69926318.81625497,-4.367679666669918,-16.85034006699213,-5.194024499598561,-145114180.2683803,28956877.55223167,12549419.296806566,-7.013508280539871,-27.17303058003844,-11.625789977854115,6.359502288565436 +1999 LZ3,105319,60377.17969600706,2460377.680069017,232624555.8437559,3.529205731843667,155.1479265987465,-0.2229289922079584,14.282557730440372,0.1221357794726781,-349685948.5263877,123648852.50600693,69916216.03885332,-4.366000998197937,-16.850933899251903,-5.194360234240596,-145127760.59691367,28903998.80635717,12526805.60498784,-6.950022325001277,-27.198741958252214,-11.626924579830993,6.370214623948326 +1992 SF17,106442,60378.30203797946,2460378.802410017,335470870.31721944,-15.7251305407939,208.49543486026096,-0.1031478336316528,-12.070043225556129,0.0464624138181702,-434072655.8777318,-130217628.45358846,-58752473.34505916,3.533555210279784,-14.129776419936825,-5.308237553848089,-145760262.58300218,26293486.16030759,11396936.533953406,-6.067136508783134,-27.2959333514784,-11.675716992341364,12.530967378954896 +1992 SF17,106492,60378.32590107096,2460378.8262740173,335438517.4956755,-15.65770621156341,208.49291598444307,-0.1032658714124973,-12.06893157453482,0.0467030174498934,-434065368.55285233,-130246763.06872892,-58763418.53229766,3.534799764288259,-14.12940315915799,-5.308069132741872,-145772704.39620954,26237232.88557123,11372861.83197851,-6.00219901678427,-27.26858157034072,-11.67681051277058,12.524283890466576 +1992 SF17,107189,60379.25008294898,2460379.7504550177,334198808.9874896,-15.5085876845911,208.39899615242737,-0.1078920324294536,-12.024934275939184,0.0481523231051144,-433781179.35558015,-131374464.88202806,-59187024.77371389,3.582963940618802,-14.11488896414341,-5.301524955108743,-146251690.36501592,24085639.499039955,10439068.289943043,-5.699539786381621,-27.414812585005254,-11.71220299392181,12.268459787769244 +1992 SF17,107239,60379.273526391735,2460379.773899018,334167460.1819412,-15.444666218051715,208.39640514780032,-0.108275223195865,-12.023802732794488,0.048380558403699,-433773920.2291004,-131403056.56194508,-59197763.72532099,3.584184883431711,-14.114519284578956,-5.301358396075259,-146263163.6950151,24030117.586823333,10415343.486509567,-5.629292563435572,-27.40500595225092,-11.71320383043087,12.261774892452255 +1992 SF17,107293,60379.29854018832,2460379.798913018,334134157.2003425,-15.374406882997656,208.3936322528428,-0.1085442689494342,-12.02258942500599,0.0486304507242184,-433766172.2473874,-131433562.13929668,-59209221.46933193,3.5854875435715017,-14.114124766949928,-5.3011806529134535,-146275251.01675835,23970909.28873287,10390027.651058389,-5.556982629602945,-27.38524590881496,-11.71426345521695,12.254632574136297 +1992 SF17,107343,60379.32285192187,2460379.823224018,334101936.59242195,-15.3055007127751,208.3909324779147,-0.1086643351083367,-12.021404195049175,0.0488751137573999,-433758639.32089525,-131463209.55587272,-59220356.83116978,3.586753547027047,-14.113741256493638,-5.301007875427263,-146286852.86501482,23913415.244078062,10365421.115525251,-5.490686740778672,-27.357349846094134,-11.715281927100794,12.247684482493549 +1992 SF17,110116,60383.21469260357,2460383.7150650183,329185276.55919003,-14.082365350057218,207.94223148074053,-0.128223898775656,-11.81544167658349,0.0563928077909666,-432518506.4845678,-136198820.69475093,-60998241.7365061,3.7888347910714018,-14.05132605422216,-5.272972335447287,-147871080.17977166,14782963.6258834,6405688.451306487,-3.714169467222815,-27.683539215348407,-11.827198656549388,11.114979214169423 +1992 SF17,110166,60383.23884298534,2460383.739215018,329155958.88987744,-14.018823697984033,207.9390612491319,-0.1287379326552368,-11.814077128280104,0.0566152920064042,-432510599.177523,-136228140.59405416,-61009244.44181874,3.790085109057127,-14.050932433622393,-5.272796038342438,-147878753.1786435,14725200.459780669,6381009.606295611,-3.64059296866646,-27.681797601591864,-11.827855166884609,11.10756956795221 +1992 SF17,110380,60383.343291344616,2460383.843664018,329030775.77888155,-13.723852880923692,207.925265391294,-0.1294011586715814,-11.808110368362607,0.0576393532676371,-432476369.971556,-136354939.92503464,-61056826.99044122,3.795492224066848,-14.049229126768772,-5.272033222217899,-147910252.01307213,14475762.970959734,6274257.833666584,-3.352801449921604,-27.573082096764804,-11.830601691424915,11.07542254329976 +1992 SF17,110439,60383.37128533245,2460383.8716580183,328997674.53986096,-13.648602151819516,207.92156789384896,-0.1291438993679347,-11.806493114263091,0.0579010919331219,-432467187.7116404,-136388921.53742778,-61069578.69560224,3.7969412728167846,-14.048772366671614,-5.27182868442149,-147918286.6926488,14409134.72394631,6245642.534902776,-3.292642528290058,-27.520254830000496,-11.831291921423894,11.066800266971516 +1999 LZ3,110757,60384.11003201465,2460384.610405018,235672084.70996445,6.54945949721463,153.6988046340605,-0.1965058971850215,15.072726238212605,0.105399708340149,-352144483.2110352,113505566.87014738,66775385.87845804,-3.844308314968817,-17.02725637206128,-5.295985771201885,-148138417.6343609,12674193.372632183,5490062.691981195,-3.4895856872451123,-27.63754310993792,-11.844199926415744,9.54673588881314 +1999 LZ3,110807,60384.13385294682,2460384.6342250183,235685633.84017745,6.617475048035609,153.69395591397762,-0.1965675379374435,15.075232212017667,0.1050084055349225,-352152392.9464808,113470524.128475,66764486.37177145,-3.842498433139473,-17.02783983960641,-5.296329022491073,-148145536.1647957,12617276.869384998,5465686.204068095,-3.4273176218238426,-27.67235810709919,-11.844741632880174,9.557506979784298 +1999 LZ3,110841,60384.15099817706,2460384.651371018,235695473.79828188,6.666837936059392,153.69046593205147,-0.1964943246347321,15.07703025233128,0.1047244917375414,-352158084.18807906,113445299.08998013,66756640.30482185,-3.84119558202789,-17.02825973160787,-5.296576073948284,-148150578.391064,12576267.132632434,5448138.941103594,-3.3796445715663617,-27.692595167039567,-11.845137119524384,9.565257389466488 +1999 JO12,110844,60384.152345109,2460384.6527180183,354317114.62496823,14.062030921592369,150.37547757302198,-0.1428131428389322,23.764920220190564,0.0488030920677145,-430036427.0701277,172865889.36298522,148231253.34829438,-8.287230586769226,-13.143201990348375,-2.981659990123542,-148150971.4940674,12573044.163340786,5446760.3925023535,-3.3758136998751183,-27.694005460614516,-11.84516835038791,9.40564544785724 +1999 LZ3,110891,60384.17512363386,2460384.675496018,235709442.4864286,6.735816295771924,153.6855594467875,-0.1962245189653869,15.079551932084534,0.1043277209004609,-352166088.6870512,113409805.5636981,66745600.00641963,-3.839362326566112,-17.028850396529116,-5.2969236467378575,-148157550.34327886,12518521.120375248,5423448.352412228,-3.309493746171443,-27.71374539814683,-11.845699211192468,9.576155373839788 +1999 JO12,110894,60384.17647416459,2460384.6768470183,354346498.53346515,14.12709065030701,150.37171543487352,-0.1425580924216798,23.76609288737676,0.0483983901901424,-430053701.9500824,172838489.98683098,148225037.267349,-8.286198063846863,-13.143617232021745,-2.982016004054116,-148157936.41458547,12515286.139864529,5422065.644461375,-3.305482048235454,-27.71466795663352,-11.845730829412588,9.412492803348853 +1992 SF17,113420,60390.32038221607,2460390.820755019,321539344.3455613,-10.852811317346283,206.92640264349828,-0.1619173507244589,-11.360350388076174,0.0711362386806131,-430079791.8275358,-144789497.560952,-64219445.74750532,4.154759424928412,-13.932175089876562,-5.219871174926668,-149015598.7427999,-2034602.177785745,-882969.9066360386,0.2423969237578791,-27.71565305911246,-11.887780380765005,8.840876985748698 +1992 SF17,113470,60390.34474055205,2460390.8451130185,321516575.7033857,-10.785732142415393,206.92238250017647,-0.1616818334539579,-11.35861494930827,0.0713563564878844,-430071046.3777046,-144818818.87476388,-64230431.329903536,4.156007009933282,-13.931755188117313,-5.219684925735237,-149015030.63486558,-2092883.416997725,-907988.1166356336,0.2963233176527715,-27.66972156389384,-11.887782690239291,8.832530198825214 +1999 LZ3,116037,60394.10335063107,2460394.603723019,243139698.0925181,10.518635347156676,152.0160981458832,-0.1418033682805952,15.972204846519636,0.0744924375621249,-355132993.7810196,98702593.00823216,62141755.26940897,-3.0750574400529755,-17.258089628006207,-5.436218551394277,-148710199.60420772,-10979970.142312285,-4763238.366979767,1.6983548402299191,-27.6806735019277,-11.848012122248225,13.72059028410713 +1999 LZ3,116087,60394.12603700732,2460394.626410019,243160378.79207173,10.581934141239598,152.0127534608737,-0.1416395035839993,15.973890398501773,0.0740996152964012,-355139019.4308563,98668765.15547116,62131099.50047468,-3.073288623521878,-17.258581328335865,-5.436528113286918,-148706809.5746242,-11034254.40447239,-4786462.077985404,1.7612009389432506,-27.70577702120263,-11.847757492675854,13.729544674746258 +2001 SF198,116639,60394.38681638566,2460394.887189019,268755715.278328,-19.20523488515894,252.7624877604628,0.1195813385880377,-13.838434530181908,0.0605230153944317,-225988429.71584055,-260891316.4028249,-69335669.5668437,13.92384740648934,-12.317133446804435,-4.060443593178151,-148658794.06468272,-11657393.246539949,-5053374.236387955,2.431327898662436,-27.45319615149533,-11.844608747722615,23.21525863395266 +2001 SF198,116661,60394.39718156925,2460394.897554019,268738528.7568951,-19.17848972933487,252.76376389654328,0.1195163871170446,-13.83780653807297,0.0606524788847276,-225975959.33484736,-260902347.2277348,-69339305.98873036,13.924462897288684,-12.316422852132586,-4.060254753800892,-148656610.83845174,-11681967.161402944,-5063981.43796218,2.444196058681828,-27.4276302706219,-11.844447342708795,23.21369294633023 +1999 LZ3,117062,60395.1615621406,2460395.66193502,244120492.0709153,11.034548891918444,151.87208875548373,-0.1347542538293425,16.049093647470773,0.0702236799827833,-355410359.99774504,97123707.0655499,61644083.48185246,-2.9924458012292527,-17.280865734474734,-5.450614298224697,-148512015.83621687,-13479278.429205634,-5845689.312331636,2.382785882118996,-27.688800330762987,-11.82912638235236,14.127354850617648 +1999 LZ3,117112,60395.1853890408,2460395.685762019,244143272.76018977,11.096016486655518,151.86875529985204,-0.1341160597516352,16.05076224119975,0.0698387722921972,-355416518.2607449,97088132.55341128,61632862.64159863,-2.990583180905137,-17.281374825992803,-5.450937412082087,-148507036.22795516,-13536285.522246549,-5870041.032251831,2.455071698312832,-27.692606251209234,-11.828792407466311,14.136569399925946 +1999 LZ3,117162,60395.20910835882,2460395.709481019,244166071.93452045,11.15317228268222,151.86545466231166,-0.1333194016192931,16.052414428711675,0.0694790995009039,-355422644.8008608,97052718.2543515,61621692.00309795,-2.988728893657723,-17.28188144594348,-5.451259016394795,-148501931.09958002,-13593032.777803194,-5894281.690661868,2.5270876104245183,-27.68740292387787,-11.828458601002326,14.14572323258764 +1999 LZ3,120565,60399.09997425072,2460399.6003470197,248055936.818886,12.21344615820529,151.40306085381496,-0.1097190225256693,16.303399195206183,0.0580824327229229,-356376037.6166289,91229560.00542136,59780410.03098506,-2.683074455068788,-17.362759260984124,-5.503403088514582,-147338647.68968123,-22726838.45696415,-9854758.189580362,4.260697566703364,-27.409138597814223,-11.725268464027245,15.573056249028232 +1999 LZ3,120615,60399.123835000006,2460399.624208019,248081183.9909964,12.278723772298994,151.40033623243144,-0.1094413022812726,16.304780168273876,0.0576699182706001,-356381566.8506169,91193766.07380287,59769064.40621441,-2.681190993056,-17.363241498742493,-5.503719080816213,-147329794.6994603,-22783368.72015026,-9878930.216721846,4.328398253944557,-27.4308772287196,-11.72461610573166,15.581662072484267 +1992 SF17,120879,60399.24922813567,2460399.749601019,314630105.1153816,-6.868545582143999,205.3529758321477,-0.1943628177195933,-10.662450970084542,0.0848638295837081,-426698895.6862498,-155477119.1476244,-68219620.92211491,4.608943289833203,-13.773063313560296,-5.149687551830398,-147280869.09556395,-23080607.408058,-10005935.758935835,4.700628106135412,-27.3996880176323,-11.721201282039726,5.6687215040585 +1992 SF17,120945,60399.28118382621,2460399.781556019,314611272.41825414,-6.774275156593886,205.34665621622463,-0.194299471569262,-10.659734681969269,0.0851421939708355,-426686168.281041,-155515145.41754743,-68233838.72388528,4.610557369957788,-13.772475298793744,-5.149429537232076,-147267772.53405833,-23156195.490139306,-10038295.725049775,4.7850440890728265,-27.35389738835443,-11.72029974243222,5.6566627546715615 +1992 SF17,120995,60399.30417585096,2460399.804548019,314597881.15609354,-6.708454675125558,205.34211255384008,-0.1940984901349608,-10.657774848319114,0.0853361734452106,-426677008.0083866,-155542504.75624427,-68244068.15676475,4.611718668936441,-13.772052133849575,-5.149243862746765,-147258211.76021257,-23210494.57942119,-10061577.5458755,4.839714087246351,-27.312918813483517,-11.719635069694784,5.6479874493376725 +2000 QR19,122203,60401.01488077102,2460401.515253019,285802709.06291,23.63792912312134,124.89829079045444,0.1100425383959022,20.65862755170804,-0.0488477467789695,-299521254.53795767,192146355.72741023,89041752.46524228,-13.35858402205496,-11.795744873325816,-5.955914223685277,-146521506.20897037,-27187583.53269078,-11789237.848307772,5.076719273729431,-27.11678685143024,-11.656174857714973,22.371781760434 +2000 QR19,122253,60401.03878397265,2460401.539156019,285851588.7192389,23.69739901933766,124.9011041424638,0.1102456644849209,20.657455203133537,-0.0492437818701166,-299548839.0487215,192121995.75168943,89029452.65806536,-13.356920955183634,-11.796811768691557,-5.956408619704208,-146510971.7384001,-27243633.410410155,-11813309.52513536,5.126267155590754,-27.16210369137763,-11.655325689226776,22.374912295466928 +1992 SF17,123406,60402.15432435613,2460402.654697019,313081351.0773964,-5.657540712286863,204.78623333775465,-0.2012045155972637,-10.41070072930486,0.0878040163697571,-425523637.30507445,-158927479.50178784,-69509260.31647542,4.755348619199437,-13.7190684342927,-5.1260332620766365,-145963121.45205715,-29833889.371293567,-12934572.021596432,5.94945695098869,-27.184182866185928,-11.610135582790871,4.5778528181425 +1992 SF17,123456,60402.17809368587,2460402.678466019,313069799.0466519,-5.5922055027514,204.78136503766865,-0.2016661741030277,-10.408611542346586,0.0879886947130607,-425513870.1125285,-158955653.62234738,-69519787.34894222,4.756543691768795,-13.718622185214,-5.125838081625798,-145950829.37555194,-29889715.46017245,-12958414.17497977,6.021557509523115,-27.18221166623933,-11.609254845799038,4.568705618467227 +1992 SF17,123491,60402.19394080225,2460402.694313019,313062173.30331594,-5.546810024852323,204.77811380470453,-0.2019003205413235,-10.40721617288093,0.0881170762294349,-425507356.8776136,-158974437.0417486,-69526805.58935468,4.757340431740984,-13.718324626855656,-5.125707938332515,-145942551.98937556,-29926928.952607304,-12974308.940843802,6.0693691443320255,-27.175895445477696,-11.60866616255624,4.562601163387836 +1992 SF17,123541,60402.218192296605,2460402.71856502,313050625.19984704,-5.47546760718427,204.7731321854745,-0.2021394774357176,-10.405076720949632,0.0883188164798081,-425497387.0146858,-159003182.0980119,-69537545.84739266,4.7585597108472255,-13.71786918593655,-5.125508746178332,-145929758.8425639,-29983856.060768545,-12998632.476822944,6.141107037471403,-27.158604124517318,-11.607760518643945,4.553252063940725 +1992 SF17,123585,60402.23804355536,2460402.738416019,313041284.90145683,-5.416239449367958,204.76905140177263,-0.2022254150583115,-10.403321844147955,0.0884861821974269,-425489224.47906256,-159026710.08507448,-69546336.762562,4.759557692513019,-13.717496337641958,-5.125345680732007,-145919177.21118924,-30030419.49560425,-13018540.612781797,6.1976864183959215,-27.137803992179293,-11.60701295572816,4.545595292098953 +1992 SF17,123587,60402.23895168128,2460402.7393240198,313040860.1005054,-5.413526337936142,204.76886471131704,-0.2022269620014413,-10.4032414951807,0.0884938447253334,-425488851.0773395,-159027786.2583733,-69546738.85923202,4.759603340221157,-13.717479282059776,-5.125338221545991,-145918690.89581892,-30032548.44715461,-13019451.195924705,6.200214961076806,-27.13671430227405,-11.606978595154374,4.545245006749544 +1992 SF17,123635,60402.26210283164,2460402.76247502,313030100.82333404,-5.344637378562422,204.7641048204245,-0.202196094149243,-10.401190519114518,0.0886882371000638,-425479329.3627028,-159055224.6546834,-69556990.79245658,4.760767182961948,-13.71704438559335,-5.125148023917474,-145906225.8714667,-30086798.103584208,-13042667.133060422,6.262559656752266,-27.105024481703765,-11.606096724419256,4.536313121713152 +1992 SF17,123637,60402.26300464005,2460402.763377019,313029684.40787524,-5.341973416058759,204.76391939437755,-0.2021921659113236,-10.401110518947604,0.08869574674441,-425478958.3344411,-159056293.68062827,-69557390.21637705,4.760812527255068,-13.717027439944426,-5.125140613003789,-145905737.72155118,-30088910.41997169,-13043571.627210025,6.2648980863500885,-27.103642181786004,-11.606062121182266,4.535965112542832 +2000 QR19,125840,60404.99990943106,2460405.500282019,294023414.9204323,24.07441764482462,125.44440660309265,0.1326184899134191,20.454429447918105,-0.053489458630502,-304072513.777898,188055016.0928113,86977218.40361261,-13.080501777260126,-11.970935631582512,-6.037019907362715,-144315036.03347978,-36377011.63515354,-15772875.300132804,7.062447620595036,-26.683183170127847,-11.47308454119388,22.81807276471029 +1998 BW1,125849,60405.00393638609,2460405.504309019,339640758.07225066,25.293362555810067,112.8781436659781,0.2239264555648415,20.797062170674785,-0.0206124521215629,-267752162.75931725,256147389.9347632,104815650.6240654,-16.47421962027618,-10.416792561398612,-3.814502184150537,-144312577.46085125,-36386296.9929045,-15776867.127829676,7.070044723306467,-26.691222718032854,-11.47288403712216,22.74055201587061 +1998 BW1,125850,60405.00438469447,2460405.504757019,339641737.1425983,25.29442455874502,112.87825097823092,0.2239314677364233,20.797052934892363,-0.0206187052099295,-267752800.37620813,256146986.7633612,104815502.9876066,-16.474195533882117,-10.41681560493818,-3.814511613512937,-144312303.7825176,-36387330.15289669,-15777311.210766522,7.070903230451036,-26.69210825208903,-11.472861759253018,22.740564017186767 +2000 QR19,125890,60405.02361988217,2460405.5239920192,294072793.2167495,24.133067890266133,125.44776421702244,0.1327740645349241,20.45315671155468,-0.0538688574492718,-304099305.90934545,188030494.0263492,86964851.81147137,-13.078842426560986,-11.971961890989425,-6.037494551827513,-144300520.61857507,-36431720.47562964,-15796377.213696493,7.110194705743085,-26.72833340201054,-11.471910346261778,22.820595090238147 +1998 BW1,125899,60405.02764827529,2460405.528021019,339692634.7029363,25.348579736968997,112.88382736153892,0.2242538020209587,20.796569526758898,-0.0209377212449413,-267785909.6147548,256126049.43201303,104807835.93906336,-16.4729447184111,-10.418012139369509,-3.815001234740589,-144298043.99252778,-36441026.00072209,-15800370.615157451,7.119003768417199,-26.7354473095132,-11.471712269682977,22.741183011622145 +1998 BW1,125900,60405.02809565688,2460405.528468019,339693613.71904,25.34959734806069,112.88393459093396,0.2242611709115445,20.796560166258388,-0.0209437201850966,-267786545.75870445,256125647.11374,104807688.61298431,-16.472920684108356,-10.41803512826149,-3.815010641823633,-144297769.0318685,-36442058.55992374,-15800813.66135146,7.119992942078962,-26.736225843011844,-11.47169031856203,22.741194814832063 +1992 SF17,126148,60405.143232581446,2460405.643605019,311862512.7649465,-4.168747494664028,204.1820457810844,-0.2073860728253322,-10.141922986489496,0.0907984417401018,-424276215.09763134,-162463075.84322757,-70829849.447368,4.905270051698726,-13.662386410189054,-5.101281163183696,-144225463.000092,-36708744.16696517,-15914904.465827612,7.43257693124855,-26.84939755354422,-11.46615120257192,3.432732006446019 +1992 SF17,126198,60405.16648370551,2460405.6668560198,311854201.9370152,-4.104756576667628,204.1771417980804,-0.2078332692767719,-10.13980986128655,0.0909696767665003,-424266359.6623241,-162490521.9575067,-70840097.28834909,4.906433481941581,-13.6619410028582,-5.10108696975149,-144210461.13400465,-36762681.67796988,-15937937.55021502,7.502965574624003,-26.848079269424467,-11.465044788896728,3.42362949998615 +1992 SF17,126223,60405.17800431546,2460405.6783770192,311850132.3650304,-4.071820655517814,204.1747083092625,-0.2080080250802415,-10.138761292944327,0.0910579608183079,-424261475.3741531,-162504121.3259865,-70845175.00516175,4.907009951839374,-13.661720275548612,-5.100990736453145,-144202975.23567638,-36789404.90196312,-15949349.747668764,7.537772777663794,-26.84422975007688,-11.46449578669081,3.419115367756332 +1992 SF17,126273,60405.2023766127,2460405.702749019,311841633.1871938,-4.0002709457571815,204.16955477765612,-0.2082708758768163,-10.136539701040174,0.0912498985505054,-424251141.0598444,-162532889.26343238,-70855916.2997617,4.908229404595239,-13.661253284190275,-5.100787140088921,-144187025.86157575,-36845917.67850123,-15973489.778369902,7.610387929910648,-26.829180009130614,-11.463330698325734,3.409559583089851 +1992 SF17,127380,60406.28009397116,2460406.780466019,311500308.13932014,-3.255442214607521,203.9469819369868,-0.2097056733846139,-10.037521763535471,0.0927111749290238,-423791597.8502542,-163804005.19658443,-71330460.59549387,4.962104942569915,-13.640527545282012,-5.0917564148985255,-143462255.4690581,-39304033.080962,-17038115.70022552,8.317786437412813,-26.588917942396407,-11.403751171216058,2.9915865957171537 +1992 SF17,127430,60406.30412573269,2460406.804498019,311493618.4427489,-3.1889010865691785,203.94186825486975,-0.20933244293057,-10.03529162797815,0.092884120593623,-423781293.3531306,-163832327.73086995,-71341032.84329176,4.963305241131077,-13.640063697735396,-5.091554419651596,-143444929.7574753,-39359191.40357944,-17061792.710722223,8.369558144004142,-26.5397765393911,-11.402460295103852,2.982120378320266 +1992 SF17,127431,60406.30454239935,2460406.80491502,311493503.57130307,-3.187782306056837,203.9417796085715,-0.2093248068687666,-10.0352528946821,0.0928870170778601,-423781114.5288545,-163832819.17125693,-71341216.28784235,4.963326068141611,-13.640055648465376,-5.091550914418293,-143444628.19717237,-39360147.58393128,-17062203.527422827,8.370393690041332,-26.538872058429675,-11.40243773182103,2.9819561867835835 +1992 SF17,127481,60406.32834317959,2460406.828716019,311487012.2489417,-3.1263521363755946,203.93672585334417,-0.2088270385060089,-10.033040178622514,0.0930453004860462,-423770906.5834851,-163860868.49196684,-71351686.49028684,4.964514782118727,-13.639596185939968,-5.091350833751221,-143427368.855297,-39414667.40997153,-17085650.242225252,8.414256185710459,-26.484693400556097,-11.401139945211808,2.9725893419946576 +1999 JO12,127743,60407.00871442623,2460407.509087019,390101086.0925329,21.44303321464844,148.20745475827854,-0.0368466361972841,24.17753668827397,-0.0101734026461077,-445430250.0874597,146546057.80428222,142017274.17710543,-7.301647543919903,-13.503126211412509,-3.308574810553465,-142944583.20123318,-40948519.732489474,-17754632.281057876,8.075320666860714,-26.44936124147974,-11.359359351382256,14.666129459080189 +1999 JO12,127793,60407.03255018349,2460407.532923019,390145306.95142776,21.50178472673409,148.2064905574932,-0.0369411617207869,24.177289982103577,-0.010529038501074,-445445285.1810545,146518250.69824326,142010460.54640064,-7.3006125631516,-13.503466899266796,-3.3089049001329456,-142927900.15469316,-41003034.16019754,-17778024.70230406,8.127414834136585,-26.49089436941228,-11.3580131300731,14.67038277741382 +1999 LZ3,127914,60407.08985114443,2460407.5902240197,257291530.02284348,14.510253403067797,150.780220089227,-0.0549899756622623,16.663814818817315,0.0318832601263553,-358009078.2053468,79190595.0135044,55945525.90040079,-2.0463409407829185,-17.51468980346959,-5.606568657752118,-142887306.42611778,-41134380.26168078,-17834248.11041566,8.276208729149381,-26.56231346988472,-11.354824687877608,18.17124148110065 +1999 LZ3,127964,60407.11219956464,2460407.612572019,257319605.358886,14.56927998821401,150.77894109543462,-0.0546392977830194,16.664523117461595,0.0315061759234953,-358013027.49158674,79156777.7310015,55934700.61519846,-2.0445431135532584,-17.51508756143193,-5.6068496493843805,-142871264.3190334,-41185684.524932384,-17856171.57938244,8.340702440069233,-26.57759196385495,-11.353593534360432,18.178012365437244 +1992 SF17,128140,60407.192451153336,2460407.692824019,311250671.0545154,-2.9980268412565967,203.7581707671027,-0.2113364118899736,-9.953000376472156,0.0927992400019019,-423398647.03625965,-164878572.99506637,-71731533.70155886,5.00764064371279,-13.622866385613934,-5.0840688723295,-142812597.96777984,-41369993.13124147,-17934879.530058727,8.581346726042495,-26.567941689893928,-11.349180977946546,2.63713887646888 +1999 LZ3,131572,60411.047927265936,2460411.548300019,262402178.33445552,15.363997044861764,150.64206570498573,-0.0272448310410146,16.765893479475185,0.0196759871416954,-358654239.6369861,73189487.7439576,54019867.15217765,-1.7264827117484804,-17.582726465730495,-5.655660485847928,-139673171.16420883,-49988272.67897695,-21673158.83026259,10.12536416240019,-25.905444241362243,-11.086048015604408,19.286345483357017 +1999 LZ3,131622,60411.07164209287,2460411.572015019,262433723.9002297,15.42669033668152,150.64139248589777,-0.0270892167027415,16.766355361598787,0.0192767221233543,-358657775.0058325,73153462.60781835,54008279.13798772,-1.7245575666587687,-17.58311940792641,-5.65595049716384,-139652360.38955313,-50041380.150682695,-21695872.17884412,10.18872336389357,-25.93131943327753,-11.084392217825128,19.292847778050763 +1998 BW1,132364,60411.97424452221,2460412.4746170198,354908999.673873,25.482919321008943,114.68803669827032,0.249843523506164,20.627751129028805,-0.0286262504348869,-277559075.10468686,249768087.14866188,102475010.63112997,-16.09571435299045,-10.768002929089576,-3.95840324391641,-138825267.70491832,-52026814.03425595,-22557650.51733137,10.44398474182838,-25.612072241063775,-11.014955212474652,22.78389150238868 +1998 BW1,132385,60411.98501559516,2460412.485388019,354932726.6611738,25.508409042921045,114.69091258004124,0.2499302881569142,20.627442012561023,-0.0287714556987261,-277574052.46013653,249758066.8960081,102471327.09632751,-16.095123841913793,-10.768534325869556,-3.958621264206067,-138815539.37927428,-52050658.93125175,-22567900.817353856,10.463595157058847,-25.633257533191056,-11.014148241668224,22.78386234942909 +1999 LZ3,132605,60412.09158317338,2460412.591956019,263800754.25792667,15.698373381816618,150.62420541918576,-0.019809484862244,16.784529697196373,0.0157750720318566,-358806089.33799666,71603327.68592387,53509338.02537306,-1.6416630631545506,-17.59985214165243,-5.668376400032384,-138718067.82024574,-52287427.96773944,-22669277.051414333,10.726525040503784,-25.772507456382,-11.006308130657535,19.561683621849948 +1999 LZ3,132655,60412.11554532927,2460412.61591802,263833319.17030293,15.759188494785946,150.6237153642179,-0.0193230947599464,16.784903024852376,0.0153872506211084,-358809485.9052101,71566891.92575516,53497603.005461946,-1.639713296339102,-17.600241320782008,-5.668667221647793,-138695787.9819462,-52340796.5713987,-22692061.794019416,10.796941302703315,-25.781981548920854,-11.004567516488567,19.568058405314677 +2001 SF198,133173,60412.35795336095,2460412.8583260197,241124066.59403896,-16.021424981487577,253.94033698508537,-0.0112624329932801,-12.565467685928976,0.0795116415606898,-203569226.75701037,-279042240.33664167,-75380105.32657346,14.932366568022228,-11.049665179500606,-3.720756400564738,-138462796.15219498,-52878245.2440658,-22922355.57963701,11.367541498144282,-25.419377484781617,-10.986538228468095,19.578444080844545 +2001 SF198,133174,60412.35841602942,2460412.8587890198,241123425.7260069,-16.020175138703852,253.9403316422412,-0.011263999622528,-12.56543087074856,0.0795172033955816,-203568629.38209048,-279042682.3816108,-75380254.17652869,14.932391024273556,-11.049631654575014,-3.720747344690943,-138462341.4051756,-52879262.075872496,-22922795.075632904,11.367988339765912,-25.418142018260816,-10.98650212036402,19.57831832590169 +2001 SF198,133216,60412.379403575454,2460412.879776019,241094428.52026063,-15.96396891214627,253.9400892118646,-0.0112618313342623,-12.563759412321044,0.0797670683305929,-203541550.37373567,-279062718.11406887,-75387000.9094413,14.933499500860586,-11.048111982356987,-3.7203368416374056,-138441711.89914277,-52925301.073349245,-22942715.15546565,11.384690330878843,-25.361596957296843,-10.984856350003806,19.57261807577775 +2001 SF198,133217,60412.37985783738,2460412.880230019,241093802.36289072,-15.962766149261176,253.94008397393625,-0.0112602128530307,-12.56372319688081,0.0797724091952838,-203540964.56692207,-279063151.50508577,-75387146.84940547,14.93352347809398,-11.048079107193695,-3.720327961119099,-138441265.32251427,-52926295.87246972,-22943146.04209081,11.384974359317733,-25.3603655430457,-10.984820551063208,19.572494777186137 +2000 QM186,133906,60413.26447794604,2460413.764850019,291676121.80651987,-23.453789593481694,270.159515799127,0.095377893443905,-22.57845096847913,-0.0240228066430044,-136839597.41211766,-324174480.6006319,-135768420.63826123,17.244367095730826,-3.236955690671935,-3.214914581290481,-137589405.19641018,-54855010.532493696,-23779935.236432478,11.687854900257705,-25.452078188226427,-10.913131811008531,21.421178558954203 +2000 QM186,133956,60413.288760198375,2460413.7891330197,291626963.52840185,-23.406844454264075,270.16201310315523,0.0945607226211294,-22.579030736569894,-0.0237216088673672,-136803414.27252492,-324181270.6667858,-135775165.48236296,17.24507708256361,-3.235273204808628,-3.214209918681622,-137564829.1096965,-54908356.89501861,-23802829.554670528,11.738474911592672,-25.40017025703844,-10.911230461553949,21.417872845450717 +2000 QM186,134235,60413.42235583642,2460413.9227280198,291358566.8566639,-23.09066218092321,270.1754997375442,0.092640426343753,-22.582066009982483,-0.0216590673415946,-136604323.12710896,-324218563.62978184,-135812246.3487413,17.248980264795254,-3.2260150769351714,-3.2103320459959845,-137428343.8135139,-55199586.3460234,-23928711.67147922,11.864685278657698,-25.052390071209945,-10.90038165844085,21.39945127591113 +1992 SF17,136549,60416.18322366022,2460416.6835960187,310768305.43389827,1.673363723054722,201.8615820223796,-0.2144664876888237,-9.099972980854888,0.0954796160074176,-419335384.2706862,-175391751.66902015,-75650876.11608297,5.452743369259113,-13.44320384216324,-5.006247131784993,-134545712.18181604,-61128794.0765456,-26500506.27016156,12.879363885772412,-24.97021284109752,-10.6600453330163,0.8960907792139855 +1992 SF17,136599,60416.20764484783,2460416.7080170186,310771913.8392655,1.7469181814602457,201.8562781228184,-0.2144145552869477,-9.097639382473073,0.0956342572610232,-419323877.921584,-175420115.79356867,-75661438.88067704,5.453943353865863,-13.442702025111966,-5.006030678092244,-134518465.0504111,-61181450.227710254,-26522996.492536794,12.946969553927673,-24.939986279593416,-10.657957960057203,0.9058309086554018 +1992 SF17,136641,60416.22679643129,2460416.7271690187,310774851.8224639,1.803929588834157,201.85212062080512,-0.214268137617633,-9.095806648120906,0.0957535777702004,-419314852.3775453,-175442359.41614622,-75669722.33431023,5.454884398963031,-13.442308426580786,-5.005860906706733,-134496999.5461897,-61222695.44085103,-26540631.20510929,12.996890427244622,-24.910390245318364,-10.656312689760624,0.913468730742678 +1992 SF17,136691,60416.25091203088,2460416.7512850184,310778683.7211097,1.8737245430895564,201.84689108120105,-0.2139548829065769,-9.093495693369183,0.0958984070463569,-419303485.2937597,-175470367.42240617,-75680152.3713236,5.456069310020147,-13.44181274639757,-5.005647108488587,-134469857.4999713,-61274554.67861794,-26562832.767737865,13.054871991651517,-24.866379812853832,-10.654228268458438,0.9230824346672862 +2000 QM186,137870,60417.35570978302,2460417.8560820185,283583050.582006,-22.623733285094705,270.5475392146057,0.0679777621134702,-22.672081741725297,-0.0239087320363126,-130722674.39426026,-325268505.3154774,-136883835.56202468,17.361709418426546,-2.952078522689734,-3.095314726513904,-133223244.43070082,-63610994.36475559,-27574912.367427614,13.6735985261225,-24.391690414653453,-10.552109404450638,20.83171208872146 +2000 QM186,137917,60417.380642771735,2460417.8810150186,283534381.8440424,-22.561534729664174,270.5493726504453,0.067755142295786,-22.67267269256285,-0.023493768892013,-130685270.0300029,-325274863.3175254,-136890503.23596987,17.362410396980025,-2.950333743768007,-3.0945804479419188,-133193771.57772014,-63663465.549206346,-27597641.32186931,13.68776065052132,-24.323217259044124,-10.549767571453083,20.827614849605844 +2000 QM186,138682,60418.29961597492,2460418.799988019,281748991.399072,-22.58630011662453,270.62152347740897,0.0626399777442679,-22.69444174432193,-0.025138237241994,-129305581.36181872,-325506580.1117095,-137135153.38343966,17.38812643707443,-2.8859523012356685,-3.067470990483114,-132125202.03505152,-65587150.60540921,-28431730.90386531,14.05651731727966,-24.312875425994243,-10.461787546923086,20.680699574880137 +2000 QM186,138732,60418.32406782271,2460418.8244400187,281701334.413659,-22.529515785548533,270.623175697855,0.0620622431853835,-22.695051848343336,-0.0247598071576268,-129268842.80274507,-325512675.7755161,-137141633.60963458,17.38880748169642,-2.8842373039352123,-3.06674844915621,-132095467.9045209,-65638449.513157554,-28453830.58873148,14.090628181299344,-24.250027773316223,-10.45947410775362,20.676540041899298 +2000 QM186,139913,60420.30384433893,2460420.804217018,277896880.6391896,-22.218428311761297,270.75721283856706,0.0494203602160908,-22.743156664374773,-0.0257995829066743,-126289534.35115892,-325994173.358425,-137661232.55824554,17.443394639343694,-2.745048808553704,-3.008038732643009,-129676522.59646216,-69726947.56299186,-30226072.75136192,14.94882451904422,-23.830608651294263,-10.26211715889217,20.339464443117343 +2000 QM186,139963,60420.327139237976,2460420.8275120184,277852217.785911,-22.163003411269543,270.7584544609555,0.0489150791522299,-22.743753350204575,-0.0254257763963906,-126254422.99975616,-325999697.04350024,-137667286.55284673,17.444030400580665,-2.743407148748636,-3.007345474438752,-129646404.60879044,-69774849.86608897,-30246724.842224777,14.977931490524956,-23.76925289197544,-10.259779161496782,20.335181937018547 +2000 QM186,141829,60422.30507373817,2460422.805446018,274112655.369038,-21.83473173237902,270.8643843738019,0.0360149041697466,-22.79342364034533,-0.026549829252621,-123268553.00849997,-326456631.6284894,-138176217.9670723,17.497453616185865,-2.603687333789081,-2.948274543668089,-127080828.64749214,-73778841.96336211,-31982296.30550517,15.816985850318025,-23.330498482021124,-10.052050929488912,19.97149234839781 +2000 QM186,141879,60422.33074131335,2460422.8311140183,274064301.2426343,-21.77250768622231,270.8653795597535,0.0355025932236133,-22.79409971619518,-0.0261251526875153,-123229745.0545763,-326462404.27165663,-138182756.02360338,17.498139625720167,-2.601869889334844,-2.9475052721110013,-127045717.3313082,-73830506.52968925,-32004585.882614747,15.84573290882748,-23.26162678317141,-10.049332809419711,19.966415298893995 +2001 SF198,142692,60423.25057897233,2460423.750951018,227335030.2184748,-13.280449572299943,253.4423584083589,-0.0943074055884271,-11.669261610029752,0.08358525320231,-189251512.4918365,-289067066.6849743,-78780424.10553269,15.485644240673963,-10.249508131420972,-3.503641298442252,-125804649.00530197,-75662664.7337657,-32799202.87335059,16.15251096380046,-23.20639008524468,-9.94901952741534,16.314848086325284 +2001 SF198,142742,60423.27522695109,2460423.775599018,227306818.1444513,-13.21493036154904,253.4399767466888,-0.094919537652947,-11.667198130104676,0.0838527878410707,-189218531.72425056,-289088892.91701645,-78787885.21261533,15.486845873336511,-10.247672392598565,-3.5031410215356287,-125770200.44243668,-75712024.49886745,-32820387.38456545,16.198499583392845,-23.148868640329848,-9.946392724224427,16.306398188278177 +1992 SF17,145370,60426.12066758172,2460426.621040018,314368164.14705354,6.560000942292688,199.8350502686884,-0.1982616140946484,-8.171751738533604,0.0897050812157104,-414445292.0529028,-186844450.26351452,-79910702.2063793,5.936966285942813,-13.23289624238916,-4.915926781368997,-121730121.7876416,-81258183.64568841,-35226118.427660964,17.078799278784555,-22.59804615888663,-9.622177903175892,4.731393483133763 +1992 SF17,145420,60426.14503737415,2460426.6454100176,314382052.48518205,6.632227172898539,199.83016775248828,-0.1983452027422959,-8.169564226884903,0.0898203718930066,-414432790.4027886,-186872311.85394564,-79921052.5575089,5.938143662389718,-13.232365537654443,-4.915699799640562,-121694086.7062632,-81305747.39241463,-35246375.718575865,17.149263949129825,-22.57942156547955,-9.619461544419512,4.740684439167245 +2000 QR19,145597,60426.9986178272,2460427.498990018,341165036.0452035,25.2452338960241,129.92602297051818,0.2310857622041765,18.998205320344766,-0.0788518622615895,-327455750.9716603,164450115.74737337,75110294.54762526,-11.520123548807986,-12.842793261344726,-6.4379264369857685,-120423680.16294618,-82929055.00087376,-35952072.41927388,17.14931025089035,-22.28282764492614,-9.51755651634824,23.736433550607558 +2000 QR19,145647,60427.02241854762,2460427.522791018,341217007.51623905,25.299491945751143,129.93184408551878,0.2314418055922438,18.9963250427004,-0.0791457553832794,-327479437.2764371,164423707.09163135,75097056.26869208,-11.518416059374523,-12.843650845797525,-6.438318113974818,-120388352.56956431,-82974904.89275554,-35971641.57848162,17.2100585656637,-22.30814111599224,-9.514830326458172,23.73634154131486 +1992 SF17,146030,60427.20578892668,2460427.706161017,315016289.7685759,7.3014306934642095,199.6254774706269,-0.1952388017875861,-8.074777253403457,0.0891022877676452,-413886231.88517314,-188083954.71141204,-80371107.03706877,5.989343027535541,-13.209195151447975,-4.905794165959732,-120111575.22513442,-83328286.5656753,-36122221.00390393,17.721345214614953,-22.21564929477127,-9.493891272554636,5.137767753462894 +1992 SF17,146080,60427.230345442,2460427.7307180176,315031854.59486705,7.369775378494269,199.6206403444523,-0.1947841793315115,-8.072587902382507,0.0892039329988152,-413873523.2027695,-188111979.73131853,-80381515.28339653,5.990527205316687,-13.208657113732473,-4.905564247488615,-120073915.49655576,-83375371.10531804,-36142361.418518245,17.77672495248546,-22.16644387389801,-9.49105120314736,5.147048307153046 +1998 WD8,147449,60428.42281821025,2460428.923191017,439859146.1920678,-22.305593036858028,329.9095113753286,0.2818806578335851,-17.508710610409274,0.0690361080685678,244707530.81099057,-295928718.7145085,-169444696.03097418,14.06070128871025,10.039059987291951,3.2140636071319024,-118241979.23305067,-85614736.51416059,-37112725.06916517,18.312718836133925,-21.37078969535164,-9.346172923861811,20.00688021541376 +1999 LZ3,147537,60428.99991073471,2460429.5002830173,288672176.37701464,18.07765166370347,151.40130218582502,0.0906832000325492,16.63977795585602,-0.0315654457202971,-360186919.2810258,45715246.54311329,45085428.00375991,-0.2405138412910923,-17.82834187419554,-5.8604857374917545,-117348094.33435062,-86677619.27473426,-37576894.69103049,17.961418889662784,-21.727862021028905,-9.273291434852696,22.96186462597892 +1999 LZ3,147587,60429.02367443869,2460429.524047017,288709356.2722359,18.13756995191329,151.40355262019258,0.0908102525076759,16.639023628119922,-0.0319195283271717,-360187411.02065456,45678643.17175172,45073395.6680686,-0.238509911908128,-17.82859630535752,-5.860736627939415,-117311153.16568016,-86722255.8738586,-37595931.7841788,18.02314719141319,-21.75065743924572,-9.270450897095856,22.965479391057592 +1999 LZ3,147604,60429.03133883447,2460429.531711017,288721373.1941803,18.15684789248816,151.40427928967426,0.0908841302746847,16.63877856017434,-0.0320334145224242,-360187568.7315442,45666838.30491552,45069515.074676506,-0.2378636153741839,-17.828678319625567,-5.86081752942963,-117299211.9248444,-86736660.41340011,-37602070.09231655,18.04393144607316,-21.75629872562158,-9.269536625412847,22.966643744439303 +1999 LZ3,147654,60429.05520522838,2460429.555578017,288758877.13600147,18.21607403998124,151.4065470247071,0.0912159667347032,16.638009821467108,-0.0323837363897298,-360188057.12858474,45630075.598972864,45057429.90533576,-0.2358508755235865,-17.828933598014654,-5.861069433424323,-117261934.95893422,-86781538.06702842,-37621181.953028224,18.11075864388509,-21.768241384769613,-9.266693608774416,22.970263555965698 +1992 SF17,147791,60429.11931522979,2460429.6196880173,316277331.87955534,8.013760514390954,199.26546507621464,-0.1899992702937505,-7.906874149557384,0.0864980093983336,-412888427.4072892,-190264280.91007516,-81180669.73674868,6.081464729656233,-13.16704954324438,-4.887797612791115,-117161102.26224656,-86902111.23197451,-37672490.01334311,18.29725351474982,-21.75612761464049,-9.259067667162563,5.844422158624075 +1992 SF17,147841,60429.14372251138,2460429.644095017,316294307.32672083,8.086249341514069,199.2607827189416,-0.1900189128149887,-7.904761708486622,0.0866035286932411,-412875602.1367623,-190292045.8045283,-81190976.43208157,6.08263775348706,-13.166509092209116,-4.887567010146966,-117122443.83323236,-86947968.53542596,-37692012.14354787,18.36689501857664,-21.73443134203564,-9.256159074449045,5.853506597002357 +1992 SF17,148793,60430.13571288456,2460430.636085017,317008059.439068,8.54026249939047,199.07835688115347,-0.1869322911799178,-7.819442105410628,0.08534919284735,-412352244.493295,-191419545.678154,-81609465.77649358,6.1302713185881545,-13.144481800927302,-4.878171986259738,-115542381.58541568,-88765461.26508845,-38479963.307247065,18.741732629145552,-21.448669715094017,-9.130835314117595,6.21531527705308 +1992 SF17,148865,60430.17011313594,2460430.670486017,317033595.45127046,8.642479326434321,199.07186832432384,-0.18674299281165,-7.816503526752761,0.0854929487684504,-412334021.8868189,-191458612.0580798,-81623964.00440326,6.131921705858603,-13.143715773233495,-4.877845391359436,-115486535.34928976,-88829151.9184647,-38507096.16173163,18.835536778998936,-21.40533406880053,-9.126634636535464,6.228002592284056 +1992 SF17,148915,60430.19461971733,2460430.694992017,317051970.11875784,8.713636192075727,199.06725266172907,-0.1864302273299674,-7.814407219358413,0.085591408232174,-412321037.78813016,-191486440.10523453,-81634291.41059014,6.133097319609489,-13.143169995799823,-4.87761270513661,-115446588.4652574,-88874431.75886208,-38526416.972724624,18.897060702293672,-21.364258227511154,-9.12362824067768,6.237035724432938 +2001 SF198,149255,60430.35531883368,2460430.855691017,219967747.038202,-10.668864021889158,252.62694523509668,-0.1462546817890286,-11.069489459492855,0.0847805602322784,-179640898.10060623,-295195646.5678387,-80886627.58974521,15.822532826608716,-9.715914703303568,-3.357829653488825,-115182274.22198115,-89168433.90670364,-38652953.96525688,19.11507200738372,-20.958993375465564,-9.103443180108718,13.797577998412049 +2000 QM186,150084,60431.29687338574,2460431.797246017,257981311.7390287,-19.84592793990118,270.9807284427251,-0.0271672452143998,-23.041326520829955,-0.0304594907536592,-109583620.239054,-328230507.3781744,-140361088.3273802,17.72617164354844,-1.960387024976399,-2.674575381396444,-113646988.27790985,-90865003.0235688,-39388500.02117526,19.46614043880501,-20.81728559130628,-8.981546025061972,17.96781967694682 +2000 QM186,150134,60431.32242346413,2460431.8227960174,257937573.01241592,-19.781205624002656,270.97996780235235,-0.0275911836883982,-23.0420988482763,-0.029994201588562,-109544486.09210403,-328234833.22080606,-140366992.02524844,17.726787926862066,-1.9585403359549949,-2.6737856625028384,-113603991.28949076,-90910879.09656724,-39408323.31411698,19.487164465058257,-20.74586046439895,-8.978234998592711,17.961089861965156 +2001 SF198,151059,60432.29566528121,2460432.7960380167,218210297.23267016,-10.11091801164844,252.3416028605748,-0.1603384288261331,-10.906899206054169,0.0836119703523978,-176980767.0041531,-296812204.3508578,-81446193.07271932,15.9112201643143,-9.568680013261796,-3.317459157722212,-111984283.23412178,-92639578.64745852,-40157819.05191344,19.846349295992336,-20.50873413268602,-8.849680076420006,13.068330809060928 +2001 SF198,151060,60432.29611829165,2460432.7964910166,218209901.53109637,-10.109628750169938,252.34152889075665,-0.1603398545752246,-10.906861328755385,0.0836167377022555,-176980144.2303662,-296812578.87327206,-81446322.91960417,15.911240702740605,-9.568645566056558,-3.31744970584339,-111983506.45517054,-92640381.31829704,-40158165.42011018,19.84679790073753,-20.507480400352755,-8.849620351286369,13.068154691789374 +2001 SF198,151109,60432.31974068287,2460432.8201130168,218189337.00814185,-10.042902081292048,252.3376716153636,-0.1603117163228012,-10.904883215956184,0.0838628308714702,-176947668.14485922,-296832106.7364024,-81453093.36296254,15.912311585279893,-9.566849245480851,-3.3169568137717,-111942979.49523956,-92682168.51571263,-40176223.78559448,19.86573651510992,-20.44122573472205,-8.846494719332185,13.058972330690413 +2001 SF198,151110,60432.3201897205,2460432.8205620167,218188947.4385102,-10.041647642619887,252.33759831230776,-0.1603092476031153,-10.904845560516009,0.083867441999878,-176947050.8280228,-296832477.88064736,-81453222.0437718,15.9123319382414,-9.566815100663712,-3.316947444698898,-111942208.82659194,-92682961.47965248,-40176566.97175928,19.86601109958821,-20.43995408059368,-8.846435093047068,13.058797837145866 +2001 SF198,151142,60432.33586361277,2460432.836236017,218175378.3570464,-9.998343568515391,252.33504035227105,-0.1601786114209863,-10.903529772337484,0.0840261449848861,-176925500.61151344,-296845433.2095352,-81457713.89434624,15.913042385473643,-9.565623128911058,-3.316620374967514,-111915300.03772835,-92710611.83129635,-40188545.6997834,19.873582085809733,-20.39544193738807,-8.844348537581253,13.052708057049204 +2001 SF198,151192,60432.36052296814,2460432.8608950167,218154147.35550568,-9.932769009528444,252.33102219770976,-0.1598027202834668,-10.901454803378623,0.0842641210173859,-176891594.95836717,-296865811.80948937,-81464779.76572005,15.914159902077524,-9.563747786483797,-3.3161057849065894,-111872952.66628136,-92753990.5612056,-40207385.40288938,19.87756265174193,-20.325619269412165,-8.841045856683102,13.04313576720007 +1999 JO12,151485,60433.02971977216,2460433.530092017,443791535.2801136,25.49742742095139,149.0567515046025,0.0833713141789488,23.21016866261125,-0.0601271176897652,-460569142.4916652,115804244.92052104,134184576.92564344,-6.16467389442871,-13.832766663310691,-3.655382423731453,-110745455.89397308,-93919713.4265344,-40715898.70756511,19.59979808445848,-20.56305932067001,-8.749801234078792,17.4998382942789 +1999 LZ3,151487,60433.03061429086,2460433.530987017,295042113.3740479,18.516097195367117,151.8610929220956,0.1144274848272849,16.491370679245204,-0.0421454630614522,-360211338.0743464,39499660.365911365,43037304.862939626,0.1007168181560072,-17.868734634467494,-5.902240507761687,-110743940.18483788,-93921303.54462096,-40716575.307752006,19.602277652740188,-20.563515638315543,-8.749685094513866,23.5007425028148 +1999 JO12,151535,60433.05345753535,2460433.553830017,443843886.55470514,25.55208469195848,149.05890830174127,0.0836552741776714,23.208737929559074,-0.0604147085523372,-460581783.8668504,115775876.57317156,134177080.19817378,-6.163630980272556,-13.833029091173634,-3.655686387608245,-110705189.14893197,-93961897.1383253,-40733841.07069468,19.666764525120783,-20.57100389478509,-8.746723119427521,17.501075383734246 +1999 LZ3,151537,60433.05435247749,2460433.554725017,295080150.03802925,18.57385734078147,151.8639300685677,0.1148024382012725,16.490366247684925,-0.0424792799491291,-360211129.4531391,39463014.28998771,43025200.08698476,0.1027343217573214,-17.868955959941136,-5.902481610024701,-110703668.2580946,-93963487.8580663,-40734517.43286211,19.669329726453185,-20.57113214542941,-8.746607135788777,23.50376911407572 +1992 SF17,152641,60434.11610479162,2460434.616477017,320267960.2934415,10.347987627244688,198.3797969379236,-0.1730384553958013,-7.490415995992325,0.0796761853212533,-410211315.6743692,-195924517.92499155,-83280507.1064311,6.320567581636634,-13.05489521070892,-4.840034116637928,-108874637.07763714,-95801145.40101343,-41530264.02646921,20.224302188307448,-20.23132756814837,-8.601633907263649,7.631241855792905 +1992 SF17,152691,60434.13965422124,2460434.640027017,320289086.5371438,10.417703392886228,198.37568740678603,-0.1729660407177557,-7.4885386133255345,0.0797618473771931,-410198454.3938474,-195951079.51575565,-83290354.64761387,6.321689481372881,-13.054359464617024,-4.839806384058996,-108833419.13077676,-95842286.2023678,-41547762.76565752,20.28987114886246,-20.20604737599776,-8.59850950299714,7.639570150498002 +1992 SF17,152753,60434.16545641086,2460434.665829017,320312395.471942,10.493475274865888,198.37118887601548,-0.1727298514419191,-7.486479400195967,0.0798541585809438,-410184360.6193112,-195980179.8352278,-83301143.33836041,6.322918610020658,-13.053772410331227,-4.839556846152688,-108788110.33102372,-95887291.7936162,-41566927.5361775,20.357931407979663,-20.168927079505437,-8.595076033995703,7.648692092666597 +1992 SF17,152803,60434.1888529561,2460434.6892250166,320333675.1352673,10.560252264847232,198.3671168620508,-0.1723769023037064,-7.484610192184021,0.0799336261488776,-410171578.7038472,-196006565.45322004,-83310925.51564659,6.324033075131296,-13.053240028642092,-4.8393305519064045,-108746900.0160052,-95928020.75468592,-41584298.58964531,20.41497336016045,-20.12736926514393,-8.591950449739745,7.656957765684068 +2000 QM186,153241,60434.39808324944,2460434.898456017,252796080.3168437,-18.7983943422275,270.87534487981463,-0.0495031404193733,-23.135545631115725,-0.029837997133215,-104823786.26706529,-328725716.7327921,-141064885.82094342,17.79955692474912,-1.7354729092006915,-2.5782257848914223,-108375177.66853142,-96287152.25671726,-41739362.47988426,20.601550070349926,-19.57997771931624,-8.563176377200895,17.13771294137566 +2000 QM186,153263,60434.409795636064,2460434.910168017,252777072.16325992,-18.77072128436648,270.87471542729634,-0.0493343251067886,-23.135893918603,-0.0296385649908946,-104805773.32932363,-328727472.5663983,-141067494.7496554,17.799828624658023,-1.734620581349584,-2.577860022039223,-108354335.09648052,-96306950.19496876,-41748026.86240586,20.59236413061245,-19.549764100869236,-8.561515931984285,17.134360482208717 +1999 JO12,155445,60437.0334204716,2460437.5337930163,452625395.8198933,25.74154696038555,149.47367216905133,0.0995284630250204,22.959165748819192,-0.0660563344139906,-462671008.34857285,111012082.86057916,132911386.22498845,-5.98865040092574,-13.876051713313494,-3.70632852226227,-103667222.0736321,-100679571.8967386,-43646461.76676836,21.080906254767967,-19.272049074485995,-8.185976118369215,17.659793882440837 +1999 LZ3,155447,60437.0343153372,2460437.5346880164,301471655.2289944,18.79712239175093,152.41333654635093,0.1370197607901582,16.304520106779332,-0.0518940827903802,-360117501.98269415,33312757.674720995,40988789.635558896,0.4422779025785778,-17.90328962871554,-5.942097344523504,-103665591.83193824,-100681062.17498548,-43647094.76711415,21.083422304845755,-19.27228310510964,-8.185850421755744,23.941814453762603 +1999 JO12,155495,60437.057147843385,2460437.557520016,452678221.3532176,25.794193886432737,149.47624087015615,0.099857160417609,22.95759519000728,-0.0663271401331988,-462683283.03506494,110983638.96705487,132903788.55051775,-5.987606517833981,-13.87630238353921,-3.70662851584722,-103623936.9972284,-100719083.36409543,-43663239.707800016,21.14842088253141,-19.27400620574066,-8.182645196928013,17.660628631239412 +1999 LZ3,155497,60437.05804185979,2460437.5584140164,301510247.026534,18.853053033516485,152.4167288545128,0.13746111829676,16.30328509416547,-0.0522099705402962,-360116593.321475,33276059.36182528,40976609.30173968,0.4443096319203595,-17.90347766808451,-5.942328653375044,-103622303.35965437,-100720572.11586694,-43663871.7437657,21.150989120798545,-19.27390595543962,-8.182519727948767,23.94429050779605 +2001 SF198,155907,60437.24997618656,2460437.7503490164,214265404.47227165,-8.320350673760334,251.49830317798907,-0.1919304279474247,-10.499441067708004,0.0804954453007315,-170122309.73213804,-300827306.84073776,-82844052.99753138,16.131174143936146,-9.18994258495152,-3.213350909679225,-103267316.99728924,-101038458.65935196,-43799339.62369953,21.61494075609173,-18.982390899743127,-8.155339033505987,11.151074250094403 +2001 SF198,155957,60437.27317160858,2460437.7735440163,214248797.19296485,-8.253537580690274,251.49377270989515,-0.1921387866565616,-10.49757130124546,0.0807262867486381,-170089980.18095392,-300845722.6502733,-82850492.39337997,16.132181924315905,-9.188160170047222,-3.212860079727077,-103223968.690236,-101076438.16407771,-43815679.95846741,21.64447410544445,-18.91987456332484,-8.151986423058569,11.14177684196073 +2000 QM186,156017,60437.301246595416,2460437.801619016,248143236.45524997,-18.188264095791823,270.7088319866681,-0.0715787396033897,-23.22782548911461,-0.0328363809819557,-100350446.87043533,-329134503.4568289,-141700222.88900113,17.86564007969315,-1.5235308106522465,-2.487126516916881,-103171433.6105584,-101122236.48986565,-43835449.11986409,21.66923089689954,-18.8409080337645,-8.147900859637927,16.295949248601982 +2000 QM186,156067,60437.32666156726,2460437.827034016,248103370.83248568,-18.12182833669103,270.70684824119763,-0.0718412948267993,-23.22865374856248,-0.0323416621073363,-100311213.49820556,-329137847.0712421,-141705683.71203044,17.866207314590763,-1.5216695198201224,-2.486325166558151,-103123836.40353043,-101163528.4616993,-43853336.651016936,21.680899986145327,-18.768013328791582,-8.144175409992085,16.288087310031827 +2000 QM186,157643,60441.24763375227,2460441.748006016,242160931.11217803,-17.081299687975793,270.37368195460675,-0.10005057368478,-23.35901239673431,-0.035295794543485,-94243732.53865308,-329604595.5059591,-142526997.53496218,17.951350393441434,-1.233297867290893,-2.361897486970791,-95693643.67714132,-107296266.2034222,-46512305.75541044,22.953268891272696,-17.56685699869035,-7.549487515177556,15.04837266786391 +2000 QM186,157645,60441.24854631062,2460441.7489190158,242159583.7835045,-17.079050302430797,270.3735824406984,-0.1000755916584936,-23.35904461403501,-0.035278809689381,-94242316.39761972,-329604692.79533887,-142527183.85842365,17.951369667554406,-1.2332304399198006,-2.3618683298016405,-95691833.00407122,-107297651.83561882,-46512901.27743923,22.954440570587263,-17.564389336933033,-7.549347265957386,15.04806342395042 +2000 QM186,157693,60441.27263018707,2460441.773003015,242124107.80428943,-17.01821239615673,270.3709491914709,-0.1006431512888213,-23.359888762223576,-0.0348176219909401,-94204959.49931614,-329607257.26860934,-142532098.04976907,17.951878005619403,-1.2314517281237152,-2.3610991626447424,-95644039.11180176,-107334131.9312578,-46528606.53691788,22.980815943075285,-17.49769519913849,-7.5456364033317405,15.039898338377208 +2000 QM186,157695,60441.27358203158,2460441.7739550155,242122708.1194269,-17.015757179406933,270.3708448147134,-0.1006618610696979,-23.35992189972399,-0.0347989515400621,-94203482.8219885,-329607358.5618921,-142532292.26663297,17.95189809567806,-1.231381416772407,-2.3610687575320064,-95642148.839352,-107335571.0554845,-46529227.18076149,22.98167590176145,-17.49500542215051,-7.545489266641596,15.039575319350552 +1992 SF17,158373,60442.121666028346,2460442.6220390154,328646722.0265052,13.808562551524084,197.1661049121113,-0.1387186748865691,-6.907248859571568,0.0654191141258254,-405708414.4368023,-204890102.71558085,-86601033.06606048,6.699224453896144,-12.86893361725246,-4.761213322339545,-93980892.31881236,-108596361.1914444,-47077177.02660216,23.01379060289568,-17.46731763456844,-7.411887373590587,10.27279759821804 +1992 SF17,158374,60442.12211294648,2460442.6224850155,328647254.15982443,13.809854978774844,197.1660425921127,-0.1387148204851387,-6.9072196823744045,0.0654202949665573,-405708156.29763407,-204890598.58930555,-86601216.52807055,6.699245396682387,-12.868923043461413,-4.761208852974303,-93980005.47320372,-108597034.27261968,-47077462.638014734,23.014969819058937,-17.466713191272053,-7.411819506185454,10.272938593837262 +1992 SF17,158423,60442.14600853552,2460442.6463810154,328675837.41106486,13.878395714946944,197.1627066815284,-0.1384391281550504,-6.90565565362943,0.0654821446382702,-405694324.4206205,-204917166.1403041,-86611045.88682996,6.70036745379789,-12.868356481449108,-4.760969378628045,-93932424.58880132,-108633059.95082012,-47092761.42999029,23.07611760728741,-17.430152987585224,-7.408178074982358,10.280490375591397 +1992 SF17,158424,60442.14645656498,2460442.646829016,328676374.6332341,13.879663050783956,197.1626442090156,-0.1384326747666273,-6.905626317366809,0.0654832693852398,-405694065.0796873,-204917664.2152387,-86611230.16206035,6.700388489557827,-12.868345858944725,-4.760964888746485,-93931531.35522328,-108633734.60873508,-47093048.178594,23.07722186555528,-17.429391367583005,-7.408109698692117,10.280631898075749 +2000 QM186,158947,60442.39596038328,2460442.896333015,240499112.8858536,-16.374150946612996,270.2514879186152,-0.1078219436841398,-23.398307996451308,-0.0327166869543649,-92461385.7168174,-329722753.9082123,-142759525.8057711,17.975387896547144,-1.1483887026772135,-2.325157425799325,-93430195.93388449,-109002886.2608822,-47252328.53043001,23.283276704720063,-16.784053593466023,-7.369013475196088,14.662001285711565 +2000 QM186,158969,60442.407420217336,2460442.907793015,240482913.1418733,-16.34824885263222,270.2501430803363,-0.1075726881564926,-23.39868181491875,-0.0325237351875041,-92443586.40515769,-329723890.6208945,-142761827.99039498,17.975625717399918,-1.1475403017732515,-2.324790088425285,-93407148.2877851,-109019490.81327666,-47259623.99876288,23.27056433658991,-16.75581464823743,-7.367162578573912,14.65802886312275 +2000 QM186,159638,60443.2501127467,2460443.750485015,239286269.3611664,-16.413810657834148,270.156077319275,-0.1147281297069256,-23.42792036153781,-0.0358632918720272,-91134100.7495174,-329805173.4340348,-142930117.68096703,17.993001208890565,-1.0850988542617692,-2.2977416531910824,-91732194.611875,-110246242.88505548,-47791077.29950767,23.582505214576173,-16.819810578080975,-7.23325487482263,14.370265394006775 +2000 QM186,159688,60443.27453295188,2460443.774905015,239251704.10846397,-16.351026612737037,270.1530166205596,-0.1152458321740723,-23.42879028838156,-0.0353803343708947,-91096134.92920773,-329807461.0865608,-142934965.09578907,17.99350141812578,-1.0832877552474571,-2.296956743978836,-91682411.55435294,-110281658.83123206,-47806334.58595217,23.6062015456238,-16.75117066121498,-7.229392111140836,14.361616797720073 +2000 QM186,160877,60448.37666036951,2460448.877033014,232459108.15690225,-14.32282111925825,269.4561935484985,-0.1499953666293672,-23.609868766539257,-0.0343139229137973,-83141332.10122757,-330201321.88716,-143911225.92440665,18.093887613232248,-0.7028874068009093,-2.13162840172989,-81119726.19158478,-117210085.7102346,-50809757.69498677,25.00724307075954,-14.5383468973676,-6.391654494692321,12.49927200707682 +2000 QM186,160898,60448.386195174586,2460448.886568014,232447317.83720583,-14.30082304921237,269.45463379128705,-0.1497788033198245,-23.610195131623243,-0.0341434423621445,-83126425.13595863,-330201900.67633086,-143912981.96678197,18.094067472444543,-0.7021727988129769,-2.13131694966572,-81099128.86557917,-117222052.79128437,-50815022.62069565,24.99674223478422,-14.514301637148687,-6.390020698734568,12.495550430045832 +2000 QM186,160928,60448.40106792405,2460448.901440014,232428963.47274396,-14.268054548343564,269.4522058493152,-0.1493906556922952,-23.610701020062344,-0.0338919672901268,-83103174.0416689,-330202802.254237,-143915720.4015259,18.094347945607968,-0.7010581779227542,-2.1308311509819515,-81067021.2773337,-117240679.55406362,-50823231.77880881,24.97798978586366,-14.478458877018094,-6.387466498239164,12.489750168599665 +2000 QM186,160949,60448.41055385032,2460448.910926014,232417277.7484893,-14.2482307932625,269.450660678599,-0.1491127166368638,-23.611021799745945,-0.0337416381054525,-83088343.30870917,-330203376.5711204,-143917466.7665234,18.094526806407732,-0.7003472074896329,-2.130521276015839,-81046554.97144523,-117252537.00260413,-50828466.21614549,24.96459652770187,-14.45675908355739,-6.385833731133316,12.486053657037418 +2000 QM186,161762,60450.19590377167,2460450.6962760133,230229702.91362163,-14.042211725462504,269.1622625731308,-0.16221862993979,-23.675868164579448,-0.0382143459305728,-80294483.76796645,-330301079.8864505,-144241617.53554806,18.12767532847661,-0.5662949736317133,-2.072037408707861,-77211672.86428055,-119471933.33964892,-51790098.63524075,25.473674663483106,-14.24911321108932,-6.083260520072053,11.792284352075532 +2000 QM186,161812,60450.21870081662,2460450.7190730134,230202098.62793133,-13.986789170839575,269.15821525294905,-0.1629426832015123,-23.67673437376237,-0.0377734307473171,-80258776.31581433,-330302193.65962267,-144245698.20007628,18.12809196013548,-0.5645801765031722,-2.0712885429035373,-77161464.58973993,-119499940.96649674,-51802076.82856775,25.506752128171676,-14.189267790685197,-6.079433010287713,11.783088203070292 +2000 QM186,162942,60460.30767032746,2460460.8080430105,219848362.2679429,-9.695655887473016,267.1041251556975,-0.2230781614804643,-24.04424834806158,-0.0344464115050755,-64380612.20091452,-330461384.6729891,-145905338.45661685,18.2957385830848,0.2018262660862535,-1.7347382415218908,-54237385.09129623,-129945416.22359668,-56329874.55884163,27.71189696661781,-9.76426115882375,-4.288167711478934,7.46495249538071 +2000 QM186,162992,60460.33181502685,2460460.8321880107,219828200.00957292,-9.63476234760327,267.09823282976794,-0.2226169858788784,-24.04507377396595,-0.0339320808263818,-64342443.34088042,-330460961.69296914,-145908956.60672992,18.2960991100871,0.2036781087135345,-1.7339205952191985,-54179592.57275663,-129965715.33810742,-56338815.52826023,27.693159479121658,-9.697368621659589,-4.283660725760556,7.453711453034245 +2000 QM186,162999,60460.33494728511,2460460.835320011,219825593.82603568,-9.627145262887312,267.0974694667721,-0.2225434308389083,-24.045179949047384,-0.0338682177979488,-64337492.16301456,-330460906.54249966,-145909425.81473866,18.2961458618562,0.203918328939399,-1.7338145289316782,-54172099.08061762,-129968338.35459252,-56339974.62814828,27.69010606252789,-9.688969067630971,-4.283074553938316,7.452254139380608 +2000 QM186,163049,60460.35912670188,2460460.8594990107,219805541.59285772,-9.570970961495872,267.0915857300978,-0.2218758391683737,-24.045993110294468,-0.0334017860925207,-64299268.71277758,-330460478.5935315,-145913047.1279199,18.29650667312801,0.2057728727291752,-1.7329956658445829,-54114280.635110885,-129988513.42191936,-56348917.51667868,27.66197877400739,-9.626775998536797,-4.278537989219884,7.441011919320605 +1992 SF17,163373,60461.02658015218,2460461.526953011,356461964.6199053,19.78899984000489,195.54322651795584,-0.0418255323468219,-6.059175597704657,0.0234546999489089,-394050098.1623673,-225531309.2719152,-94218571.2901634,7.57143838718751,-12.39966992628662,-4.5640702469720615,-52543039.32796794,-130545498.00646938,-56592029.52499662,27.50873288113933,-9.979479300810802,-4.154381065203872,15.160813134533976 +1992 SF17,163423,60461.05150750582,2460461.551880011,356504658.6589873,19.85793304862932,195.54217873998823,-0.0417496593372623,-6.0585904802869655,0.0234919120425321,-394033791.4736404,-225558011.88876116,-94228399.95412874,7.572567766109937,-12.399023652471238,-4.563800255581359,-52483722.37429863,-130566967.01247849,-56600971.96458929,27.57487683082839,-9.95582789124676,-4.1499031967138365,15.166043822751766 +2000 QM186,164058,60465.146209515005,2460465.6465820093,216178249.4543703,-7.908686762030368,265.90759303999727,-0.244200058946891,-24.213490945219075,-0.0360115911483258,-56717307.68209904,-330299208.86256564,-146596156.04311416,18.364015895239053,0.574567683208091,-1.5697326997965626,-42646957.50656955,-133642258.05977637,-57933286.22692085,28.440558417935783,-8.02433952468954,-3.3791899183926817,5.198704521089192 +2000 QM186,164108,60465.169428405046,2460465.6698010094,216162441.27398896,-7.850598395057386,265.90136660179354,-0.2449080016264992,-24.214321326620112,-0.0355082894349976,-56680465.95487886,-330298054.3779947,-146599304.40094647,18.364324159200294,0.5763642605738217,-1.5689353086497522,-42589867.09202388,-133658295.96945764,-57940060.92205694,28.474420803547797,-7.963885335490845,-3.3748295077901065,5.187399662375988 +2000 QM186,165483,60466.33255919102,2460466.8329320094,215414740.9747693,-6.963866274159507,265.5954122634539,-0.2481072222041683,-24.253535493762257,-0.0311953088982336,-54834138.35474005,-330235606.05127895,-146754968.2824954,18.3795272084427,0.6664569950454742,-1.5289231210637428,-39750724.57094483,-134414132.48394188,-58267953.71103155,28.614017237317096,-7.049130819196055,-3.151903883553937,4.6265392049461065 +2000 QM186,165484,60466.33297340517,2460466.8333460093,215414491.8960724,-6.962916444665041,265.59529960630834,-0.2480940962212071,-24.253548406943658,-0.0311872293691541,-54833480.91120111,-330235582.2112648,-146755022.97246814,18.379532536131244,0.6664890953872326,-1.5289088556761912,-39749701.06844666,-134414384.60940957,-58268066.45189661,28.613503078313208,-7.04806557692655,-3.1518229818612733,4.626336164681252 +2000 QM186,165533,60466.35552258345,2460466.8558950094,215400975.2819186,-6.913604370820337,265.5891732000913,-0.2473060752863911,-24.254246874853223,-0.0307723837008009,-54797672.176441126,-330234282.001978,-146758000.95629957,18.379822625010387,0.6682375143776006,-1.5281318489284936,-39693984.78269576,-134428060.9177013,-58274202.64152853,28.58213501784881,-6.992448255909668,-3.14740828594422,4.615285635451922 +2000 QM186,165534,60466.35596989156,2460466.8563420093,215400708.28982112,-6.91267767484676,265.5890519560767,-0.2472890641288319,-24.25426062838542,-0.030764689195463,-54796962.31663853,-330234256.1928593,-146758059.9750296,18.379828373796894,0.6682721748497691,-1.5281164454390792,-39692880.93123817,-134428330.9512781,-58274324.19523714,28.581448841168605,-6.991396640659847,-3.1473206123493496,4.615066751622738 +2001 SF198,166407,60467.28136055165,2460467.781733009,209322874.2683247,4.922442601910338,244.43089625669813,-0.2450138490748716,-8.742878551565658,0.0278472174460474,-126723167.40428346,-321622139.351544,-90335967.4577466,17.26253034703188,-6.818552577537432,-2.553633770451179,-37429300.32899571,-134993263.1423323,-58518777.77071658,28.78497654132436,-6.739689636077561,-2.969196781259264,7.117522916173521 +2001 SF198,166409,60467.282258004765,2460467.782631009,209323256.2690233,4.924531340525512,244.4306736648282,-0.2449760600288566,-8.74285354306001,0.0278510170731693,-126721828.07400908,-321622668.3723434,-90336165.58295806,17.262558947886774,-6.818479981197584,-2.553613381322209,-37427067.002707645,-134993785.95524785,-58519008.13556351,28.784482620442542,-6.737095814468323,-2.9690220088830386,7.117821367963133 +2000 QM186,166441,60467.29675869286,2460467.797131009,214833751.67554325,-6.592281948107043,265.33932247137363,-0.2523774671970244,-24.28567871108509,-0.0313677399123105,-53302450.875938624,-330176968.4830279,-146880955.753209,18.391773492856316,0.7412818795506851,-1.4956537313029032,-37391011.53240294,-135002200.17457852,-58522725.95683356,28.77480379236481,-6.695740521744529,-2.9661958194526497,4.159864488231683 +2000 QM186,166445,60467.29856699975,2460467.798940009,214832721.67176703,-6.587692371278997,265.33882163559804,-0.2523373924465649,-24.28573541906192,-0.031327681593564,-53299576.22082599,-330176852.6089508,-146881189.52057043,18.391796164186577,0.7414223830473404,-1.4955912268335718,-37386514.21064103,-135003246.3053994,-58523189.53853592,28.77337384482593,-6.690658829402244,-2.965842686865799,4.158970668926648 +2001 SF198,166789,60476.1100274578,2460476.610400006,214292976.28349143,8.241698892521025,242.44686687201929,-0.2126478423904786,-8.609639274281191,0.0029584607180758,-113452277.56224708,-326549940.4650809,-92206946.32449643,17.5284940849505,-6.100749483330561,-2.351496468564188,-15443591.890833115,-138702530.22772107,-60126926.30399079,29.46747331741273,-3.1169764950982466,-1.2442498433930478,10.366217168926829 +2001 SF198,166839,60476.13468020435,2460476.635053006,214310606.9763345,8.312825252514475,242.4415639925525,-0.2126686615747584,-8.609564491758233,0.0031088254938113,-113414941.8202293,-326562932.6727403,-92211954.31248532,17.52919406364961,-6.098734198883215,-2.3509274592135787,-15380786.433932189,-138709102.9161251,-60129571.51393181,29.50290422333034,-3.053619295271284,-1.2394898599117654,10.375916172698716 +2000 QM186,169261,60485.2027167642,2460485.7030890035,210734083.3714922,1.503646613164868,260.2968458244808,-0.2604610557238498,-24.773857124055866,-0.0199352235828793,-24704625.48541885,-327943393.92143565,-148708293.98383132,18.55865711736629,2.153039278183114,-0.8615328580123561,7544509.5670958,-139340699.97043294,-60402739.13470467,29.657813201481236,1.2794992671787375,0.5390971111341646,4.926843894179868 +2000 QM186,169311,60485.22596281841,2460485.726335003,210737165.1616475,1.5647119104939258,260.2901833661979,-0.2599656549298602,-24.774313904905576,-0.0193690891140153,-24667351.319958724,-327939067.79557675,-148710023.47785124,18.558796953009427,2.154898206281088,-0.8606898969143824,7604067.777504999,-139338060.95595545,-60401651.79722032,29.648272248037763,1.3481867184414482,0.5436667226310297,4.938646217303068 +1992 SF17,169796,60485.95987688283,2460486.4602490035,404328027.4382617,23.80234477142084,196.2183548081463,0.0812369107931274,-6.160099023803124,-0.0297359105152464,-376543861.8625895,-251519417.6725847,-103749775.74716347,8.673265365409133,-11.717806356879926,-4.281107162983008,9451924.04898759,-139243171.1753257,-60362548.328182936,29.292631197186715,1.191114755346386,0.6881336623569413,18.53906233815909 +1992 SF17,169818,60485.971184949645,2460486.4715570034,404351297.20218205,23.831555226590645,196.21927881248,0.0812484432700443,-6.160435180319005,-0.0297186790243833,-376535388.4214273,-251530865.0315538,-103753958.03867534,8.673752265527165,-11.717481206089625,-4.280973043311791,9480556.934361782,-139242002.6865366,-60361874.96554286,29.32052826157512,1.2011864875283649,0.6902798200378399,18.539912756211056 +2000 QM186,170376,60486.238924623896,2460486.7392970035,210881604.8627936,2.045899497641914,260.01112540310305,-0.2569502489086384,-24.7951215493562,-0.0183038852713042,-23042835.120902475,-327746925.75054115,-148783741.72086224,18.564691425809173,2.2359649612418897,-0.8239085104871807,10163954.483196056,-139207792.46318564,-60345313.34863618,29.609983088860925,1.844433075965776,0.741960285838695,5.443245346182652 +2000 QM186,170384,60486.24254275176,2460486.742915003,210882245.7989289,2.0547649372681303,260.0101015813785,-0.2568349478308203,-24.795187625688477,-0.0182227302742547,-23037031.924629483,-327746226.75817454,-148783999.24835056,18.564711780816623,2.2362547258794896,-0.8237769679080318,10173209.934456095,-139207214.29221693,-60345081.30369011,29.606838570657672,1.8547230635405036,0.7426753281191938,5.445073163263601 +2000 QM186,170426,60486.263196721,2460486.7635690034,210885956.54341367,2.1034483695883424,260.0042663640283,-0.2560968595437059,-24.795559366969265,-0.0177805611932537,-23003903.218247365,-327742234.7006485,-148785468.60270816,18.5648278856982,2.2379089288841216,-0.8230260103316784,10226025.10450779,-139203853.04656383,-60343752.34757307,29.585176680747885,1.9119658003945328,0.746766127863001,5.4554989025532326 +2000 QM186,170434,60486.26679731381,2460486.767170003,210886612.25807655,2.1115696858017343,260.0032507877144,-0.255954792229465,-24.79562326280674,-0.0177074835036837,-22998127.248125914,-327741538.3881652,-148785724.64563042,18.564848111832205,2.2381973423041743,-0.8228950777632487,10235229.15249274,-139203256.67494497,-60343519.89776017,29.580769821253067,1.9216473864450103,0.747480858534407,5.4573149803015335 +2000 QM186,171443,60487.25115415722,2460487.751527003,211064933.68923983,2.520596564009569,259.7352872433937,-0.2535709112073959,-24.815215659190173,-0.0172941125910204,-21418996.98289945,-327547830.3043477,-148854186.83652887,18.570191859418426,2.317094503205813,-0.7870588078991597,12719208.286817305,-139037541.4050293,-60271682.05538493,29.560879608104404,2.337304198113283,0.9401158432628378,5.945468863672194 +2000 QM186,171493,60487.27527167573,2460487.775644003,211070243.03791404,2.574500531780265,259.7285622615896,-0.2526019108547372,-24.81562678423143,-0.0168097125199759,-21380302.30826729,-327543000.1796687,-148855825.90798137,18.57031814380926,2.31902893336406,-0.7861796876231906,12780774.720572118,-139032603.05691445,-60269718.14307678,29.53088532102503,2.4019195906756936,0.9449035088848918,5.957578488136404 +2001 SF198,172111,60488.0745613417,2460488.5749340025,225168598.19486356,12.531332793316162,240.3900050706315,-0.1418691812499531,-8.760708944995612,-0.0281455583264711,-95167145.37359723,-332348545.4205286,-94493995.60493916,17.840183849124315,-5.116324760128669,-2.072579129441974,14789206.092246458,-138868957.24321964,-60198990.95267683,29.472857528543912,2.293881174120737,1.101430952746096,14.835342198570316 +2001 SF198,172161,60488.098963502525,2460488.5993360025,225195091.174068,12.600146175566172,240.38650252283597,-0.1418171105670436,-8.761393950283185,-0.027997448553884,-95129533.2967502,-332359329.7537059,-94498364.50265078,17.840762079624508,-5.1143048486591125,-2.0720048630865517,14851381.603321144,-138864056.48489565,-60196663.82661272,29.50657001848468,2.3559533040999754,1.1061230968582518,14.844071091995913 +1992 SF17,172896,60488.95877275518,2460489.4591450025,410539568.0163015,24.03578274179127,196.4975510237918,0.0941284720984674,-6.257298491447106,-0.035182129926774,-374280067.03407216,-254544098.9395345,-104854318.30990095,8.801978464707277,-11.631077168726938,-4.245357147137735,17013240.436678037,-138655932.96598384,-60108174.086078286,29.18892373828248,2.54937016338906,1.2750868756408191,18.730108174533463 +1992 SF17,172918,60488.97061368176,2460489.470986002,410564174.0915532,24.066282463288648,196.4986724076708,0.0941545018221851,-6.257714970901326,-0.0351631588802007,-374271062.5253815,-254555997.12531587,-104858661.15368389,8.802485034512554,-11.630732740589716,-4.245215269512497,17043117.228313025,-138653318.89768314,-60106868.442839645,29.21758374121689,2.5612754384354144,1.2773349042608262,18.73083234903868 +1992 SF17,173052,60489.03290189512,2460489.5332740024,410694122.0624725,24.223966082610445,196.5045865299197,0.0947318175199672,-6.259902155262835,-0.0350672917231316,-374223686.9901179,-254618580.12389976,-104881503.70735836,8.805149562832115,-11.628920666496136,-4.244468848249858,17200739.702549506,-138639299.04573786,-60099962.35855648,29.355290025065425,2.65818081766184,1.289190065627526,18.734629168600403 +1992 SF17,173102,60489.05675780356,2460489.5571300024,410744110.5273346,24.279858413614622,196.50686472628587,0.0951413879749671,-6.2607383457853,-0.0350367382155445,-374205538.6005536,-254642546.5156672,-104890251.22696498,8.806169968655537,-11.628226537118469,-4.244182931190297,17261291.928494412,-138633768.8829062,-60097300.43573494,29.399233849641224,2.7090247983024263,1.293750896352915,18.736071853272776 +1998 WD8,174720,60490.34074194592,2460490.841114002,320475502.1464704,-19.829057169231184,341.6855495277605,0.0407168881223903,-15.958504063688194,-0.036079350598133,313012306.1544007,-235091460.1860976,-148051669.44570407,11.359594574009485,12.60918324239122,4.750942881849577,20495257.126791254,-138268844.3851951,-59939782.76926112,29.24054794261545,3.9151337370660144,1.545215075286679,18.26620305382275 +1998 WD8,174770,60490.36519018611,2460490.865563002,320433683.0866229,-19.76543002173176,341.6865812044946,0.0404489659022651,-15.959383714079491,-0.0358777058432482,313036302.41089886,-235064821.92081055,-148041632.32414043,11.358397326968012,12.61008212269443,4.751509016399156,20556965.113712527,-138260532.01726782,-59936513.47779951,29.183453482033386,3.95353369988956,1.5501297010562314,18.261795227027196 +1998 WD8,174781,60490.37031059925,2460490.870683002,320424942.6193404,-19.75198679822478,341.6867965026463,0.0404114060861766,-15.959567298527354,-0.0358349571734243,313041327.2782856,-235059243.21511403,-148039530.24401382,11.35814659266603,12.610270349714666,4.751627569172411,20569872.19085448,-138258781.55120897,-59935827.52214617,29.171002311178142,3.96047305923642,1.551160103507504,18.26087167893719 +1998 WD8,174822,60490.39125984777,2460490.891632002,320389242.0782062,-19.69699799172978,341.6876758840472,0.0403250171899788,-15.96031617175019,-0.0356601104465749,313061885.87627256,-235036416.50881296,-148030928.82413393,11.357120643770063,12.611040454761776,4.752112623363471,20622624.48314341,-138251590.15932232,-59933016.11453873,29.11870327152825,3.984723064646996,1.5553794244497716,18.25709223414871 +2001 SF198,175215,60491.084973102894,2460491.585346001,228569128.6056865,13.530958930684696,240.0149691520418,-0.1215565272714219,-8.855882873272959,-0.0352652877029849,-90517999.25865962,-333646806.05187213,-95023822.4562488,17.90975004285755,-4.866794722398023,-2.001577279541679,22353041.184288885,-138030420.6991185,-59835691.46848374,29.326895382141736,3.691676662098734,1.6904966847591163,15.864525561645635 +2001 SF198,175263,60491.1086784589,2460491.6090510013,228596910.16076317,13.597527971462132,240.01205509319269,-0.1213401064387487,-8.856717111779107,-0.0351200018131475,-90481319.19878536,-333656771.32598794,-95027921.15107878,17.910283675763527,-4.864827183488309,-2.001016954240228,22413134.18846495,-138022795.07339555,-59832224.46750565,29.35314553533568,3.755511262666639,1.6950644043341705,15.87261263861892 +2001 SF198,175313,60491.13293707583,2460491.6333100013,228625481.28409076,13.664594029079831,240.00908073950583,-0.1209189652548663,-8.857567320052162,-0.034975319635341,-90443780.78109996,-333666965.32027787,-95032114.44580054,17.9108295508307,-4.8628136203709165,-2.000443514236637,22474678.502349265,-138014851.8262923,-59828666.7343798,29.371491659914188,3.824514962791609,1.6997588602443108,15.880884131122365 +2000 QM186,175463,60491.2052091824,2460491.705582001,212147631.961138,4.157819839531928,258.69371177103784,-0.2403321439333887,-24.88767550703749,-0.0155951053330861,-15071724.698240042,-326701971.89635,-149098366.0014772,18.587911170911497,2.6351506004148684,-0.6422110041836364,22658126.275180064,-137990303.1012051,-59818008.963697016,29.371542539635232,4.0386398092900375,1.7138731874562814,7.880140617166808 +2000 QM186,175513,60491.2296752954,2460491.7300480013,212156485.76833397,4.21827089064026,258.6872396784463,-0.2395701203032444,-24.888050181804957,-0.015040331155489,-15032432.864906693,-326696399.54226017,-149099722.57613394,18.588002000475942,2.637124161742964,-0.6413103025444027,22720195.59181973,-137981690.85741213,-59814380.978699215,29.35290096526444,4.109274286903316,1.718695398338695,7.892158645552003 +1998 WD8,175903,60491.41629244073,2460491.9166650013,318650258.0913129,-19.4321112654154,341.7340699800189,0.0348275161226043,-15.99826166753005,-0.0377441605595254,314065545.1663798,-233917807.6515332,-147608990.57579243,11.306834535693325,12.648633465390068,4.775813870736486,23190882.32274354,-137912054.26617673,-59786369.26344861,28.97876243398643,4.456146066868545,1.7560306757853754,18.07494342264233 +1998 WD8,175905,60491.41719804266,2460491.917571001,318648737.0933996,-19.42980982548394,341.7341028072888,0.034832279804329,-15.998295860441424,-0.0377368895065266,314066430.30288875,-233916817.47141165,-147608616.70773068,11.306790014229216,12.64866661633398,4.775834791486971,23193150.64129253,-137911705.42666405,-59786231.797044285,28.976401731694416,4.456643607193361,1.7562132490600884,18.074774825111696 +1998 WD8,175925,60491.4277020255,2460491.9280750016,318631115.98365474,-19.403401342755497,341.7344837829749,0.0349017016717483,-15.998691810322985,-0.0376537991548213,314076692.16173714,-233905337.31192735,-147604282.02918229,11.306273830743317,12.649050952531592,4.776077339264796,23219435.62187246,-137907658.502566,-59784636.99285083,28.94901654061176,4.461455238080997,1.7583300281304353,18.07282064153185 +1998 WD8,175927,60491.42860293984,2460491.928975001,318629607.2886053,-19.40116402131414,341.73451646349054,0.034908855141395,-15.998725695582758,-0.0376467919234263,314077571.3926939,-233904353.6569772,-147603910.61663923,11.30622960247696,12.64908388223594,4.776098120841279,23221686.605869707,-137907311.56692755,-59784500.25807615,28.94667091246993,4.4617855665042025,1.7585113970861703,18.07265325181945 +2001 SF198,176149,60492.039852946175,2460492.540225001,229698882.9157245,13.717633144767143,239.9094512543077,-0.1145439788181896,-8.890597985673557,-0.0378715792697344,-89039602.81072935,-334045035.6792353,-95188016.68688644,17.931070666992312,-4.787506873779136,-1.9789914142594167,24740407.127386272,-137689574.49198878,-59688453.12396716,29.18776854481912,4.039549148618926,1.877313938479969,16.179838164165986 +2000 QM186,176498,60492.20155635008,2460492.7019290016,212511540.2640248,4.576887582194207,258.4415572787357,-0.2360688310396335,-24.904486395851304,-0.0150676148110356,-13471464.581478294,-326471668.9442656,-149152069.545057,18.591421608096265,2.715575924519455,-0.6054870969548509,25149409.121774036,-137630170.29643154,-59662007.25752833,29.296938464596945,4.485310297044636,1.908599030567517,8.359445111592382 +2000 QM186,176506,60492.2051704231,2460492.705543001,212512970.853225,4.586045078407849,258.4406168573666,-0.2359683183479335,-24.904540697394363,-0.0149831863201202,-13465659.505082784,-326470820.9742091,-149152258.58440867,18.591433636886244,2.7158678497904547,-0.6053537264217129,25158556.747584585,-137628768.10485944,-59661411.18747869,29.29478783387276,4.495906200373434,1.909309026044525,8.36120776682147 +2000 QM186,176548,60492.22584068312,2460492.726213001,212521206.9415824,4.63682717754931,258.43524657429253,-0.235309371738085,-24.90484553569815,-0.0145177920785783,-13432457.736532474,-326465969.3218864,-149153338.9804815,18.591502336654703,2.717537522430705,-0.6045909009859586,25210860.484013557,-137620685.41549644,-59657997.74347906,29.27860616801353,4.555509719644059,1.9133789668479737,8.371281586102228 +2000 QM186,176556,60492.22943181704,2460492.7298040013,212522646.92453384,4.645340181765003,258.43431519766773,-0.2351807435350992,-24.90489752967929,-0.0144403283868,-13426689.57973648,-326465126.1401606,-149153526.53882876,18.591514254859582,2.717827599584071,-0.6044583713532444,25219944.001023717,-137619270.43680084,-59657403.98399197,29.275132564099877,4.565652157556195,1.914087604777129,8.373030266742996 +1992 SF17,177102,60492.99511002275,2460493.4954830008,418976827.310991,24.366576150560668,196.93327354959945,0.110951558233367,-6.413430144005801,-0.0420718690919092,-371180696.53839386,-258579413.3002198,-106326252.54320244,8.973903129701176,-11.512768957748904,-4.196667100878316,27122848.04326915,-137312839.53857127,-59525758.04391518,29.0222646553896,4.408309518118984,2.064007599959859,18.92239160305284 +2001 SF198,177282,60493.08140440486,2460493.581777001,230957707.70004597,14.13768632040122,239.80086259333527,-0.1076209091221822,-8.93091805752633,-0.0399198140196648,-87425028.30359915,-334471949.7848046,-95364988.24526104,17.9539171063318,-4.700948564844696,-1.9543207397822884,27339842.39874021,-137279330.4929872,-59510307.99891755,29.172466621682663,4.59476700765984,2.08045902166814,16.51825113041329 +2001 SF198,177332,60493.10432647012,2460493.6046990007,230985770.74804643,14.201723021910862,239.79836773129887,-0.1073924961084626,-8.931831474284618,-0.0397783172798682,-87389472.46319793,-334481257.5011944,-95368857.97954664,17.954415095241714,-4.69904277808667,-1.953777395137395,27397642.82173597,-137270170.0273735,-59506183.37174124,29.196970478686357,4.656713826388731,2.0848645841516205,16.525797313683523 +2001 SF198,177338,60493.106822114205,2460493.607195001,230988834.2072973,14.208654859301545,239.79809643383865,-0.1073568011303275,-8.931930741941395,-0.0397630704698587,-87385600.69172776,-334482270.80011725,-95369279.29391816,17.95446930927082,-4.698835252812932,-1.953718228736084,27403939.5179084,-137269165.036253,-59505733.70961338,29.199181480742578,4.663677105575552,2.085345375839898,16.526618813614352 +2001 SF198,177388,60493.12957205908,2460493.629945001,231016824.73302647,14.271008605005436,239.795628609186,-0.1069348269024158,-8.932833793373954,-0.039627098395338,-87350310.5786553,-334491504.53227174,-95373118.80970845,17.95496333431602,-4.6969437270208285,-1.953178942321926,27461350.279100493,-137259934.6378272,-59501630.4410004,29.215016366228717,4.728688631797081,2.0897376731683286,16.534103086635543 +2000 QM186,177558,60493.21054825881,2460493.710921001,212916847.86972368,5.023094355460065,258.1909660236071,-0.2311595233253266,-24.920963741243156,-0.0142828422202254,-11850606.434351534,-326231382.93216515,-149203228.86212087,18.594581608533808,2.7971350324693893,-0.5682055212167767,27665775.174116086,-137226012.9777867,-59486954.8659192,29.20541743177856,4.968090988454423,2.1055261758347883,8.840934682735261 +2000 QM186,177608,60493.23367369584,2460493.734046001,212926939.85580844,5.0781313627469125,258.1850816820247,-0.2303423503794314,-24.921288153748964,-0.0137817911188735,-11813455.019164871,-326225792.4816219,-149204363.2628321,18.594649359159305,2.799005601940577,-0.5673499910560794,27724107.3780012,-137216020.72511563,-59482743.47917771,29.18383556053115,5.033689335851687,2.1100793639677224,8.852102465089407 +1998 WD8,178028,60493.43292514957,2460493.933298001,315281864.3516967,-18.969424380968228,341.8078081697972,0.0237647945916367,-16.080028202691683,-0.0421814005289238,316027089.4265473,-231707395.166046,-146772763.13501534,11.207409362381346,12.722087255599394,4.822256858620807,28223298.154167764,-137125782.47786024,-59446076.15086201,28.75835629117183,5.362131786485148,2.149878362866619,17.69897732969986 +2000 QM186,178654,60495.2379085837,2460495.738281,213841155.94112256,5.917605718163531,257.7034812342342,-0.2200009633413521,-24.95258319820472,-0.0126740145587832,-8593090.445981218,-325727058.96441424,-149296176.70079258,18.599722193402247,2.9613503437588222,-0.4930187871500799,32697865.26308929,-136294338.8795756,-59083419.77514342,28.978217959355696,5.953933175687759,2.499867601059542,9.795086702703438 +2000 QM186,178704,60495.262095230486,2460495.762468,213853575.70703185,5.96750464146696,257.69762668810483,-0.2188914299355532,-24.95288429206085,-0.0122337758899619,-8554222.267144013,-325720868.5348877,-149297206.0300172,18.59977373479141,2.96331218359887,-0.4921195634324393,32758387.931282084,-136281829.91938,-59078190.685643785,28.943623712444143,6.016942840396945,2.5046312501913035,9.806515140104953 +1998 WD8,179028,60495.42004746927,2460495.92042,312035183.5481232,-18.551520183595585,341.8573230263932,0.0123084339285284,-16.16979893402508,-0.0468161224121566,317942924.9916491,-229516869.7422784,-145940879.21570337,11.108803375688938,12.79380626499959,4.867776275081149,33151095.706236526,-136197704.2775836,-59043795.828789495,28.580380569855965,6.253398197852562,2.536062189466241,17.305428678210028 +1998 WD8,179050,60495.43159257562,2460495.931965,312016693.1992621,-18.52305497311456,341.85747164481955,0.0124241570646538,-16.17033889430704,-0.0467245948696524,317954006.2890042,-229504107.0784813,-145936023.23568368,11.108228648985085,12.79422102395446,4.86804002634022,33179589.121549763,-136191465.1116969,-59041264.98688145,28.54999150995047,6.256004472833517,2.5383684615802498,17.30301182367344 +1998 WD8,180990,60503.38702894039,2460503.887400998,299840880.5457478,-16.55486650038042,341.8184632299493,-0.03408885150748,-16.618580887937302,-0.0643530661868684,325452436.058618,-220612475.70215857,-142527769.49574262,10.70721605151354,13.074690741282636,5.047796614280061,52480897.132946245,-130961462.10393526,-56773537.27475497,27.48231873917975,9.73947458430302,4.048491492642196,15.495522241821284 +1998 WD8,181033,60503.40788660944,2460503.908258998,299811095.2482964,-16.501650594628867,341.8177230581948,-0.0339009546740903,-16.61992117951835,-0.0641646810809479,325471731.97255075,-220588911.44591007,-142518671.7828996,10.706151714891943,13.075411981049935,5.048262619031697,52530373.01131108,-130943903.42307992,-56766237.77102176,27.42592083432675,9.745942181763226,4.052476466500801,15.490179707085158 +2000 QM186,181120,60503.960730688894,2460504.4611029974,219392266.17466387,8.677332025402315,255.90247049404505,-0.1653155893322411,-25.07358859649178,-0.0159940038835864,5427482.348289162,-323227677.0034109,-149544688.76170596,18.603109243583667,3.6728411302289423,-0.1653725856140228,53829779.65278773,-130494882.55810824,-56570208.29418095,27.549722203604883,9.219934302647149,4.154050839563665,13.649400296228531 +2000 QM186,181142,60503.97253602735,2460504.472908997,219401128.82576364,8.699590450206063,255.9003129523284,-0.1657346213175659,-25.073776287277838,-0.0157992081476967,5446457.67476546,-323223930.1791112,-149544857.21463016,18.60309290874986,3.6738093147231896,-0.1649246377661704,53857893.902220026,-130485468.29100028,-56565969.92606527,27.574008932313003,9.23904591910934,4.156162704360779,13.654380927249834 +1998 WD8,182001,60505.25198735829,2460505.7523599965,297198417.673899,-16.323996427071457,341.7548185162906,-0.0443554414333047,-16.7431598179266,-0.0696360805545233,327170128.9718867,-218500423.39816132,-141711009.99696705,10.61178720598,13.138883842879766,5.089352018408998,56879292.100081824,-129397074.22069705,-56093510.98906832,27.435756128913177,10.397522113693237,4.390467352644521,15.01977451916698 +1998 WD8,182002,60505.25243578651,2460505.7528079967,297197785.8473201,-16.322918755255838,341.75479776252536,-0.044367394985084,-16.743191014047202,-0.069632267550347,327170539.7465397,-218499914.80061272,-141710812.9914226,10.611764218027732,13.138899191646294,5.089361973769831,56880354.04536284,-129396671.74165036,-56093341.0446971,27.43490950675424,10.398552166513827,4.390550854341883,15.01965504999722 +1998 WD8,182051,60505.27667949025,2460505.777051997,297163657.57928854,-16.262544732879963,341.7536669070592,-0.044943200613291,-16.744876591751797,-0.0694156761544564,327192767.9202395,-218472390.62529024,-141700151.2552509,10.610520155130084,13.139729754786217,5.089900699105235,56937771.05410103,-129374834.05966544,-56084139.50032599,27.385721085398544,10.450908603571657,4.395077339592122,15.013183452865828 +1998 WD8,182052,60505.27712950303,2460505.7775019966,297163025.3233916,-16.26139003758335,341.7536457848874,-0.0449525356350714,-16.744907827842724,-0.0694114859092638,327193180.47894007,-218471879.72494385,-141699953.34912252,10.610497062881803,13.139745170145478,5.089910698175513,56938835.79133616,-129374427.71099262,-56083968.61819684,27.38474888499381,10.45181433848342,4.395161491957654,15.013063224205007 +1992 SF17,183914,60509.95939686034,2460510.459768995,454711107.9694721,24.305667640663764,199.45433333736312,0.1727015441147833,-7.35212258093449,-0.0670366655804391,-357508020.77532744,-275077601.88374406,-112323098.06472649,9.679750247985472,-10.995973280853686,-3.984929196300307,67717381.12601721,-124878701.38118084,-54135130.43836927,26.38254299770075,11.72887826687088,5.232742571226203,18.989842268482256 +1992 SF17,183935,60509.97028471335,2460510.470656995,454733985.5409171,24.331722852513167,199.4562298714703,0.1728087798623485,-7.352852342564763,-0.067012236085063,-357498915.34025234,-275087945.05044466,-112326846.41006164,9.680194487877785,-10.995631536373836,-3.9847896532930354,67742209.58287093,-124867658.6642488,-54130207.00456856,26.40317569263769,11.74846519411432,5.234595679806802,18.98958280249721 +2001 SF198,184473,60512.12309317165,2460512.623465995,258170373.24622855,18.75250321688438,239.20154963606615,0.0294920101000422,-10.057092881014352,-0.0745981799890836,-57587680.17876183,-340897137.3691879,-98205731.36788791,18.296206678505744,-3.106986205938724,-1.4975004432887773,72569444.6962707,-122543102.02009653,-53121590.995358855,26.08035952552723,12.95788669898696,5.608057560927295,21.452714556688825 +2001 SF198,184545,60512.15676332662,2460512.657135995,258225032.53379053,18.823119349485527,239.202578999908,0.0307570590247059,-10.05960156798094,-0.0744244924000169,-57534457.5447612,-340906171.17484045,-98210086.26716584,18.29668520772108,-3.1041516596333154,-1.4966839094153903,72645289.13245049,-122505263.73677333,-53105268.20564405,26.059760301553784,13.055510320544911,5.613878347064556,21.459512279982448 +2001 SF198,184595,60512.1806199396,2460512.6809919947,258263875.7852862,18.86564778038766,239.20333664243785,0.0318029519205097,-10.06137583355452,-0.0743273882423763,-57496747.20192978,-340912566.8500628,-98213170.37910748,18.297023986178456,-3.1021432884333606,-1.496105358932565,72698977.90281649,-122478285.0928249,-53093692.84127776,26.03453272019784,13.122136132730024,5.6180269395488205,21.46430337056705 +2001 SF198,185515,60513.13139772396,2460513.6317699943,259792828.0971771,18.94483427069895,239.24176783730456,0.0366181962107247,-10.13375811125912,-0.0758882091187829,-55993241.46192106,-341164095.4460455,-98335116.29104744,18.31034307410569,-3.0220812933831525,-1.4730359816551526,74796418.0967036,-121398307.98236376,-52625411.15377592,25.83719448303849,13.385040329116544,5.780866342101402,21.64721228733205 +2001 SF198,185808,60514.02937495805,2460514.5297469944,261248767.6354816,18.861809368066325,239.28419423713967,0.0410860523643283,-10.203229075866991,-0.077852335457833,-54572241.26975514,-341395615.3422784,-98448549.10826357,18.322594818240475,-2.9464331005339077,-1.4512277462126946,76758149.62363857,-120348957.09204993,-52170888.24199922,25.567700064202995,13.495184035725403,5.933705246716463,21.81420970488552 +2001 SF198,185858,60514.05359098071,2460514.5539629944,261288299.39293236,18.925751407102226,239.28520822902743,0.0413643199249992,-10.205112225481548,-0.077677609380248,-54533907.670043305,-341401777.5293967,-98451584.6501696,18.322920806613503,-2.944392649189596,-1.450639371405621,76811666.27914648,-120320654.27139685,-52158469.15132196,25.58761972092195,13.560227856027456,5.937744570810352,21.81883684930752 +1998 WD8,186043,60518.365990130354,2460518.866362993,281293964.76783764,-11.599463280295348,340.71323851632286,-0.1183059919305216,-17.79567992692147,-0.0892082548394943,338808238.89301056,-203363804.3432526,-135781291.99814805,9.925960227698916,13.573210893405884,5.37506498675977,86005114.35059808,-114898978.89136472,-49811242.014622025,24.033551679311124,15.759338777741938,6.65677602170729,11.149788815217686 +1998 WD8,186088,60518.387651328165,2460518.888023993,281272307.31558186,-11.545708430724904,340.7105509375272,-0.1179492901815507,-17.79760974410732,-0.0889785669037074,338826815.06884134,-203338400.3102255,-135771231.68753698,9.924806428257908,13.57390322409089,5.375527286285864,86050036.9847231,-114869485.22797568,-49798780.35448938,23.973487159324403,15.757999168835056,6.660445899731775,11.142600952066744 +1998 WD8,188066,60524.394038930586,2460524.894410991,275777278.313727,-9.128977214352188,339.9057331676549,-0.1473977713641319,-18.357675764894964,-0.0942532959287976,343894023.42545605,-196244696.2664709,-132948447.60132496,9.602270131481667,13.762634751106702,5.502458987254553,98083982.09564029,-106318884.37390646,-46092940.17074096,22.11364759449601,17.929619101235126,7.610998513454001,9.123540419621827 +2001 SF198,188172,60524.967865455306,2460525.468237991,279811767.74313015,20.253883671276213,240.21866154954333,0.1110259904832562,-11.123089342713428,-0.0896763938499996,-37194792.14821652,-343743927.4705922,-99693990.54602432,18.446283628733205,-2.022826024691589,-1.1841362544810443,99174537.66122276,-105449717.25826325,-45713432.61872832,22.383771212061625,17.494707111804413,7.6969743750802255,23.456545594704405 +2001 SF198,188193,60524.97937505204,2460525.479747991,279831924.60555696,20.283361882915543,240.2199638341509,0.1110164715795874,-11.124121002894151,-0.089586708942932,-37176449.17170206,-343745938.4776625,-99695167.9066653,18.446388910808118,-2.021852469332617,-1.1838539149396006,99196804.84904286,-105432306.19798484,-45705777.41269808,22.39824335535232,17.52148179634846,7.698668429735796,23.45797505673284 +1998 WD8,189285,60526.3004658234,2460526.800837991,274295486.43377984,-8.517258712760034,339.6121032679531,-0.1578013233540263,-18.54139519775602,-0.0963728092336834,345467199.10572183,-193972881.2960703,-132038803.31384055,9.498827118320444,13.82117662926552,5.542216364033781,101700423.88694116,-103375441.32555684,-44815658.173519365,21.70607947362831,18.612768358850172,7.89676313968323,8.464726150654675 +1998 WD8,189335,60526.324555290885,2460526.824927991,274277828.1812489,-8.451105693399514,339.6080956218671,-0.1576221077631341,-18.54371286852298,-0.0960471218494539,345486968.93290216,-193944112.6516905,-132027267.0303815,9.497516732447034,13.821912149918951,5.542717091683722,101745530.93723288,-103336685.08883588,-44799218.18101145,21.637266235556908,18.62667004454097,7.90047168207396,8.456196219469934 +2000 QM186,189904,60527.12754119473,2460527.62791399,244026515.81913668,15.25592701554377,254.02011651202525,0.0087443220278177,-25.416270854882747,-0.01648566699385,42554769.98144376,-313959099.77025235,-148981127.69778958,18.457212290686197,5.595883960371011,0.7356920578412394,103233065.64758033,-102067985.2860976,-44246985.88842971,21.73943781388,18.626292833361887,8.017586891723191,21.398645572999936 +2000 QM186,189954,60527.15171080865,2460527.6520829904,244058424.60526347,15.30321205574972,254.02036317366307,0.0097158750108994,-25.41666434505528,-0.0160845301988225,42593310.1094294,-313947412.9144895,-148979590.49799517,18.456937271077024,5.597911173659447,0.7366540430890638,103278429.67335686,-102029021.98220134,-44230239.81272941,21.707069946276665,18.690662663873734,8.02116990938393,21.404845114438174 +2000 QM186,190019,60527.18128955398,2460527.68166199,244097600.94482037,15.35311110213778,254.02070332657684,0.0110885070876905,-25.417133768255763,-0.0156711521615724,42640476.28640444,-313933104.3099087,-148977706.47749472,18.45660033164057,5.600392208566034,0.7378314181627378,103333842.43186024,-101981161.02694131,-44209735.07628737,21.65629470004977,18.763445588669036,8.02557987366682,21.41239918963403 +1998 WD8,190253,60527.29542872531,2460527.7958009904,273575403.568084,-8.097801480554997,339.4516976765028,-0.1621224134108009,-18.637910170657385,-0.096775372874007,346281458.50857764,-192783410.1059672,-131561466.50366566,9.444638262386094,13.85146704742482,5.562862875472227,103546108.68247366,-101795067.96983512,-44130505.29679614,21.37499935990277,18.94815469943295,8.042784217586435,8.119069661112272 +1998 WD8,190303,60527.32007870435,2460527.82045099,273558230.0551189,-8.029871055642259,339.44748208570684,-0.161945371011932,-18.64029147056898,-0.0964358504767254,346301572.4311696,-192753908.21628588,-131549618.07881571,9.4432939943393,13.852215194394397,5.563373489337496,103591557.41756973,-101754695.38726668,-44113372.119337365,21.304506961971008,18.96303828352116,8.046519734920581,8.110325979129518 +1998 WD8,192063,60529.21821533509,2460529.71858799,272288161.4041125,-7.433946663477602,339.1295788297166,-0.1698368904966022,-18.82523535967183,-0.098226269261256,347841801.40172577,-190477393.85215503,-130633989.6102507,9.339527464756475,13.909491587545164,5.602561507993301,107028658.0224766,-98662215.78813224,-42771336.03258457,20.87137317676313,19.51078792340388,8.317711981125585,7.45151394223847 +1998 WD8,192113,60529.241934032696,2460529.7423069896,272272994.5135619,-7.367727613348667,339.12531858201464,-0.1701445880752888,-18.82756116365231,-0.0978851619122647,347860940.238022,-190448887.3985414,-130622507.3767242,9.33822765272531,13.910203136666196,5.603049557780248,107071370.28630534,-98622189.96934517,-42754286.824033335,20.81212599309853,19.550451134665888,8.321170388738855,7.4431207369651 +2001 SF198,192568,60529.98951572502,2460530.4898879896,288738901.5746912,20.8072029020873,240.89877166393188,0.1404513473059206,-11.58147755183068,-0.0929051064491334,-29182795.331270088,-344529339.4634143,-100180963.21291465,18.48725467358164,-1.597838693394007,-1.0607264554870917,108387443.75525016,-97376871.50221008,-42213384.50789395,20.71280286452521,19.24678253638636,8.425268055430397,23.975478552818146 +2001 SF198,192618,60530.01341784297,2460530.513789989,288781935.28153604,20.868107362071303,240.90220106363176,0.1406861268852702,-11.58369584187997,-0.0927108673582905,-29144619.17387952,-344532636.8923637,-100183152.99353255,18.487425907105745,-1.5958148462107284,-1.0601379965463444,108430236.14413288,-97337059.84438977,-42195981.85114645,20.728552813598263,19.309854594798416,8.428524545316664,23.977773964139168 +2000 QM186,193835,60531.13038164903,2460531.6307539893,249351935.9273353,15.958212403738193,254.1560355155129,0.0396390918927874,-25.493695349777727,-0.0179802912414756,48929492.13436157,-311965777.86612725,-148699088.71874627,18.408044968475867,5.932108690186083,0.8955977524418264,110378639.47030784,-95443383.68893272,-41375078.99971521,20.31265230568665,19.959537129607455,8.581876640429375,22.342262122363383 +2000 QM186,193885,60531.154405991365,2460531.6547779893,249385106.96549237,16.00146190684694,254.15710381191792,0.0406589446897017,-25.49412284880502,-0.0176182293923878,48967698.86007296,-311953463.3031618,-148697228.84923258,18.40772778047613,5.934129424916156,0.8965609638835069,110420764.40176123,-95401889.9801086,-41357262.37341643,20.2751609701034,20.02069510487544,8.585205384306542,22.347722123153883 +2000 QM186,196148,60543.11315233727,2460543.613524986,266446259.32554933,17.411236004641562,255.3376332542365,0.1247921353852251,-25.7624898003803,-0.022068593352136,67893130.88820866,-305301575.1632785,-147521513.353884,18.216415605622817,6.943481241085304,1.380967087477649,128633038.56469576,-73153702.03234032,-31712887.920319904,15.555905483788312,23.314299556220504,10.018555054928784,24.51031043433763 +2000 QM186,196198,60543.13721034336,2460543.637582986,266482492.946482,17.449770688511137,255.34098003677624,0.1257976603443327,-25.76301678658561,-0.0217504114176283,67930993.0600948,-305287141.0871826,-147518642.00403172,18.215962462353804,6.945517681816729,1.3819511209898965,128665328.81116185,-73105181.11625555,-31692060.54749691,15.511872558459457,23.370742340949302,10.021148027603148,24.51385662515174 +2000 QM186,196950,60544.03954102843,2460544.539913986,267821856.2206721,17.35362199853635,255.47514888668496,0.1291550273999926,-25.785265552551703,-0.0235317611652093,69350385.76883608,-304742712.2849938,-147409470.0215773,18.19876545664056,7.021911041421872,1.4188851391778592,129832038.5768222,-71295266.63866019,-30907081.7872469,15.213733782437345,23.364731590329143,10.114236442221484,24.63910138319072 +2000 QM186,197000,60544.06401857104,2460544.564390986,267858614.3584355,17.407111363126912,255.4786676466444,0.1297593194611532,-25.78583593714139,-0.0230790434375608,69388870.0197866,-304727860.92594284,-147406468.45852408,18.19829349773928,7.023983678457743,1.419887738218371,129864193.9811786,-71245783.39733532,-30885689.407270573,15.194381499061071,23.431843236442187,10.116758389419182,24.64261544513147 +1998 WD8,197182,60544.24833628226,2460544.748708986,267186282.08998892,-0.3622613879723059,336.1756098444837,-0.2071747470349128,-20.24063066039644,-0.0860602864872731,359428882.5535796,-172130519.72843248,-123161161.77185638,8.500693956972903,14.339444213254414,5.90351905570655,130103496.9576275,-70869340.12623459,-30724424.681506436,14.798427607877318,23.782093827745268,10.136306779067716,3.4931099714364424 +1998 WD8,197232,60544.27091212456,2460544.771284986,267185636.29223037,-0.3002779044402604,336.17062801823795,-0.2068833072048122,-20.242569209799885,-0.0856776812937201,359445462.489073,-172102549.06123903,-123149646.12499432,8.499411688423269,14.340058096474865,5.903958346270063,130132297.63458976,-70822938.58053885,-30704650.770014465,14.731992567177311,23.794069336246093,10.13873953922489,3.49188533780595 +1998 WD8,197272,60544.289593986105,2460544.789965986,267185191.66600996,-0.2510336444665961,336.1665120998932,-0.2065353813311952,-20.244166904017828,-0.0853749639073553,359459180.0222133,-172079403.22568056,-123140116.60743529,8.498350598426338,14.340565994103786,5.904321817205633,130156030.9929454,-70784530.24623351,-30688284.830333497,14.67668551272628,23.79784016829752,10.140752674871678,3.4908898310425385 +1998 WD8,197301,60545.30498079835,2460545.8053529854,267168907.63560835,0.2647078330932367,335.9494766587892,-0.20688491851864,-20.331259284833436,-0.0835222847927484,360202204.1411044,-170820104.67441502,-122621268.05016528,8.440609094854628,14.368072383815552,5.92403767962939,131426942.18039988,-68720977.45279714,-29794154.863342844,14.19455792300846,24.027123300026695,10.242842509187264,3.4676182848812656 +1998 WD8,197351,60545.328949925,2460545.8293219856,267169514.32936493,0.3203035701153405,335.9441969083068,-0.2061922287767608,-20.33325707665416,-0.0831818528683968,360219682.5508465,-170790348.88187513,-122608999.36352298,8.439244476305726,14.368719321090026,5.924502131399847,131456266.14452724,-68671228.20705888,-29772940.131670427,14.125560476601503,24.016912744588964,10.24535977087803,3.467621144443562 +2000 QM186,200531,60549.0432418313,2460549.543613985,275359357.31929255,17.755232672843565,256.3212334130444,0.1612881768525079,-25.910695276703866,-0.0241998389075837,77195890.60992919,-301615545.8708328,-146751682.6461683,18.09623851412518,7.445955065429079,1.6246046218370531,135766591.38420892,-60961318.88878379,-26427987.10046104,13.015801587920675,24.51357312565243,10.594074627336962,25.249151122565568 +2000 QM186,200581,60549.06792710815,2460549.568299985,275397283.4940044,17.806273539363954,256.3256690078468,0.1619734256956202,-25.911287316163545,-0.0237718674906507,77234484.67875662,-301599663.32225734,-146748216.69390056,18.09570238159467,7.448048615056773,1.6256232718765005,135794325.46300587,-60908964.2704231,-26405388.9344543,12.988971429883248,24.579126682240965,10.596307922963849,25.251959512016523 +1998 WD8,201564,60550.087518927896,2460550.5878909845,267655922.90555176,2.0761241226224545,334.92190710515183,-0.2072491949202592,-20.71758405930712,-0.0778167471964852,363633492.9966353,-164856707.85731035,-120154372.64597338,8.166892178844948,14.494979623232602,6.015830146866068,136885487.50429058,-58745883.063708656,-25467900.89162072,12.505630634296892,24.836297316363247,10.685572837353128,4.022206491061084 +2001 SF198,203183,60561.00651885256,2460561.506890983,346160181.69066465,21.697066769551896,248.0128130754169,0.2839697780383394,-14.554552284684409,-0.0926088003572078,20485864.96145713,-345291038.4200744,-101994472.55455811,18.52038612919502,1.0279752600931815,-0.2911858047045332,145928887.2665073,-34608646.07229226,-15003837.264617575,7.3599111045281935,26.427154837312987,11.429459922699715,24.51622979186953 +2000 QM186,203197,60561.01288332519,2460561.5132559827,293845315.7668088,18.16525596506457,259.0287624035643,0.2304131743002779,-26.218018279861568,-0.0240730945953121,95762851.51631756,-293390345.2085009,-144814885.84690496,17.800656934540022,8.4619308926352,2.1224803201240525,145932933.1594255,-34594108.25293407,-14997551.70520589,7.35403308871441,26.44377823604617,11.42978067630117,26.14731413732656 +2001 SF198,203233,60561.0306911931,2460561.5310639828,346205548.8963914,21.74476978647572,248.01991224857792,0.2845601076078168,-14.556788566627,-0.0924175653559885,20524542.73087885,-345288889.4690287,-101995080.03593493,18.520264826107883,1.0300156813371977,-0.2905831189727764,145944233.5529862,-34553386.18715996,-14979965.021919178,7.334231313567431,26.489550277844565,11.430685397294768,24.51527481238256 +2000 QM186,203247,60561.03699275545,2460561.537364983,293883207.69899565,18.21451362270506,259.03496203073684,0.2309973306930692,-26.218593646297183,-0.0236624934618364,95799927.6511467,-293372717.7942032,-144810463.89862302,17.799988534015757,8.463977699496898,2.123490634939621,145948224.15850037,-34538960.7795063,-14973741.995617555,7.3260594729861745,26.50541052263278,11.431008053851077,26.148534651762688 +2000 QM186,203268,60561.04790460416,2460561.5482769827,293900390.8962839,18.23548478604523,259.03777360733056,0.2313064403894975,-26.218850891228776,-0.0234877887236649,95816708.25943644,-293364738.0313167,-144808461.78445563,17.79968591074079,8.464904105605498,2.1239479237634598,145955123.94820735,-34513958.80583176,-14962964.613518834,7.310500575052539,26.532357693267475,11.43156988944186,26.149082425773987 +2000 QM186,203318,60561.07233178472,2460561.5727039827,293938924.8672318,18.27879303973057,259.04408214647526,0.2320915746130075,-26.219420132111075,-0.0231272098331209,95854271.3639978,-293346871.81099266,-144803978.40004712,17.799008254011675,8.466977904274705,2.1249716060156016,145970510.85984007,-34457901.1156943,-14938837.029360387,7.269443034738212,26.58973989201709,11.432841110984878,26.15029619091577 +1998 WD8,203460,60561.139313112064,2460561.639685983,272313725.0705775,7.353690741064393,332.6219186710925,-0.1894625411157376,-21.417565839164578,-0.0494080230026056,371125798.1077992,-150882213.34869963,-114311344.27929027,7.523664649954389,14.771314605387088,6.221055099725181,146012168.31578833,-34303625.98737426,-14872662.105211733,7.118380374652649,26.717487190894392,11.436409614425472,7.410247672565114 +1998 WD8,203510,60561.16303088659,2460561.663402983,272328862.03746605,7.420141530632878,332.6170919880142,-0.1894243356799872,-21.41873217174592,-0.0489458465595515,371141213.4056422,-150851944.8910926,-114298596.2851233,7.522268718400488,14.77188191698586,6.221484966972334,146026689.98333785,-34248843.86106115,-14849225.884148529,7.054257225660149,26.749382166260705,11.437695399525092,7.418592392509622 +1998 WD8,203645,60561.22853937814,2460561.728911983,272371370.93609554,7.597972285698375,332.6037883526754,-0.1884819802770225,-21.421897484749632,-0.0477105469180889,371183777.2976881,-150768334.0308086,-114263380.34175192,7.5184126623503325,14.77344831816933,6.22267207029753,146066078.4946289,-34097285.72833829,-14784478.662924066,6.861440884000044,26.793852551458944,11.441276027426795,7.441598828018652 +1998 WD8,203695,60561.25212092049,2460561.752492983,272386911.3561338,7.656367172404311,332.5990214902312,-0.1878599251206275,-21.42301771810943,-0.0473059608603269,371199093.495244,-150738234.82201612,-114250702.16677617,7.51702449275528,14.77401196174568,6.223099301376216,146079985.35979688,-34042695.04030498,-14761166.910598546,6.79022985594868,26.79329314225017,11.44256624712014,7.449858229702996 +1998 WD8,204491,60563.20040441238,2460563.7007769826,273710839.5430538,8.409959545887503,332.224976913853,-0.1825705543913943,-21.512920873929357,-0.042541145240462,372454748.6321142,-148247466.9297506,-113200222.51526566,7.402110928055059,14.820201506902176,6.25824105272051,147150870.5993589,-29583697.957790777,-12827436.56143224,5.946463427940422,26.995378736308588,11.530403601879254,8.126913968114975 +1998 WD8,204541,60563.22474067464,2460563.7251129826,273728590.0250984,8.473395916681609,332.2202075514458,-0.1820553819626618,-21.5139507121398,-0.0420978816016501,372470310.5847271,-148216305.7990285,-113187063.65831564,7.400672786366904,14.82077371484344,6.258678048040017,147163296.75712076,-29526926.91651799,-12803191.160294011,5.87303115534474,27.003070487413908,11.531567930077346,8.13547678298867 +1998 WD8,206470,60565.282790000885,2460565.783162982,275284309.14985675,9.466322301784157,331.8392365248445,-0.1728749708629841,-21.596985757414437,-0.035412773864763,373775399.29983366,-145576742.22575322,-112070930.9288292,7.278807641072587,14.868739585015856,6.295458221966349,148115769.87883836,-24777999.87358449,-10745483.188257346,4.69470358860932,27.15561847292642,11.610633502102068,8.84970475369963 +2000 QM186,207719,60567.01745298455,2460567.517824982,303202405.36876684,18.185915631947697,260.7171566863647,0.261238143278193,-26.36473675532544,-0.0221106356765326,104952408.80213185,-288868406.9479719,-143648407.02245528,17.6249296413151,8.971511799638694,2.374943212318209,148774211.5107441,-20761231.49726381,-9001124.46310786,4.364425131200673,27.039995902681756,11.66456506417168,26.33168332263811 +2000 QM186,207720,60567.01789955423,2460567.5182719817,303203107.7674486,18.186806183717625,260.71728701869904,0.2612489662539479,-26.364746637123247,-0.0221032357710591,104953089.44929224,-288868060.4813478,-143648315.30545887,17.624915863202816,8.97154971337546,2.3749620663117508,148774380.05701435,-20760187.16988024,-9000673.968097784,4.363840103458242,27.04109971872106,11.664578830884992,26.331693696700544 +2000 QM186,207769,60567.04144418392,2460567.541816982,303240152.7277524,18.23165700442176,260.7241602739066,0.2618820303627144,-26.36526260008174,-0.021730332861831,104988940.6869602,-288849808.84175366,-143643483.23154485,17.62418997587699,8.973546752380647,2.375955182013822,148783223.13565686,-20705119.741804373,-8976944.111220086,4.328829989615248,27.09758840672005,11.665313166042724,26.332233237302862 +1998 WD8,210276,60572.05591767253,2460572.5562899816,281459653.9587745,11.740634487094647,330.7146351622493,-0.1461027854672029,-21.78467137391753,-0.0189365479114312,377916716.4838135,-136830998.52171025,-108352091.62669568,6.874400671051291,15.0206361147572,6.414027567063675,149960678.2733964,-8984588.90817663,-3896948.14906437,1.7770961609486935,27.402783257588432,11.770781712171054,11.132434213349557 +1998 WD8,210326,60572.08050465147,2460572.5808769814,281484662.7084697,11.80478307563808,330.71076313738297,-0.1463419509873889,-21.785131425478585,-0.0184824485307192,377931317.7451625,-136799090.61686027,-108338466.28532448,6.872923475299199,15.021170761603411,6.414451001028675,149964397.44379243,-8926325.472764052,-3871942.83014025,1.7232263144688549,27.449955094952337,11.771207802728425,11.140593786610278 +1998 WD8,210553,60572.1865121623,2460572.6868849816,281594100.0060011,12.089668337889574,330.69407699860164,-0.1454630507928963,-21.786983156529423,-0.0164697274377805,377994235.7966759,-136661505.2728188,-108279709.72540513,6.866553732282386,15.023474521880097,6.416276072898518,149978894.8355799,-8674267.51998496,-3764120.376329966,1.4301267671951068,27.56309375370255,11.773173569800754,11.175702733625483 +1998 WD8,210603,60572.21088829548,2460572.7112609814,281619625.9940607,12.149552337256644,330.69026635688255,-0.1448343468305882,-21.787379409621074,-0.0160469097129301,378008695.2238761,-136629865.25873762,-108266196.59798253,6.865088871458821,15.024003939632548,6.416695604912186,149981828.92627198,-8616213.584602674,-3739324.566995031,1.3561394016899426,27.565006343407607,11.773637573891122,11.183741448074317 +2000 QM186,211018,60572.98199923911,2460573.4823719813,312461413.73349285,18.01876929813823,262.58876913349854,0.2884483244786356,-26.49701710875193,-0.0197424477778444,113985667.76809536,-284115060.485868,-142359638.79492545,17.431732979110237,9.476956625867382,2.6272447316821266,150056388.05351168,-6811485.542096825,-2954597.5165393394,1.3846821332110075,27.26547104200692,11.781721204447766,26.361413367308323 +2000 QM186,211039,60572.99318108737,2460573.493553981,312478834.10937554,18.04210218231209,262.5923744275393,0.2886594577483827,-26.497236787873263,-0.0195499734158051,114002507.80045496,-284105904.6561399,-142357100.47201782,17.431353115029335,9.477903173820089,2.627719022219875,150057720.02427006,-6785130.225669372,-2943214.83958043,1.3723416802798791,27.29327438065145,11.781854383711805,26.36140297121496 +2000 QM186,211100,60573.021532990446,2460573.521904981,312523099.8384077,18.09787583128712,262.601528823329,0.2893224144955738,-26.497784414519355,-0.019089153101368,114045202.60486272,-284082686.74131274,-142350662.71964395,17.430389704195374,9.48030304426682,2.628921565432099,150061035.3136543,-6718190.704711744,-2914354.4449981414,1.3325419255498998,27.361037069293925,11.782210848749044,26.36136538786036 +1998 WD8,211495,60573.20902749124,2460573.7093999814,282666362.36725897,12.529251815330593,330.54350889610623,-0.140038931859626,-21.80337249343192,-0.013161666798278,378598123.1326106,-135333327.72845787,-107712108.76866876,6.80505132676106,15.045579534914063,6.43383144414804,150079088.28857803,-6272458.646179869,-2723465.5751428874,0.8507908813488737,27.590979088843,11.785038937869007,11.506483347453266 +1998 WD8,212355,60574.199558013854,2460574.6999309813,283736921.5504542,12.885546847602145,330.40300457973626,-0.1353472491055754,-21.816424095699418,-0.0104118371533843,379177934.7214517,-134044843.39561462,-107160787.67957024,6.745365814623637,15.066791998012569,6.450753494277406,150132675.26601177,-3944913.320296339,-1714507.6773049578,0.3674519337568737,27.610423543235893,11.793273576247108,11.822592028049396 +1998 WD8,212356,60574.20000415996,2460574.7003769814,283737418.11436754,12.886614438020592,330.40293956090085,-0.1353349115796138,-21.81642873770129,-0.0104043103376585,379178194.6384449,-134044262.83040968,-107160539.11411214,6.745338916839708,15.066801504575148,6.450761094956067,150132689.3994341,-3943849.369205932,-1714053.2303353806,0.3660961836642447,27.610405464060708,11.793279319936016,11.822735308064235 +1998 WD8,212357,60574.20045402672,2460574.7008269816,283737919.1734674,12.887690063579438,330.40287396494926,-0.135322415199162,-21.816433417935823,-0.010396726791545,379178456.8854994,-134043677.05793132,-107160288.31905375,6.74531177779675,15.06681109635828,6.450768763785692,150132703.60666797,-3942775.876648704,-1713594.707352721,0.3647283494560562,27.610384002684345,11.793285114447484,11.822879866853055 +2000 QM186,213796,60576.054993998725,2460576.555365981,317204307.96458983,18.07447679262184,263.62264233081146,0.3035004564292975,-26.55768427817372,-0.0167598570729854,118599554.05195402,-281564500.1958181,-141644812.02703887,17.324828890098647,9.736900810175436,2.757754214952943,150115693.38679728,414116.2183503234,176786.60262093763,-0.2607527353896686,27.487201254196844,11.799581382804822,26.32265560213568 +2000 QM186,213846,60576.07931101434,2460576.5796839814,317242321.3904161,18.10775838599096,263.6309049379503,0.3043576187681359,-26.55808834120516,-0.0164803853908195,118635951.7119981,-281544041.3095838,-141639017.04107425,17.323962744492757,9.7389562991265,2.7587882878814383,150115087.69054988,471915.5546905447,201578.5342112227,-0.3169111717949774,27.53049647692776,11.799701728825104,26.322301201048766