diff --git a/ale/drivers/hayabusa_drivers.py b/ale/drivers/hayabusa_drivers.py
new file mode 100644
index 0000000000000000000000000000000000000000..c4a261420d03d3002d97faee46ed2149e11627c6
--- /dev/null
+++ b/ale/drivers/hayabusa_drivers.py
@@ -0,0 +1,44 @@
+from ale.base.data_naif import NaifSpice
+from ale.base.label_isis import IsisLabel
+from ale.base.type_sensor import Framer
+from ale.base.type_distortion import RadialDistortion, NoDistortion
+from ale.base.base import Driver
+
+class HayabusaAmicaIsisLabelNaifSpiceDriver(Framer, IsisLabel, NaifSpice, RadialDistortion, Driver):
+
+    @property
+    def instrument_id(self):
+        """
+        Returns the ID of the instrument
+
+        Returns
+        -------
+        : str
+          Name of the instrument
+        """
+        lookup_table = {'AMICA': 'HAYABUSA_AMICA'}
+        return lookup_table[super().instrument_id]
+
+    @property
+    def sensor_model_version(self):
+        """
+        The ISIS Sensor model number for HiRise in ISIS. This is likely just 1
+
+        Returns
+        -------
+        : int
+          ISIS sensor model version
+        """
+        return 1
+
+    @property
+    def sensor_name(self):
+        """
+        Returns the name of the instrument
+
+        Returns
+        -------
+        : str
+          Name of the sensor
+        """
+        return self.instrument_id
\ No newline at end of file
diff --git a/ale/transformation.py b/ale/transformation.py
index aee0784069ef9037078208882d9b43022fe04d86..84ef0c415212f9a2dfc5d6f884a2b1e41b96d147 100644
--- a/ale/transformation.py
+++ b/ale/transformation.py
@@ -104,7 +104,7 @@ class FrameChain(nx.DiGraph):
         if len(target_times) > 1:
             target_times = np.asarray([ephemeris_times[0], ephemeris_times[-1]])
 
-        if exact_ck_times and not nadir:
+        if exact_ck_times and len(ephemeris_times) > 1 and not nadir:
             try:
                 sensor_times = cls.extract_exact_ck_times(ephemeris_times[0], ephemeris_times[-1], sensor_frame)
             except Exception as e:
diff --git a/ale/util.py b/ale/util.py
index c3458034848fee1e495b6f721cde9735651fbdb8..35ce235caed5a9a9d1dc3f667b31fcf453eb05d5 100644
--- a/ale/util.py
+++ b/ale/util.py
@@ -284,7 +284,9 @@ def get_kernels_from_isis_pvl(kernel_group, expand=True, format_as="list"):
             kernels = [expandvars(expandvars(k, isisprefs['DataDirectory'], case_sensitive=False)) for k in kernels]
         # Ensure that the ISIS Addendum kernel is last in case it overrides
         # some values from the default Instrument kernel
+        # Sorts planetary constants kernel first so it can be overridden by more specific kernels
         kernels = sorted(kernels, key=lambda x: "Addendum" in x)
+        kernels = sorted(kernels, key=lambda x: "pck00" in x, reverse=True)
         return kernels
     elif (format_as == 'dict'):
         # return created dict
diff --git a/tests/pytests/conftest.py b/tests/pytests/conftest.py
index 0430a83fad95c7360c0d64d5a914d60826b5d860..b68997925566a8d67614523acf3fadc0bfc92175 100644
--- a/tests/pytests/conftest.py
+++ b/tests/pytests/conftest.py
@@ -213,4 +213,12 @@ def convert_kernels(kernels):
             except:
                 warnings.warn(f"Unable to convert {path} to binary kernel")
         updated_kernels.append(kernel)
+    
+    # Sort Kernels
+    # Ensure that the ISIS Addendum kernel is last in case it overrides
+    # some values from the default Instrument kernel
+    # Sorts planetary constants kernel first so it can be overridden by more specific kernels
+    updated_kernels = sorted(updated_kernels, key=lambda x: "Addendum" in x)
+    updated_kernels = sorted(updated_kernels, key=lambda x: "pck00" in x, reverse=True)
+    
     return updated_kernels, binary_kernels
diff --git a/tests/pytests/data/isds/hayabusaamica_isd.json b/tests/pytests/data/isds/hayabusaamica_isd.json
new file mode 100644
index 0000000000000000000000000000000000000000..4f4812aa78bbf30f5aeeee7c5ddf33036d92f6c9
--- /dev/null
+++ b/tests/pytests/data/isds/hayabusaamica_isd.json
@@ -0,0 +1,278 @@
+{
+  "isis_camera_version": 1,
+  "image_lines": 1024,
+  "image_samples": 1024,
+  "name_platform": "HAYABUSA",
+  "name_sensor": "HAYABUSA_AMICA",
+  "reference_height": {
+    "maxheight": 1000,
+    "minheight": -1000,
+    "unit": "m"
+  },
+  "name_model": "USGS_ASTRO_FRAME_SENSOR_MODEL",
+  "center_ephemeris_time": 182502855.87767982,
+  "radii": {
+    "semimajor": 0.274,
+    "semiminor": 0.138,
+    "unit": "km"
+  },
+  "body_rotation": {
+    "time_dependent_frames": [
+      2025143,
+      1
+    ],
+    "ck_table_start_time": 182502855.87767982,
+    "ck_table_end_time": 182502855.87767982,
+    "ck_table_original_size": 1,
+    "ephemeris_times": [
+      182502855.87767982
+    ],
+    "quaternions": [
+      [
+        -0.08077042629450831,
+        -0.3978802006010579,
+        0.8955645826414776,
+        0.1820207749792905
+      ]
+    ],
+    "angular_velocities": [
+      [
+        -2.512589340256263e-08,
+        5.61469404198439e-05,
+        -0.00013244767067246732
+      ]
+    ],
+    "reference_frame": 1
+  },
+  "instrument_pointing": {
+    "time_dependent_frames": [
+      -130000,
+      1
+    ],
+    "ck_table_start_time": 182502855.87767982,
+    "ck_table_end_time": 182502855.87767982,
+    "ck_table_original_size": 1,
+    "ephemeris_times": [
+      182502855.87767982
+    ],
+    "quaternions": [
+      [
+        -0.35631878528559185,
+        0.6008590807630156,
+        0.37126158431750983,
+        0.6116944697537136
+      ]
+    ],
+    "angular_velocities": [
+      [
+        -3.8262173581753043e-07,
+        -7.423354754135573e-06,
+        -4.099140843147822e-05
+      ]
+    ],
+    "reference_frame": 1,
+    "constant_frames": [
+      -130102,
+      -130101,
+      -130000
+    ],
+    "constant_rotation": [
+      0.006635481026673982,
+      0.9999756648566065,
+      0.002154085915888306,
+      0.9999768321090574,
+      -0.006632187003876368,
+      -0.0015327559101681021,
+      -0.0015184323097166528,
+      0.002164206583021168,
+      -0.9999965052804872
+    ]
+  },
+  "naif_keywords": {
+    "BODY2025143_RADII": [
+      0.274,
+      0.156,
+      0.138
+    ],
+    "BODY_FRAME_CODE": 2025143,
+    "BODY_CODE": 2025143,
+    "TKFRAME_-130102_AXES": [
+      1.0,
+      2.0,
+      3.0
+    ],
+    "TKFRAME_-130102_SPEC": "ANGLES",
+    "TKFRAME_-130102_RELATIVE": "HAYABUSA_AMICA_IDEAL",
+    "INS-130102_FOCAL_LENGTH": 0.1208,
+    "FRAME_-130102_NAME": "HAYABUSA_AMICA",
+    "FRAME_-130102_CLASS_ID": -130102.0,
+    "INS-130102_PIXEL_LINES": 1024.0,
+    "INS-130102_CENTER": [
+      511.5,
+      511.5
+    ],
+    "INS-130102_LT_SURFACE_CORRECT": "FALSE",
+    "INS-130102_F_NUMBER": 8.0,
+    "INS-130102_PIXEL_SIZE": 1.2e-05,
+    "INS-130102_SWAP_OBSERVER_TARGET": "TRUE",
+    "INS-130102_PIXEL_SAMPLES": 1024.0,
+    "FRAME_-130102_CLASS": 4.0,
+    "INS-130102_ITRANSL": [
+      0.0,
+      0.0,
+      -83.33333333
+    ],
+    "INS-130102_LIGHTTIME_CORRECTION": "NONE",
+    "INS-130102_FOV_BOUNDARY_CORNERS": [
+      0.006144,
+      0.006144,
+      0.1204711614,
+      -0.006144,
+      0.006144,
+      0.1204711614,
+      -0.006144,
+      -0.006144,
+      0.1204711614,
+      0.006144
+    ],
+    "INS-130102_ITRANSS": [
+      0.0,
+      83.33333333,
+      0.0
+    ],
+    "INS-130102_BORESIGHT": [
+      0.0,
+      0.0,
+      1.0
+    ],
+    "INS-130102_UPVECTOR": [
+      0.0,
+      -1.0,
+      0.0
+    ],
+    "INS-130102_BORESIGHT_LINE": 511.5,
+    "INS-130102_BORESIGHT_SAMPLE": 511.5,
+    "TKFRAME_-130102_UNITS": "DEGREES",
+    "INS-130102_PIXEL_PITCH": 0.012,
+    "INS-130102_FOV_SHAPE": "POLYGON",
+    "INS-130102_TRANSX": [
+      0.0,
+      0.012,
+      0.0
+    ],
+    "INS-130102_TRANSY": [
+      0.0,
+      0.0,
+      -0.012
+    ],
+    "INS-130102_OD_K": [
+      0.0,
+      2.8e-05,
+      0.0
+    ],
+    "INS-130102_FOV_FRAME": "HAYABUSA_AMICA",
+    "TKFRAME_-130102_ANGLES": [
+      -0.087,
+      -0.124,
+      -0.38
+    ],
+    "FRAME_-130102_CENTER": -130.0,
+    "OBJECT_2025143_FRAME": "ITOKAWA_FIXED",
+    "FRAME_2025143_CLASS": 2.0,
+    "BODY2025143_PM": [
+      129.73,
+      712.1437611,
+      0.0
+    ],
+    "BODY2025143_POLE_RA": [
+      90.02564,
+      0.0,
+      0.0
+    ],
+    "FRAME_2025143_CLASS_ID": 2025143.0,
+    "BODY2025143_POLE_DEC": [
+      -67.02704,
+      0.0,
+      0.0
+    ],
+    "FRAME_2025143_CENTER": 2025143.0,
+    "BODY2025143_LONG_AXIS": 0.0,
+    "FRAME_2025143_NAME": "ITOKAWA_FIXED"
+  },
+  "detector_sample_summing": 1,
+  "detector_line_summing": 1,
+  "focal_length_model": {
+    "focal_length": 0.1208
+  },
+  "detector_center": {
+    "line": 511.5,
+    "sample": 511.5
+  },
+  "focal2pixel_lines": [
+    0.0,
+    0.0,
+    -83.33333333
+  ],
+  "focal2pixel_samples": [
+    0.0,
+    83.33333333,
+    0.0
+  ],
+  "optical_distortion": {
+    "radial": {
+      "coefficients": [
+        0.0,
+        2.8e-05,
+        0.0
+      ]
+    }
+  },
+  "starting_detector_line": 0,
+  "starting_detector_sample": 0,
+  "instrument_position": {
+    "spk_table_start_time": 182502855.87767982,
+    "spk_table_end_time": 182502855.87767982,
+    "spk_table_original_size": 1,
+    "ephemeris_times": [
+      182502855.87767982
+    ],
+    "positions": [
+      [
+        8.86672985554185,
+        0.2413099824695155,
+        0.0807100049795115
+      ]
+    ],
+    "velocities": [
+      [
+        -1.7052270063544483e-07,
+        3.570752676118616e-07,
+        2.8761355905130292e-06
+      ]
+    ],
+    "reference_frame": 1
+  },
+  "sun_position": {
+    "spk_table_start_time": 182502855.87767982,
+    "spk_table_end_time": 182502855.87767982,
+    "spk_table_original_size": 1,
+    "ephemeris_times": [
+      182502855.87767982
+    ],
+    "positions": [
+      [
+        154700502.11551195,
+        5443988.583930893,
+        -2054766.29920961
+      ]
+    ],
+    "velocities": [
+      [
+        -6.6574479060899465,
+        28.813387859292327,
+        13.032393923917786
+      ]
+    ],
+    "reference_frame": 1
+  }
+}
\ No newline at end of file
diff --git a/tests/pytests/data/isds/mvic_mpf_isd.json b/tests/pytests/data/isds/mvic_mpf_isd.json
index 2fe5cb56f46484556c4d338c05c424ecbf89dc90..938db665b90cc465f4e181bc0b28d4609c73abe8 100644
--- a/tests/pytests/data/isds/mvic_mpf_isd.json
+++ b/tests/pytests/data/isds/mvic_mpf_isd.json
@@ -12,8 +12,8 @@
   "name_model": "USGS_ASTRO_FRAME_SENSOR_MODEL",
   "center_ephemeris_time": 486576443.42086315,
   "radii": {
-    "semimajor": 1195.0,
-    "semiminor": 1195.0,
+    "semimajor": 1188.3,
+    "semiminor": 1188.3,
     "unit": "km"
   },
   "body_rotation": {
@@ -1638,9 +1638,9 @@
   },
   "naif_keywords": {
     "BODY999_RADII": [
-      1195.0,
-      1195.0,
-      1195.0
+      1188.3,
+      1188.3,
+      1188.3
     ],
     "BODY_FRAME_CODE": 10019,
     "BODY_CODE": 999,
diff --git a/tests/pytests/data/isds/nhleisa_isd.json b/tests/pytests/data/isds/nhleisa_isd.json
index 9121e7fce95bcb960ca0ca20a9a7901f3444d468..94714f7e05b49620b2af710ed50ab97035d8beb3 100644
--- a/tests/pytests/data/isds/nhleisa_isd.json
+++ b/tests/pytests/data/isds/nhleisa_isd.json
@@ -21,8 +21,8 @@
   "starting_ephemeris_time": 487928588.0336103,
   "center_ephemeris_time": 487928745.5376103,
   "radii": {
-    "semimajor": 1195.0,
-    "semiminor": 1195.0,
+    "semimajor": 1188.3,
+    "semiminor": 1188.3,
     "unit": "km"
   },
   "body_rotation": {
@@ -4527,9 +4527,9 @@
   },
   "naif_keywords": {
     "BODY999_RADII": [
-      1195.0,
-      1195.0,
-      1195.0
+      1188.3,
+      1188.3,
+      1188.3
     ],
     "BODY_FRAME_CODE": 10019,
     "BODY_CODE": 999,
diff --git a/tests/pytests/data/st_2458542208_v/amica31.ti b/tests/pytests/data/st_2458542208_v/amica31.ti
new file mode 100755
index 0000000000000000000000000000000000000000..a719856d7d64ce4d46e40fd88f006f73e143e25e
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/amica31.ti
@@ -0,0 +1,322 @@
+KPL/IK
+
+\beginlabel
+PDS_VERSION_ID               = PDS3
+RECORD_TYPE                  = STREAM
+RECORD_BYTES                 = "N/A"
+^SPICE_KERNEL                = "amica31.ti"
+MISSION_NAME                 = HAYABUSA
+SPACECRAFT_NAME              = HAYABUSA
+DATA_SET_ID                  = "HAY-A-SPICE-6-V1.0"
+KERNEL_TYPE_ID               = IK
+PRODUCT_ID                   = "amica31.ti"
+PRODUCT_CREATION_TIME        = 2009-11-30T13:50:41
+PRODUCER_ID                  = JAXA
+MISSION_PHASE_NAME           = "N/A"
+PRODUCT_VERSION_TYPE         = ACTUAL
+PLATFORM_OR_MOUNTING_NAME    = "HAYABUSA SPACECRAFT BUS"
+START_TIME                   = "N/A"
+STOP_TIME                    = "N/A"
+SPACECRAFT_CLOCK_START_COUNT = "N/A"
+SPACECRAFT_CLOCK_STOP_COUNT  = "N/A"
+TARGET_NAME                  = "25143 ITOKAWA"
+INSTRUMENT_NAME              = "ASTEROID MULTI-BAND IMAGING CAMERA"
+NAIF_INSTRUMENT_ID           = -130102
+SOURCE_PRODUCT_ID            = "N/A"
+NOTE                         = "See comments in the file for details"
+OBJECT                       = SPICE_KERNEL
+  INTERCHANGE_FORMAT         = ASCII
+  KERNEL_TYPE                = INSTRUMENT
+  DESCRIPTION                = "SPICE I-Kernel (IK) file containing FOV and
+reference frame definitions for the Hayabusa Asteroid Multi-band Imaging
+CAmera (AMICA) instrument, created by the Hayabusa Joint Science Team. "
+END_OBJECT                   = SPICE_KERNEL
+\endlabel
+
+
+Hayabusa NIRS Instrument and Frame Kernel Kile
+===========================================================================
+
+   This instrument kernel (I-kernel) contains the frames and FOV 
+   definitions for Hayabusa Asteroid Multi-band Imaging CAmera (AMICA).
+
+
+Version and Date
+---------------------------------------------------------------------------
+
+   Version 3.1 by Boris Semenov, NAIF/JPL, 23 Sep. 2009.
+
+        Added miscellaneous comments. File name and version were not
+        changed.
+
+   Version 3.1 by Naru Hirata, Univ. of Aizu, 25 Jul. 2008.
+
+        ***** IMPORTANT *****
+        This is a bug-fix release for v 3.0, which include wrong 
+        pointing vector angles.
+        
+        Here is the corrected line.
+        TKFRAME_-130102_ANGLES    =  ( -0.087, -0.124, -0.380)
+        
+        PLEASE REPLACE the older version, v 3.0, with a new one 
+        and DISCARD any results that depend on wrong values from 
+        the older version.
+
+
+   Version 3.0 by Naru Hirata, Univ. of Aizu, 10 Apr. 2007.
+
+       The alignments and the focal length are updated by results of 
+       in-flight calibration.
+       
+       TKFRAME_-130102_ANGLES    =  ( -0.087, -0.124, 0.380)
+       INS-130102_FOCAL_LENGTH = ( 0.1208 ) 
+
+       Original efforts on in-flight calibration were done by Etsuko 
+       Nemoto (Univ. of Aizu) and Masateru Ishiguro (Seoul National Univ.).
+       Details are described in a following paper.
+
+           Ishiguro et al. (2007)
+           Calibration and Performance of Asteroid Multi-band Imaging 
+           Camera (AMICA) onboard Hayabusa Spacecraft,
+           (in prep).
+
+   Version 2.0 by Naru Hirata, Kobe University, 19 Oct. 2005.
+
+       A definition of the camera boresight is again changed:
+       INS-130102_CENTER         = ( 511.5, 511.5 )
+
+       Asignments of IDs are changed:
+                                               NAIF ID
+      ------------------------------------------------
+       HAYABUSA                                   -130
+       HAYABUSA_SC_BUS_PRIME                   -130000
+
+       IDs for ONC/AMICA                       -1301xx
+       HAYABUSA_AMICA_IDEAL                    -130101
+       HAYABUSA_AMICA                          -130102
+      ------------------------------------------------
+
+
+   Version 1.0 by Naru Hirata, Kobe University, 3 Sept. 2005.
+
+        Modified the values of alignment and focal length:
+
+        TKFRAME_-130001_RELATIVE  = 'HAYABUSA_AMICA_IDEAL'
+        TKFRAME_-130001_ANGLES    =  ( -0.1047822858, -0.1069183120, -0.45)
+        TKFRAME_-130001_AXES      = (     1,     2,    3 )
+        TKFRAME_-130001_UNITS     = 'DEGREES'
+
+        INS-130001_FOCAL_LENGTH   = (  0.1204711614      ) 
+        INS-130001_F_NUMBER       = (  8.0       )
+
+
+   Version 0.4 by Naru Hirata, Kobe University, 27 July 2005.
+   
+        Modified the values of alignment:
+ 
+        TKFRAME_-130001_ANGLES    = (  0.0, 180.0, -90.0 )
+        TKFRAME_-130001_AXES      = (     1,     2,    3 )
+
+        TKFRAME_-130001_ANGLES    = ( -90.0, 180.0, 180.0 )
+        TKFRAME_-130001_AXES      = (     3,     2,   3 )
+
+   
+   Version 0.3 (prototype) by Shingo Kobayashi, Univ. of Aizu, 21 July 2005.
+   
+        Added to a new item as follows:
+
+        INS-130001_UPVECTOR       = ( 0.0 -1.0 0.0 )
+   
+
+   Version 0.2 (prototype) by Naru Hirata, Kobe University, 24 June 2005.
+
+        Added to some new items as follows:
+
+        INS-130001_PIXEL_SAMPLES  = ( 1024         )
+        INS-130001_PIXEL_LINES    = ( 1024         )
+        INS-130001_CENTER         = ( 512.5, 512.5 )       
+        INS-130001_PIXEL_SIZE     = ( 0.000012     )
+
+   Version 0.1 (prototype) by Naru Hirata, Kobe University, 5 June 2004.
+   Version 0.0 (prototype) by Naru Hirata, Kobe University, 25 May 2004.
+
+
+Implementation Notes
+---------------------------------------------------------------------------
+
+   Applications that need SPICE I-kernel data must ``load'' the
+   I-kernel file, normally during program initialization. Loading the
+   kernel using the SPICELIB routine FURNSH causes the data items and
+   their associated values present in the kernel to become associated
+   with a data structure called the ``kernel pool''. The application
+   program may then obtain the value(s) for any IK data item using the
+   SPICELIB routines GDPOOL, GIPOOL, GCPOOL. Routine GETFOV may be used
+   if the file contains instrument field-of-view (FOV) specification.
+   The frame definitions information is accessed via any interfaces
+   utilizing SPICE frames subsystem (PXFORM, etc).
+
+   This file was created with, and can be updated with a text editor or
+   word processor.
+
+
+Conventions for Specifying Data
+---------------------------------------------------------------------------
+
+   Instrument data items are specified using ``keyword=value''
+   assignments. All keywords referencing instrument values in this
+   I-kernel start with the characters `INS' followed by the NAIF
+   instrument ID code for AMICA, -130102. The remainder of the keyword
+   is an underscore character followed by the unique name of the data
+   item. For example, AMICA boresight vector is specified by
+
+               INS-130102_BORESIGHT
+
+   The upper bound on the length of all keywords is 32 characters.
+
+
+Hayabusa Spacecraft Frame Definition
+---------------------------------------------------------------------------
+
+   This HAYABUSA_SC_BUS_PRIME frame definition is a copy of the
+   definition provided in the main Hayabusa FK file. It is included in
+   this IK file for historical reasons.
+
+\begindata
+
+   FRAME_HAYABUSA_SC_BUS_PRIME  = -130000
+   FRAME_-130000_NAME        = 'HAYABUSA_SC_BUS_PRIME'
+   FRAME_-130000_CLASS       = 3
+   FRAME_-130000_CLASS_ID    = -130000
+   FRAME_-130000_CENTER      = -130
+   CK_-130000_SCLK           = -130
+   CK_-130000_SPK            = -130
+
+\begintext
+
+
+AMICA Frame Definitions
+---------------------------------------------------------------------------
+
+   Two frames are defined for AMICA: HAYABUSA_AMICA_IDEAL and
+   HAYABUSA_AMICA. 
+
+   The HAYABUSA_AMICA_IDEAL frame incorporates the ideal fixed
+   instrument alignment relative to the spacecraft frame,
+   HAYABUSA_SC_BUS_PRIME. The +Z axis of the HAYABUSA_AMICA_IDEAL frame
+   is along the ideally-mounted instrument boresight.
+
+   The HAYABUSA_AMICA frame incorporates the the actual instrument
+   misalignment relative to its ideal orientation represented by the
+   HAYABUSA_AMICA_IDEAL frame. The +Z axis of this frame is along the
+   actual instrument boresight.
+
+   Both frames are defined as fixed offset frames with their
+   orientation specified using Euler angles.
+ 
+   Note that angles in the frame definitions are specified for "from
+   instrument to base (relative to) frame" transformation.
+
+   It is also noted that these instrument frames are different from the
+   frame definitions for mechanical design, which are officially referred
+   in printed materials. The boresight of the camera points the -Z axis in 
+   the coordinates for mechanical design, while it points the +Z axis 
+   in the SPICE instrument frame.
+
+\begindata
+
+   FRAME_HAYABUSA_AMICA      = -130102
+   FRAME_-130102_NAME        = 'HAYABUSA_AMICA'
+   FRAME_-130102_CLASS       = 4
+   FRAME_-130102_CLASS_ID    = -130102
+   FRAME_-130102_CENTER      = -130
+   TKFRAME_-130102_SPEC      = 'ANGLES'
+   TKFRAME_-130102_RELATIVE  = 'HAYABUSA_AMICA_IDEAL'
+   TKFRAME_-130102_ANGLES    =  ( -0.087, -0.124, -0.380)
+   TKFRAME_-130102_AXES      = (     1,     2,    3 )
+   TKFRAME_-130102_UNITS     = 'DEGREES'
+   
+   FRAME_HAYABUSA_AMICA_IDEAL = -130101
+   FRAME_-130101_NAME        = 'HAYABUSA_AMICA_IDEAL'
+   FRAME_-130101_CLASS       = 4
+   FRAME_-130101_CLASS_ID    = -130101
+   FRAME_-130101_CENTER      = -130
+   TKFRAME_-130101_SPEC      = 'ANGLES'
+   TKFRAME_-130101_RELATIVE  = 'HAYABUSA_SC_BUS_PRIME'
+   TKFRAME_-130101_ANGLES    = (  0.0, 180.0, -90.0 )
+   TKFRAME_-130101_AXES      = (     1,     2,    3 )
+   TKFRAME_-130101_UNITS     = 'DEGREES'
+
+\begintext
+   
+
+AMICA Field-Of-View Definition
+---------------------------------------------------------------------------
+
+   The AMICA FOV is defined using a corner-style definition as a 5.83 by
+   5.83 degrees square pyramid centered around the boresight that points
+   along the +Z axis of the HAYABUSA_AMICA frame. FOV corner directions
+   are defined assuming that:
+   
+    - FOV has square shape with its sides along X and Y axes of the
+      instrument's frame;
+
+    - FOV angular size in X direction is 5.83 degrees; in Y direction
+      -- 5.83 degrees;
+
+    - boresight vector intersects FOV exactly in the center of the
+      rectangle;
+
+   The FOV shape is set to 'POLYGON'; it could also have been set to
+   'RECTANGLE'. Corner directions are given counterclockwise as seen
+   from boresight.
+   
+\begindata
+   
+    INS-130102_PIXEL_SAMPLES  = ( 1024         )
+    INS-130102_PIXEL_LINES    = ( 1024         )
+    INS-130102_CENTER         = ( 511.5, 511.5 )       
+    INS-130102_PIXEL_SIZE     = ( 0.000012     )
+   
+    INS-130102_FOV_FRAME      = 'HAYABUSA_AMICA'
+    INS-130102_FOV_SHAPE      = 'POLYGON'
+    INS-130102_BORESIGHT      = ( 0.0 0.0 1.0 )
+    INS-130102_UPVECTOR       = ( 0.0 -1.0 0.0 )
+                                     
+    INS-130102_FOV_BOUNDARY_CORNERS = ( 
+                                          0.006144   0.006144   0.1204711614
+                                         -0.006144   0.006144   0.1204711614
+                                         -0.006144  -0.006144   0.1204711614
+                                          0.006144  -0.006144   0.1204711614
+                                       )
+
+\begintext
+
+
+AMICA Optical Parameters
+---------------------------------------------------------------------------
+
+   The following table summarizes a camera optics parameters:
+
+      -----------------------------------------------------------------
+             parameter                ONC-T(AMICA)
+      -----------------------------------------------------------------
+      Focal Length, mm                120.8
+      f/ratio                         f/8.0
+      IFOV, arcsec/pixel               20.47
+      Field of view (degree)
+          Horizontal                    5.7
+          Vertical                      5.7
+      -----------------------------------------------------------------
+
+
+   These values are incorporated in the keywords below; focal lengths
+   and aperture are converted to METERS.
+
+\begindata
+
+    INS-130102_FOCAL_LENGTH = ( 0.1208 ) 
+    INS-130102_F_NUMBER     = (  8.0       )
+
+\begintext
+
+End of IK file.
diff --git a/tests/pytests/data/st_2458542208_v/amicaAddendum002.ti b/tests/pytests/data/st_2458542208_v/amicaAddendum002.ti
new file mode 100755
index 0000000000000000000000000000000000000000..efa08086dc960f0236f8e08ec81d157efe011244
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/amicaAddendum002.ti
@@ -0,0 +1,43 @@
+\begindata
+
+ INS-130102_PIXEL_PITCH       = 0.012
+ INS-130102_BORESIGHT_SAMPLE  = 511.5
+ INS-130102_BORESIGHT_LINE    = 511.5
+
+\begintext
+  The AMICA orientientiation in ISIS camera model implemenation
+  is +Y = -LINE, +X = +SAMPLE, Z = +Z
+\begindata
+
+ INS-130102_TRANSY  = (0.0, 0.0, -0.012)
+ INS-130102_TRANSX  = (0.0, 0.012, 0.0)
+ INS-130102_ITRANSL = (0.0, 0.0, -83.33333333)
+ INS-130102_ITRANSS = (0.0, 83.33333333, 0.0)
+
+\begintext
+  The AMICA distortion uses the basic radial distortion model where 
+  R**2 = x**2 + y **2.  The distortion for X and Y is:
+
+    Xc = X ( 1 + K1*R2)
+    Yc = Y ( 1 + K1*R2)
+
+  ISIS implementation of the distortion model is slightly different but can be
+  used to implement this distortion model.
+  
+  For AMICA, only one term, K1 = -2.8x10**(-5), is used.  Source for this
+  information is Ishiguro, Masateru, et al. "The Hayabusa Spacecraft Asteroid 
+  Multi-band Imaging Camera (AMICA)". Icarus 207.2 (2010): 714-731.
+
+\begindata
+
+  INS-130102_OD_K = ( 0.0, 0.000028, 0.0)
+
+\begintext
+AMICA is very close to Itokawa so light time correction 
+and target/observer perspective are set as follows.
+
+\begindata 
+
+INS-130102_SWAP_OBSERVER_TARGET = 'TRUE'
+INS-130102_LIGHTTIME_CORRECTION = 'NONE'
+INS-130102_LT_SURFACE_CORRECT = 'FALSE'
diff --git a/tests/pytests/data/st_2458542208_v/hayabusa.tsc b/tests/pytests/data/st_2458542208_v/hayabusa.tsc
new file mode 100755
index 0000000000000000000000000000000000000000..6db182f50dd1515dc1e0ac8db1f5497919f79af3
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/hayabusa.tsc
@@ -0,0 +1,3462 @@
+KPL/SCLK
+
+\beginlabel
+PDS_VERSION_ID               = PDS3
+RECORD_TYPE                  = STREAM
+RECORD_BYTES                 = "N/A"
+^SPICE_KERNEL                = "hayabusa.tsc"
+MISSION_NAME                 = HAYABUSA
+SPACECRAFT_NAME              = HAYABUSA
+DATA_SET_ID                  = "HAY-A-SPICE-6-V1.0"
+KERNEL_TYPE_ID               = SCLK
+PRODUCT_ID                   = "hayabusa.tsc"
+PRODUCT_CREATION_TIME        = 2009-11-30T13:50:43
+PRODUCER_ID                  = JAXA
+MISSION_PHASE_NAME           = "N/A"
+PRODUCT_VERSION_TYPE         = ACTUAL
+PLATFORM_OR_MOUNTING_NAME    = "N/A"
+START_TIME                   = "N/A"
+STOP_TIME                    = "N/A"
+SPACECRAFT_CLOCK_START_COUNT = "N/A"
+SPACECRAFT_CLOCK_STOP_COUNT  = "N/A"
+TARGET_NAME                  = "25143 ITOKAWA"
+INSTRUMENT_NAME              = "N/A"
+NAIF_INSTRUMENT_ID           = "N/A"
+SOURCE_PRODUCT_ID            = "N/A"
+NOTE                         = "See comments in the file for details"
+OBJECT                       = SPICE_KERNEL
+  INTERCHANGE_FORMAT         = ASCII
+  KERNEL_TYPE                = CLOCK_COEFFICIENTS
+  DESCRIPTION                = "SPICE Spacecraft Clock Kernel (SCLK) file
+containing clock correlation data for the Hayabusa on-board clock, created
+by the Hayabusa Joint Science Team. "
+END_OBJECT                   = SPICE_KERNEL
+\endlabel
+
+
+Hayabusa SCLK File
+===========================================================================
+
+   This file is a SPICE spacecraft clock (SCLK) kernel containing the
+   data necessary to convert between Hayabusa spacecraft on-board clock
+   time and ephemeris time.
+
+
+Production/History of this SCLK file
+--------------------------------------------------------
+
+   This file was produced by Dr. Naru Hirata of the Hayabusa Joint 
+   Science Team. 
+   
+   Although the SCLK_KERNEL_ID provided in the data section of the file
+   is set to September 6, 2005, the set of data included in the file
+   suggests that the file was created on or shortly after November 28,
+   2005.
+
+   The comments were added to the file by Boris Semenov, NAIF/JPL on
+   September 22, 2009, during preparation of Hayabusa SPICE data for
+   formal archiving in PDS. When the comments were added to the file,
+   the original file name (hayabusa.tsc) was not changed because no
+   data in the file were modified.
+
+
+Usage
+--------------------------------------------------------
+
+   This file must be loaded into the user's program by a call to the
+   FURNSH subroutine in order to use the SPICELIB SCLK family of
+   subroutines to convert Hayabusa spacecraft on-board clock to ET and
+   vice versa.
+
+
+SCLK Format
+--------------------------------------------------------
+
+   The on-board clock, the conversion for which is provided by this
+   SCLK file, consists of two fields:
+
+       MMMMMMMMMMM:FFF
+
+   where:
+
+       MMMMMMMMMMM -- count of major on-board clock ticks (131086 ... 
+                      39062500000); the nominal duration of one major
+                      on-board clock tick is approximately 1/32 of a
+                      second
+
+       FFF         -- count of minor on-board clock ticks (0 ... 255);
+                      the nominal duration of one minor on-board clock
+                      tick is approximately 1/8192 of a second
+
+
+Inquiries
+--------------------------------------------------------
+
+   If you have any questions regarding this file contact
+
+      Naru Hirata
+      naru@u-aizu.ac.jp
+      Department of Computer Software
+      The University of Aizu, Japan
+
+   or 
+
+      Boris V. Semenov
+      (818) 354-8136
+      Boris.Semenov@jpl.nasa.gov
+
+
+Kernel Data
+--------------------------------------------------------
+
+\begintext
+
+DESCRIPTION =" 
+
+This file contains the data necessary to convert between Hayabusa
+spacecraft clock time and ephemeris time. "
+ 
+
+\begindata
+
+SCLK_KERNEL_ID            = ( @2005-09-06 )
+
+SCLK_DATA_TYPE_130        = ( 1 )
+SCLK01_TIME_SYSTEM_130    = ( 1 )
+SCLK01_N_FIELDS_130       = ( 2 )
+SCLK01_MODULI_130         = ( 4294967296 256)
+SCLK01_OFFSETS_130        = ( 0 0)
+SCLK01_OUTPUT_DELIM_130   = ( 2 )
+SCLK_PARTITION_START_130  = ( 0.0000000000000E+00 )
+SCLK_PARTITION_END_130    = ( 1.0000000000000E+13 )
+
+SCLK01_COEFFICIENTS_130   = (
+
+    3.35581810000000e+07    1.05712107715935e+08    3.12498634281155e-02
+    6.71126130000000e+07    1.05716203698034e+08    3.12498779238695e-02
+    1.00667045000000e+08    1.05720299682034e+08    3.12498580876763e-02
+    1.34221477000000e+08    1.05724395663433e+08    3.12495364015456e-02
+    3.35548581000000e+08    1.05748971361343e+08    3.12490928669149e-02
+    3.69103013000000e+08    1.05753067242443e+08    3.12490227679518e-02
+    4.36211877000000e+08    1.05761258986268e+08    3.12489858340541e-02
+    4.69766309000000e+08    1.05765354853339e+08    3.12489689042947e-02
+    5.03328933000000e+08    1.05769451718158e+08    3.12490054922567e-02
+    5.36899749000000e+08    1.05773549587743e+08    3.12489383503439e-02
+    1.04280950900000e+09    1.05835304052200e+08    3.12488096850840e-02
+    1.04289962100000e+09    1.05835315051781e+08    3.12489282811038e-02
+    1.07374250100000e+09    1.05839079922660e+08    3.12489284988260e-02
+    1.10729693300000e+09    1.05843175782217e+08    3.12489342363733e-02
+    1.14085136500000e+09    1.05847271642525e+08    3.12489515320067e-02
+    1.17440579700000e+09    1.05851367505100e+08    3.12489713837749e-02
+    1.20796022900000e+09    1.05855463370277e+08    3.12490572429653e-02
+    1.74483190900000e+09    1.05920997486920e+08    3.12490633841062e-02
+    1.77839965300000e+09    1.05925094989107e+08    3.12490660657644e-02
+    1.81194179700000e+09    1.05929189366739e+08    3.12491074331613e-02
+    2.44947745000000e+09    1.06007011320306e+08    3.12491106506059e-02
+    2.48303188200000e+09    1.06011107203737e+08    3.12491405122807e-02
+    2.51658435700000e+09    1.06015202852197e+08    3.12491099331282e-02
+    2.55013878900000e+09    1.06019298735534e+08    3.12490974926148e-02
+    3.18767272500000e+09    1.06097120454756e+08    3.12491800477963e-02
+    3.22123408500000e+09    1.06101217192965e+08    3.12490956811107e-02
+    3.23022070900000e+09    1.06102314161219e+08    3.12491431832314e-02
+    3.23031901300000e+09    1.06102326160890e+08    3.12490935709374e-02
+    3.25479261300000e+09    1.06105313574236e+08    3.12490956280271e-02
+    3.28834704500000e+09    1.06109409455698e+08    3.12490955975591e-02
+    3.32190147700000e+09    1.06113505337156e+08    3.12491041873576e-02
+    3.92588125300000e+09    1.06187231223669e+08    3.12490985784641e-02
+    3.95942339700000e+09    1.06191325605561e+08    3.12491294268208e-02
+    3.96669789300000e+09    1.06192213580823e+08    3.12477031548042e-02
+    3.96682896500000e+09    1.06192229579647e+08    3.12491040166319e-02
+    3.99298192500000e+09    1.06195421988113e+08    3.12491102692406e-02
+    5.30160929000000e+09    1.06355161991356e+08    3.12492320510274e-02
+    5.31052176500000e+09    1.06356249913229e+08    3.12487291539031e-02
+    5.31079210100000e+09    1.06356282911887e+08    3.12491160151186e-02
+    5.33517149300000e+09    1.06359258827703e+08    3.12491149709136e-02
+    5.36870954100000e+09    1.06363352711757e+08    3.12490783389554e-02
+    5.40226439400000e+09    1.06367448642344e+08    3.12492348680242e-02
+    7.41553031400000e+09    1.06613202625101e+08    3.12493378179373e-02
+    7.42728131700000e+09    1.06614637043314e+08    3.12492481800031e-02
+    7.44238736500000e+09    1.06616480998950e+08    3.12492493443391e-02
+    7.44909661300000e+09    1.06617299979277e+08    3.12492437976744e-02
+    7.48265104500000e+09    1.06621395880160e+08    3.12492394697171e-02
+    7.51620470900000e+09    1.06625491686728e+08    3.12492463833246e-02
+    7.54975094900000e+09    1.06629586587974e+08    3.12492449519436e-02
+    8.14256502900000e+09    1.06701949839524e+08    3.12496704388071e-02
+    8.14265514100000e+09    1.06701960839408e+08    3.12492297370336e-02
+    8.15373891700000e+09    1.06703313806059e+08    3.12492427827619e-02
+    8.18729232500000e+09    1.06707409581812e+08    3.12492480243236e-02
+    8.22084675700000e+09    1.06711505483249e+08    3.12492397518445e-02
+    9.55331105000000e+09    1.06874155858846e+08    3.12496624886990e-02
+    9.55335201000000e+09    1.06874160858792e+08    3.12492627989663e-02
+    9.59658256500000e+09    1.06879437901660e+08    3.12492374923212e-02
+    9.63012880500000e+09    1.06883532801741e+08    3.12492426540068e-02
+    9.66368733300000e+09    1.06887629202462e+08    3.12492478050551e-02
+    1.02567744740000e+10    1.06960025792458e+08    3.12496641417965e-02
+    1.02568072420000e+10    1.06960029792415e+08    3.12493517544791e-02
+    1.02676589170000e+10    1.06961354432295e+08    3.12492534560533e-02
+    1.03012133490000e+10    1.06965450334444e+08    3.12492514787832e-02
+    1.03348005490000e+10    1.06969550236238e+08    3.12492486350593e-02
+    1.03683713650000e+10    1.06973648137707e+08    3.12492503272254e-02
+    1.23799278820000e+10    1.07219193579688e+08    3.12496563419700e-02
+    1.23799524580000e+10    1.07219196579655e+08    3.12493435898796e-02
+    1.23815908580000e+10    1.07219396575454e+08    3.12492833393294e-02
+    1.24151507570000e+10    1.07223493148863e+08    3.12492521287548e-02
+    1.24486969970000e+10    1.07227588050862e+08    3.12492571713392e-02
+    1.24822514290000e+10    1.07231683953498e+08    3.12492447304466e-02
+    1.30862339300000e+10    1.07305410504227e+08    3.12492495232452e-02
+    1.30900432100000e+10    1.07305875493060e+08    3.12492760943104e-02
+    1.31197856370000e+10    1.07309506076314e+08    3.12492420879380e-02
+    1.31533400690000e+10    1.07313601976973e+08    3.12492421607610e-02
+    1.37890501860000e+10    1.07391201427715e+08    3.12497588265428e-02
+    1.37908742770000e+10    1.07391424093355e+08    3.12492492669207e-02
+    1.38244287090000e+10    1.07395519994955e+08    3.12492394023138e-02
+    1.38579831410000e+10    1.07399615895262e+08    3.12492519527723e-02
+    1.38915375730000e+10    1.07403711797214e+08    3.12492285654649e-02
+    1.39250947300000e+10    1.07407808028734e+08    3.12492426128534e-02
+    1.44943076580000e+10    1.07477290344693e+08    3.12500223358698e-02
+    1.44955173490000e+10    1.07477438012157e+08    3.12492389243059e-02
+    1.45290799730000e+10    1.07481534912377e+08    3.12492441462173e-02
+    1.45626262130000e+10    1.07485629813330e+08    3.12492204331963e-02
+    1.45961833700000e+10    1.07489726043784e+08    3.12492451355790e-02
+    1.52001631460000e+10    1.07563452262835e+08    3.12493863584828e-02
+    1.52011543780000e+10    1.07563573260459e+08    3.12492767215994e-02
+    1.52337230450000e+10    1.07567548835801e+08    3.12491428413043e-02
+    1.73189102820000e+10    1.07822081311660e+08    3.12496328260750e-02
+    1.73189758180000e+10    1.07822089311566e+08    3.12491774066067e-02
+    1.73476527730000e+10    1.07825589824278e+08    3.12491557301592e-02
+    1.73811990130000e+10    1.07829684713645e+08    3.12491282294047e-02
+    1.74147566820000e+10    1.07833780994511e+08    3.12491815750438e-02
+    1.80163443940000e+10    1.07907215071251e+08    3.12457264517434e-02
+    1.80164099300000e+10    1.07907223070157e+08    3.12496620023595e-02
+    1.80187332210000e+10    1.07907506671948e+08    3.12491851872210e-02
+    1.80522876530000e+10    1.07911602565149e+08    3.12491831805346e-02
+    1.80858420850000e+10    1.07915698458087e+08    3.12491631915557e-02
+    1.81193997540000e+10    1.07919794743536e+08    3.12491703173237e-02
+    1.81529541860000e+10    1.07923890634788e+08    3.12491821251312e-02
+    1.87224292580000e+10    1.07993404815415e+08    3.12496250495315e-02
+    1.87224702180000e+10    1.07993409815355e+08    3.12505527990292e-02
+    1.87233762930000e+10    1.07993520422170e+08    3.12491819216802e-02
+    1.87569307250000e+10    1.07997616314943e+08    3.12491879486214e-02
+    1.87905138290000e+10    1.08001715708415e+08    3.12491921568033e-02
+    1.88240395890000e+10    1.08005808102620e+08    3.12492204731143e-02
+    1.88575940210000e+10    1.08009904000445e+08    3.12492382042046e-02
+    1.94280226020000e+10    1.08079534698126e+08    3.12492266982897e-02
+    1.94351004900000e+10    1.08080398676745e+08    3.12496238704106e-02
+    1.94355592420000e+10    1.08080454676071e+08    3.12492784915847e-02
+    1.94615819890000e+10    1.08083631207588e+08    3.12492378481816e-02
+    1.94951446130000e+10    1.08087728107666e+08    3.12492425106948e-02
+    1.95286826610000e+10    1.08091822008429e+08    3.12492151957660e-02
+    1.95622403300000e+10    1.08095918300695e+08    3.12492421444738e-02
+    2.01326656740000e+10    1.08165548612023e+08    3.12496493508822e-02
+    2.01351650930000e+10    1.08165853713458e+08    3.12496250761407e-02
+    2.01351937650000e+10    1.08165857213416e+08    3.12492462204579e-02
+    2.01662209650000e+10    1.08169644622058e+08    3.12492423119290e-02
+    2.01997917810000e+10    1.08173742522698e+08    3.12492352570242e-02
+    2.02130833010000e+10    1.08175364982992e+08    3.12492419241496e-02
+    2.02333298290000e+10    1.08177836423038e+08    3.12492520589449e-02
+    2.02668801650000e+10    1.08181931825015e+08    3.12491554139300e-02
+    2.15471373540000e+10    1.08338208996378e+08    3.12490895637985e-02
+    2.15755030130000e+10    1.08341671500357e+08    3.12490678082895e-02
+    2.16090574450000e+10    1.08345767378173e+08    3.12490727907289e-02
+    2.16426118770000e+10    1.08349863256642e+08    3.12490593307076e-02
+    2.22465948900000e+10    1.08423589432454e+08    3.12490531785962e-02
+    2.22539349220000e+10    1.08424485405307e+08    3.12490601470927e-02
+    2.22801493220000e+10    1.08427685309066e+08    3.12490971067337e-02
+    2.23137005170000e+10    1.08431780795592e+08    3.12490294301809e-02
+    2.23472581860000e+10    1.08435877063507e+08    3.12491128837627e-02
+    2.29512379620000e+10    1.08509602970537e+08    3.12491239913015e-02
+    2.29847923940000e+10    1.08513698855717e+08    3.12491300186366e-02
+    2.30183468260000e+10    1.08517794741686e+08    3.12491197873896e-02
+    2.30519012580000e+10    1.08521890626315e+08    3.12491247084381e-02
+    2.30854556900000e+10    1.08525986511589e+08    3.12491304229070e-02
+    2.31190101220000e+10    1.08530082397612e+08    3.12491233942467e-02
+    2.36558810340000e+10    1.08595616559236e+08    3.12491206877894e-02
+    2.36894354660000e+10    1.08599712443983e+08    3.12495968615015e-02
+    2.36899269860000e+10    1.08599772443209e+08    3.12491533400356e-02
+    2.37230276210000e+10    1.08603812938595e+08    3.12491159996988e-02
+    2.37565410930000e+10    1.08607903822869e+08    3.12491138517998e-02
+    2.37900955250000e+10    1.08611999706719e+08    3.12490948082388e-02
+    2.43605241060000e+10    1.08681630084880e+08    3.12491063351398e-02
+    2.43724352740000e+10    1.08683084043299e+08    3.12491385608017e-02
+    2.43940834930000e+10    1.08685726575311e+08    3.12490928936318e-02
+    2.44276297330000e+10    1.08689821456444e+08    3.12491057186435e-02
+    2.44611841650000e+10    1.08693917339229e+08    3.12491258755472e-02
+    2.44947385970000e+10    1.08698013224656e+08    3.12490954382743e-02
+    2.50651671780000e+10    1.08767643604220e+08    3.12490883786593e-02
+    2.50782498020000e+10    1.08769240557632e+08    3.12491338737383e-02
+    2.50987265650000e+10    1.08771740093211e+08    3.12490819729364e-02
+    2.51322728050000e+10    1.08775834972913e+08    3.12491024687915e-02
+    2.51658272370000e+10    1.08779930855272e+08    3.12491454907331e-02
+    2.51993816690000e+10    1.08784026743270e+08    3.12491036487179e-02
+    2.57698102500000e+10    1.08853657141128e+08    3.12490826782381e-02
+    2.57843428580000e+10    1.08855431089054e+08    3.12491354702188e-02
+    2.58033614450000e+10    1.08857752629685e+08    3.12490863857420e-02
+    2.58369158770000e+10    1.08861848509936e+08    3.12490991573213e-02
+    2.58704703090000e+10    1.08865944391861e+08    3.12491421565255e-02
+    2.59040247410000e+10    1.08870040279422e+08    3.12491608793885e-02
+    2.59375824100000e+10    1.08874136564567e+08    3.12490996532166e-02
+    2.65080077540000e+10    1.08943766558393e+08    3.12490902461945e-02
+    2.65220734180000e+10    1.08945483508407e+08    3.12491404711015e-02
+    2.65415666290000e+10    1.08947862985317e+08    3.12490803933269e-02
+    2.65751128690000e+10    1.08951957864811e+08    3.12491006221762e-02
+    2.66086673010000e+10    1.08956053746928e+08    3.12491365566530e-02
+    2.66422217330000e+10    1.08960149633755e+08    3.12491009301272e-02
+    2.71790953700000e+10    1.09025684080901e+08    3.12490946682390e-02
+    2.71978550500000e+10    1.09027974014558e+08    3.12495820107870e-02
+    2.71979205860000e+10    1.09027982014451e+08    3.12491433526255e-02
+    2.72126470770000e+10    1.09029779632531e+08    3.12490871028785e-02
+    2.72462015090000e+10    1.09033875512875e+08    3.12490999431247e-02
+    2.72797559410000e+10    1.09037971394903e+08    3.12490996365819e-02
+    2.78837384420000e+10    1.09111697603311e+08    3.12490978059442e-02
+    2.79038252260000e+10    1.09114149532522e+08    3.12495781108737e-02
+    2.79038579940000e+10    1.09114153532467e+08    3.12470389539213e-02
+    2.79174155920000e+10    1.09115808355877e+08    3.12499640932613e-02
+    2.79508537970000e+10    1.09119890163321e+08    3.12490843963696e-02
+    2.80179582180000e+10    1.09128081380958e+08    3.12490847528579e-02
+    2.85883835620000e+10    1.09197711341583e+08    3.12490861151141e-02
+    2.86102398180000e+10    1.09200379263559e+08    3.12495781108737e-02
+    2.86102562020000e+10    1.09200381263532e+08    3.12466492263853e-02
+    2.86220258960000e+10    1.09201817839703e+08    3.12499657185389e-02
+    2.86554961010000e+10    1.09205903553605e+08    3.12490543278933e-02
+    2.86890453220000e+10    1.09209998793565e+08    3.12490746362073e-02
+    2.87225997540000e+10    1.09214094672275e+08    3.12491009513866e-02
+    2.92930250980000e+10    1.09283724668994e+08    3.12490876825664e-02
+    2.93161838820000e+10    1.09286551586462e+08    3.12495703110471e-02
+    2.93162166500000e+10    1.09286555586407e+08    3.12463479584908e-02
+    2.93267017360000e+10    1.09287835354553e+08    3.12499682181186e-02
+    2.93601302130000e+10    1.09291915975037e+08    3.12490572998644e-02
+    2.93937442020000e+10    1.09296019121398e+08    3.12490777599273e-02
+    2.94272412900000e+10    1.09300108000725e+08    3.12491010573886e-02
+    3.00227751140000e+10    1.09372802909511e+08    3.12495625888308e-02
+    3.00227996900000e+10    1.09372805909469e+08    3.12457522603198e-02
+    3.00312219280000e+10    1.09373833874945e+08    3.12499514880535e-02
+    3.00647737970000e+10    1.09377929555721e+08    3.12490603350992e-02
+    3.00983304420000e+10    1.09382025702691e+08    3.12491168809192e-02
+    3.01318824050000e+10    1.09386121285556e+08    3.12490531480119e-02
+    3.01654393060000e+10    1.09390217462832e+08    3.12490938472817e-02
+    3.07294257380000e+10    1.09459061466513e+08    3.12495625888308e-02
+    3.07294503140000e+10    1.09459064466471e+08    3.12448129409556e-02
+    3.07359714960000e+10    1.09459860377063e+08    3.12499565357095e-02
+    3.07694148210000e+10    1.09463942808519e+08    3.12490694743213e-02
+    3.08365243620000e+10    1.09472134647227e+08    3.12490990044125e-02
+    3.08700787940000e+10    1.09476230529131e+08    3.12491510622722e-02
+    3.14352940260000e+10    1.09545224654785e+08    3.12495521890620e-02
+    3.14353186020000e+10    1.09545227654742e+08    3.12493986008483e-02
+    3.14405116530000e+10    1.09545861559901e+08    3.12491560189301e-02
+    3.14740660850000e+10    1.09549957449279e+08    3.12491308965962e-02
+    3.15076123250000e+10    1.09554052335392e+08    3.12491281946450e-02
+    3.15411667570000e+10    1.09558148221122e+08    3.12490968230770e-02
+    3.21417475300000e+10    1.09631459184894e+08    3.12495521114518e-02
+    3.21417966820000e+10    1.09631465184808e+08    3.12494595859490e-02
+    3.21451465330000e+10    1.09631874095095e+08    3.12490834327264e-02
+    3.21787009650000e+10    1.09635969974959e+08    3.12490889716628e-02
+    3.22122553970000e+10    1.09640065855548e+08    3.12490938240444e-02
+    3.22458098290000e+10    1.09644161736774e+08    3.12482686133594e-02
+    3.22794507920000e+10    1.09648268072119e+08    3.12492959038881e-02
+    3.28485507300000e+10    1.09717736714156e+08    3.12495469115674e-02
+    3.28485834980000e+10    1.09717740714098e+08    3.12500829094745e-02
+    3.28497924210000e+10    1.09717888288098e+08    3.12492473966817e-02
+    3.28833550450000e+10    1.09721985189428e+08    3.12492225683676e-02
+    3.29169258610000e+10    1.09726083087479e+08    3.12491736094693e-02
+    3.29504557170000e+10    1.09730175979242e+08    3.12482779207462e-02
+    3.29840938640000e+10    1.09734281972078e+08    3.12492968326198e-02
+    3.35544359140000e+10    1.09803902237768e+08    3.12487827727526e-02
+    3.35547717860000e+10    1.09803943236171e+08    3.12495417892933e-02
+    3.35547963620000e+10    1.09803946236127e+08    3.12492867643000e-02
+    3.35880498290000e+10    1.09808005404589e+08    3.12492406651536e-02
+    3.36215428210000e+10    1.09812093805243e+08    3.12492079291360e-02
+    3.36550972530000e+10    1.09816189701425e+08    3.12491823631262e-02
+    3.36886516850000e+10    1.09820285594256e+08    3.12491542324945e-02
+    3.42590789860000e+10    1.09889915948582e+08    3.12491112534509e-02
+    3.42620608740000e+10    1.09890279938229e+08    3.12495416340729e-02
+    3.42620854500000e+10    1.09890282938185e+08    3.12491595778585e-02
+    3.42926601330000e+10    1.09894015098920e+08    3.12491225015689e-02
+    3.43261981810000e+10    1.09898108983961e+08    3.12491198307926e-02
+    3.43597403250000e+10    1.09902203368638e+08    3.12491172917362e-02
+    3.43932947570000e+10    1.09906299252939e+08    3.12490856611558e-02
+    3.49637184740000e+10    1.09975929016985e+08    3.12490899771528e-02
+    3.49677325540000e+10    1.09976419002716e+08    3.12495416340729e-02
+    3.49677571300000e+10    1.09976422002672e+08    3.12491183403231e-02
+    3.49972850290000e+10    1.09980026380837e+08    3.12490882380423e-02
+    3.50308312690000e+10    1.09984121261359e+08    3.12491008809275e-02
+    3.50643857010000e+10    1.09988217143510e+08    3.12491286825889e-02
+    3.50979401330000e+10    1.09992313029305e+08    3.12490620385823e-02
+    3.57691526800000e+10    1.10074245695407e+08    3.12490762962157e-02
+    3.64014440080000e+10    1.10151427413962e+08    3.12495214748196e-02
+    3.64015750800000e+10    1.10151443413717e+08    3.12490703020161e-02
+    3.64066868880000e+10    1.10152067395153e+08    3.12490752547987e-02
+    3.64737711760000e+10    1.10160256152826e+08    3.12490825877767e-02
+    3.65073092240000e+10    1.10164350032637e+08    3.12492459749206e-02
+    3.70776526480000e+10    1.10233970352742e+08    3.12501502105834e-02
+    3.71112051940000e+10    1.10238066142204e+08    3.12493231314519e-02
+    3.71447676530000e+10    1.10242163033323e+08    3.12492726491200e-02
+    3.71783220850000e+10    1.10246258937988e+08    3.12492240207800e-02
+    3.72118683250000e+10    1.10250353836303e+08    3.12490980648492e-02
+    3.77822912740000e+10    1.10319983534240e+08    3.12491219967344e-02
+    3.77945219300000e+10    1.10321476492292e+08    3.12469140238439e-02
+    3.77946202340000e+10    1.10321488491107e+08    3.12491720428412e-02
+    3.78158452850000e+10    1.10324079371070e+08    3.12491646244553e-02
+    3.78493997170000e+10    1.10328175261575e+08    3.12492078223841e-02
+    3.78829541490000e+10    1.10332271157743e+08    3.12483703822080e-02
+    3.79165298320000e+10    1.10336369538127e+08    3.12492792644170e-02
+    3.79500924560000e+10    1.10340466443635e+08    3.12491635469943e-02
+    3.84869353700000e+10    1.10405997271833e+08    3.12490917682946e-02
+    3.85008290020000e+10    1.10407693222542e+08    3.12466732734306e-02
+    3.85009191140000e+10    1.10407704221371e+08    3.12491462083140e-02
+    3.85205298290000e+10    1.10410098042075e+08    3.12490916619247e-02
+    3.85540433010000e+10    1.10414188923162e+08    3.12482124700990e-02
+    3.85876020880000e+10    1.10418285220453e+08    3.12499678644242e-02
+    3.86211536100000e+10    1.10422380861017e+08    3.12492837075734e-02
+    3.91916801680000e+10    1.10492023619898e+08    3.12492553638455e-02
+    3.92106856080000e+10    1.10494343564616e+08    3.12512946158852e-02
+    3.92251503730000e+10    1.10496109356150e+08    3.12492333521698e-02
+    3.92586914020000e+10    1.10500203619596e+08    3.12492999765089e-02
+    3.92922510450000e+10    1.10504300163936e+08    3.12492359100963e-02
+    3.93257972850000e+10    1.10508395063810e+08    3.12483135629532e-02
+    3.93594359440000e+10    1.10512501123827e+08    3.12491367920629e-02
+    3.98963068560000e+10    1.10578035313548e+08    3.12499591984978e-02
+    3.99297809010000e+10    1.10582121495347e+08    3.12490700736134e-02
+    3.99633353330000e+10    1.10586217373460e+08    3.12490753284304e-02
+    3.99968938610000e+10    1.10590313752246e+08    3.12490952815246e-02
+    4.00304401010000e+10    1.10594408633692e+08    3.12482612231650e-02
+    4.00640380560000e+10    1.10598509718358e+08    3.12492393427548e-02
+    4.06008681700000e+10    1.10664039143040e+08    3.12491853181733e-02
+    4.06217331940000e+10    1.10666586076641e+08    3.12494999729097e-02
+    4.06217741540000e+10    1.10666591076561e+08    3.12492731668659e-02
+    4.06344280690000e+10    1.10668135707992e+08    3.12491965612480e-02
+    4.06679825010000e+10    1.10672231602684e+08    3.12492170767200e-02
+    4.07015369330000e+10    1.10676327500064e+08    3.12492236364916e-02
+    4.07350858980000e+10    1.10680422730963e+08    3.12492577564853e-02
+    4.07686403300000e+10    1.10684518633676e+08    3.12491232176631e-02
+    4.13306309860000e+10    1.10753119083897e+08    3.12494997245570e-02
+    4.13306555620000e+10    1.10753122083848e+08    3.12490702568613e-02
+    4.13390605540000e+10    1.10754148053323e+08    3.12490719007190e-02
+    4.13726559460000e+10    1.10758248931527e+08    3.12490584360031e-02
+    4.14735735250000e+10    1.10770567600759e+08    3.12491027737406e-02
+    4.20403288530000e+10    1.10839749614400e+08    3.12495001126081e-02
+    4.20403452370000e+10    1.10839751614368e+08    3.12490356620401e-02
+    4.20437039570000e+10    1.10840161601716e+08    3.12491509617672e-02
+    4.20772681330000e+10    1.10844258679852e+08    3.12490492780372e-02
+    4.21108575460000e+10    1.10848358825251e+08    3.12490786108128e-02
+    4.21444119780000e+10    1.10852454704482e+08    3.12492028482955e-02
+    4.34529902820000e+10    1.11012189192235e+08    3.12492303137333e-02
+    4.34865447140000e+10    1.11016285091350e+08    3.12492434514979e-02
+    4.35200991460000e+10    1.11020380992188e+08    3.12483873282321e-02
+    4.35536826000000e+10    1.11024480323354e+08    3.12500242037183e-02
+    4.35872141540000e+10    1.11028573533799e+08    3.12492705662448e-02
+    4.41543150820000e+10    1.11097798105430e+08    3.12494831876113e-02
+    4.41544215780000e+10    1.11097811105215e+08    3.12495833222904e-02
+    4.41576941170000e+10    1.11098210579747e+08    3.12492882082589e-02
+    4.41911993970000e+10    1.11102300486587e+08    3.12492309589643e-02
+    4.42247498980000e+10    1.11106395905941e+08    3.12492455724396e-02
+    4.42583043300000e+10    1.11110491807057e+08    3.12492277959109e-02
+    4.42918587620000e+10    1.11114587705842e+08    3.12492858214564e-02
+    4.48613717220000e+10    1.11184106742038e+08    3.12491993142946e-02
+    4.48622810340000e+10    1.11184217739194e+08    3.12493298197594e-02
+    4.48958327410000e+10    1.11188313318718e+08    3.12492533240629e-02
+    4.49293871730000e+10    1.11192409220849e+08    3.12491913657188e-02
+    4.49629443300000e+10    1.11196505447493e+08    3.12491947129662e-02
+    4.49965069540000e+10    1.11200602341917e+08    3.12491003680918e-02
+    4.55669239440000e+10    1.11270231317589e+08    3.12499385367203e-02
+    4.56005282930000e+10    1.11274333402905e+08    3.12490752691019e-02
+    4.56340827250000e+10    1.11278429281699e+08    3.12490723011189e-02
+    4.56676125810000e+10    1.11282522160192e+08    3.12490762124915e-02
+    4.69762087140000e+10    1.11442258176956e+08    3.12490656152368e-02
+    4.69844007140000e+10    1.11443258147056e+08    3.12494687736034e-02
+    4.69844416740000e+10    1.11443263146971e+08    3.12491139901116e-02
+    4.70097652850000e+10    1.11446354320435e+08    3.12490472306097e-02
+    4.70433257700000e+10    1.11450450934422e+08    3.12490750968420e-02
+    4.70768720100000e+10    1.11454545813223e+08    3.12490801597960e-02
+    4.71104264420000e+10    1.11458641692658e+08    3.12482860093332e-02
+    4.71440068240000e+10    1.11462740635552e+08    3.12493340130250e-02
+    4.76808548580000e+10    1.11528272446211e+08    3.12493075833132e-02
+    4.76887847140000e+10    1.11529240424763e+08    3.12494686804712e-02
+    4.76888502500000e+10    1.11529248424627e+08    3.12493048524585e-02
+    4.77144584420000e+10    1.11532374355090e+08    3.12493536284893e-02
+    4.77480011890000e+10    1.11536468844007e+08    3.12492972239750e-02
+    4.77815263460000e+10    1.11540561178364e+08    3.12484840742639e-02
+    4.78151364240000e+10    1.11544663772064e+08    3.12493522447360e-02
+    4.83854933220000e+10    1.11614285973669e+08    3.12493265832238e-02
+    4.83946847460000e+10    1.11615407949490e+08    3.12494686804712e-02
+    4.83947093220000e+10    1.11615410949439e+08    3.12493383578595e-02
+    4.84190588530000e+10    1.11618383241366e+08    3.12492628427720e-02
+    4.84526009970000e+10    1.11622477644780e+08    3.12492183693497e-02
+    4.84861549170000e+10    1.11626573479832e+08    3.12491297026387e-02
+    4.85197100260000e+10    1.11630669448400e+08    3.12492772992528e-02
+    4.90901353700000e+10    1.11700299838060e+08    3.12492987406667e-02
+    5.04994266340000e+10    1.11872328602597e+08    3.12492460480979e-02
+    5.05332814290000e+10    1.11876461168296e+08    3.12493003108487e-02
+    5.19422644850000e+10    1.12048452319272e+08    3.12492113367649e-02
+    5.19758230130000e+10    1.12052548715887e+08    3.12491268040474e-02
+    5.20093760740000e+10    1.12056644434082e+08    3.12473734438410e-02
+    5.20430411040000e+10    1.12060753589412e+08    3.12492641910909e-02
+    5.26470208800000e+10    1.12134479853421e+08    3.12492992216358e-02
+    5.27141625120000e+10    1.12142675669626e+08    3.12492958582177e-02
+    5.33519588640000e+10    1.12220529915333e+08    3.12493114754122e-02
+    5.34187973920000e+10    1.12228688735567e+08    3.12493005196757e-02
+    5.34523518240000e+10    1.12232784643885e+08    3.12492981698824e-02
+    5.34859062560000e+10    1.12236880551895e+08    3.12492940873546e-02
+    5.40563316000000e+10    1.12306510978963e+08    3.12493132887873e-02
+    5.41233421600000e+10    1.12314690799210e+08    3.12492982387766e-02
+    5.41568965920000e+10    1.12318786707229e+08    3.12492729473206e-02
+    5.41904510240000e+10    1.12322882611932e+08    3.12492846740240e-02
+    5.47624492320000e+10    1.12392705013631e+08    3.12492420434133e-02
+    5.48280671520000e+10    1.12400714819351e+08    3.12492425899791e-02
+    5.48616215840000e+10    1.12404810720076e+08    3.12509775787729e-02
+    5.48953220210000e+10    1.12408924671643e+08    3.12491826280448e-02
+    5.68747695730000e+10    1.12650550132796e+08    3.12491019604851e-02
+    5.68842067570000e+10    1.12651702099690e+08    3.12490729336122e-02
+    5.69083281010000e+10    1.12654646512338e+08    3.12490870102176e-02
+    5.69418948210000e+10    1.12658743892627e+08    3.12490764454997e-02
+    5.69754287730000e+10    1.12662837271649e+08    3.12490491958004e-02
+    5.70089864420000e+10    1.12666933542155e+08    3.12491659655619e-02
+    5.76802020640000e+10    1.12748866856102e+08    3.12493011763308e-02
+    5.77137564960000e+10    1.12752962764506e+08    3.12492950659804e-02
+    5.83512907040000e+10    1.12830785008961e+08    3.12492258276404e-02
+    5.83848123680000e+10    1.12834876907588e+08    3.12492539351297e-02
+    5.84183668000000e+10    1.12838972809799e+08    3.12492598097833e-02
+    5.84519212320000e+10    1.12843068712781e+08    3.12492932909407e-02
+    5.89887921440000e+10    1.12908603230705e+08    3.12492979364454e-02
+    5.90894554400000e+10    1.12920890954642e+08    3.12492906172110e-02
+    5.91230098720000e+10    1.12924986861662e+08    3.12493040452182e-02
+    5.91565643040000e+10    1.12929082770442e+08    3.12492934164084e-02
+    5.96934352160000e+10    1.12994617288629e+08    3.12492991292477e-02
+    5.97940985120000e+10    1.13006905013035e+08    3.12492893202716e-02
+    5.98276529440000e+10    1.13011000919885e+08    3.12492836438355e-02
+    6.18300979570000e+10    1.13255434405012e+08    3.12490779490615e-02
+    6.18408294770000e+10    1.13256744366359e+08    3.12490779520070e-02
+    6.18743921010000e+10    1.13260841245475e+08    3.12486498847465e-02
+    6.19415400080000e+10    1.13269037657336e+08    3.12481881066048e-02
+    6.19750792480000e+10    1.13273131565462e+08    3.12492532551954e-02
+    6.25455045920000e+10    1.13342761901548e+08    3.12493125751416e-02
+    6.26126134560000e+10    1.13350953721343e+08    3.12492961157047e-02
+    6.40218996000000e+10    1.13522981846444e+08    3.12493079518390e-02
+    6.40554540320000e+10    1.13527077755735e+08    3.12492904425881e-02
+    6.40890084640000e+10    1.13531173662732e+08    3.12491793408201e-02
+    6.67733225330000e+10    1.13858840114878e+08    3.12489408011280e-02
+    6.67812306660000e+10    1.13859805430425e+08    3.12490734402756e-02
+    6.68069043940000e+10    1.13862939337502e+08    3.12490811134146e-02
+    6.68404342500000e+10    1.13867032217150e+08    3.12474346344520e-02
+    6.68756155680000e+10    1.13871326459082e+08    3.12489880998897e-02
+    6.75790240320000e+10    1.13957188969710e+08    3.12491777048688e-02
+    6.81827269920000e+10    1.14030881239546e+08    3.12490764537567e-02
+    6.82833902880000e+10    1.14043168876393e+08    3.12490845257116e-02
+    6.83169447200000e+10    1.14047264756400e+08    3.12491210552253e-02
+    6.83504991520000e+10    1.14051360641195e+08    3.12491230412775e-02
+    6.88873700640000e+10    1.14116894802079e+08    3.12491048340479e-02
+    6.89224973600000e+10    1.14121182679248e+08    3.12490983447251e-02
+    6.89544789280000e+10    1.14125086566606e+08    3.12491100306715e-02
+    6.89880333600000e+10    1.14129182449956e+08    3.12491181104519e-02
+    6.90551422240000e+10    1.14137374218774e+08    3.12491675603326e-02
+    6.95920131360000e+10    1.14202908473021e+08    3.12491738385082e-02
+    7.02966562080000e+10    1.14288922199002e+08    3.12491678313336e-02
+    7.03302106400000e+10    1.14293018089928e+08    3.12491387506573e-02
+    7.04308739360000e+10    1.14305305751271e+08    3.12491751020616e-02
+    7.04644283680000e+10    1.14309401643150e+08    3.12492271141664e-02
+    7.10012992800000e+10    1.14374936022291e+08    3.12491985016550e-02
+    7.10348537120000e+10    1.14379031917237e+08    3.12492343712734e-02
+    7.11019625760000e+10    1.14387223716532e+08    3.12492306748027e-02
+    7.11355170080000e+10    1.14391319615695e+08    3.12492287291661e-02
+    7.11690714400000e+10    1.14395415514603e+08    3.12493399912614e-02
+    7.17058231780000e+10    1.14460935583164e+08    3.12492148408506e-02
+    7.17340364260000e+10    1.14464379496633e+08    3.12494017582919e-02
+    7.17341511140000e+10    1.14464393496365e+08    3.12491564881524e-02
+    7.17393776100000e+10    1.14465031479144e+08    3.12491672364104e-02
+    7.17729320420000e+10    1.14469127369992e+08    3.12491279892402e-02
+    7.18066329060000e+10    1.14473241130197e+08    3.12491155210325e-02
+    7.18400398820000e+10    1.14477319014776e+08    3.12489974805468e-02
+    7.24440808000000e+10    1.14551052112920e+08    3.12492390939951e-02
+    7.25111896640000e+10    1.14559243913453e+08    3.12492316363659e-02
+    7.25447440960000e+10    1.14563339812742e+08    3.12492340150357e-02
+    7.31487238720000e+10    1.14637066005556e+08    3.12492622074387e-02
+    7.32158327360000e+10    1.14645257812148e+08    3.12492395253230e-02
+    7.32493871680000e+10    1.14649353712472e+08    3.12492297518929e-02
+    7.32829416000000e+10    1.14653449611514e+08    3.12492311585268e-02
+    7.38533669440000e+10    1.14723079898363e+08    3.12491941534176e-02
+    7.39204758080000e+10    1.14731271687115e+08    3.12492161908153e-02
+    7.39875846720000e+10    1.14739463481644e+08    3.12492289403671e-02
+    7.52962075200000e+10    1.14899203540135e+08    3.12492316521116e-02
+    7.53633163840000e+10    1.14907395338717e+08    3.12493312925286e-02
+    7.66718796260000e+10    1.15067128644446e+08    3.12492257083899e-02
+    7.66776140260000e+10    1.15067828627102e+08    3.12491792874026e-02
+    7.67054422500000e+10    1.15071225537887e+08    3.12491365488700e-02
+    7.67725413860000e+10    1.15079416124071e+08    3.12489037960718e-02
+    7.74774340160000e+10    1.15165459569311e+08    3.12490739365785e-02
+    7.81820770880000e+10    1.15251473020310e+08    3.12490845578850e-02
+    7.82156315200000e+10    1.15255568900322e+08    3.12490982450981e-02
+    7.82491859520000e+10    1.15259664782127e+08    3.12492365750288e-02
+    7.87860568640000e+10    1.15325199181109e+08    3.12492559180843e-02
+    7.88867406400000e+10    1.15337489388464e+08    3.12492463164062e-02
+    7.89202950720000e+10    1.15341585289677e+08    3.12492599273355e-02
+    7.89538495040000e+10    1.15345681192674e+08    3.12492792339754e-02
+    7.94907204160000e+10    1.15411215681119e+08    3.12498719055245e-02
+    7.95928046880000e+10    1.15423677089023e+08    3.12491834051081e-02
+    8.01951996480000e+10    1.15497209708505e+08    3.12493627715185e-02
+    8.02287540800000e+10    1.15501305624982e+08    3.12492725971011e-02
+    8.02980461120000e+10    1.15509763928095e+08    3.12493062114906e-02
+    8.03295033920000e+10    1.15513603842842e+08    3.12493016602957e-02
+    8.03630578240000e+10    1.15517699751309e+08    3.12493035003786e-02
+    8.16045718080000e+10    1.15669248373520e+08    3.12492371692770e-02
+    8.16381262400000e+10    1.15673344273534e+08    3.12493343868141e-02
+    8.17052351040000e+10    1.15681536099048e+08    3.12493079472915e-02
+    8.17387895360000e+10    1.15685632008339e+08    3.12495102226897e-02
+    8.23370210020000e+10    1.15758657165809e+08    3.12494114817431e-02
+    8.23370701540000e+10    1.15758663165696e+08    3.12492724689330e-02
+    8.23425833700000e+10    1.15759336150028e+08    3.12492237432018e-02
+    8.23761787620000e+10    1.15763437048158e+08    3.12491620598493e-02
+    8.24099697380000e+10    1.15767561812553e+08    3.12472207517559e-02
+    8.24772082240000e+10    1.15775768905581e+08    3.12492650832610e-02
+    8.30476335680000e+10    1.15845399268022e+08    3.12493481085312e-02
+    8.30811880000000e+10    1.15849495182577e+08    3.12492698158167e-02
+    8.31147424320000e+10    1.15853591086870e+08    3.12492434104570e-02
+    8.31818512960000e+10    1.15861782888535e+08    3.12493015704793e-02
+    8.37528009280000e+10    1.15931477330847e+08    3.12493339983135e-02
+    8.38193855040000e+10    1.15939605157623e+08    3.12493083216623e-02
+    8.38529399360000e+10    1.15943701066963e+08    3.12492985557355e-02
+    8.38864943680000e+10    1.15947796975023e+08    3.12493033938796e-02
+    8.44569197120000e+10    1.16017427422829e+08    3.12492764841750e-02
+    8.45240285760000e+10    1.16025619233164e+08    3.12492665649277e-02
+    8.51614972480000e+10    1.16103433406828e+08    3.12498721094835e-02
+    8.52620598560000e+10    1.16115709065574e+08    3.12492732771676e-02
+    8.52954094880000e+10    1.16119779970902e+08    3.12492193837821e-02
+    8.65709390400000e+10    1.16275480372469e+08    3.12492224578925e-02
+    8.66065906240000e+10    1.16279832264185e+08    3.12511176895433e-02
+    8.66711047140000e+10    1.16287707800979e+08    3.12490758439035e-02
+    8.79800252370000e+10    1.16447483413076e+08    3.12481379098422e-02
+    8.81139841600000e+10    1.16463834846280e+08    3.12491180146708e-02
+    8.81475385920000e+10    1.16467930730676e+08    3.12492880163902e-02
+    8.86844095040000e+10    1.16533465237538e+08    3.12492851393624e-02
+    8.87850728000000e+10    1.16545752956444e+08    3.12493062092472e-02
+    8.88186272320000e+10    1.16549848865507e+08    3.12493045306610e-02
+    8.88521816640000e+10    1.16553944774351e+08    3.12493052966545e-02
+    8.93890525760000e+10    1.16619479317452e+08    3.12493612476601e-02
+    8.94226070080000e+10    1.16623575233730e+08    3.12493056029552e-02
+    8.94897158720000e+10    1.16631767051698e+08    3.12493020284137e-02
+    8.95232703040000e+10    1.16635862960213e+08    3.12493046651926e-02
+    9.00936956480000e+10    1.16705493410851e+08    3.12492502021087e-02
+    9.01272500800000e+10    1.16709589312574e+08    3.12493053092453e-02
+    9.01943589440000e+10    1.16717781130465e+08    3.12493055687355e-02
+    9.02279133760000e+10    1.16721877039444e+08    3.12493049768789e-02
+    9.15365362240000e+10    1.16881617486620e+08    3.12493011630295e-02
+    9.16036450880000e+10    1.16889809303424e+08    3.12493129084714e-02
+    9.16371995200000e+10    1.16893905213365e+08    3.12495202956517e-02
+    9.22078752210000e+10    1.16963566705165e+08    3.12492614422068e-02
+    9.22388082130000e+10    1.16967342615923e+08    3.12491549775586e-02
+    9.22414296530000e+10    1.16967662607270e+08    3.12492571352667e-02
+    9.22747295460000e+10    1.16971727438985e+08    3.12491425441408e-02
+    9.23418384100000e+10    1.16979919214208e+08    3.12491083597121e-02
+    9.23753518820000e+10    1.16984010097481e+08    3.12490272533197e-02
+    9.29462237760000e+10    1.17053694438785e+08    3.12492639737911e-02
+    9.29797782080000e+10    1.17057790342313e+08    3.12511457165529e-02
+    9.30129411360000e+10    1.17061838699716e+08    3.12473541005306e-02
+    9.30466822720000e+10    1.17065957141999e+08    3.12492912791337e-02
+    9.36506620480000e+10    1.17139683469917e+08    3.12493089721784e-02
+    9.37177709120000e+10    1.17147875288768e+08    3.12492636231809e-02
+    9.37513253440000e+10    1.17151971192249e+08    3.12492538039351e-02
+    9.37848797760000e+10    1.17156067094444e+08    3.12492444671093e-02
+    9.43553051200000e+10    1.17225697410947e+08    3.12492436496541e-02
+    9.43720823360000e+10    1.17227745361379e+08    3.12494550744304e-02
+    9.43726066240000e+10    1.17227809360263e+08    3.12531869510756e-02
+    9.43888735520000e+10    1.17229795271755e+08    3.12492473193515e-02
+    9.44224279840000e+10    1.17233891173100e+08    3.12492601365193e-02
+    9.44559824160000e+10    1.17237987076124e+08    3.12491929374038e-02
+    9.50597270080000e+10    1.17311684463782e+08    3.12493020602460e-02
+    9.51268358720000e+10    1.17319876280821e+08    3.12493102391045e-02
+    9.51603903040000e+10    1.17323972190413e+08    3.12493003132204e-02
+    9.51939447360000e+10    1.17328068098703e+08    3.12493501437816e-02
+    9.65698870560000e+10    1.17496026314857e+08    3.12494016595268e-02
+    9.71739365330000e+10    1.17569761411455e+08    3.12494476096348e-02
+    9.71839643620000e+10    1.17570985490037e+08    3.12494750134647e-02
+    9.71840053220000e+10    1.17570990489953e+08    3.12492174230627e-02
+    9.72071968740000e+10    1.17573821419057e+08    3.12490804280510e-02
+    9.79790527040000e+10    1.17668039328864e+08    3.12493187540213e-02
+    9.80126071360000e+10    1.17672135239572e+08    3.12493094463662e-02
+    9.80461615680000e+10    1.17676231149060e+08    3.12493179077484e-02
+    9.86836957760000e+10    1.17754053450399e+08    3.12493161603697e-02
+    9.87172502080000e+10    1.17758149360767e+08    3.12493143902657e-02
+    9.87508046400000e+10    1.17762245270902e+08    3.12493098747169e-02
+    9.92876755520000e+10    1.17827779823605e+08    3.12493804609630e-02
+    9.93212299840000e+10    1.17831875742401e+08    3.12493173315715e-02
+    9.93883388480000e+10    1.17840067563443e+08    3.12492800276232e-02
+    9.93925331520000e+10    1.17840579551647e+08    3.12494624013198e-02
+    9.93930574400000e+10    1.17840643550546e+08    3.12493159873570e-02
+    9.94218932800000e+10    1.17844163473499e+08    3.12493115663114e-02
+    9.99923186240000e+10    1.17913793939515e+08    3.12493779814531e-02
+    1.00025873056000e+11    1.17917889857985e+08    3.12493150200908e-02
+    1.00092981920000e+11    1.17926081678422e+08    3.12493191054273e-02
+    1.00126536352000e+11    1.17930177589176e+08    3.12493095535729e-02
+    1.00160090784000e+11    1.17934273498678e+08    3.12494126395178e-02
+    1.01468907925000e+11    1.18094038213165e+08    3.12491931793110e-02
+    1.01502167445000e+11    1.18098098108343e+08    3.12490997861937e-02
+    1.02106432917000e+11    1.18171858858467e+08    3.12491422568273e-02
+    1.02136083146000e+11    1.18175478171842e+08    3.12495052348822e-02
+    1.02136132298000e+11    1.18175484171747e+08    3.12490752159521e-02
+    1.02139695818000e+11    1.18175919158874e+08    3.12490823874657e-02
+    1.02173291210000e+11    1.18180020038454e+08    3.12490870883849e-02
+    1.02206801610000e+11    1.18184110543954e+08    3.12490805960865e-02
+    1.02886732597000e+11    1.18267107490097e+08    3.12495007761754e-02
+    1.02887060277000e+11    1.18267147489458e+08    3.12484293411487e-02
+    1.02978803024000e+11    1.18278345992376e+08    3.12491632053582e-02
+    1.03549237920000e+11    1.18347977293795e+08    3.12493155892071e-02
+    1.03582792352000e+11    1.18352073204088e+08    3.12479963047163e-02
+    1.04259589376000e+11    1.18434684731060e+08    3.12505994107901e-02
+    1.04958566048000e+11    1.18520010668460e+08    3.12493207470652e-02
+    1.04992120480000e+11    1.18524106579428e+08    3.12488467097026e-02
+    1.06402347648000e+11    1.18696247097392e+08    3.12498457505110e-02
+    1.07072489397000e+11    1.18778051106327e+08    3.12490618723262e-02
+    1.07076159413000e+11    1.18778499092878e+08    3.12495469115674e-02
+    1.07076175797000e+11    1.18778501092849e+08    3.12491538955773e-02
+    1.07105784794000e+11    1.18782115374505e+08    3.12490947422112e-02
+    1.07139582426000e+11    1.18786240942491e+08    3.12490896699561e-02
+    1.07239967194000e+11    1.18798494585525e+08    3.12491535787884e-02
+    1.07810597712000e+11    1.18868149744485e+08    3.12490605797271e-02
+    1.08556621120000e+11    1.18959214317416e+08    3.12493208721460e-02
+    1.09221879104000e+11    1.19040420802591e+08    3.12493215147214e-02
+    1.11333963072000e+11    1.19298237954865e+08    3.12493202566202e-02
+    1.11401071936000e+11    1.19306429776674e+08    3.12497388115973e-02
+    1.12005033386000e+11    1.19380154923412e+08    3.12494533250697e-02
+    1.12038251370000e+11    1.19384209782164e+08    3.12492304073964e-02
+    1.12071804810000e+11    1.19388305560201e+08    3.12491542392027e-02
+    1.12143125834000e+11    1.19397011504262e+08    3.12495627440512e-02
+    1.12143134026000e+11    1.19397012504248e+08    3.12491268109400e-02
+    1.12156716362000e+11    1.19398670457920e+08    3.12491174447299e-02
+    1.12172469578000e+11    1.19400593403611e+08    3.12474714602419e-02
+    1.12743396608000e+11    1.19470281005469e+08    3.12607832971543e-02
+    1.12810079552000e+11    1.19478423822118e+08    3.12493223621902e-02
+    1.13447613760000e+11    1.19556246134550e+08    3.12493303101551e-02
+    1.13484313920000e+11    1.19560726038544e+08    3.12493285711704e-02
+    1.14152256832000e+11    1.19642260286684e+08    3.12494982009945e-02
+    1.14890644128000e+11    1.19732394007301e+08    3.12492564259099e-02
+    1.16308277920000e+11    1.19905440889661e+08    3.12492061895379e-02
+    1.16333443744000e+11    1.19908512811626e+08    3.12493916122736e-02
+    1.16971058645000e+11    1.19986345146545e+08    3.12491325569935e-02
+    1.16973057493000e+11    1.19986589139772e+08    3.12496457869808e-02
+    1.16973106645000e+11    1.19986595139704e+08    3.12491754839959e-02
+    1.17037865706000e+11    1.19994500089944e+08    3.12491267725363e-02
+    1.17071420138000e+11    1.19998595975488e+08    3.12491089201785e-02
+    1.17104974570000e+11    1.20002691858692e+08    3.12491069973930e-02
+    1.17138529002000e+11    1.20006787741645e+08    3.12491004598432e-02
+    1.17675692501000e+11    1.20072357570331e+08    3.12491479303969e-02
+    1.17708951786000e+11    1.20076417430944e+08    3.12491069364569e-02
+    1.17742506218000e+11    1.20080513313889e+08    3.12490970259205e-02
+    1.17776060650000e+11    1.20084609195534e+08    3.12491020386005e-02
+    1.17809615082000e+11    1.20088705077836e+08    3.12488578833550e-02
+    1.18429308224000e+11    1.20164348448640e+08    3.12493983038439e-02
+    1.18481737024000e+11    1.20170748325412e+08    3.12493270172693e-02
+    1.19127659840000e+11    1.20249594627385e+08    3.12492595639274e-02
+    1.19186380096000e+11    1.20256762457547e+08    3.12493336733347e-02
+    1.19838594368000e+11    1.20336376759939e+08    3.12493277475733e-02
+    1.19891023168000e+11    1.20342776622261e+08    3.12493254096864e-02
+    1.21233200448000e+11    1.20506613085465e+08    3.12510478970689e-02
+    1.21366392277000e+11    1.20522872398854e+08    3.12490960303439e-02
+    1.21903556053000e+11    1.20588442252058e+08    3.12490952290281e-02
+    1.21929246165000e+11    1.20591578161263e+08    3.12490909122479e-02
+    1.21936815573000e+11    1.20592502134383e+08    3.12490945893542e-02
+    1.21970525653000e+11    1.20596617015158e+08    3.12490975992432e-02
+    1.22004080085000e+11    1.20600712896879e+08    3.12490944125961e-02
+    1.22608196053000e+11    1.20674455384848e+08    3.12490939305810e-02
+    1.22641755605000e+11    1.20678551891070e+08    3.12471897916535e-02
+    1.22776311104000e+11    1.20694975645815e+08    3.12491006967548e-02
+    1.22809865536000e+11    1.20699071527942e+08    3.12494597271036e-02
+    1.23346818384000e+11    1.20764616396687e+08    3.12490919569973e-02
+    1.23353371984000e+11    1.20765416373442e+08    3.12490965324755e-02
+    1.23380372816000e+11    1.20768712278151e+08    3.12471846865504e-02
+    1.23481044288000e+11    1.20781000169082e+08    3.12490948913364e-02
+    1.23514598720000e+11    1.20785096050447e+08    3.12490871298297e-02
+    1.24077684032000e+11    1.20853830042542e+08    3.12490921501844e-02
+    1.24085024064000e+11    1.20854726016512e+08    3.12490960966443e-02
+    1.24118578496000e+11    1.20858821898036e+08    3.12490935561982e-02
+    1.24152132928000e+11    1.20862917779226e+08    3.12490985913882e-02
+    1.24185687360000e+11    1.20867013661077e+08    3.12490966370914e-02
+    1.24756112704000e+11    1.20936643648182e+08    3.12490927246927e-02
+    1.24789667136000e+11    1.20940739529263e+08    3.12490988968648e-02
+    1.24823221568000e+11    1.20944835411154e+08    3.12491192826201e-02
+    1.24856776000000e+11    1.20948931295717e+08    3.12492613739010e-02
+    1.26198953280000e+11    1.21112767423189e+08    3.12530931906332e-02
+    1.26232021664000e+11    1.21116804490715e+08    3.12492233784951e-02
+    1.26265576096000e+11    1.21120900388922e+08    3.12492511875462e-02
+    1.26299130528000e+11    1.21124996290774e+08    3.12495366693099e-02
+    1.26869617749000e+11    1.21194634811602e+08    3.12492788143572e-02
+    1.26870666325000e+11    1.21194762808648e+08    3.12497655395418e-02
+    1.26870682709000e+11    1.21194764808633e+08    3.12493090234739e-02
+    1.26902869546000e+11    1.21198693779007e+08    3.12491423045913e-02
+    1.27003539541000e+11    1.21210982259474e+08    3.12491219686990e-02
+    1.27037093973000e+11    1.21215078144389e+08    3.12487902890604e-02
+    1.27579831616000e+11    1.21281327733405e+08    3.12493325594655e-02
+    1.27616531776000e+11    1.21285807637721e+08    3.12493320365403e-02
+    1.27708806464000e+11    1.21297071396955e+08    3.12493381703689e-02
+    1.27742360896000e+11    1.21301167310207e+08    3.12493371206673e-02
+    1.28287010112000e+11    1.21367651399908e+08    3.12493365604228e-02
+    1.28322661696000e+11    1.21372003307515e+08    3.12493863806763e-02
+    1.28412839232000e+11    1.21383011091363e+08    3.12493409478520e-02
+    1.28446393664000e+11    1.21387107004980e+08    3.12493354664673e-02
+    1.29051045184000e+11    1.21460915435405e+08    3.12493408944192e-02
+    1.29084599616000e+11    1.21465011349015e+08    3.12493381251215e-02
+    1.29118154048000e+11    1.21469107262262e+08    3.12493281001025e-02
+    1.29151708480000e+11    1.21473203174194e+08    3.12493304790538e-02
+    1.29725277504000e+11    1.21543217424130e+08    3.12493071514523e-02
+    1.29755686208000e+11    1.21546929341831e+08    3.12493116932160e-02
+    1.29822795072000e+11    1.21555121161395e+08    3.12492928187148e-02
+    1.31164609856000e+11    1.21718913204730e+08    3.12492765473767e-02
+    1.31208650048000e+11    1.21724289080273e+08    3.12492791177243e-02
+    1.31265273152000e+11    1.21731200920825e+08    3.12497369208103e-02
+    1.31802119669000e+11    1.21796733391228e+08    3.12491044230858e-02
+    1.31815751157000e+11    1.21798397343540e+08    3.12498281709850e-02
+    1.31815767541000e+11    1.21798399343529e+08    3.12491973326373e-02
+    1.31835371258000e+11    1.21800792313924e+08    3.12491025147210e-02
+    1.31868925690000e+11    1.21804888196289e+08    3.12491064417467e-02
+    1.31902752506000e+11    1.21809017328217e+08    3.12491032910591e-02
+    1.31969587450000e+11    1.21817175656610e+08    3.12491012788314e-02
+    1.32003141882000e+11    1.21821271538813e+08    3.12487293620076e-02
+    1.32507442496000e+11    1.21882829169297e+08    3.12493415438539e-02
+    1.32540476736000e+11    1.21886861584330e+08    3.12493265977309e-02
+    1.32574031168000e+11    1.21890957496066e+08    3.12522737037364e-02
+    1.32640719696000e+11    1.21899098777823e+08    3.12502870420773e-02
+    1.32674314664000e+11    1.21903199763734e+08    3.12426769949093e-02
+    1.32707970368000e+11    1.21907307163301e+08    3.12493358050309e-02
+    1.33211286848000e+11    1.21968745857441e+08    3.12512500276080e-02
+    1.33278226080000e+11    1.21976917477268e+08    3.12521863015006e-02
+    1.33311782312000e+11    1.21981013983573e+08    3.12493329125042e-02
+    1.33412445608000e+11    1.21993301721264e+08    3.12489571129903e-02
+    1.34017019200000e+11    1.22067099745670e+08    3.12493405726476e-02
+    1.34620998976000e+11    1.22140826189886e+08    3.12492126683992e-02
+    1.34654553408000e+11    1.22144922086689e+08    3.12493398842990e-02
+    1.34692302144000e+11    1.22149529989351e+08    3.12493947985179e-02
+    1.34755216704000e+11    1.22157209840616e+08    3.12493284444599e-02
+    1.34788771136000e+11    1.22161305752594e+08    3.12493415824520e-02
+    1.34822325568000e+11    1.22165401666294e+08    3.12494319918243e-02
+    1.36130568864000e+11    1.22325096431556e+08    3.12495286785248e-02
+    1.36762829898000e+11    1.22402275569503e+08    3.12499063089490e-02
+    1.36762870858000e+11    1.22402280569488e+08    3.12492400674974e-02
+    1.36767867978000e+11    1.22402890554654e+08    3.12492229458030e-02
+    1.36801422410000e+11    1.22406986452804e+08    3.12491597364140e-02
+    1.36868534346000e+11    1.22415178607524e+08    3.12491250759876e-02
+    1.36902088778000e+11    1.22419274492846e+08    3.12491226571865e-02
+    1.36935643210000e+11    1.22423370377851e+08    3.12490283583338e-02
+    1.37506083488000e+11    1.22493002035757e+08    3.12502855708309e-02
+    1.37606788264000e+11    1.22505295211570e+08    3.12493320844851e-02
+    1.37640342696000e+11    1.22509391124025e+08    3.12491739690821e-02
+    1.38211123872000e+11    1.22579064718819e+08    3.12493228579645e-02
+    1.38311787168000e+11    1.22591352452556e+08    3.12493353650325e-02
+    1.38345341600000e+11    1.22595448365441e+08    3.12493415617256e-02
+    1.38949096096000e+11    1.22669147312569e+08    3.12493370588527e-02
+    1.38982650528000e+11    1.22673243225676e+08    3.12493366203626e-02
+    1.39049759392000e+11    1.22681435051775e+08    3.12493344990954e-02
+    1.39620336288000e+11    1.22751084068496e+08    3.12493330001947e-02
+    1.39720999584000e+11    1.22763371806221e+08    3.12493352660113e-02
+    1.39754554016000e+11    1.22767467719093e+08    3.12455516664059e-02
+    1.39787863360000e+11    1.22771533222331e+08    3.12495358181042e-02
+    1.41063114250000e+11    1.22927201184691e+08    3.12492499848531e-02
+    1.41096668682000e+11    1.22931297086385e+08    3.12491732447029e-02
+    1.41163777546000e+11    1.22939488869656e+08    3.12490955170029e-02
+    1.41700665365000e+11    1.23005025036601e+08    3.12490824362612e-02
+    1.41717442581000e+11    1.23007072976467e+08    3.12499844003469e-02
+    1.41717458965000e+11    1.23007074976466e+08    3.12492096947249e-02
+    1.41733926922000e+11    1.23009085174285e+08    3.12491033301242e-02
+    1.41767754762000e+11    1.23013214430799e+08    3.12491020207517e-02
+    1.41801309194000e+11    1.23017310313099e+08    3.12491019325937e-02
+    1.41868139530000e+11    1.23025468078653e+08    3.12491021121559e-02
+    1.41901693962000e+11    1.23029563960965e+08    3.12490958718230e-02
+    1.42438859797000e+11    1.23095134065172e+08    3.12491229200289e-02
+    1.42505677322000e+11    1.23103290272406e+08    3.12490964513472e-02
+    1.42539231754000e+11    1.23107386153976e+08    3.12490935521055e-02
+    1.42572786186000e+11    1.23111482035166e+08    3.12492573202816e-02
+    1.43185449877000e+11    1.23186268305990e+08    3.12499844003469e-02
+    1.43185466261000e+11    1.23186270305989e+08    3.12493239544379e-02
+    1.44619898293000e+11    1.23361368084343e+08    3.12441784714800e-02
+    1.44720984704000e+11    1.23373705435383e+08    3.12495712653829e-02
+    1.45928532853000e+11    1.23521109192956e+08    3.12490995624676e-02
+    1.45961792373000e+11    1.23525169075971e+08    3.12491643592069e-02
+    1.45995352506000e+11    1.23529265662346e+08    3.12491085951690e-02
+    1.46062446522000e+11    1.23537455616221e+08    3.12491102380363e-02
+    1.46096000954000e+11    1.23541551499598e+08    3.12491076747392e-02
+    1.46129555386000e+11    1.23545647382640e+08    3.12492775812164e-02
+    1.46666732405000e+11    1.23611219233331e+08    3.12492590650209e-02
+    1.46700286837000e+11    1.23615315136215e+08    3.12492939947978e-02
+    1.47371366261000e+11    1.23697232160490e+08    3.12492890721142e-02
+    1.48076016501000e+11    1.23783247078633e+08    3.12493303798354e-02
+    1.48109543866000e+11    1.23787339686858e+08    3.12492942518603e-02
+    1.48780657301000e+11    1.23869260863447e+08    3.12493014404760e-02
+    1.49485294581000e+11    1.23955274233638e+08    3.12495886248080e-02
+    1.49492619770000e+11    1.23956168409977e+08    3.12501252628863e-02
+    1.49492627962000e+11    1.23956169409981e+08    3.12492291504183e-02
+    1.50961671962000e+11    1.24135491646653e+08    3.12490935842724e-02
+    1.51599223349000e+11    1.24213315486329e+08    3.12491283382935e-02
+    1.51604990517000e+11    1.24214019466693e+08    3.12501564621925e-02
+    1.51605006901000e+11    1.24214021466703e+08    3.12491657446313e-02
+    1.51632501018000e+11    1.24217377592559e+08    3.12491084639374e-02
+    1.51733145370000e+11    1.24229662929558e+08    3.12491093919789e-02
+    1.51766699802000e+11    1.24233758812825e+08    3.12492724753948e-02
+    1.52303877685000e+11    1.24299330758268e+08    3.12492808652356e-02
+    1.52370683162000e+11    1.24307485536058e+08    3.12492928752695e-02
+    1.53008518709000e+11    1.24385344558771e+08    3.12492603716872e-02
+    1.53075618357000e+11    1.24393535239908e+08    3.12492490185928e-02
+    1.53713152565000e+11    1.24471357369688e+08    3.12491892900291e-02
+    1.53780268597000e+11    1.24479550032143e+08    3.12492956074991e-02
+    1.54417791669000e+11    1.24557370918602e+08    3.12492915145319e-02
+    1.55827092149000e+11    1.24729400768333e+08    3.12491075985725e-02
+    1.55860637365000e+11    1.24733495526396e+08    3.12491007114648e-02
+    1.56531733173000e+11    1.24815414043940e+08    3.12490909625039e-02
+    1.56551646901000e+11    1.24817844848227e+08    3.12502343440428e-02
+    1.56551679669000e+11    1.24817848848257e+08    3.12492514122834e-02
+    1.56564985690000e+11    1.24819473079490e+08    3.12491066152916e-02
+    1.56598540122000e+11    1.24823568962392e+08    3.12491110008232e-02
+    1.56632369498000e+11    1.24827698407415e+08    3.12492502651633e-02
+    1.57269923509000e+11    1.24905522957599e+08    3.12492408165213e-02
+    1.57337032373000e+11    1.24913714758584e+08    3.12417787808674e-02
+    1.57371157824000e+11    1.24917879367142e+08    3.12491507359027e-02
+    1.57404712256000e+11    1.24921975255828e+08    3.12497656250495e-02
+    1.57974563125000e+11    1.24991536607771e+08    3.12492462868477e-02
+    1.58041671989000e+11    1.24999728410189e+08    3.12416318008345e-02
+    1.58075604288000e+11    1.25003869427344e+08    3.12491564659467e-02
+    1.58109158720000e+11    1.25007965316780e+08    3.12491687187730e-02
+    1.58142713152000e+11    1.25012061207822e+08    3.12497611436118e-02
+    1.58746322741000e+11    1.25085743455792e+08    3.12492666536741e-02
+    1.58813431605000e+11    1.25093935263550e+08    3.12492973871380e-02
+    1.59383856821000e+11    1.25163565682346e+08    3.12492568078255e-02
+    1.59450965685000e+11    1.25171757487523e+08    3.12415240304818e-02
+    1.59484439872000e+11    1.25175842583685e+08    3.12491523002336e-02
+    1.59517994304000e+11    1.25179938472576e+08    3.12491644468764e-02
+    1.59551548736000e+11    1.25184034363058e+08    3.12492233452986e-02
+    1.59585103168000e+11    1.25188130261260e+08    3.12495464666788e-02
+    1.60884369205000e+11    1.25346729770619e+08    3.12502968590707e-02
+    1.60884385589000e+11    1.25346731770638e+08    3.12469383323636e-02
+    1.60995159360000e+11    1.25360252634666e+08    3.12491572291265e-02
+    1.61028713792000e+11    1.25364348524203e+08    3.12496365479559e-02
+    1.61514038197000e+11    1.25423591536953e+08    3.12503282912076e-02
+    1.61514054581000e+11    1.25423593536974e+08    3.12492176590679e-02
+    1.61531036122000e+11    1.25425666427095e+08    3.12491130731202e-02
+    1.61564598746000e+11    1.25429763310815e+08    3.12491170827783e-02
+    1.61631703514000e+11    1.25437954579378e+08    3.12491135687428e-02
+    1.62302790618000e+11    1.25519872068157e+08    3.12491217006558e-02
+    1.62336361434000e+11    1.25523969952980e+08    3.12491172780640e-02
+    1.62369899482000e+11    1.25528063837336e+08    3.12491228968383e-02
+    1.62403453914000e+11    1.25532159722373e+08    3.12491194348747e-02
+    1.63007728565000e+11    1.25605921639328e+08    3.12491174485306e-02
+    1.63074844597000e+11    1.25614114282948e+08    3.12491130091530e-02
+    1.63108399029000e+11    1.25618210166688e+08    3.12491149856230e-02
+    1.63712383925000e+11    1.25691936703660e+08    3.12491446131421e-02
+    1.63779186138000e+11    1.25700091047466e+08    3.12491184873807e-02
+    1.63812740570000e+11    1.25704186931925e+08    3.12491171978309e-02
+    1.63846295002000e+11    1.25708282816214e+08    3.12491074455421e-02
+    1.64417024949000e+11    1.25777950009324e+08    3.12491737096545e-02
+    1.64450277850000e+11    1.25782009094010e+08    3.12491113995748e-02
+    1.64483832282000e+11    1.25786104977540e+08    3.12491033209755e-02
+    1.65826300853000e+11    1.25949975833322e+08    3.12491025343888e-02
+    1.65859855285000e+11    1.25954071715690e+08    3.12491055392485e-02
+    1.65926974389000e+11    1.25962264731177e+08    3.12491611122498e-02
+    1.65960226266000e+11    1.25966323689230e+08    3.12490442014402e-02
+    1.65994071989000e+11    1.25970455120847e+08    3.12491112087827e-02
+    1.66530647514000e+11    1.26035953199959e+08    3.12491139019926e-02
+    1.66597756378000e+11    1.26044144967674e+08    3.12491009173548e-02
+    1.69382777818000e+11    1.26384103624063e+08    3.12491020306425e-02
+    1.69416332250000e+11    1.26388199506364e+08    3.12491140014117e-02
+    1.69449886682000e+11    1.26392295390235e+08    3.12491052650944e-02
+    1.71443325402000e+11    1.26635628110550e+08    3.12504684552550e-02
+    1.71443333594000e+11    1.26635629110565e+08    3.12491109465152e-02
+    1.71530264538000e+11    1.26646240496166e+08    3.12491126049963e-02
+    1.71563818970000e+11    1.26650336379853e+08    3.12491098815144e-02
+    1.71597373402000e+11    1.26654432263183e+08    3.12491164197581e-02
+    1.71630927834000e+11    1.26658528147371e+08    3.12491173281690e-02
+    1.72134244314000e+11    1.26719966411967e+08    3.12491171315130e-02
+    1.72168075738000e+11    1.26724096107793e+08    3.12491085005983e-02
+    1.72234906074000e+11    1.26732253875061e+08    3.12491093242215e-02
+    1.72268460506000e+11    1.26736349758319e+08    3.12491136733981e-02
+    1.72302291930000e+11    1.26740479453687e+08    3.12491017307789e-02
+    1.72335567834000e+11    1.26744541336927e+08    3.12491114241943e-02
+    1.73543527386000e+11    1.26891993144100e+08    3.12491136097710e-02
+    1.73577080282000e+11    1.26896088840424e+08    3.12491109723396e-02
+    1.73644189146000e+11    1.26904280607371e+08    3.12491099423369e-02
+    1.73677743578000e+11    1.26908376490709e+08    3.12491068590928e-02
+    1.73711295962000e+11    1.26912472123651e+08    3.12491053723534e-02
+    1.73744850394000e+11    1.26916568006390e+08    3.12491138265435e-02
+    1.75657452506000e+11    1.27150033323198e+08    3.12491123698417e-02
+    1.75725105114000e+11    1.27158291463626e+08    3.12491094245463e-02
+    1.75758394842000e+11    1.27162355035317e+08    3.12491144475142e-02
+    1.75858779610000e+11    1.27174608688067e+08    3.12491180787458e-02
+    1.76377963482000e+11    1.27237983836976e+08    3.12505625188351e-02
+    1.76377979866000e+11    1.27237985837012e+08    3.12491218517563e-02
+    1.76395650010000e+11    1.27240142776399e+08    3.12491158977298e-02
+    1.76429220826000e+11    1.27244240660461e+08    3.12491206030969e-02
+    1.76529869274000e+11    1.27256526502219e+08    3.12491268031181e-02
+    1.76563423706000e+11    1.27260622387768e+08    3.12491302543535e-02
+    1.77100574682000e+11    1.27326190750327e+08    3.12491302850187e-02
+    1.77167405018000e+11    1.27334348523283e+08    3.12491278788229e-02
+    1.77200959450000e+11    1.27338444408972e+08    3.12493264920962e-02
+    1.77848750042000e+11    1.27417518704706e+08    3.12505625188351e-02
+    1.77848766426000e+11    1.27417520704742e+08    3.12492175430142e-02
+    1.77872330202000e+11    1.27420397070220e+08    3.12493420369394e-02
+    1.78509659098000e+11    1.27498194369678e+08    3.12492625591984e-02
+    1.78576694234000e+11    1.27506377176574e+08    3.12493391896672e-02
+    1.79214506458000e+11    1.27584233467696e+08    3.12492800493055e-02
+    1.79266935258000e+11    1.27590633320250e+08    3.12505937181413e-02
+    1.79266943450000e+11    1.27590634320269e+08    3.12492176957973e-02
+    1.79281615322000e+11    1.27592425275434e+08    3.12492095742525e-02
+    1.80623792090000e+11    1.27756261068828e+08    3.12491238118493e-02
+    1.80791285722000e+11    1.27776706495562e+08    3.12491267951600e-02
+    1.80824840154000e+11    1.27780802381110e+08    3.12491200767458e-02
+    1.81337790426000e+11    1.27843416617997e+08    3.12506251502782e-02
+    1.81337806810000e+11    1.27843418618037e+08    3.12491221634084e-02
+    1.81361727450000e+11    1.27846338536012e+08    3.12491227187259e-02
+    1.81428818906000e+11    1.27854528181098e+08    3.12491257271859e-02
+    1.81462373338000e+11    1.27858624066505e+08    3.12491228279441e-02
+    1.81495927770000e+11    1.27862719951532e+08    3.12493237192548e-02
+    1.82033076698000e+11    1.27928288470034e+08    3.12493420509554e-02
+    1.82066631130000e+11    1.27932384383796e+08    3.12492718912836e-02
+    1.82100185562000e+11    1.27936480288361e+08    3.12493372620114e-02
+    1.82737719258000e+11    1.28014302575401e+08    3.12493053456597e-02
+    1.82803075034000e+11    1.28022280398058e+08    3.12506249174476e-02
+    1.82803099610000e+11    1.28022283398118e+08    3.12493323954834e-02
+    1.83457566170000e+11    1.28102172628881e+08    3.12506561167538e-02
+    1.83457574362000e+11    1.28102173628902e+08    3.12492931532161e-02
+    1.83509470682000e+11    1.28108508485610e+08    3.12493289018620e-02
+    1.84162208730000e+11    1.28188186711972e+08    3.12506561167538e-02
+    1.84162216922000e+11    1.28188187711993e+08    3.12492639545110e-02
+    1.85556290010000e+11    1.28358358641285e+08    3.12491197158546e-02
+    1.85623120346000e+11    1.28366516411481e+08    3.12491195239772e-02
+    1.85656674778000e+11    1.28370612296076e+08    3.12491237281165e-02
+    1.85690229210000e+11    1.28374708181221e+08    3.12491204167600e-02
+    1.85723783642000e+11    1.28378804065932e+08    3.12491270653013e-02
+    1.86260654554000e+11    1.28444338235256e+08    3.12491206190565e-02
+    1.86275989978000e+11    1.28446210182577e+08    3.12488492961754e-02
+    1.86276129242000e+11    1.28446227181951e+08    3.12491429496622e-02
+    1.86294208986000e+11    1.28448434121423e+08    3.12491248801305e-02
+    1.86327796186000e+11    1.28452534006607e+08    3.12491314609246e-02
+    1.86428707290000e+11    1.28464851914243e+08    3.12482199526394e-02
+    1.86462076328000e+11    1.28468925051114e+08    3.12495360510100e-02
+    1.86502254292000e+11    1.28473829514921e+08    3.12490989987147e-02
+    1.86998873512000e+11    1.28534450230430e+08    3.12496066784618e-02
+    1.87032846036000e+11    1.28538597214855e+08    3.12487209267793e-02
+    1.87065990568000e+11    1.28542643012632e+08    3.12492484911218e-02
+    1.87099545000000e+11    1.28546738914130e+08    3.12493915507531e-02
+    1.88441722280000e+11    1.28710575724104e+08    3.12494070147977e-02
+    1.88475276712000e+11    1.28714671646380e+08    3.12494037647184e-02
+    1.88508831144000e+11    1.28718767568230e+08    3.12494079300905e-02
+    1.88542385576000e+11    1.28722863490626e+08    3.12494129199195e-02
+    1.88575940008000e+11    1.28726959413676e+08    3.12493987439098e-02
+    1.89112810920000e+11    1.28792494152751e+08    3.12494010865976e-02
+    1.89179919784000e+11    1.28800685995749e+08    3.12493969132674e-02
+    1.89213474216000e+11    1.28804781916702e+08    3.12493934343365e-02
+    1.89247028648000e+11    1.28808877837198e+08    3.12498127757536e-02
+    1.89284928340000e+11    1.28813504236726e+08    3.12493871088831e-02
+    1.90522144424000e+11    1.28964528628704e+08    3.12494046035681e-02
+    1.90689916584000e+11    1.28985008238505e+08    3.12494047788050e-02
+    1.90723471016000e+11    1.28989104160488e+08    3.12494589101339e-02
+    1.91226709354000e+11    1.29050533558009e+08    3.12493164069968e-02
+    1.91230125418000e+11    1.29050950548887e+08    3.12507404014468e-02
+    1.91230231914000e+11    1.29050963549195e+08    3.12492709588859e-02
+    1.91260280170000e+11    1.29054631463623e+08    3.12492008386470e-02
+    1.91360930154000e+11    1.29066917524422e+08    3.12490964478305e-02
+    1.91394791125000e+11    1.29071050824221e+08    3.12491918434668e-02
+    1.91428042602000e+11    1.29075109737439e+08    3.12493386683006e-02
+    1.91931652821000e+11    1.29136584293261e+08    3.12494340873677e-02
+    1.91998467434000e+11    1.29144740226249e+08    3.12494039701505e-02
+    1.92032021866000e+11    1.29148836148126e+08    3.12494080669694e-02
+    1.92065576298000e+11    1.29152932070540e+08    3.12494125913645e-02
+    1.92099130730000e+11    1.29157027993547e+08    3.12494032376662e-02
+    1.92132685162000e+11    1.29161123915329e+08    3.12494069319829e-02
+    1.92703109994000e+11    1.29230754531341e+08    3.12494038556679e-02
+    1.92736664426000e+11    1.29234850453204e+08    3.12494079754515e-02
+    1.92770218858000e+11    1.29238946375606e+08    3.12494124310660e-02
+    1.92803773290000e+11    1.29243042298592e+08    3.12494105845644e-02
+    1.92837327722000e+11    1.29247138221336e+08    3.12494030204662e-02
+    1.93340945109000e+11    1.29308613778736e+08    3.12494324323631e-02
+    1.93407752554000e+11    1.29316768836309e+08    3.12494104930465e-02
+    1.93441306986000e+11    1.29320864759041e+08    3.12494069986542e-02
+    1.93474861418000e+11    1.29324960681315e+08    3.12494113857156e-02
+    1.93508415850000e+11    1.29329056604164e+08    3.12494094021076e-02
+    1.93541970282000e+11    1.29333152526753e+08    3.12494065454922e-02
+    1.94045578965000e+11    1.29394627028608e+08    3.12494084444097e-02
+    1.94112687829000e+11    1.29402818873536e+08    3.12492846751411e-02
+    1.94113736405000e+11    1.29402946870606e+08    3.12507501803339e-02
+    1.94113752789000e+11    1.29402948870654e+08    3.12494713477543e-02
+    1.94145945450000e+11    1.29406878572363e+08    3.12494133312384e-02
+    1.94179499882000e+11    1.29410974495467e+08    3.12494176645259e-02
+    1.94213054314000e+11    1.29415070419139e+08    3.12494155510876e-02
+    1.94246608746000e+11    1.29419166342534e+08    3.12491808761333e-02
+    1.95555235178000e+11    1.29578906592819e+08    3.12491193321875e-02
+    1.95588789610000e+11    1.29583002477388e+08    3.12491311805161e-02
+    1.95622344042000e+11    1.29587098363510e+08    3.12491288002548e-02
+    1.95655898474000e+11    1.29591194249320e+08    3.12491302448064e-02
+    1.96191909226000e+11    1.29656623428234e+08    3.12476499471813e-02
+    1.96191991146000e+11    1.29656633427482e+08    3.12491306068219e-02
+    1.96226332010000e+11    1.29660825310858e+08    3.12491332578454e-02
+    1.96260156778000e+11    1.29664954196337e+08    3.12491319359651e-02
+    1.96293711210000e+11    1.29669050082558e+08    3.12491320909831e-02
+    1.96360541546000e+11    1.29677207855985e+08    3.12491256518134e-02
+    1.96897457877000e+11    1.29742747566500e+08    3.12491244077139e-02
+    1.96964812501000e+11    1.29750969336129e+08    3.12491214526744e-02
+    1.96998366933000e+11    1.29755065220976e+08    3.12491256032672e-02
+    1.97031921365000e+11    1.29759161106367e+08    3.12491611564383e-02
+    1.97065475797000e+11    1.29763256996418e+08    3.12493680669948e-02
+    1.97602304725000e+11    1.29828786546262e+08    3.12494098374820e-02
+    1.97669462741000e+11    1.29836984391441e+08    3.12494082265857e-02
+    1.97703017173000e+11    1.29841080313876e+08    3.12494047168457e-02
+    1.97736571605000e+11    1.29845176235851e+08    3.12494096530145e-02
+    1.97770126037000e+11    1.29849272158473e+08    3.12494010777300e-02
+    1.97803680469000e+11    1.29853368079971e+08    3.12494055313077e-02
+    1.98304382677000e+11    1.29914487792269e+08    3.12498120183591e-02
+    1.98304906965000e+11    1.29914551791884e+08    3.12493234960129e-02
+    1.98307004117000e+11    1.29914807786342e+08    3.12494668739697e-02
+    1.98340251498000e+11    1.29918866235292e+08    3.12494185070022e-02
+    1.98407360362000e+11    1.29927058082857e+08    3.12494272234858e-02
+    1.98474469226000e+11    1.29935249932707e+08    3.12494209064198e-02
+    1.98508023658000e+11    1.29939345856804e+08    3.12494130506890e-02
+    1.99011646165000e+11    1.30000822058925e+08    3.12494099275114e-02
+    1.99078755029000e+11    1.30009013904241e+08    3.12494019549376e-02
+    1.99112309461000e+11    1.30013109825854e+08    3.12494060441395e-02
+    1.99145863893000e+11    1.30017205748003e+08    3.12494031908273e-02
+    1.99179418325000e+11    1.30021301669778e+08    3.12494119096344e-02
+    2.00420923093000e+11    1.30172849692758e+08    3.12494382747640e-02
+    2.00428263125000e+11    1.30173745676653e+08    3.12493325182004e-02
+    2.00428787413000e+11    1.30173809675286e+08    3.12494192421211e-02
+    2.00454477525000e+11    1.30176945617005e+08    3.12494204251834e-02
+    2.00488031957000e+11    1.30181041541039e+08    3.12493926772959e-02
+    2.00555140821000e+11    1.30189233381833e+08    3.12493039397168e-02
+    2.00588695253000e+11    1.30193329290599e+08    3.12492489701981e-02
+    2.00622249685000e+11    1.30197425192160e+08    3.12491390332139e-02
+    2.01125272426000e+11    1.30258827643607e+08    3.12491493192932e-02
+    2.01134570346000e+11    1.30259962612710e+08    3.12507967464626e-02
+    2.01134586730000e+11    1.30259964612761e+08    3.12491215297459e-02
+    2.01158876010000e+11    1.30262929529412e+08    3.12491499142692e-02
+    2.01225931701000e+11    1.30271114815899e+08    3.12491181813810e-02
+    2.01293043562000e+11    1.30279306950570e+08    3.12491299970361e-02
+    2.01326597994000e+11    1.30283402836537e+08    3.12493514973220e-02
+    2.01897301354000e+11    1.30353067328324e+08    3.12494122503937e-02
+    2.01930577258000e+11    1.30357129251925e+08    3.12494124905243e-02
+    2.01964131690000e+11    1.30361225174919e+08    3.12494016876599e-02
+    2.01997686122000e+11    1.30365321096497e+08    3.12493464274439e-02
+    2.02031240554000e+11    1.30369417010832e+08    3.12493833447960e-02
+    2.02607711082000e+11    1.30439785559725e+08    3.12493237361195e-02
+    2.02608235370000e+11    1.30439849558340e+08    3.12494179451613e-02
+    2.02635219818000e+11    1.30443143496987e+08    3.12494242158075e-02
+    2.02669051626000e+11    1.30447273280268e+08    3.12494165867024e-02
+    2.02735879146000e+11    1.30455430784221e+08    3.12494184755014e-02
+    2.03327037930000e+11    1.30527592378857e+08    3.12507813796401e-02
+    2.03327046122000e+11    1.30527593378882e+08    3.12493868282261e-02
+    2.03339866602000e+11    1.30529158348174e+08    3.12493806757175e-02
+    2.03373421034000e+11    1.30533254266998e+08    3.12493850321971e-02
+    2.03406975466000e+11    1.30537350186393e+08    3.12493676979102e-02
+    2.03440529898000e+11    1.30541446103516e+08    3.12493058104760e-02
+    2.04044787690000e+11    1.30615206402464e+08    3.12493191114457e-02
+    2.04078133237000e+11    1.30619276815116e+08    3.12492563963820e-02
+    2.04111618026000e+11    1.30623364216510e+08    3.12492862235558e-02
+    2.04145172458000e+11    1.30627460122954e+08    3.12492484842595e-02
+    2.05386964458000e+11    1.30779042415039e+08    3.12491345178949e-02
+    2.05520899829000e+11    1.30795391494825e+08    3.12491029287042e-02
+    2.05554458090000e+11    1.30799487844638e+08    3.12491291417700e-02
+    2.05588012522000e+11    1.30803583730493e+08    3.12491291109337e-02
+    2.06088814325000e+11    1.30864715059402e+08    3.12383122742176e-02
+    2.06088834805000e+11    1.30864717558467e+08    3.12491659179183e-02
+    2.06091325173000e+11    1.30865021550353e+08    3.12491283161596e-02
+    2.06124895989000e+11    1.30869119436044e+08    3.12491285494173e-02
+    2.06158441717000e+11    1.30873214259351e+08    3.12465787342035e-02
+    2.06260008256000e+11    1.30885611161139e+08    3.12491377782180e-02
+    2.06293562688000e+11    1.30889707048126e+08    3.12493630550875e-02
+    2.06903074112000e+11    1.30964108781621e+08    3.12494074008782e-02
+    2.06936628544000e+11    1.30968204703948e+08    3.12494050280065e-02
+    2.06970182976000e+11    1.30972300625964e+08    3.12493464849160e-02
+    2.07590970688000e+11    1.31048078791221e+08    3.12493200726749e-02
+    2.07592019264000e+11    1.31048206788436e+08    3.12493336001353e-02
+    2.07607747904000e+11    1.31050126747492e+08    3.12493321365537e-02
+    2.07641302336000e+11    1.31054222659954e+08    3.12493373019151e-02
+    2.07674856768000e+11    1.31058318573093e+08    3.12493338341824e-02
+    2.07741965632000e+11    1.31066510398462e+08    3.12493321636203e-02
+    2.08255769920000e+11    1.31129229308082e+08    3.12494231936548e-02
+    2.08297096512000e+11    1.31134273964967e+08    3.12492917809221e-02
+    2.08306533696000e+11    1.31135425938859e+08    3.12492265075548e-02
+    2.08373642560000e+11    1.31143617736093e+08    3.12493307707200e-02
+    2.08407196992000e+11    1.31147713648375e+08    3.12493944032752e-02
+    2.08944067904000e+11    1.31213248378347e+08    3.12493592704186e-02
+    2.09011176768000e+11    1.31221440210384e+08    3.12493732434405e-02
+    2.09044731200000e+11    1.31225536128233e+08    3.12493800261452e-02
+    2.09078334784000e+11    1.31229638046853e+08    3.12493766922444e-02
+    2.09111889216000e+11    1.31233733965155e+08    3.12495249865431e-02
+    2.10386290986000e+11    1.31389298222790e+08    3.12491554315102e-02
+    2.10419845418000e+11    1.31393394112091e+08    3.12491518992601e-02
+    2.10453399850000e+11    1.31397490000928e+08    3.12491794158657e-02
+    2.10554070165000e+11    1.31409778535050e+08    3.12491297139414e-02
+    2.11048629397000e+11    1.31470147853769e+08    3.12491069815544e-02
+    2.11057378453000e+11    1.31471215823249e+08    3.12491272102307e-02
+    2.11090932885000e+11    1.31475311708851e+08    3.12491301140948e-02
+    2.11158314901000e+11    1.31483536823638e+08    3.12491236163231e-02
+    2.11762028330000e+11    1.31557230243839e+08    3.12491370535438e-02
+    2.11862761365000e+11    1.31569526417341e+08    3.12491286132045e-02
+    2.11896250261000e+11    1.31573614303350e+08    3.12491178781032e-02
+    2.11929870229000e+11    1.31577718187503e+08    3.12491200174453e-02
+    2.12466671402000e+11    1.31643243829224e+08    3.12491246847912e-02
+    2.12500225834000e+11    1.31647339714495e+08    3.12491295064774e-02
+    2.12533780266000e+11    1.31651435600397e+08    3.12491260046954e-02
+    2.12567334698000e+11    1.31655531485841e+08    3.12472632645403e-02
+    2.12634856096000e+11    1.31663773122166e+08    3.12491360293734e-02
+    2.12668410528000e+11    1.31667869008924e+08    3.12490556611962e-02
+    2.13272335680000e+11    1.31741588113182e+08    3.12492963536215e-02
+    2.13305890112000e+11    1.31745684020954e+08    3.12492942632616e-02
+    2.13339444544000e+11    1.31749779928451e+08    3.12493018008126e-02
+    2.13372998976000e+11    1.31753875836937e+08    3.12492900958659e-02
+    2.13876315456000e+11    1.31815314441209e+08    3.12492958482300e-02
+    2.13983270208000e+11    1.31828370147020e+08    3.12492922870433e-02
+    2.14016824640000e+11    1.31832466054258e+08    3.12492903796056e-02
+    2.14050379072000e+11    1.31836561961247e+08    3.12494149335426e-02
+    2.15251681642000e+11    1.31983202595898e+08    3.12491325903743e-02
+    2.15285260650000e+11    1.31987301482121e+08    3.12491326713779e-02
+    2.15385899370000e+11    1.31999586141157e+08    3.12491291473407e-02
+    2.15419453802000e+11    1.32003682027013e+08    3.12491375808876e-02
+    2.15942328501000e+11    1.32067507743445e+08    3.12491356404971e-02
+    2.15956361397000e+11    1.32069220696064e+08    3.12491373653681e-02
+    2.16090546101000e+11    1.32085600212657e+08    3.12491415066916e-02
+    2.16124100533000e+11    1.32089696100132e+08    3.12491330083239e-02
+    2.16660970165000e+11    1.32155230125673e+08    3.12491322521851e-02
+    2.16728079029000e+11    1.32163421898198e+08    3.12486689561032e-02
+    2.16795238056000e+11    1.32171619672425e+08    3.12491383251654e-02
+    2.16828792488000e+11    1.32175715559484e+08    3.12490840131361e-02
+    2.17366117024000e+11    1.32241305010921e+08    3.12493095114235e-02
+    2.17500334752000e+11    1.32257688648906e+08    3.12492948190766e-02
+    2.17533889184000e+11    1.32261784556476e+08    3.12492928802115e-02
+    2.18070760096000e+11    1.32327319073538e+08    3.12502298126867e-02
+    2.18139061584000e+11    1.32335656718837e+08    3.12492973673670e-02
+    2.18172616016000e+11    1.32339752626742e+08    3.12502948284400e-02
+    2.18204481192000e+11    1.32343642455433e+08    3.12492988090298e-02
+    2.18238035624000e+11    1.32347738363526e+08    3.12492884180529e-02
+    2.18271590056000e+11    1.32351834270258e+08    3.12490979265484e-02
+    2.18775009952000e+11    1.32413285120368e+08    3.12507583366695e-02
+    2.18842025640000e+11    1.32421465944862e+08    3.12492938422793e-02
+    2.18875580072000e+11    1.32425561852304e+08    3.12492983055108e-02
+    2.18909134504000e+11    1.32429657760332e+08    3.12492948262388e-02
+    2.18942688936000e+11    1.32433753667903e+08    3.12492996023366e-02
+    2.18976243368000e+11    1.32437849576101e+08    3.12492223186168e-02
+    2.20184189674000e+11    1.32585300289637e+08    3.12491380763618e-02
+    2.20251298538000e+11    1.32593492063689e+08    3.12491328386386e-02
+    2.20284852970000e+11    1.32597587950028e+08    3.12491298024042e-02
+    2.20318407402000e+11    1.32601683835969e+08    3.12491263307493e-02
+    2.20351961834000e+11    1.32605779721456e+08    3.12491310075984e-02
+    2.20385516266000e+11    1.32609875607555e+08    3.12491299585969e-02
+    2.20888829301000e+11    1.32671313476464e+08    3.12491259446092e-02
+    2.20895079797000e+11    1.32672076455123e+08    3.12507655471563e-02
+    2.20895096181000e+11    1.32672078455172e+08    3.12491305990633e-02
+    2.20922408309000e+11    1.32675412362417e+08    3.12491228161667e-02
+    2.20956207989000e+11    1.32679538184103e+08    3.12491320881093e-02
+    2.21023054709000e+11    1.32687697957473e+08    3.12491296569988e-02
+    2.21056609141000e+11    1.32691793843396e+08    3.12490975011089e-02
+    2.21090158314000e+11    1.32695889083154e+08    3.12491275716790e-02
+    2.21593474794000e+11    1.32757327367890e+08    3.12491287376702e-02
+    2.21660583658000e+11    1.32765519139494e+08    3.12491239271822e-02
+    2.21694138090000e+11    1.32769615024666e+08    3.12491286726981e-02
+    2.21727692522000e+11    1.32773710910459e+08    3.12491252167320e-02
+    2.21761246954000e+11    1.32777806795799e+08    3.12491297867155e-02
+    2.21794801386000e+11    1.32781902681739e+08    3.12491241431943e-02
+    2.22331672298000e+11    1.32847436844934e+08    3.12491275205957e-02
+    2.22398781162000e+11    1.32855628616219e+08    3.12491240645159e-02
+    2.22432335594000e+11    1.32859724501408e+08    3.12491229534156e-02
+    2.22465939178000e+11    1.32863826386283e+08    3.12491206824871e-02
+    2.22566553322000e+11    1.32876108040691e+08    3.12490689553829e-02
+    2.23036366504000e+11    1.32933456573974e+08    3.12491917827629e-02
+    2.23069920936000e+11    1.32937552468039e+08    3.12491564652412e-02
+    2.23178317480000e+11    1.32950784110866e+08    3.12487480696291e-02
+    2.23178448552000e+11    1.32950800110225e+08    3.12491438162397e-02
+    2.23204138664000e+11    1.32953936024305e+08    3.12491335857885e-02
+    2.23237693096000e+11    1.32958031910743e+08    3.12491336545691e-02
+    2.23271247528000e+11    1.32962127797189e+08    3.12491287637613e-02
+    2.23304801960000e+11    1.32966223682994e+08    3.12492052544977e-02
+    2.23723591146000e+11    1.33017344109681e+08    3.12507501803339e-02
+    2.23723599338000e+11    1.33017345109705e+08    3.12491330399902e-02
+    2.23740958186000e+11    1.33019464050918e+08    3.12482393802763e-02
+    2.23774580392000e+11    1.33023568092877e+08    3.12491322047208e-02
+    2.23808134824000e+11    1.33027663979133e+08    3.12491524300640e-02
+    2.23841689256000e+11    1.33031759868041e+08    3.12491719311083e-02
+    2.23875243688000e+11    1.33035855759504e+08    3.12492068886741e-02
+    2.23908798120000e+11    1.33039951655549e+08    3.12492277323599e-02
+    2.23942352552000e+11    1.33044047554327e+08    3.12492429225131e-02
+    2.23975906984000e+11    1.33048143455095e+08    3.12493261253651e-02
+    2.25151933776000e+11    1.33191698317421e+08    3.12513468182387e-02
+    2.25183801322000e+11    1.33195588566375e+08    3.12493201391817e-02
+    2.25217355754000e+11    1.33199684477264e+08    3.12491391474578e-02
+    2.25847484394000e+11    1.33276602358327e+08    3.12507187481970e-02
+    2.25847500778000e+11    1.33276604358373e+08    3.12492485569201e-02
+    2.25854894069000e+11    1.33277506838015e+08    3.12491244221746e-02
+    2.25922002933000e+11    1.33285698608487e+08    3.12491289931276e-02
+    2.25955549173000e+11    1.33289793494350e+08    3.12491260779098e-02
+    2.25989103605000e+11    1.33293889379804e+08    3.12491228197587e-02
+    2.26022658037000e+11    1.33297985264830e+08    3.12491205312426e-02
+    2.26056212469000e+11    1.33302081149556e+08    3.12491194486176e-02
+    2.26559533034000e+11    1.33363519916965e+08    3.12491227510918e-02
+    2.26626641898000e+11    1.33371711686999e+08    3.12491250990945e-02
+    2.26760859626000e+11    1.33388095228299e+08    3.12491332588168e-02
+    2.27264282280000e+11    1.33449546484551e+08    3.12492735764636e-02
+    2.27331391144000e+11    1.33457738294123e+08    3.12492712114363e-02
+    2.27364945576000e+11    1.33461834198599e+08    3.12492756364691e-02
+    2.27398500008000e+11    1.33465930103655e+08    3.12492799621396e-02
+    2.27432054440000e+11    1.33470026009279e+08    3.12492775362898e-02
+    2.27465608872000e+11    1.33474121914584e+08    3.12493331041636e-02
+    2.27968815594000e+11    1.33535547205506e+08    3.12492846466620e-02
+    2.27972059626000e+11    1.33535943196441e+08    3.12350776512176e-02
+    2.27972076010000e+11    1.33535945195486e+08    3.12492001196982e-02
+    2.28002417130000e+11    1.33539648850684e+08    3.12491476026772e-02
+    2.28103033322000e+11    1.33551930765665e+08    3.12491295028394e-02
+    2.28136587754000e+11    1.33556026651567e+08    3.12491346145407e-02
+    2.28170142186000e+11    1.33560122538139e+08    3.12491279709231e-02
+    2.28673456373000e+11    1.33621560543761e+08    3.12491208280221e-02
+    2.28740565237000e+11    1.33629752313291e+08    3.12491226209204e-02
+    2.28774119669000e+11    1.33633848198291e+08    3.12491271376985e-02
+    2.28807674101000e+11    1.33637944083883e+08    3.12491161893149e-02
+    2.28841228533000e+11    1.33642039968041e+08    3.12491212474697e-02
+    2.28874782965000e+11    1.33646135852861e+08    3.12491200461560e-02
+    2.29378099445000e+11    1.33707574122801e+08    3.12491224376572e-02
+    2.29445208309000e+11    1.33715765892753e+08    3.12491167842381e-02
+    2.29478762741000e+11    1.33719861776989e+08    3.12491213391013e-02
+    2.29512317173000e+11    1.33723957661821e+08    3.12491256418070e-02
+    2.29545871605000e+11    1.33728053547217e+08    3.12491153804331e-02
+    2.29579426037000e+11    1.33732149431268e+08    3.12491186484638e-02
+    2.30149855477000e+11    1.33801779967405e+08    3.12491184320152e-02
+    2.30183409909000e+11    1.33805875851856e+08    3.12491154185182e-02
+    2.30216964341000e+11    1.33809971735912e+08    3.12491197212239e-02
+    2.30250518773000e+11    1.33814067620533e+08    3.12491170204794e-02
+    2.30284073205000e+11    1.33818163504799e+08    3.12491234826666e-02
+    2.30317627637000e+11    1.33822259389912e+08    3.12491169289615e-02
+    2.30351182069000e+11    1.33826355274166e+08    3.12491173789978e-02
+    2.30787385589000e+11    1.33879601270250e+08    3.12491141010530e-02
+    2.30820948213000e+11    1.33883698154105e+08    3.12491170776070e-02
+    2.30888057077000e+11    1.33891889922653e+08    3.12491170967633e-02
+    2.30921611509000e+11    1.33895985806929e+08    3.12491134010364e-02
+    2.30955157749000e+11    1.33900080690749e+08    3.12491157253055e-02
+    2.31492032757000e+11    1.33965615336276e+08    3.12491153533309e-02
+    2.31592737013000e+11    1.33977907988277e+08    3.12486492339945e-02
+    2.31659830952000e+11    1.33986097812362e+08    3.12492945533596e-02
+    2.32196684277000e+11    1.34051630186131e+08    3.12492449919622e-02
+    2.32230495221000e+11    1.34055757398914e+08    3.12491976807835e-02
+    2.32297333749000e+11    1.34063916189438e+08    3.12491580357346e-02
+    2.32330888181000e+11    1.34068012079080e+08    3.12491394580547e-02
+    2.32364442613000e+11    1.34072107966287e+08    3.12481925795196e-02
+    2.32398102184000e+11    1.34076216562993e+08    3.12492389395196e-02
+    2.32901321461000e+11    1.34137643201376e+08    3.12491213705383e-02
+    2.32935141109000e+11    1.34141771460302e+08    3.12491207628465e-02
+    2.32968429301000e+11    1.34145834845973e+08    3.12491184414891e-02
+    2.33069092597000e+11    1.34158122499330e+08    3.12491227804125e-02
+    2.33102651125000e+11    1.34162218884337e+08    3.12491233134511e-02
+    2.35082354421000e+11    1.34403875104730e+08    3.12491268307440e-02
+    2.35115908853000e+11    1.34407970990282e+08    3.12491242520991e-02
+    2.35149463285000e+11    1.34412066875496e+08    3.12491209942891e-02
+    2.35183017717000e+11    1.34416162760283e+08    3.12491256327121e-02
+    2.35216572149000e+11    1.34420258645678e+08    3.12491197597072e-02
+    2.35719892458000e+11    1.34481697382449e+08    3.12491230294718e-02
+    2.35729903082000e+11    1.34482919348156e+08    3.12491268584934e-02
+    2.35820553194000e+11    1.34493984726475e+08    3.12491569508864e-02
+    2.35854375669000e+11    1.34498113335185e+08    3.12491217950992e-02
+    2.35887930101000e+11    1.34502209220077e+08    3.12491264112396e-02
+    2.35921484533000e+11    1.34506305105574e+08    3.12490608396950e-02
+    2.36491742888000e+11    1.34575914629128e+08    3.12495888200744e-02
+    2.36525621076000e+11    1.34580050095710e+08    3.12495776469231e-02
+    2.36558750453000e+11    1.34584094154455e+08    3.12491152806115e-02
+    2.36592308981000e+11    1.34588190538479e+08    3.12491253901460e-02
+    2.36626128373000e+11    1.34592318766687e+08    3.12490643584729e-02
+    2.37196320424000e+11    1.34661920204572e+08    3.12500311655725e-02
+    2.37229836266000e+11    1.34666011497958e+08    3.12491115025750e-02
+    2.37263390698000e+11    1.34670107381501e+08    3.12491235727066e-02
+    2.37296945130000e+11    1.34674203266626e+08    3.12491205206697e-02
+    2.37330499562000e+11    1.34678299151351e+08    3.12490960714628e-02
+    2.37934923604000e+11    1.34752079248837e+08    3.12491121815128e-02
+    2.37968478036000e+11    1.34756175132469e+08    3.12493234241653e-02
+    2.38035142122000e+11    1.34764312662095e+08    3.12491011453633e-02
+    2.39979273896000e+11    1.35001626609148e+08    3.12486328184605e-02
+    2.39979404968000e+11    1.35001642608448e+08    3.12499538311239e-02
+    2.40014907882000e+11    1.35005976453852e+08    3.12491138000248e-02
+    2.40042705834000e+11    1.35009369662310e+08    3.12491338887391e-02
+    2.40048407466000e+11    1.35010065643020e+08    3.12491075576418e-02
+    2.40081961898000e+11    1.35014161526046e+08    3.12491144242131e-02
+    2.40149070762000e+11    1.35022353293898e+08    3.12491144393334e-02
+    2.40182625194000e+11    1.35026449177826e+08    3.12491185502279e-02
+    2.40686227882000e+11    1.35087922381339e+08    3.12491144696878e-02
+    2.40753336746000e+11    1.35096114149203e+08    3.12491181756738e-02
+    2.40853717930000e+11    1.35108367365927e+08    3.12491155989392e-02
+    2.40887272362000e+11    1.35112463250007e+08    3.12491175825833e-02
+    2.41390866858000e+11    1.35173935451645e+08    3.12491172717322e-02
+    2.41457697194000e+11    1.35182093221204e+08    3.12491176357526e-02
+    2.41491251626000e+11    1.35186189105551e+08    3.12491147060427e-02
+    2.41524806058000e+11    1.35190284989513e+08    3.12491192378275e-02
+    2.41558360490000e+11    1.35194380874070e+08    3.12491168958786e-02
+    2.41591914922000e+11    1.35198476758320e+08    3.12491172936449e-02
+    2.42095509418000e+11    1.35259948959390e+08    3.12491109207470e-02
+    2.42162339754000e+11    1.35268106727291e+08    3.12491190695710e-02
+    2.42195894186000e+11    1.35272202611825e+08    3.12491161860180e-02
+    2.42229448618000e+11    1.35276298495982e+08    3.12491130962371e-02
+    2.42263003050000e+11    1.35280394379734e+08    3.12491183374277e-02
+    2.42296557482000e+11    1.35284490264172e+08    3.12491161415725e-02
+    2.42800151978000e+11    1.35345962462976e+08    3.12491297708056e-02
+    2.42866988501000e+11    1.35354120991026e+08    3.12490821663903e-02
+    2.42900536234000e+11    1.35358216052998e+08    3.12491101813066e-02
+    2.42934090666000e+11    1.35362311936368e+08    3.12491147287801e-02
+    2.42967645098000e+11    1.35366407820334e+08    3.12491199317719e-02
+    2.43001199530000e+11    1.35370503704982e+08    3.12491142470105e-02
+    2.43639011754000e+11    1.35448359435669e+08    3.12491094376860e-02
+    2.43705842090000e+11    1.35456517203182e+08    3.12491130960098e-02
+    2.43739396522000e+11    1.35460613086934e+08    3.12491143697571e-02
+    2.43772950954000e+11    1.35464708970852e+08    3.12491122013918e-02
+    2.44947356074000e+11    1.35608064898059e+08    3.12491269002329e-02
+    2.44957178282000e+11    1.35609263864559e+08    3.12505313195288e-02
+    2.44957194666000e+11    1.35609265864593e+08    3.12491536237672e-02
+    2.44981182421000e+11    1.35612193978035e+08    3.12490881053301e-02
+    2.45014470570000e+11    1.35616257354211e+08    3.12491207044635e-02
+    2.45115133866000e+11    1.35628545008458e+08    3.12491136896197e-02
+    2.45642821546000e+11    1.35692958181524e+08    3.12505317851901e-02
+    2.45642829738000e+11    1.35692959181541e+08    3.12491076707374e-02
+    2.45652004778000e+11    1.35694079149560e+08    3.12491144911746e-02
+    2.45685559210000e+11    1.35698175033494e+08    3.12491187443853e-02
+    2.46423756714000e+11    1.35788284492320e+08    3.12491205261267e-02
+    2.46457311146000e+11    1.35792380377045e+08    3.12491175047853e-02
+    2.46490865578000e+11    1.35796476261375e+08    3.12491225631675e-02
+    2.46524420010000e+11    1.35800572146368e+08    3.12491209337082e-02
+    2.47061290922000e+11    1.35866106302832e+08    3.12491209085538e-02
+    2.47110197162000e+11    1.35872076134890e+08    3.12505001202226e-02
+    2.47110205354000e+11    1.35872077134906e+08    3.12491253765618e-02
+    2.47128399786000e+11    1.35874298072745e+08    3.12491153913470e-02
+    2.47161954218000e+11    1.35878393956798e+08    3.12491199995293e-02
+    2.47195508650000e+11    1.35882489841454e+08    3.12491250426774e-02
+    2.47229063082000e+11    1.35886585726772e+08    3.12491161234902e-02
+    2.47262617514000e+11    1.35890681610920e+08    3.12491198397159e-02
+    2.47765933994000e+11    1.35952119880455e+08    3.12491210064536e-02
+    2.47833042858000e+11    1.35960311650032e+08    3.12491256602243e-02
+    2.47866597290000e+11    1.35964407535431e+08    3.12491150325513e-02
+    2.47900151722000e+11    1.35968503419436e+08    3.12491200452314e-02
+    2.47933706154000e+11    1.35972599304099e+08    3.12491263241554e-02
+    2.47967260586000e+11    1.35976695189584e+08    3.12491173265244e-02
+    2.49879863210000e+11    1.36210160595039e+08    3.12491141700093e-02
+    2.49946972074000e+11    1.36218352362824e+08    3.12491191289155e-02
+    2.49980526506000e+11    1.36222448247366e+08    3.12491161996604e-02
+    2.50014080938000e+11    1.36226544131525e+08    3.12491135214259e-02
+    2.50047635370000e+11    1.36230640015332e+08    3.12491196327755e-02
+    2.50081189802000e+11    1.36234735899941e+08    3.12491143987851e-02
+    2.50584506282000e+11    1.36296174158778e+08    3.12491028601209e-02
+    2.50596106154000e+11    1.36297590118127e+08    3.12491162556954e-02
+    2.50618101674000e+11    1.36300275042195e+08    3.12491124887266e-02
+    2.50718999466000e+11    1.36312591317399e+08    3.12491090046478e-02
+    2.50752553898000e+11    1.36316687200614e+08    3.12491074405443e-02
+    2.50786108330000e+11    1.36320783083625e+08    3.12491113775863e-02
+    2.51322698197000e+11    1.36386282913773e+08    3.12491152722032e-02
+    2.51389807061000e+11    1.36394474681847e+08    3.12491151155427e-02
+    2.51423361493000e+11    1.36398570565863e+08    3.12491200445493e-02
+    2.51456915925000e+11    1.36402666450526e+08    3.12491107897586e-02
+    2.51490470357000e+11    1.36406762333975e+08    3.12491149347070e-02
+    2.52094454229000e+11    1.36480488745830e+08    3.12491186020907e-02
+    2.52128008661000e+11    1.36484584630304e+08    3.12491082493125e-02
+    2.52161563093000e+11    1.36488680513420e+08    3.12491142074123e-02
+    2.52195117525000e+11    1.36492776397317e+08    3.12491133396157e-02
+    2.52799101397000e+11    1.36566502805409e+08    3.12491145812146e-02
+    2.52832655829000e+11    1.36570598689355e+08    3.12491118575053e-02
+    2.52866210261000e+11    1.36574694572945e+08    3.12491177628544e-02
+    2.52899764693000e+11    1.36578790457308e+08    3.12491112307016e-02
+    2.54845913557000e+11    1.36816350700756e+08    3.12491109111761e-02
+    2.54913022421000e+11    1.36824542467687e+08    3.12491110407791e-02
+    2.54946576853000e+11    1.36828638351169e+08    3.12491082941051e-02
+    2.54980131285000e+11    1.36832734234291e+08    3.12491140698512e-02
+    2.55013685717000e+11    1.36836830118171e+08    3.12491139552549e-02
+    2.55047240149000e+11    1.36840926002035e+08    3.12491117993386e-02
+    2.55550564821000e+11    1.36902365255733e+08    3.12491013040547e-02
+    2.55554714069000e+11    1.36902871741167e+08    3.12491136857715e-02
+    2.55584119253000e+11    1.36906461139361e+08    3.12491149458631e-02
+    2.55617934549000e+11    1.36910588866204e+08    3.12491018355025e-02
+    2.55684774314000e+11    1.36918747782700e+08    3.12491182580743e-02
+    2.55718328746000e+11    1.36922843667129e+08    3.12491180750385e-02
+    2.55751883178000e+11    1.36926939551533e+08    3.12491180062205e-02
+    2.56255206613000e+11    1.36988378666438e+08    3.12491156182659e-02
+    2.56322315477000e+11    1.36996570434602e+08    3.12491120705545e-02
+    2.56355869909000e+11    1.37000666318220e+08    3.12491093084191e-02
+    2.56389424341000e+11    1.37004762201475e+08    3.12491150230017e-02
+    2.56422978773000e+11    1.37008858085479e+08    3.12491071344994e-02
+    2.56456533205000e+11    1.37012953968450e+08    3.12491104106722e-02
+    2.56959845589000e+11    1.37074391719460e+08    3.12491087591980e-02
+    2.57026954453000e+11    1.37082583485827e+08    3.12491167319422e-02
+    2.57060508885000e+11    1.37086679370055e+08    3.12491063332345e-02
+    2.57094063317000e+11    1.37090775252920e+08    3.12491120166669e-02
+    2.57127617749000e+11    1.37094871136530e+08    3.12491116965248e-02
+    2.57161172181000e+11    1.37098967020099e+08    3.12491101091648e-02
+    2.57664492757000e+11    1.37160405770488e+08    3.12491097853353e-02
+    2.57731601621000e+11    1.37168597537124e+08    3.12491063784819e-02
+    2.57765156053000e+11    1.37172693419995e+08    3.12491112615589e-02
+    2.57798710485000e+11    1.37176789303506e+08    3.12491092699929e-02
+    2.57832264917000e+11    1.37180885186756e+08    3.12491088966453e-02
+    2.57865819349000e+11    1.37184981069958e+08    3.12491095262713e-02
+    2.58369127637000e+11    1.37246418319243e+08    3.12491111047848e-02
+    2.58436236501000e+11    1.37254610086225e+08    3.12491039678662e-02
+    2.58469790933000e+11    1.37258705968780e+08    3.12491164797848e-02
+    2.58503345365000e+11    1.37262801852975e+08    3.12491068286818e-02
+    2.58536899797000e+11    1.37266897735906e+08    3.12491082436993e-02
+    2.59879085269000e+11    1.37430734060506e+08    3.12491050431163e-02
+    2.59912639701000e+11    1.37434829943202e+08    3.12491103379671e-02
+    2.59979748565000e+11    1.37443021709983e+08    3.12491067233553e-02
+    2.60511671509000e+11    1.37507951853911e+08    3.12491385204406e-02
+    2.60516611285000e+11    1.37508554837288e+08    3.12491061445087e-02
+    2.60650832597000e+11    1.37524938806138e+08    3.12491011931214e-02
+    2.60684391125000e+11    1.37529035188315e+08    3.12491072814034e-02
+    2.61221253845000e+11    1.37594568316177e+08    3.12491078807398e-02
+    2.61254808277000e+11    1.37598664199245e+08    3.12491128440446e-02
+    2.61288896981000e+11    1.37602825299862e+08    3.12491122208893e-02
+    2.61389187285000e+11    1.37615067420817e+08    3.12491090367792e-02
+    2.61925898453000e+11    1.37680582052887e+08    3.12491100095258e-02
+    2.61993007317000e+11    1.37688773819582e+08    3.12491068896354e-02
+    2.62013454549000e+11    1.37691269748247e+08    3.12491148174740e-02
+    2.62026561749000e+11    1.37692869702926e+08    3.12491078732364e-02
+    2.62060116181000e+11    1.37696965585993e+08    3.12491090295498e-02
+    2.62093669333000e+11    1.37701061312966e+08    3.12491124369527e-02
+    2.62127223253000e+11    1.37705157134133e+08    3.12491163536350e-02
+    2.62630547925000e+11    1.37766596396785e+08    3.12491177036236e-02
+    2.62697656789000e+11    1.37774788165497e+08    3.12491174307407e-02
+    2.62731203029000e+11    1.37778883049845e+08    3.12491156244050e-02
+    2.62764757461000e+11    1.37782978933928e+08    3.12491148845311e-02
+    2.62798311893000e+11    1.37787074817914e+08    3.12491162733295e-02
+    2.62831866325000e+11    1.37791170702082e+08    3.12491093206777e-02
+    2.63402303957000e+11    1.37860802217407e+08    3.12491126269933e-02
+    2.63417291221000e+11    1.37862631665456e+08    3.12491161000447e-02
+    2.63449100757000e+11    1.37866514555626e+08    3.12504017991679e-02
+    2.63449129429000e+11    1.37866518055671e+08    3.12491087722636e-02
+    2.63469408725000e+11    1.37868993485072e+08    3.12491143451814e-02
+    2.63503228885000e+11    1.37873121805568e+08    3.12491093754943e-02
+    2.63536783317000e+11    1.37877217688832e+08    3.12491246971677e-02
+    2.64750092245000e+11    1.38025322540345e+08    3.12491417521935e-02
+    2.64778296533000e+11    1.38028765352039e+08    3.12491404762289e-02
+    2.64811850197000e+11    1.38032861145632e+08    3.12491606689932e-02
+    2.64845138389000e+11    1.38036924536492e+08    3.12492068412666e-02
+    2.64878692821000e+11    1.38041020432531e+08    3.12492362600221e-02
+    2.64912512725000e+11    1.38045148737884e+08    3.12492608113644e-02
+    2.64946067157000e+11    1.38049244640997e+08    3.12492905061856e-02
+    2.65449117397000e+11    1.38110650746814e+08    3.12493156295942e-02
+    2.65456133845000e+11    1.38111507228057e+08    3.12504377216101e-02
+    2.65456146133000e+11    1.38111508728078e+08    3.12492923028497e-02
+    2.65482794453000e+11    1.38114761623160e+08    3.12492937454880e-02
+    2.65516221909000e+11    1.38118842030940e+08    3.12492922456489e-02
+    2.65583347157000e+11    1.38127035845361e+08    3.12492947502378e-02
+    2.65616893397000e+11    1.38131130752945e+08    3.12492891210581e-02
+    2.65650443733000e+11    1.38135226159780e+08    3.12492917958161e-02
+    2.66180277717000e+11    1.38199901694035e+08    3.12492826210003e-02
+    2.66220888533000e+11    1.38204858955233e+08    3.12492800141962e-02
+    2.66321535445000e+11    1.38217144672169e+08    3.12491905299839e-02
+    2.66690630101000e+11    1.38262199005095e+08    3.12491448991613e-02
+    2.66691826133000e+11    1.38262345001100e+08    3.12495781108737e-02
+    2.66691842517000e+11    1.38262347001073e+08    3.12491361025781e-02
+    2.66791291605000e+11    1.38274486446722e+08    3.12491140883118e-02
+    2.67395115733000e+11    1.38348193357133e+08    3.12496125698090e-02
+    2.67395136213000e+11    1.38348195857102e+08    3.12496022970387e-02
+    2.67395271381000e+11    1.38348212356892e+08    3.12491133085651e-02
+    2.67495933141000e+11    1.38360499820736e+08    3.12491112601712e-02
+    2.68099917013000e+11    1.38434226223921e+08    3.12490345575430e-02
+    2.68100805845000e+11    1.38434334720569e+08    3.12496069818735e-02
+    2.68100834517000e+11    1.38434338220525e+08    3.12491109411305e-02
+    2.68200586965000e+11    1.38446514686597e+08    3.12491109704898e-02
+    2.69509205717000e+11    1.38606253642063e+08    3.12491126977092e-02
+    2.69560094421000e+11    1.38612465465681e+08    3.12496256083250e-02
+    2.69560098517000e+11    1.38612465965675e+08    3.12491119483946e-02
+    2.69576310485000e+11    1.38614444909437e+08    3.12491054098224e-02
+    2.69609861845000e+11    1.38618540417192e+08    3.12491069055659e-02
+    2.70218273237000e+11    1.38692807263407e+08    3.12496038774649e-02
+    2.70218285525000e+11    1.38692808763388e+08    3.12491074084817e-02
+    2.70314778581000e+11    1.38704587364447e+08    3.12491137762811e-02
+    2.70925983701000e+11    1.38779195248570e+08    3.12339849770069e-02
+    2.70926000085000e+11    1.38779197247545e+08    3.12491241367401e-02
+    2.70952046549000e+11    1.38782376658431e+08    3.12491192853486e-02
+    2.70985600981000e+11    1.38786472542994e+08    3.12491624599716e-02
+    2.71019155413000e+11    1.38790568433216e+08    3.12491427887151e-02
+    2.71623133909000e+11    1.38864294254556e+08    3.12491152112124e-02
+    2.72327780309000e+11    1.38950308225402e+08    3.12491047790245e-02
+    2.72335202261000e+11    1.38951214199448e+08    3.12496256083250e-02
+    2.72335206357000e+11    1.38951214699442e+08    3.12491088940920e-02
+    2.72361334741000e+11    1.38954404108492e+08    3.12491163539430e-02
+    2.72394880725000e+11    1.38958498961450e+08    3.12491120448612e-02
+    2.72428435157000e+11    1.38962594845064e+08    3.12493004714758e-02
+    2.73032694698000e+11    1.39036355344906e+08    3.12493300451024e-02
+    2.73043180458000e+11    1.39037635317464e+08    3.12495939433575e-02
+    2.73043188650000e+11    1.39037636317451e+08    3.12493383370042e-02
+    2.73065970602000e+11    1.39040417258569e+08    3.12493397019580e-02
+    2.73133079466000e+11    1.39048609085475e+08    3.12492081393283e-02
+    2.74441980330000e+11    1.39208382974276e+08    3.12491016861779e-02
+    2.74508810666000e+11    1.39216540739766e+08    3.12491086415321e-02
+    2.74542365098000e+11    1.39220636622933e+08    3.12493129048565e-02
+    2.75146622890000e+11    1.39294396938626e+08    3.12492968364183e-02
+    2.75280847274000e+11    1.39310781382448e+08    3.12491219879851e-02
+    2.75850985898000e+11    1.39380376427024e+08    3.12491079877412e-02
+    2.75864265130000e+11    1.39381997380753e+08    3.12496246770024e-02
+    2.75864281514000e+11    1.39381999380729e+08    3.12491073976504e-02
+    2.75884564906000e+11    1.39384475310007e+08    3.12491267175225e-02
+    2.75951824597000e+11    1.39392685492065e+08    3.12491085780678e-02
+    2.76555914154000e+11    1.39466424789556e+08    3.12491066146460e-02
+    2.76656298922000e+11    1.39478678439235e+08    3.12491109607436e-02
+    2.76689853354000e+11    1.39482774322706e+08    3.12491081915596e-02
+    2.76723407786000e+11    1.39486870205815e+08    3.12491294541815e-02
+    2.76756962218000e+11    1.39490966091711e+08    3.12493190329484e-02
+    2.77260556714000e+11    1.39552438689636e+08    3.12493472571272e-02
+    2.77965199274000e+11    1.39638452830455e+08    3.12493327102902e-02
+    2.78669841834000e+11    1.39724466931233e+08    3.12492950197634e-02
+    2.78703117738000e+11    1.39728528839597e+08    3.12493077111386e-02
+    2.78803778986000e+11    1.39740816317383e+08    3.12492856777830e-02
+    2.80783488469000e+11    1.39982474548607e+08    3.12490987910452e-02
+    2.80804271573000e+11    1.39985011475443e+08    3.12496429043157e-02
+    2.80804300245000e+11    1.39985014975403e+08    3.12491153542478e-02
+    2.80817051093000e+11    1.39986571431341e+08    3.12491054459340e-02
+    2.80850867157000e+11    1.39990699250676e+08    3.12491054824022e-02
+    2.80917976021000e+11    1.39998891016183e+08    3.12490931381641e-02
+    2.81488471722000e+11    1.40068529583744e+08    3.12491989043338e-02
+    2.81522026154000e+11    1.40072625478742e+08    3.12492740386006e-02
+    2.81589135018000e+11    1.40080817288436e+08    3.12495115929932e-02
+    2.81622353322000e+11    1.40084872193811e+08    3.12493367307847e-02
+    2.82193104554000e+11    1.40154542496304e+08    3.12493609219473e-02
+    2.82226658986000e+11    1.40158638412539e+08    3.12494401272922e-02
+    2.82293441450000e+11    1.40166790422735e+08    3.12493484709648e-02
+    2.82326995882000e+11    1.40170886337338e+08    3.12493531782820e-02
+    2.82360550314000e+11    1.40174982252558e+08    3.12493385365855e-02
+    2.82931308202000e+11    1.40244653371560e+08    3.12493782833620e-02
+    2.83065492309000e+11    1.40261032941557e+08    3.12493344384059e-02
+    2.83635965610000e+11    1.40330669312538e+08    3.12494320108908e-02
+    2.83702724522000e+11    1.40338818445670e+08    3.12493367443949e-02
+    2.83736278954000e+11    1.40342914358735e+08    3.12493490353063e-02
+    2.83769833386000e+11    1.40347010273412e+08    3.12493351991159e-02
+    2.85045257898000e+11    1.40502698430040e+08    3.12492640200228e-02
+    2.85746843349000e+11    1.40588339168286e+08    3.12491068164105e-02
+    2.85783101141000e+11    1.40592765041782e+08    3.12490987447573e-02
+    2.85883767210000e+11    1.40605053025885e+08    3.12492540726695e-02
+    2.86454529706000e+11    1.40674724519060e+08    3.12493466219471e-02
+    2.87159170730000e+11    1.40760738470634e+08    3.12493919896612e-02
+    2.87293348693000e+11    1.40777117297830e+08    3.12493456603296e-02
+    2.87863811754000e+11    1.40846752443844e+08    3.12493490617596e-02
+    2.88568460970000e+11    1.40932767402113e+08    3.12493433947756e-02
+    2.89977736874000e+11    1.41104794537512e+08    3.12491804104427e-02
+    2.90044849834000e+11    1.41112986822648e+08    3.12491387458067e-02
+    2.90078404266000e+11    1.41117082709762e+08    3.12491204354046e-02
+    2.90111958698000e+11    1.41121178594476e+08    3.12488742492040e-02
+    2.90145631572000e+11    1.41125288904653e+08    3.12491143298706e-02
+    2.90682377898000e+11    1.41190807839447e+08    3.12491169567114e-02
+    2.90688145066000e+11    1.41191511819554e+08    3.12493177210892e-02
+    2.90715639210000e+11    1.41194867965027e+08    3.12491168755893e-02
+    2.90816536533000e+11    1.41207184184711e+08    3.12491102122294e-02
+    2.90850090965000e+11    1.41211280068084e+08    3.12491002833473e-02
+    2.91521177301000e+11    1.41293197428289e+08    3.12481553241947e-02
+    2.91554515624000e+11    1.41297266807568e+08    3.12493515265499e-02
+    2.93500950186000e+11    1.41534863752300e+08    3.12493225753402e-02
+    2.94205332136000e+11    1.41620846013127e+08    3.12538242132130e-02
+    2.94210836138000e+11    1.41621517970592e+08    3.12491562508512e-02
+    2.94211360426000e+11    1.41621581968864e+08    3.12493573793473e-02
+    2.94339835562000e+11    1.41637264646361e+08    3.12493573505890e-02
+    2.94373389994000e+11    1.41641360562127e+08    3.12493082677071e-02
+    2.94909926056000e+11    1.41706854237120e+08    3.12496540717586e-02
+    2.94977349290000e+11    1.41715084521257e+08    3.12492088980889e-02
+    2.95010903722000e+11    1.41719180417565e+08    3.12491676306763e-02
+    2.95044458154000e+11    1.41723276308465e+08    3.12491421025243e-02
+    2.95078012586000e+11    1.41727372196019e+08    3.12491117879928e-02
+    2.95614548181000e+11    1.41792865402216e+08    3.12491124487111e-02
+    2.95623264469000e+11    1.41793929371996e+08    3.12496454765399e-02
+    2.95623276757000e+11    1.41793930871979e+08    3.12490919857849e-02
+    2.95648159957000e+11    1.41796968283720e+08    3.12491042280347e-02
+    2.95715481557000e+11    1.41805186016905e+08    3.12491053028642e-02
+    2.95782320085000e+11    1.41813344783310e+08    3.12490403108625e-02
+    2.96319310504000e+11    1.41878893358505e+08    3.12498623080035e-02
+    2.96353095338000e+11    1.41883017465577e+08    3.12492533471763e-02
+    2.96453709653000e+11    1.41895299192998e+08    3.12492983905486e-02
+    2.96487264085000e+11    1.41899395101037e+08    3.12493025256217e-02
+    2.97023838888000e+11    1.41964893493016e+08    3.12495736400333e-02
+    2.97158068053000e+11    1.41981278665580e+08    3.12493288183707e-02
+    2.97191901013000e+11    1.41985408576876e+08    3.12493032556515e-02
+    2.97728604840000e+11    1.42050922720034e+08    3.12493658490906e-02
+    2.97896278696000e+11    1.42071390304680e+08    3.12493607457327e-02
+    2.97929833128000e+11    1.42075486220892e+08    3.12493644730061e-02
+    2.98433125032000e+11    1.42136921971456e+08    3.12496715083363e-02
+    2.98533789098000e+11    1.42149209936281e+08    3.12493696724232e-02
+    2.98567343530000e+11    1.42153305853663e+08    3.12493516439645e-02
+    2.98600897962000e+11    1.42157401768681e+08    3.12484489138526e-02
+    2.98634566312000e+11    1.42161511470693e+08    3.12493596807484e-02
+    2.99842501288000e+11    1.42308961449349e+08    3.12493629360676e-02
+    3.00043860648000e+11    1.42333540948260e+08    3.12492433867131e-02
+    3.00547049173000e+11    1.42394963841569e+08    3.12491083314196e-02
+    3.00563584725000e+11    1.42396982283975e+08    3.12482872779699e-02
+    3.00563777237000e+11    1.42397005782687e+08    3.12490984598119e-02
+    3.00580615893000e+11    1.42399061223387e+08    3.12491022157327e-02
+    3.00714821589000e+11    1.42415443283982e+08    3.12481760379200e-02
+    3.00748413608000e+11    1.42419543632900e+08    3.12491410875767e-02
+    3.01252032170000e+11    1.42481018818441e+08    3.12490923157232e-02
+    3.01352695466000e+11    1.42493306461525e+08    3.12490946860180e-02
+    3.01386249898000e+11    1.42497402342863e+08    3.12490918095136e-02
+    3.01419804330000e+11    1.42501498223825e+08    3.12483589093595e-02
+    3.01453146792000e+11    1.42505568134839e+08    3.12492566485616e-02
+    3.02057004970000e+11    1.42579279537900e+08    3.12493645224095e-02
+    3.02090559402000e+11    1.42583375454606e+08    3.12493539861407e-02
+    3.02124113834000e+11    1.42587471369932e+08    3.12475747344930e-02
+    3.02159385936000e+11    1.42591776712289e+08    3.12494011981698e-02
+    3.02862383784000e+11    1.42677590234920e+08    3.12494079687306e-02
+    3.03445696170000e+11    1.42748794011183e+08    3.12495781108737e-02
+    3.03445794474000e+11    1.42748806011021e+08    3.12491735886694e-02
+    3.03566953128000e+11    1.42763595494656e+08    3.12493723057253e-02
+    3.04803186133000e+11    1.42914499812742e+08    3.12495827674866e-02
+    3.04803198421000e+11    1.42914501312722e+08    3.12491423541006e-02
+    3.04808461781000e+11    1.42915143795088e+08    3.12491171489351e-02
+    3.04842024405000e+11    1.42919240679343e+08    3.12491141359279e-02
+    3.04875840469000e+11    1.42923368499826e+08    3.12491111271811e-02
+    3.04909394901000e+11    1.42927464383319e+08    3.12491035429816e-02
+    3.04976234410000e+11    1.42935623269013e+08    3.12491223034754e-02
+    3.05506412245000e+11    1.43000340425296e+08    3.12495781108737e-02
+    3.05506445013000e+11    1.43000344425242e+08    3.12491121681302e-02
+    3.05513113301000e+11    1.43001158402116e+08    3.12481978524150e-02
+    3.05546738344000e+11    1.43005262784914e+08    3.12491222969129e-02
+    3.05580292776000e+11    1.43009358669872e+08    3.12491190161381e-02
+    3.05613847208000e+11    1.43013454554400e+08    3.12491150069718e-02
+    3.05680956072000e+11    1.43021646322404e+08    3.12491145362941e-02
+    3.06217826984000e+11    1.43087180465452e+08    3.12491169713667e-02
+    3.06251381416000e+11    1.43091276349712e+08    3.12491296592725e-02
+    3.06284935848000e+11    1.43095372235635e+08    3.12491492591107e-02
+    3.06318490280000e+11    1.43099468124126e+08    3.12491614354258e-02
+    3.06352044712000e+11    1.43103564014214e+08    3.12491671120370e-02
+    3.06385599144000e+11    1.43107659905046e+08    3.12491405233745e-02
+    3.06921945768000e+11    1.43173130104353e+08    3.12476015533321e-02
+    3.06922076840000e+11    1.43173146103125e+08    3.12495559919626e-02
+    3.06922470056000e+11    1.43173194102443e+08    3.12500259769427e-02
+    3.06955962282000e+11    1.43177282512335e+08    3.12491210896848e-02
+    3.06989500330000e+11    1.43181376397191e+08    3.12491332624529e-02
+    3.07056881109000e+11    1.43189601361809e+08    3.12490788709767e-02
+    3.07090168746000e+11    1.43193664674286e+08    3.12490965745917e-02
+    3.07627033557000e+11    1.43259198034936e+08    3.12490924935666e-02
+    3.07660616661000e+11    1.43263297415886e+08    3.12490624182904e-02
+    3.07694143402000e+11    1.43267389912848e+08    3.12491014917669e-02
+    3.07727697834000e+11    1.43271485795078e+08    3.12491113180838e-02
+    3.07795078357000e+11    1.43279710722672e+08    3.12490911448723e-02
+    3.08331684053000e+11    1.43345212442606e+08    3.12490899752680e-02
+    3.08432613077000e+11    1.43357532521325e+08    3.12490889182300e-02
+    3.08466167509000e+11    1.43361628401908e+08    3.12490868081418e-02
+    3.08499717845000e+11    1.43365723782228e+08    3.12490848566400e-02
+    3.09808074453000e+11    1.43525430605143e+08    3.12490874305240e-02
+    3.09841628885000e+11    1.43529526485531e+08    3.12490918634012e-02
+    3.09875183317000e+11    1.43533622366500e+08    3.12490897119915e-02
+    3.09908737749000e+11    1.43537718247186e+08    3.12490889548010e-02
+    3.10462663125000e+11    1.43605334119643e+08    3.12490810167559e-02
+    3.10479161813000e+11    1.43607348060416e+08    3.12490910225582e-02
+    3.10613649109000e+11    1.43623764489143e+08    3.12490714905347e-02
+    3.11173656234000e+11    1.43692122702754e+08    3.12494921963662e-02
+    3.11173689002000e+11    1.43692126702689e+08    3.12490870386268e-02
+    3.11217696426000e+11    1.43697498545747e+08    3.12490884914496e-02
+    3.11251250858000e+11    1.43701594426274e+08    3.12490852409155e-02
+    3.11284805290000e+11    1.43705690306375e+08    3.12490982951203e-02
+    3.11318359722000e+11    1.43709786188186e+08    3.12492016936053e-02
+    3.11888791210000e+11    1.43779417159362e+08    3.12493648851841e-02
+    3.11955900074000e+11    1.43787608992870e+08    3.12493713588538e-02
+    3.11989454506000e+11    1.43791704910473e+08    3.12493615015228e-02
+    3.12023008938000e+11    1.43795800826784e+08    3.12493564214904e-02
+    3.12593440426000e+11    1.43865432142731e+08    3.12493531361042e-02
+    3.12660549290000e+11    1.43873623973160e+08    3.12493443277617e-02
+    3.12694103722000e+11    1.43877719887219e+08    3.12493573208030e-02
+    3.12727658154000e+11    1.43881815802982e+08    3.12493521343629e-02
+    3.14707349162000e+11    1.44123472292928e+08    3.12491253872622e-02
+    3.14774458026000e+11    1.44131664063654e+08    3.12491012632563e-02
+    3.14808012458000e+11    1.44135759945855e+08    3.12490912610883e-02
+    3.14841566890000e+11    1.44139855826744e+08    3.12490935620133e-02
+    3.15411669461000e+11    1.44209446407140e+08    3.12490902891069e-02
+    3.15415638485000e+11    1.44209930893035e+08    3.12494106058563e-02
+    3.15415667157000e+11    1.44209934392969e+08    3.12490869134805e-02
+    3.15445215701000e+11    1.44213541287577e+08    3.12490873399584e-02
+    3.15512324309000e+11    1.44221733017080e+08    3.12490861035712e-02
+    3.15545878741000e+11    1.44225828897294e+08    3.12490727847235e-02
+    3.16116663978000e+11    1.44295502762198e+08    3.12492219631916e-02
+    3.16183711573000e+11    1.44303687079300e+08    3.12491958009379e-02
+    3.16250881706000e+11    1.44311886347418e+08    3.12493355009300e-02
+    3.16821280426000e+11    1.44381513616834e+08    3.12491007440095e-02
+    3.16921649832000e+11    1.44393765389021e+08    3.12493420087776e-02
+    3.16955204264000e+11    1.44397861302776e+08    3.12493806977092e-02
+    3.17626607274000e+11    1.44479818053796e+08    3.12493436795194e-02
+    3.17660161706000e+11    1.44483913967771e+08    3.12493378802993e-02
+    3.18331256490000e+11    1.44565832982048e+08    3.12493375306531e-02
+    3.18364810922000e+11    1.44569928895217e+08    3.12493336016269e-02
+    3.19673140906000e+11    1.44729633739479e+08    3.12493362908023e-02
+    3.19740540586000e+11    1.44737861064737e+08    3.12493396438640e-02
+    3.19774095018000e+11    1.44741956978183e+08    3.12491832113222e-02
+    3.20310611669000e+11    1.44807448021632e+08    3.12491269799982e-02
+    3.20313183957000e+11    1.44807762012860e+08    3.12490819171288e-02
+    3.20344166101000e+11    1.44811543901750e+08    3.12490962363477e-02
+    3.20377717717000e+11    1.44815639439552e+08    3.12490757722615e-02
+    3.20444827562000e+11    1.44823831317019e+08    3.12481811563295e-02
+    3.20478427816000e+11    1.44827932671799e+08    3.12493225153762e-02
+    3.21082689194000e+11    1.44901693447912e+08    3.12493373287452e-02
+    3.21149798058000e+11    1.44909885274196e+08    3.12493405065197e-02
+    3.21183352490000e+11    1.44913981187755e+08    3.12492958906170e-02
+    3.21787075240000e+11    1.44987676152016e+08    3.12493374813130e-02
+    3.21854184104000e+11    1.44995867978340e+08    3.12493329688550e-02
+    3.21887738536000e+11    1.44999963890911e+08    3.12493739916220e-02
+    3.22491981482000e+11    1.45073722538573e+08    3.12493332929762e-02
+    3.22559090346000e+11    1.45081914363799e+08    3.12493325488958e-02
+    3.22592644778000e+11    1.45086010276315e+08    3.12493307399502e-02
+    3.23263411882000e+11    1.45167889272731e+08    3.12493234345782e-02
+    3.23297285802000e+11    1.45172024183208e+08    3.12493285932020e-02
+    3.24678790826000e+11    1.45340661309958e+08    3.12491874210536e-02
+    3.24678823594000e+11    1.45340665309854e+08    3.12493320185045e-02
+    3.24706578090000e+11    1.45344053237434e+08    3.12491801214480e-02
+    3.25243446954000e+11    1.45409587268031e+08    3.12498421872583e-02
+    3.25251520938000e+11    1.45410572856804e+08    3.12492186203599e-02
+    3.25251537322000e+11    1.45410574856754e+08    3.12490886756981e-02
+    3.25276703146000e+11    1.45413646767167e+08    3.12491160177333e-02
+    3.25310229717000e+11    1.45417739250397e+08    3.12490786288437e-02
+    3.25410888106000e+11    1.45430026289117e+08    3.12490839597029e-02
+    3.26753064917000e+11    1.45593861429179e+08    3.12490835184462e-02
+    3.26820173781000e+11    1.45602053188929e+08    3.12492081858023e-02
+    3.27457798824000e+11    1.45679886304996e+08    3.12493411480546e-02
+    3.27524907688000e+11    1.45688078132282e+08    3.12493320328226e-02
+    3.28229550760000e+11    1.45774092293694e+08    3.12493315717482e-02
+    3.29471064744000e+11    1.45925641052042e+08    3.12493224029140e-02
+    3.29538173608000e+11    1.45933832874414e+08    3.12493486684395e-02
+    3.30175620053000e+11    1.46011644539325e+08    3.12491326027962e-02
+    3.30182616021000e+11    1.46012498515621e+08    3.12490938231349e-02
+    3.30182632405000e+11    1.46012500515563e+08    3.12491013358228e-02
+    3.30209166293000e+11    1.46015739422418e+08    3.12491017011420e-02
+    3.30242994645000e+11    1.46019868741215e+08    3.12490801809217e-02
+    3.30377222058000e+11    1.46036253441181e+08    3.12489071658470e-02
+    3.30880301736000e+11    1.46097662387098e+08    3.12493660602506e-02
+    3.30914245972000e+11    1.46101805886537e+08    3.12491364137653e-02
+    3.30947712682000e+11    1.46105891065389e+08    3.12489644474995e-02
+    3.31014540970000e+11    1.46114048545060e+08    3.12490245898974e-02
+    3.31048355498000e+11    1.46118176166220e+08    3.12483242470779e-02
+    3.31081652904000e+11    1.46122240573014e+08    3.12492313683075e-02
+    3.31584969384000e+11    1.46183679061823e+08    3.12493019946487e-02
+    3.31618523816000e+11    1.46187774970334e+08    3.12492999348706e-02
+    3.31652078248000e+11    1.46191870878575e+08    3.12492722320808e-02
+    3.32289612456000e+11    1.46269693066165e+08    3.12499702335418e-02
+    3.32323438250000e+11    1.46273822187476e+08    3.12492749180819e-02
+    3.32356992682000e+11    1.46277918092438e+08    3.12492895099432e-02
+    3.32390219434000e+11    1.46281974000222e+08    3.12491371788663e-02
+    3.32994206376000e+11    1.46355700839304e+08    3.12498077156849e-02
+    3.33028093610000e+11    1.46359837439095e+08    3.12491127021985e-02
+    3.33061648042000e+11    1.46363933322795e+08    3.12491398854036e-02
+    3.33095202474000e+11    1.46368029210058e+08    3.12492248719082e-02
+    3.34403500712000e+11    1.46527729623491e+08    3.12492134828724e-02
+    3.34415035048000e+11    1.46529137588053e+08    3.12489902134985e-02
+    3.34415166120000e+11    1.46529153587536e+08    3.12495442342028e-02
+    3.34504474282000e+11    1.46540055303782e+08    3.12492161223758e-02
+    3.35108184744000e+11    1.46613748579963e+08    3.12515592523156e-02
+    3.35121170901000e+11    1.46615333883303e+08    3.12489690259099e-02
+    3.35121179093000e+11    1.46615334883270e+08    3.12491075129437e-02
+    3.35141667285000e+11    1.46617835811842e+08    3.12490842592995e-02
+    3.35175246293000e+11    1.46621934691726e+08    3.12490696907517e-02
+    3.35208792021000e+11    1.46626029507321e+08    3.12489356121962e-02
+    3.35813088938000e+11    1.46699793708297e+08    3.12488685786692e-02
+    3.35824623274000e+11    1.46701201657320e+08    3.12489608768374e-02
+    3.35824656042000e+11    1.46701205657187e+08    3.12488833532548e-02
+    3.35846643370000e+11    1.46703889561280e+08    3.12488994916293e-02
+    3.35880197802000e+11    1.46707985417034e+08    3.12489575321885e-02
+    3.35913490090000e+11    1.46712049281464e+08    3.12489911513638e-02
+    3.35947306666000e+11    1.46716177148199e+08    3.12490263192423e-02
+    3.35980865194000e+11    1.46720273520561e+08    3.12490931707895e-02
+    3.36517742250000e+11    1.46785808368780e+08    3.12490527643464e-02
+    3.36531373738000e+11    1.46787472318342e+08    3.12489375937730e-02
+    3.36531406506000e+11    1.46787476318206e+08    3.12490517981627e-02
+    3.36551296682000e+11    1.46789904244534e+08    3.12490580229223e-02
+    3.36584851114000e+11    1.46794000121068e+08    3.12492511247934e-02
+    3.36618063786000e+11    1.46798054305161e+08    3.12491612019270e-02
+    3.37222105768000e+11    1.46871787919490e+08    3.12504988416510e-02
+    3.37241245354000e+11    1.46874124332029e+08    3.12489217612892e-02
+    3.37241278122000e+11    1.46874128331891e+08    3.12495339659202e-02
+    3.37255891797000e+11    1.46875912201162e+08    3.12492736434145e-02
+    3.37322755925000e+11    1.46884074136446e+08    3.12493449216328e-02
+    3.37356262826000e+11    1.46888164248582e+08    3.12492219364308e-02
+    3.37927026346000e+11    1.46957835795104e+08    3.12492538367017e-02
+    3.37943213738000e+11    1.46959811747922e+08    3.12488984782249e-02
+    3.37943246506000e+11    1.46959815747781e+08    3.12492564505508e-02
+    3.37960572586000e+11    1.46961930697458e+08    3.12494399899226e-02
+    3.37993797034000e+11    1.46965986343528e+08    3.12492230651792e-02
+    3.39336092328000e+11    1.47129836675800e+08    3.12492516345628e-02
+    3.39369646760000e+11    1.47133932577710e+08    3.12492977672416e-02
+    3.40059440042000e+11    1.47218133967035e+08    3.12488442286849e-02
+    3.40059448234000e+11    1.47218134966998e+08    3.12491815986032e-02
+    3.40074169258000e+11    1.47219931919936e+08    3.12491343709098e-02
+    3.40107723690000e+11    1.47224027806477e+08    3.12486409560633e-02
+    3.40174920360000e+11    1.47232230168251e+08    3.12497811391796e-02
+    3.40208397994000e+11    1.47236316764874e+08    3.12490502816086e-02
+    3.40242271914000e+11    1.47240451639208e+08    3.12491148023444e-02
+    3.40745312936000e+11    1.47301856274547e+08    3.12499324643069e-02
+    3.40779151018000e+11    1.47305986890864e+08    3.12492015970568e-02
+    3.40812697258000e+11    1.47310081786241e+08    3.12493585315130e-02
+    3.40845925290000e+11    1.47314137859230e+08    3.12482648420320e-02
+    3.40879588008000e+11    1.47318246849572e+08    3.12492756826661e-02
+    3.41483460010000e+11    1.47391959984992e+08    3.12492611260495e-02
+    3.41517014442000e+11    1.47396055888146e+08    3.12492658481460e-02
+    3.41550568874000e+11    1.47400151791919e+08    3.12491004683069e-02
+    3.41584451242000e+11    1.47404287704114e+08    3.12492566837219e-02
+    3.42188453546000e+11    1.47478016700345e+08    3.12492594857758e-02
+    3.42222007978000e+11    1.47482112603284e+08    3.12492644824233e-02
+    3.42255546026000e+11    1.47486206506926e+08    3.12492757286691e-02
+    3.42289100458000e+11    1.47490302411994e+08    3.12492109733377e-02
+    3.42859225768000e+11    1.47559896029546e+08    3.12499532179078e-02
+    3.42892971690000e+11    1.47564015398624e+08    3.12492642354423e-02
+    3.42926624426000e+11    1.47568123301903e+08    3.12492704492797e-02
+    3.42960178858000e+11    1.47572219206279e+08    3.12492819393810e-02
+    3.42993733290000e+11    1.47576315112162e+08    3.12492496564524e-02
+    3.44302038229000e+11    1.47736016470230e+08    3.12491242132182e-02
+    3.44369147093000e+11    1.47744208240648e+08    3.12490810850528e-02
+    3.44402693333000e+11    1.47748303120234e+08    3.12489876433286e-02
+    3.44973163176000e+11    1.47817938296307e+08    3.12500274454910e-02
+    3.45003919274000e+11    1.47821692706098e+08    3.12490452344476e-02
+    3.45040226218000e+11    1.47826124570690e+08    3.12490529276078e-02
+    3.45073785770000e+11    1.47830221071536e+08    3.12490631543632e-02
+    3.45711319978000e+11    1.47908042738446e+08    3.12490615888365e-02
+    3.45744915370000e+11    1.47912143615296e+08    3.12490026275587e-02
+    3.45778729813000e+11    1.47916271223180e+08    3.12491134595694e-02
+    3.46416254805000e+11    1.47994091890400e+08    3.12492221307849e-02
+    3.46449794986000e+11    1.47998186048862e+08    3.12491613231574e-02
+    3.46483070890000e+11    1.48002247939847e+08    3.12490910577299e-02
+    3.47120896853000e+11    1.48080105289835e+08    3.12490777029328e-02
+    3.47187715498000e+11    1.48088261621982e+08    3.12490610770055e-02
+    3.47221269930000e+11    1.48092357498915e+08    3.12490724520558e-02
+    3.47254824362000e+11    1.48096453377340e+08    3.12491798076695e-02
+    3.47825551189000e+11    1.48166120350926e+08    3.12492357768702e-02
+    3.47892359082000e+11    1.48174275411864e+08    3.12492361002812e-02
+    3.49234830165000e+11    1.48338147270576e+08    3.12492341149307e-02
+    3.49939175125000e+11    1.48424124772735e+08    3.12491812346510e-02
+    3.49943713493000e+11    1.48424678758220e+08    3.12486247469981e-02
+    3.49943725781000e+11    1.48424680258154e+08    3.12491484514983e-02
+    3.49972999637000e+11    1.48428253629529e+08    3.12491341780020e-02
+    3.50006291925000e+11    1.48432317516930e+08    3.12490922794320e-02
+    3.50039841194000e+11    1.48436412767723e+08    3.12491302836406e-02
+    3.50073395626000e+11    1.48440508653727e+08    3.12492246224894e-02
+    3.52103204693000e+11    1.48688281932928e+08    3.12485625036061e-02
+    3.52103221077000e+11    1.48688283932836e+08    3.12492282038995e-02
+    3.52764355413000e+11    1.48768986814630e+08    3.12485521038373e-02
+    3.52764404565000e+11    1.48768992814352e+08    3.12493083557194e-02
+    3.52791302570000e+11    1.48772276189556e+08    3.12492271488929e-02
+    3.54200619861000e+11    1.48944307737023e+08    3.12492260939429e-02
+    3.54871977813000e+11    1.49026258582460e+08    3.12492127058681e-02
+    3.54885075797000e+11    1.49027857417179e+08    3.12485154718161e-02
+    3.54885092181000e+11    1.49027859417084e+08    3.12492152996207e-02
+    3.54905278293000e+11    1.49030323480209e+08    3.12492245874895e-02
+    3.55588876117000e+11    1.49113768409622e+08    3.12492359472582e-02
+    3.55610175317000e+11    1.49116368346052e+08    3.12492216779426e-02
+    3.56294886229000e+11    1.49199949139312e+08    3.12492216130761e-02
+    3.56314809173000e+11    1.49202381078735e+08    3.12492221230452e-02
+    3.57001109333000e+11    1.49286155868355e+08    3.12492154139493e-02
+    3.57019459413000e+11    1.49288395812116e+08    3.12492231296877e-02
+    3.57706990421000e+11    1.49372320850701e+08    3.12492262457865e-02
+    3.57724095317000e+11    1.49374408799001e+08    3.12492269424638e-02
+    3.57757649749000e+11    1.49378504697675e+08    3.12492236679155e-02
+    3.59119232853000e+11    1.49544709443610e+08    3.12492309647770e-02
+    3.59133126485000e+11    1.49546405401873e+08    3.12492238737141e-02
+    3.59166943061000e+11    1.49550533299350e+08    3.12492180891122e-02
+    3.59825980245000e+11    1.49630980161427e+08    3.12492131444109e-02
+    3.59838038869000e+11    1.49632452124363e+08    3.12492239828052e-02
+    3.59871298389000e+11    1.49636512023542e+08    3.12492840460071e-02
+    3.59904842666000e+11    1.49640606690105e+08    3.12492145366881e-02
+    3.60531665749000e+11    1.49717121256501e+08    3.12492299563019e-02
+    3.60542675797000e+11    1.49718465223383e+08    3.12492186574218e-02
+    3.60576230229000e+11    1.49722561120971e+08    3.12492115541339e-02
+    3.61237888853000e+11    1.49803327958150e+08    3.12492202679601e-02
+    3.61247326037000e+11    1.49804479929406e+08    3.12492129969542e-02
+    3.61280880469000e+11    1.49808575826252e+08    3.12492116951064e-02
+    3.61944095573000e+11    1.49889532659003e+08    3.12492122718443e-02
+    3.61951959893000e+11    1.49890492634804e+08    3.12492150947037e-02
+    3.61985514325000e+11    1.49894588531925e+08    3.12492124134035e-02
+    3.63356001109000e+11    1.50061880065609e+08    3.12492184093571e-02
+    3.63361243989000e+11    1.50062520049602e+08    3.12492119749095e-02
+    3.63394798421000e+11    1.50066615946314e+08    3.12492092116832e-02
+    3.64062224213000e+11    1.50148086759624e+08    3.12492331909847e-02
+    3.64065894229000e+11    1.50148534748631e+08    3.12492144084899e-02
+    3.64099448661000e+11    1.50152630645662e+08    3.12492096567596e-02
+    3.64768955221000e+11    1.50234355453709e+08    3.12491271130663e-02
+    3.64770528085000e+11    1.50234547448346e+08    3.12492192034759e-02
+    3.64777868117000e+11    1.50235443425959e+08    3.12483124434948e-02
+    3.64777884501000e+11    1.50235445425851e+08    3.12492174162971e-02
+    3.64803787605000e+11    1.50238607346666e+08    3.12492221070930e-02
+    3.64837635925000e+11    1.50242739118813e+08    3.12492073891639e-02
+    3.65474653013000e+11    1.50320498021521e+08    3.12487890623743e-02
+    3.65475177301000e+11    1.50320562019041e+08    3.12492121354353e-02
+    3.65508731733000e+11    1.50324657915774e+08    3.12492070339480e-02
+    3.66180876117000e+11    1.50406704708791e+08    3.12492132612651e-02
+    3.66213381973000e+11    1.50410672608894e+08    3.12492020541259e-02
+    3.66887607125000e+11    1.50492973382351e+08    3.12491696385501e-02
+    3.66917819221000e+11    1.50496661284355e+08    3.12492002336565e-02
+    3.67711270741000e+11    1.50593515680543e+08    3.12492007695888e-02
+    3.67723329365000e+11    1.50594987642896e+08    3.12492084356109e-02
+    3.67756883797000e+11    1.50599083539144e+08    3.12492047555534e-02
+    3.68299512661000e+11    1.50665320728509e+08    3.12492144211714e-02
+    3.68327299925000e+11    1.50668712643239e+08    3.12492060018939e-02
+    3.69006260053000e+11    1.50751591412407e+08    3.12492116360345e-02
+    3.69031950165000e+11    1.50754727333293e+08    3.12492052239122e-02
+    3.69703038805000e+11    1.50836645249835e+08    3.12482188455760e-02
+    3.69703055189000e+11    1.50836647249721e+08    3.12492070888710e-02
+    3.69710893909000e+11    1.50837604100442e+08    3.12492010728901e-02
+    3.69728719701000e+11    1.50839780044811e+08    3.12491979178352e-02
+    3.69736584021000e+11    1.50840740020171e+08    3.12491843409197e-02
+    3.69770141525000e+11    1.50844836288252e+08    3.12491670042148e-02
+    3.69803401045000e+11    1.50848896180029e+08    3.12491461855492e-02
+    3.69904064341000e+11    1.50861183844295e+08    3.12491254276711e-02
+    3.70441266858000e+11    1.50926758488177e+08    3.12491260467596e-02
+    3.70508375722000e+11    1.50934950259076e+08    3.12491283125382e-02
+    3.70541930154000e+11    1.50939046144822e+08    3.12491245056208e-02
+    3.70575484586000e+11    1.50943142030069e+08    3.12491293502717e-02
+    3.70609039018000e+11    1.50947237915951e+08    3.12491227916820e-02
+    3.71112373930000e+11    1.51008678441226e+08    3.12491184583265e-02
+    3.71145901738000e+11    1.51012771075773e+08    3.12491260161758e-02
+    3.71246583466000e+11    1.51025060982045e+08    3.12491289842001e-02
+    3.71280137898000e+11    1.51029156867879e+08    3.12483894177034e-02
+    3.71313392296000e+11    1.51033216033421e+08    3.12491747280152e-02
+    3.71850571434000e+11    1.51098787926950e+08    3.12491364459220e-02
+    3.71884125866000e+11    1.51102883813763e+08    3.12491488969044e-02
+    3.71917680298000e+11    1.51106979702207e+08    3.12491603338003e-02
+    3.71951234730000e+11    1.51111075592150e+08    3.12491648171957e-02
+    3.71984514730000e+11    1.51115137983576e+08    3.12491445617373e-02
+    3.72537171626000e+11    1.51182599136843e+08    3.12481797300279e-02
+    3.72537204394000e+11    1.51182603136610e+08    3.12491324446071e-02
+    3.72555194026000e+11    1.51184799075645e+08    3.12491259403487e-02
+    3.72588748458000e+11    1.51188894961080e+08    3.12491277763508e-02
+    3.73242902186000e+11    1.51268745482297e+08    3.12481718137860e-02
+    3.73242934954000e+11    1.51268749482063e+08    3.12491223827914e-02
+    3.73259843242000e+11    1.51270813424098e+08    3.12491304360686e-02
+    3.73293151914000e+11    1.51274879310958e+08    3.12491282290441e-02
+    3.73949820586000e+11    1.51355036824768e+08    3.12491173114852e-02
+    3.73964500650000e+11    1.51356828774151e+08    3.12491215365509e-02
+    3.73998034602000e+11    1.51360922159079e+08    3.12491194487966e-02
+    3.74662827690000e+11    1.51442071372421e+08    3.12481485307217e-02
+    3.74662860458000e+11    1.51442075372184e+08    3.12491266630407e-02
+    3.74668873386000e+11    1.51442809351671e+08    3.12491189447428e-02
+    3.74702427818000e+11    1.51446905236190e+08    3.12491238669447e-02
+    3.74736248490000e+11    1.51451033620442e+08    3.12491278630972e-02
+    3.74769809066000e+11    1.51455130256108e+08    3.12491241099906e-02
+    3.74803363498000e+11    1.51459226141304e+08    3.12490996484224e-02
+    3.75373831508000e+11    1.51528861343221e+08    3.12491134973243e-02
+    3.75376190804000e+11    1.51529149335051e+08    3.12520430888981e-02
+    3.75376256340000e+11    1.51529157335574e+08    3.12491091791051e-02
+    3.75407189332000e+11    1.51532933227934e+08    3.12491117288107e-02
+    3.76069041492000e+11    1.51613723431433e+08    3.12491325174859e-02
+    3.76078478676000e+11    1.51614875399454e+08    3.12491076995229e-02
+    3.76112033108000e+11    1.51618971282499e+08    3.12491113116798e-02
+    3.77480887636000e+11    1.51786063030604e+08    3.12481132568792e-02
+    3.77480953172000e+11    1.51786071030121e+08    3.12481094151735e-02
+    3.77481018708000e+11    1.51786079029637e+08    3.12490964837336e-02
+    3.77487768916000e+11    1.51786903005813e+08    3.12491149023447e-02
+    3.77520995668000e+11    1.51790958890935e+08    3.12490431370258e-02
+    3.78893634900000e+11    1.51958512260358e+08    3.12489941469931e-02
+    3.78897042772000e+11    1.51958928246968e+08    3.12489956800052e-02
+    3.78930617684000e+11    1.51963026615249e+08    3.12492812377283e-02
+    3.78964106922000e+11    1.51967114562971e+08    3.12490597950728e-02
+    3.78997661354000e+11    1.51971210439736e+08    3.12490863684616e-02
+    3.79031215786000e+11    1.51975306319985e+08    3.12490904193510e-02
+    3.79064770218000e+11    1.51979402200764e+08    3.12491076322747e-02
+    3.79098193578000e+11    1.51983482084257e+08    3.12490931163997e-02
+    3.79601622698000e+11    1.52044934050852e+08    3.12490307068799e-02
+    3.79603515050000e+11    1.52045165043687e+08    3.12558906152844e-02
+    3.79603547818000e+11    1.52045169044441e+08    3.12490996629122e-02
+    3.79634925226000e+11    1.52048999184088e+08    3.12491179563144e-02
+    3.79668418218000e+11    1.52053087568689e+08    3.12491252230718e-02
+    3.79702300330000e+11    1.52057223452910e+08    3.12491293200973e-02
+    3.79735690922000e+11    1.52061299339346e+08    3.12491451085301e-02
+    3.79769421482000e+11    1.52065416726705e+08    3.12491525072544e-02
+    3.79802631850000e+11    1.52069470616762e+08    3.12490874510734e-02
+    3.80339920212000e+11    1.52135055659772e+08    3.12491003001014e-02
+    3.80373474644000e+11    1.52139151541846e+08    3.12531454345384e-02
+    3.80375551658000e+11    1.52139405109114e+08    3.12480546999723e-02
+    3.80375584426000e+11    1.52139409108865e+08    3.12491127994406e-02
+    3.80406943402000e+11    1.52143237000187e+08    3.12491169224097e-02
+    3.80440235690000e+11    1.52147300885344e+08    3.12491494937991e-02
+    3.80474052266000e+11    1.52151428772996e+08    3.12491569276793e-02
+    3.80507571882000e+11    1.52155520412607e+08    3.12491133064212e-02
+    3.81013114196000e+11    1.52217230369839e+08    3.12480664579198e-02
+    3.81013179732000e+11    1.52217238369344e+08    3.12480663415045e-02
+    3.81013245268000e+11    1.52217246368849e+08    3.12491125679514e-02
+    3.81719334228000e+11    1.52303436421170e+08    3.12491203226063e-02
+    3.81816065364000e+11    1.52315244088778e+08    3.12480299811189e-02
+    3.81816261972000e+11    1.52315268087265e+08    3.12519373837858e-02
+    3.81816327508000e+11    1.52315276087761e+08    3.12491156981837e-02
+    3.82425095508000e+11    1.52389586484892e+08    3.12480508582667e-02
+    3.82425161044000e+11    1.52389594484393e+08    3.12487018139412e-02
+    3.82425554260000e+11    1.52389642482399e+08    3.12491098350900e-02
+    3.83838514516000e+11    1.52562118069244e+08    3.12491029323209e-02
+    3.83862893908000e+11    1.52565093983814e+08    3.12491372604924e-02
+    3.84533794005000e+11    1.52646988707327e+08    3.12491053562607e-02
+    3.84553024725000e+11    1.52649336140121e+08    3.12490958367837e-02
+    3.84567348437000e+11    1.52651084589532e+08    3.12491072586472e-02
+    3.84600931541000e+11    1.52655183972418e+08    3.12490988138178e-02
+    3.84634457301000e+11    1.52659276354399e+08    3.12488735215731e-02
+    3.84701996372000e+11    1.52667520572709e+08    3.12491113047633e-02
+    3.85251454292000e+11    1.52734591165285e+08    3.12491035085259e-02
+    3.85272425812000e+11    1.52737151091844e+08    3.12491029291112e-02
+    3.85957674324000e+11    1.52820797190608e+08    3.12490934077076e-02
+    3.85976810836000e+11    1.52823133122838e+08    3.12491031082064e-02
+    3.86663894356000e+11    1.52907003215653e+08    3.12490942575524e-02
+    3.86681720148000e+11    1.52909179152584e+08    3.12491061250472e-02
+    3.87370179924000e+11    1.52993217248690e+08    3.12490870588540e-02
+    3.87386371412000e+11    1.52995193690948e+08    3.12491029498656e-02
+    3.88783078740000e+11    1.53165685296743e+08    3.12491020358721e-02
+    3.88795661652000e+11    1.53167221252606e+08    3.12491268458138e-02
+    3.89488820693000e+11    1.53251833029155e+08    3.12491040341220e-02
+    3.89490639317000e+11    1.53252055022790e+08    3.12480013817549e-02
+    3.89490643413000e+11    1.53252055522758e+08    3.12490894019431e-02
+    3.89499847125000e+11    1.53253178990020e+08    3.12491009046880e-02
+    3.89533401557000e+11    1.53257274872174e+08    3.12490989745129e-02
+    3.89566955989000e+11    1.53261370754075e+08    3.12481484539492e-02
+    3.89600524968000e+11    1.53265468287041e+08    3.12491068557392e-02
+    3.89634079400000e+11    1.53269564169974e+08    3.12491109984876e-02
+    3.89667633832000e+11    1.53273660053451e+08    3.12491070546507e-02
+    3.90195722920000e+11    1.53338122211441e+08    3.12490974654375e-02
+    3.92314895016000e+11    1.53596802740245e+08    3.12490398624774e-02
+    3.92318433960000e+11    1.53597234726972e+08    3.12491012598746e-02
+    3.93021242024000e+11    1.53683024259621e+08    3.12492055028477e-02
+    3.93023077032000e+11    1.53683248253926e+08    3.12491013240409e-02
+    3.93727720104000e+11    1.53769261780310e+08    3.12479472486302e-02
+    3.93727851176000e+11    1.53769277779259e+08    3.12491456088427e-02
+    3.94433496277000e+11    1.53855413742186e+08    3.12489654990982e-02
+    3.94434245845000e+11    1.53855505239157e+08    3.12479427084327e-02
+    3.94434294997000e+11    1.53855511238762e+08    3.12490949183887e-02
+    3.94499468757000e+11    1.53863466789592e+08    3.12491012186911e-02
+    3.94533023189000e+11    1.53867562671787e+08    3.12481726018370e-02
+    3.94566662824000e+11    1.53871668832415e+08    3.12491088707247e-02
+    3.94600217256000e+11    1.53875764715613e+08    3.12491071997183e-02
+    3.95140758184000e+11    1.53941746830475e+08    3.12491073089309e-02
+    3.95170642600000e+11    1.53945394726266e+08    3.12491036893334e-02
+    3.95846974120000e+11    1.54027952358285e+08    3.12491054670924e-02
+    3.95875285672000e+11    1.54031408259357e+08    3.12491042491151e-02
+    3.96553190056000e+11    1.54114157887351e+08    3.12490946000930e-02
+    3.96579928744000e+11    1.54117421792784e+08    3.12491052128642e-02
+    3.97259537064000e+11    1.54200379417375e+08    3.12490992998358e-02
+    3.97284571816000e+11    1.54203435329294e+08    3.12491014729525e-02
+    3.98672886440000e+11    1.54372902456488e+08    3.12491015090927e-02
+    3.98693857960000e+11    1.54375462382884e+08    3.12491514531308e-02
+    3.99378662613000e+11    1.54459054430998e+08    3.12491009074833e-02
+    3.99397442773000e+11    1.54461346865041e+08    3.12491027949752e-02
+    3.99431959765000e+11    1.54465560244069e+08    3.12490966573478e-02
+    3.99465514197000e+11    1.54469656125666e+08    3.12481539834902e-02
+    3.99599749792000e+11    1.54486041338723e+08    3.12492449073724e-02
+    4.00085964112000e+11    1.54545392238579e+08    3.12490922394015e-02
+    4.00104838480000e+11    1.54547696171652e+08    3.12491002676036e-02
+    4.00792704336000e+11    1.54631661754093e+08    3.12491000131558e-02
+    4.00809481552000e+11    1.54633709695111e+08    3.12490999809650e-02
+    4.01498395984000e+11    1.54717803273095e+08    3.12490834142038e-02
+    4.01512551760000e+11    1.54719531222412e+08    3.12491043329064e-02
+    4.02206184784000e+11    1.54804200795598e+08    3.12490856813383e-02
+    4.02218767696000e+11    1.54805736750657e+08    3.12491093753154e-02
+    4.02250749264000e+11    1.54809640639393e+08    3.12491519817946e-02
+    4.03626720596000e+11    1.54977601331879e+08    3.12490957421687e-02
+    4.03660275028000e+11    1.54981697213356e+08    3.12491488647148e-02
+    4.03663945044000e+11    1.54982145201154e+08    3.12488691561157e-02
+    4.03664469332000e+11    1.54982209198838e+08    3.12491089997431e-02
+    4.03693829460000e+11    1.54985793096651e+08    3.12491160440231e-02
+    4.03760938324000e+11    1.54993984864927e+08    3.12478872794159e-02
+    4.03795408208000e+11    1.54998192329965e+08    3.12491792458635e-02
+    4.04331334996000e+11    1.55063611362234e+08    3.12490935967718e-02
+    4.04336053588000e+11    1.55064187345528e+08    3.12490946986662e-02
+    4.04398411092000e+11    1.55071799125011e+08    3.12491132974628e-02
+    4.04431965524000e+11    1.55075895008789e+08    3.12491094755387e-02
+    4.04465519956000e+11    1.55079990892066e+08    3.12491210795542e-02
+    4.04499074388000e+11    1.55084086776864e+08    3.12491180452936e-02
+    4.05035564372000e+11    1.55149574428583e+08    3.12491394714173e-02
+    4.05069532500000e+11    1.55153720814402e+08    3.12491383904216e-02
+    4.05103086932000e+11    1.55157816701469e+08    3.12491431056969e-02
+    4.05136641364000e+11    1.55161912589154e+08    3.12491383580307e-02
+    4.05170220372000e+11    1.55166011476134e+08    3.12491200334640e-02
+    4.05841881940000e+11    1.55247999104885e+08    3.12484724142884e-02
+    4.05908155728000e+11    1.55256088771432e+08    3.12491050146815e-02
+    4.06444502352000e+11    1.55321558896345e+08    3.12493627861841e-02
+    4.06445026640000e+11    1.55321622895040e+08    3.12490924163740e-02
+    4.06478581072000e+11    1.55325718776081e+08    3.12490944540400e-02
+    4.07149669712000e+11    1.55407636402247e+08    3.12491995573509e-02
+    4.07150456144000e+11    1.55407732399788e+08    3.12490900116612e-02
+    4.07184272720000e+11    1.55411860279582e+08    3.12490885695005e-02
+    4.08562625872000e+11    1.55580111372265e+08    3.12490895276521e-02
+    4.08594083152000e+11    1.55583951260386e+08    3.12491784506171e-02
+    4.09263407925000e+11    1.55665653796609e+08    3.12490841461113e-02
+    4.09296962357000e+11    1.55669749676566e+08    3.12490985647494e-02
+    4.09305219893000e+11    1.55670757647489e+08    3.12490994870721e-02
+    4.09330516789000e+11    1.55673845558504e+08    3.12491101299930e-02
+    4.09397898805000e+11    1.55682070668031e+08    3.12475129239553e-02
+    4.09432902992000e+11    1.55686343300006e+08    3.12491012405242e-02
+    4.09976065360000e+11    1.55752645393083e+08    3.12490860504533e-02
+    4.10003328336000e+11    1.55755973295751e+08    3.12490899021573e-02
+    4.10682805584000e+11    1.55838914880162e+08    3.12490942072448e-02
+    4.10707971408000e+11    1.55841986791119e+08    3.12490916463811e-02
+    4.11389545808000e+11    1.55925184372718e+08    3.12490959562031e-02
+    4.11402128720000e+11    1.55926720328283e+08    3.12490896336385e-02
+    4.11412614480000e+11    1.55928000290994e+08    3.12490871086387e-02
+    4.13539126608000e+11    1.56187576707890e+08    3.12490877662640e-02
+    4.13560098128000e+11    1.56190136633160e+08    3.12491044335275e-02
+    4.13593652560000e+11    1.56194232515776e+08    3.12491681842728e-02
+    4.14214650282000e+11    1.56270035883967e+08    3.12479036704948e-02
+    4.14214748586000e+11    1.56270047883162e+08    3.12490895643587e-02
+    4.14229821866000e+11    1.56271887829556e+08    3.12492457922854e-02
+    4.14263019114000e+11    1.56275940130190e+08    3.12491009296784e-02
+    4.14296855658000e+11    1.56280070448856e+08    3.12490914751107e-02
+    4.14330131562000e+11    1.56284132330762e+08    3.12491005579432e-02
+    4.14363685994000e+11    1.56288228212871e+08    3.12482724029101e-02
+    4.14430842192000e+11    1.56296425537748e+08    3.12490717086362e-02
+    4.14935731536000e+11    1.56358055706950e+08    3.12490809434773e-02
+    4.14942022992000e+11    1.56358823684363e+08    3.12488769413903e-02
+    4.14942285136000e+11    1.56358855683213e+08    3.12501685772135e-02
+    4.14967772840000e+11    1.56361966991989e+08    3.12490718788467e-02
+    4.15001327272000e+11    1.56366062870338e+08    3.12491140075388e-02
+    4.15638861480000e+11    1.56443884663891e+08    3.12491215386217e-02
+    4.15672415912000e+11    1.56447980548749e+08    3.12491292597064e-02
+    4.15707174568000e+11    1.56452223430524e+08    3.12490748782704e-02
+    4.16345222480000e+11    1.56530107832782e+08    3.12491241022599e-02
+    4.16378776912000e+11    1.56534203717976e+08    3.12491198224505e-02
+    4.17049079120000e+11    1.56616025413347e+08    3.12491217748091e-02
+    4.17083419984000e+11    1.56620217295539e+08    3.12491202728158e-02
+    4.18459151696000e+11    1.56788148567927e+08    3.12491144682472e-02
+    4.18491133264000e+11    1.56792052457299e+08    3.12491889378412e-02
+    4.19161969514000e+11    1.56873939522622e+08    3.12491031739202e-02
+    4.19171922794000e+11    1.56875154487753e+08    3.12479140702635e-02
+    4.19171955562000e+11    1.56875158487486e+08    3.12491007661334e-02
+    4.19195523946000e+11    1.56878035404699e+08    3.12491076533661e-02
+    4.19229078378000e+11    1.56882131287738e+08    3.12490976664321e-02
+    4.19262632810000e+11    1.56886227169467e+08    3.12475401833012e-02
+    4.19297971536000e+11    1.56890540639235e+08    3.12491051356574e-02
+    4.19331525968000e+11    1.56894636521944e+08    3.12491407344169e-02
+    4.19868396880000e+11    1.56960170719933e+08    3.12491571986584e-02
+    4.19935505744000e+11    1.56968362498998e+08    3.12491547265381e-02
+    4.19969060176000e+11    1.56972458388206e+08    3.12491525312074e-02
+    4.20573039952000e+11    1.57046184388776e+08    3.12491688982846e-02
+    4.20640148816000e+11    1.57054376170908e+08    3.12491556867913e-02
+    4.20673178960000e+11    1.57058408061971e+08    3.12491524742131e-02
+    4.21278207312000e+11    1.57132262058936e+08    3.12491563579533e-02
+    4.21343743312000e+11    1.57140261842963e+08    3.12491507198852e-02
+    4.21990714704000e+11    1.57219235696635e+08    3.12491705010478e-02
+    4.22047862096000e+11    1.57226211511465e+08    3.12491078519477e-02
+    4.23391612240000e+11    1.57390238828558e+08    3.12491108732047e-02
+    4.23458721104000e+11    1.57398430595479e+08    3.12491821951019e-02
+    4.24094820778000e+11    1.57476077449413e+08    3.12490904092131e-02
+    4.24119495082000e+11    1.57479089361743e+08    3.12505494027088e-02
+    4.24119593386000e+11    1.57479101361954e+08    3.12497407398196e-02
+    4.24128023146000e+11    1.57480130376854e+08    3.12490273588548e-02
+    4.24296248148000e+11    1.57500665016268e+08    3.12491328214037e-02
+    4.24799564628000e+11    1.57562103311326e+08    3.12491484887883e-02
+    4.24866218836000e+11    1.57570239589619e+08    3.12491510342170e-02
+    4.24899773268000e+11    1.57574335478344e+08    3.12491556653640e-02
+    4.24933327700000e+11    1.57578431367675e+08    3.12491187390900e-02
+    4.25503753044000e+11    1.57648061404028e+08    3.12491007780763e-02
+    4.25571259220000e+11    1.57656301666907e+08    3.12490991779150e-02
+    4.28355962536000e+11    1.57996221471996e+08    3.12491123825695e-02
+    4.28424382120000e+11    1.58004573234768e+08    3.12491086910995e-02
+    4.28457936552000e+11    1.58008669117942e+08    3.12491035069882e-02
+    4.29060605608000e+11    1.58082235007440e+08    3.12491068335703e-02
+    4.29127714472000e+11    1.58090426773302e+08    3.12491079662416e-02
+    4.29832275624000e+11    1.58176430318253e+08    3.12491397517091e-02
+    4.30465440170000e+11    1.58253718784596e+08    3.12479999847710e-02
+    4.30465472938000e+11    1.58253722784340e+08    3.12490996737068e-02
+    4.30469888426000e+11    1.58254261768811e+08    3.12492077462434e-02
+    4.30503660757000e+11    1.58258384263294e+08    3.12491498878196e-02
+    4.30536918634000e+11    1.58262443952291e+08    3.12485698674180e-02
+    4.30639353168000e+11    1.58274947595621e+08    3.12491037930158e-02
+    4.30672907600000e+11    1.58279043478154e+08    3.12491029308148e-02
+    4.30706462032000e+11    1.58283139360573e+08    3.12491032819610e-02
+    4.31176224080000e+11    1.58340481715088e+08    3.12491381100699e-02
+    4.31209778512000e+11    1.58344577602119e+08    3.12491139596095e-02
+    4.31275314512000e+11    1.58352577375292e+08    3.12491296262028e-02
+    4.31981792592000e+11    1.58438814973339e+08    3.12491147547025e-02
+    4.32047590736000e+11    1.58446846745810e+08    3.12491350645856e-02
+    4.32082193744000e+11    1.58451070628898e+08    3.12491283444653e-02
+    4.33290153296000e+11    1.58598522515911e+08    3.12491146039520e-02
+    4.33357262160000e+11    1.58606714283810e+08    3.12492114236661e-02
+    4.33993320661000e+11    1.58684356184496e+08    3.12491068817661e-02
+    4.34026887381000e+11    1.58688453567390e+08    3.12485866593373e-02
+    4.34128833872000e+11    1.58700897644573e+08    3.12491070278611e-02
+    4.34162388304000e+11    1.58704993527529e+08    3.12491033742010e-02
+    4.34194369872000e+11    1.58708897415515e+08    3.12491217384229e-02
+    4.34699259216000e+11    1.58770527683387e+08    3.12491254043177e-02
+    4.35402329424000e+11    1.58856349281425e+08    3.12491121597889e-02
+    4.35469962576000e+11    1.58864605046865e+08    3.12491254945779e-02
+    4.36108545360000e+11    1.58942554865442e+08    3.12491045032013e-02
+    4.36115885392000e+11    1.58943450839767e+08    3.12491251496405e-02
+    4.36174605648000e+11    1.58950618639097e+08    3.12491220082028e-02
+    4.36913851728000e+11    1.59040856103738e+08    3.12491252582277e-02
+    4.36980960592000e+11    1.59049047874429e+08    3.12491237495111e-02
+    4.38222474576000e+11    1.59200595624909e+08    3.12491111832233e-02
+    4.38288534864000e+11    1.59208659395552e+08    3.12491276788877e-02
+    4.38322875728000e+11    1.59212851278535e+08    3.12492098030726e-02
+    4.38925832405000e+11    1.59286452527370e+08    3.12491073023011e-02
+    4.38959386837000e+11    1.59290548410362e+08    3.12490622326732e-02
+    4.38963073237000e+11    1.59290998396858e+08    3.12532968819141e-02
+    4.38963122389000e+11    1.59291004397491e+08    3.12491584276882e-02
+    4.38992640106000e+11    1.59294607537394e+08    3.12485543090100e-02
+    4.39093407056000e+11    1.59306907621416e+08    3.12490961286361e-02
+    4.39128534352000e+11    1.59311195497390e+08    3.12491175683893e-02
+    4.39631850832000e+11    1.59372633762459e+08    3.12491031818790e-02
+    4.39697386832000e+11    1.59380633532873e+08    3.12491253105691e-02
+    4.39731465552000e+11    1.59384793416435e+08    3.12491232764369e-02
+    4.39765282128000e+11    1.59388921300623e+08    3.12491213525485e-02
+    4.40335445328000e+11    1.59458519343699e+08    3.12491184793089e-02
+    4.40368999760000e+11    1.59462615228157e+08    3.12491058592875e-02
+    4.40435584336000e+11    1.59470742995594e+08    3.12491188166478e-02
+    4.41041136976000e+11    1.59544660911208e+08    3.12491535945303e-02
+    4.41073118544000e+11    1.59548564805468e+08    3.12491039759723e-02
+    4.41140751696000e+11    1.59556820568746e+08    3.12491199395097e-02
+    4.41779334480000e+11    1.59634770373467e+08    3.12491141395954e-02
+    4.43188620624000e+11    1.59806797496784e+08    3.12490996582201e-02
+    4.43254156624000e+11    1.59814797266296e+08    3.12491947910629e-02
+    4.43890310869000e+11    1.59892450812856e+08    3.12481718137860e-02
+    4.43890327253000e+11    1.59892452812739e+08    3.12490677785908e-02
+    4.43891736277000e+11    1.59892624807608e+08    3.12482965523226e-02
+    4.44026084000000e+11    1.59909023782176e+08    3.12490953008364e-02
+    4.44059638432000e+11    1.59913119663595e+08    3.12491014701237e-02
+    4.44596509344000e+11    1.59978653779241e+08    3.12491055167357e-02
+    4.44630063776000e+11    1.59982749662000e+08    3.12491063405105e-02
+    4.44663618208000e+11    1.59986845544866e+08    3.12410814033213e-02
+    4.44705217152000e+11    1.59991922091724e+08    3.12496677365969e-02
+    4.45301261984000e+11    1.60064680697022e+08    3.12491083393525e-02
+    4.45334816416000e+11    1.60068776580150e+08    3.12491017351835e-02
+    4.46008002208000e+11    1.60150950218044e+08    3.12490995131763e-02
+    4.46039459488000e+11    1.60154790107392e+08    3.12491089206876e-02
+    4.46777763488000e+11    1.60244912537520e+08    3.12491071565546e-02
+    4.46811317920000e+11    1.60249008420493e+08    3.12490798776253e-02
+    4.46878426784000e+11    1.60257200179288e+08    3.12490371794760e-02
+    4.48119735968000e+11    1.60408722510702e+08    3.12490220278505e-02
+    4.48153290400000e+11    1.60412818382518e+08    3.12492417590458e-02
+    4.48824442474000e+11    1.60494744138055e+08    3.12490942701515e-02
+    4.48857996906000e+11    1.60498840019339e+08    3.12490839314705e-02
+    4.48862191210000e+11    1.60499352004330e+08    3.12491068446280e-02
+    4.48891547242000e+11    1.60502935401910e+08    3.12491032730122e-02
+    4.48925101674000e+11    1.60507031284374e+08    3.12491084762314e-02
+    4.48958656106000e+11    1.60511127167521e+08    3.12484411982839e-02
+    4.49624496768000e+11    1.60592402490856e+08    3.12490810647432e-02
+    4.49626593920000e+11    1.60592658483328e+08    3.12490800261003e-02
+    4.49630788224000e+11    1.60593170468255e+08    3.12491005209673e-02
+    4.50312362624000e+11    1.60676368073483e+08    3.12490974174580e-02
+    4.50314459776000e+11    1.60676624066089e+08    3.12490943328157e-02
+    4.50335431296000e+11    1.60679183991896e+08    3.12490999143241e-02
+    4.51021200000000e+11    1.60762893580761e+08    3.12491084041540e-02
+    4.51023297152000e+11    1.60763149573457e+08    3.12490991133044e-02
+    4.51746814592000e+11    1.60851467027335e+08    3.12491147560650e-02
+    4.51748911744000e+11    1.60851723020083e+08    3.12490926075303e-02
+    4.51778271872000e+11    1.60855306916016e+08    3.12490881403088e-02
+    4.53086894720000e+11    1.61015046254765e+08    3.12490938535524e-02
+    4.53162392192000e+11    1.61024261987531e+08    3.12491383119777e-02
+    4.53164489344000e+11    1.61024517980472e+08    3.12490901190110e-02
+    4.53187558016000e+11    1.61027333898481e+08    3.12498468863436e-02
+    4.53782089962000e+11    1.61099908243331e+08    3.12491085740828e-02
+    4.53790470378000e+11    1.61100931214149e+08    3.12490970543422e-02
+    4.53824024810000e+11    1.61105027095798e+08    3.12490976571098e-02
+    4.53857579242000e+11    1.61109122977526e+08    3.12491036918345e-02
+    4.53891133674000e+11    1.61113218860045e+08    3.12266666825289e-02
+    4.53930767616000e+11    1.61118053375265e+08    3.12491093575643e-02
+    4.53960127744000e+11    1.61121637273119e+08    3.12491030723443e-02
+    4.54589273344000e+11    1.61198435068829e+08    3.12490980322764e-02
+    4.54593467648000e+11    1.61198947054051e+08    3.12490966862242e-02
+    4.54597661952000e+11    1.61199459039252e+08    3.12490954721086e-02
+    4.55235196160000e+11    1.61277280786644e+08    3.12491007236986e-02
+    4.55268750592000e+11    1.61281376668774e+08    3.12491188433341e-02
+    4.55272944896000e+11    1.61281888654337e+08    3.12490965222553e-02
+    4.55302305024000e+11    1.61285472550719e+08    3.12617296525012e-02
+    4.55368792912000e+11    1.61293591794391e+08    3.12490948329247e-02
+    4.55905650512000e+11    1.61359124271165e+08    3.12490904478004e-02
+    4.55916398416000e+11    1.61360436232978e+08    3.12490904015949e-02
+    4.55939204944000e+11    1.61363220151944e+08    3.12495158422534e-02
+    4.56004797352000e+11    1.61371226913635e+08    3.12490469771074e-02
+    4.56610406736000e+11    1.61445151585863e+08    3.12272727596817e-02
+    4.56648848640000e+11    1.61449840788291e+08    3.12490892153749e-02
+    4.56678208768000e+11    1.61453424683835e+08    3.12497178766422e-02
+    4.58023861584000e+11    1.61617687460632e+08    3.12490971058911e-02
+    4.58053221712000e+11    1.61621271357080e+08    3.12404797879737e-02
+    4.58152588544000e+11    1.61633397402028e+08    3.12506780546700e-02
+    4.58722993898000e+11    1.61703028472648e+08    3.12490920498289e-02
+    4.58756533994000e+11    1.61707122603692e+08    3.12491013182807e-02
+    4.58790088426000e+11    1.61711218485900e+08    3.12491007462086e-02
+    4.58823642858000e+11    1.61715314368033e+08    3.12490984192664e-02
+    4.58857197290000e+11    1.61719410249861e+08    3.12477396368552e-02
+    4.59508454656000e+11    1.61798903689741e+08    3.12491236887581e-02
+    4.59529426176000e+11    1.61801463617954e+08    3.12503972766836e-02
+    4.60199098280000e+11    1.61883211740200e+08    3.12490988462741e-02
+    4.60232652712000e+11    1.61887307622084e+08    3.12491317361072e-02
+    4.62984398314000e+11    1.62223204734667e+08    3.12491023114749e-02
+    4.63017944554000e+11    1.62227299617034e+08    3.12491053839494e-02
+    4.63051498986000e+11    1.62231395499774e+08    3.12491071465502e-02
+    4.63085053418000e+11    1.62235491382746e+08    3.13233792964025e-02
+    4.63152641280000e+11    1.62243761227423e+08    3.12491123911087e-02
+    4.63689512192000e+11    1.62309295365972e+08    3.12492708756812e-02
+    4.63790175488000e+11    1.62321583079269e+08    3.12491163090272e-02
+    4.63823729920000e+11    1.62325678963442e+08    3.12490968954738e-02
+    4.65098798336000e+11    1.62481322465317e+08    3.12492305552610e-02
+    4.65233016064000e+11    1.62497706061906e+08    3.12490789319915e-02
+    4.65803441408000e+11    1.62567336009560e+08    3.12135769677218e-02
+    4.65936916816000e+11    1.62583610403782e+08    3.12491070710248e-02
+    4.65972044112000e+11    1.62587898281258e+08    3.12578810140608e-02
+    4.66512418048000e+11    1.62653878532018e+08    3.12491643448980e-02
+    4.67917509888000e+11    1.62825393945408e+08    3.12418617606612e-02
+    4.68621540522000e+11    1.62911312803778e+08    3.12491028744262e-02
+    4.68622326954000e+11    1.62911408801022e+08    3.12489923089743e-02
+    4.68622359722000e+11    1.62911412800893e+08    3.12490957184374e-02
+    4.68654832810000e+11    1.62915376686187e+08    3.12491012758585e-02
+    4.68688653482000e+11    1.62919505067455e+08    3.12491049021446e-02
+    4.68722207914000e+11    1.62923600950133e+08    3.12491068555119e-02
+    4.68755762346000e+11    1.62927696833066e+08    3.13232722662903e-02
+    4.68824306944000e+11    1.62936083712385e+08    3.12491412563448e-02
+    4.69340206336000e+11    1.62999057981817e+08    3.12489794072588e-02
+    4.69461841152000e+11    1.63013905496897e+08    3.12491117608715e-02
+    4.69495395584000e+11    1.63018001380474e+08    3.12491331185356e-02
+    4.70166484224000e+11    1.63099919107996e+08    3.12491116997080e-02
+    4.70200038656000e+11    1.63104014991564e+08    3.12490840060718e-02
+    4.70871127296000e+11    1.63185932590341e+08    3.12491305858635e-02
+    4.71575770368000e+11    1.63271946197269e+08    3.12491075967850e-02
+    4.72884393216000e+11    1.63431685635475e+08    3.12413697994210e-02
+    4.73548123629000e+11    1.63512685038911e+08    3.12491025195817e-02
+    4.73553702381000e+11    1.63513366019353e+08    3.12491017500633e-02
+    4.73587256813000e+11    1.63517461901617e+08    3.12491021692180e-02
+    4.73593646573000e+11    1.63518241879208e+08    3.12491033666636e-02
+    4.73620811245000e+11    1.63521557784064e+08    3.12491056031377e-02
+    4.73654365677000e+11    1.63525653666834e+08    3.13233533004638e-02
+    4.73723524352000e+11    1.63534115704376e+08    3.12490847090078e-02
+    4.74432361728000e+11    1.63620641170030e+08    3.12490697051544e-02
+    4.74436556032000e+11    1.63621153154788e+08    3.12490471084463e-02
+    4.74998592768000e+11    1.63689759062757e+08    3.12492268624851e-02
+    4.75132810496000e+11    1.63706142657410e+08    3.12491032148046e-02
+    4.75166364928000e+11    1.63710238539867e+08    3.12433738149293e-02
+    4.75835600192000e+11    1.63791914975505e+08    3.12491139184203e-02
+    4.75869154624000e+11    1.63796010859364e+08    3.12560650941609e-02
+    4.76418635008000e+11    1.63863099119717e+08    3.12245323179526e-02
+    4.76573973824000e+11    1.63882045923937e+08    3.12491053697158e-02
+    4.77856148800000e+11    1.64038556943185e+08    3.12471454248749e-02
+    4.78502588269000e+11    1.64117460802936e+08    3.12491032509986e-02
+    4.78519758701000e+11    1.64119556742789e+08    3.12491039060771e-02
+    4.78535290733000e+11    1.64121452688421e+08    3.12491072607892e-02
+    4.78535319405000e+11    1.64121456188321e+08    3.12491053287193e-02
+    4.78587136621000e+11    1.64127781350980e+08    3.13221364268200e-02
+    4.78656787712000e+11    1.64136303307912e+08    3.12491118656908e-02
+    4.78690342144000e+11    1.64140399191502e+08    3.12491061736182e-02
+    4.78723896576000e+11    1.64144495074347e+08    3.12491136230739e-02
+    4.79361430784000e+11    1.64222316866942e+08    3.12491126667283e-02
+    4.79394985216000e+11    1.64226412750637e+08    3.12491400339588e-02
+    4.79965410560000e+11    1.64296042834440e+08    3.12427441632338e-02
+    4.80667396768000e+11    1.64381714613748e+08    3.12490848912148e-02
+    4.80734505632000e+11    1.64389906373857e+08    3.12491161682829e-02
+    4.80768060064000e+11    1.64394002258012e+08    3.12491177014635e-02
+    4.80801614496000e+11    1.64398098142367e+08    3.12491191664321e-02
+    4.80835168928000e+11    1.64402194026915e+08    3.12491216825038e-02
+    4.81338485408000e+11    1.64463632300072e+08    3.12491202191723e-02
+    4.81372039840000e+11    1.64467728184758e+08    3.12491229885836e-02
+    4.81439148704000e+11    1.64475919954854e+08    3.12491234158188e-02
+    4.81472703136000e+11    1.64480015839959e+08    3.12491239803876e-02
+    4.81506257568000e+11    1.64484111725137e+08    3.12491233623859e-02
+    4.81539812000000e+11    1.64488207610234e+08    3.12491169828152e-02
+    4.82781325984000e+11    1.64639755327898e+08    3.12491208676420e-02
+    4.82814880416000e+11    1.64643851212668e+08    3.12481272565804e-02
+    4.83457065173000e+11    1.64722238208797e+08    3.12491071221134e-02
+    4.83485814997000e+11    1.64725747608523e+08    3.12491069773369e-02
+    4.83504775381000e+11    1.64728062042382e+08    3.12491126358509e-02
+    4.83504795861000e+11    1.64728064542311e+08    3.12491078044907e-02
+    4.83519369429000e+11    1.64729843491520e+08    3.12491093011431e-02
+    4.83552923861000e+11    1.64733939374775e+08    3.13235051325115e-02
+    4.83621516544000e+11    1.64742332200001e+08    3.12491011450220e-02
+    4.83655070976000e+11    1.64746428082187e+08    3.12407963486807e-02
+    4.84192350880000e+11    1.64811994691808e+08    3.12491128267434e-02
+    4.84224332448000e+11    1.64815898580975e+08    3.12491448423771e-02
+    4.84291441312000e+11    1.64824090356801e+08    3.12491170216163e-02
+    4.84324995744000e+11    1.64828186241067e+08    3.12491183719885e-02
+    4.84358550176000e+11    1.64832282125510e+08    3.12491146380848e-02
+    4.84928975520000e+11    1.64901912152726e+08    3.12491821764525e-02
+    4.84962529952000e+11    1.64906008045532e+08    3.12491193495996e-02
+    4.85600064160000e+11    1.64983829852388e+08    3.12491211720953e-02
+    4.85633618592000e+11    1.64987925737199e+08    3.12490937592429e-02
+    4.85700727456000e+11    1.64996117499633e+08    3.12491222855442e-02
+    4.85734281888000e+11    1.65000213384589e+08    3.12491224228779e-02
+    4.85767836320000e+11    1.65004309269563e+08    3.12491180326191e-02
+    4.86304707232000e+11    1.65069843419944e+08    3.12491202103047e-02
+    4.86338261664000e+11    1.65073939304628e+08    3.12491516509681e-02
+    4.86405370528000e+11    1.65082131082238e+08    3.12491227969076e-02
+    4.86438924960000e+11    1.65086226967262e+08    3.12491214078818e-02
+    4.86472479392000e+11    1.65090322852103e+08    3.12491210875123e-02
+    4.86506033824000e+11    1.65094418736902e+08    3.12491158515640e-02
+    4.87713993376000e+11    1.65241870564966e+08    3.12395956427764e-02
+    4.87780786981000e+11    1.65250021366575e+08    3.12491100780790e-02
+    4.87814341413000e+11    1.65254117249931e+08    3.12491110698829e-02
+    4.87847895845000e+11    1.65258213133417e+08    3.12491123897871e-02
+    4.87881450277000e+11    1.65262309017076e+08    3.12491118982980e-02
+    4.87914996517000e+11    1.65266403900699e+08    3.12491085759878e-02
+    4.88418312997000e+11    1.65327842148088e+08    3.12491056345845e-02
+    4.88442278693000e+11    1.65330767564361e+08    3.12491132644936e-02
+    4.88442409765000e+11    1.65330783563907e+08    3.12491057835110e-02
+    4.88451867429000e+11    1.65331938030871e+08    3.12491074532772e-02
+    4.88485421861000e+11    1.65336033913883e+08    3.12491093303606e-02
+    4.88552530725000e+11    1.65344225680400e+08    3.12491110923929e-02
+    4.88586085157000e+11    1.65348321563889e+08    3.12491115960256e-02
+    4.88619639589000e+11    1.65352417447444e+08    3.12491086826109e-02
+    4.89122956069000e+11    1.65413855695043e+08    3.12491063471043e-02
+    4.89156510501000e+11    1.65417951577910e+08    3.12491079835127e-02
+    4.89223619365000e+11    1.65426143344073e+08    3.12491105355548e-02
+    4.89257173797000e+11    1.65430239227489e+08    3.12585873583528e-02
+    4.89324442272000e+11    1.65438452967732e+08    3.12491192033235e-02
+    4.89861313184000e+11    1.65503987120568e+08    3.12491515026068e-02
+    4.89961976480000e+11    1.65516274786925e+08    3.12491331947058e-02
+    4.89995530912000e+11    1.65520370673311e+08    3.12491235320870e-02
+    4.90565956256000e+11    1.65590000720344e+08    3.12491295323980e-02
+    4.90599510688000e+11    1.65594096606250e+08    3.12491595500433e-02
+    4.90666619552000e+11    1.65602288385931e+08    3.12491304327978e-02
+    4.90700173984000e+11    1.65606384271956e+08    3.12491302952367e-02
+    4.90733728416000e+11    1.65610480157962e+08    3.12491244667683e-02
+    4.91270599328000e+11    1.65676014321835e+08    3.12491284714724e-02
+    4.91304153760000e+11    1.65680110207602e+08    3.12491283496001e-02
+    4.91371262624000e+11    1.65688301979104e+08    3.12491296922417e-02
+    4.91404817056000e+11    1.65692397865031e+08    3.12491296085682e-02
+    4.91438371488000e+11    1.65696493750948e+08    3.12491244466450e-02
+    4.92679885472000e+11    1.65848041504808e+08    3.12491278150446e-02
+    4.92713439904000e+11    1.65852137390489e+08    3.12491277770732e-02
+    4.92780548768000e+11    1.65860329161841e+08    3.12491283416421e-02
+    4.92814103200000e+11    1.65864425047591e+08    3.12491276165474e-02
+    4.92847657632000e+11    1.65868520933246e+08    3.12478935442159e-02
+    4.93366088165000e+11    1.65931801644595e+08    3.12491101171074e-02
+    4.93384372709000e+11    1.65934033581036e+08    3.12491101401246e-02
+    4.93399757285000e+11    1.65935911527559e+08    3.12489786495765e-02
+    4.93399769573000e+11    1.65935913027509e+08    3.12491092799803e-02
+    4.93417927141000e+11    1.65938129464332e+08    3.12491109309576e-02
+    4.93451481573000e+11    1.65942225347800e+08    3.12491118695561e-02
+    4.93485036005000e+11    1.65946321231391e+08    3.12585962545206e-02
+    4.93552243360000e+11    1.65954527510982e+08    3.12491227451517e-02
+    4.94089114272000e+11    1.66020061671246e+08    3.12491289289483e-02
+    4.94122668704000e+11    1.66024157557073e+08    3.12491315187344e-02
+    4.94189777568000e+11    1.66032349329405e+08    3.12491309582583e-02
+    4.94223332000000e+11    1.66036445215498e+08    3.12491318964021e-02
+    4.94256886432000e+11    1.66040541101714e+08    3.12491304316609e-02
+    4.94290440864000e+11    1.66044636987738e+08    3.12491211379590e-02
+    4.94793757344000e+11    1.66106075259825e+08    3.12491274410149e-02
+    4.94827311776000e+11    1.66110171145457e+08    3.12491288999013e-02
+    4.94961529504000e+11    1.66126554688750e+08    3.12491883692019e-02
+    4.94995083936000e+11    1.66130650582368e+08    3.12491242154920e-02
+    4.95498400416000e+11    1.66192088860505e+08    3.12491250604126e-02
+    4.95531954848000e+11    1.66196184745825e+08    3.12491281425764e-02
+    4.95599063712000e+11    1.66204376517273e+08    3.12491277836671e-02
+    4.95632618144000e+11    1.66208472402950e+08    3.12491287220382e-02
+    4.95666172576000e+11    1.66212568288750e+08    3.12491284860243e-02
+    4.95699727008000e+11    1.66216664174519e+08    3.12491230882036e-02
+    4.96203043488000e+11    1.66278102450440e+08    3.12491262425283e-02
+    4.96236597920000e+11    1.66282198335915e+08    3.12491272536590e-02
+    4.96303706784000e+11    1.66290390107130e+08    3.12491279894402e-02
+    4.96337261216000e+11    1.66294485992833e+08    3.12491282493284e-02
+    4.96370815648000e+11    1.66298581878571e+08    3.12491271201907e-02
+    4.96404370080000e+11    1.66302677764161e+08    3.12491219468418e-02
+    4.97746698912000e+11    1.66466531660114e+08    3.12491266922734e-02
+    4.97780253344000e+11    1.66470627545648e+08    3.12491257616330e-02
+    4.97813807776000e+11    1.66474723431060e+08    3.12479325637190e-02
+    4.98348450885000e+11    1.66539983164715e+08    3.12490885456403e-02
+    4.98348500037000e+11    1.66539989164540e+08    3.12491085822299e-02
+    4.98350433349000e+11    1.66540225157808e+08    3.12491092447807e-02
+    4.98384252229000e+11    1.66544353321384e+08    3.12491104388649e-02
+    4.98417536325000e+11    1.66548416205727e+08    3.12585189988619e-02
+    4.98485093024000e+11    1.66556665121193e+08    3.12491069018961e-02
+    4.98518647456000e+11    1.66560761004133e+08    3.12491276529807e-02
+    4.99089072800000e+11    1.66630391060348e+08    3.12491657240344e-02
+    4.99156181664000e+11    1.66638582841648e+08    3.12396197052217e-02
+    4.99189940560000e+11    1.66642702431776e+08    3.12588416002636e-02
+    4.99223040672000e+11    1.66646744115986e+08    3.12491299124598e-02
+    4.99793466016000e+11    1.66716374177236e+08    3.12491033612332e-02
+    4.99860574880000e+11    1.66724565942188e+08    3.12491329327713e-02
+    4.99894129312000e+11    1.66728661828540e+08    3.12491353665791e-02
+    4.99927683744000e+11    1.66732757715210e+08    3.12491322526398e-02
+    5.00464554656000e+11    1.66798291895412e+08    3.12491321164998e-02
+    5.00498109088000e+11    1.66802387781657e+08    3.12491027773376e-02
+    5.00565217952000e+11    1.66810579546456e+08    3.12395749947097e-02
+    5.00598720848000e+11    1.66814667891112e+08    3.12491338554537e-02
+    5.00632275280000e+11    1.66818763777585e+08    3.12506227723507e-02
+    5.01276362048000e+11    1.66897389217505e+08    3.12256693298879e-02
+    5.01303579296000e+11    1.66900709048700e+08    3.12399288592694e-02
+    5.01338491216000e+11    1.66904969384236e+08    3.12498426287668e-02
+    5.02686033216000e+11    1.67069463428907e+08    3.12491281179064e-02
+    5.02719587648000e+11    1.67073559314627e+08    3.12491275683442e-02
+    5.02753142080000e+11    1.67077655200276e+08    3.12466774579128e-02
+    5.03275170277000e+11    1.67141372570181e+08    3.12491101559281e-02
+    5.03282932197000e+11    1.67142320043201e+08    3.12491089111713e-02
+    5.03307917797000e+11    1.67145369956230e+08    3.12491254881024e-02
+    5.03307925989000e+11    1.67145370956202e+08    3.12491101645040e-02
+    5.03316486629000e+11    1.67146415926446e+08    3.12491117983882e-02
+    5.03350041061000e+11    1.67150511810028e+08    3.12491135684922e-02
+    5.03383595493000e+11    1.67154607693841e+08    3.12585566499883e-02
+    5.03450882720000e+11    1.67162823715705e+08    3.12491168035649e-02
+    5.03484437152000e+11    1.67166919599942e+08    3.12491461662224e-02
+    5.03987753632000e+11    1.67228357921237e+08    3.12491494419191e-02
+    5.04021308064000e+11    1.67232453809753e+08    3.12491207208723e-02
+    5.04088416928000e+11    1.67240645579255e+08    3.12491523025074e-02
+    5.04121971360000e+11    1.67244741468145e+08    3.12491512422639e-02
+    5.04155525792000e+11    1.67248837356897e+08    3.12491515780948e-02
+    5.04189080224000e+11    1.67252933245693e+08    3.12491468018531e-02
+    5.04692396704000e+11    1.67314371568237e+08    3.12491511218695e-02
+    5.04826614432000e+11    1.67330755123180e+08    3.12491518068327e-02
+    5.04860168864000e+11    1.67334851012006e+08    3.12491517684066e-02
+    5.04893723296000e+11    1.67338946900826e+08    3.12491506597894e-02
+    5.05430594208000e+11    1.67404481119631e+08    3.12491515469446e-02
+    5.05464148640000e+11    1.67408577008423e+08    3.12491512685256e-02
+    5.05531257504000e+11    1.67416768785933e+08    3.12491511429016e-02
+    5.05564811936000e+11    1.67420864674671e+08    3.12491511044755e-02
+    5.05598366368000e+11    1.67424960563405e+08    3.12491425505215e-02
+    5.06135237280000e+11    1.67490494765203e+08    3.12491502347712e-02
+    5.06168791712000e+11    1.67494590653823e+08    3.12491509288293e-02
+    5.06235900576000e+11    1.67502782431244e+08    3.12491517147464e-02
+    5.06269455008000e+11    1.67506878320057e+08    3.12491503871115e-02
+    5.06303009440000e+11    1.67510974208697e+08    3.12491468173632e-02
+    5.07544523424000e+11    1.67662522071048e+08    3.12396322382154e-02
+    5.07611459365000e+11    1.67670690251440e+08    3.12491196480096e-02
+    5.07645013797000e+11    1.67674786136050e+08    3.12491186793977e-02
+    5.07678568229000e+11    1.67678882020534e+08    3.12491181450696e-02
+    5.07712122661000e+11    1.67682977904947e+08    3.12491140527322e-02
+    5.08248989477000e+11    1.67748511546995e+08    3.12491115642962e-02
+    5.08260425509000e+11    1.67749907507307e+08    3.12492186203599e-02
+    5.08260433701000e+11    1.67749908507282e+08    3.12491120399977e-02
+    5.08282543909000e+11    1.67752607430591e+08    3.12491135368873e-02
+    5.08316098341000e+11    1.67756703314400e+08    3.12491156539636e-02
+    5.08383207205000e+11    1.67764895082574e+08    3.12491166494056e-02
+    5.08416761637000e+11    1.67768990966792e+08    3.12491166725977e-02
+    5.08450316069000e+11    1.67773086851012e+08    3.12491157064301e-02
+    5.08953628453000e+11    1.67834524612434e+08    3.12491163012011e-02
+    5.09020757797000e+11    1.67842718880707e+08    3.12491206623235e-02
+    5.09054312229000e+11    1.67846814765451e+08    3.12491210872137e-02
+    5.09087846181000e+11    1.67850908150320e+08    3.12491208608208e-02
+    5.09121400613000e+11    1.67855004035090e+08    3.12491206168488e-02
+    5.09154955045000e+11    1.67859099919827e+08    3.12491150069794e-02
+    5.09658271525000e+11    1.67920538179860e+08    3.12491148079593e-02
+    5.09725388581000e+11    1.67928730947784e+08    3.12491167944700e-02
+    5.09758943013000e+11    1.67932826832021e+08    3.12491175725427e-02
+    5.09792497445000e+11    1.67936922716359e+08    3.12681852188189e-02
+    5.09859611968000e+11    1.67945120174703e+08    3.12491296791753e-02
+    5.10362928448000e+11    1.68006558463583e+08    3.12491368459436e-02
+    5.10469883200000e+11    1.68019614102964e+08    3.12491350971413e-02
+    5.10503437632000e+11    1.68023709989599e+08    3.12491317781678e-02
+    5.10536992064000e+11    1.68027805875800e+08    3.12491320682966e-02
+    5.10570546496000e+11    1.68031901762038e+08    3.12491263481237e-02
+    5.11067571520000e+11    1.68092572065839e+08    3.12491357329361e-02
+    5.11174526272000e+11    1.68105627704756e+08    3.12491327697444e-02
+    5.11208080704000e+11    1.68109723591086e+08    3.12491372026740e-02
+    5.11235343680000e+11    1.68113051499202e+08    3.12491353408859e-02
+    5.11268898112000e+11    1.68117147385869e+08    3.12491353168888e-02
+    5.12510412096000e+11    1.68268695192446e+08    3.12491356467945e-02
+    5.12583812416000e+11    1.68277654944619e+08    3.12491335118046e-02
+    5.12611075392000e+11    1.68280982852341e+08    3.12491356762621e-02
+    5.12644629824000e+11    1.68285078739053e+08    3.12491370114003e-02
+    5.12678184256000e+11    1.68289174625939e+08    3.12466029039255e-02
+    5.13184336933000e+11    1.68350954124795e+08    3.12491123259668e-02
+    5.13212202021000e+11    1.68354355528173e+08    3.12491625547409e-02
+    5.13212222501000e+11    1.68354358028106e+08    3.12491113693605e-02
+    5.13215040549000e+11    1.68354702018324e+08    3.12491118233079e-02
+    5.13248866085000e+11    1.68358830994718e+08    3.12741820338166e-02
+    5.13351199360000e+11    1.68371332516087e+08    3.12490888643721e-02
+    5.13930013312000e+11    1.68441986456017e+08    3.12491046268416e-02
+    5.14636753536000e+11    1.68528255984157e+08    3.12490941730159e-02
+    5.15345590912000e+11    1.68614781476016e+08    3.12502238246489e-02
+    5.17623903488000e+11    1.68892897796104e+08    3.12491534386936e-02
+    5.17628097792000e+11    1.68893409782234e+08    3.12392349545524e-02
+    5.18147539173000e+11    1.68956796310930e+08    3.12491161538049e-02
+    5.18177771749000e+11    1.68960486706551e+08    3.12491516981806e-02
+    5.18177800421000e+11    1.68960490206456e+08    3.12491153547568e-02
+    5.18181093605000e+11    1.68960892195076e+08    3.12491163042523e-02
+    5.18214648037000e+11    1.68964988079248e+08    3.12491186921307e-02
+    5.18248202469000e+11    1.68969083963734e+08    3.12571716696767e-02
+    5.18882940160000e+11    1.69046584373784e+08    3.12489688676578e-02
+    5.18887134464000e+11    1.69047096356889e+08    3.12491244288876e-02
+    5.19591777536000e+11    1.69133109946869e+08    3.12489814405126e-02
+    5.19595971840000e+11    1.69133621930181e+08    3.12491021137569e-02
+    5.20309003520000e+11    1.69220659429317e+08    3.12490639589669e-02
+    5.20313197824000e+11    1.69221171413981e+08    3.12490790805090e-02
+    5.21013646592000e+11    1.69306672894227e+08    3.12490315482137e-02
+    5.21017840896000e+11    1.69307184878360e+08    3.12491092475623e-02
+    5.22422932736000e+11    1.69478699989341e+08    3.12416703899119e-02
+    5.23113595789000e+11    1.69562986971576e+08    3.12490947261889e-02
+    5.23128439693000e+11    1.69564798919085e+08    3.12490949779749e-02
+    5.23128542093000e+11    1.69564811418723e+08    3.12490976737717e-02
+    5.23147422093000e+11    1.69567116039676e+08    3.12491010752183e-02
+    5.23180976525000e+11    1.69571211921852e+08    3.12569180830234e-02
+    5.23838379264000e+11    1.69651479045135e+08    3.12490879724479e-02
+    5.24554188032000e+11    1.69738855494990e+08    3.12490934356902e-02
+    5.24558382336000e+11    1.69739367480136e+08    3.12491100583057e-02
+    5.25254636800000e+11    1.69824357059723e+08    3.12491345139279e-02
+    5.25263025408000e+11    1.69825381031363e+08    3.12491322958219e-02
+    5.25967668480000e+11    1.69911394642996e+08    3.12490190353856e-02
+    5.25971862784000e+11    1.69911906626924e+08    3.12491016313808e-02
+    5.27439869184000e+11    1.70091101475319e+08    3.12490310589055e-02
+    5.27444063488000e+11    1.70091613459444e+08    3.12491928634699e-02
+    5.27448257792000e+11    1.70092125446220e+08    3.12491023484784e-02
+    5.27477617920000e+11    1.70095709343270e+08    3.12490847682056e-02
+    5.27481812224000e+11    1.70096221328275e+08    3.12488637497154e-02
+    5.27544726784000e+11    1.70103901049030e+08    3.12395143099505e-02
+    5.28077730085000e+11    1.70168943096877e+08    3.12490621581674e-02
+    5.28077738277000e+11    1.70168944096847e+08    3.12491150919898e-02
+    5.28079651109000e+11    1.70169177590235e+08    3.12491156078067e-02
+    5.28113205541000e+11    1.70173273474316e+08    3.12491170043359e-02
+    5.28146759973000e+11    1.70177369358580e+08    3.13252278591778e-02
+    5.28214013184000e+11    1.70185598742013e+08    3.12491385707751e-02
+    5.28792827136000e+11    1.70256252794329e+08    3.12490861769544e-02
+    5.29510053120000e+11    1.70343802234103e+08    3.12491302148655e-02
+    5.30214696192000e+11    1.70429815840009e+08    3.12490851430770e-02
+    5.30931922176000e+11    1.70517365276888e+08    3.12453777345078e-02
+    5.32307514549000e+11    1.70685259430415e+08    3.12490981090450e-02
+    5.32355138741000e+11    1.70691072762635e+08    3.12491077844489e-02
+    5.32408446389000e+11    1.70697579858096e+08    3.12491115547099e-02
+    5.32441730485000e+11    1.70701642742584e+08    3.12491139216036e-02
+    5.32475284917000e+11    1.70705738626444e+08    3.12491150882307e-02
+    5.33012159925000e+11    1.70771273270635e+08    3.12491126589535e-02
+    5.33017972149000e+11    1.70771982750489e+08    3.12491249293089e-02
+    5.33017992629000e+11    1.70771985250419e+08    3.12491136880473e-02
+    5.33045714357000e+11    1.70775369154442e+08    3.12491149361449e-02
+    5.33079268789000e+11    1.70779465038435e+08    3.12491166068867e-02
+    5.33146377653000e+11    1.70787656806859e+08    3.12491175984633e-02
+    5.33179932085000e+11    1.70791752691201e+08    3.12491190010460e-02
+    5.33716807093000e+11    1.70857287343598e+08    3.12491185242531e-02
+    5.33770759605000e+11    1.70863873157825e+08    3.12491199320616e-02
+    5.33783915957000e+11    1.70865479112597e+08    3.12491208355837e-02
+    5.33817459125000e+11    1.70869573622401e+08    3.12491223377433e-02
+    5.33851025845000e+11    1.70873671007322e+08    3.12491234731169e-02
+    5.33884580277000e+11    1.70877766892434e+08    3.12491162395503e-02
+    5.34421451189000e+11    1.70943301039054e+08    3.12491133098391e-02
+    5.34478561717000e+11    1.70950272341244e+08    3.12491165533507e-02
+    5.34488820405000e+11    1.70951524587092e+08    3.12491147015145e-02
+    5.34522108597000e+11    1.70955587971975e+08    3.12491156987562e-02
+    5.34555663029000e+11    1.70959683856068e+08    3.12571416435111e-02
+    5.35193294080000e+11    1.71037537465745e+08    3.12491203219452e-02
+    5.35226848512000e+11    1.71041633350444e+08    3.12451134000445e-02
+    5.35865174656000e+11    1.71119541837770e+08    3.13144744391647e-02
+    5.35904490752000e+11    1.71124351067783e+08    3.12491361608928e-02
+    5.35933850880000e+11    1.71127934968711e+08    3.12490943750772e-02
+    5.37310008576000e+11    1.71295918100419e+08    3.12491178651726e-02
+    5.37343563008000e+11    1.71300013984796e+08    3.12491340241650e-02
+    5.37377117440000e+11    1.71304109871291e+08    3.12400948024581e-02
+    5.37944654797000e+11    1.71373367374559e+08    3.12490947253536e-02
+    5.37978209229000e+11    1.71377463255902e+08    3.12490961186995e-02
+    5.37982403533000e+11    1.71377975241093e+08    3.12491064891219e-02
+    5.37982444493000e+11    1.71377980240950e+08    3.12491050533880e-02
+    5.38079145165000e+11    1.71389784184146e+08    3.13251295230215e-02
+    5.38112883328000e+11    1.71393912513544e+08    3.12491122471168e-02
+    5.38683308672000e+11    1.71463542535431e+08    3.12490143987816e-02
+    5.38685405824000e+11    1.71463798527357e+08    3.12490978323598e-02
+    5.39394243200000e+11    1.71550324029349e+08    3.12491102307315e-02
+    5.40103080576000e+11    1.71636849565670e+08    3.12491146409489e-02
+    5.40161800832000e+11    1.71644017362590e+08    3.12491766271705e-02
+    5.40163897984000e+11    1.71644273355845e+08    3.12471213778209e-02
+    5.40805770560000e+11    1.71722619724171e+08    3.12491045726724e-02
+    5.42221348160000e+11    1.71895414772816e+08    3.12472608268602e-02
+    5.42910712205000e+11    1.71979558281092e+08    3.12490946840103e-02
+    5.42925224333000e+11    1.71981329729772e+08    3.12490938231349e-02
+    5.42925232525000e+11    1.71981330729743e+08    3.12490985953572e-02
+    5.42944535437000e+11    1.71983686974275e+08    3.12491011089060e-02
+    5.42977819533000e+11    1.71987749857405e+08    3.12491075876551e-02
+    5.43011373965000e+11    1.71991845740435e+08    3.12496351374473e-02
+    5.43078828394000e+11    1.72000079827523e+08    3.12513356259496e-02
+    5.43638252864000e+11    1.72068371866075e+08    3.12473441406767e-02
+    5.44342226282000e+11    1.72154298817865e+08    3.12490859845032e-02
+    5.44342324586000e+11    1.72154310817514e+08    3.12491065229882e-02
+    5.44343405930000e+11    1.72154442813740e+08    3.12491074852005e-02
+    5.44353891690000e+11    1.72155722777182e+08    3.12491124817942e-02
+    5.45051209066000e+11    1.72240842109675e+08    3.12491057380352e-02
+    5.45058549098000e+11    1.72241738084035e+08    3.12508824734473e-02
+    5.45762733376000e+11    1.72327700506345e+08    3.12492402299540e-02
+    5.45763781952000e+11    1.72327828503233e+08    3.12491068968495e-02
+    5.47178310976000e+11    1.72500495568388e+08    3.12472952990677e-02
+    5.47876772826000e+11    1.72585749645271e+08    3.12477682026741e-02
+    5.47880488429000e+11    1.72586203177698e+08    3.12490891665220e-02
+    5.47880517101000e+11    1.72586206677596e+08    3.12491208864108e-02
+    5.47910592237000e+11    1.72589877855567e+08    3.12491196723386e-02
+    5.47944146669000e+11    1.72593973740181e+08    3.12491180932284e-02
+    5.47977701101000e+11    1.72598069624587e+08    3.12501610643971e-02
+    5.48011339626000e+11    1.72602175911010e+08    3.12490613092614e-02
+    5.48589796314000e+11    1.72672786178620e+08    3.12491099232538e-02
+    5.49297589210000e+11    1.72759184217721e+08    3.12491233196665e-02
+    5.50005412789000e+11    1.72845586039240e+08    3.12493129599068e-02
+    5.50713523624000e+11    1.72932023449760e+08    3.12491092328732e-02
+    5.50728990120000e+11    1.72933911395943e+08    3.12491206868799e-02
+    5.50762544552000e+11    1.72938007280690e+08    3.12489869062430e-02
+    5.52104626925000e+11    1.73101830384210e+08    3.12490989849846e-02
+    5.52133303021000e+11    1.73105330783282e+08    3.12490801193884e-02
+    5.52133331693000e+11    1.73105334283178e+08    3.12490989053995e-02
+    5.52138453485000e+11    1.73105959483900e+08    3.12491075796970e-02
+    5.52172007917000e+11    1.73110055366929e+08    3.12491131492152e-02
+    5.52205562349000e+11    1.73114151250688e+08    3.12491106694779e-02
+    5.52239116781000e+11    1.73118247134121e+08    3.12535800657276e-02
+    5.52810420864000e+11    1.73187994391543e+08    3.12491028571458e-02
+    5.52843975296000e+11    1.73192090273953e+08    3.12491084265124e-02
+    5.52944638592000e+11    1.73204377923372e+08    3.12491096015037e-02
+    5.52978193024000e+11    1.73208473806665e+08    3.12491003774085e-02
+    5.53011747456000e+11    1.73212569688750e+08    3.12491162470674e-02
+    5.53521355392000e+11    1.73274775929502e+08    3.12425119833586e-02
+    5.53716194624000e+11    1.73298554316379e+08    3.12514868705839e-02
+    5.54252229248000e+11    1.73363991343778e+08    3.12114864006984e-02
+    5.54286169408000e+11    1.73368129323631e+08    3.12395108082435e-02
+    5.54353106592000e+11    1.73376297623955e+08    3.12490986046535e-02
+    5.54990427808000e+11    1.73454093379899e+08    3.12491370862062e-02
+    5.55057536672000e+11    1.73462285153691e+08    3.12481706875146e-02
+    5.55661832148000e+11    1.73536047373143e+08    3.12491055273464e-02
+    5.55762495444000e+11    1.73548335021422e+08    3.12490452622205e-02
+    5.57070692349000e+11    1.73708022147580e+08    3.12491075899012e-02
+    5.57085081597000e+11    1.73709778597419e+08    3.12491096556187e-02
+    5.57085114365000e+11    1.73709782597305e+08    3.12491088664569e-02
+    5.57104246781000e+11    1.73712118030705e+08    3.12491124850567e-02
+    5.57137801213000e+11    1.73716213914377e+08    3.12491130348462e-02
+    5.57171355645000e+11    1.73720309798121e+08    3.12491106581092e-02
+    5.57238464509000e+11    1.73728501564985e+08    3.12491090137428e-02
+    5.57272018941000e+11    1.73732597448202e+08    3.12592067840004e-02
+    5.57778744576000e+11    1.73794471828699e+08    3.12488887072865e-02
+    5.69252215424000e+11    1.75194992194384e+08    3.12536831131124e-02
+    5.69822024960000e+11    1.75264557220450e+08    3.11341361154657e-02
+    5.69855585600000e+11    1.75268638788942e+08    3.12491155298176e-02
+    5.69889140032000e+11    1.75272734673013e+08    3.12491174679508e-02
+    5.69922694464000e+11    1.75276830557337e+08    3.12510329352679e-02
+    5.70593340032000e+11    1.75358699177390e+08    3.12118057862145e-02
+    5.70627781952000e+11    1.75362898374726e+08    3.12683824577622e-02
+    5.70694462080000e+11    1.75371042826853e+08    3.12469418167484e-02
+    5.71935308448000e+11    1.75522498507574e+08    3.12491123179370e-02
+    5.71968862880000e+11    1.75526594391223e+08    3.12491115550984e-02
+    5.72002417312000e+11    1.75530690274773e+08    3.12492520155056e-02
+    5.72639995560000e+11    1.75608517787864e+08    3.12491118756952e-02
+    5.72707104424000e+11    1.75616709555048e+08    3.12491119213973e-02
+    5.72740658856000e+11    1.75620805438646e+08    3.12491113261331e-02
+    5.72774213288000e+11    1.75624901322165e+08    3.12491108609265e-02
+    5.72807767720000e+11    1.75628997205624e+08    3.12491100366969e-02
+    5.72841322152000e+11    1.75633093088975e+08    3.12472841594772e-02
+    5.73351826688000e+11    1.75695405121401e+08    3.12497968060002e-02
+    5.74051801728000e+11    1.75780850737687e+08    3.12491126254496e-02
+    5.74144076416000e+11    1.75792114417835e+08    3.12490991127561e-02
+    5.74146173568000e+11    1.75792370410455e+08    3.12490994183463e-02
+    5.74150367872000e+11    1.75792882395700e+08    3.12561798777791e-02
+    5.74184348992000e+11    1.75797031301946e+08    3.12430903929701e-02
+    5.74224226944000e+11    1.75801898139677e+08    3.12491107176286e-02
+    5.74251489920000e+11    1.75805226044972e+08    3.12500656286815e-02
+    5.74753877101000e+11    1.75866552733946e+08    3.12491144391061e-02
+    5.74787431533000e+11    1.75870648617873e+08    3.12491146528373e-02
+    5.74820985965000e+11    1.75874744501829e+08    3.12491066285728e-02
+    5.74921726170000e+11    1.75887041538579e+08    3.12491146116675e-02
+    5.74989031130000e+11    1.75895257243301e+08    3.12491075398352e-02
+    5.75458511725000e+11    1.75952565249555e+08    3.12491042023351e-02
+    5.75490751341000e+11    1.75956500636742e+08    3.12491250224411e-02
+    5.75490767725000e+11    1.75956502636686e+08    3.12491058715698e-02
+    5.75492066157000e+11    1.75956661132151e+08    3.12491078607281e-02
+    5.75525889389000e+11    1.75960789826780e+08    3.12491088349823e-02
+    5.75559181677000e+11    1.75964853710885e+08    3.12479384898323e-02
+    5.75660119712000e+11    1.75977174435530e+08    3.12486183942002e-02
+    5.76355302016000e+11    1.76062031804796e+08    3.12491113181750e-02
+    5.76357399168000e+11    1.76062287797516e+08    3.12491280419636e-02
+    5.76359496320000e+11    1.76062543790373e+08    3.12491142079428e-02
+    5.76365787776000e+11    1.76063311768603e+08    3.12614821324676e-02
+    5.76399703888000e+11    1.76067453440202e+08    3.12479750477811e-02
+    5.76774429312000e+11    1.76113193325745e+08    3.12491116472721e-02
+    5.76801692288000e+11    1.76116521231139e+08    3.12491181855421e-02
+    5.76835246720000e+11    1.76120617115558e+08    3.12631665448493e-02
+    5.76867873704000e+11    1.76124601579756e+08    3.12463960647179e-02
+    5.76901684896000e+11    1.76128728446539e+08    3.12491179643075e-02
+    5.76935239328000e+11    1.76132824330929e+08    3.12384867762238e-02
+    5.76968931968000e+11    1.76136935686746e+08    3.12491228014551e-02
+    5.77002486400000e+11    1.76141031571770e+08    3.12617262840947e-02
+    5.77035823952000e+11    1.76145102624214e+08    3.12437143330317e-02
+    5.77069141312000e+11    1.76149168866706e+08    3.12544457099625e-02
+    5.77102779216000e+11    1.76153275640317e+08    3.12486560890023e-02
+    5.77488670016000e+11    1.76200379425072e+08    3.12491215117916e-02
+    5.77505447232000e+11    1.76202427367499e+08    3.12491240754298e-02
+    5.77539001664000e+11    1.76206523252690e+08    3.12554026960151e-02
+    5.77572474280000e+11    1.76210609971801e+08    3.12500866781061e-02
+    5.77602709101000e+11    1.76214300756085e+08    3.12495622783899e-02
+    5.77602713197000e+11    1.76214301256078e+08    3.12491246797191e-02
+    5.77606002285000e+11    1.76214702744832e+08    3.12491248246334e-02
+    5.77673372781000e+11    1.76222926452016e+08    3.12457502177859e-02
+    5.77709258400000e+11    1.76227306425015e+08    3.12491245919470e-02
+    5.77740715680000e+11    1.76231146317445e+08    3.12491861789113e-02
+    5.77774270112000e+11    1.76235242210775e+08    3.12491327576936e-02
+    5.77807824544000e+11    1.76239338097104e+08    3.12491974651797e-02
+    5.78311141024000e+11    1.76300776519257e+08    3.12492201294390e-02
+    5.78344695456000e+11    1.76304872417037e+08    3.12492156563904e-02
+    5.78422290080000e+11    1.76314344179300e+08    3.12492126150491e-02
+    5.78445358752000e+11    1.76317160108347e+08    3.12492141865732e-02
+    5.78478913184000e+11    1.76321256005349e+08    3.12492132219500e-02
+    5.79001104032000e+11    1.76384998400473e+08    3.12492156720379e-02
+    5.79015784096000e+11    1.76386790355496e+08    3.12492181765265e-02
+    5.79049338528000e+11    1.76390886253021e+08    3.12492209535170e-02
+    5.79099670176000e+11    1.76397030099854e+08    3.12492195657796e-02
+    5.79116447392000e+11    1.76399078048708e+08    3.12492218843090e-02
+    5.79150001824000e+11    1.76403173946718e+08    3.12492207858668e-02
+    5.79183556256000e+11    1.76407269844585e+08    3.12493059345487e-02
+    5.79755280208000e+11    1.76477058816016e+08    3.12491382358075e-02
+    5.79788834640000e+11    1.76481154703062e+08    3.12491341007899e-02
+    5.79822389072000e+11    1.76485250589567e+08    3.12491342458543e-02
+    5.79855943504000e+11    1.76489346476091e+08    3.12491335819232e-02
+    5.79889497936000e+11    1.76493442362528e+08    3.12473198832002e-02
+    5.79923750560000e+11    1.76497623232446e+08    3.12491845148194e-02
+    5.80416581280000e+11    1.76557781662539e+08    3.12492159027897e-02
+    5.80424969888000e+11    1.76558805636846e+08    3.12492192599620e-02
+    5.80458524320000e+11    1.76562901534513e+08    3.12491612539816e-02
+    5.80492078752000e+11    1.76566997424576e+08    3.12492200619917e-02
+    5.80515147424000e+11    1.76569813354295e+08    3.12492180819390e-02
+    5.80525633184000e+11    1.76571093322267e+08    3.12492088306726e-02
+    5.80592742048000e+11    1.76579285114867e+08    3.12492080374795e-02
+    5.80626296480000e+11    1.76583381011063e+08    3.12492110415328e-02
+    5.81117030048000e+11    1.76643283498686e+08    3.12492159749430e-02
+    5.81129612960000e+11    1.76644819460150e+08    3.12492175892203e-02
+    5.81163167392000e+11    1.76648915357598e+08    3.12492569151800e-02
+    5.81215596192000e+11    1.76655315205414e+08    3.12492193869340e-02
+    5.81230276256000e+11    1.76657107160651e+08    3.12492185350948e-02
+    5.81263830688000e+11    1.76661203058222e+08    3.12492195425875e-02
+    5.81297385120000e+11    1.76665298955926e+08    3.12492158118403e-02
+    5.81330939552000e+11    1.76669394853141e+08    3.12492021855413e-02
+    5.81824294560000e+11    1.76729617315619e+08    3.12491759265724e-02
+    5.81834256032000e+11    1.76730833283552e+08    3.12491599800069e-02
+    5.81867810464000e+11    1.76734929173449e+08    3.12493051052470e-02
+    5.82538499517000e+11    1.76816798575199e+08    3.12491243414379e-02
+    5.82556603837000e+11    1.76819008513272e+08    3.12491245567799e-02
+    5.82556628413000e+11    1.76819011513188e+08    3.12491289774081e-02
+    5.82605877181000e+11    1.76825023158123e+08    3.12491282800238e-02
+    5.82639431613000e+11    1.76829119043865e+08    3.12491266165580e-02
+    5.82672986045000e+11    1.76833214929389e+08    3.12490717032726e-02
+    5.82727555829000e+11    1.76839876082096e+08    3.12491232800058e-02
+    5.82740122357000e+11    1.76841410039059e+08    3.12491240668485e-02
+    5.83167864186000e+11    1.76893623154227e+08    3.12491223914782e-02
+    5.83176031610000e+11    1.76894620126228e+08    3.12491404486755e-02
+    5.83243146941000e+11    1.76902812690309e+08    3.12491286695149e-02
+    5.83276701373000e+11    1.76906908576102e+08    3.12491289206491e-02
+    5.83343810237000e+11    1.76915100347754e+08    3.12491294016581e-02
+    5.83377364669000e+11    1.76919196233643e+08    3.12491291799688e-02
+    5.83410919101000e+11    1.76923292119502e+08    3.12491281274561e-02
+    5.83478027965000e+11    1.76931483890946e+08    3.12491249072500e-02
+    5.83947781821000e+11    1.76988825285172e+08    3.12491295843076e-02
+    5.83981340349000e+11    1.76992921671071e+08    3.12491300170071e-02
+    5.84082003645000e+11    1.77005209328980e+08    3.12486997372464e-02
+    5.84652528960000e+11    1.77074850634687e+08    3.12509388059164e-02
+    5.84786913437000e+11    1.77091255482605e+08    3.12455361047224e-02
+    5.84820641440000e+11    1.77095372082353e+08    3.12491287988905e-02
+    5.84854195872000e+11    1.77099467968163e+08    3.12491287302237e-02
+    5.84887750304000e+11    1.77103563853964e+08    3.12485183073511e-02
+    5.85424689792000e+11    1.77169105117326e+08    3.12491433756804e-02
+    5.85466632832000e+11    1.77174224976977e+08    3.12491376874580e-02
+    5.85491798656000e+11    1.77177296892208e+08    3.12545076984668e-02
+    5.85558441632000e+11    1.77185433194577e+08    3.12491308666267e-02
+    5.85591996064000e+11    1.77189529080658e+08    3.12491893912465e-02
+    5.86095312544000e+11    1.77250967486936e+08    3.12492236325852e-02
+    5.86128866976000e+11    1.77255063385176e+08    3.12492722537411e-02
+    5.86168712864000e+11    1.77259927271904e+08    3.12492234935724e-02
+    5.86195975840000e+11    1.77263255189209e+08    3.12492243879205e-02
+    5.86229530272000e+11    1.77267351087548e+08    3.12492254024619e-02
+    5.86263084704000e+11    1.77271446986020e+08    3.12492102511440e-02
+    5.86868637344000e+11    1.77345365117917e+08    3.12492227602605e-02
+    5.86900618912000e+11    1.77349269020818e+08    3.12492214507074e-02
+    5.86934173344000e+11    1.77353364918772e+08    3.12485477685195e-02
+    5.87539126912000e+11    1.77427208358097e+08    3.12491386564488e-02
+    5.87572681344000e+11    1.77431304245199e+08    3.12491301037880e-02
+    5.87606235776000e+11    1.77435400131180e+08    3.12546498095119e-02
+    5.87672643232000e+11    1.77443507716266e+08    3.12491306917764e-02
+    5.87706197664000e+11    1.77447603602324e+08    3.12491810292310e-02
+    5.88209514144000e+11    1.77509041992162e+08    3.12492207644937e-02
+    5.88243068576000e+11    1.77513137890026e+08    3.12507332570293e-02
+    5.88284384080000e+11    1.77518181404850e+08    3.12492432223315e-02
+    5.88311647056000e+11    1.77521509324256e+08    3.12492431030478e-02
+    5.88345201488000e+11    1.77525605225048e+08    3.12492452771949e-02
+    5.88378755920000e+11    1.77529701126125e+08    3.12492365853803e-02
+    5.88838032208000e+11    1.77585763756523e+08    3.12492296002079e-02
+    5.88846945104000e+11    1.77586851729701e+08    3.12492305527030e-02
+    5.88880499536000e+11    1.77590947628848e+08    3.12497934861228e-02
+    5.88980953549000e+11    1.77603210000571e+08    3.12491801682881e-02
+    5.89014507981000e+11    1.77607305893114e+08    3.12491529468084e-02
+    5.89048054682000e+11    1.77611400838389e+08    3.12491871188740e-02
+    5.89081609114000e+11    1.77615496731843e+08    3.12491927795691e-02
+    5.89115163546000e+11    1.77619592626039e+08    3.12493006812700e-02
+    5.89618489141000e+11    1.77681032363768e+08    3.12493240667209e-02
+    5.89652043573000e+11    1.77685128275172e+08    3.12493260269093e-02
+    5.89685598005000e+11    1.77689224186833e+08    3.12493286943728e-02
+    5.89699360565000e+11    1.77690904150744e+08    3.12493518456250e-02
+    5.89820089754000e+11    1.77705641294904e+08    3.12492777278403e-02
+    5.90323153320000e+11    1.77767049002282e+08    3.12493338321929e-02
+    5.90356707752000e+11    1.77771144914966e+08    3.12493374865426e-02
+    5.90390262184000e+11    1.77775240828129e+08    3.12477363707462e-02
+    5.90408643408000e+11    1.77777484467355e+08    3.12493410879142e-02
+    5.90425420624000e+11    1.77779532424172e+08    3.12493434985299e-02
+    5.90458975056000e+11    1.77783628338123e+08    3.12474787098466e-02
+    5.90491190944000e+11    1.77787560624351e+08    3.12493291277747e-02
+    5.91028061856000e+11    1.77853095217430e+08    3.12492719274360e-02
+    5.91061616288000e+11    1.77857191122000e+08    3.12493361246736e-02
+    5.91115617952000e+11    1.77863782981960e+08    3.12493354425533e-02
+    5.91128725152000e+11    1.77865382947935e+08    3.12493397068465e-02
+    5.91162279584000e+11    1.77869478861389e+08    3.12493420872215e-02
+    5.91195834016000e+11    1.77873574775155e+08    3.12493412329786e-02
+    5.91229388448000e+11    1.77877670688809e+08    3.12487909052695e-02
+    5.91766053712000e+11    1.77943179050609e+08    3.12590500385420e-02
+    5.91802229584000e+11    1.77947596329488e+08    3.12493206285982e-02
+    5.91835521872000e+11    1.77951660241137e+08    3.12493073997968e-02
+    5.92437059677000e+11    1.78025088521532e+08    3.12491878988002e-02
+    5.92638379194000e+11    1.78049663019244e+08    3.12491282253091e-02
+    5.93141794728000e+11    1.78111113396481e+08    3.12496238670255e-02
+    5.93209075261000e+11    1.78119326253316e+08    3.12491877469593e-02
+    5.93242375741000e+11    1.78123391147658e+08    3.12491819035346e-02
+    5.93343033405000e+11    1.78135678138488e+08    3.12491910669174e-02
+    5.93846345850000e+11    1.78197116055520e+08    3.12492044218259e-02
+    5.93907228794000e+11    1.78204547866312e+08    3.12492069432904e-02
+    5.93913454714000e+11    1.78205307847025e+08    3.12492076654962e-02
+    5.93947009146000e+11    1.78209403743172e+08    3.12456303723790e-02
+    5.93980620448000e+11    1.78213506111604e+08    3.12492025536812e-02
+    5.94014174880000e+11    1.78217602007081e+08    3.12492022640072e-02
+    5.94047729312000e+11    1.78221697902521e+08    3.12492947117355e-02
+    5.94584628896000e+11    1.78287235923345e+08    3.12493155200580e-02
+    5.94645446304000e+11    1.78294659760734e+08    3.12493261250590e-02
+    5.94651737760000e+11    1.78295427744173e+08    3.12493221672412e-02
+    5.94685292192000e+11    1.78299523655328e+08    3.12493240446656e-02
+    5.94718846624000e+11    1.78303619566729e+08    3.12493260053088e-02
+    5.94752401056000e+11    1.78307715478388e+08    3.12493181269673e-02
+    5.95289271968000e+11    1.78373250048396e+08    3.12493266536573e-02
+    5.95352186528000e+11    1.78380929882915e+08    3.12493272649590e-02
+    5.95356380832000e+11    1.78381441871893e+08    3.12493292174167e-02
+    5.95389935264000e+11    1.78385537783972e+08    3.12493286983226e-02
+    5.95423489696000e+11    1.78389633695983e+08    3.12493291789906e-02
+    5.95457044128000e+11    1.78393729608057e+08    3.12493216199528e-02
+    5.95993915040000e+11    1.78459264185391e+08    3.12493124479261e-02
+    5.96027469472000e+11    1.78463360095272e+08    3.12514055349669e-02
+    5.96083521117000e+11    1.78470202644838e+08    3.12492192578753e-02
+    5.96161867869000e+11    1.78479766218398e+08    3.12491792123985e-02
+    5.96195160157000e+11    1.78483830111656e+08    3.12491470199499e-02
+    5.96698476637000e+11    1.78545268434629e+08    3.12491523220615e-02
+    5.96732031069000e+11    1.78549364323522e+08    3.12490665103487e-02
+    5.96765581685000e+11    1.78553459735361e+08    3.12491535430581e-02
+    5.96799136117000e+11    1.78557555624415e+08    3.12491567856341e-02
+    5.96832690549000e+11    1.78561651513893e+08    3.12492457443550e-02
+    5.96866511197000e+11    1.78565779911317e+08    3.12491682861615e-02
+    5.97335998813000e+11    1.78623088886007e+08    3.12491841510788e-02
+    5.97436935261000e+11    1.78635409908082e+08    3.12491831455191e-02
+    5.97470489693000e+11    1.78639505801015e+08    3.12491523164179e-02
+    5.97503772858000e+11    1.78643568577158e+08    3.12491875249067e-02
+    5.97604449885000e+11    1.78655857933784e+08    3.12491657714834e-02
+    5.98040645213000e+11    1.78709103012352e+08    3.12491665409777e-02
+    5.98074469213000e+11    1.78713231808481e+08    3.12490811785459e-02
+    5.98107753845000e+11    1.78717294754447e+08    3.12491701670910e-02
+    5.98141314421000e+11    1.78721391395660e+08    3.12492563488065e-02
+    5.98175130205000e+11    1.78725519200749e+08    3.12491720730180e-02
+    5.98208430685000e+11    1.78729584093052e+08    3.12491741512371e-02
+    5.98242242141000e+11    1.78733711358977e+08    3.12490898708684e-02
+    5.98275529077000e+11    1.78737774587316e+08    3.12491901655846e-02
+    5.98812396637000e+11    1.78803308479801e+08    3.12491052561490e-02
+    5.98845952373000e+11    1.78807404521700e+08    3.12491854908745e-02
+    5.98913064309000e+11    1.78815596683171e+08    3.12492131597995e-02
+    5.99013737821000e+11    1.78827885620812e+08    3.12491870494784e-02
+    5.99517037661000e+11    1.78889321991289e+08    3.12491853201209e-02
+    5.99550592093000e+11    1.78893417884508e+08    3.12491838289100e-02
+    5.99584294749000e+11    1.78897531870808e+08    3.12490992790097e-02
+    5.99617707381000e+11    1.78901610443677e+08    3.12492096162254e-02
+    5.99718440285000e+11    1.78913906629741e+08    3.12491725457139e-02
+    6.00221690973000e+11    1.78975336971862e+08    3.12491773071634e-02
+    6.00255237213000e+11    1.78979431864057e+08    3.12491799599335e-02
+    6.00322615133000e+11    1.78987656491976e+08    3.12491793114969e-02
+    6.00423280989000e+11    1.78999944481760e+08    3.12491792963637e-02
+    6.00926329949000e+11    1.79061350212799e+08    3.12491871224182e-02
+    6.01026988381000e+11    1.79073637299428e+08    3.12491844047145e-02
+    6.01060542813000e+11    1.79077733192526e+08    3.12491842219060e-02
+    6.01094097245000e+11    1.79081829085600e+08    3.12491849390426e-02
+    6.01127651677000e+11    1.79085924978769e+08    3.12491870292888e-02
+    6.01161206109000e+11    1.79090020872211e+08    3.12491815486285e-02
+    6.01668530874000e+11    1.79151948542858e+08    3.12491980819549e-02
+    6.01731900765000e+11    1.79159683926750e+08    3.12491812922500e-02
+    6.01798746973000e+11    1.79167843650470e+08    3.12491808954292e-02
+    6.01832301405000e+11    1.79171939543109e+08    3.12491789275100e-02
+    6.01865855837000e+11    1.79176035435489e+08    3.12491795654296e-02
+    6.02381330106000e+11    1.79238957888588e+08    3.12492134980857e-02
+    6.02381379258000e+11    1.79238963888437e+08    3.12491859810643e-02
+    6.02403000506000e+11    1.79241603132187e+08    3.12491307540490e-02
+    6.02436272501000e+11    1.79245664542039e+08    3.12492732652931e-02
+    6.02469833053000e+11    1.79249761193837e+08    3.12491865296613e-02
+    6.02503392349000e+11    1.79253857680949e+08    3.12491847462116e-02
+    6.02570762589000e+11    1.79262081372652e+08    3.12491877190733e-02
+    6.03107361373000e+11    1.79327582451289e+08    3.12491870759004e-02
+    6.03140915805000e+11    1.79331678344738e+08    3.12491872894685e-02
+    6.03174486621000e+11    1.79335776238162e+08    3.12491901789587e-02
+    6.03241620317000e+11    1.79343971057044e+08    3.12491903794125e-02
+    6.03275174749000e+11    1.79348066950925e+08    3.12491860803727e-02
+    6.03677788765000e+11    1.79397212889615e+08    3.12491946845291e-02
+    6.03711367773000e+11    1.79401311783983e+08    3.12491084848987e-02
+    6.03744897397000e+11    1.79405404638897e+08    3.12492801584615e-02
+    6.03778501213000e+11    1.79409506572727e+08    3.12491934616901e-02
+    6.03812055645000e+11    1.79413602467012e+08    3.12491955180951e-02
+    6.03845560925000e+11    1.79417692361722e+08    3.12491970855717e-02
+    6.03879115357000e+11    1.79421788256482e+08    3.12491128712670e-02
+    6.03912677749000e+11    1.79425885111857e+08    3.12491990005128e-02
+    6.03946232181000e+11    1.79429981006868e+08    3.12492061095163e-02
+    6.04416000093000e+11    1.79487324265875e+08    3.12491237080505e-02
+    6.04449546613000e+11    1.79491419185224e+08    3.12492296302596e-02
+    6.04550275165000e+11    1.79503714847926e+08    3.12491952482075e-02
+    6.04583759965000e+11    1.79507802242665e+08    3.12491107975454e-02
+    6.04617310581000e+11    1.79511897660308e+08    3.12491931031218e-02
+    6.04650865013000e+11    1.79515993554547e+08    3.12492032956369e-02
+    6.05120646330000e+11    1.79573338444701e+08    3.12491881530701e-02
+    6.05221297525000e+11    1.79585624648335e+08    3.12492562906484e-02
+    6.05254852282000e+11    1.79589720590527e+08    3.12491949143633e-02
+    6.05355511482000e+11    1.79602007773968e+08    3.12491955751284e-02
+    6.05389065914000e+11    1.79606103668530e+08    3.12491939569682e-02
+    6.05825279837000e+11    1.79659351064962e+08    3.12492054826847e-02
+    6.05858826077000e+11    1.79663445960848e+08    3.12492079890750e-02
+    6.05892441949000e+11    1.79667549356848e+08    3.12492060352270e-02
+    6.05925996381000e+11    1.79671645252781e+08    3.12491206838888e-02
+    6.05959503221000e+11    1.79675735328121e+08    3.12492061744004e-02
+    6.05993082229000e+11    1.79679834223996e+08    3.12492058037712e-02
+    6.06060256629000e+11    1.79688034015599e+08    3.12492046949242e-02
+    6.06093761909000e+11    1.79692123911510e+08    3.12492092024036e-02
+    6.06529914717000e+11    1.79745363873781e+08    3.12492090045374e-02
+    6.06597025629000e+11    1.79753555916420e+08    3.12492095526977e-02
+    6.06630580061000e+11    1.79757651812814e+08    3.12491671342380e-02
+    6.06697733493000e+11    1.79765849034768e+08    3.12492050098594e-02
+    6.06764825973000e+11    1.79774038826417e+08    3.12492053738852e-02
+    6.06798376309000e+11    1.79778134222277e+08    3.12492119660670e-02
+    6.07234557789000e+11    1.79831377689168e+08    3.12492087789476e-02
+    6.07268159325000e+11    1.79835479335316e+08    3.12492147547053e-02
+    6.07301668701000e+11    1.79839569732530e+08    3.12492162051429e-02
+    6.07335268189000e+11    1.79843671129659e+08    3.12491296672943e-02
+    6.07368789365000e+11    1.79847762956125e+08    3.12492974758471e-02
+    6.07402348381000e+11    1.79851859423602e+08    3.12491279582414e-02
+    6.07435939189000e+11    1.79855959749607e+08    3.12492096138612e-02
+    6.07469493621000e+11    1.79860055646010e+08    3.12492092018601e-02
+    6.07503048053000e+11    1.79864151542358e+08    3.12492091950472e-02
+    6.08006379357000e+11    1.79925591797097e+08    3.12492092503878e-02
+    6.08037705565000e+11    1.79929415700334e+08    3.12490612268448e-02
+    6.08037709661000e+11    1.79929416200319e+08    3.12492110862785e-02
+    6.08073434973000e+11    1.79933777090225e+08    3.12492125885453e-02
+    6.08140597085000e+11    1.79941975383646e+08    3.12492067853027e-02
+    6.08711057245000e+11    1.80011609866078e+08    3.12492144548742e-02
+    6.08778166109000e+11    1.80019801660152e+08    3.12491764754605e-02
+    6.08845184373000e+11    1.80027982384991e+08    3.12491057131166e-02
+    6.08878738154000e+11    1.80032078188310e+08    3.12492233960677e-02
+    6.09449170781000e+11    1.80101709346878e+08    3.12491904910617e-02
+    6.09549819253000e+11    1.80113995219043e+08    3.12491049802907e-02
+    6.09583397610000e+11    1.80118094022179e+08    3.12492286961254e-02
+    6.10129415005000e+11    1.80184744891119e+08    3.12492198926301e-02
+    6.10187393885000e+11    1.80191822214440e+08    3.12491708858846e-02
+    6.10321570538000e+11    1.80208200765840e+08    3.12492289123980e-02
+    6.10925647709000e+11    1.80281938835361e+08    3.12492198426710e-02
+    6.10959181661000e+11    1.80286032233167e+08    3.12492200491542e-02
+    6.11026216797000e+11    1.80294215028932e+08    3.12492127070810e-02
+    6.11563081565000e+11    1.80359748627878e+08    3.12492203720467e-02
+    6.11596635997000e+11    1.80363844525690e+08    3.12492231723809e-02
+    6.11630190429000e+11    1.80367940423870e+08    3.12491349802882e-02
+    6.11663748469000e+11    1.80372036750908e+08    3.12492788915667e-02
+    6.11697327802000e+11    1.80376135695993e+08    3.12492171218826e-02
+    6.12267738973000e+11    1.80445764221506e+08    3.12492231802419e-02
+    6.12280989533000e+11    1.80447381681298e+08    3.12492819502950e-02
+    6.12280997725000e+11    1.80447382681275e+08    3.12492246456604e-02
+    6.12469061469000e+11    1.80470339111681e+08    3.12492174309208e-02
+    6.13039529821000e+11    1.80539974617811e+08    3.12492216480954e-02
+    6.13073112925000e+11    1.80544074015703e+08    3.12492201587702e-02
+    6.13106667357000e+11    1.80548169913488e+08    3.12492194085157e-02
+    6.13173786461000e+11    1.80556362958829e+08    3.12492168595747e-02
+    6.13677064029000e+11    1.80617796669232e+08    3.12492236713135e-02
+    6.13710573405000e+11    1.80621887067613e+08    3.12492264414521e-02
+    6.13744230237000e+11    1.80625995465912e+08    3.12492265450146e-02
+    6.13777784669000e+11    1.80630091364534e+08    3.12492240878275e-02
+    6.13811318621000e+11    1.80634184762895e+08    3.12491802089883e-02
+    6.13878340981000e+11    1.80642365988699e+08    3.12492281374110e-02
+    6.14448766813000e+11    1.80711996328385e+08    3.12492310504543e-02
+    6.14482341725000e+11    1.80716094727536e+08    3.12491422313695e-02
+    6.14515907957000e+11    1.80720192055496e+08    3.12492298674683e-02
+    6.14549429621000e+11    1.80724283954652e+08    3.12492273992575e-02
+    6.14582984053000e+11    1.80728379853386e+08    3.12492278309929e-02
+    6.15086356317000e+11    1.80789825144642e+08    3.12492259598925e-02
+    6.15119849309000e+11    1.80793913543373e+08    3.12490254580813e-02
+    6.15153408746000e+11    1.80798010026580e+08    3.12492271100382e-02
+    6.15186963178000e+11    1.80802105925276e+08    3.12492289560851e-02
+    6.15220517610000e+11    1.80806201824214e+08    3.12492300395206e-02
+    6.15254072042000e+11    1.80810297723293e+08    3.12494288953591e-02
+    6.15287677789000e+11    1.80814399912361e+08    3.12492221587520e-02
+    6.15790971741000e+11    1.80875835633132e+08    3.12492293655509e-02
+    6.15858146141000e+11    1.80884035430917e+08    3.12492323362221e-02
+    6.15925255005000e+11    1.80892227229679e+08    3.12491452925409e-02
+    6.15958785397000e+11    1.80896320183160e+08    3.12492252103311e-02
+    6.15992339829000e+11    1.80900416081607e+08    3.12492297554233e-02
+    6.16499725149000e+11    1.80962351239573e+08    3.12491783769527e-02
+    6.16629803754000e+11    1.80978229558052e+08    3.12494286789970e-02
+    6.16663361373000e+11    1.80982325872199e+08    3.12491420624239e-02
+    6.16696946037000e+11    1.80986425450076e+08    3.12492287765755e-02
+    6.17133178717000e+11    1.81039675195455e+08    3.12492283504070e-02
+    6.17841557413000e+11    1.81126145069009e+08    3.12492336013854e-02
+    6.17871314853000e+11    1.81129777479923e+08    3.12492346256477e-02
+    6.17904869285000e+11    1.81133873379604e+08    3.12492357852534e-02
+    6.17938423717000e+11    1.81137969279437e+08    3.12492357468273e-02
+    6.17971978149000e+11    1.81142065179265e+08    3.12491493124028e-02
+    6.18005536405000e+11    1.81146161534547e+08    3.12493185998549e-02
+    6.18039087013000e+11    1.81150256978448e+08    3.12483345304571e-02
+    6.18106333520000e+11    1.81158465343084e+08    3.12493636244278e-02
+    6.18549339941000e+11    1.81212542174091e+08    3.12492354715035e-02
+    6.18609571621000e+11    1.81219894494213e+08    3.12492342877494e-02
+    6.18643071869000e+11    1.81223983779753e+08    3.12492314790594e-02
+    6.18676675453000e+11    1.81228085678874e+08    3.12492296080125e-02
+    6.18710258557000e+11    1.81232185077811e+08    3.12492281221705e-02
+    6.18743796605000e+11    1.81236278976689e+08    3.12491413599068e-02
+    6.18777292277000e+11    1.81240367691491e+08    3.12492362111418e-02
+    6.19257693341000e+11    1.81299008966198e+08    3.12492330010285e-02
+    6.19314185373000e+11    1.81305904796943e+08    3.12491945893179e-02
+    6.19381273205000e+11    1.81314094018493e+08    3.12493210937203e-02
+    6.19414832285000e+11    1.81318190496877e+08    3.12492350299181e-02
+    6.19448386717000e+11    1.81322286396611e+08    3.12491360701963e-02
+    6.19515487466000e+11    1.81330477179564e+08    3.12493467271214e-02
+    6.19549085045000e+11    1.81334578360796e+08    3.12492371167208e-02
+    6.19966017373000e+11    1.81385472177903e+08    3.12492358733324e-02
+    6.20153061213000e+11    1.81408304119601e+08    3.12491364781051e-02
+    6.20220127978000e+11    1.81416490754338e+08    3.12493995342331e-02
+    6.20253681338000e+11    1.81420586544777e+08    3.12492402286043e-02
+    6.20746488669000e+11    1.81480742227093e+08    3.12492437570831e-02
+    6.20857707357000e+11    1.81494318398544e+08    3.12492003512372e-02
+    6.20924775797000e+11    1.81502505254477e+08    3.12475733670038e-02
+    6.20958570320000e+11    1.81506630242121e+08    3.12493601257381e-02
+    6.21454359645000e+11    1.81567150160728e+08    3.12492442131455e-02
+    6.21461748829000e+11    1.81568052138913e+08    3.12474555393848e-02
+    6.21495310160000e+11    1.81572148647500e+08    3.12492451243997e-02
+    6.21528864592000e+11    1.81576244548557e+08    3.12500400440427e-02
+    6.21595876074000e+11    1.81584424671588e+08    3.12492446207671e-02
+    6.21629430506000e+11    1.81588520572579e+08    3.12492405544162e-02
+    6.21662984938000e+11    1.81592616473037e+08    3.12491320503763e-02
+    6.22166357840000e+11    1.81654061653838e+08    3.12492409480050e-02
+    6.22190737232000e+11    1.81657037581552e+08    3.12492256052792e-02
+    6.22190999376000e+11    1.81657069580759e+08    3.12492452192847e-02
+    6.22233466704000e+11    1.81662253455550e+08    3.12510396130990e-02
+    6.22267020125000e+11    1.81666349468397e+08    3.12492478266349e-02
+    6.22334061021000e+11    1.81674532974544e+08    3.12492385209143e-02
+    6.22869994589000e+11    1.81739952958520e+08    3.12492376186776e-02
+    6.22904523869000e+11    1.81744167855690e+08    3.12475013211796e-02
+    6.22938486608000e+11    1.81748313366361e+08    3.12492404402747e-02
+    6.22972041040000e+11    1.81752409266804e+08    3.12492386317060e-02
+    6.23073015632000e+11    1.81764734966496e+08    3.12493559475242e-02
+    6.23577878749000e+11    1.81826362494808e+08    3.12492447712927e-02
+    6.23709798109000e+11    1.81842465543131e+08    3.12474924961538e-02
+    6.23743604560000e+11    1.81846591976037e+08    3.12493526337988e-02
+    6.24285696605000e+11    1.81912763950546e+08    3.12492493003607e-02
+    6.24313856605000e+11    1.81916201367969e+08    3.12474850774258e-02
+    6.24347887440000e+11    1.81920355188316e+08    3.12492487348099e-02
+    6.24381056848000e+11    1.81924404090976e+08    3.12492478867625e-02
+    6.24414611280000e+11    1.81928499992395e+08    3.12493599810649e-02
+    6.24993481485000e+11    1.81999161411998e+08    3.12482468969032e-02
+    6.25051984720000e+11    1.82006302519543e+08    3.12492206433982e-02
+    6.25085662032000e+11    1.82010413417017e+08    3.12508449831049e-02
+    6.25119091818000e+11    1.82014494311783e+08    3.12476880023112e-02
+    6.25152672592000e+11    1.82018593224083e+08    3.12493668322726e-02
+    6.25701339197000e+11    1.82085567770990e+08    3.12492635926959e-02
+    6.25756618813000e+11    1.82092315611974e+08    3.12475075991968e-02
+    6.25790961488000e+11    1.82096507498685e+08    3.12492837349419e-02
+    6.25823729488000e+11    1.82100507407003e+08    3.12492496993855e-02
+    6.25890838352000e+11    1.82108699210316e+08    3.12493708222550e-02
+    6.26409067421000e+11    1.82171958321051e+08    3.12492616730085e-02
+    6.26461332381000e+11    1.82178338170314e+08    3.12474761215456e-02
+    6.26495031120000e+11    1.82182451453682e+08    3.12492555522252e-02
+    6.26529109840000e+11    1.82186611354581e+08    3.12493689542845e-02
+    6.27116907037000e+11    1.82258362493172e+08    3.12492680298825e-02
+    6.27144383005000e+11    1.82261716414611e+08    3.12494374811649e-02
+    6.27144387101000e+11    1.82261716914602e+08    3.12492656052736e-02
+    6.27165911581000e+11    1.82264344352854e+08    3.12475169488508e-02
+    6.27199723344000e+11    1.82268471437375e+08    3.12492322226852e-02
+    6.27233187664000e+11    1.82272556337012e+08    3.12493628936904e-02
+    6.27824701757000e+11    1.82344761175093e+08    3.12485026888192e-02
+    6.27904311120000e+11    1.82354478649288e+08    3.12492554637629e-02
+    6.27937865552000e+11    1.82358574551700e+08    3.12492530987356e-02
+    6.28004974416000e+11    1.82366766355904e+08    3.12493839593392e-02
+    6.28466167997000e+11    1.82423063290639e+08    3.12478370285638e-02
+    6.28508184400000e+11    1.82428191891083e+08    3.12492473692600e-02
+    6.28541738832000e+11    1.82432287792434e+08    3.12492484677023e-02
+    6.28575293264000e+11    1.82436383693929e+08    3.12492496275354e-02
+    6.28608847696000e+11    1.82440479595576e+08    3.12493423215499e-02
+    6.29173988029000e+11    1.82509465000754e+08    3.12484168387494e-02
+    6.29246406480000e+11    1.82518304695847e+08    3.12492318357727e-02
+    6.29279960912000e+11    1.82522400595162e+08    3.12492324007962e-02
+    6.29313515344000e+11    1.82526496494551e+08    3.12492020964328e-02
+    6.29347069776000e+11    1.82530592389968e+08    3.12493509172576e-02
+    6.29948164285000e+11    1.82603966660461e+08    3.12492589143505e-02
+    6.29984471229000e+11    1.82608398555358e+08    3.12491503572207e-02
+    6.30051595754000e+11    1.82616592244320e+08    3.12494367358292e-02
+    6.30085182653000e+11    1.82620692133677e+08    3.12492568292465e-02
+    6.30655594557000e+11    1.82690320837140e+08    3.12492678664169e-02
+    6.30655995965000e+11    1.82690369835992e+08    3.12492622406373e-02
+    6.30689148989000e+11    1.82694416740450e+08    3.12474677190187e-02
+    6.30722768720000e+11    1.82698520378962e+08    3.12510403894361e-02
+    6.30756286397000e+11    1.82702612028484e+08    3.12492421603252e-02
+    6.30789844925000e+11    1.82706708429140e+08    3.12492383704680e-02
+    6.30823344061000e+11    1.82710797579477e+08    3.12492565863774e-02
+    6.31363815357000e+11    1.82776771509970e+08    3.12483343424009e-02
+    6.31427362640000e+11    1.82784528333195e+08    3.12508261163540e-02
+    6.31460885994000e+11    1.82788620647675e+08    3.12477002652526e-02
+    6.31494414160000e+11    1.82792713140181e+08    3.12492604159615e-02
+    6.31527968592000e+11    1.82796809043242e+08    3.12493627042201e-02
+    6.32127533757000e+11    1.82869996657718e+08    3.12492642500301e-02
+    6.32131990205000e+11    1.82870540644910e+08    3.12492659620028e-02
+    6.32144966333000e+11    1.82872124607704e+08    3.12481701629939e-02
+    6.32199188304000e+11    1.82878743113080e+08    3.12492920861587e-02
+    6.32232742736000e+11    1.82882839020292e+08    3.12492975333498e-02
+    6.32266297168000e+11    1.82886934928219e+08    3.12493866930251e-02
+    6.32779441373000e+11    1.82949573372325e+08    3.12492685256859e-02
+    6.32836588765000e+11    1.82956549209037e+08    3.12475200297005e-02
+    6.32870360912000e+11    1.82960671458411e+08    3.12492676187048e-02
+    6.32903915344000e+11    1.82964767362417e+08    3.12492633388501e-02
+    6.32937469776000e+11    1.82968863265861e+08    3.12492602715793e-02
+    6.32971024208000e+11    1.82972959168903e+08    3.12492660312487e-02
+    6.33608345424000e+11    1.83050755341662e+08    3.12492724099229e-02
+    6.33641899856000e+11    1.83054851246295e+08    3.12493120757154e-02
+    6.33675454288000e+11    1.83058947156127e+08    3.12494207286551e-02
+    6.34133636765000e+11    1.83114876597511e+08    3.12492925471489e-02
+    6.34178832029000e+11    1.83120393472615e+08    3.12475112706727e-02
+    6.34212460368000e+11    1.83124498167544e+08    3.12493030958194e-02
+    6.34279569232000e+11    1.83132689984855e+08    3.12493042933966e-02
+    6.34313123664000e+11    1.83136785893667e+08    3.12493038206867e-02
+    6.34346678096000e+11    1.83140881802417e+08    3.12493026303855e-02
+    6.34380232528000e+11    1.83144977711012e+08    3.12493876860149e-02
+    6.34916975549000e+11    1.83210496815508e+08    3.12484040780908e-02
+    6.34984116048000e+11    1.83218692258644e+08    3.12492933453541e-02
+    6.35017670480000e+11    1.83222788166021e+08    3.12493799220522e-02
+    6.35610721725000e+11    1.83295180680350e+08    3.12492776613460e-02
+    6.35621699005000e+11    1.83296520649376e+08    3.12492763041803e-02
+    6.35688840637000e+11    1.83304716459571e+08    3.12474881513212e-02
+    6.35722501968000e+11    1.83308825178484e+08    3.12493791257325e-02
+    6.36318536605000e+11    1.83381581867326e+08    3.12487236421967e-02
+    6.36426962768000e+11    1.83394816942338e+08    3.12493785512344e-02
+    6.37026363261000e+11    1.83467984492766e+08    3.12492758559815e-02
+    6.37052970877000e+11    1.83471232417502e+08    3.12492502853274e-02
+    6.37053003645000e+11    1.83471236417406e+08    3.12485254881173e-02
+    6.37131636560000e+11    1.83480834709002e+08    3.12492751195350e-02
+    6.37165190992000e+11    1.83484930613990e+08    3.12492736011336e-02
+    6.37198745424000e+11    1.83489026518780e+08    3.12494233573837e-02
+    6.37675168573000e+11    1.83547182568312e+08    3.12492914573983e-02
+    6.37702026045000e+11    1.83550460993978e+08    3.12483876376596e-02
+    6.37769142096000e+11    1.83558653448581e+08    3.12492773091435e-02
+    6.37802696528000e+11    1.83562749353856e+08    3.12492763480350e-02
+    6.37836250960000e+11    1.83566845259006e+08    3.12492756688698e-02
+    6.37869805392000e+11    1.83570941164066e+08    3.12493785855085e-02
+    6.38440233373000e+11    1.83640572101308e+08    3.12492747078924e-02
+    6.38441974173000e+11    1.83640784596376e+08    3.12492751165523e-02
+    6.38507379101000e+11    1.83648768411177e+08    3.12483792236043e-02
+    6.38574520144000e+11    1.83656963914197e+08    3.12492724490312e-02
+    6.38608074576000e+11    1.83661059818836e+08    3.12493794113509e-02
+    6.39149787293000e+11    1.83727185546279e+08    3.12492749791322e-02
+    6.39178487965000e+11    1.83730688964996e+08    3.12492749749254e-02
+    6.39212042397000e+11    1.83734784869965e+08    3.12475238368329e-02
+    6.39245739856000e+11    1.83738898003377e+08    3.12492479442881e-02
+    6.39279294288000e+11    1.83742993904803e+08    3.12493674032635e-02
+    6.39857615773000e+11    1.83813588360123e+08    3.12486317740342e-02
+    6.39950243664000e+11    1.83824894980662e+08    3.12492434352407e-02
+    6.39983798096000e+11    1.83828990881498e+08    3.12492704124452e-02
+    6.40017352528000e+11    1.83833086785869e+08    3.12493815572881e-02
+    6.40565431325000e+11    1.83899989611849e+08    3.12487950648674e-02
+    6.40688353104000e+11    1.83914994133259e+08    3.12501662248454e-02
+    6.40721975208000e+11    1.83919098415833e+08    3.12500543898241e-02
+    6.40755530485000e+11    1.83923194526111e+08    3.12492807682911e-02
+    6.41273247421000e+11    1.83986390939750e+08    3.12492809578213e-02
+    6.41325897405000e+11    1.83992817791869e+08    3.12474887997883e-02
+    6.41359458128000e+11    1.83996914230604e+08    3.12492781567926e-02
+    6.41393012560000e+11    1.84001010135990e+08    3.12492780424236e-02
+    6.41426566992000e+11    1.84005106041362e+08    3.12493962447601e-02
+    6.41981065917000e+11    1.84072792590677e+08    3.12492842335945e-02
+    6.42030607037000e+11    1.84078839952162e+08    3.12492846878740e-02
+    6.42064161469000e+11    1.84082935858404e+08    3.12492829866642e-02
+    6.42097715901000e+11    1.84087031764424e+08    3.12492743601909e-02
+    6.42688882621000e+11    1.84159193994994e+08    3.12492735280641e-02
+    6.42735232957000e+11    1.84164851863462e+08    3.12492763189686e-02
+    6.42768714869000e+11    1.84168938916273e+08    3.12492738694345e-02
+    6.42802269301000e+11    1.84173034821098e+08    3.12474875592692e-02
+    6.42835946832000e+11    1.84177145517313e+08    3.12492733278305e-02
+    6.42869501264000e+11    1.84181241422066e+08    3.12494096365291e-02
+    6.43345056117000e+11    1.84239291454902e+08    3.12492827174775e-02
+    6.43372712309000e+11    1.84242667377413e+08    3.12492811253833e-02
+    6.43406266741000e+11    1.84246763283189e+08    3.12474902657878e-02
+    6.43439852880000e+11    1.84250862824405e+08    3.12492815676251e-02
+    6.43473407312000e+11    1.84254958730239e+08    3.12510726090330e-02
+    6.43506978933000e+11    1.84259056969166e+08    3.12475177033014e-02
+    6.43540475216000e+11    1.84263145546104e+08    3.12510423581798e-02
+    6.43574017141000e+11    1.84267240155944e+08    3.12492719768891e-02
+    6.44043864021000e+11    1.84324593175243e+08    3.12492782646160e-02
+    6.44110890965000e+11    1.84332774986275e+08    3.12492792788817e-02
+    6.44144445397000e+11    1.84336870891809e+08    3.12492806540192e-02
+    6.44178081749000e+11    1.84340976797293e+08    3.12492825862201e-02
+    6.44211554261000e+11    1.84345062703489e+08    3.12492881882963e-02
+    6.44245190613000e+11    1.84349168609963e+08    3.12493063163349e-02
+    6.44278695893000e+11    1.84353258519174e+08    3.12492946396022e-02
+    6.44882705781000e+11    1.84426988530718e+08    3.12492783599509e-02
+    6.44949814645000e+11    1.84435180341544e+08    3.12474889468082e-02
+    6.44983422288000e+11    1.84439282507377e+08    3.12493873763173e-02
+    6.45520122869000e+11    1.84504796430661e+08    3.12492774100974e-02
+    6.45520253941000e+11    1.84504812430291e+08    3.12475263147639e-02
+    6.45553872208000e+11    1.84508915897802e+08    3.12492850318904e-02
+    6.45587426640000e+11    1.84513011804090e+08    3.12492857797224e-02
+    6.45620981072000e+11    1.84517107710476e+08    3.12493777522513e-02
+    6.46224807797000e+11    1.84590815559798e+08    3.12492719029679e-02
+    6.46227941237000e+11    1.84591198050886e+08    3.12492723664028e-02
+    6.46258440053000e+11    1.84594920964198e+08    3.12483970516975e-02
+    6.46325640528000e+11    1.84603123726405e+08    3.12492473733528e-02
+    6.46359194960000e+11    1.84607219627756e+08    3.12509896700717e-02
+    6.46392629717000e+11    1.84611301148247e+08    3.12492880435532e-02
+    6.46935744373000e+11    1.84677597813583e+08    3.12492780445050e-02
+    6.46963007349000e+11    1.84680925736698e+08    3.12492783983423e-02
+    6.46965604213000e+11    1.84681242729378e+08    3.12492505957683e-02
+    6.46965616501000e+11    1.84681244229342e+08    3.12492779918967e-02
+    6.46996561781000e+11    1.84685021642066e+08    3.12474967871034e-02
+    6.47030267216000e+11    1.84689135745471e+08    3.12510790365658e-02
+    6.47063677557000e+11    1.84693214297062e+08    3.12475291178425e-02
+    6.47097425232000e+11    1.84697333560567e+08    3.12510506738483e-02
+    6.47130795765000e+11    1.84701407248918e+08    3.12492778066625e-02
+    6.47600545237000e+11    1.84758748388566e+08    3.12492957443737e-02
+    6.47634099669000e+11    1.84762844296258e+08    3.12493025057200e-02
+    6.47667686869000e+11    1.84766944204747e+08    3.12493130172697e-02
+    6.47701241301000e+11    1.84771040114703e+08    3.12493365389529e-02
+    6.47734762965000e+11    1.84775132027826e+08    3.12493489286680e-02
+    6.47768317397000e+11    1.84779227942489e+08    3.12493450833244e-02
+    6.47801871829000e+11    1.84783323856648e+08    3.12493481123965e-02
+    6.47835426261000e+11    1.84787419771204e+08    3.12491803785338e-02
+    6.48305409360000e+11    1.84844789250249e+08    3.12510672550236e-02
+    6.48339269365000e+11    1.84848922692802e+08    3.12492879498377e-02
+    6.48406312693000e+11    1.84857106506324e+08    3.12483998157521e-02
+    6.48473124176000e+11    1.84865261787313e+08    3.12501633106560e-02
+    6.48540074869000e+11    1.84873434522039e+08    3.12492862772116e-02
+    6.49012481013000e+11    1.84931099970606e+08    3.12492852024594e-02
+    6.49144073205000e+11    1.84947163103177e+08    3.12492809733840e-02
+    6.49177596277000e+11    1.84951255180896e+08    3.12492802773195e-02
+    6.49211203957000e+11    1.84955357586410e+08    3.12474886210584e-02
+    6.49244769616000e+11    1.84959454627612e+08    3.12493948732507e-02
+    6.49748032981000e+11    1.85020886954245e+08    3.12492933489921e-02
+    6.49781587413000e+11    1.85024982861623e+08    3.12492930668213e-02
+    6.49815141845000e+11    1.85029078768964e+08    3.12492940204265e-02
+    6.49848696277000e+11    1.85033174676430e+08    3.12492972930276e-02
+    6.49882267093000e+11    1.85037272584280e+08    3.12493008733866e-02
+    6.49915805141000e+11    1.85041366492689e+08    3.12493070439359e-02
+    6.49949359573000e+11    1.85045462401862e+08    3.12493215298046e-02
+    6.50486380149000e+11    1.85111015248141e+08    3.12492849638838e-02
+    6.50553738869000e+11    1.85119237560001e+08    3.12492805630384e-02
+    6.50654525045000e+11    1.85131540276761e+08    3.12492750988399e-02
+    6.51138371189000e+11    1.85190602156681e+08    3.12481412686219e-02
+    6.51191098704000e+11    1.85197038238077e+08    3.12492821647083e-02
+    6.51224653136000e+11    1.85201134143989e+08    3.12492841098901e-02
+    6.51258207568000e+11    1.85205230050156e+08    3.12492858190581e-02
+    6.51291762000000e+11    1.85209325956547e+08    3.12510882105623e-02
+    6.51325093493000e+11    1.85213394883999e+08    3.12492777325493e-02
+    6.51890404469000e+11    1.85282400976555e+08    3.12492838185209e-02
+    6.51924581493000e+11    1.85286572880942e+08    3.12492835127055e-02
+    6.51929066613000e+11    1.85287120368389e+08    3.12492843618202e-02
+    6.51962621045000e+11    1.85291216274589e+08    3.12475296284702e-02
+    6.51996314960000e+11    1.85295328976180e+08    3.12509635557941e-02
+    6.52029772245000e+11    1.85299413243345e+08    3.12475778724318e-02
+    6.52063432016000e+11    1.85303521783640e+08    3.12493936308387e-02
+    6.52598208885000e+11    1.85368800896468e+08    3.12492883417624e-02
+    6.52600179061000e+11    1.85369041390991e+08    3.12474991402440e-02
+    6.52633791824000e+11    1.85373144183112e+08    3.12492824241417e-02
+    6.52667346256000e+11    1.85377240089058e+08    3.12492821574324e-02
+    6.52700900688000e+11    1.85381335994969e+08    3.12509905823495e-02
+    6.52734389205000e+11    1.85385424078287e+08    3.12493672790648e-02
+    6.52767923957000e+11    1.85389517593060e+08    3.12492742036592e-02
+    6.53263749749000e+11    1.85450041796698e+08    3.12492802954490e-02
+    6.53271331445000e+11    1.85450967275383e+08    3.12484004931926e-02
+    6.53338402128000e+11    1.85459154195554e+08    3.12492510522588e-02
+    6.53371956560000e+11    1.85463250097388e+08    3.12509882885102e-02
+    6.53405465045000e+11    1.85467340617983e+08    3.12492815314270e-02
+    6.53439052245000e+11    1.85471440523720e+08    3.12493659050417e-02
+    6.53472574069000e+11    1.85475532460220e+08    3.12492905284860e-02
+    6.53972057205000e+11    1.85536503138466e+08    3.12492876347408e-02
+    6.54043085941000e+11    1.85545173440816e+08    3.12475007197699e-02
+    6.54076747088000e+11    1.85549282138922e+08    3.12493040921709e-02
+    6.54143855952000e+11    1.85557473956494e+08    3.12510615932986e-02
+    6.54177238005000e+11    1.85561549052566e+08    3.12492859128160e-02
+    6.54679854069000e+11    1.85622902150567e+08    3.12492928553542e-02
+    6.54747749365000e+11    1.85631189963021e+08    3.12492056261603e-02
+    6.54781198293000e+11    1.85635272980322e+08    3.12492959133124e-02
+    6.54814752725000e+11    1.85639368888036e+08    3.12493005369561e-02
+    6.54848307157000e+11    1.85643464796356e+08    3.12493044583172e-02
+    6.54881894357000e+11    1.85647564705101e+08    3.12492995203473e-02
+    6.55553004880000e+11    1.85729485540040e+08    3.12490011213015e-02
+    6.56190608704000e+11    1.85807315550240e+08    3.12492710113474e-02
+    6.56224163136000e+11    1.85811411454690e+08    3.12492695998117e-02
+    6.56257717568000e+11    1.85815507358955e+08    3.12492672271674e-02
+    6.56291272000000e+11    1.85819603262909e+08    3.12545906445492e-02
+    6.56324918608000e+11    1.85823711118220e+08    3.12492716038832e-02
+    6.56828235088000e+11    1.85885149686135e+08    3.12492723696778e-02
+    6.56861789520000e+11    1.85889245590763e+08    3.12510433216204e-02
+    6.56895119477000e+11    1.85893314324865e+08    3.12492698744791e-02
+    6.56928673909000e+11    1.85897410229166e+08    3.12492683312511e-02
+    6.56962232437000e+11    1.85901506633253e+08    3.12492688682528e-02
+    6.56995799157000e+11    1.85905604037387e+08    3.12492655833526e-02
+    6.57029345397000e+11    1.85909698941149e+08    3.12491432714051e-02
+    6.57566555472000e+11    1.85975274545057e+08    3.12492695699380e-02
+    6.57599847760000e+11    1.85979338450066e+08    3.12493010637809e-02
+    6.57633402192000e+11    1.85983434358455e+08    3.12501471207235e-02
+    6.57700435573000e+11    1.85991617182745e+08    3.12492753077650e-02
+    6.58226259573000e+11    1.86055803194227e+08    3.12492793506543e-02
+    6.58237331061000e+11    1.86057154663061e+08    3.12492849752620e-02
+    6.58304509557000e+11    1.86065354975427e+08    3.12492753944304e-02
+    6.58934069109000e+11    1.86142203724714e+08    3.12492826401815e-02
+    6.58941937525000e+11    1.86143164202666e+08    3.12474973568453e-02
+    6.58975612240000e+11    1.86147274556447e+08    3.12509908827777e-02
+    6.59009049557000e+11    1.86151356389606e+08    3.12492801747339e-02
+    6.59042603989000e+11    1.86155452295257e+08    3.12492827458755e-02
+    6.59076158421000e+11    1.86159548201245e+08    3.12492867130914e-02
+    6.59109712853000e+11    1.86163644107753e+08    3.12492912601101e-02
+    6.59143267285000e+11    1.86167740014857e+08    3.12492134526939e-02
+    6.59680329040000e+11    1.86233297661026e+08    3.12502873000298e-02
+    6.59747336149000e+11    1.86241477314961e+08    3.12488838278250e-02
+    6.60385117504000e+11    1.86319328703516e+08    3.12491125359696e-02
+    6.60418635072000e+11    1.86323420087322e+08    3.12492306675267e-02
+    6.60452189504000e+11    1.86327515986484e+08    3.12492277380443e-02
+
+
+)
+\begintext
diff --git a/tests/pytests/data/st_2458542208_v/hayabusa_hp.tf b/tests/pytests/data/st_2458542208_v/hayabusa_hp.tf
new file mode 100755
index 0000000000000000000000000000000000000000..fd7d0fd00181bdedd8392dd887e135c9a450466f
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/hayabusa_hp.tf
@@ -0,0 +1,392 @@
+KPL/FK
+
+\beginlabel
+PDS_VERSION_ID               = PDS3
+RECORD_TYPE                  = STREAM
+RECORD_BYTES                 = "N/A"
+^SPICE_KERNEL                = "hayabusa_hp.tf"
+MISSION_NAME                 = HAYABUSA
+SPACECRAFT_NAME              = HAYABUSA
+DATA_SET_ID                  = "HAY-A-SPICE-6-V1.0"
+KERNEL_TYPE_ID               = FK
+PRODUCT_ID                   = "hayabusa_hp.tf"
+PRODUCT_CREATION_TIME        = 2009-11-30T13:50:41
+PRODUCER_ID                  = JAXA
+MISSION_PHASE_NAME           = "N/A"
+PRODUCT_VERSION_TYPE         = ACTUAL
+PLATFORM_OR_MOUNTING_NAME    = "N/A"
+START_TIME                   = "N/A"
+STOP_TIME                    = "N/A"
+SPACECRAFT_CLOCK_START_COUNT = "N/A"
+SPACECRAFT_CLOCK_STOP_COUNT  = "N/A"
+TARGET_NAME                  = "25143 ITOKAWA"
+INSTRUMENT_NAME              = "N/A"
+NAIF_INSTRUMENT_ID           = "N/A"
+SOURCE_PRODUCT_ID            = "N/A"
+NOTE                         = "See comments in the file for details"
+OBJECT                       = SPICE_KERNEL
+  INTERCHANGE_FORMAT         = ASCII
+  KERNEL_TYPE                = FRAMES
+  DESCRIPTION                = "SPICE Frames Kernel (FK) file containing
+the definitions of the Hayabusa spacecraft frame and mission-specific
+dynamic frames, created by the Hayabusa Joint Science Team. The original
+name of this file was HAYABUSA_HP.TF. "
+END_OBJECT                   = SPICE_KERNEL
+\endlabel
+
+
+Hayabusa Frames Definition Kernel
+===========================================================================
+
+   This frame kernel contains a set of frame definitions for the 
+   Hayabusa mission. It also contains NAIF name-ID mappings for 
+   Hayabusa instruments.
+   
+
+Version and Date
+---------------------------------------------------------------------------
+
+   Version 1.0 -- Sep. 22, 2009 -- Boris Semenov, NAIF/JPL.
+
+      Lowercased file name (HAYABUSA_HP.TF -> hayabusa_hp.tf);
+
+      Corrected spacecraft name to be consistent with the duplicate
+      definitions provided in IKs (HAYABUSA_SC_BUS ->
+      HAYABUSA_SC_BUS_PRIME);
+
+      Added name-ID mapping keywords for science instruments;
+
+      Added comments describing frames defined in the IK and 
+      Itokawa FK;
+
+      Added other miscellaneous comments.
+
+   Version 1.0 -- Sep. 19, 2005 -- Naru Hirata, Aizu Univ.
+
+
+Hayabusa NAIF IDs
+---------------------------------------------------------------------------
+
+   The following names and NAIF ID codes are assigned to the Hayabusa 
+   spacecraft, its structures, and science instruments:
+
+      NAME                                    NAIF ID
+      -----------------------------------------------
+      HAYABUSA                                   -130
+      HAYABUSA_AMICA                          -130102
+      HAYABUSA_NIRS                           -130200
+      HAYABUSA_LIDAR                          -130300
+      HAYABUSA_XRS                            -130400
+
+   The keywords below implement the Hayabusa name-ID mappings.
+
+      \begindata
+
+         NAIF_BODY_NAME += ( 'HAYABUSA' )
+         NAIF_BODY_CODE += ( -130 )
+
+         NAIF_BODY_NAME += ( 'HAYABUSA_AMICA' )
+         NAIF_BODY_CODE += ( -130102 )
+
+         NAIF_BODY_NAME += ( 'HAYABUSA_NIRS' )
+         NAIF_BODY_CODE += ( -130200 )
+
+         NAIF_BODY_NAME += ( 'HAYABUSA_LIDAR' )
+         NAIF_BODY_CODE += ( -130300 )
+
+         NAIF_BODY_NAME += ( 'HAYABUSA_XRS' )
+         NAIF_BODY_CODE += ( -130400 )
+
+      \begintext
+
+
+Hayabusa Reference Frames
+---------------------------------------------------------------------------
+
+   The following reference frames for Hayabusa spacecraft, its
+   structures, and science instruments are defined in this FK and other
+   Hayabusa kernels (Itokawa FK, PCKs, and IKs):
+
+
+   Itokawa body-fixed frame (defined in a separate FK and PCKs):
+   -------------------------------------------------------------
+
+           Name                  Relative to           Type         Frame ID
+      ======================  =====================  ============   ========
+      ITOKAWA_FIXED           J2000                  PCK             2025143
+
+
+   Hayabusa spacecraft frame (duplicated in the IKs):
+   ----------------------------------------------------
+           
+           Name                  Relative to           Type         Frame ID
+      ======================  =====================  ============   ========
+      HAYABUSA_SC_BUS_PRIME   J2000                  CK              -130000
+
+
+   Hayabusa Science instrument frames (defined in the instrument IK files):
+   ------------------------------------------------------------------------
+
+           Name                  Relative to           Type         Frame ID
+      ======================  =====================  ============   ========
+      HAYABUSA_AMICA_IDEAL    HAYABUSA_SC_BUS_PRIME  FIXED           -130101
+      HAYABUSA_AMICA          HAYABUSA_AMICA         FIXED           -130102
+
+      HAYABUSA_NIRS_IDEAL     HAYABUSA_SC_BUS_PRIME  FIXED           -130201
+      HAYABUSA_NIRS           HAYABUSA_NIRS_IDEAL    FIXED           -130200
+
+      HAYABUSA_LIDAR_IDEAL    HAYABUSA_SC_BUS_PRIME  FIXED           -130301
+      HAYABUSA_LIDAR          HAYABUSA_LIDAR_IDEAL   FIXED           -130300
+
+      HAYABUSA_XRS_IDEAL      HAYABUSA_SC_BUS_PRIME  FIXED           -130410
+      HAYABUSA_XRS            HAYABUSA_XRS_IDEAL     FIXED           -130400
+
+
+   Hayabusa-specific dynamic frames:
+   ---------------------------------
+
+           Name                  Relative to           Type         Frame ID
+      ======================  =====================  ============   ========
+      HAYABUSA_HP_FRAME       J2000                  DYNAMIC         -130900
+      ITOKAWA_-Z_SUN_+X       J2000                  DYNAMIC         -130910
+      EARTH_ITOKAWA_P         J2000                  DYNAMIC         -130920
+   
+
+Hayabusa Reference Frame Tree
+---------------------------------------------------------------------------
+
+
+   This diagram shows the Hayabusa frame tree:
+
+
+                               "J2000" INERTIAL
+         +-----------------------------------------------------------+
+         |                   |         |         |                   |
+         |<-dynamic          |         |         |          dynamic->|
+         |                   |         |         |                   |
+         V                   |         |         |                   V
+    "HAYABUSA_HP_FRAME"      |         |         |        "ITOKAWA_-Z_SUN_+X"
+    -------------------      |         |         |        -------------------
+                             |         |         |
+                             |         |         |
+                    dynamic->|         |         |<-pck
+                             |         |         |
+                             V         |         V
+                 "EARTH_ITOKAWA_P"     |   "ITOKAWA_FIXED"
+                 -----------------     |   ---------------
+                                       |
+                                       |
+                                       |<-ck
+                                       |
+                                       V
+                           "HAYABUSA_SC_BUS_PRIME"
+         +-----------------------------------------------------------+
+         |                   |                   |                   |
+         |                   |<-fixed            |                   |<-fixed
+         |                   |                   |                   |
+         |                   V                   |                   V
+         |         "HAYABUSA_NIRS_IDEAL"         |        "HAYABUSA_XRS_IDEAL"
+         |         ---------------------         |        --------------------
+         |                   |                   |                   |
+         |                   |<-fixed            |                   |<-fixed
+         |                   |                   |                   |
+         |                   V                   |                   V
+         |            "HAYABUSA_NIRS"            |             "HAYABUSA_XRS"
+         |            ---------------            |             --------------
+         |                                       | 
+         |                                       | 
+         |<-fixed                                |<-fixed 
+         |                                       | 
+         V                                       V
+   "HAYABUSA_AMICA_IDEAL"               "HAYABUSA_LIDAR_IDEAL"
+   ----------------------               ----------------------
+         |                                       | 
+         |<-fixed                                |<-fixed 
+         |                                       | 
+         V                                       V
+     "HAYABUSA_AMICA"                      "HAYABUSA_LIDAR"
+     ----------------                      ----------------
+
+
+Itokawa Body-Fixed Frame
+---------------------------------------------------------------------------
+
+   The Itokawa body-fixed frame, ITOKAWA_FIXED, is defined in a 
+   separate FK file (itokawa_fixed.tf). Its definition is also
+   duplicated in some of the Itokawa PCK files.
+
+
+Hayabusa Spacecraft Frame
+---------------------------------------------------------------------------
+
+   The Hayabusa spacecraft frame, HAYABUSA_SC_BUS_PRIME, is defined 
+   as follows:
+
+      - +Z axis is parallel to the nominal HGA boresight;
+
+      - +X axis is parallel to the ion engines thrust vector;
+
+      - +Y axis completes the right-handed frame;
+
+   The Hayabusa spacecraft frame shown on this diagram:
+
+                                      ^
+                                      | HGA Boresight
+                                      |
+
+                                      ^ 
+                                     / \  HGA
+                            --------------------
+                             \                 /
+                              \        +Z     /
+                         --------     ^    ---------
+                         |            |            | Ion Engines
+                         |            |            |_
+                         |            |      +X    |_]  
+                         |            x----->      |_]   ----->
+                        _|          +Y             |     Thrust Vector
+                  NIRS | |                         |
+                          ----| |---------------| |-
+                           | | LIDAR             XRS
+                           | |
+                  Sample   | |        |
+                   horn    | |        |  Science Instrument
+                          /   \       V     Boresights
+
+
+   This frame is defined as a CK-based frame below. The frame
+   definition is also duplicated in Hayabusa science instrument IKs.
+
+      \begindata
+
+         FRAME_HAYABUSA_SC_BUS_PRIME  = -130000
+         FRAME_-130000_NAME           = 'HAYABUSA_SC_BUS_PRIME'
+         FRAME_-130000_CLASS          = 3
+         FRAME_-130000_CLASS_ID       = -130000
+         FRAME_-130000_CENTER         = -130
+         CK_-130000_SCLK              = -130
+         CK_-130000_SPK               = -130
+
+      \begintext
+
+
+Hayabusa Science Instrument Frames
+---------------------------------------------------------------------------
+
+   Hayabusa science instrument frames are defined in the IK files.
+
+
+Hayabusa-Specific Dynamic Frames
+---------------------------------------------------------------------------
+
+   The HAYABUSA_HP_FRAME frame, used as the reference frame in the
+   Hayabusa SPKs produces by JAXA, is defined as follows:
+
+      - +Z axis is along the geometric direction from Itokawa to the
+        Earth
+
+      - +X axis is as close as possible to the geometric direction 
+        from Itokawa to the Sun
+
+      - +Y axis completes the right-handed frame;
+
+   This frame is defined as a two-vector style dynamic frame below.
+   
+      \begindata
+
+         FRAME_HAYABUSA_HP            = -130900
+         FRAME_-130900_NAME           = 'HAYABUSA_HP'
+         FRAME_-130900_CLASS          = 5
+         FRAME_-130900_CLASS_ID       = -130900
+         FRAME_-130900_CENTER         = 2025143
+         FRAME_-130900_RELATIVE       = 'J2000'
+         FRAME_-130900_DEF_STYLE      = 'PARAMETERIZED'
+         FRAME_-130900_FAMILY         = 'TWO-VECTOR'
+         FRAME_-130900_PRI_AXIS       = 'Z'
+         FRAME_-130900_PRI_VECTOR_DEF = 'OBSERVER_TARGET_POSITION'
+         FRAME_-130900_PRI_OBSERVER   = 2025143
+         FRAME_-130900_PRI_TARGET     = 'EARTH'
+         FRAME_-130900_PRI_ABCORR     = 'NONE'
+         FRAME_-130900_SEC_VECTOR_DEF = 'OBSERVER_TARGET_POSITION'
+         FRAME_-130900_SEC_OBSERVER   = 2025143
+         FRAME_-130900_SEC_TARGET     = 'SUN'
+         FRAME_-130900_SEC_AXIS       = 'X'
+         FRAME_-130900_SEC_ABCORR     = 'NONE'
+
+      \begintext
+
+
+   The ITOKAWA_-Z_SUN_+X frame, representing the nominal Itokawa-pointed
+   orientation, is defined as follows:
+
+      - -Z axis is along the geometric direction from Hayabusa to
+        Itokawa
+
+      - +X axis is as close as possible to the geometric direction from
+        Hayabusa to the Sun
+
+      - +Y axis completes the right-handed frame;
+
+   This frame is defined as a two-vector style dynamic frame below.
+
+      \begindata
+
+         FRAME_ITOKAWA_-Z_SUN_+X      = -130910
+         FRAME_-130910_NAME           = 'ITOKAWA_-Z_SUN_+X'
+         FRAME_-130910_CLASS          = 5
+         FRAME_-130910_CLASS_ID       = -130910
+         FRAME_-130910_CENTER         = -130
+         FRAME_-130910_RELATIVE       = 'J2000'
+         FRAME_-130910_DEF_STYLE      = 'PARAMETERIZED'
+         FRAME_-130910_FAMILY         = 'TWO-VECTOR'
+         FRAME_-130910_PRI_AXIS       = '-Z'
+         FRAME_-130910_PRI_VECTOR_DEF = 'OBSERVER_TARGET_POSITION'
+         FRAME_-130910_PRI_OBSERVER   = -130
+         FRAME_-130910_PRI_TARGET     = 2025143
+         FRAME_-130910_PRI_ABCORR     = 'NONE'
+         FRAME_-130910_SEC_VECTOR_DEF = 'OBSERVER_TARGET_POSITION'
+         FRAME_-130910_SEC_OBSERVER   = -130
+         FRAME_-130910_SEC_TARGET     = 'SUN'
+         FRAME_-130910_SEC_AXIS       = 'X'
+         FRAME_-130910_SEC_ABCORR     = 'NONE'
+
+      \begintext
+
+
+   The EARTH_ITOKAWA_P frame is defined as follows:
+
+      - +Z axis is along the geometric direction from the Earth to
+        Itokawa
+
+      - +Y axis is as close as possible to the geometric direction from
+        the Earth to the Sun
+
+      - +X axis completes the right-handed frame;
+
+   This frame is defined as a two-vector style dynamic frame below.
+
+      \begindata
+
+         FRAME_EARTH_ITOKAWA_P        = -130920
+         FRAME_-130920_NAME           = 'EARTH_ITOKAWA_P'
+         FRAME_-130920_CLASS          = 5
+         FRAME_-130920_CLASS_ID       = -130920
+         FRAME_-130920_CENTER         = 399
+         FRAME_-130920_RELATIVE       = 'J2000'
+         FRAME_-130920_DEF_STYLE      = 'PARAMETERIZED'
+         FRAME_-130920_FAMILY         = 'TWO-VECTOR'
+         FRAME_-130920_PRI_AXIS       = 'Z'
+         FRAME_-130920_PRI_VECTOR_DEF = 'OBSERVER_TARGET_POSITION'
+         FRAME_-130920_PRI_OBSERVER   = 'EARTH'
+         FRAME_-130920_PRI_TARGET     = 2025143
+         FRAME_-130920_PRI_ABCORR     = 'NONE'
+         FRAME_-130920_SEC_VECTOR_DEF = 'OBSERVER_TARGET_POSITION'
+         FRAME_-130920_SEC_OBSERVER   = 'EARTH'
+         FRAME_-130920_SEC_TARGET     = 'SUN'
+         FRAME_-130920_SEC_AXIS       = 'Y'
+         FRAME_-130920_SEC_ABCORR     = 'NONE'
+
+     \begintext
+
+
+End of FK file.
diff --git a/tests/pytests/data/st_2458542208_v/hayabusa_itokawarendezvous_v02n_0_sliced_-130000.xc b/tests/pytests/data/st_2458542208_v/hayabusa_itokawarendezvous_v02n_0_sliced_-130000.xc
new file mode 100644
index 0000000000000000000000000000000000000000..c273b85e0b980cb1954fa33af2a2fa3b6f17dab8
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/hayabusa_itokawarendezvous_v02n_0_sliced_-130000.xc
@@ -0,0 +1,192 @@
+DAFETF NAIF DAF ENCODED TRANSFER FILE
+'DAF/CK  '
+'2'
+'6'
+'HAYABUSA S/C ATTITUDE                                       '
+BEGIN_ARRAY 1 171
+'HAYABUSA S/C ATTITUDE                   '
+'927A277516^A'
+'927A488148^A'
+'-1FBD0'
+'1'
+'3'
+'1'
+171
+'5AF67FA56758E4^0'
+'-9A5236475B2798^0'
+'-5F54E2FD0AAF08^0'
+'-9C128FC7B1E81^0'
+'-39317E7633275E^-4'
+'-F184F21C6525A^-4'
+'1D3CB82DEED556^-3'
+'5AF5775759E64C^0'
+'-9A507A37E01AD^0'
+'-5F557EE8CC923C^0'
+'-9C1481A2B1C4C8^0'
+'-84201140D07998^-4'
+'-EC165A98193D38^-4'
+'21D5CF1FB7C69C^-3'
+'5AF3093BDCF004^0'
+'-9A4A9BAE0F8CD8^0'
+'-5F5A534B2DEA8^0'
+'-9C18C64606823^0'
+'203C10C00E7638^-4'
+'-7A0013CC6A705^-4'
+'1D14FB76F37DF5^-3'
+'5AEAFB630EEC5C^0'
+'-9A433962816BA8^0'
+'-5F611EB0D7CA8C^0'
+'-9C209CC92038D^0'
+'-25F10A31715D2E^-4'
+'-5EA2D2A2ECF454^-4'
+'1FC4205601F731^-3'
+'5AE31C66EFBAE^0'
+'-9A3B14A2238468^0'
+'-5F6A5CE644FDE4^0'
+'-9C2797A6AAFAA8^0'
+'-F0EA0521F1D3B^-6'
+'-B4FA7D1DE767C8^-4'
+'17F1BC1FCDAC44^-3'
+'5ADDEF060563E^0'
+'-9A332868B0D148^0'
+'-5F6F95BBCA0664^0'
+'-9C2F3CE438BEB^0'
+'E9FA09C5053B48^-5'
+'-8DCBD638BC5C6^-4'
+'2103090CB49836^-3'
+'5AD53D45B1C29^0'
+'-9A2A7642070388^0'
+'-5F77ACB6F399E8^0'
+'-9C37EF47674E18^0'
+'9E4085AD099DC^-4'
+'-64DE7B0BC67D44^-4'
+'18696DD7875F8D^-3'
+'5ACBFCE02F29D8^0'
+'-9A25BD8D4DA15^0'
+'-5F7AE370073BC8^0'
+'-9C4001D675B6^0'
+'-4CFF1C657525AC^-4'
+'-410EDDD8724EFC^-4'
+'1BA478ACCDB0F6^-3'
+'5AC5C24925CB7^0'
+'-9A1E7DA4B7E298^0'
+'-5F83F50476E984^0'
+'-9C453C178663A^0'
+'-1786F5E2F1564B^-4'
+'7D613533265B34^-4'
+'1D79A2A13D0673^-3'
+'5ABBBE263B81A^0'
+'-9A1B1F4056E31^0'
+'-5F8EAABD53692^0'
+'-9C47D37F7E42A8^0'
+'352DCF88CD76A8^-4'
+'6DE484F7D867A^-4'
+'128723C1FB93D8^-3'
+'5AB79A8D83B4D8^0'
+'-9A1AB8192C7F6^0'
+'-5F91AE30A66DA8^0'
+'-9C48C89B9608B8^0'
+'-5D399B25E9094C^-4'
+'3375E56C4E01C6^-4'
+'137C56E0C600F7^-3'
+'5AB54F26C0093C^0'
+'-9A18F445A5F05^0'
+'-5F959C661EBD28^0'
+'-9C4973B6D0834^0'
+'3888DE91DA2E62^-4'
+'-3E35852C277874^-3'
+'-2E5A7E89B84558^-3'
+'5ACE00CC57F70C^0'
+'-9A0F3D03B034F8^0'
+'-5F7B8EB01B71F^0'
+'-9C549D6A528AE8^0'
+'70694B3E46E1F4^-4'
+'-919D4B5D8715D8^-3'
+'-6C775C537BA878^-3'
+'5B082401538C9^0'
+'-99F836A1378BB^0'
+'-5F3EED2581DCD8^0'
+'-9C6E7701C1A178^0'
+'63958F477600A8^-4'
+'-977D69FC1E6E08^-3'
+'-590F577A08989C^-3'
+'5B3DA3C191E37C^0'
+'-99DB913D43E55^0'
+'-5F0749423C6E44^0'
+'-9C8D4EF5CBC7D^0'
+'7EBEE109F8ED64^-4'
+'-A3AB14CFDE6D6^-3'
+'-502445F5D82418^-3'
+'5B721D773E3E44^0'
+'-99B9C5FA9F644^0'
+'-5ECF983BF1A36^0'
+'-9CB1A38BEBD2A8^0'
+'1F074FDDCF33CC^-4'
+'-A53B3C2D847D08^-3'
+'-3F2986F038BBB4^-3'
+'5BA37061980BD4^0'
+'-9993365590FB4^0'
+'-5E9E80F59DD4A^0'
+'-9CD84A51763C4^0'
+'5006A8BD91EB8C^-4'
+'-B1C5788130A6^-3'
+'-33B30536E1FBBC^-3'
+'5BD29AFE3E8934^0'
+'-99672A1178521^0'
+'-5E6D9F53DC7244^0'
+'-9D053E7AD9E788^0'
+'5C0AE340BAA7D8^-4'
+'-B2F8EC0748F978^-3'
+'-1FDFB2276E35C2^-3'
+'5BFBA3BE2B52A^0'
+'-993727014D5888^0'
+'-5E4230CBF0FC5^0'
+'-9D362B785C2718^0'
+'36CEDF7E5515E2^-4'
+'-9BC4297DF68BF8^-3'
+'-16189AA37BAA98^-3'
+'5C0D97E7487A3^0'
+'-9920A4F55FFF58^0'
+'-5E2F986B7006DC^0'
+'-9D4CBAAED39158^0'
+'C9662B46E021C8^-4'
+'-DEADB0D25B46F8^-3'
+'-9291860E9BC3A^-4'
+'5C1A318B94495^0'
+'-990C5553D0E0C8^0'
+'-5E20E66FDC894C^0'
+'-9D61E959B7D13^0'
+'5E2376A41CE5C^-4'
+'-C87B22056FAAC^-3'
+'59A59B8AFF66E^-5'
+'927A277516^A'
+'927A27DFFE045^A'
+'927A28D4FD49F8^A'
+'927A2AD5000C28^A'
+'927A2CD502CE6^A'
+'927A2ED4FD5F5^A'
+'927A30D500218^A'
+'927A32D502E3B8^A'
+'927A34D4FD74B8^A'
+'927A36D50036E8^A'
+'927A37DFFB8248^A'
+'927A38D502F92^A'
+'927A3AD4FD8A1^A'
+'927A3CD5004C4^A'
+'927A3ED5030E78^A'
+'927A40D4FD9F78^A'
+'927A42D50061A8^A'
+'927A44D50323E^A'
+'927A46D4FDB4F^A'
+'927A47E0013178^A'
+'927A488148^A'
+'927A277516^A'
+'1^1'
+'15^2'
+END_ARRAY 1 171
+TOTAL_ARRAYS 1
+ ~NAIF/SPC BEGIN COMMENTS~
+This CK is for testing with the image: ../../../data/isistestdata/hayabusa/st_2458542208_v.ale.cub
+
+This CK was generated using the following command: {}
+ ~NAIF/SPC END COMMENTS~
diff --git a/tests/pytests/data/st_2458542208_v/hayabusa_itokawarendezvous_v02n_1_sliced_-130000.xc b/tests/pytests/data/st_2458542208_v/hayabusa_itokawarendezvous_v02n_1_sliced_-130000.xc
new file mode 100644
index 0000000000000000000000000000000000000000..c2bcac3306f921827ee34d7a99cd74dd2518396f
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/hayabusa_itokawarendezvous_v02n_1_sliced_-130000.xc
@@ -0,0 +1,192 @@
+DAFETF NAIF DAF ENCODED TRANSFER FILE
+'DAF/CK  '
+'2'
+'6'
+'HAYABUSA S/C ATTITUDE                                       '
+BEGIN_ARRAY 1 171
+'HAYABUSA S/C ATTITUDE                   '
+'927A6801EB^A'
+'927A88CC7^A'
+'-1FBD0'
+'1'
+'3'
+'1'
+171
+'5C70D766D707D4^0'
+'-997646A23F2CD8^0'
+'-5DC882D28D3B0C^0'
+'-9CFC96314D23C^0'
+'-9819C56C06A41^-4'
+'64BFA3A7A17894^-3'
+'ADF8DA8CF601D8^-3'
+'5C53B23D3A8AA4^0'
+'-9974C5EEC9B65^0'
+'-5DE77A14ABC33^0'
+'-9CFCB23E00E408^0'
+'-7AD008DDB287FC^-4'
+'61A4DF7521986C^-3'
+'8ADDB81731E28^-3'
+'5C197E5A7A3288^0'
+'-9977D3766FA778^0'
+'-5E2508EF32ECA4^0'
+'-9CF707CB6AE1C^0'
+'-3052E2BEB8EFB4^-4'
+'6BD9C8CB7479C4^-3'
+'7D04E94B1DF53^-3'
+'5BE038B880C1E^0'
+'-998153D872DE48^0'
+'-5E5ED0CC85A568^0'
+'-9CEC9ABF6EBEA^0'
+'-2410936D373D4E^-4'
+'6D62AA8FAE60B4^-3'
+'79F0195A002764^-3'
+'5BA7582628D28C^0'
+'-998BF163C82F9^0'
+'-5E97ACCF6DBD6C^0'
+'-9CE13E516540D^0'
+'-777470CF4E625C^-4'
+'74852558FCE6C^-3'
+'6E7D531A4438D^-3'
+'5B722FEA3F3058^0'
+'-9999DD8C0403F^0'
+'-5ECFEF45289CC8^0'
+'-9CD0AB7E6F8C48^0'
+'-3A4FF21DCA067A^-4'
+'89380018030C68^-3'
+'59339D0C630868^-3'
+'5B3E880E26046C^0'
+'-99B2B157118228^0'
+'-5F044CF6DCA60C^0'
+'-9CB6BACDBAAE3^0'
+'-55B038D73FC66^-4'
+'5880CBB1B0A0E^-3'
+'1A338CCF2E9AA6^-3'
+'5B27B06F99F71C^0'
+'-99C7F48C0963^0'
+'-5F1D924E6C3C6C^0'
+'-9C9FD3CD836AB8^0'
+'4A8522D996021C^-4'
+'-2E6897B30AE0E8^-4'
+'-337CF7549C284A^-3'
+'5B3693B46BD644^0'
+'-99D1756650CBB^0'
+'-5F0C2A35704F58^0'
+'-9C9864F167FA58^0'
+'114EB3DD399CC4^-4'
+'-7857A5C5789318^-4'
+'-263D988FD8E8BE^-3'
+'5B3D3C1AA0504^0'
+'-99D40FA1BE875^0'
+'-5F054D51BC49F^0'
+'-9C961FC9EDC178^0'
+'-7A6047469C1BB^-4'
+'-9112D212398A48^-4'
+'-4228565A6749F^-3'
+'5B48D2065AE948^0'
+'-99D7F4B14D4CA8^0'
+'-5EFC22EB3C6468^0'
+'-9C911B262EC9E8^0'
+'-3322606C81FFE6^-4'
+'-11C0DE232A89A1^-3'
+'-3365154411E5EC^-3'
+'5B5CC9DBC7CA94^0'
+'-99DB7D06B9AD28^0'
+'-5EEA80E0E095F4^0'
+'-9C8CAE5446FAA^0'
+'2D32258FAA9414^-4'
+'-1DB6FE1DF80845^-3'
+'-24943378911E5C^-3'
+'5B6CA1531A6B38^0'
+'-99D9AF7B22E6C^0'
+'-5ED9584443E8E4^0'
+'-9C8F9AA034BCB^0'
+'571FC930F61E7C^-4'
+'-1934347E19D438^-3'
+'-28D832F8EC3D0C^-3'
+'5B7C26A72161E^0'
+'-99DA83C45BB3F^0'
+'-5EC6E77D27958^0'
+'-9C90E3E4618968^0'
+'-11B6C87C9846AE^-5'
+'-176E1B38B7119B^-3'
+'-13BA277C72E097^-3'
+'5B81919A00E87C^0'
+'-99D8AD17D9FFC8^0'
+'-5EC1A41C27D4CC^0'
+'-9C92B76AC60948^0'
+'-2FFB9950DE230A^-4'
+'-342F5094B3A39^-3'
+'-3AD8DE99FBCEAA^-3'
+'5B8F3BAB849CE4^0'
+'-99D5FE2CD60138^0'
+'-5EB527456B2A7C^0'
+'-9C94EB8DFFAD6^0'
+'DF00A1651EF4F^-5'
+'-23377CCD1109CE^-3'
+'-26924CA3D3264^-3'
+'5BA14757CD9F54^0'
+'-99D282AAA11DE^0'
+'-5EA2FFD0E2758C^0'
+'-9C98C2EF8AB9A^0'
+'1464C566BB48D2^-4'
+'-2AAD03D536B0B^-3'
+'-212C0B613A6F9^-3'
+'5BB2ED77F3F1E8^0'
+'-99CBD067408E38^0'
+'-5E9100FEC23BB^0'
+'-9C9FE0D868834^0'
+'4B48F61CF671A^-5'
+'-282D0245B0619C^-3'
+'-17D1E03510A69F^-3'
+'5BC18B7FAC5424^0'
+'-99C3F9440C4528^0'
+'-5E828FD5368A94^0'
+'-9CA7BB6A4A5C88^0'
+'21F269F4F9B21E^-4'
+'-29F6E4240B129E^-3'
+'-FD069CF91C57F8^-4'
+'5BC7C6441F136^0'
+'-99BEFF94238F78^0'
+'-5E7BD333F07CC8^0'
+'-9CAD078D5FDBF^0'
+'-873AF1F202BE8^-4'
+'-37472D98483C76^-3'
+'-19C3F46F69EF88^-3'
+'5BD14C29C5A81^0'
+'-99B8AE9D923698^0'
+'-5E74DEBC80D594^0'
+'-9CB1D73B9D359^0'
+'74D917F69CB14^-4'
+'-2998993BAE8A44^-3'
+'-E3144D82A47338^-4'
+'927A6801EB^A'
+'927A68D503A43^A'
+'927A6AD4FE353^A'
+'927A6CD500F76^A'
+'927A6ED503B99^A'
+'927A70D4FE4A98^A'
+'927A72D5010CC8^A'
+'927A74D503CEF8^A'
+'927A76D4FE5FF^A'
+'927A77E001DC88^A'
+'927A78D501222^A'
+'927A7AD503E45^A'
+'927A7CD4FE7558^A'
+'927A7ED5013788^A'
+'927A7FDFFC82E8^A'
+'927A80D503F9B8^A'
+'927A82D4FE8AB^A'
+'927A84D5014CE^A'
+'927A86D5040F1^A'
+'927A87DFFF5A7^A'
+'927A88CC7^A'
+'927A6801EB^A'
+'1^1'
+'15^2'
+END_ARRAY 1 171
+TOTAL_ARRAYS 1
+ ~NAIF/SPC BEGIN COMMENTS~
+This CK is for testing with the image: ../../../data/isistestdata/hayabusa/st_2458542208_v.ale.cub
+
+This CK was generated using the following command: {}
+ ~NAIF/SPC END COMMENTS~
diff --git a/tests/pytests/data/st_2458542208_v/itokawa_fixed.tf b/tests/pytests/data/st_2458542208_v/itokawa_fixed.tf
new file mode 100755
index 0000000000000000000000000000000000000000..1a6630f4945ec137408f6860ee477af3c5d8209e
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/itokawa_fixed.tf
@@ -0,0 +1,94 @@
+KPL/FK
+
+\beginlabel
+PDS_VERSION_ID               = PDS3
+RECORD_TYPE                  = STREAM
+RECORD_BYTES                 = "N/A"
+^SPICE_KERNEL                = "itokawa_fixed.tf"
+MISSION_NAME                 = HAYABUSA
+SPACECRAFT_NAME              = HAYABUSA
+DATA_SET_ID                  = "HAY-A-SPICE-6-V1.0"
+KERNEL_TYPE_ID               = FK
+PRODUCT_ID                   = "itokawa_fixed.tf"
+PRODUCT_CREATION_TIME        = 2009-11-30T13:50:41
+PRODUCER_ID                  = JAXA
+MISSION_PHASE_NAME           = "N/A"
+PRODUCT_VERSION_TYPE         = ACTUAL
+PLATFORM_OR_MOUNTING_NAME    = "N/A"
+START_TIME                   = "N/A"
+STOP_TIME                    = "N/A"
+SPACECRAFT_CLOCK_START_COUNT = "N/A"
+SPACECRAFT_CLOCK_STOP_COUNT  = "N/A"
+TARGET_NAME                  = "25143 ITOKAWA"
+INSTRUMENT_NAME              = "N/A"
+NAIF_INSTRUMENT_ID           = "N/A"
+SOURCE_PRODUCT_ID            = "N/A"
+NOTE                         = "See comments in the file for details"
+OBJECT                       = SPICE_KERNEL
+  INTERCHANGE_FORMAT         = ASCII
+  KERNEL_TYPE                = FRAMES
+  DESCRIPTION                = "SPICE Frames Kernel (FK) file containing
+the definition of the asteroid Itokawa body-fixed frame, created by the
+Hayabusa Joint Science Team. "
+END_OBJECT                   = SPICE_KERNEL
+\endlabel
+
+
+ITOKAWA Body-Fixed Frame Definition Kernel
+===========================================================================
+
+   This frame kernel contains asteroid ITOKAWA body-fixed frame definition.
+
+   
+Version and Date
+--------------------------------------------------------
+
+   Version 1.0 -- May 25, 2004 -- Naru Hirata
+
+      Initial release.
+
+
+Implementation Notes
+--------------------------------------------------------
+
+   This file is used by the SPICE system as follows: programs that make
+   use of this frame kernel must `load' the kernel, normally during program
+   initialization. Loading the kernel associates data items with their
+   names in a data structure called the `kernel pool'. The SPICELIB
+   routine FURNSH loads a kernel file into the pool as shown below.
+
+      CALL FURNSH ( frame_kernel_name )
+
+   This file was created and may be updated with a text editor or word
+   processor.
+
+
+ITOKAWA Body-Fixed Frame
+--------------------------------------------------------
+
+   This kernel file defines asteroid ITOKAWA body-frame, ITOKAWA_FIXED, with
+   the frame ID code 2025143 in the same as any other PCK frame:
+   
+      *  +Z along asteroid's North pole;
+      
+      *  +X along asteroid's prime meridian;
+      
+      *  +Y complements to the right hand frame;
+      
+      *  the origin of this frame is at the center of the asteroid ellipsoid.
+      
+   As for any PCK frame orientation of this frame is computed by evaluating 
+   corresponding rotation constants provided in a PCK file.
+
+   \begindata
+
+      FRAME_ITOKAWA_FIXED    =  2025143
+      FRAME_2025143_NAME     = 'ITOKAWA_FIXED'
+      FRAME_2025143_CLASS    =  2
+      FRAME_2025143_CLASS_ID =  2025143
+      FRAME_2025143_CENTER   =  2025143
+
+      OBJECT_2025143_FRAME   = 'ITOKAWA_FIXED'
+
+   \begintext
+
diff --git a/tests/pytests/data/st_2458542208_v/itokawa_gaskell_n3.tpc b/tests/pytests/data/st_2458542208_v/itokawa_gaskell_n3.tpc
new file mode 100755
index 0000000000000000000000000000000000000000..e8abb4dbe97d6f350c0b718f1cb036d1812a8700
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/itokawa_gaskell_n3.tpc
@@ -0,0 +1,115 @@
+KPL/PCK
+
+\beginlabel
+PDS_VERSION_ID               = PDS3
+RECORD_TYPE                  = STREAM
+RECORD_BYTES                 = "N/A"
+^SPICE_KERNEL                = "itokawa_gaskell_n3.tpc"
+MISSION_NAME                 = HAYABUSA
+SPACECRAFT_NAME              = HAYABUSA
+DATA_SET_ID                  = "HAY-A-SPICE-6-V1.0"
+KERNEL_TYPE_ID               = PCK
+PRODUCT_ID                   = "itokawa_gaskell_n3.tpc"
+PRODUCT_CREATION_TIME        = 2009-11-30T13:50:42
+PRODUCER_ID                  = "R.GASKELL/PSI"
+MISSION_PHASE_NAME           = "N/A"
+PRODUCT_VERSION_TYPE         = ACTUAL
+PLATFORM_OR_MOUNTING_NAME    = "N/A"
+START_TIME                   = "N/A"
+STOP_TIME                    = "N/A"
+SPACECRAFT_CLOCK_START_COUNT = "N/A"
+SPACECRAFT_CLOCK_STOP_COUNT  = "N/A"
+TARGET_NAME                  = "25143 ITOKAWA"
+INSTRUMENT_NAME              = "N/A"
+NAIF_INSTRUMENT_ID           = "N/A"
+SOURCE_PRODUCT_ID            = "N/A"
+NOTE                         = "See comments in the file for details"
+OBJECT                       = SPICE_KERNEL
+  INTERCHANGE_FORMAT         = ASCII
+  KERNEL_TYPE                = TARGET_CONSTANTS
+  DESCRIPTION                = "SPICE Planetary Constants Kernel (PCK) file
+containing the asteroid Itokawa radii values, body-fixed frame definition,
+and rotation constants derived by Dr. Robert W. Gaskell, PSI. The original
+name of this files was Itokawa_Gaskell_n3.tpc. It contains the rotation
+constants consistent with the Itokawa shape models archived in the PDS data
+set HAY-A-AMICA-5-ITOKAWASHAPE-V1.0. "
+END_OBJECT                   = SPICE_KERNEL
+\endlabel
+
+
+Asteroid Itokawa P_constants (PcK) SPICE kernel file
+===========================================================================
+
+     By Hayabusa Joint Science Team, <unknown date>; miscellaneous comments
+     added by Boris Semenov, NAIF/JPL, on September 24, 2009.
+
+
+Summary
+--------------------------------------------------------
+
+     This PCK file contains Itokawa rotation constants, radii and 
+     the definition of the Itokawa body-fixed frame, ITOKAWA_FIXED.
+
+     The Itokawa rotation constants provided in this PCK are 
+     from the data set catalog file for the Itokawa shape model 
+     data set (HAY-A-AMICA-5-ITOKAWASHAPE-V1.0) by the Dr. Robert W. 
+     Gaskell, PSI.
+
+
+Rotation constants for asteroid Itokawa
+--------------------------------------------------------
+
+     Itokawa rotation constants are provided in the keywords below.   
+ 
+     \begindata
+ 
+        BODY2025143_POLE_RA    = ( 90.02564    0.0              0.0 )
+        BODY2025143_POLE_DEC   = (-67.02704   0.0              0.0 )
+        BODY2025143_PM         = (129.73000   712.14376110          0.0 )
+ 
+     \begintext
+
+
+Radii for asteroid ITOKAWA
+--------------------------------------------------------
+     
+     The Itokawa radii are provided in the keyword below.
+
+     \begindata
+ 
+        BODY2025143_RADII      = ( 0.274  0.156  0.138  )
+ 
+     \begintext
+
+
+ITOKAWA_FIXED Frame Definition
+--------------------------------------------------------
+
+     The ITOKAWA fixed frame is defined in the same as any other PCK
+     frame:
+ 
+        *  +Z along the North pole;
+      
+        *  +X toward the prime meridian;
+      
+        *  +Y completes the right hand frame;
+      
+        *  the origin of this frame is at the center of the body.
+      
+     The orientation of this frame is computed by evaluating
+     corresponding rotation constants provided in this PCK file.
+
+     \begindata
+
+        FRAME_ITOKAWA_FIXED      =  2025143
+        FRAME_2025143_NAME     = 'ITOKAWA_FIXED'
+        FRAME_2025143_CLASS    =  2
+        FRAME_2025143_CLASS_ID =  2025143
+        FRAME_2025143_CENTER   =  2025143
+
+        OBJECT_2025143_FRAME   = 'ITOKAWA_FIXED'
+
+     \begintext
+
+
+End of PCK file.
diff --git a/tests/pytests/data/st_2458542208_v/naif0012.tls b/tests/pytests/data/st_2458542208_v/naif0012.tls
new file mode 100755
index 0000000000000000000000000000000000000000..e1afdee1b626e01a3f1b04ef8a43154e83972e56
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/naif0012.tls
@@ -0,0 +1,152 @@
+KPL/LSK
+
+
+LEAPSECONDS KERNEL FILE
+===========================================================================
+
+Modifications:
+--------------
+
+2016, Jul. 14   NJB  Modified file to account for the leapsecond that
+                     will occur on December 31, 2016.
+
+2015, Jan. 5    NJB  Modified file to account for the leapsecond that
+                     will occur on June 30, 2015.
+
+2012, Jan. 5    NJB  Modified file to account for the leapsecond that
+                     will occur on June 30, 2012.
+                     
+2008, Jul. 7    NJB  Modified file to account for the leapsecond that
+                     will occur on December 31, 2008.
+                     
+2005, Aug. 3    NJB  Modified file to account for the leapsecond that
+                     will occur on December 31, 2005.
+                     
+1998, Jul  17   WLT  Modified file to account for the leapsecond that
+                     will occur on December 31, 1998.
+                     
+1997, Feb  22   WLT  Modified file to account for the leapsecond that
+                     will occur on June 30, 1997.
+                     
+1995, Dec  14   KSZ  Corrected date of last leapsecond from 1-1-95
+                     to 1-1-96.
+
+1995, Oct  25   WLT  Modified file to account for the leapsecond that
+                     will occur on Dec 31, 1995.
+
+1994, Jun  16   WLT  Modified file to account for the leapsecond on
+                     June 30, 1994.
+
+1993, Feb. 22  CHA   Modified file to account for the leapsecond on
+                     June 30, 1993.
+
+1992, Mar. 6   HAN   Modified file to account for the leapsecond on
+                     June 30, 1992.
+
+1990, Oct. 8   HAN   Modified file to account for the leapsecond on 
+                     Dec. 31, 1990.  
+
+
+Explanation:
+------------
+
+The contents of this file are used by the routine DELTET to compute the 
+time difference
+
+[1]       DELTA_ET  =  ET - UTC                                         
+          
+the increment to be applied to UTC to give ET. 
+
+The difference between UTC and TAI,
+
+[2]       DELTA_AT  =  TAI - UTC
+
+is always an integral number of seconds. The value of DELTA_AT was 10
+seconds in January 1972, and increases by one each time a leap second
+is declared. Combining [1] and [2] gives
+
+[3]       DELTA_ET  =  ET - (TAI - DELTA_AT)
+
+                    =  (ET - TAI) + DELTA_AT
+
+The difference (ET - TAI) is periodic, and is given by
+
+[4]       ET - TAI  =  DELTA_T_A  + K sin E 
+
+where DELTA_T_A and K are constant, and E is the eccentric anomaly of the 
+heliocentric orbit of the Earth-Moon barycenter. Equation [4], which ignores 
+small-period fluctuations, is accurate to about 0.000030 seconds.
+
+The eccentric anomaly E is given by 
+
+[5]       E = M + EB sin M
+
+where M is the mean anomaly, which in turn is given by 
+
+[6]       M = M  +  M t
+               0     1
+
+where t is the number of ephemeris seconds past J2000.
+
+Thus, in order to compute DELTA_ET, the following items are necessary.
+
+          DELTA_TA
+          K
+          EB
+          M0
+          M1
+          DELTA_AT      after each leap second.
+
+The numbers, and the formulation, are taken from the following sources.
+
+     1) Moyer, T.D., Transformation from Proper Time on Earth to 
+        Coordinate Time in Solar System Barycentric Space-Time Frame
+        of Reference, Parts 1 and 2, Celestial Mechanics 23 (1981),
+        33-56 and 57-68.
+
+     2) Moyer, T.D., Effects of Conversion to the J2000 Astronomical
+        Reference System on Algorithms for Computing Time Differences
+        and Clock Rates, JPL IOM 314.5--942, 1 October 1985.
+
+The variable names used above are consistent with those used in the 
+Astronomical Almanac.
+
+\begindata
+
+DELTET/DELTA_T_A       =   32.184
+DELTET/K               =    1.657D-3
+DELTET/EB              =    1.671D-2
+DELTET/M               = (  6.239996D0   1.99096871D-7 )
+
+DELTET/DELTA_AT        = ( 10,   @1972-JAN-1
+                           11,   @1972-JUL-1     
+                           12,   @1973-JAN-1     
+                           13,   @1974-JAN-1     
+                           14,   @1975-JAN-1          
+                           15,   @1976-JAN-1          
+                           16,   @1977-JAN-1          
+                           17,   @1978-JAN-1          
+                           18,   @1979-JAN-1          
+                           19,   @1980-JAN-1          
+                           20,   @1981-JUL-1          
+                           21,   @1982-JUL-1          
+                           22,   @1983-JUL-1          
+                           23,   @1985-JUL-1          
+                           24,   @1988-JAN-1 
+                           25,   @1990-JAN-1
+                           26,   @1991-JAN-1 
+                           27,   @1992-JUL-1
+                           28,   @1993-JUL-1
+                           29,   @1994-JUL-1
+                           30,   @1996-JAN-1 
+                           31,   @1997-JUL-1
+                           32,   @1999-JAN-1
+                           33,   @2006-JAN-1
+                           34,   @2009-JAN-1
+                           35,   @2012-JUL-1
+                           36,   @2015-JUL-1 
+                           37,   @2017-JAN-1 )
+
+\begintext
+
+
diff --git a/tests/pytests/data/st_2458542208_v/pck00009.tpc b/tests/pytests/data/st_2458542208_v/pck00009.tpc
new file mode 100755
index 0000000000000000000000000000000000000000..bfadaab2b26817327189ff3173e9609f49dedc9d
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/pck00009.tpc
@@ -0,0 +1,3639 @@
+KPL/PCK
+ 
+
+P_constants (PcK) SPICE kernel file
+===========================================================================
+
+        By: Nat Bachman (NAIF)    2010 March 3
+ 
+ 
+Purpose
+--------------------------------------------------------
+
+     This file makes available for use in SPICE-based application
+     software orientation and size/shape data for natural bodies. The
+     principal source of the data is a published report by the IAU/IAG
+     Working Group on Cartographic Coordinates and Rotational Elements [1].
+
+     Orientation and size/shape data not provided by this file may be
+     available in mission-specific PCK files. Such PCKs may be the preferred
+     data source for mission-related applications. Mission-specific PCKs can
+     be found in PDS archives or on the NAIF web site at URL:
+
+        http://naif.jpl.nasa.gov
+
+
+File Organization
+--------------------------------------------------------
+ 
+     The contents of this file are as follows.
+ 
+     Introductory Information:
+
+         --   Purpose
+
+         --   File Organization
+ 
+         --   Version description
+ 
+         --   Disclaimer
+ 
+         --   Sources
+ 
+         --   Explanatory notes
+ 
+         --   Body numbers and names
+ 
+
+     PcK Data:
+ 
+
+        Orientation Data
+        ----------------
+
+         --   Orientation constants for the Sun and planets.        
+              Additional items included in this section:
+
+                 - Earth north geomagnetic centered dipole values
+                   for epochs 1945-2000
+
+                 - Mars prime meridian offset "lambda_a"
+
+         --   Orientation constants for satellites
+ 
+         --   Orientation constants for asteroids Eros, Gaspra, Ida,
+              Itokawa, and Vesta
+ 
+         --   Orientation constants for comets 19P/Borrelly
+              and 9P/Tempel 1
+
+
+        Radii of Bodies
+        ---------------
+
+         --   Radii of Sun and planets
+         
+         --   Radii of satellites, where available
+         
+         --   Radii of asteroids Ceres, Eros, Gaspra, Ida, Itokawa,
+              Mathilde, Toutatis, and Vesta.
+            
+         --   Radii of comets 19P/Borrelly, Halley, 9P/Tempel 1,
+              and 81P/Wild 2
+
+
+
+Version Description
+--------------------------------------------------------
+ 
+     This file was created on March 3, 2010. This version
+     incorporates data from reference [1].
+ 
+     This file contains size, shape, and orientation data for all
+     objects described by the previous version of the file, except
+     for Kleopatra: a shape model for this body is not provided in [1]
+     because, according to this source, it had been "modeled from
+     low resolution radar data, and cannot be mapped from those
+     data."
+
+     New objects covered by this file but not the previous
+     version are:
+        
+        19P/Borrelly
+        Halley
+        9P/Tempel 1
+        81P/Wild 2
+        Ceres
+        Itokawa
+        Mathilde
+        Toutatis
+                         
+ 
+Disclaimer
+--------------------------------------------------------
+ 
+Applicability of Data
+
+     This P_constants file may not contain the parameter values that
+     you prefer. NAIF suggests that you inspect this file visually
+     before proceeding with any critical or extended data processing.
+
+File Modifications by Users
+
+     Note that this file may be readily modified by you to change
+     values or add/delete parameters. NAIF requests that you update the
+     "by line," date, and version description section if you modify
+     this file.
+     
+Known Limitations and Caveats
+
+     Accuracy
+     --------
+
+     In general, the orientation models given here are claimed by the
+     IAU/IAG Working Group Report [1] to be accurate to 0.1 degree
+     ([1], p.158). However, NAIF notes that orientation models for
+     natural satellites and asteroids have in some cases changed
+     substantially with the availability of new observational data, so
+     users are urged to investigate the suitability for their
+     applications of the models presented here.
+
+     Earth orientation
+     -----------------
+
+     NAIF strongly cautions against using the earth rotation model
+     (from [1]) for work demanding high accuracy. This model has been
+     determined by NAIF to have an error in the prime meridian location
+     of magnitude at least 150 arcseconds, with a local minimum
+     occurring during the year 1999. Regarding availability of better
+     earth orientation data for use with the SPICE system:
+
+        Earth orientation data are available from NAIF in the form of
+        binary earth PCK files. NAIF employs an automated process to
+        create these files; each time JPL's Tracking Systems and
+        Applications Section produces a new earth orientation parameter
+        (EOP) file, a new PCK is produced. These PCKs cover a roughly
+        10 year time span starting at Jan. 1, 2000. In these PCK files,
+        the following effects are accounted for in modeling the earth's
+        rotation:
+
+           - Precession:                   1976 IAU model
+
+           - Nutation:                     1980 IAU model, plus interpolated
+                                           EOP nutation corrections
+
+           - Polar motion:                 interpolated from EOP file
+
+           - True sidereal time:
+
+                  UT1 - UT1R (if needed):  given by analytic formula
+                + TAI - UT1 (or UT1R):     interpolated from EOP file
+                + UT1 - GMST:              given by analytic formula
+                + equation of equinoxes:   given by analytic formula
+
+             where
+
+                TAI    =   International Atomic Time
+                UT1    =   Greenwich hour angle of computed mean sun - 12h
+                UT1R   =   Regularized UT1
+                GMST   =   Greenwich mean sidereal time                   
+
+        These kernels are available from the NAIF web site
+
+           http://naif.jpl.nasa.gov
+
+        (follow the links to Data, generic_kernels, and PCK data) or
+
+           ftp://naif.jpl.nasa.gov/pub/naif/generic_kernels/pck
+
+        or via anonymous ftp from the server
+ 
+           naif.jpl.nasa.gov
+
+        The kernels are in the path
+
+           pub/naif/generic_kernels/pck
+
+        At this time, these kernels have file names of the form
+
+           earth_000101_yymmdd_yymmdd.bpc
+
+        The second and third dates are, respectively, the file's 
+        coverage end time and the epoch of the last datum.
+ 
+        These binary PCK files are very accurate (error < 0.1
+        microradian) for epochs preceding the epoch of the last datum.
+        For later epochs, the error rises to several microradians.
+
+        Binary PCK files giving accurate earth orientation from 1972 to
+        2007 and *low accuracy* predicted earth orientation from
+        2007 to 2037 are also available in the same location. See the
+        aareadme.txt file at the "pck" URL above for details.
+
+        Characteristics and names of the binary kernels described here
+        are subject to change. See the "pck" URL above for information
+        on current binary earth PCKs.
+
+
+     Lunar orientation
+     -----------------
+
+     The lunar orientation formula provided by this file is a
+     trigonometric polynomial approximation yielding the orientation of
+     the lunar "Mean Earth/Polar Axis" (ME) reference frame. A more
+     accurate approximation can be obtained by using both the NAIF
+     lunar frame kernel and the binary lunar orientation PCK file,
+     which are available on the NAIF web site (see URLS above)
+     and in the NAIF server's ftp area. The lunar frame kernel
+     is located in the path
+
+        pub/naif/generic_kernels/fk/satellites
+
+     and has a name of the form
+
+        moon_yymmdd.tf
+
+     The binary lunar PCK is in the path
+
+        pub/naif/generic_kernels/pck
+
+     and has a name of the form
+
+        moon_pa_dennn_yyyy-yyyy.bpc
+
+     See the "aareadme.txt" files in the paths shown above for details
+     on file contents and versions. We also suggest you refer to the
+     SPICE tutorial named "lunar_earth_pck-fk," which is available from
+     the NAIF web site.
+
+
+     Earth geomagnetic dipole
+     ------------------------
+
+     The SPICE Toolkit doesn't currently contain software to model the
+     earth's north geomagnetic centered dipole as a function of time.
+     As a convenience for users, the north dipole location from the
+     J2000 epoch was selected as a representative datum, and the
+     planetocentric longitude and latitude of this location have been
+     associated with the keywords
+       
+        BODY399_N_GEOMAG_CTR_DIPOLE_LON
+        BODY399_N_GEOMAG_CTR_DIPOLE_LAT
+     
+     Values for the earth's north geomagnetic centered dipole are
+     presented in comments as a discrete time series for the time range
+     1945-2000. For details concerning the geomagnetic field model from
+     which these values were derived, including a discussion of the
+     model's accuracy, see [9].
+ 
+
+     Mars prime meridian offset
+     --------------------------
+
+     The Mars prime meridian offset given by [5] is not used by
+     SPICE geometry software for computations involving the shape
+     of Mars (for example, in sub-observer point or surface intercept
+     computations). The value is provided for informational
+     purposes only.
+
+
+     Software limitations
+     --------------------
+
+     SPICE Toolkits prior to version N0057 cannot make use of
+     trigonometric polynomial terms in the formulas for orientation of
+     the planets. The only planets for which such terms are used are
+     Jupiter and Neptune. Use of trigonometric polynomial terms for
+     natural satellites is and has been supported for all SPICE Toolkit
+     versions.
+ 
+     The second nutation precession angle (M2) for Mars is represented
+     by a quadratic polynomial in the 2006 IAU report. The SPICELIB
+     subroutine BODEUL can not handle this term (which is extremely
+     small), so we truncate the polynomial to a linear one. The 
+     resulting orientation error has a maximum magnitude of less
+     than 0.0032 degrees over the time span 1996-2015 and less than
+     0.0082 degrees over the time span 1986-2025.
+
+
+Sources
+--------------------------------------------------------
+ 
+     The sources for the constants listed in this file are:
+
+
+        [1]   Seidelmann, P.K., Archinal, B.A., A'Hearn, M.F., 
+              Conrad, A., Consolmagno, G.J., Hestroffer, D.,
+              Hilton, J.L., Krasinsky, G.A., Neumann, G.,
+              Oberst, J., Stooke, P., Tedesco, E.F., Tholen, D.J., 
+              and Thomas, P.C. "Report of the IAU/IAG Working Group 
+              on cartographic coordinates and rotational elements: 2006."
+
+        [2]   Seidelmann, P.K., Archinal, B.A., A'Hearn, M.F., 
+              Cruikshank, D.P., Hilton, J.L., Keller, H.U., Oberst, J.,
+              Simon, J.L., Stooke, P., Tholen, D.J., and Thomas, P.C.
+              "Report of the IAU/IAG Working Group on Cartographic
+              Coordinates and Rotational Elements of the Planets and
+              Satellites: 2003."
+ 
+        [3]   Nautical Almanac Office, United States Naval Observatory
+              and H.M. Nautical Almanac Office, Rutherford Appleton
+              Laboratory (2010). "The Astronomical Almanac for
+              the Year 2010," U.S. Government Printing Office,
+              Washington, D.C.: and The Stationary Office, London.
+
+        [4]   Nautical Almanac Office, United States Naval Observatory,
+              H.M. Nautical Almanac Office, Royal Greenwich
+              Observatory, Jet Propulsion Laboratory, Bureau des
+              Longitudes, and The Time Service and Astronomy
+              Departments, United States Naval Observatory (1992).
+              "Explanatory Supplement to the Astronomical Almanac," P.
+              Kenneth Seidelmann, ed. University Science Books, 20
+              Edgehill Road, Mill Valley, CA 9494.
+
+        [5]   Duxbury, Thomas C. (2001). "IAU/IAG 2000 Mars Cartographic
+              Conventions,"  presentation to the Mars Express Data
+              Archive Working Group, Dec. 14, 2001.
+
+        [6]   Russell, C.T. and Luhmann, J.G. (1990). "Earth: Magnetic 
+              Field and Magnetosphere." <http://www-ssc.igpp.ucla.
+              edu/personnel/russell/papers/earth_mag>. Originally
+              published in "Encyclopedia of Planetary Sciences," J.H.
+              Shirley and R.W. Fainbridge, eds. Chapman and Hall,
+              New York, pp 208-211.
+
+        [7]   Russell, C.T. (1971). "Geophysical Coordinate 
+              Transformations," Cosmic Electrodynamics 2  184-186.
+              NAIF document 181.0.
+     
+        [8]   ESA/ESTEC Space Environment Information System (SPENVIS)
+              (2003). Web page:  "Dipole approximations of the
+              geomagnetic field."  <http://www.spenvis.oma.be/spenvis/
+              help/background/magfield/cd.html>.
+ 
+        [9]   International Association of Geomagnetism and Aeronomy
+              and International Union of Geodesy and Geophysics (2004).
+              Web page:  "The 9th Generation International Geomagnetic
+              Reference Field." <http://www.ngdc.noaa.gov/
+              IAGA/vmod/igrf.html>.
+                             
+        [10]  Davies, M.E., Abalakin, V.K., Bursa, M., Hunt, G.E.,
+              and Lieske, J.H. (1989). "Report of the IAU/IAG/COSPAR
+              Working Group on Cartographic Coordinates and Rotational
+              Elements of the Planets and Satellites: 1988," Celestial
+              Mechanics and Dynamical Astronomy, v.46, no.2, pp.
+              187-204.
+
+         
+     Most values are from [1]. All exceptions are 
+     commented where they occur in this file. The exceptions are:
+ 
+                 
+         --   Radii for the Sun are from [3].
+             
+         --   The second nutation precession angle (M2) for Mars is
+              represented by a quadratic polynomial in the 2000
+              IAU report. The SPICELIB subroutine BODEUL can not
+              handle this term (which is extremely small), so we
+              truncate the polynomial to a linear one.
+           
+          --  Earth north geomagnetic centered dipole values are from
+              [8]. The article [6] was used to check most of 
+              these values, and the values were also re-computed from 
+              the 9th generation IGRF [9] by Nat Bachman.
+         
+          -- The Mars prime meridian offset angle is from [5].
+
+
+     "Old values" listed are from the SPICE P_constants file
+     pck00008.tpc dated September 21, 2004. Most of these values came
+     from the 2003 IAU report [2].
+ 
+ 
+ 
+ 
+Explanatory Notes
+--------------------------------------------------------
+
+     This file, which is logically part of the SPICE P-kernel, contains
+     constants used to model the orientation, size and shape of the
+     Sun, planets, natural satellites, and selected comets and
+     asteroids. The orientation models express the direction of the
+     pole and location of the prime meridian of a body as a function of
+     time. The size/shape models ("shape models" for short) represent
+     all bodies as ellipsoids, using two equatorial radii and a polar
+     radius. Spheroids and spheres are obtained when two or all three
+     radii are equal.
+
+     The SPICE Toolkit routines that use this file are documented in
+     the SPICE "Required Reading" file pck.req. They are also 
+     documented in the "PCK" SPICE tutorial, which is available on
+     the NAIF web site.
+
+File Format
+        
+     A terse description of the PCK file format is given here. See the
+     SPICE "Required Reading" files pck.req and kernel.req for a
+     detailed explanation of the SPICE text kernel file format. The
+     files pck.req and kernel.req are included in the documentation
+     provided with the SPICE Toolkit.
+
+     The file starts out with the ``ID word'' string
+
+        KPL/PCK
+
+     This string identifies the file as a text kernel containing PCK 
+     data.
+
+     This file consists of a series of comment blocks and data blocks.
+     Comment blocks, which contain free-form descriptive or explanatory
+     text, are preceded by a \begintext token. Data blocks follow a
+     \begindata token. In order to be recognized, each of these tokens
+     must be placed on a line by itself.
+
+     The portion of the file preceding the first data block is treated
+     as a comment block; it doesn't require an initial \begintext
+     token.
+
+     This file identifies data using a series of
+
+        KEYWORD = VALUE
+
+     assignments. The left hand side of each assignment is a
+     "kernel variable" name; the right hand side is an associated value
+     or list of values. The SPICE subroutine API allows SPICE routines
+     and user applications to retrieve the set of values associated
+     with each kernel variable name.
+
+     Kernel variable names are case-sensitive and are limited to
+     32 characters in length. 
+
+     Numeric values may be integer or floating point. String values
+     are normally limited to 80 characters in length; however, SPICE
+     provides a mechanism for identifying longer, "continued" strings.
+     See the SPICE routine STPOOL for details.
+
+     String values are single quoted.
+
+     When the right hand side of an assignment is a list of values,
+     the list items may be separated by commas or simply by blanks.
+     The list must be bracketed by parentheses. Example:
+
+        BODY399_RADII = ( 6378.14 6378.14 6356.75 )
+ 
+     Any blanks preceding or following keyword names, values and equal
+     signs are ignored.
+  
+     Assignments may be spread over multiple lines, for example:
+
+        BODY399_RADII = ( 6378.14 
+                          6378.14 
+                          6356.75 )
+
+     This file may contain blank lines anywhere. Non-printing
+     characters including TAB should not be present in the file: the
+     presence of such characters may cause formatting errors when the
+     file is viewed.
+
+Time systems and reference frames
+
+     The 2006 IAU/IAG Working Group Report [1] states the time scale
+     used as the independent variable for the rotation formulas is
+     Barycentric Dynamical Time (TDB) and that the epoch of variable
+     quantities is J2000 TDB (2000 Jan 1 12:00 TDB). Throughout SPICE
+     documentation and in this file, we use the names "J2000 TDB" and
+     "J2000" for this epoch. The name "J2000.0" is equivalent.
+
+     SPICE documentation refers to the time system used in this file 
+     as either "ET" or "TDB." SPICE software makes no distinction 
+     between TDB and the time system associated with the independent
+     variable of the JPL planetary ephemerides T_eph.
+ 
+     The inertial reference frame used for the rotational elements in
+     this file is identified by [1] as the ICRF (International
+     Celestial Reference Frame). 
+
+     The SPICE PCK software that reads this file uses the label "J2000"
+     to refer to the ICRF; this is actually a mislabeling which has
+     been retained in the interest of backward compatibility. Using
+     data from this file, by means of calls to the SPICE frame
+     transformation routines, will actually compute orientation
+     relative to the ICRF.
+
+     The difference between the J2000 frame and the ICRF is
+     on the order of tens of milliarcseconds and is well below the
+     accuracy level of the formulas in this file.
+
+Orientation models
+ 
+     All of the orientation models use three Euler angles to describe
+     the orientation of the coordinate axes of the "Body Equator and
+     Prime Meridian" system with respect to an inertial system. By
+     default, the inertial system is the ICRF (labeled as "J2000"), but
+     other frames can be specified in the file. See the PCK Required
+     Reading for details.
+ 
+     The first two angles, in order, are the ICRF right ascension and
+     declination (henceforth RA and DEC) of the north pole of a body as
+     a function of time. The third angle is the prime meridian location
+     (represented by "W"), which is expressed as a rotation about the
+     north pole, and is also a function of time.
+ 
+     For each body, the expressions for the north pole's right
+     ascension and declination, as well as prime meridian location, are
+     sums (as far as the models that appear in this file are concerned)
+     of quadratic polynomials and trigonometric polynomials, where the
+     independent variable is time.
+ 
+     In this file, the time arguments in expressions always refer to
+     Barycentric Dynamical Time (TDB), measured in centuries or days
+     past a reference epoch. By default, the reference epoch is the
+     J2000 epoch, which is Julian ephemeris date 2451545.0, but other
+     epochs can be specified in the file. See the PCK Required Reading
+     for details.
+
+     Orientation models for satellites and some planets (including
+     Jupiter) involve both polynomial terms and trigonometric terms.
+     The arguments of the trigonometric terms are linear polynomials.
+     In this file, we call the arguments of these trigonometric terms
+     "nutation precession angles."
+
+     Example: 2006 IAU Model for orientation of Jupiter.  Note that 
+     these values are used as an example only; see the data area below 
+     for current values.
+
+        Right ascension
+        ---------------
+ 
+        alpha   =  268.056595 - 0.006499 T        +  0.000117 sin(Ja) 
+             0                + 0.000938 sin(Jb)  +  0.001432 sin(Jc)
+                              + 0.000030 sin(Jd)  +  0.002150 sin(Je)
+
+        Declination
+        -----------
+ 
+        delta   =   64.495303 + 0.002413 T        +  0.000050 cos(Ja)
+             0                + 0.000404 cos(Jb)  +  0.000617 cos(Jc)
+                              - 0.000013 cos(Jd)  +  0.000926 cos(Je)
+
+        Prime meridian
+        --------------
+
+        W       =  284.95  + 870.5366420 d
+ 
+
+     Here
+
+        T represents centuries past J2000 ( TDB ),
+ 
+        d represents days past J2000 ( TDB ).
+
+        Ja-Je are nutation precession angles.
+
+     In this file, the polynomials' coefficients above are assigned 
+     to kernel variable names (left-hand-side symbols) as follows
+
+        BODY599_POLE_RA        = (   268.056595     -0.006499       0. )
+        BODY599_POLE_DEC       = (    64.495303      0.002413       0. )
+        BODY599_PM             = (   284.95        870.5366420      0. )
+
+     and the trigonometric polynomials' coefficients are assigned 
+     as follows
+
+        BODY599_NUT_PREC_RA  = ( 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.  0.000117
+                                                                0.000938
+                                                                0.001432
+                                                                0.000030
+                                                                0.002150 )
+
+        BODY599_NUT_PREC_DEC = ( 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.  0.000050
+                                                                0.000404
+                                                                0.000617
+                                                               -0.000013
+                                                                0.000926 )
+
+        BODY599_NUT_PREC_PM  = ( 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.  0.0
+                                                                0.0
+                                                                0.0
+                                                                0.0
+                                                                0.0  ) 
+
+     Note the number "599"; this is the NAIF ID code for Jupiter.
+
+     In this file, the polynomial expressions for the nutation
+     precession angles are listed along with the planet's RA, DEC, and
+     prime meridian terms. Below are the 2006 IAU nutation precession
+     angles for the Jupiter system.
+
+        J1  =   73.32      +  91472.9 T
+        J2  =   24.62      +  45137.2 T
+        J3  =  283.90      +   4850.7 T
+        J4  =  355.80      +   1191.3 T
+        J5  =  119.90      +    262.1 T
+        J6  =  229.80      +     64.3 T
+        J7  =  352.25      +   2382.6 T
+        J8  =  113.35      +   6070.0 T
+
+        J9  =  146.64      + 182945.8 T
+        J10 =   49.24      +  90274.4 T 
+
+        Ja  =   99.360714  +   4850.4046 T
+        Jb  =  175.895369  +   1191.9605 T
+        Jc  =  300.323162  +    262.5475 T
+        Jd  =  114.012305  +   6070.2476 T
+        Je  =   49.511251  +     64.3000 T
+
+     Here
+
+        T represents centuries past J2000 ( TDB )
+
+        J1-J10 and Ja-Je are the nutation precession angles. The angles
+        J9 and J10 are equal to 2*J1 and 2*J2, respectively.
+ 
+        Angles J9 and J10 are not present in [1]; they have been added
+        to fit the terms 2*J1 and 2*J2, which appear in the orientation
+        models of several satellites, into a form that can be accepted
+        by the PCK system.
+
+     The assignment of the nutation precession angles for the
+     Jupiter system is as follows:
+ 
+        BODY5_NUT_PREC_ANGLES  = (    73.32      91472.9
+                                      24.62      45137.2
+                                     283.90       4850.7
+                                     355.80       1191.3
+                                     119.90        262.1
+                                     229.80         64.3
+                                     352.25       2382.6
+                                     113.35       6070.0   
+                                     146.64     182945.8
+                                      49.24      90274.4  
+                                      99.360714   4850.4046
+                                     175.895369   1191.9605
+                                     300.323162    262.5475
+                                     114.012305   6070.2476
+                                      49.511251     64.3000  )
+
+     You'll see an additional symbol grouped with the ones listed
+     above; it is
+ 
+        BODY599_LONG_AXIS
+ 
+     This term is zero for all bodies except Mars. It represents the
+     angular offset between the meridian containing the longest axis of
+     the triaxial ellipsoid used to model a body's surface and the
+     prime meridian of the body.
+
+     The pattern of the formulas for satellite orientation is similar
+     to that for Jupiter. Example: 2006 IAU values for Io. Again, these
+     values are used as an example only; see the data area below for
+     current values.
+ 
+        Right ascension
+        ---------------
+
+        alpha  = 268.05  -  0.009 T  + 0.094 sin(J3)  +  0.024 sin(J4)
+             0  
+
+        Declination
+        -----------
+
+        delta  =  64.50  +  0.003 T  + 0.040 cos(J3)  +  0.011 cos(J4)
+             0           
+                          
+        Prime meridian
+        --------------
+
+        W      = 200.39  +  203.4889538 d  -  0.085 sin(J3)  -  0.022 sin(J4)
+
+ 
+        d represents days past J2000.
+ 
+        J3 and J4 are nutation precession angles.
+ 
+     The polynomial terms are assigned to symbols by the statements
+ 
+        BODY501_POLE_RA       = (  268.05          -0.009      0. )
+        BODY501_POLE_DEC      = (   64.50           0.003      0. )
+        BODY501_PM            = (  200.39         203.4889538  0. )
+ 
+     The coefficients of the trigonometric terms are assigned to symbols by
+     the statements
+
+        BODY501_NUT_PREC_RA   = (    0.   0.     0.094    0.024   )
+        BODY501_NUT_PREC_DEC  = (    0.   0.     0.040    0.011   )
+        BODY501_NUT_PREC_PM   = (    0.   0.    -0.085   -0.022   )
+
+     501 is the NAIF ID code for Io.
+ 
+     SPICE software expects the models for satellite orientation to
+     follow the form of the model shown here: the polynomial portions of the
+     RA, DEC, and W expressions are expected to be quadratic, the 
+     trigonometric terms for RA and W (satellite prime meridian) are expected 
+     to be linear combinations of sines of nutation precession angles, the 
+     trigonometric terms for DEC are expected to be linear combinations of 
+     cosines of nutation precession angles, and the polynomials for the 
+     nutation precession angles themselves are expected to be linear.
+ 
+     Eventually, the software will handle more complex expressions, we
+     expect.
+ 
+ 
+Shape models
+ 
+     There is only one kind of shape model supported by the SPICE Toolkit
+     software at present: the triaxial ellipsoid. The 2006 IAU report does
+     not use any other models, except in the case of Mars, where 
+     separate values are given for the north and south polar radii.
+ 
+     For each body, three radii are listed:  The first number is
+     the largest equatorial radius (the length of the semi-axis
+     containing the prime meridian), the second number is the smaller
+     equatorial radius, and the third is the polar radius.
+ 
+     Example: Radii of the Earth.
+ 
+        BODY399_RADII     = (     6378.14    6378.14      6356.75   )
+ 
+ 
+Body Numbers and Names
+--------------------------------------------------------
+ 
+ 
+        1  Mercury barycenter
+        2  Venus barycenter
+        3  Earth barycenter
+        4  Mars barycenter
+        5  Jupiter barycenter
+        6  Saturn barycenter
+        7  Uranus barycenter
+        8  Neptune barycenter
+        9  Pluto barycenter
+        10 Sun
+
+ 
+        199 Mercury
+ 
+ 
+        299 Venus
+ 
+ 
+        399 Earth
+ 
+        301 Moon
+ 
+ 
+        499 Mars
+ 
+        401 Phobos      402 Deimos
+ 
+ 
+        599 Jupiter
+ 
+        501 Io          502 Europa      503 Ganymede    504 Callisto
+        505 Amalthea    506 Himalia     507 Elara       508 Pasiphae
+        509 Sinope      510 Lysithea    511 Carme       512 Ananke
+        513 Leda        514 Thebe       515 Adrastea    516 Metis
+ 
+ 
+        699 Saturn
+ 
+        601 Mimas       602 Enceladus   603 Tethys      604 Dione
+        605 Rhea        606 Titan       607 Hyperion    608 Iapetus
+        609 Phoebe      610 Janus       611 Epimetheus  612 Helene
+        613 Telesto     614 Calypso     615 Atlas       616 Prometheus
+        617 Pandora     618 Pan
+ 
+ 
+        799 Uranus
+ 
+        701 Ariel       702 Umbriel     703 Titania     704 Oberon
+        705 Miranda     706 Cordelia    707 Ophelia     708 Bianca
+        709 Cressida    710 Desdemona   711 Juliet      712 Portia
+        713 Rosalind    714 Belinda     715 Puck
+ 
+ 
+        899 Neptune
+ 
+        801 Triton      802 Nereid      803 Naiad       804 Thalassa
+        805 Despina     806 Galatea     807 Larissa     808 Proteus
+ 
+ 
+        999 Pluto
+ 
+        901 Charon
+ 
+ 
+        1000005 Comet 19P/Borrelly
+        1000036 Comet Halley
+        1000093 Comet 9P/Tempel 1
+        1000107 Comet 81P/Wild 2
+
+        2000001 Asteroid Ceres
+        2000004 Asteroid Vesta
+        2000216 Asteroid Kleopatra
+        2000253 Asteroid Mathilde
+        2000433 Asteroid Eros
+        2004179 Asteroid Toutatis
+        2025143 Asteroid Itokawa
+        2431010 Asteroid Ida
+        9511010 Asteroid Gaspra
+        
+ 
+Orientation Constants for the Sun and Planets
+--------------------------------------------------------
+ 
+ 
+Sun
+ 
+     Old values:
+
+        Values are from the 2003 IAU report.
+
+  
+        body10_pole_ra         = (  286.13       0.          0. )
+        body10_pole_dec        = (   63.87       0.          0. )
+        body10_pm              = (   84.10      14.18440     0. )
+        body10_long_axis       = (    0.                        )
+
+     Current values:
+ 
+        \begindata
+ 
+        BODY10_POLE_RA         = (  286.13       0.          0. )
+        BODY10_POLE_DEC        = (   63.87       0.          0. )
+        BODY10_PM              = (   84.176     14.18440     0. )
+        BODY10_LONG_AXIS       = (    0.                        )
+
+        \begintext
+ 
+Mercury
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+
+
+     Current values:
+  
+        \begindata
+
+        BODY199_POLE_RA          = (  281.01     -0.033      0. )
+        BODY199_POLE_DEC         = (   61.45     -0.005      0. )
+        BODY199_PM               = (  329.548     6.1385025  0. )
+ 
+        BODY199_LONG_AXIS        = (    0.                        )
+ 
+        \begintext
+ 
+  
+Venus
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report. 
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY299_POLE_RA          = (  272.76       0.          0. )
+        BODY299_POLE_DEC         = (   67.16       0.          0. )
+        BODY299_PM               = (  160.20      -1.4813688   0. )
+ 
+        BODY299_LONG_AXIS        = (    0.                        )
+ 
+        \begintext
+
+
+Earth
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 report.
+ 
+ 
+     Current values:
+ 
+        \begindata 
+ 
+        BODY399_POLE_RA        = (    0.      -0.641         0. )
+        BODY399_POLE_DEC       = (   90.      -0.557         0. )
+        BODY399_PM             = (  190.147  360.9856235     0. )
+        BODY399_LONG_AXIS      = (    0.                        )
+
+        \begintext
+
+
+        Nutation precession angles for the Earth-Moon system:
+
+           The linear coefficients have been scaled up from degrees/day
+           to degrees/century, because the SPICELIB PCK reader expects
+           these units.  The original constants were:
+        
+                                    125.045D0   -0.0529921D0
+                                    250.089D0   -0.1059842D0
+                                    260.008D0   13.0120009D0
+                                    176.625D0   13.3407154D0
+                                    357.529D0    0.9856003D0
+                                    311.589D0   26.4057084D0
+                                    134.963D0   13.0649930D0
+                                    276.617D0    0.3287146D0
+                                     34.226D0    1.7484877D0
+                                     15.134D0   -0.1589763D0
+                                    119.743D0    0.0036096D0
+                                    239.961D0    0.1643573D0
+                                     25.053D0   12.9590088D0 
+
+
+        \begindata
+
+       
+        BODY3_NUT_PREC_ANGLES  = (  125.045         -1935.5364525000
+                                    250.089         -3871.0729050000
+                                    260.008        475263.3328725000  
+                                    176.625        487269.6299850000
+                                    357.529         35999.0509575000
+                                    311.589        964468.4993100000
+                                    134.963        477198.8693250000
+                                    276.617         12006.3007650000
+                                     34.226         63863.5132425000 
+                                     15.134         -5806.6093575000
+                                    119.743           131.8406400000
+                                    239.961          6003.1503825000 
+                                     25.053        473327.7964200000 )
+
+
+        \begintext
+ 
+
+     Earth north geomagnetic centered dipole:
+
+        Old values:
+
+           Values are from [7].  Note the year of publication was 1971.
+
+           body399_mag_north_pole_lon  =  ( -69.761 )
+           body399_mag_north_pole_lat  =  (  78.565 )
+
+
+        Current values:
+
+           The north dipole location is time-varying.  The values shown
+           below, taken from [8], represent a discrete sampling of the
+           north dipole location from 1945 to 2000. The terms DGRF and
+           IGRF refer to, respectively, "Definitive Geomagnetic
+           Reference Field" and "International Geomagnetic Reference
+           Field."  See references [6], [8], and [9] for details.
+
+           Coordinates are planetocentric. 
+
+             Data source    Lat      Lon
+             -----------   -----    ------
+              DGRF 1945    78.47    291.47
+              DGRF 1950    78.47    291.15
+              DGRF 1955    78.46    290.84
+              DGRF 1960    78.51    290.53
+              DGRF 1965    78.53    290.15
+              DGRF 1970    78.59    289.82
+              DGRF 1975    78.69    289.53
+              DGRF 1980    78.81    289.24 
+              DGRF 1985    78.97    289.10
+              DGRF 1990    79.13    288.89
+              IGRF 1995    79.30    288.59
+              IGRF 2000    79.54    288.43      
+
+
+        Values are given for the epoch 2000 and are from the final row
+        of the above table, which is from [8]. As shown by the table
+        these values constitute a low-accuracy approximation for epochs
+        not close to 2000.
+
+        \begindata
+       
+        BODY399_N_GEOMAG_CTR_DIPOLE_LON  =  ( 288.43 )
+        BODY399_N_GEOMAG_CTR_DIPOLE_LAT  =  (  79.54 )
+
+        \begintext
+
+ 
+Mars
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+   
+     Current values:
+ 
+        \begindata
+ 
+        BODY499_POLE_RA          = (  317.68143   -0.1061      0.  )
+        BODY499_POLE_DEC         = (   52.88650   -0.0609      0.  )
+        BODY499_PM               = (  176.630    350.89198226  0.  )
+
+        \begintext
+ 
+        Source [5] specifies the following value for the lambda_a term
+        (BODY499_LONG_AXIS ) for Mars. This term is the POSITIVE EAST
+        LONGITUDE, measured from the prime meridian, of the meridian
+        containing the longest axis of the reference ellipsoid.
+        (CAUTION: previous values were POSITIVE WEST.)
+
+           body499_long_axis        = (  252.  )
+ 
+        We list this lambda_a value for completeness. The IAU report
+        [1] gives equal values for both equatorial radii, so the
+        lambda_a offset does not apply to the IAU model.
+ 
+        The 2003 IAU report defines M2, the second nutation precession angle,
+        by:
+ 
+                                                2
+           192.93  +  1128.4096700 d  +  8.864 T
+ 
+        We truncate the M2 series to a linear expression, because the PCK
+        software cannot handle the quadratic term.
+ 
+        Again, the linear terms are scaled by 36525.0:
+ 
+            -0.4357640000000000       -->     -15916.28010000000
+          1128.409670000000           -->   41215163.19675000
+            -1.8151000000000000E-02   -->       -662.9652750000000
+ 
+        We also introduce a fourth nutation precession angle, which
+        is the pi/2-complement of the third angle.  This angle is used
+        in computing the prime meridian location for Deimos.  See the
+        discussion of this angle below in the section containing orientation
+        constants for Deimos.
+ 
+        \begindata
+
+        BODY4_NUT_PREC_ANGLES  = (  169.51     -15916.2801
+                                    192.93   41215163.19675
+                                     53.47       -662.965275
+                                     36.53        662.965275  )
+ 
+        \begintext
+ 
+ 
+Jupiter
+ 
+     Old values:
+ 
+        Values are from the 2003 IAU report.
+
+
+           body599_pole_ra        = (   268.05      -0.009       0. )
+           body599_pole_dec       = (    64.49       0.003       0. )
+           body599_pm             = (   284.95     870.5366420   0. )
+           body599_long_axis      = (     0.                        )
+
+           body5_nut_prec_angles  = (    73.32   91472.9
+                                         24.62   45137.2
+                                        283.90    4850.7
+                                        355.80    1191.3
+                                        119.90     262.1
+                                        229.80      64.3
+                                        352.35    2382.6
+                                        113.35    6070.0   
+                                        146.64  182945.8
+                                         49.24   90274.4  )
+ 
+
+                   
+     Current values:
+ 
+        The number of nutation precession angles is 15. The ninth and
+        tenth are twice the first and second, respectively. The
+        eleventh through fifteenth correspond to angles JA-JE in
+        the 2006 IAU report; angles JA-JE were not used prior to that
+        report.
+
+        \begindata
+ 
+ 
+        BODY599_POLE_RA        = (   268.056595     -0.006499       0. )
+        BODY599_POLE_DEC       = (    64.495303      0.002413       0. )
+        BODY599_PM             = (   284.95        870.5366420      0. )
+        BODY599_LONG_AXIS      = (     0.                        )
+ 
+        BODY599_NUT_PREC_RA  = ( 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.  0.000117
+                                                                0.000938
+                                                                0.001432
+                                                                0.000030
+                                                                0.002150 )
+
+        BODY599_NUT_PREC_DEC = ( 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.  0.000050
+                                                                0.000404
+                                                                0.000617
+                                                               -0.000013
+                                                                0.000926 )
+
+        BODY599_NUT_PREC_PM  = ( 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.  0.0
+                                                                0.0
+                                                                0.0
+                                                                0.0
+                                                                0.0  ) 
+
+
+        BODY5_NUT_PREC_ANGLES  = (    73.32      91472.9
+                                      24.62      45137.2
+                                     283.90       4850.7
+                                     355.80       1191.3
+                                     119.90        262.1
+                                     229.80         64.3
+                                     352.25       2382.6
+                                     113.35       6070.0   
+                                     146.64     182945.8
+                                      49.24      90274.4  
+                                      99.360714   4850.4046
+                                     175.895369   1191.9605
+                                     300.323162    262.5475
+                                     114.012305   6070.2476
+                                      49.511251     64.3000  )
+        \begintext
+ 
+ 
+Saturn
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+
+     Current values:
+ 
+        \begindata
+
+        BODY699_POLE_RA        = (    40.589    -0.036      0.  )
+        BODY699_POLE_DEC       = (    83.537    -0.004      0.  )
+        BODY699_PM             = (    38.90    810.7939024  0.  )
+        BODY699_LONG_AXIS      = (     0.                       )
+ 
+        \begintext
+ 
+        The first seven angles given here are the angles S1 
+        through S7 from the 2000 report; the eighth and
+        ninth angles are 2*S1 and 2*S2, respectively.
+ 
+ 
+        \begindata
+
+        BODY6_NUT_PREC_ANGLES  = (  353.32   75706.7
+                                     28.72   75706.7  
+                                    177.40  -36505.5 
+                                    300.00   -7225.9 
+                                    316.45     506.2
+                                    345.20   -1016.3  
+                                     29.80     -52.1
+                                    706.64  151413.4
+                                     57.44  151413.4  )
+        \begintext
+ 
+ 
+Uranus
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY799_POLE_RA        = (  257.311     0.         0.  )
+        BODY799_POLE_DEC       = (  -15.175     0.         0.  )
+        BODY799_PM             = (  203.81   -501.1600928  0.  )
+        BODY799_LONG_AXIS      = (    0.                       )
+ 
+        \begintext
+        
+        The first 16 angles given here are the angles U1 
+        through U16 from the 2000 report; the 17th and
+        18th angles are 2*U11 and 2*U12, respectively.
+        
+        \begindata
+         
+        BODY7_NUT_PREC_ANGLES  = (  115.75   54991.87
+                                    141.69   41887.66
+                                    135.03   29927.35
+                                     61.77   25733.59  
+                                    249.32   24471.46
+                                     43.86   22278.41 
+                                     77.66   20289.42  
+                                    157.36   16652.76  
+                                    101.81   12872.63   
+                                    138.64    8061.81
+                                    102.23   -2024.22 
+                                    316.41    2863.96  
+                                    304.01     -51.94  
+                                    308.71     -93.17 
+                                    340.82     -75.32 
+                                    259.14    -504.81 
+                                    204.46   -4048.44
+                                    632.82    5727.92     )
+                                    
+        \begintext
+ 
+ 
+ 
+Neptune
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report. 
+ 
+     Current values:
+
+        \begindata        
+ 
+           BODY899_POLE_RA        = (  299.36     0.         0. )
+           BODY899_POLE_DEC       = (   43.46     0.         0. )
+           BODY899_PM             = (  253.18   536.3128492  0. )
+           BODY899_LONG_AXIS      = (    0.                     )
+
+
+           BODY899_NUT_PREC_RA    = (  0.70 0. 0. 0. 0. 0. 0. 0. ) 
+           BODY899_NUT_PREC_DEC   = ( -0.51 0. 0. 0. 0. 0. 0. 0. )
+           BODY899_NUT_PREC_PM    = ( -0.48 0. 0. 0. 0. 0. 0. 0. )
+
+        \begintext
+ 
+           The 2000 report defines the nutation precession angles
+ 
+              N, N1, N2, ... , N7
+ 
+           and also uses the multiples of N1 and N7
+ 
+              2*N1
+ 
+           and
+ 
+              2*N7, 3*N7, ..., 9*N7
+ 
+           In this file, we treat the angles and their multiples as
+           separate angles.  In the kernel variable
+ 
+              BODY8_NUT_PREC_ANGLES
+ 
+           the order of the angles is
+ 
+              N, N1, N2, ... , N7, 2*N1, 2*N7, 3*N7, ..., 9*N7
+ 
+           Each angle is defined by a linear polynomial, so two
+           consecutive array elements are allocated for each
+           angle.  The first term of each pair is the constant term,
+           the second is the linear term.
+ 
+        \begindata 
+
+              BODY8_NUT_PREC_ANGLES = (   357.85         52.316
+                                          323.92      62606.6
+                                          220.51      55064.2 
+                                          354.27      46564.5
+                                           75.31      26109.4 
+                                           35.36      14325.4
+                                          142.61       2824.6  
+                                          177.85         52.316 
+                                          647.840    125213.200
+                                          355.700       104.632
+                                          533.550       156.948
+                                          711.400       209.264
+                                          889.250       261.580
+                                         1067.100       313.896
+                                         1244.950       366.212
+                                         1422.800       418.528
+                                         1600.650       470.844   )
+                                         
+        \begintext
+ 
+ 
+ 
+Pluto
+ 
+     Old values:
+ 
+        Values are from the 2003 IAU report. 
+ 
+        BODY999_POLE_RA        = (  313.02    0.         0.   )
+        BODY999_POLE_DEC       = (    9.09    0.         0.   )
+        BODY999_PM             = (  236.77  -56.3623195  0.   )
+        BODY999_LONG_AXIS      = (    0.                      )
+
+
+     Current values:
+ 
+        \begindata
+ 
+        BODY999_POLE_RA        = (  312.993   0.          0. )
+        BODY999_POLE_DEC       = (    6.163   0.          0. )
+        BODY999_PM             = (  237.305  -56.3625225  0. )
+        BODY999_LONG_AXIS      = (    0.                     )
+
+        \begintext
+ 
+ 
+ 
+ 
+Orientation constants for the satellites
+--------------------------------------------------------
+ 
+ 
+Satellites of Earth
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report. 
+
+ 
+     New values:
+ 
+        \begindata
+ 
+ 
+
+
+
+        BODY301_POLE_RA      = (  269.9949        0.0031        0.      )
+        BODY301_POLE_DEC     = (   66.5392        0.0130        0.      )
+        BODY301_PM           = (   38.3213       13.17635815   -1.4D-12 )
+        BODY301_LONG_AXIS    = (    0.                                  )
+   
+        BODY301_NUT_PREC_RA  = (   -3.8787   -0.1204   0.0700   -0.0172
+                                    0.0       0.0072   0.0       0.0
+                                    0.0      -0.0052   0.0       0.0
+                                    0.0043                              )
+        
+        BODY301_NUT_PREC_DEC = (   1.5419     0.0239  -0.0278    0.0068
+                                   0.0       -0.0029   0.0009    0.0
+                                   0.0        0.0008   0.0       0.0     
+                                  -0.0009                               )
+        
+        BODY301_NUT_PREC_PM  = (   3.5610     0.1208  -0.0642    0.0158
+                                   0.0252    -0.0066  -0.0047   -0.0046
+                                   0.0028     0.0052   0.0040    0.0019
+                                  -0.0044                               )
+        \begintext
+ 
+
+ 
+Satellites of Mars
+ 
+ 
+     Phobos
+ 
+          Old values:
+ 
+             Values are unchanged in the 2006 IAU report.
+ 
+          Current values:
+ 
+            The quadratic prime meridian term is scaled by 1/36525**2:
+ 
+               8.864000000000000   --->   6.6443009930565219E-09
+ 
+        \begindata
+ 
+          BODY401_POLE_RA  = ( 317.68    -0.108     0.                     )
+          BODY401_POLE_DEC = (  52.90    -0.061     0.                     )
+          BODY401_PM       = (  35.06  1128.8445850 6.6443009930565219E-09 )
+                                       
+          BODY401_LONG_AXIS     = (    0.   )
+ 
+          BODY401_NUT_PREC_RA   = (   1.79    0.    0.   0. )
+          BODY401_NUT_PREC_DEC  = (  -1.08    0.    0.   0. )
+          BODY401_NUT_PREC_PM   = (  -1.42   -0.78  0.   0. )
+
+
+        \begintext
+ 
+ 
+     Deimos
+ 
+        Old values:
+ 
+           Values are unchanged in the 2006 IAU report.
+ 
+ 
+        New values:
+ 
+           The Deimos prime meridian expression is:
+ 
+ 
+                                                     2
+              W = 79.41  +  285.1618970 d  -  0.520 T  -  2.58 sin M
+                                                                    3
+ 
+                                                       +  0.19 cos M .
+                                                                    3
+ 
+ 
+           At the present time, the PCK kernel software (the routine
+           BODEUL in particular) cannot handle the cosine term directly,
+           but we can represent it as
+ 
+              0.19 sin M
+                        4
+ 
+           where
+ 
+              M   =  90.D0 - M
+               4              3
+ 
+           Therefore, the nutation precession angle assignments for Phobos
+           and Deimos contain four coefficients rather than three.
+ 
+           The quadratic prime meridian term is scaled by 1/36525**2:
+ 
+              -0.5200000000000000  --->   -3.8978300049519307E-10
+ 
+        \begindata
+ 
+           BODY402_POLE_RA       = (  316.65     -0.108       0.           )
+           BODY402_POLE_DEC      = (   53.52     -0.061       0.           )
+           BODY402_PM            = (   79.41    285.1618970  -3.897830D-10 )
+           BODY402_LONG_AXIS     = (    0.                                 )
+ 
+           BODY402_NUT_PREC_RA   = (    0.   0.   2.98    0.   )
+           BODY402_NUT_PREC_DEC  = (    0.   0.  -1.78    0.   )
+           BODY402_NUT_PREC_PM   = (    0.   0.  -2.58    0.19 )
+
+        \begintext
+ 
+ 
+ 
+ 
+Satellites of Jupiter
+ 
+ 
+     Io
+ 
+          Old values:
+ 
+             Values are unchanged in the 2006 IAU report.
+ 
+          Current values:
+         
+        \begindata
+ 
+        BODY501_POLE_RA       = (  268.05          -0.009      0. )
+        BODY501_POLE_DEC      = (   64.50           0.003      0. )
+        BODY501_PM            = (  200.39         203.4889538  0. )
+        BODY501_LONG_AXIS     = (    0.                           )
+ 
+        BODY501_NUT_PREC_RA   = (    0.   0.     0.094    0.024   )
+        BODY501_NUT_PREC_DEC  = (    0.   0.     0.040    0.011   )
+        BODY501_NUT_PREC_PM   = (    0.   0.    -0.085   -0.022   )
+
+        \begintext
+ 
+ 
+ 
+     Europa
+ 
+ 
+        Old values:
+
+           Values are from the 2003 IAU report.
+
+
+        body502_pole_ra       = (  268.08          -0.009      0.   )
+        body502_pole_dec      = (   64.51           0.003      0.   )
+        body502_pm            = (   35.67         101.3747235  0.   )
+        body502_long_axis     = (    0.                             )
+ 
+        body502_nut_prec_ra   = ( 0. 0. 0.   1.086   0.060   0.015   0.009 )
+        body502_nut_prec_dec  = ( 0. 0. 0.   0.468   0.026   0.007   0.002 )
+        body502_nut_prec_pm   = ( 0. 0. 0.  -0.980  -0.054  -0.014  -0.008 )
+        
+
+        Current values:
+ 
+        \begindata 
+ 
+        BODY502_POLE_RA       = (  268.08          -0.009      0.   )
+        BODY502_POLE_DEC      = (   64.51           0.003      0.   )
+        BODY502_PM            = (   36.022        101.3747235  0.   )
+        BODY502_LONG_AXIS     = (    0.                             )
+ 
+        BODY502_NUT_PREC_RA   = ( 0. 0. 0.   1.086   0.060   0.015   0.009 )
+        BODY502_NUT_PREC_DEC  = ( 0. 0. 0.   0.468   0.026   0.007   0.002 )
+        BODY502_NUT_PREC_PM   = ( 0. 0. 0.  -0.980  -0.054  -0.014  -0.008 )
+ 
+        \begintext
+ 
+ 
+     Ganymede
+ 
+        Old values:
+ 
+             Values are unchanged in the 2006 IAU report.
+ 
+
+        Current values:
+        
+        \begindata
+    
+        BODY503_POLE_RA       = (  268.20         -0.009       0.  )
+        BODY503_POLE_DEC      = (   64.57          0.003       0.  )
+        BODY503_PM            = (   44.064        50.3176081   0.  )
+        BODY503_LONG_AXIS     = (    0.                            )
+
+        BODY503_NUT_PREC_RA   = ( 0. 0. 0.  -0.037   0.431   0.091   )
+        BODY503_NUT_PREC_DEC  = ( 0. 0. 0.  -0.016   0.186   0.039   )
+        BODY503_NUT_PREC_PM   = ( 0. 0. 0.   0.033  -0.389  -0.082   )
+ 
+        \begintext
+ 
+ 
+     Callisto
+ 
+        Old values:
+
+             Values are unchanged in the 2006 IAU report.
+        
+        
+        Current values:
+        
+        
+        \begindata
+  
+        BODY504_POLE_RA       = (   268.72    -0.009       0.  )
+        BODY504_POLE_DEC      = (    64.83     0.003       0.  )
+        BODY504_PM            = (   259.51    21.5710715   0.  )
+        BODY504_LONG_AXIS     = (     0.                       )
+ 
+        BODY504_NUT_PREC_RA   = ( 0. 0. 0. 0.  -0.068   0.590  0.   0.010 )
+        BODY504_NUT_PREC_DEC  = ( 0. 0. 0. 0.  -0.029   0.254  0.  -0.004 )
+        BODY504_NUT_PREC_PM   = ( 0. 0. 0. 0.   0.061  -0.533  0.  -0.009 )
+ 
+        \begintext
+ 
+ 
+     Amalthea
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report.        
+        
+        Current values:
+         
+        \begindata
+ 
+        BODY505_POLE_RA       = (   268.05    -0.009      0.  )
+        BODY505_POLE_DEC      = (    64.49     0.003      0.  )
+        BODY505_PM            = (   231.67   722.6314560  0.  )
+        BODY505_LONG_AXIS     = (     0.                      )
+ 
+        BODY505_NUT_PREC_RA  = ( -0.84  0. 0. 0. 0. 0. 0. 0.   0.01  0. )
+        BODY505_NUT_PREC_DEC = ( -0.36  0. 0. 0. 0. 0. 0. 0.   0.    0. )
+        BODY505_NUT_PREC_PM  = (  0.76  0. 0. 0. 0. 0. 0. 0.  -0.01  0. )
+ 
+        \begintext
+ 
+ 
+     Thebe
+ 
+ 
+        Old values:
+                
+           Values are unchanged in the 2006 IAU report.                
+          
+        Current values:
+        
+        \begindata
+ 
+        BODY514_POLE_RA       = (  268.05     -0.009       0.  )
+        BODY514_POLE_DEC      = (   64.49      0.003       0.  )
+        BODY514_PM            = (    8.56    533.7004100   0.  )
+        BODY514_LONG_AXIS     = (    0.                        )
+ 
+        BODY514_NUT_PREC_RA  = ( 0.  -2.11  0. 0. 0. 0. 0. 0. 0.  0.04 )
+        BODY514_NUT_PREC_DEC = ( 0.  -0.91  0. 0. 0. 0. 0. 0. 0.  0.01 )
+        BODY514_NUT_PREC_PM  = ( 0.   1.91  0. 0. 0. 0. 0. 0. 0. -0.04 )
+ 
+        \begintext
+ 
+ 
+     Adrastea
+ 
+        Old values:
+                
+           Values are unchanged in the 2006 IAU report.                
+        
+        Current values:
+        
+        \begindata
+ 
+ 
+ 
+        BODY515_POLE_RA       = (  268.05     -0.009       0.  )
+        BODY515_POLE_DEC      = (   64.49      0.003       0.  )
+        BODY515_PM            = (   33.29   1206.9986602   0.  )
+        BODY515_LONG_AXIS     = (    0.                        )
+
+        \begintext
+ 
+ 
+     Metis
+  
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report.  
+              
+        Current values:
+           
+        \begindata
+
+        BODY516_POLE_RA       = (  268.05     -0.009       0.  )
+        BODY516_POLE_DEC      = (   64.49      0.003       0.  )
+        BODY516_PM            = (  346.09   1221.2547301   0.  )
+        BODY516_LONG_AXIS     = (    0.                        )
+ 
+        \begintext
+ 
+ 
+ 
+Satellites of Saturn
+      
+     
+     Mimas
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report.  
+               
+        Current values:
+ 
+        \begindata
+  
+           BODY601_POLE_RA       = (   40.66     -0.036      0.  )
+           BODY601_POLE_DEC      = (   83.52     -0.004      0.  )
+           BODY601_PM            = (  337.46    381.9945550  0.  )
+           BODY601_LONG_AXIS     = (     0.                      )
+ 
+           BODY601_NUT_PREC_RA   = ( 0. 0.   13.56  0.    0.    0. 0. 0. 0. )
+           BODY601_NUT_PREC_DEC  = ( 0. 0.   -1.53  0.    0.    0. 0. 0. 0. )
+           BODY601_NUT_PREC_PM   = ( 0. 0.  -13.48  0.  -44.85  0. 0. 0. 0. )
+
+        \begintext
+ 
+ 
+     Enceladus
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report.  
+               
+        Current values:
+ 
+        \begindata
+ 
+           BODY602_POLE_RA       = (   40.66    -0.036       0. )
+           BODY602_POLE_DEC      = (   83.52    -0.004       0. )
+           BODY602_PM            = (    2.82   262.7318996   0. )
+           BODY602_LONG_AXIS     = (    0.                      )
+
+        \begintext
+ 
+ 
+ 
+     Tethys
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+ 
+        Current values:
+ 
+        \begindata
+ 
+           BODY603_POLE_RA       = (   40.66    -0.036       0. )
+           BODY603_POLE_DEC      = (   83.52    -0.004       0. )
+           BODY603_PM            = (   10.45   190.6979085   0. )
+           BODY603_LONG_AXIS     = (    0.                      )
+ 
+           BODY603_NUT_PREC_RA   = ( 0. 0. 0.   9.66   0.    0.  0.  0.  0. )
+           BODY603_NUT_PREC_DEC  = ( 0. 0. 0.  -1.09   0.    0.  0.  0.  0. )
+           BODY603_NUT_PREC_PM   = ( 0. 0. 0.  -9.60   2.23  0.  0.  0.  0. )
+
+        \begintext
+ 
+ 
+     Dione
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+ 
+        Current values:
+ 
+        \begindata
+   
+           BODY604_POLE_RA       = (  40.66      -0.036      0.  )
+           BODY604_POLE_DEC      = (  83.52      -0.004      0.  )
+           BODY604_PM            = (  357.00    131.5349316  0.  )
+           BODY604_LONG_AXIS     = (    0.                       )
+
+        \begintext
+ 
+ 
+ 
+     Rhea
+     
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+ 
+        Current values:
+ 
+        \begindata
+   
+           BODY605_POLE_RA       = (   40.38   -0.036       0. )
+           BODY605_POLE_DEC      = (   83.55   -0.004       0. )
+           BODY605_PM            = (  235.16   79.6900478   0. )
+           BODY605_LONG_AXIS     = (    0.                     )
+ 
+           BODY605_NUT_PREC_RA   = ( 0. 0. 0. 0. 0.   3.10   0. 0. 0. )
+           BODY605_NUT_PREC_DEC  = ( 0. 0. 0. 0. 0.  -0.35   0. 0. 0. )
+           BODY605_NUT_PREC_PM   = ( 0. 0. 0. 0. 0.  -3.08   0. 0. 0. )
+ 
+        \begintext
+ 
+ 
+ 
+     Titan
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY606_POLE_RA       = (    36.41   -0.036      0. )
+           BODY606_POLE_DEC      = (    83.94   -0.004      0. )
+           BODY606_PM            = (   189.64   22.5769768  0. )
+           BODY606_LONG_AXIS     = (     0.                    )
+ 
+           BODY606_NUT_PREC_RA   = ( 0. 0. 0. 0. 0. 0.  2.66  0. 0 )
+           BODY606_NUT_PREC_DEC  = ( 0. 0. 0. 0. 0. 0. -0.30  0. 0 )
+           BODY606_NUT_PREC_PM   = ( 0. 0. 0. 0. 0. 0. -2.64  0. 0 )
+
+        \begintext
+ 
+ 
+ 
+     Hyperion
+ 
+         The IAU report does not give an orientation model for Hyperion.
+         Hyperion's rotation is in chaotic and is not predictable for
+         long periods.
+
+ 
+     Iapetus
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY608_POLE_RA       = (   318.16  -3.949      0.  )
+           BODY608_POLE_DEC      = (    75.03  -1.143      0.  )
+           BODY608_PM            = (   350.20   4.5379572  0.  )
+           BODY608_LONG_AXIS     = (     0.                    )
+
+        \begintext
+ 
+ 
+ 
+     Phoebe
+ 
+
+        Old values:
+        
+           Values are from the 2003 IAU report. 
+  
+           body609_pole_ra       = ( 355.00       0.         0.  )
+           body609_pole_dec      = (  68.70       0.         0.  )
+           body609_pm            = ( 304.70     930.8338720  0.  )
+           body609_long_axis     = (    0.                       )
+
+        Current values:
+ 
+        \begindata 
+  
+           BODY609_POLE_RA       = ( 356.90       0.         0.  )
+           BODY609_POLE_DEC      = (  77.80       0.         0.  )
+           BODY609_PM            = ( 178.58     931.639      0.  )
+           BODY609_LONG_AXIS     = (    0.                       )
+
+        \begintext
+ 
+ 
+     Janus
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+
+           BODY610_POLE_RA       = (  40.58    -0.036       0. )
+           BODY610_POLE_DEC      = (  83.52    -0.004       0. )
+           BODY610_PM            = (  58.83   518.2359876   0. )
+           BODY610_LONG_AXIS     = (   0.                      )
+ 
+           BODY610_NUT_PREC_RA   = ( 0. -1.623  0. 0. 0. 0. 0. 0.  0.023 )
+           BODY610_NUT_PREC_DEC  = ( 0. -0.183  0. 0. 0. 0. 0. 0.  0.001 )
+           BODY610_NUT_PREC_PM   = ( 0.  1.613  0. 0. 0. 0. 0. 0. -0.023 )
+ 
+        \begintext
+ 
+ 
+ 
+     Epimetheus
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+         
+        Current values:
+ 
+        \begindata 
+  
+           BODY611_POLE_RA       = (  40.58    -0.036        0. )
+           BODY611_POLE_DEC      = (  83.52    -0.004        0. )
+           BODY611_PM            = ( 293.87   518.4907239    0. )
+           BODY611_LONG_AXIS     = (   0.                       )
+ 
+           BODY611_NUT_PREC_RA   = ( -3.153   0. 0. 0. 0. 0. 0.   0.086  0. )
+           BODY611_NUT_PREC_DEC  = ( -0.356   0. 0. 0. 0. 0. 0.   0.005  0. )
+           BODY611_NUT_PREC_PM   = (  3.133   0. 0. 0. 0. 0. 0.  -0.086  0. )
+
+        \begintext
+ 
+ 
+ 
+     Helene
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata 
+ 
+           BODY612_POLE_RA       = (  40.85     -0.036        0. )
+           BODY612_POLE_DEC      = (  83.34     -0.004        0. )
+           BODY612_PM            = ( 245.12    131.6174056    0. )
+           BODY612_LONG_AXIS     = (   0.                        )
+
+        \begintext
+ 
+ 
+ 
+     Telesto
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata 
+ 
+           BODY613_POLE_RA       = ( 50.51    -0.036      0.  )
+           BODY613_POLE_DEC      = ( 84.06    -0.004      0.  )
+           BODY613_PM            = ( 56.88   190.6979332  0.  )
+           BODY613_LONG_AXIS     = (  0.                      )
+
+        \begintext
+
+ 
+ 
+     Calypso
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+  
+           BODY614_POLE_RA       = (   36.41    -0.036        0.  )
+           BODY614_POLE_DEC      = (   85.04    -0.004        0.  )
+           BODY614_PM            = (  153.51   190.6742373    0.  )
+           BODY614_LONG_AXIS     = (    0.                        )
+ 
+        \begintext
+ 
+ 
+ 
+     Atlas
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY615_POLE_RA       = (   40.58     -0.036      0. )
+           BODY615_POLE_DEC      = (   83.53     -0.004      0. )  
+           BODY615_PM            = (  137.88    598.3060000  0. )
+           BODY615_LONG_AXIS     = (    0.                      )
+
+        \begintext
+ 
+ 
+ 
+     Prometheus
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+  
+           BODY616_POLE_RA       = (  40.58      -0.036    )
+           BODY616_POLE_DEC      = (  83.53      -0.004    )
+           BODY616_PM            = ( 296.14     587.289000 )
+           BODY616_LONG_AXIS     = (   0.                  )
+ 
+        \begintext
+ 
+ 
+ 
+     Pandora
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY617_POLE_RA       = (   40.58     -0.036      0.  )
+           BODY617_POLE_DEC      = (   83.53     -0.004      0.  )
+           BODY617_PM            = (  162.92    572.7891000  0.  )
+           BODY617_LONG_AXIS     = (     0.                      )
+ 
+        \begintext
+ 
+ 
+ 
+     Pan
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY618_POLE_RA       = (   40.6     -0.036       0. )
+           BODY618_POLE_DEC      = (   83.5     -0.004       0. )
+           BODY618_PM            = (   48.8    626.0440000   0. )
+           BODY618_LONG_AXIS     = (    0.                      )
+
+        \begintext
+ 
+ 
+ 
+ 
+ 
+Satellites of Uranus
+ 
+  
+ 
+     Ariel
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+ 
+        Current values:
+
+        \begindata 
+
+           BODY701_POLE_RA       = ( 257.43     0.          0. )
+           BODY701_POLE_DEC      = ( -15.10     0.          0. )
+           BODY701_PM            = ( 156.22  -142.8356681   0. )
+           BODY701_LONG_AXIS     = (   0.                      )
+ 
+           BODY701_NUT_PREC_RA   = (  0. 0. 0. 0. 0.
+                                      0. 0. 0. 0. 0.  0.    0.    0.29 )
+ 
+           BODY701_NUT_PREC_DEC  = (  0. 0. 0. 0. 0.
+                                      0. 0. 0. 0. 0.  0.    0.    0.28 )
+ 
+           BODY701_NUT_PREC_PM   = (  0. 0. 0. 0. 0.
+                                      0. 0. 0. 0. 0.  0.   0.05   0.08 )
+        \begintext
+ 
+ 
+ 
+     Umbriel
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata 
+ 
+           BODY702_POLE_RA       = (  257.43     0.          0. )
+           BODY702_POLE_DEC      = (  -15.10     0.          0. )
+           BODY702_PM            = (  108.05   -86.8688923   0. )
+           BODY702_LONG_AXIS     = (    0.                      )
+ 
+           BODY702_NUT_PREC_RA   = ( 0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0.   0.   0.    0.   0.21 )
+ 
+           BODY702_NUT_PREC_DEC  = ( 0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0.   0.   0.    0.   0.20 )
+ 
+           BODY702_NUT_PREC_PM   = ( 0. 0. 0. 0. 0.  
+                                     0. 0. 0. 0. 0.   0.  -0.09  0.   0.06 )
+
+        \begintext
+ 
+ 
+ 
+     Titania
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY703_POLE_RA       = (  257.43    0.          0. )
+           BODY703_POLE_DEC      = (  -15.10    0.          0. )
+           BODY703_PM            = (   77.74  -41.3514316   0. )
+           BODY703_LONG_AXIS     = (    0.                     )
+ 
+           BODY703_NUT_PREC_RA   = ( 0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0.   0. 0. 0. 0.   0.29 )
+ 
+           BODY703_NUT_PREC_DEC  = ( 0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0.   0. 0. 0. 0.   0.28 )
+ 
+           BODY703_NUT_PREC_PM   = ( 0. 0. 0. 0. 0.  
+                                     0. 0. 0. 0. 0.   0. 0. 0. 0.   0.08 )
+        \begintext
+ 
+ 
+ 
+     Oberon
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+  
+           BODY704_POLE_RA       = (  257.43    0.          0. )
+           BODY704_POLE_DEC      = (  -15.10    0.          0. )
+           BODY704_PM            = (    6.77  -26.7394932   0. )
+           BODY704_LONG_AXIS     = (    0.                     )
+ 
+ 
+           BODY704_NUT_PREC_RA   = ( 0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0.   0.16 )
+ 
+           BODY704_NUT_PREC_DEC  = ( 0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0. 
+                                     0. 0. 0. 0. 0.   0.16 )
+ 
+           BODY704_NUT_PREC_PM   = ( 0. 0. 0. 0. 0.  
+                                     0. 0. 0. 0. 0.  
+                                     0. 0. 0. 0. 0.   0.04 )
+        \begintext
+ 
+ 
+ 
+     Miranda
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+
+           BODY705_POLE_RA      = (  257.43     0.         0. )
+           BODY705_POLE_DEC     = (  -15.08     0.         0. )
+           BODY705_PM           = (   30.70  -254.6906892  0. )
+           BODY705_LONG_AXIS    = (    0.                     )
+ 
+           BODY705_NUT_PREC_RA  = ( 0.     0.     0.    0.    0.  
+                                    0.     0.     0.    0.    0. 
+                                    4.41   0.     0.    0.    0. 
+                                    0.    -0.04   0.             )
+ 
+           BODY705_NUT_PREC_DEC = ( 0.     0.     0.    0.    0.  
+                                    0.     0.     0.    0.    0. 
+                                    4.25   0.     0.    0.    0. 
+                                    0.    -0.02   0.             )
+ 
+           BODY705_NUT_PREC_PM  = ( 0.     0.     0.    0.    0.  
+                                    0.     0.     0.    0.    0. 
+                                    1.15  -1.27   0.    0.    0.  
+                                    0.    -0.09   0.15           )
+        \begintext
+ 
+ 
+ 
+     Cordelia
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+  
+           BODY706_POLE_RA      = (   257.31      0.         0.  )
+           BODY706_POLE_DEC     = (   -15.18      0.         0.  )
+           BODY706_PM           = (   127.69  -1074.5205730  0.  )
+           BODY706_LONG_AXIS    = (     0.                       )
+ 
+           BODY706_NUT_PREC_RA  = (   -0.15    0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.             )
+
+           BODY706_NUT_PREC_DEC = (    0.14    0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.             )  
+
+           BODY706_NUT_PREC_PM  = (   -0.04    0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.             ) 
+ 
+        \begintext
+ 
+ 
+
+     Ophelia
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+   
+           BODY707_POLE_RA      = (  257.31     0.         0. )
+           BODY707_POLE_DEC     = (  -15.18     0.         0. )
+           BODY707_PM           = (  130.35  -956.4068150  0. )
+           BODY707_LONG_AXIS    = (    0.                     )
+ 
+           BODY707_NUT_PREC_RA  = (    0.     -0.09   0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.             )
+
+           BODY707_NUT_PREC_DEC = (    0.      0.09   0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.             )
+
+           BODY707_NUT_PREC_PM  = (    0.     -0.03   0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.    0.    0.
+                                       0.      0.     0.             )
+ 
+        \begintext
+ 
+ 
+ 
+     Bianca
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY708_POLE_RA      = (  257.31     0.         0.  )
+           BODY708_POLE_DEC     = (  -15.18     0.         0.  )
+           BODY708_PM           = (  105.46  -828.3914760  0.  )
+           BODY708_LONG_AXIS    = (    0.                      )
+ 
+           BODY708_NUT_PREC_RA  = (    0.      0.    -0.16    0.    0.
+                                       0.      0.     0.      0.    0.
+                                       0.      0.     0.      0.    0.
+                                       0.      0.     0.               )
+
+           BODY708_NUT_PREC_DEC = (    0.      0.     0.16    0.    0.
+                                       0.      0.     0.      0.    0.
+                                       0.      0.     0.      0.    0.
+                                       0.      0.     0.               )
+
+           BODY708_NUT_PREC_PM  = (    0.      0.    -0.04    0.    0.
+                                       0.      0.     0.      0.    0.
+                                       0.      0.     0.      0.    0.
+                                       0.      0.     0.               )
+
+        \begintext
+ 
+ 
+ 
+     Cressida
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+ 
+           BODY709_POLE_RA      = (  257.31      0.          0.  )
+           BODY709_POLE_DEC     = (  -15.18      0.          0.  )
+           BODY709_PM           = (   59.16   -776.5816320   0.  )
+           BODY709_LONG_AXIS    = (    0.                        )
+ 
+
+           BODY709_NUT_PREC_RA  = (    0.      0.     0.     -0.04   0.
+                                       0.      0.     0.      0.     0.
+                                       0.      0.     0.      0.     0.
+                                       0.      0.     0.                )
+
+
+           BODY709_NUT_PREC_DEC = (    0.      0.     0.      0.04   0.
+                                       0.      0.     0.      0.     0.
+                                       0.      0.     0.      0.     0.
+                                       0.      0.     0.                )
+
+
+           BODY709_NUT_PREC_PM  = (    0.      0.     0.     -0.01   0.
+                                       0.      0.     0.      0.     0.
+                                       0.      0.     0.      0.     0.
+                                       0.      0.     0.                )
+
+
+        \begintext
+ 
+ 
+ 
+     Desdemona
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata 
+  
+           BODY710_POLE_RA      = ( 257.31      0.           0.  )
+           BODY710_POLE_DEC     = ( -15.18      0.           0.  )
+           BODY710_PM           = (  95.08   -760.0531690    0.  )
+           BODY710_LONG_AXIS    = (   0.                         )
+ 
+           BODY710_NUT_PREC_RA  = (   0.      0.     0.      0.    -0.17 
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                  )
+
+           BODY710_NUT_PREC_DEC = (   0.      0.     0.      0.     0.16 
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                  )
+
+           BODY710_NUT_PREC_PM  = (   0.      0.     0.      0.    -0.04  
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                 )
+
+        \begintext
+ 
+ 
+ 
+     Juliet
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+  
+           BODY711_POLE_RA      = (  257.31     0.           0.   )
+           BODY711_POLE_DEC     = (  -15.18     0.           0.   )
+           BODY711_PM           = (  302.56  -730.1253660    0.   )
+           BODY711_LONG_AXIS    = (    0.                         )
+ 
+           BODY711_NUT_PREC_RA  = (   0.      0.     0.      0.     0.  
+                                     -0.06    0.     0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                 )
+ 
+           BODY711_NUT_PREC_DEC = (   0.      0.     0.      0.     0. 
+                                      0.06    0.     0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                 )
+  
+           BODY711_NUT_PREC_PM  = (   0.      0.     0.      0.     0. 
+                                     -0.02    0.     0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                 )
+ 
+        \begintext
+ 
+ 
+ 
+     Portia
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+    
+           BODY712_POLE_RA      = (  257.31      0.           0.   )
+           BODY712_POLE_DEC     = (  -15.18      0.           0.   )
+           BODY712_PM           = (   25.03   -701.4865870    0.   )
+           BODY712_LONG_AXIS    = (    0.                          )
+ 
+           BODY712_NUT_PREC_RA  = (   0.      0.     0.      0.     0. 
+                                      0.     -0.09   0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                )
+
+           BODY712_NUT_PREC_DEC = (   0.      0.     0.      0.     0. 
+                                      0.      0.09   0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.               )
+
+           BODY712_NUT_PREC_PM  = (   0.      0.     0.      0.     0. 
+                                      0.     -0.02   0.      0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.               )
+
+        \begintext
+ 
+ 
+ 
+     Rosalind
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+   
+           BODY713_POLE_RA      = ( 257.31      0.          0.  )
+           BODY713_POLE_DEC     = ( -15.18      0.          0.  )
+           BODY713_PM           = ( 314.90   -644.6311260   0.  )
+           BODY713_LONG_AXIS    = (   0.                        )
+ 
+           BODY713_NUT_PREC_RA  = (   0.      0.     0.      0.     0. 
+                                      0.      0.    -0.29    0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.               )
+
+           BODY713_NUT_PREC_DEC = (   0.      0.     0.      0.     0. 
+                                      0.      0.     0.28    0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.              )
+
+           BODY713_NUT_PREC_PM  = (   0.      0.     0.      0.     0. 
+                                      0.      0.    -0.08    0.     0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.              )
+ 
+        \begintext
+ 
+ 
+ 
+     Belinda
+ 
+       Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata 
+ 
+           BODY714_POLE_RA      = (   257.31      0.         0. )
+           BODY714_POLE_DEC     = (   -15.18      0.         0. )
+           BODY714_PM           = (   297.46   -577.3628170  0. )
+           BODY714_LONG_AXIS    = (     0.                      )
+ 
+           BODY714_NUT_PREC_RA  = (   0.      0.     0.      0.     0. 
+                                      0.      0.     0.     -0.03   0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                )
+
+           BODY714_NUT_PREC_DEC = (   0.      0.     0.      0.     0. 
+                                      0.      0.     0.      0.03   0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                )
+
+           BODY714_NUT_PREC_PM  = (   0.      0.     0.      0.     0. 
+                                      0.      0.     0.     -0.01   0.
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                )
+        \begintext
+ 
+ 
+ 
+     Puck
+ 
+       Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+  
+           BODY715_POLE_RA      = (  257.31      0.         0.  )
+           BODY715_POLE_DEC     = (  -15.18      0.         0.  )
+           BODY715_PM           = (   91.24   -472.5450690  0.  )
+           BODY715_LONG_AXIS    = (    0.                       )
+ 
+           BODY715_NUT_PREC_RA  = (   0.      0.     0.      0.     0. 
+                                      0.      0.     0.      0.    -0.33 
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                  )
+
+           BODY715_NUT_PREC_DEC = (   0.      0.     0.      0.     0. 
+                                      0.      0.     0.      0.     0.31
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                  )
+
+           BODY715_NUT_PREC_PM  = (   0.      0.     0.      0.     0. 
+                                      0.      0.     0.      0.    -0.09
+                                      0.      0.     0.      0.     0.
+                                      0.      0.     0.                  )
+  
+        \begintext
+ 
+ 
+ 
+ 
+Satellites of Neptune
+ 
+ 
+     Triton
+ 
+       Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+ 
+        Current values:
+ 
+        \begindata
+
+           BODY801_POLE_RA       = ( 299.36     0.         0.  )
+           BODY801_POLE_DEC      = (  41.17     0.         0.  )
+           BODY801_PM            = ( 296.53   -61.2572637  0.  )
+           BODY801_LONG_AXIS     = (   0.                      )
+ 
+ 
+           BODY801_NUT_PREC_RA   = (  0.      0.      0.      0.  
+                                      0.      0.      0.    -32.35    
+                                      0.     -6.28   -2.08   -0.74       
+                                     -0.28   -0.11   -0.07   -0.02    
+                                     -0.01                         )
+ 
+ 
+           BODY801_NUT_PREC_DEC  = (  0.      0.      0.      0.  
+                                      0.      0.      0.     22.55    
+                                      0.      2.10    0.55    0.16   
+                                      0.05    0.02    0.01    0.
+                                      0.                           )
+ 
+ 
+           BODY801_NUT_PREC_PM   = (  0.      0.      0.      0.  
+                                      0.      0.      0.     22.25   
+                                      0.      6.73    2.05    0.74   
+                                      0.28    0.11    0.05    0.02
+                                      0.01                         )
+  
+        \begintext
+ 
+ 
+ 
+ 
+     Nereid
+ 
+        Old values:
+ 
+           Values are from the 1988 IAU report [10].  Note that this 
+           rotation model pre-dated the 1989 Voyager 2 Neptune
+           encounter.
+
+ 
+           body802_pole_ra       = (    273.48    0.        0.  )
+           body802_pole_dec      = (     67.22    0.        0.  )
+           body802_pm            = (    237.22    0.9996465 0.  )
+           body802_long_axis     = (      0.                    )
+ 
+ 
+           The report seems to have a typo:  in the nut_prec_ra expression,
+           where the report gives  -0.51 sin 3N3, we use -0.51 3N2.
+ 
+           body802_nut_prec_ra   = (  0.    -17.81
+                                      0.      0.     0.      0.
+                                      0.      0.     0.
+                                      2.56   -0.51   0.11   -0.03  )
+ 
+           body802_nut_prec_dec  = (  0.     -6.67
+                                      0.      0.     0.      0.
+                                      0.      0.     0.
+                                      0.47   -0.07   0.01          )
+ 
+           body802_nut_prec_pm   = (  0.     16.48
+                                      0.      0.     0.      0.
+                                      0.      0.     0.
+                                     -2.57    0.51 -0.11    0.02  )
+ 
+ 
+ 
+        Current values:
+ 
+           The 2006 report [1] states that values for Nereid are not
+           given because Nereid is not in synchronous rotation with Neptune
+           (p. 167).
+ 
+ 
+ 
+     Naiad
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+ 
+        \begindata
+  
+           BODY803_POLE_RA       = (  299.36      0.          0.  )
+           BODY803_POLE_DEC      = (   43.36      0.          0.  )
+           BODY803_PM            = (  254.06  +1222.8441209   0.  )
+           BODY803_LONG_AXIS     = (    0.                        )
+ 
+ 
+           BODY803_NUT_PREC_RA   = (    0.70     -6.49     0.      0.
+                                        0.        0.       0.      0.
+                                        0.25      0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                            )
+ 
+           BODY803_NUT_PREC_DEC  = (   -0.51     -4.75     0.      0.
+                                        0.        0.       0.      0.
+                                        0.09      0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                            )
+ 
+           BODY803_NUT_PREC_PM   = (   -0.48      4.40     0.      0.
+                                        0.        0.       0.      0.
+                                       -0.27      0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                            )
+    
+        \begintext
+ 
+ 
+ 
+ 
+     Thalassa
+ 
+
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+
+           BODY804_POLE_RA       = (  299.36      0.          0. )
+           BODY804_POLE_DEC      = (   43.45      0.          0. )
+           BODY804_PM            = (  102.06   1155.7555612   0. )  
+           BODY804_LONG_AXIS     = (    0.                       )
+ 
+ 
+           BODY804_NUT_PREC_RA   = (    0.70      0.      -0.28    0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                             )
+   
+  
+           BODY804_NUT_PREC_DEC  = (   -0.51      0.      -0.21    0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0. 
+                                        0.                             )
+ 
+           BODY804_NUT_PREC_PM   = (   -0.48      0.       0.19    0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0. 
+                                        0.                             )
+                                                                 
+        \begintext
+ 
+ 
+ 
+     Despina
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+ 
+        \begindata
+  
+           BODY805_POLE_RA       = (  299.36      0.          0. )
+           BODY805_POLE_DEC      = (   43.45      0.          0. )
+           BODY805_PM            = (  306.51  +1075.7341562   0. )
+           BODY805_LONG_AXIS     = (    0.                       )
+ 
+ 
+           BODY805_NUT_PREC_RA   = (    0.70      0.       0.     -0.09
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                              )
+ 
+           BODY805_NUT_PREC_DEC  = (   -0.51      0.       0.     -0.07
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                              )
+ 
+           BODY805_NUT_PREC_PM   = (   -0.49      0.       0.      0.06
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                              )
+        \begintext
+ 
+ 
+ 
+     Galatea
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+ 
+        \begindata
+  
+           BODY806_POLE_RA       = (   299.36      0.          0. )
+           BODY806_POLE_DEC      = (    43.43      0.          0. )
+           BODY806_PM            = (   258.09    839.6597686   0. )
+           BODY806_LONG_AXIS     = (     0.                       )
+ 
+ 
+           BODY806_NUT_PREC_RA   = (    0.70      0.       0.      0.
+                                       -0.07      0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                             )
+ 
+           BODY806_NUT_PREC_DEC  = (   -0.51      0.       0.      0.
+                                       -0.05      0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                             )
+ 
+           BODY806_NUT_PREC_PM   = (   -0.48      0.       0.      0.
+                                        0.05      0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                             ) 
+        \begintext
+
+ 
+     Larissa
+ 
+ 
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+  
+        \begindata
+
+           BODY807_POLE_RA       = (   299.36     0.           0. )
+           BODY807_POLE_DEC      = (    43.41     0.           0. )
+           BODY807_PM            = (   179.41  +649.0534470    0. )
+           BODY807_LONG_AXIS     = (     0.                       )
+ 
+ 
+           BODY807_NUT_PREC_RA   = (    0.70      0.       0.      0.
+                                        0.       -0.27     0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                            )
+ 
+           BODY807_NUT_PREC_DEC  = (   -0.51      0.       0.      0.
+                                        0.       -0.20     0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                            )
+ 
+           BODY807_NUT_PREC_PM   = (   -0.48      0.       0.      0.
+                                        0.        0.19     0.      0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                            )
+        \begintext
+ 
+ 
+ 
+     Proteus
+ 
+
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+
+           BODY808_POLE_RA       = (  299.27      0.          0.  )
+           BODY808_POLE_DEC      = (   42.91      0.          0.  )
+           BODY808_PM            = (   93.38   +320.7654228   0.  )
+           BODY808_LONG_AXIS     = (    0.                        )
+ 
+ 
+           BODY808_NUT_PREC_RA   = (    0.70      0.       0.      0.
+                                        0.        0.      -0.05    0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                             )
+ 
+           BODY808_NUT_PREC_DEC  = (   -0.51      0.       0.      0.
+                                        0.        0.      -0.04    0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                             )
+ 
+           BODY808_NUT_PREC_PM   = (   -0.48      0.       0.      0.
+                                        0.        0.       0.04    0.
+                                        0.        0.       0.      0.
+                                        0.        0.       0.      0.
+                                        0.                             )
+   
+        \begintext
+  
+ 
+ 
+ 
+ 
+Satellites of Pluto
+ 
+     Charon
+ 
+        Old values:
+        
+           Values are from the 2003 IAU report. 
+ 
+           body901_pole_ra       = (   313.02     0.         0. )
+           body901_pole_dec      = (     9.09     0.         0. )
+           body901_pm            = (    56.77   -56.3623195  0. )
+           body901_long_axis     = (     0.                     )
+               
+        Current values:
+ 
+        \begindata
+ 
+           BODY901_POLE_RA       = (   312.993    0.         0. )
+           BODY901_POLE_DEC      = (     6.163    0.         0. )
+           BODY901_PM            = (    57.305  -56.3625225  0. )
+           BODY901_LONG_AXIS     = (     0.                     )
+
+        \begintext
+ 
+ 
+ 
+Orientation constants for Selected Comets and Asteroids
+--------------------------------------------------------
+
+
+
+19P/Borrelly
+
+
+        Current values:
+ 
+        \begindata
+
+           BODY1000005_POLE_RA       = (   218.5      0.         0.  )
+           BODY1000005_POLE_DEC      = (   -12.5      0.         0.  )
+           BODY1000005_PM            = (   000.     390.0        0.  )
+           BODY1000005_LONG_AXIS     = (     0.                      )
+ 
+        \begintext
+
+
+
+9P/Tempel 1
+
+
+        Current values:
+ 
+        \begindata
+
+           BODY1000093_POLE_RA       = (   294.       0.         0.  )
+           BODY1000093_POLE_DEC      = (    73.       0.         0.  )
+           BODY1000093_PM            = (   252.63   212.064      0.  )
+           BODY1000093_LONG_AXIS     = (     0.                      )
+ 
+        \begintext
+
+
+Vesta
+
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+
+           BODY2000004_POLE_RA       = (   301.      0.         0.  )
+           BODY2000004_POLE_DEC      = (    41.      0.         0.  )
+           BODY2000004_PM            = (   292.   1617.332776   0.  )
+           BODY2000004_LONG_AXIS     = (     0.                     )
+ 
+        \begintext
+
+Eros
+
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+
+           BODY2000433_POLE_RA       = (   11.35       0.           0. )
+           BODY2000433_POLE_DEC      = (   17.22       0.           0. )
+           BODY2000433_PM            = (  326.07    1639.38864745   0. )
+           BODY2000433_LONG_AXIS     = (    0.                         )
+ 
+        \begintext
+
+
+Itokawa
+
+
+        Current values:
+ 
+        \begindata
+
+           BODY2025143_POLE_RA       = (   90.53       0.           0. )
+           BODY2025143_POLE_DEC      = (  -66.30       0.           0. )
+           BODY2025143_PM            = (  000.0      712.143        0. )
+           BODY2025143_LONG_AXIS     = (    0.                         )
+ 
+        \begintext
+
+
+
+Ida
+
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+
+        Current values:
+ 
+        \begindata
+ 
+           BODY2431010_POLE_RA       = (  168.76      0.         0. )
+           BODY2431010_POLE_DEC      = (   -2.88      0.         0. )
+           BODY2431010_PM            = (  265.95  +1864.6280070  0. )
+           BODY2431010_LONG_AXIS     = (    0.                      )
+ 
+        \begintext
+
+Gaspra
+
+        Old values:
+        
+           Values are unchanged in the 2006 IAU report. 
+               
+        Current values:
+ 
+        \begindata 
+ 
+           BODY9511010_POLE_RA       = (   9.47     0.         0. )
+           BODY9511010_POLE_DEC      = (  26.70     0.         0. )
+           BODY9511010_PM            = (  83.67  1226.9114850  0. )
+           BODY9511010_LONG_AXIS     = (   0.                     )
+
+        \begintext
+
+
+
+
+
+
+
+
+
+ 
+Radii of Sun and Planets
+--------------------------------------------------------
+ 
+ 
+Sun
+ 
+     Value for the Sun is from the [3], page K7.
+ 
+        \begindata
+ 
+        BODY10_RADII      = (   696000.     696000.      696000.     )
+ 
+        \begintext
+ 
+ 
+Mercury
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY199_RADII     = ( 2439.7   2439.7   2439.7 )
+ 
+        \begintext
+ 
+ 
+Venus
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY299_RADII     = ( 6051.8   6051.8   6051.8 )
+ 
+        \begintext
+ 
+ 
+Earth
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+
+        \begindata
+ 
+        BODY399_RADII     = ( 6378.14   6378.14   6356.75 )
+ 
+        \begintext
+ 
+ 
+Mars
+ 
+ 
+     Old values:
+
+        body499_radii       = (     3397.      3397.         3375.     )
+ 
+     Current values:
+
+
+        The IAU report gives separate values for the north and south
+        polar radii:
+
+           north:  3373.19
+           south:  3379.21 
+
+        We use the average of these values as the polar radius for
+        the triaxial model.
+ 
+        \begindata
+ 
+        BODY499_RADII       = ( 3396.19   3396.19   3376.20 )
+ 
+        \begintext
+ 
+ 
+ 
+Jupiter
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY599_RADII     = ( 71492   71492   66854 )
+ 
+        \begintext
+ 
+ 
+ 
+Saturn
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY699_RADII     = ( 60268   60268   54364 )
+ 
+        \begintext
+ 
+ 
+ 
+Uranus
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY799_RADII     = ( 25559   25559   24973 )
+ 
+        \begintext
+ 
+ 
+ 
+Neptune
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+  
+     Current values:
+ 
+        (Values are for the 1 bar pressure level.)
+ 
+        \begindata
+ 
+        BODY899_RADII     = ( 24764   24764  24341 )
+ 
+        \begintext
+ 
+ 
+ 
+Pluto
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY999_RADII     = ( 1195   1195   1195 )
+ 
+        \begintext
+ 
+
+
+
+Radii of Satellites
+--------------------------------------------------------
+ 
+ 
+Moon
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report. 
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY301_RADII     = ( 1737.4   1737.4   1737.4 )
+ 
+        \begintext
+ 
+ 
+ 
+Satellites of Mars
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report. 
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY401_RADII     = ( 13.4    11.2    9.2 )
+        BODY402_RADII     = (  7.5     6.1    5.2 )
+ 
+        \begintext
+ 
+ 
+ 
+Satellites of Jupiter
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report.
+ 
+     Current values:
+         
+        \begindata
+ 
+        BODY501_RADII     = ( 1829.4   1819.3   1815.7  )
+        BODY502_RADII     = ( 1564.13  1561.23  1560.93 )
+        BODY503_RADII     = ( 2632.4   2632.29  2632.35 )
+        BODY504_RADII     = ( 2409.4   2409.2   2409.3  )
+        BODY505_RADII     = (  125       73       64    )
+ 
+        \begintext
+ 
+        Only mean radii are available in the 2003 IAU report for bodies
+        506-513.
+ 
+        \begindata
+ 
+        BODY506_RADII    = (    85       85       85   )
+        BODY507_RADII    = (    40       40       40   )
+        BODY508_RADII    = (    18       18       18   )
+        BODY509_RADII    = (    14       14       14   )
+        BODY510_RADII    = (    12       12       12   )
+        BODY511_RADII    = (    15       15       15   )
+        BODY512_RADII    = (    10       10       10   )
+        BODY513_RADII    = (     5        5        5   )
+        BODY514_RADII    = (    58       49       42   )
+        BODY515_RADII    = (    10        8        7   )
+ 
+        \begintext
+ 
+        The value for the second radius for body 516 is not given in 
+        2003 IAU report.   The values given are:
+ 
+           BODY516_RADII    = (  30   ---   20   )
+ 
+        For use within the SPICE system, we use only the mean radius.
+        \begindata
+ 
+        BODY516_RADII    = (  21.5   21.5  21.5  )
+ 
+        \begintext
+ 
+ 
+ 
+Satellites of Saturn
+ 
+ 
+     Old values:
+ 
+        Values are from the 2003 IAU report.
+    
+        body601_radii     = (  209.1   196.2   191.4 )
+        body602_radii     = (  256.3   247.3   244.6 )
+        body603_radii     = (  535.6   528.2   525.8 )
+        body604_radii     = (  560     560     560   )
+        body605_radii     = (  764     764     764   )
+        body606_radii     = ( 2575    2575    2575   )
+        body607_radii     = (  164     130     107   )
+        body608_radii     = (  718     718     718   )
+        body609_radii     = (  115     110     105   )
+        body610_radii     = (   97.0    95.0    77.0 )
+        body611_radii     = (   69.0    55.0    55.0 )
+ 
+ 
+        Only the first equatorial radius for Helene (body 612) was given in the
+        2003 IAU report:
+ 
+            body612_radii     = (       17.5        ---          ---     )
+ 
+        The mean radius was 16km; we used this radius for all three axes, as
+        we do for the satellites for which only the mean radius is available.
+ 
+ 
+        body612_radii     = (   16      16       16  )
+        body613_radii     = (   15      12.5     7.5 )
+        body614_radii     = (   15.0     8.0     8.0 )
+        body615_radii     = (   18.5    17.2    13.5 )
+        body616_radii     = (   74.0    50.0    34.0 )
+        body617_radii     = (   55.0    44.0    31.0 )
+  
+      
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY601_RADII     = (  207.4     196.8     190.6  )
+        BODY602_RADII     = (  256.6     251.4     248.3  )
+        BODY603_RADII     = (  540.4     531.1     527.5  )
+        BODY604_RADII     = (  563.8     561.0     560.3  )
+        BODY605_RADII     = (  767.2     762.5     763.1  )
+        BODY606_RADII     = ( 2575      2575      2575    )
+        BODY607_RADII     = (  164       130       107    )
+        BODY608_RADII     = (  747.4     747.4     712.4  )
+        BODY609_RADII     = (  108.6     107.7     101.5  )
+        BODY610_RADII     = (   97.0      95.0      77.0  )
+        BODY611_RADII     = (   69.0      55.0      55.0  )
+ 
+        \begintext
+ 
+        Only the first equatorial radius for Helene (body 612) is given in the
+        2006 IAU report:
+ 
+            BODY612_RADII     = (       17.5        ---          ---     )
+ 
+        The mean radius is 16km; we use this radius for all three axes, as
+        we do for the satellites for which only the mean radius is available.
+ 
+ 
+        \begindata
+ 
+        BODY612_RADII     = (  17.5      17.5      17.5  )
+        BODY613_RADII     = (  15        12.5       7.5  )
+        BODY614_RADII     = (  15.0       8.0       8.0  )
+        BODY615_RADII     = (  18.5      17.2      13.5  )
+        BODY616_RADII     = (  74.0      50.0      34.0  )
+        BODY617_RADII     = (  55.0      44.0      31.0  )
+ 
+        \begintext
+ 
+ 
+         For Pan, only a mean radius is given in the 2006 report.
+ 
+        \begindata
+ 
+        BODY618_RADII     = (   10       10     10   )
+ 
+        \begintext
+ 
+ 
+ 
+Satellites of Uranus
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report. 
+ 
+     Current values:
+ 
+        \begindata
+ 
+        BODY701_RADII     = (  581.1   577.9   577.7 )
+        BODY702_RADII     = (  584.7   584.7   584.7 )
+        BODY703_RADII     = (  788.9   788.9   788.9 )
+        BODY704_RADII     = (  761.4   761.4   761.4 )
+        BODY705_RADII     = (  240.4   234.2   232.9 )
+ 
+        \begintext
+ 
+        The 2000 report gives only mean radii for satellites 706--715.
+ 
+        \begindata
+ 
+        BODY706_RADII     = (   13      13      13 )
+        BODY707_RADII     = (   15      15      15 )
+        BODY708_RADII     = (   21      21      21 )
+        BODY709_RADII     = (   31      31      31 )
+        BODY710_RADII     = (   27      27      27 )
+        BODY711_RADII     = (   42      42      42 )
+        BODY712_RADII     = (   54      54      54 )
+        BODY713_RADII     = (   27      27      27 )
+        BODY714_RADII     = (   33      33      33 )
+        BODY715_RADII     = (   77      77      77 )
+ 
+        \begintext
+ 
+ 
+ 
+ 
+Satellites of Neptune
+ 
+ 
+     Old values:
+ 
+        Values are unchanged in the 2006 IAU report. 
+ 
+     Current values:
+ 
+        The 2000 report gives mean radii only for bodies 801-806.
+ 
+        \begindata
+ 
+        BODY801_RADII     = ( 1352.6  1352.6  1352.6 )
+        BODY802_RADII     = (  170     170     170   )
+        BODY803_RADII     = (   29      29     29    )
+        BODY804_RADII     = (   40      40     40    )
+        BODY805_RADII     = (   74      74     74    )
+        BODY806_RADII     = (   79      79     79    )
+ 
+        \begintext
+ 
+ 
+        The second equatorial radius for Larissa is not given in the 2000
+        report.  The available values are:
+ 
+            BODY807_RADII     = (   104     ---     89   )
+ 
+        For use within the SPICE system, we use only the mean radius.
+        \begindata
+ 
+        BODY807_RADII     = (   96      96     96   )
+        BODY808_RADII     = (  218     208    201   )
+ 
+        \begintext
+ 
+ 
+ 
+ 
+Satellites of Pluto
+ 
+     
+     Old values:
+ 
+        Values are from the 2003 IAU report. 
+
+        BODY901_RADII     = (  593     593    593   )
+             
+     Current values:
+ 
+        \begindata
+ 
+        BODY901_RADII     = (  605     605    605   )
+ 
+        \begintext
+ 
+
+
+Radii for Selected Comets and Asteroids
+--------------------------------------------------------
+
+
+19P/Borrelly
+
+
+     Current values:
+ 
+
+        The value in the data assignment below is the 
+        "effective radius."
+
+        The first principal axis length is 
+
+           3.5 km
+
+        The lengths of the other semi-axes are not provided
+        by [1].
+
+        \begindata
+ 
+        BODY1000005_RADII     = (  4.22   4.22   4.22  )
+ 
+        \begintext
+
+
+
+Halley
+
+
+     Current values:
+
+        \begindata
+ 
+        BODY1000036_RADII     = (  8.0   4.0   4.0  )
+ 
+        \begintext
+
+
+
+9P/Tempel 1
+
+
+     Current values:
+
+
+        The value in the data assignment below is the 
+        "effective radius."
+            
+        According to [1]:
+
+           The maximum and minimum radii are not properly 
+           the values of the principal semi-axes, they
+           are half the maximum and minimum values of the
+           diameter. Due to the large deviations from a
+           simple ellipsoid, they may not correspond with
+           measurements along the principal axes, or be
+           orthogonal to each other.
+
+        \begindata
+ 
+        BODY1000093_RADII     = (  3.0   3.0   3.0  )
+ 
+        \begintext
+
+
+81P/Wild 2
+
+
+     Current values:
+
+
+        \begindata
+ 
+        BODY1000107_RADII     = (  2.7   1.9   1.5 )
+ 
+        \begintext
+
+
+Ceres
+
+
+     Current values:
+
+
+        \begindata
+ 
+        BODY2000001_RADII     = ( 487.3  487.3  454.7 )
+ 
+        \begintext
+
+
+Vesta
+
+
+     Current values:
+
+
+        \begindata
+ 
+        BODY2000004_RADII     = ( 289.  280.  229.  )
+ 
+        \begintext
+
+
+Toutatis
+
+
+     Current values:
+
+
+        \begindata
+ 
+        BODY2004179_RADII     = (  2.13  1.015  0.85  )
+ 
+        \begintext
+
+ 
+Kleopatra
+
+
+     Old values:
+
+        Values are from the 2003 report.
+
+ 
+        body2000216_radii     = (   108.5      47    40.5  )
+ 
+
+     Current values:
+ 
+ 
+        No values are provided in the 2006 report.
+
+
+Mathilde
+
+
+     Current values:
+
+
+        \begindata
+ 
+        BODY2000253_RADII     = (  33.   24.   23.  )
+ 
+        \begintext
+       
+Eros
+ 
+
+     Current values:
+ 
+ 
+        \begindata
+ 
+        BODY2000433_RADII     = (  17.0   5.5   5.5  )
+ 
+        \begintext
+
+
+Itokawa
+
+
+     Current values:
+
+
+        \begindata
+ 
+        BODY2025143_RADII     = (  0.535   0.294   0.209  )
+ 
+        \begintext
+
+
+
+Gaspra
+
+     
+     Current values:
+ 
+ 
+        \begindata
+ 
+        BODY9511010_RADII     = (    9.1    5.2    4.4 )
+ 
+        \begintext
+
+        
+        
+        
+Ida
+
+     
+     Current values:
+ 
+ 
+        \begindata
+ 
+        BODY2431010_RADII     = (   26.8   12.0    7.6 )
+ 
+        \begintext
+
+        
+
+===========================================================================
+End of file pck00009.tpc
+===========================================================================
+
+
+
diff --git a/tests/pytests/data/st_2458542208_v/st_2458542208_v.ale_0.xsp b/tests/pytests/data/st_2458542208_v/st_2458542208_v.ale_0.xsp
new file mode 100644
index 0000000000000000000000000000000000000000..4ae8e40372b4d415ae817bbb55291b199e497924
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/st_2458542208_v.ale_0.xsp
@@ -0,0 +1,853 @@
+DAFETF NAIF DAF ENCODED TRANSFER FILE
+'DAF/SPK '
+'2'
+'6'
+'SPKMERGE                                                    '
+BEGIN_ARRAY 1 33
+'ITOKAWA                                 '
+'AE0C34B79F2CB8^7'
+'AE0C453DA3455^7'
+'1EE6B7'
+'A'
+'1'
+'2'
+33
+'AE108C^7'
+'2A3^5'
+'-9362655229C478^7'
+'11D114E68B4532^6'
+'A18750D88088^4'
+'51BD20950E1^2'
+'-13D12E948^1'
+'-2F3B42A8C^-1'
+'-B90C^-4'
+'AAB79^-5'
+'2^-6'
+'-5ACF5E84FB1CC8^6'
+'-4BF3EE662F4E08^6'
+'63C6F9E67CA8^3'
+'E31CD5A4DEF^2'
+'10A094D49^1'
+'-10A636D5^-1'
+'-5A27CA^-3'
+'-63F4C^-5'
+'CF^-7'
+'1BD5954A382803^6'
+'-225C8A47DDF064^6'
+'-1E648043D30C^3'
+'62D62CED7CF^2'
+'7FBB718D7^0'
+'-60D15FD8^-2'
+'-27D6E4^-3'
+'-31786^-5'
+'4FC^-7'
+'ADE65C^7'
+'546^5'
+'1D^2'
+'1^1'
+END_ARRAY 1 33
+BEGIN_ARRAY 2 717
+'HAYABUSA Traj. by HJSC; with NAIF mods  '
+'AE0C34B79F2CB8^7'
+'AE0C453DA3455^7'
+'-82'
+'1EE6B7'
+'1'
+'9'
+717
+'8DDE3258709B28^1'
+'3D9F0A837AED04^0'
+'13562CAD0734A8^0'
+'8B51D6C10B0078^-6'
+'57C7D98771F96C^-5'
+'3007B07DC5374A^-4'
+'8DDE5FB7F982^1'
+'3DBBA112A00944^0'
+'145073666F3035^0'
+'-17382A8^-5'
+'5C826A51D00004^-5'
+'30291D2182^-4'
+'8DDE5F89892D^1'
+'3DBBACA2ED537E^0'
+'1450D3B8A97339^0'
+'-174A83A^-5'
+'5C8532CD7FFFFC^-5'
+'3029305F52^-4'
+'8DDE5F723EA96^1'
+'3DBBB26B408056^0'
+'145103E1D9D28B^0'
+'-1756AD68^-5'
+'5C86EA9B7FFFFC^-5'
+'30293D9105^-4'
+'8DDE5F5AE7FBF8^1'
+'3DBBB833AF2A0E^0'
+'1451340B17639^0'
+'-1762FA78000001^-5'
+'5C88D7306^-5'
+'302949A93EFFFE^-4'
+'8DDE5F4385018^1'
+'3DBBBDFC3C9D14^0'
+'14516434610CCF^0'
+'-176F35D^-5'
+'5C8A8EFE5FFFFC^-5'
+'302957F46C0002^-4'
+'8DDE5F2C15CBB^1'
+'3DBBC3C4E58CFA^0'
+'1451945DB9013B^0'
+'-177B714^-5'
+'5C8C69FB800004^-5'
+'3029640CA4^-4'
+'8DDE5F149A5A7^1'
+'3DBBC98DAC2CB2^0'
+'1451C4871D0DDF^0'
+'-1787ACA8^-5'
+'5C8E33614^-5'
+'30297024DE0004^-4'
+'8DDE5EFD12ADC8^1'
+'3DBBCF568F62C6^0'
+'1451F4B08D32BD^0'
+'-1793F9A8^-5'
+'5C900E5E400004^-5'
+'30297E700C0002^-4'
+'8DDE5EE57EB42^1'
+'3DBBD51F9048AA^0'
+'145224DA0BA2C9^0'
+'-17A0238^-5'
+'5C91D7C3E00004^-5'
+'30298A8843FFFE^-4'
+'8DDE5ECDDE90A^1'
+'3DBBDAE8ADC4E8^0'
+'14525503962B0D^0'
+'-17AC5EE^-5'
+'5C93B2C12^-5'
+'302997B9F9^-4'
+'8DDE5EB63231C^1'
+'3DBBE0B1E8F0FA^0'
+'1452852D2DE506^0'
+'-17B89A5^-5'
+'5C957C26A00004^-5'
+'3029A3D2310002^-4'
+'8DDE5E9E79977^1'
+'3DBBE67B40B364^0'
+'1452B556D1B737^0'
+'-17C4E748^-5'
+'5C97458C4^-5'
+'3029B21D5E^-4'
+'8DDE5E86B4B028^1'
+'3DBBEC44B50C28^0'
+'1452E58083D495^0'
+'-17D1112^-5'
+'5C990EF1E^-5'
+'3029BE3598FFFE^-4'
+'8DDE5E6EE39F08^1'
+'3DBBF20E45FB46^0'
+'145315AA420A2E^0'
+'-17DD4C88^-5'
+'5C9AE9EF^-5'
+'3029CB6749^-4'
+'8DDE5E5706528^1'
+'3DBBF7D7F49A36^0'
+'145345D40D7177^0'
+'-17E99978^-5'
+'5C9CC4EC6^-5'
+'3029D77F850002^-4'
+'8DDE5E3F1CB908^1'
+'3DBBFDA1C0E8FC^0'
+'145375FDE4F0FC^0'
+'-17F5C36^-5'
+'5C9E7CBA2^-5'
+'3029E5CAB1^-4'
+'8DDE5E2726F5A8^1'
+'3DBC036BA8B49E^0'
+'1453A627CABBAD^0'
+'-18021058^-5'
+'5CA0694F000004^-5'
+'3029F1E2EA0004^-4'
+'8DDE5E0F24E55^1'
+'3DBC0935AF498E^0'
+'1453D651BC9E97^0'
+'-180E4BC^-5'
+'5CA2211D1FFFFC^-5'
+'3029FF149D^-4'
+'8DDE5DF716999^1'
+'3DBC0EFFD15B6^0'
+'1454067BBBB334^0'
+'-181A7598^-5'
+'5CA3FC1A2^-5'
+'302A0B2CD8^-4'
+'8DDE5DDEFC23F8^1'
+'3DBC14CA111D02^0'
+'145436A5C6E00C^0'
+'-1826C29^-5'
+'5CA5C57FE00004^-5'
+'302A197803FFFE^-4'
+'8DDE5DC6D56168^1'
+'3DBC1A946D75^0'
+'145466CFE0581^0'
+'-1832FDF8^-5'
+'5CA7A07CE^-5'
+'302A25903CFFFE^-4'
+'8DDE5DAEA2637^1'
+'3DBC205EE77CCE^0'
+'145496FA05E84D^0'
+'-183F3968000001^-5'
+'5CA969E2A^-5'
+'302A32C1F0FFFE^-4'
+'8DDE5D96632A08^1'
+'3DBC26297E1AF8^0'
+'1454C72438AA3E^0'
+'-184B6330000001^-5'
+'5CAB3348200004^-5'
+'302A3EDA2A0002^-4'
+'8DDE5D7E17C6D8^1'
+'3DBC2BF4314F7A^0'
+'1454F74E778468^0'
+'-1857B038000001^-5'
+'5CAD0E456^-5'
+'302A4C0BDE0002^-4'
+'8DDE5D65C016A^1'
+'3DBC31BF0233D^0'
+'14552778C39046^0'
+'-1863EB9FFFFFFF^-5'
+'5CAED7AB^-5'
+'302A593D8FFFFE^-4'
+'8DDE5D4D5C2B^1'
+'3DBC3789EFAE8^0'
+'145557A31CCDD6^0'
+'-187027^-5'
+'5CB0B2A82^-5'
+'302A666F43FFFE^-4'
+'8DDE5D34EC04^1'
+'3DBC3D54FAD902^0'
+'145587CD833D1A^0'
+'-187C6278000001^-5'
+'5CB27C0DA00004^-5'
+'302A73A0F6^-4'
+'8DDE5D1C6FA188^1'
+'3DBC43202299DC^0'
+'1455B7F7F6DE1^0'
+'-18889DD^-5'
+'5CB445736^-5'
+'302A7FB93^-4'
+'8DDE5D03E703B8^1'
+'3DBC48EB66F112^0'
+'1455E82276974^0'
+'-189B376C231DC8^-5'
+'5CCDE26128D15C^-5'
+'3036E4A8521AEA^-4'
+'8DDE5CEB5218E^1'
+'3DBC4EB6C8F81A^0'
+'1456184D038223^0'
+'-18A114A8^-5'
+'5CB7E9D5FFFFFC^-5'
+'302A9A1C970004^-4'
+'8DDE5CD2B10438^1'
+'3DBC548247957A^0'
+'145648779D9EBA^0'
+'-18AD5010000001^-5'
+'5CB9C4D36^-5'
+'302AA634CF^-4'
+'8DDE5CBA03B428^1'
+'3DBC5A4DE3E2B^0'
+'145678A243D389^0'
+'-18B98B7FFFFFFF^-5'
+'5CBB7CA14^-5'
+'302AB36684^-4'
+'8DDE5CA14A28A8^1'
+'3DBC60199BACC4^0'
+'1456A8CCF73A0D^0'
+'-18C5D87FFFFFFF^-5'
+'5CBD6936000004^-5'
+'302AC098360002^-4'
+'8DDE5C88845028^1'
+'3DBC65E5724024^0'
+'1456D8F7B7D243^0'
+'-18D20247FFFFFF^-5'
+'5CBF2104200004^-5'
+'302ACDC9EA0002^-4'
+'8DDE5C6FB24DE^1'
+'3DBC6BB1645066^0'
+'14570922859C2D^0'
+'-18DE3DC0000001^-5'
+'5CC0FC014^-5'
+'302AD9E221FFFE^-4'
+'8DDE5C56D4102^1'
+'3DBC717D74107A^0'
+'1457394D5F7E4F^0'
+'-18EA8AA8^-5'
+'5CC2D6FE600004^-5'
+'302AE713D6FFFE^-4'
+'8DDE5C3DE98578^1'
+'3DBC7749A1806^0'
+'14576978469226^0'
+'-18F6B488^-5'
+'5CC48ECC7FFFFC^-5'
+'302AF445890002^-4'
+'8DDE5C24F2D0F^1'
+'3DBC7D15EA6D28^0'
+'145799A33AD7AF^0'
+'-19030187FFFFFF^-5'
+'5CC67B613FFFFC^-5'
+'302B01773BFFFE^-4'
+'8DDE5C0BEFCF68^1'
+'3DBC82E252233C^0'
+'1457C9CE3C4EEB^0'
+'-190F3CEFFFFFFF^-5'
+'5CC8332F2^-5'
+'302B0D8F75^-4'
+'8DDE5BF2E09278^1'
+'3DBC88AED5562E^0'
+'1457F9F949DE6^0'
+'-191B66C^-5'
+'5CCA0E2C800004^-5'
+'302B1AC12A0002^-4'
+'8DDE5BD9C52BB8^1'
+'3DBC8E7B7638F6^0'
+'14582A24649F8A^0'
+'-1927B3C0000001^-5'
+'5CCBD791E^-5'
+'302B27F2DC^-4'
+'8DDE5BC09D77F8^1'
+'3DBC944833B214^0'
+'14585A4F8C9266^0'
+'-1933EF27FFFFFF^-5'
+'5CCDB28F400004^-5'
+'302B35248EFFFC^-4'
+'8DDE5BA76988D^1'
+'3DBC9A150EDB08^0'
+'14588A7AC1B6F5^0'
+'-19402A98000001^-5'
+'5CCF7BF4C^-5'
+'302B413CC8^-4'
+'8DDE5B8E295E38^1'
+'3DBC9FE2069A54^0'
+'1458BAA602F3BD^0'
+'-194C65F8000001^-5'
+'5CD156F1E^-5'
+'302B4E6E7E0004^-4'
+'8DDE5B74DCF84^1'
+'3DBCA5AF1C0972^0'
+'1458EAD151623B^0'
+'-19588FCFFFFFFF^-5'
+'5CD30EC^-5'
+'302B5BA02D0002^-4'
+'8DDE5B5B84687^1'
+'3DBCAB7C4CF572^0'
+'14591AFCAD0268^0'
+'-1964DCC^-5'
+'5CD4FB54A^-5'
+'302B68D1E2FFFE^-4'
+'8DDE5B421F8BB^1'
+'3DBCB1499CAABC^0'
+'14594B2815D44B^0'
+'-1971184^-5'
+'5CD6B322E^-5'
+'302B74EA1AFFFE^-4'
+'8DDE5B28AE737^1'
+'3DBCB71707DCEA^0'
+'14597B538ABE66^0'
+'-197D53A^-5'
+'5CD88E1FE00004^-5'
+'302B821BCEFFFE^-4'
+'8DDE5B0F311FD^1'
+'3DBCBCE490BEE8^0'
+'1459AB7F0CDA35^0'
+'-1989A0A0000001^-5'
+'5CDA691D2^-5'
+'302B8F4D820002^-4'
+'8DDE5AF5A77F3^1'
+'3DBCC2B23750BA^0'
+'1459DBAA9C27B7^0'
+'-1995CA70000001^-5'
+'5CDC20EB2^-5'
+'302B9B65BC0002^-4'
+'8DDE5ADC11B4C^1'
+'3DBCC87FF95F6C^0'
+'145A0BD6378D73^0'
+'-19A205D7FFFFFF^-5'
+'5CDDFBE81FFFFC^-5'
+'302BA9B0E6FFFC^-4'
+'8DDE5AC26FAEE8^1'
+'3DBCCE4DD91DEE^0'
+'145A3C01E13E5A^0'
+'-19AE4140000001^-5'
+'5CDFD6E59FFFFC^-5'
+'302BB5C9220004^-4'
+'8DDE5AA8C16DA8^1'
+'3DBCD41BD68C48^0'
+'145A6C2D97077C^0'
+'-19BA7CA7FFFFFF^-5'
+'5CE1A04B2^-5'
+'302BC1E15D0002^-4'
+'8DDE5A8F06F1^1'
+'3DBCD9E9F090FA^0'
+'145A9C5958E8D9^0'
+'-19C6C9A8^-5'
+'5CE369B0A^-5'
+'302BD02C860002^-4'
+'8DDE5A75402758^1'
+'3DBCDFB8272C04^0'
+'145ACC8529155F^0'
+'-19D2F38^-5'
+'5CE544ADBFFFFC^-5'
+'302BDC44C1FFFC^-4'
+'8DDE5A5B6D33D8^1'
+'3DBCE5867B76E^0'
+'145AFCB1055A21^0'
+'-19DF4078^-5'
+'5CE70E136^-5'
+'302BE976760004^-4'
+'8DDE5A418DF36^1'
+'3DBCEB54EC5816^0'
+'145B2CDCEED097^0'
+'-19EB6A5^-5'
+'5CE8D7791FFFFC^-5'
+'302BF6A826FFFE^-4'
+'8DDE5A27A2891^1'
+'3DBCF12379CFA8^0'
+'145B5D08E578BE^0'
+'-19F7B748000001^-5'
+'5CEAB2764^-5'
+'302C02C0610002^-4'
+'8DDE5A0DAAD1C8^1'
+'3DBCF6F224F70C^0'
+'145B8D34E8391F^0'
+'-1A03E120000001^-5'
+'5CEC7BDBC^-5'
+'302C0FF2140002^-4'
+'8DDE59F3A6F0A8^1'
+'3DBCFCC0ECB4C8^0'
+'145BBD60F82B33^0'
+'-1A102E2^-5'
+'5CEE56D92^-5'
+'302C1D23C6FFFE^-4'
+'8DDE59D996C288^1'
+'3DBD028FD2225A^0'
+'145BED8D154EFA^0'
+'-1A1C6987FFFFFF^-5'
+'5CF0203E8^-5'
+'302C2A557BFFFE^-4'
+'8DDE59BF7A59^1'
+'3DBD085ED42642^0'
+'145C1DB93FA476^0'
+'-1A289357FFFFFF^-5'
+'5CF1E9A43FFFFC^-5'
+'302C366DB40002^-4'
+'8DDE59A551C5A8^1'
+'3DBD0E2DF2C086^0'
+'145C4DE576122A^0'
+'-1A34E058^-5'
+'5CF3C4A14^-5'
+'302C439F67^-4'
+'8DDE598B1CE55^1'
+'3DBD13FD2F0A9A^0'
+'145C7E11B9B191^0'
+'-1A411BC^-5'
+'5CF58E06FFFFFC^-5'
+'302C50D119FFFC^-4'
+'8DDE5970DBC99^1'
+'3DBD19CC87EB0A^0'
+'145CAE3E0A82AB^0'
+'-1A4D573^-5'
+'5CF7576C8^-5'
+'302C5E02CD0004^-4'
+'8DDE59568E726^1'
+'3DBD1F9BFD61D2^0'
+'145CDE6A688578^0'
+'-1A59929^-5'
+'5CF93269C00004^-5'
+'302C6A1B08^-4'
+'8DDE593C34DFD^1'
+'3DBD256B90886E^0'
+'145D0E96D2A08^0'
+'-1A65CDF8^-5'
+'5CFAFBCF4^-5'
+'302C774CB9FFFC^-4'
+'8DDE5921CF11D8^1'
+'3DBD2B3B404562^0'
+'145D3EC349ED3A^0'
+'-1A720968^-5'
+'5CFCD6CCC^-5'
+'302C847E6DFFFC^-4'
+'8DDE59075D087^1'
+'3DBD310B0DB22E^0'
+'145D6EEFCE6BA8^0'
+'-1A7E44D0000001^-5'
+'5CFEA031FFFFFC^-5'
+'302C91B01FFFFE^-4'
+'8DDE58ECDEC3A^1'
+'3DBD36DAF7B54E^0'
+'145D9F1C601BC8^0'
+'-1A8A802FFFFFFF^-5'
+'5D006997A^-5'
+'302C9DC85A^-4'
+'8DDE58D254437^1'
+'3DBD3CAAFE4EC8^0'
+'145DCF48FDE422^0'
+'-1A96BBA^-5'
+'5D024495^-5'
+'302CAAFA0D0002^-4'
+'8DDE58B7BD87D^1'
+'3DBD427B229818^0'
+'145DFF75A8DE2F^0'
+'-1AA2F707FFFFFF^-5'
+'5D040DFA5FFFFC^-5'
+'302CB82BC00002^-4'
+'8DDE589D1A90C8^1'
+'3DBD484B6377BE^0'
+'145E2FA26109EF^0'
+'-1AAF327^-5'
+'5D05E8F7C^-5'
+'302CC443FB^-4'
+'8DDE58826B5E58^1'
+'3DBD4E1BC2073A^0'
+'145E5FCF254DEA^0'
+'-1ABB7F7^-5'
+'5D07B25D4^-5'
+'302CD28F260004^-4'
+'8DDE5867AFDEE8^1'
+'3DBD53EC3D2D0E^0'
+'145E8FFBF7DD1^0'
+'-1AC7A94^-5'
+'5D097BC2E^-5'
+'302CDEA76^-4'
+'8DDE584CE835A8^1'
+'3DBD59BCD4E93C^0'
+'145EC028D6847^0'
+'-1ADAC49AFE9192^-5'
+'5D232E86A415B8^-5'
+'3039431848124A^-4'
+'8DDE58321450F8^1'
+'3DBD5F8D8A553C^0'
+'145EF055C1440A^0'
+'-1AE031A7FFFFFC^-5'
+'5D0D2025A^-5'
+'302CF90AC5FFFC^-4'
+'8DDE5817341F5^1'
+'3DBD655E5C5796^0'
+'145F2082BA4ED^0'
+'-1AEC5B8^-5'
+'5D0EE98B3FFFFC^-5'
+'302D0523^-4'
+'8DDE57FC47C3D^1'
+'3DBD6B2F4AF04A^0'
+'145F50AFBF71D^0'
+'-1AF8A878000004^-5'
+'5D10C4886^-5'
+'302D1254B3^-4'
+'8DDE57E14F1B58^1'
+'3DBD71005738D^0'
+'145F80DCD1C683^0'
+'-1B04D24FFFFFFF^-5'
+'5D128DEE000004^-5'
+'302D1F8666^-4'
+'8DDE57C64A4908^1'
+'3DBD76D18017B^0'
+'145FB109F14CE9^0'
+'-1B111F48000004^-5'
+'5D1468EB4^-5'
+'302D2B9E9F^-4'
+'8DDE57AB3929C^1'
+'3DBD7CA2C6A664^0'
+'145FE1371CEB88^0'
+'-1B1D5AAA7152AA^-5'
+'5D16322234E6EC^-5'
+'302D38B83D63A4^-4'
+'8DDE57901BCF08^1'
+'3DBD827429CB7^0'
+'1460116455BBDC^0'
+'-1B29962^-5'
+'5D17FBB65FFFFC^-5'
+'302D4602050002^-4'
+'8DDE5774F238E8^1'
+'3DBD8845A986D6^0'
+'146041919BBDE1^0'
+'-1B35BFEFFFFFFF^-5'
+'5D19D6B3800004^-5'
+'302D5333B90002^-4'
+'8DDE5759BC78F8^1'
+'3DBD8E1746F20E^0'
+'146071BEEEF19A^0'
+'-1B420CF^-5'
+'5D1BA0194^-5'
+'302D5F4BF30002^-4'
+'8DDE573E7A6C08^1'
+'3DBD93E900F3A2^0'
+'1460A1EC4E3D8D^0'
+'-1B4E4858^-5'
+'5D1D7B16600004^-5'
+'302D6D971EFFFC^-4'
+'8DDE57232C23B^1'
+'3DBD99BAD8A508^0'
+'1460D219BBD4AC^0'
+'-1B5A83C7FFFFFC^-5'
+'5D1F32E44^-5'
+'302D7895DFFFFC^-4'
+'8DDE5707D19FE8^1'
+'3DBD9F8CCBD34C^0'
+'14610247346A8C^0'
+'-1B66BF28^-5'
+'5D211F79200004^-5'
+'302D86E10D^-4'
+'8DDE56EC6AE0C^1'
+'3DBDA55EDDCADE^0'
+'14613274BB4B99^0'
+'-1B72FA8FFFFFFF^-5'
+'5D22D747^-5'
+'302D92F9440004^-4'
+'8DDE56D0F7E63^1'
+'3DBDAB310B3F4E^0'
+'146162A24E44DD^0'
+'-1B7F3600000004^-5'
+'5D24B2446^-5'
+'302DA14473^-4'
+'8DDE56B578B03^1'
+'3DBDB103566394^0'
+'146192CFEF895^0'
+'-1B8B7168000004^-5'
+'5D268D417FFFFC^-5'
+'302DAC432FFFFC^-4'
+'8DDE5699ED3EC8^1'
+'3DBDB6D5BF37AC^0'
+'1461C2FD9BCC8^0'
+'-1B97ACD0000004^-5'
+'5D2856A72^-5'
+'302DBA8E61^-4'
+'8DDE567E5591F8^1'
+'3DBDBCA844A21E^0'
+'1461F32B565AE1^0'
+'-1BA3E82FFFFFFF^-5'
+'5D2A200CA^-5'
+'302DC6A6980002^-4'
+'8DDE5662B1A9C8^1'
+'3DBDC27AE6A2E8^0'
+'146223591D0179^0'
+'-1BB03537FFFFFC^-5'
+'5D2BE9724^-5'
+'302DD3D849FFFE^-4'
+'8DDE564701749^1'
+'3DBDC84DA53A0C^0'
+'14625386F0D9C3^0'
+'-1BBC5F08000003^-5'
+'5D2DC46F8^-5'
+'302DE10A000002^-4'
+'8DDE562B451588^1'
+'3DBDCE20818104^0'
+'146283B4D1E3C3^0'
+'-1BC89A70000003^-5'
+'5D2F9F6CA^-5'
+'302DEE3BB1FFFE^-4'
+'8DDE560F7C7B18^1'
+'3DBDD3F37B77CE^0'
+'1462B3E2C01F75^0'
+'-1BD4E770000004^-5'
+'5D31573AA^-5'
+'302DFA53EB0002^-4'
+'8DDE55F3A793A8^1'
+'3DBDD9C690EB78^0'
+'1462E410BA736^0'
+'-1BE11140000003^-5'
+'5D333237E^-5'
+'302E07859F0002^-4'
+'8DDE55D7C68268^1'
+'3DBDDF99C40EF6^0'
+'1463143EC1F8FF^0'
+'-1BED5E48^-5'
+'5D350D35^-5'
+'302E14B751FFFE^-4'
+'8DDE55BBD9242^1'
+'3DBDE56D14E246^0'
+'1463446CD6B051^0'
+'-1BF98810000003^-5'
+'5D36D69AA^-5'
+'302E20CF8B0002^-4'
+'8DDE559FDF9C1^1'
+'3DBDEB40824BF^0'
+'1463749AF77FDC^0'
+'-1C05D518^-5'
+'5D38A000200004^-5'
+'302E2F1AB8^-4'
+'AE0BEB97F94958^7'
+'AE0C3EF786994^7'
+'AE0C3F1786994^7'
+'AE0C3F2786994^7'
+'AE0C3F3786994^7'
+'AE0C3F4786994^7'
+'AE0C3F5786994^7'
+'AE0C3F6786994^7'
+'AE0C3F7786994^7'
+'AE0C3F8786994^7'
+'AE0C3F9786994^7'
+'AE0C3FA786994^7'
+'AE0C3FB786994^7'
+'AE0C3FC786994^7'
+'AE0C3FD786994^7'
+'AE0C3FE786994^7'
+'AE0C3FF786994^7'
+'AE0C400786994^7'
+'AE0C401786994^7'
+'AE0C402786994^7'
+'AE0C403786994^7'
+'AE0C404786994^7'
+'AE0C405786994^7'
+'AE0C406786994^7'
+'AE0C407786994^7'
+'AE0C408786994^7'
+'AE0C409786994^7'
+'AE0C40A786994^7'
+'AE0C40B786994^7'
+'AE0C40C786994^7'
+'AE0C40D78280B^7'
+'AE0C40E78280B^7'
+'AE0C40F78280B^7'
+'AE0C41078280B^7'
+'AE0C41178280B^7'
+'AE0C41278280B^7'
+'AE0C41378280B^7'
+'AE0C41478280B^7'
+'AE0C41578280B^7'
+'AE0C41678280B^7'
+'AE0C41778280B^7'
+'AE0C41878280B^7'
+'AE0C41978280B^7'
+'AE0C41A78280B^7'
+'AE0C41B78280B^7'
+'AE0C41C78280B^7'
+'AE0C41D78280B^7'
+'AE0C41E78280B^7'
+'AE0C41F78280B^7'
+'AE0C42078280B^7'
+'AE0C42178280B^7'
+'AE0C42278280B^7'
+'AE0C42378280B^7'
+'AE0C42478280B^7'
+'AE0C42578280B^7'
+'AE0C42678280B^7'
+'AE0C42778280B^7'
+'AE0C42878280B^7'
+'AE0C42978280B^7'
+'AE0C42A78280B^7'
+'AE0C42B78280B^7'
+'AE0C42C78280B^7'
+'AE0C42D78280B^7'
+'AE0C42E78280B^7'
+'AE0C42F78280B^7'
+'AE0C43078280B^7'
+'AE0C43178280B^7'
+'AE0C43278280B^7'
+'AE0C43378280B^7'
+'AE0C43478280B^7'
+'AE0C43578280B^7'
+'AE0C43678280B^7'
+'AE0C43778280B^7'
+'AE0C43878280B^7'
+'AE0C43978280B^7'
+'AE0C43A78280B^7'
+'AE0C43B78280B^7'
+'AE0C43C77E682^7'
+'AE0C43D77E682^7'
+'AE0C43E77E682^7'
+'AE0C43F77E682^7'
+'AE0C44077E682^7'
+'AE0C44177E682^7'
+'AE0C44277E6828^7'
+'AE0C44377E6828^7'
+'AE0C44477E6828^7'
+'AE0C44577E6828^7'
+'AE0C44677E6828^7'
+'AE0C44777E6828^7'
+'AE0C44877E6828^7'
+'AE0C44977E6828^7'
+'AE0C44A77E6828^7'
+'AE0C44B77E6828^7'
+'AE0C44C77E6828^7'
+'AE0C44D77E6828^7'
+'AE0C44E77E6828^7'
+'AE0C44F77E6828^7'
+'AE0C45077E6828^7'
+'AE0C45177E6828^7'
+'AE0C45277E6828^7'
+'AE0C45377E6828^7'
+'AE0C45477E6828^7'
+'AE0C45277E6828^7'
+'1^1'
+'66^2'
+END_ARRAY 2 717
+BEGIN_ARRAY 3 39
+'DE-0403LE-0403                          '
+'AE0C34B79F2CB8^7'
+'AE0C453DA3455^7'
+'A'
+'0'
+'1'
+'2'
+39
+'ADFB74^7'
+'A8C^5'
+'94A1D96FDC9538^5'
+'-9DFA14C450E87^3'
+'-10A6F90CC55C8E^2'
+'1A8DB36D7919A4^0'
+'-DBA82D668F68^-2'
+'1943E04814A3A9^-3'
+'2D2DBBB0F8889A^-4'
+'-13328359B6AFED^-5'
+'2D4395828FC13A^-6'
+'-166EB5C923E47F^-6'
+'-50E6C5C4989A2^-8'
+'3A64FEEA808364^5'
+'1C038412106FEF^4'
+'-9BB7059785BE3^1'
+'1869B5AA252882^0'
+'934A2C3016BD4^-2'
+'-56AB4C415E9828^-3'
+'595353E6116C3C^-4'
+'-6E4C3AE2B464E^-6'
+'6454B33CA4F478^-6'
+'-E159348A215B38^-7'
+'-8B8F3AF4B6392^-8'
+'14ABA56F833013^5'
+'C116B04BE71DE8^3'
+'-3E3EECFB165A0E^1'
+'8BF8BF3538E55^-1'
+'50D54F66499DF4^-2'
+'-2CBDB1CB1D95C2^-3'
+'2CD23EAB3A0576^-4'
+'-1CDE56A5F1B23D^-6'
+'30DE3A636A3FE2^-6'
+'-4C3AEEAC5F8958^-7'
+'-42223050A58024^-8'
+'AD52B4^7'
+'1518^6'
+'23^2'
+'1^1'
+END_ARRAY 3 39
+TOTAL_ARRAYS 3
+ ~NAIF/SPC BEGIN COMMENTS~
+; ../../../data/isistestdata/hayabusa/out/st_2458542208_v.ale_0.bsp LOG FILE
+
+; Created 2023-02-16/02:11:21.00.
+;
+; BEGIN SPKMERGE COMMANDS
+
+LEAPSECONDS_KERNEL = ../../../remotedata/isis_data/base/kernels/lsk/naif0012.tls
+
+SPK_KERNEL  = ../../../data/isistestdata/hayabusa/out/st_2458542208_v.ale_0.bsp
+SOURCE_SPK_KERNEL = ../../../remotedata/isis_data/hayabusa/kernels/tspk/sb_25143_140.bsp
+    INCLUDE_COMMENTS = NO
+    BODIES           = 2025143
+    BEGIN_TIME       = 2005 OCT 13 19:02:35.294
+    END_TIME         = 2005 OCT 13 19:06:59.670
+SOURCE_SPK_KERNEL = ../../../remotedata/isis_data/hayabusa/kernels/spk/hay_osbj_050911_051118_v1n.bsp
+    INCLUDE_COMMENTS = NO
+    BODIES           = -130
+    BEGIN_TIME       = 2005 OCT 13 19:02:35.294
+    END_TIME         = 2005 OCT 13 19:06:59.670
+SOURCE_SPK_KERNEL = ../../../remotedata/isis_data/hayabusa/kernels/tspk/de403s.bsp
+    INCLUDE_COMMENTS = NO
+    BODIES           = 10
+    BEGIN_TIME       = 2005 OCT 13 19:02:35.294
+    END_TIME         = 2005 OCT 13 19:06:59.670
+
+; END SPKMERGE COMMANDS
+ ~NAIF/SPC END COMMENTS~
diff --git a/tests/pytests/data/st_2458542208_v/st_2458542208_v.ale_1.xsp b/tests/pytests/data/st_2458542208_v/st_2458542208_v.ale_1.xsp
new file mode 100644
index 0000000000000000000000000000000000000000..8a7e30e5e98df58ce4506f6f037f8afa7325444f
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/st_2458542208_v.ale_1.xsp
@@ -0,0 +1,1989 @@
+DAFETF NAIF DAF ENCODED TRANSFER FILE
+'DAF/SPK '
+'2'
+'6'
+'SPKMERGE                                                    '
+BEGIN_ARRAY 1 33
+'ITOKAWA                                 '
+'AE0C54FDDC9D6^7'
+'AE0C65630BB8^7'
+'1EE6B7'
+'A'
+'1'
+'2'
+33
+'AE108C^7'
+'2A3^5'
+'-9362655229C478^7'
+'11D114E68B4532^6'
+'A18750D88088^4'
+'51BD20950E1^2'
+'-13D12E948^1'
+'-2F3B42A8C^-1'
+'-B90C^-4'
+'AAB79^-5'
+'2^-6'
+'-5ACF5E84FB1CC8^6'
+'-4BF3EE662F4E08^6'
+'63C6F9E67CA8^3'
+'E31CD5A4DEF^2'
+'10A094D49^1'
+'-10A636D5^-1'
+'-5A27CA^-3'
+'-63F4C^-5'
+'CF^-7'
+'1BD5954A382803^6'
+'-225C8A47DDF064^6'
+'-1E648043D30C^3'
+'62D62CED7CF^2'
+'7FBB718D7^0'
+'-60D15FD8^-2'
+'-27D6E4^-3'
+'-31786^-5'
+'4FC^-7'
+'ADE65C^7'
+'546^5'
+'1D^2'
+'1^1'
+END_ARRAY 1 33
+BEGIN_ARRAY 2 1852
+'HAYABUSA Traj. by HJSC; with NAIF mods  '
+'AE0C54FDDC9D6^7'
+'AE0C65630BB8^7'
+'-82'
+'1EE6B7'
+'1'
+'9'
+1024
+'8DDE344AA251E^1'
+'3DC3AF8C2BA2CE^0'
+'1492B81055B3DB^0'
+'-2804D64FFFFFFC^-5'
+'5EFFAF75^-5'
+'303AD643FFFFFE^-4'
+'8DDE34229D7B9^1'
+'3DC3B57C269A1E^0'
+'1492E84B2BF7DB^0'
+'-2811233FFFFFFE^-5'
+'5F0178DAA00004^-5'
+'303AE375B2FFFE^-4'
+'8DDE33FA8C585^1'
+'3DC3BB6C3E27C8^0'
+'149318860F6D8E^0'
+'-281D5EB0000002^-5'
+'5F0353D7A^-5'
+'303AEF8DED0002^-4'
+'8DDE33D26EF9A^1'
+'3DC3C15C736542^0'
+'149348C0FEFB7B^0'
+'-2829888^-5'
+'5F052ED5^-5'
+'303AFCBFA00002^-4'
+'8DDE33AA45712^1'
+'3DC3C74CC65292^0'
+'149378FBFBBB1B^0'
+'-2835D58^-5'
+'5F06E6A2C^-5'
+'303B09F151FFFC^-4'
+'8DDE33820F9BA^1'
+'3DC3CD3D34BCBE^0'
+'1493A93705AC6D^0'
+'-284210EFFFFFFC^-5'
+'5F08C1A02^-5'
+'303B1723060004^-4'
+'8DDE3359CD8AB^1'
+'3DC3D32DC0D6C^0'
+'1493D9721CCF73^0'
+'-284E4C50000002^-5'
+'5F0A9C9D4^-5'
+'303B233B4^-4'
+'8DDE33317F3E6^1'
+'3DC3D91E6AA094^0'
+'149409AD400AB3^0'
+'-285A87BFFFFFFE^-5'
+'5F0C6603000004^-5'
+'303B306CF10002^-4'
+'8DDE330924B6A^1'
+'3DC3DF0F3100C4^0'
+'149439E87077A4^0'
+'-2866C32^-5'
+'5F0E2F684^-5'
+'303B3D9EA8^-4'
+'8DDE32E0BDF38^1'
+'3DC3E50013F748^0'
+'14946A23AE164C^0'
+'-287D5C0F763146^-5'
+'5F2854F8488348^-5'
+'3047A6D80D24F8^-4'
+'8DDE32B84AF4F^1'
+'3DC3EAF113842A^0'
+'14949A5EF8E6A4^0'
+'-287F39F7FFFFFC^-5'
+'5F11D3CB400004^-5'
+'303B56E893^-4'
+'8DDE328FCBBAF8^1'
+'3DC3F0E230C0DE^0'
+'1494CA9A4FCF37^0'
+'-288B755FFFFFFE^-5'
+'5F13AEC86^-5'
+'303B641A450002^-4'
+'8DDE3267404598^1'
+'3DC3F6D36BAD64^0'
+'1494FAD5B3E97C^0'
+'-2897B0C^-5'
+'5F1566966^-5'
+'303B714BF7^-4'
+'8DDE323EA894D8^1'
+'3DC3FCC4C216CA^0'
+'14952B11253573^0'
+'-28A3FDD0000004^-5'
+'5F1741939FFFFC^-5'
+'303B7D6433^-4'
+'8DDE3216049708^1'
+'3DC402B6363004^0'
+'14955B4CA299A6^0'
+'-28B02797FFFFFC^-5'
+'5F191C90E^-5'
+'303B8BAF5EFFFC^-4'
+'8DDE31ED546F7^1'
+'3DC408A7C7F912^0'
+'14958B882E4905^0'
+'-28BC6300000004^-5'
+'5F1AE5F65FFFFC^-5'
+'303B97C799FFFE^-4'
+'8DDE31C4980C7^1'
+'3DC40E99765878^0'
+'1495BBC3C6109F^0'
+'-28C8B008000002^-5'
+'5F1CAF5BE^-5'
+'303BA4F94B^-4'
+'8DDE319BCF5C68^1'
+'3DC4148B414E36^0'
+'1495EBFF6B09EA^0'
+'-28D4D9D0000004^-5'
+'5F1E8A594^-5'
+'303BB11184FFFE^-4'
+'8DDE3172FA8298^1'
+'3DC41A7D29F3CA^0'
+'14961C3B1C1B6F^0'
+'-28E1154^-5'
+'5F2053BEC^-5'
+'303BBE43390004^-4'
+'8DDE314A196D58^1'
+'3DC4206F2F2FB6^0'
+'14964C76DA5EA8^0'
+'-28ED6237FFFFFC^-5'
+'5F221D246^-5'
+'303BCB74EA^-4'
+'8DDE31212C0B2^1'
+'3DC426615101FC^0'
+'14967CB2A5D392^0'
+'-28F99DA8000002^-5'
+'5F23F8215FFFFC^-5'
+'303BD8A69F^-4'
+'8DDE30F8326D78^1'
+'3DC42C53908412^0'
+'1496ACEE7E7A31^0'
+'-2905C778^-5'
+'5F25C1872^-5'
+'303BE5D8520002^-4'
+'8DDE30CF2CA6^1'
+'3DC43245EC9C84^0'
+'1496DD2A645283^0'
+'-29121478^-5'
+'5F279C846^-5'
+'303BF1F08B^-4'
+'8DDE30A61A9188^1'
+'3DC438386664CA^0'
+'14970D6656430E^0'
+'-291E4FE^-5'
+'5F2965E9E^-5'
+'303BFF223DFFFE^-4'
+'8DDE307CFC41A8^1'
+'3DC43E2AFCC368^0'
+'14973DA255654C^0'
+'-292A79B^-5'
+'5F2B2F4F8^-5'
+'303C0B3A770002^-4'
+'8DDE3053D1C7F8^1'
+'3DC4441DAFB86^0'
+'14976DDE609FC3^0'
+'-2936C6B^-5'
+'5F2D0A4CA^-5'
+'303C1985A60002^-4'
+'8DDE302A9B0148^1'
+'3DC44A10805D2A^0'
+'14979E1A7A2569^0'
+'-29430218^-5'
+'5F2ED3B25FFFFC^-5'
+'303C259DDC^-4'
+'8DDE300157FF3^1'
+'3DC450036D985^0'
+'1497CE569FC345^0'
+'-294F3D8^-5'
+'5F309D17C00004^-5'
+'303C32CF92FFFE^-4'
+'8DDE2FD808C1B^1'
+'3DC455F67769CC^0'
+'1497FE92D292D8^0'
+'-295B78EFFFFFFE^-5'
+'5F327815200004^-5'
+'303C400144^-4'
+'8DDE2FAEAD48C^1'
+'3DC45BE99EEB1E^0'
+'14982ECF12941C^0'
+'-2967B45^-5'
+'5F34417AC^-5'
+'303C4C197DFFFE^-4'
+'8DDE2F8545947^1'
+'3DC461DCE302CA^0'
+'14985F0B5EAD9A^0'
+'-2973EFBFFFFFFE^-5'
+'5F361C77A^-5'
+'303C594B30FFFC^-4'
+'8DDE2F5BD1A4B^1'
+'3DC467D044CA44^0'
+'14988F47B7F8CB^0'
+'-29802B27FFFFFE^-5'
+'5F37E5DD8^-5'
+'303C667CE4^-4'
+'8DDE2F32517988^1'
+'3DC46DC3C3281C^0'
+'1498BF841E75AF^0'
+'-298C6688^-5'
+'5F39AF432^-5'
+'303C73AE96FFFE^-4'
+'8DDE2F08C513^1'
+'3DC473B75E1C4E^0'
+'1498EFC0922446^0'
+'-2998A1F7FFFFFA^-5'
+'5F3B8A40200004^-5'
+'303C7FC6D0FFFC^-4'
+'8DDE2EDF2C7108^1'
+'3DC479AB16C05^0'
+'14991FFD11EB17^0'
+'-29A4EEF7FFFFFE^-5'
+'5F3D53A5BFFFFC^-5'
+'303C8CF8840002^-4'
+'8DDE2EB587821^1'
+'3DC47F9EEBFAAC^0'
+'149950399EE39B^0'
+'-29B118C8000006^-5'
+'5F3F1D0B600004^-5'
+'303C9A2A36FFFE^-4'
+'8DDE2E8BD66948^1'
+'3DC48592DDCB62^0'
+'14998076390DD2^0'
+'-29BD5430000002^-5'
+'5F40F808A^-5'
+'303CA64271^-4'
+'8DDE2E62191518^1'
+'3DC48B86ED4BEC^0'
+'1499B0B2DF5043^0'
+'-29C9A138^-5'
+'5F42D305C00004^-5'
+'303CB48D9D^-4'
+'8DDE2E384F73E^1'
+'3DC4917B1A7C48^0'
+'1499E0EF93DDE^0'
+'-29D5CB00000002^-5'
+'5F448AD3C00004^-5'
+'303CC0A5D70002^-4'
+'8DDE2E0E79A8E^1'
+'3DC4976F632984^0'
+'149A112C5483B7^0'
+'-29E20668000006^-5'
+'5F4665D1^-5'
+'303CCDD789FFFE^-4'
+'8DDE2DE497A278^1'
+'3DC49D63C98694^0'
+'149A4169225B41^0'
+'-29EE537^-5'
+'5F4840CE^-5'
+'303CD9EFC30002^-4'
+'8DDE2DBAA94F08^1'
+'3DC4A3584D9374^0'
+'149A71A5FC4B04^0'
+'-29FA8ECFFFFFFE^-5'
+'5F4A0A33C^-5'
+'303CE72177^-4'
+'8DDE2D90AEC038^1'
+'3DC4A94CEE36B^0'
+'149AA1E2E36C7B^0'
+'-2A06B8A8^-5'
+'5F4BD399600004^-5'
+'303CF4532A^-4'
+'8DDE2D66A8079^1'
+'3DC4AF41AB7046^0'
+'149AD21FD7BFA5^0'
+'-2A1305A8000002^-5'
+'5F4D9CFEFFFFFC^-5'
+'303D0184DC0002^-4'
+'8DDE2D3C9501E8^1'
+'3DC4B536854036^0'
+'149B025CD94481^0'
+'-2A1F4108000006^-5'
+'5F4F77FC^-5'
+'303D0EB6910002^-4'
+'8DDE2D1275C0E^1'
+'3DC4BB2B7CBFF6^0'
+'149B3299E7FB12^0'
+'-2A2B6AE8000006^-5'
+'5F5152F94^-5'
+'303D1ACECA^-4'
+'8DDE2CE84A55F8^1'
+'3DC4C12091EF8A^0'
+'149B62D702C9DC^0'
+'-2A37B7E^-5'
+'5F530AC74^-5'
+'303D28007C0002^-4'
+'8DDE2CBE129E18^1'
+'3DC4C715C29BFE^0'
+'149B93142ACA58^0'
+'-2A43F348^-5'
+'5F54E5C47FFFFC^-5'
+'303D3532300002^-4'
+'8DDE2C93CEAAD^1'
+'3DC4CD0B10F846^0'
+'149BC3515FFC88^0'
+'-2A502EB^-5'
+'5F56C0C1A^-5'
+'303D414A68FFFE^-4'
+'8DDE2C697E7C2^1'
+'3DC4D3007D046^0'
+'149BF38EA146F1^0'
+'-2A5C6A18^-5'
+'5F588A274^-5'
+'303D4E7C1CFFFE^-4'
+'8DDE2C3F221208^1'
+'3DC4D8F605A6D4^0'
+'149C23CBEFC30E^0'
+'-2A68A587FFFFFE^-5'
+'5F5A538CE^-5'
+'303D5BADCF^-4'
+'8DDE2C14B96C8^1'
+'3DC4DEEBAADFA2^0'
+'149C54094B70DD^0'
+'-2A74E0E0000002^-5'
+'5F5C2E8A^-5'
+'303D68DF83^-4'
+'8DDE2BEA448BA^1'
+'3DC4E4E16DC842^0'
+'149C8446B4506^0'
+'-2A811C6^-5'
+'5F5DF7EFA^-5'
+'303D74F7BBFFFE^-4'
+'8DDE2BBFC36F4^1'
+'3DC4EAD74D473C^0'
+'149CB48429481C^0'
+'-2A8D57C0000006^-5'
+'5F5FC1554^-5'
+'303D82297^-4'
+'8DDE2B9536178^1'
+'3DC4F0CD495C9^0'
+'149CE4C1AB718C^0'
+'-2A99931FFFFFFE^-5'
+'5F619C526^-5'
+'303D8F5B22^-4'
+'8DDE2B6A9C846^1'
+'3DC4F6C36321B6^0'
+'149D14FF3ACCAE^0'
+'-2AA5E027FFFFFE^-5'
+'5F6365B7DFFFFC^-5'
+'303D9C8CD6^-4'
+'8DDE2B3FF6A438^1'
+'3DC4FCB9997D34^0'
+'149D453CD75984^0'
+'-2AB209F8000002^-5'
+'5F652F1DBFFFFC^-5'
+'303DA8A50F^-4'
+'8DDE2B15449A4^1'
+'3DC502AFEC6F1^0'
+'149D757A7FFE93^0'
+'-2AC9395D40604^-5'
+'5F7F7C947B5EC8^-5'
+'304A127D16A7B^-4'
+'8DDE2AEA8654E^1'
+'3DC508A65D10BA^0'
+'149DA5B835D554^0'
+'-2ACA925FFFFFFA^-5'
+'5F68E518^-5'
+'303DC30874FFFE^-4'
+'8DDE2ABFBBC28^1'
+'3DC50E9CEB623A^0'
+'149DD5F5F8DDC9^0'
+'-2AD6BC27FFFFFE^-5'
+'5F6A9CE5FFFFFC^-5'
+'303DD03A2A^-4'
+'8DDE2A94E50658^1'
+'3DC5149395309A^0'
+'149E0633C917F3^0'
+'-2AE3093FFFFFFE^-5'
+'5F6C77E34^-5'
+'303DDC52630002^-4'
+'8DDE2A6A01FD18^1'
+'3DC51A8A5CAECE^0'
+'149E3671A56A56^0'
+'-2AEF3300000002^-5'
+'5F6E52E02^-5'
+'303DE98413FFFE^-4'
+'8DDE2A3F12CA18^1'
+'3DC5208141DCD^0'
+'149E66AF8EEE6A^0'
+'-2AFB8000000006^-5'
+'5F701C46^-5'
+'303DF6B5C80002^-4'
+'8DDE2A14174A18^1'
+'3DC5267843A13^0'
+'149E96ED85A432^0'
+'-2B07A9D7FFFFFE^-5'
+'5F71E5AB800004^-5'
+'303E03E77C^-4'
+'8DDE29E90FA04^1'
+'3DC52C6F61FBE8^0'
+'149EC72B898BAE^0'
+'-2B13F6DFFFFFFE^-5'
+'5F73AF111FFFFC^-5'
+'303E0FFFB60002^-4'
+'8DDE29BDFBA96^1'
+'3DC532669CECFA^0'
+'149EF769998B64^0'
+'-2B20323^-5'
+'5F758A0E400004^-5'
+'303E1D31680004^-4'
+'8DDE2992DB773^1'
+'3DC5385DF58DDE^0'
+'149F27A7B6BCCC^0'
+'-2B2C6DA8^-5'
+'5F77650B8^-5'
+'303E2A631A^-4'
+'8DDE2967AF0988^1'
+'3DC53E556BDE96^0'
+'149F57E5E11FE6^0'
+'-2B389777FFFFFE^-5'
+'5F791CD98^-5'
+'303E367B560002^-4'
+'8DDE293C76721^1'
+'3DC5444CFDAC2E^0'
+'149F8824179B3C^0'
+'-2B44E478^-5'
+'5F7B096E4^-5'
+'303E43AD07FFFC^-4'
+'8DDE2911318D98^1'
+'3DC54A44AE4312^0'
+'149FB8625B4844^0'
+'-2B511FE^-5'
+'5F7CC13C4^-5'
+'303E50DEBB0002^-4'
+'8DDE28E5E06DB8^1'
+'3DC5503C7A56D6^0'
+'149FE8A0AC26FF^0'
+'-2B5D5B48^-5'
+'5F7E9C397FFFFC^-5'
+'303E5E106CFFFE^-4'
+'8DDE28BA83127^1'
+'3DC55634641A6E^0'
+'14A018DF0A376C^0'
+'-2B6996B8000002^-5'
+'5F80659EDFFFFC^-5'
+'303E6B4221FFFE^-4'
+'8DDE288F197BB8^1'
+'3DC55C2C6A745C^0'
+'14A0491D75798E^0'
+'-2B75D217FFFFFE^-5'
+'5F82409C3FFFFC^-5'
+'303E775A5B0002^-4'
+'8DDE2863A3A9A^1'
+'3DC562248E7E2^0'
+'14A0795BECD3E9^0'
+'-2B820D7FFFFFFE^-5'
+'5F840A01C^-5'
+'303E848C0E0002^-4'
+'8DDE2838219C2^1'
+'3DC5681CCF1E3C^0'
+'14A0A99A715FF7^0'
+'-2B8E48F0000002^-5'
+'5F85D367800004^-5'
+'303E91BDC0FFFE^-4'
+'8DDE280C93533^1'
+'3DC56E152C54B4^0'
+'14A0D9D9031DB8^0'
+'-2B9A95EFFFFFFE^-5'
+'5F87AE64A^-5'
+'303E9DD5FB0002^-4'
+'8DDE27E0F8BD4^1'
+'3DC5740DA73AFE^0'
+'14A10A17A0F3B3^0'
+'-2BA6BFB7FFFFFE^-5'
+'5F8977CA2^-5'
+'303EAB07AD^-4'
+'8DDE27B551FD88^1'
+'3DC57A063EB7A^0'
+'14A13A564BFB6^0'
+'-2BB2FB28000002^-5'
+'5F8B52C78^-5'
+'303EB83960FFFE^-4'
+'8DDE27899F026^1'
+'3DC57FFEF3E418^0'
+'14A16A950434C1^0'
+'-2BBF4827FFFFFE^-5'
+'5F8D1C2CE^-5'
+'303EC56B14FFFC^-4'
+'8DDE275DDFBA38^1'
+'3DC585F7C5A6E6^0'
+'14A19AD3C99FD6^0'
+'-2BCB71F8000002^-5'
+'5F8EE592800004^-5'
+'303ED1834D^-4'
+'8DDE273214484^1'
+'3DC58BF0B4000E^0'
+'14A1CB129B2323^0'
+'-2BD7AD60000002^-5'
+'5F90C08FC^-5'
+'303EDEB501^-4'
+'8DDE27063C9AE^1'
+'3DC591E9C0090A^0'
+'14A1FB5179D824^0'
+'-2BE3FA60000006^-5'
+'5F9289F5400004^-5'
+'303EEBE6B30002^-4'
+'8DDE26DA58A08^1'
+'3DC597E2E8A85E^0'
+'14A22B9065BED7^0'
+'-2BF02437FFFFFE^-5'
+'5F94535B^-5'
+'303EF918680002^-4'
+'8DDE26AE687C48^1'
+'3DC59DDC2DDE0E^0'
+'14A25BCF5ED73F^0'
+'-2BFC7130000002^-5'
+'5F962E582^-5'
+'303F0530A^-4'
+'8DDE26826C0B18^1'
+'3DC5A3D590C39^0'
+'14A28C0E6407DF^0'
+'-2C08AC98000002^-5'
+'5F97F7BDC^-5'
+'303F126253FFFE^-4'
+'8DDE2656635E8^1'
+'3DC5A9CF103F6C^0'
+'14A2BC4D766A33^0'
+'-2C14D67^-5'
+'5F99D2BAE^-5'
+'303F1F94070002^-4'
+'8DDE262A4E881^1'
+'3DC5AFC8AD6B1A^0'
+'14A2EC8C95FE3A^0'
+'-2C212368000002^-5'
+'5F9B9C207FFFFC^-5'
+'303F2BAC3FFFFE^-4'
+'8DDE25FE2D64A8^1'
+'3DC5B5C2672D22^0'
+'14A31CCBC1AA7A^0'
+'-2C2D5ED8^-5'
+'5F9D6585FFFFFC^-5'
+'303F39F76C0004^-4'
+'8DDE25D20005D^1'
+'3DC5BBBC3D8582^0'
+'14A34D0AFBA1E6^0'
+'-2C399A4^-5'
+'5F9F4083400004^-5'
+'303F460FA70002^-4'
+'8DDE25A5C66B9^1'
+'3DC5C1B6318DB6^0'
+'14A37D4A41B18D^0'
+'-2C45D5A8^-5'
+'5FA109E9^-5'
+'303F534159^-4'
+'8DDE25798095E8^1'
+'3DC5C7B0422C46^0'
+'14A3AD8994F2E6^0'
+'-2C51FF77FFFFFE^-5'
+'5FA2E4E5E^-5'
+'303F5F5993FFFE^-4'
+'8DDE254D2E967^1'
+'3DC5CDAA707AA4^0'
+'14A3DDC8F44C7A^0'
+'-2C5E4C77FFFFFE^-5'
+'5FA4AE4BC^-5'
+'303F6C8B45^-4'
+'8DDE2520D049F8^1'
+'3DC5D3A4BB5F6^0'
+'14A40E0860D7BF^0'
+'-2C6A87DFFFFFFE^-5'
+'5FA677B12^-5'
+'303F79BCFB^-4'
+'8DDE24F465C218^1'
+'3DC5D99F22DA72^0'
+'14A43E47DA94BA^0'
+'-2C76D4E^-5'
+'5FA852AE8^-5'
+'303F86EEAB0002^-4'
+'8DDE24C7EEED38^1'
+'3DC5DF99A8055A^0'
+'14A46E87618365^0'
+'-2C82FEB^-5'
+'5FAA1C14^-5'
+'303F942061^-4'
+'8DDE249B6BEE88^1'
+'3DC5E59449C69A^0'
+'14A49EC6F5A3C6^0'
+'-2C8F3A20000002^-5'
+'5FABE5798^-5'
+'303FA0389A^-4'
+'8DDE246EDCB468^1'
+'3DC5EB8F081E32^0'
+'14A4CF0695DC6^0'
+'-2C9B757FFFFFFE^-5'
+'5FADC076C^-5'
+'303FAD6A4BFFFE^-4'
+'8DDE2442413EE8^1'
+'3DC5F189E4259E^0'
+'14A4FF464346AC^0'
+'-2CA7B0F0000002^-5'
+'5FAF89DC800004^-5'
+'303FBA9BFFFFFE^-4'
+'8DDE2415998DF8^1'
+'3DC5F784DCC366^0'
+'14A52F85FDE2AC^0'
+'-2CB3FDF0000002^-5'
+'5FB164D98^-5'
+'303FC6B437FFFE^-4'
+'8DDE23E8E59008^1'
+'3DC5FD7FF310FE^0'
+'14A55FC5C496E4^0'
+'-2CC027B7FFFFFE^-5'
+'5FB32E3F2^-5'
+'303FD3E5ECFFFE^-4'
+'8DDE23BC25685^1'
+'3DC6037B25F4F^0'
+'14A59005987CD1^0'
+'-2CCC633^-5'
+'5FB4F7A4DFFFFC^-5'
+'303FE1179F0004^-4'
+'8DDE238F59052^1'
+'3DC60976756F3E^0'
+'14A5C04579947^0'
+'-2CD8B01FFFFFFE^-5'
+'5FB6D2A1BFFFFC^-5'
+'303FEE4953^-4'
+'8DDE23628055^1'
+'3DC60F71E2995A^0'
+'14A5F08567DDC3^0'
+'-2CE4D9F8000002^-5'
+'5FB89C079FFFFC^-5'
+'303FFA618AFFFC^-4'
+'8DDE23359B7B08^1'
+'3DC6156D6C59D4^0'
+'14A620C5623F4E^0'
+'-2CF126F8000002^-5'
+'5FBA7704C^-5'
+'304007933EFFFC^-4'
+'8DDE2308AA541^1'
+'3DC61B6913CA2^0'
+'14A6510569D28D^0'
+'-2D08D83F282F1C^-5'
+'5FD4B74DEB3D14^-5'
+'304C721EFC29AC^-4'
+'8DDE22DBAD034^1'
+'3DC62164D6B74A^0'
+'14A681457E978^0'
+'-2D099DC8000002^-5'
+'5FBE1B678^-5'
+'304021F6A4FFFE^-4'
+'8DDE22AEA36578^1'
+'3DC62760B86DC2^0'
+'14A6B185A08E25^0'
+'-2D15D930000002^-5'
+'5FBFD3358^-5'
+'30402E0EDEFFFC^-4'
+'8DDE22818D8C48^1'
+'3DC62D5CB5A11A^0'
+'14A6E1C5CE9D04^0'
+'-2D2214A^-5'
+'5FC1AE329FFFFC^-5'
+'30403B40910002^-4'
+'8DDE22546B77A8^1'
+'3DC63358D08444^0'
+'14A7120609DD95^0'
+'-2D2E3E68000002^-5'
+'5FC3892FE^-5'
+'30404872460002^-4'
+'8DDE22273D394^1'
+'3DC63955091742^0'
+'14A74246524FDB^0'
+'-2D3A8B7^-5'
+'5FC540FDE00004^-5'
+'304055A3F8FFFE^-4'
+'8DDE21FA02ADD^1'
+'3DC63F515D272^0'
+'14A77286A7F3D4^0'
+'-2D46C6E0000006^-5'
+'5FC72D92BFFFFC^-5'
+'304061BC310002^-4'
+'8DDE21CCBBE6F^1'
+'3DC6454DD0004C^0'
+'14A7A2C709B005^0'
+'-2D530238^-5'
+'5FC8E560A00004^-5'
+'30406EEDE50002^-4'
+'8DDE219F68E4B8^1'
+'3DC64B4A5E5656^0'
+'14A7D307789DEA^0'
+'-2D5F3DA0000002^-5'
+'5FCAC05DBFFFFC^-5'
+'30407C1F990002^-4'
+'8DDE217209A718^1'
+'3DC651470A5C32^0'
+'14A80347F4BD83^0'
+'-2D6B791^-5'
+'5FCC89C36^-5'
+'30408837D^-4'
+'8DDE21449E2E08^1'
+'3DC65743D2F868^0'
+'14A833887CF553^0'
+'-2D77B480000002^-5'
+'5FCE64C0A^-5'
+'30409682FF^-4'
+'8DDE2117267988^1'
+'3DC65D40B94472^0'
+'14A863C9137852^0'
+'-2D83EFDFFFFFFE^-5'
+'5FD02E26400004^-5'
+'3040A29B38^-4'
+'8DDE20E9A289A8^1'
+'3DC6633DBC26D6^0'
+'14A89409B6138A^0'
+'-2D902B47FFFFFE^-5'
+'5FD209235FFFFC^-5'
+'3040AEB371^-4'
+'8DDE20BC125E6^1'
+'3DC6693ADCB90C^0'
+'14A8C44A64C6FB^0'
+'-2D9C7848^-5'
+'5FD3D289000004^-5'
+'3040BCFE9F0002^-4'
+'8DDE208E75E618^1'
+'3DC66F3819E19C^0'
+'14A8F48B21C59A^0'
+'-2DA8A220000002^-5'
+'5FD59BEE8^-5'
+'3040C916D7^-4'
+'8DDE2060CD43F8^1'
+'3DC6753573A084^0'
+'14A924CBEADC71^0'
+'-2DB4DD7FFFFFFE^-5'
+'5FD765542^-5'
+'3040D6488A0002^-4'
+'8DDE2033186678^1'
+'3DC67B32E9F5C6^0'
+'14A9550CC124FB^0'
+'-2DC118F^-5'
+'5FD940518^-5'
+'3040E37A3F0002^-4'
+'8DDE2005574D88^1'
+'3DC681307DFADE^0'
+'14A9854DA49F3A^0'
+'-2DCD65F0000002^-5'
+'5FDB1B4E6^-5'
+'3040EF9276FFFE^-4'
+'8DDE1FD789E798^1'
+'3DC6872E2FAFC4^0'
+'14A9B58E9431B1^0'
+'-2DD98FC0000002^-5'
+'5FDCD31C8^-5'
+'3040FDDDA4FFFE^-4'
+'8DDE1FA9B057D8^1'
+'3DC68D2BFCE18C^0'
+'14A9E5CF920F56^0'
+'-2DE5DCC0000002^-5'
+'5FDEBFB16^-5'
+'304108DC640002^-4'
+'8DDE1F7BCA7B18^1'
+'3DC69329E8DCA2^0'
+'14AA16109AEBBA^0'
+'-2DF2069^-5'
+'5FE0777F6^-5'
+'304117279^-4'
+'8DDE1F4DD87488^1'
+'3DC69927F05498^0'
+'14AA4651B2134A^0'
+'-2DFE5397FFFFFE^-5'
+'5FE2527C600004^-5'
+'3041245943FFFC^-4'
+'8DDE1F1FDA20F^1'
+'3DC69F26157C5E^0'
+'14AA7692D66C8E^0'
+'-2E0A8EEFFFFFFE^-5'
+'5FE41BE2400004^-5'
+'304130717EFFFE^-4'
+'8DDE1EF1CF92^1'
+'3DC6A524573A82^0'
+'14AAA6D406DE0D^0'
+'-2E16B8C8000002^-5'
+'5FE5F6DF4^-5'
+'30413DA32F^-4'
+'8DDE1EC3B8D938^1'
+'3DC6AB22B6A876^0'
+'14AAD71544813C^0'
+'-2E2305C8000002^-5'
+'5FE7C044BFFFFC^-5'
+'304149BB69FFFE^-4'
+'8DDE1E9595D37^1'
+'3DC6B12132ACC2^0'
+'14AB07568E3CA6^0'
+'-2E2F4137FFFFFE^-5'
+'5FE989AA8^-5'
+'30415806970002^-4'
+'8DDE1E67669238^1'
+'3DC6B71FCB476A^0'
+'14AB3797E6433D^0'
+'-2E3B7C98^-5'
+'5FEB64A7C^-5'
+'3041641ED1^-4'
+'8DDE1E392B15A^1'
+'3DC6BD1E8191E6^0'
+'14AB67D94A620E^0'
+'-2E47B808^-5'
+'5FED2E0D1FFFFC^-5'
+'3041715082FFFE^-4'
+'8DDE1E0AE35D98^1'
+'3DC6C31D5472B8^0'
+'14AB981ABBB291^0'
+'-2E53E1D7FFFFFA^-5'
+'5FEF090A8^-5'
+'30417D68BD0002^-4'
+'8DDE1DDC8F7BC^1'
+'3DC6C91C45036^0'
+'14ABC85C391B4E^0'
+'-2E602ED7FFFFFE^-5'
+'5FF0D27^-5'
+'30418BB3EA0002^-4'
+'8DDE1DAE2F4CE8^1'
+'3DC6CF1B522A6^0'
+'14ABF89DC4CF38^0'
+'-2E6C7BD0000002^-5'
+'5FF29BD5A00004^-5'
+'304197CC22FFFE^-4'
+'8DDE1D7FC2D118^1'
+'3DC6D51A7BE7BA^0'
+'14AC28DF5C9B5B^0'
+'-2E78A5A7FFFFFE^-5'
+'5FF476D2C^-5'
+'3041A3E45D0002^-4'
+'8DDE1D514A2B7^1'
+'3DC6DB19C354E6^0'
+'14AC5921007FB8^0'
+'-2E84E118000002^-5'
+'5FF64038600004^-5'
+'3041B22F89^-4'
+'8DDE1D22C54A58^1'
+'3DC6E11927586C^0'
+'14AC8962B2AF41^0'
+'-2E911C77FFFFFE^-5'
+'5FF81B35A^-5'
+'3041BE47C40002^-4'
+'8DDE1CF4342DE^1'
+'3DC6E718A90BC6^0'
+'14ACB9A470F705^0'
+'-2E9D57DFFFFFFE^-5'
+'5FF9D3039FFFFC^-5'
+'3041CB79760004^-4'
+'8DDE1CC596D6^1'
+'3DC6ED18463C^0'
+'14ACE9E63C707B^0'
+'-2EA99347FFFFFE^-5'
+'5FFBBF983FFFFC^-5'
+'3041D8AB29^-4'
+'8DDE1C96ED42B8^1'
+'3DC6F318023584^0'
+'14AD1A28151BA4^0'
+'-2EB5E050000002^-5'
+'5FFD77666^-5'
+'3041E5DCDD^-4'
+'8DDE1C68376268^1'
+'3DC6F917D9ABEA^0'
+'14AD4A69FAF881^0'
+'-2EC20A17FFFFFA^-5'
+'5FFF52639FFFFC^-5'
+'3041F1F515FFFC^-4'
+'8DDE1C3975585^1'
+'3DC6FF17CED224^0'
+'14AD7AABECED97^0'
+'-2ECE4588000002^-5'
+'60012D60A^-5'
+'3041FF26C90002^-4'
+'8DDE1C0AA712C8^1'
+'3DC70517E1A82E^0'
+'14ADAAEDEC146^0'
+'-2EDA9288000002^-5'
+'6002F6C65FFFFC^-5'
+'30420C587BFFFE^-4'
+'8DDE1BDBCC804^1'
+'3DC70B18111494^0'
+'14ADDB2FF86CDC^0'
+'-2EE6BC4FFFFFFE^-5'
+'6004C02BE^-5'
+'30421870B6^-4'
+'8DDE1BACE5C3F^1'
+'3DC711185D1752^0'
+'14AE0B7210DD92^0'
+'-2EF30958000002^-5'
+'600689918^-5'
+'304225A2690002^-4'
+'8DDE1B7DF2BA98^1'
+'3DC71718C5B06A^0'
+'14AE3BB4367FFB^0'
+'-2EFF44C0000002^-5'
+'6008648EE^-5'
+'304232D41C0002^-4'
+'8DDE1B4EF375D8^1'
+'3DC71D194BF958^0'
+'14AE6BF6695417^0'
+'-2F0B6E9^-5'
+'600A2DF41FFFFC^-5'
+'30424005CEFFFE^-4'
+'8DDE1B1FE80748^1'
+'3DC72319EED89A^0'
+'14AE9C38A959E6^0'
+'-2F17BB9^-5'
+'600C08F17FFFFC^-5'
+'30424C1E090002^-4'
+'8DDE1AF0D04BB8^1'
+'3DC7291AAF67B2^0'
+'14AECC7AF577EF^0'
+'-2F23F6FFFFFFFE^-5'
+'600DD2572^-5'
+'30425A6935^-4'
+'8DDE1AC1AC54B8^1'
+'3DC72F1B8C8D24^0'
+'14AEFCBD4FE124^0'
+'-2F303260000002^-5'
+'600FAD542^-5'
+'30426567F5FFFE^-4'
+'8DDE1A927C2258^1'
+'3DC7351C876266^0'
+'14AF2CFFB5491A^0'
+'-2F3C5C3^-5'
+'601176BA000004^-5'
+'304273B3220004^-4'
+'8DDE1A633FC628^1'
+'3DC73B1D9ECE06^0'
+'14AF5D4228FC3C^0'
+'-2F54C712EA569E^-5'
+'602BDEBA67861^-5'
+'304EDEC59B6434^-4'
+'8DDE1A33F71CF^1'
+'3DC7411ED2CFFC^0'
+'14AF8D84A9E112^0'
+'-2F54E498^-5'
+'60150985000004^-5'
+'30428CFD0DFFFC^-4'
+'8DDE1A04A23858^1'
+'3DC7472023684C^0'
+'14AFBDC736DE2^0'
+'-2F612007FFFFFE^-5'
+'6016E4822^-5'
+'30429A2EC3^-4'
+'8DDE19D541185^1'
+'3DC74D2191B06E^0'
+'14AFEE09D10CE3^0'
+'-2F6D5B6FFFFFFE^-5'
+'6018BF7F8^-5'
+'3042A646FA^-4'
+'8DDE19A5D3BCE^1'
+'3DC753231DA866^0'
+'14B01E4C7753DD^0'
+'-2F7996D7FFFFFE^-5'
+'601A774D5FFFFC^-5'
+'3042B492290002^-4'
+'8DDE19765A2608^1'
+'3DC75924C51D3C^0'
+'14B04E8F2BE606^0'
+'-2F85D248000002^-5'
+'601C63E24^-5'
+'3042C0AA63^-4'
+'8DDE1946D453C^1'
+'3DC75F268B5B6^0'
+'14B07ED1EC9069^0'
+'-2F921F38^-5'
+'601E1BB01FFFFC^-5'
+'3042CCC299FFFE^-4'
+'8DDE1917423488^1'
+'3DC765286D1662^0'
+'14B0AF14B95303^0'
+'-2F9E490FFFFFFE^-5'
+'601FF6AD6^-5'
+'3042DB0DC6FFFE^-4'
+'8DDE18E7A3EB78^1'
+'3DC76B2A6C8138^0'
+'14B0DF579460CA^0'
+'-2FAA8477FFFFFA^-5'
+'6021C012DFFFFC^-5'
+'3042E72602FFFE^-4'
+'8DDE18B7F967^1'
+'3DC7712C888266^0'
+'14B10F9A7B86CD^0'
+'-2FB6BFDFFFFFFA^-5'
+'60239B104^-5'
+'3042F457B4^-4'
+'8DDE188842A72^1'
+'3DC7772EC2336A^0'
+'14B13FDD6FDE81^0'
+'-2FC30CDFFFFFFE^-5'
+'60256475A00004^-5'
+'3043018968^-4'
+'8DDE18587F9A4^1'
+'3DC77D31187AC4^0'
+'14B170207167E9^0'
+'-2FCF36B8^-5'
+'60272DDB6^-5'
+'30430EBB1B^-4'
+'8DDE1828B06388^1'
+'3DC783338B587A^0'
+'14B1A063802304^0'
+'-2FDB83B8000002^-5'
+'602908D87FFFFC^-5'
+'30431AD354^-4'
+'8DDE17F8D4DFD^1'
+'3DC789361BE602^0'
+'14B1D0A69AF658^0'
+'-2FE7AD80000006^-5'
+'602AD23E1FFFFC^-5'
+'3043280508^-4'
+'8DDE17C8ED325^1'
+'3DC78F38C909E4^0'
+'14B200E9C2FB6^0'
+'-2FF3FA88000002^-5'
+'602CAD3B400004^-5'
+'30433536B9FFFE^-4'
+'8DDE1798F937C8^1'
+'3DC7953B93DD98^0'
+'14B2312CF8321A^0'
+'-30002458^-5'
+'602E76A1^-5'
+'3043414EF40004^-4'
+'8DDE1768F9137^1'
+'3DC79B3E7B47A8^0'
+'14B2617039810E^0'
+'-300C7158^-5'
+'603040066^-5'
+'30434E80A8^-4'
+'8DDE1738ECA218^1'
+'3DC7A1417F480E^0'
+'14B291B38801B6^0'
+'-3018ACC0000002^-5'
+'60321B039FFFFC^-5'
+'30435BB25AFFFE^-4'
+'8DDE1708D3F558^1'
+'3DC7A744A0F848^0'
+'14B2C1F6E3B411^0'
+'-3024D69^-5'
+828
+'6033E469600004^-5'
+'304368E40C^-4'
+'8DDE16D8AF1EC8^1'
+'3DC7AD47DF3EDE^0'
+'14B2F23A4C981D^0'
+'-3031239^-5'
+'6035ADCEE00004^-5'
+'30437615C2FFFE^-4'
+'8DDE16A87DFB38^1'
+'3DC7B34B3A1BCC^0'
+'14B3227DC2ADE^0'
+'-303D5EFFFFFFFE^-5'
+'603788CBE^-5'
+'3043822DF8^-4'
+'8DDE1678409C38^1'
+'3DC7B94EB2A88A^0'
+'14B352C144DBD8^0'
+'-30499A6^-5'
+'603963C96^-5'
+'30438F5FADFFFE^-4'
+'8DDE1647F701D8^1'
+'3DC7BF5248E52^0'
+'14B38304D43B86^0'
+'-3055D5C8^-5'
+'603B1B97200004^-5'
+'30439B77E80002^-4'
+'8DDE1617A12C1^1'
+'3DC7C555FA9E92^0'
+'14B3B3486FB36E^0'
+'-30621137FFFFFE^-5'
+'603CF694800004^-5'
+'3043A9C313^-4'
+'8DDE15E73F1AD8^1'
+'3DC7CB59CA07DA^0'
+'14B3E38C197681^0'
+'-306E4C9FFFFFFE^-5'
+'603ED1918^-5'
+'3043B5DB4CFFFC^-4'
+'8DDE15B6D0CE38^1'
+'3DC7D15DB720F2^0'
+'14B413CFCF51CE^0'
+'-307A88^-5'
+'6040895FA^-5'
+'3043C30D^-4'
+'8DDE1586564638^1'
+'3DC7D761BFB6EC^0'
+'14B44413925ECE^0'
+'-3086C378^-5'
+'6042645CE^-5'
+'3043CF253A^-4'
+'8DDE1555CF82C^1'
+'3DC7DD65E5FCBA^0'
+'14B47457618408^0'
+'-3092FED^-5'
+'60443F59E^-5'
+'3043DD7065FFFE^-4'
+'8DDE15253C83F^1'
+'3DC7E36A29F258^0'
+'14B4A49B3EF46E^0'
+'-309F4BD7FFFFFE^-5'
+'604608BF800004^-5'
+'3043E988A10004^-4'
+'8DDE14F49D3818^1'
+'3DC7E96E8A7E5^0'
+'14B4D4DF287D0F^0'
+'-30AB75A7FFFFFE^-5'
+'6047D2254^-5'
+'3043F6BA52FFFE^-4'
+'8DDE14C3F1C27^1'
+'3DC7EF7307A0A4^0'
+'14B505231F3762^0'
+'-30B7B110000002^-5'
+'6049AD226^-5'
+'304402D28D^-4'
+'8DDE14933A116^1'
+'3DC7F577A272CA^0'
+'14B535672209EF^0'
+'-30C3FE18000002^-5'
+'604B7687C00004^-5'
+'3044111DB9^-4'
+'8DDE1462761348^1'
+'3DC7FB7C59DB46^0'
+'14B565AB3327A8^0'
+'-30D027E0000006^-5'
+'604D3FED8^-5'
+'30441D35F30002^-4'
+'8DDE1431A5EB68^1'
+'3DC801812DDA1E^0'
+'14B595EF505D9B^0'
+'-30DC74DFFFFFFE^-5'
+'604F1AEAC^-5'
+'30442A67A5FFFE^-4'
+'8DDE1400C97688^1'
+'3DC807861F88CA^0'
+'14B5C6337AC541^0'
+'-30E89EB8^-5'
+'6050E4506^-5'
+'3044367FE00002^-4'
+'8DDE13CFE0D7D^1'
+'3DC80D8B2DCDD^0'
+'14B5F677B14521^0'
+'-30F4EBB8^-5'
+'6052BF4D8^-5'
+'304443B193^-4'
+'8DDE139EEBEC18^1'
+'3DC8139059C2A8^0'
+'14B626BBF4F6B4^0'
+'-31011577FFFFFE^-5'
+'605488B32^-5'
+'304450E346^-4'
+'8DDE136DEAD6A^1'
+'3DC81995A24DDA^0'
+'14B6570045D9FA^0'
+'-310D629^-5'
+'605652188^-5'
+'30445E14F90004^-4'
+'8DDE133CDD741^1'
+'3DC81F9B076F62^0'
+'14B68744A3EEF3^0'
+'-31199DF^-5'
+'60582D16^-5'
+'30446B46AC0002^-4'
+'8DDE130BC3D62^1'
+'3DC825A08A40C2^0'
+'14B6B7890F359F^0'
+'-3125C7C^-5'
+'6059F67B6^-5'
+'3044775EE6^-4'
+'8DDE12DA9E0E6^1'
+'3DC82BA629A878^0'
+'14B6E7CD869485^0'
+'-313214C^-5'
+'605BD178C^-5'
+'30448490980002^-4'
+'8DDE12A96BF9A^1'
+'3DC831ABE6C004^0'
+'14B718120B251D^0'
+'-313E502FFFFFFE^-5'
+'605D9ADE400004^-5'
+'304491C24D0002^-4'
+'8DDE12782DA97^1'
+'3DC837B1C06DE8^0'
+'14B748569CE76A^0'
+'-314A8B9^-5'
+'605F6443A^-5'
+'30449DDA84FFFE^-4'
+'8DDE1246E31DE^1'
+'3DC83DB7B6B222^0'
+'14B7789B3AC1EF^0'
+'-3156C6F8^-5'
+'60612DA98^-5'
+'3044AB0C38FFFE^-4'
+'8DDE12158C56E8^1'
+'3DC843BDC98CBA^0'
+'14B7A8DFE5CE28^0'
+'-3163026^-5'
+'606308A6A00004^-5'
+'3044B83DEB^-4'
+'8DDE11E4295488^1'
+'3DC849C3FA1724^0'
+'14B7D9249E0C13^0'
+'-316F3DCFFFFFFE^-5'
+'6064E3A3E00004^-5'
+'3044C56FA00002^-4'
+'8DDE11B2BA16B8^1'
+'3DC84FCA485162^0'
+'14B80969637BB3^0'
+'-317B793^-5'
+'6066AD094^-5'
+'3044D187D8FFFE^-4'
+'8DDE11813E9D88^1'
+'3DC855D0B321F6^0'
+'14B839AE35038C^0'
+'-319465EF1674A2^-5'
+'60812B104FC58C^-5'
+'30513E67804C2C^-4'
+'8DDE114FB6E8E8^1'
+'3DC85BD73A88E6^0'
+'14B869F314D691^0'
+'-3193F007FFFFFE^-5'
+'606A3FD4A^-5'
+'3044EAD1C50002^-4'
+'8DDE111E22F8E^1'
+'3DC861DDDE863^0'
+'14B89A37FFA856^0'
+'-31A03D07FFFFFE^-5'
+'606C1AD1A00004^-5'
+'3044F91CF2^-4'
+'8DDE10EC82BBD8^1'
+'3DC867E4A0334A^0'
+'14B8CA7CF8C548^0'
+'-31AC66D8000002^-5'
+'606DF5CF000004^-5'
+'3045064EA40002^-4'
+'8DDE10BAD655^1'
+'3DC86DEB7F903A^0'
+'14B8FAC1FF13EC^0'
+'-31B8A240000006^-5'
+'606FAD9D^-5'
+'30451266DE^-4'
+'8DDE10891DB2C^1'
+'3DC873F27A6A0A^0'
+'14B92B07117ACA^0'
+'-31C4EF3FFFFFFE^-5'
+'6071889A2^-5'
+'30451F9892^-4'
+'8DDE105758C38^1'
+'3DC879F992F3AC^0'
+'14B95B4C31135C^0'
+'-31D11910000002^-5'
+'607363974^-5'
+'30452BB0CBFFFC^-4'
+'8DDE102587AA7^1'
+'3DC88000C92D2^0'
+'14B98B915CC428^0'
+'-31DD660FFFFFFE^-5'
+'60752CFCE^-5'
+'304538E27CFFFE^-4'
+'8DDE0FF3AA446^1'
+'3DC886081BFCEE^0'
+'14B9BBD695A6A5^0'
+'-31E98FE8^-5'
+'6076F662A00004^-5'
+'3045472DAB^-4'
+'8DDE0FC1C0B478^1'
+'3DC88C0F8B6318^0'
+'14B9EC1BDCD45^0'
+'-31F5DCDFFFFFFA^-5'
+'6078D15FA^-5'
+'3045522C6D^-4'
+'8DDE0F8FCAD798^1'
+'3DC89217187912^0'
+'14BA1C612F00BD^0'
+'-320206B7FFFFFE^-5'
+'607A9AC54^-5'
+'3045607796^-4'
+'8DDE0F5DC8D0E^1'
+'3DC8981EC22566^0'
+'14BA4CA68F7853^0'
+'-320E53B8^-5'
+'607C642AE00004^-5'
+'30456C8FD20002^-4'
+'8DDE0F2BBA7D28^1'
+'3DC89E26886814^0'
+'14BA7CEBFC0825^0'
+'-321A8F18000002^-5'
+'607E3F28^-5'
+'304579C1840004^-4'
+'8DDE0EF99FEE1^1'
+'3DC8A42E6C5A94^0'
+'14BAAD3175C9A9^0'
+'-3226B8F^-5'
+'6080088DC^-5'
+'304586F337^-4'
+'8DDE0EC779352^1'
+'3DC8AA366CE37^0'
+'14BADD76FCBCE^0'
+'-323305F^-5'
+'6081D1F32^-5'
+'30459424EB^-4'
+'8DDE0E95462F3^1'
+'3DC8B03E8A02A2^0'
+'14BB0DBC90E1CB^0'
+'-323F4158^-5'
+'6083ACF0600004^-5'
+'3045A03D23FFFC^-4'
+'8DDE0E6306EDD8^1'
+'3DC8B646C4D1A8^0'
+'14BB3E02311EEF^0'
+'-324B7CC^-5'
+'608587EDA^-5'
+'3045AD6ED70002^-4'
+'8DDE0E30BB7118^1'
+'3DC8BC4F1D5082^0'
+'14BB6E47DE8DC6^0'
+'-3257B82FFFFFFE^-5'
+'60873FBBA^-5'
+'3045BAA08B^-4'
+'8DDE0DFE63B8E8^1'
+'3DC8C257914C3C^0'
+'14BB9E8D992E51^0'
+'-3263F39^-5'
+'60891AB8BFFFFC^-5'
+'3045C6B8C30002^-4'
+'8DDE0DCBFFC558^1'
+'3DC8C86022F7C8^0'
+'14BBCED35FE714^0'
+'-32702EF7FFFFFE^-5'
+'608AF5B6000004^-5'
+'3045D3EA77FFFC^-4'
+'8DDE0D998F966^1'
+'3DC8CE68D25328^0'
+'14BBFF1933D18C^0'
+'-327C6A68000006^-5'
+'608CBF1B9FFFFC^-5'
+'3045E11C28FFFE^-4'
+'8DDE0D67132BF8^1'
+'3DC8D4719E44E2^0'
+'14BC2F5F14EDB5^0'
+'-3288A5C8^-5'
+'608E88812^-5'
+'3045EE4DDDFFFE^-4'
+'8DDE0D348A863^1'
+'3DC8DA7A86CCF4^0'
+'14BC5FA5033B93^0'
+'-3294E138000002^-5'
+'609051E6E00004^-5'
+'3045FA66170002^-4'
+'8DDE0D01F5A4F8^1'
+'3DC8E0838BEB62^0'
+'14BC8FEAFDA1AA^0'
+'-32A12E37FFFFFA^-5'
+'60922CE3E^-5'
+'304608B144^-4'
+'8DDE0CCF5476C^1'
+'3DC8E68CAEB9A^0'
+'14BCC0310652EE^0'
+'-32AD5808000006^-5'
+'609407E1200004^-5'
+'304613B002FFFE^-4'
+'8DDE0C9CA71EB8^1'
+'3DC8EC95EF37B2^0'
+'14BCF0771A02F1^0'
+'-32B99370000002^-5'
+'6095BFAF2^-5'
+'304621FB300004^-4'
+'8DDE0C69ED8B48^1'
+'3DC8F29F4B32A4^0'
+'14BD20BD3BFE21^0'
+'-32C5E06FFFFFFE^-5'
+'6097AC43E00004^-5'
+'30462F2CE40004^-4'
+'8DDE0C3727AAD8^1'
+'3DC8F8A8C5F6E2^0'
+'14BD51036B2B05^0'
+'-32D20A40000002^-5'
+'60996411E^-5'
+'30463B451C^-4'
+'8DDE0C0455A098^1'
+'3DC8FEB25C38^0'
+'14BD8149A67021^0'
+'-32DE573FFFFFFA^-5'
+'609B3F0F400004^-5'
+'30464876D1^-4'
+'8DDE0BD1774958^1'
+'3DC904BC1028F4^0'
+'14BDB18FEEE6F2^0'
+'-32EA8110000002^-5'
+'609D0874A^-5'
+'3046548F09^-4'
+'8DDE0B9E8CC848^1'
+'3DC90AC5E0B03E^0'
+'14BDE1D64375FB^0'
+'-32F6CE18^-5'
+'609EE371E^-5'
+'304662DA35FFFE^-4'
+'8DDE0B6B95FA3^1'
+'3DC910CFCEE75C^0'
+'14BE121CA65031^0'
+'-3302F7E0000002^-5'
+'60A0ACD76^-5'
+'30466EF26FFFFE^-4'
+'8DDE0B3893025^1'
+'3DC916D9D9B4D2^0'
+'14BE42631542A1^0'
+'-330F44E8^-5'
+'60A2763D2^-5'
+'30467B0AA9^-4'
+'8DDE0B0583BD68^1'
+'3DC91CE40118A4^0'
+'14BE72A9904D4A^0'
+'-331B8048000006^-5'
+'60A4513A4^-5'
+'30468955D4FFFE^-4'
+'8DDE0AD2683D2^1'
+'3DC922EE462C48^0'
+'14BEA2F019A31F^0'
+'-3327BBB8^-5'
+'60A61A9FE^-5'
+'3046956E12^-4'
+'8DDE0A9F408168^1'
+'3DC928F8A7D646^0'
+'14BED336AF1131^0'
+'-3333E588^-5'
+'60A7F59D^-5'
+'3046A29FC1^-4'
+'8DDE0A6C0C9BE^1'
+'3DC92F03273016^0'
+'14BF037D51B0F2^0'
+'-33403288^-5'
+'60A9BF02A00004^-5'
+'3046AFD177^-4'
+'8DDE0A38CC6958^1'
+'3DC9350DC3204^0'
+'14BF33C4018269^0'
+'-334C6DF^-5'
+'60AB88684^-5'
+'3046BD0329^-4'
+'8DDE0A057FFB68^1'
+'3DC93B187BA6C4^0'
+'14BF640ABE8592^0'
+'-3358A957FFFFFE^-5'
+'60AD6365600004^-5'
+'3046C91B62^-4'
+'8DDE09D227521^1'
+'3DC9412351DD1A^0'
+'14BF945187A0F4^0'
+'-3364E4C^-5'
+'60AF2CCB^-5'
+'3046D64D15^-4'
+'8DDE099EC26D5^1'
+'3DC9472E44A9CA^0'
+'14BFC4985DEE09^0'
+'-33712028^-5'
+'60B0F6308^-5'
+'3046E37EC9^-4'
+'8DDE096B514D28^1'
+'3DC94D39540CD2^0'
+'14BFF4DF416CD2^0'
+'-337D5B98000002^-5'
+'60B2D12DBFFFFC^-5'
+'3046EF97020004^-4'
+'8DDE0937D3F19^1'
+'3DC95344811FAE^0'
+'14C025263103D4^0'
+'-338996F7FFFFFE^-5'
+'60B49A936^-5'
+'3046FDE2300002^-4'
+'8DDE09044A5A98^1'
+'3DC9594FCAC8E4^0'
+'14C0556D2EE604^0'
+'-3395E3FFFFFFFE^-5'
+'60B675907FFFFC^-5'
+'304709FA68FFFE^-4'
+'8DDE08D0B47698^1'
+'3DC95F5B3221EC^0'
+'14C085B438E06D^0'
+'-33A20DD0000002^-5'
+'60B83EF64^-5'
+'30471612A10002^-4'
+'8DDE089D1268C8^1'
+'3DC96566B6115^0'
+'14C0B5FB4EF30E^0'
+'-33AE493^-5'
+'60BA085BC00004^-5'
+'3047245DCF^-4'
+'8DDE0869641F98^1'
+'3DC96B7256970C^0'
+'14C0E6427350DD^0'
+'-33BA9637FFFFFA^-5'
+'60BBE358E^-5'
+'3047307607FFFE^-4'
+'8DDE0835A9896^1'
+'3DC9717E14CC9A^0'
+'14C11689A3C6E5^0'
+'-33C6C008000002^-5'
+'60BDACBE8^-5'
+'30473DA7BBFFFE^-4'
+'8DDE0801E2C958^1'
+'3DC97789EF9882^0'
+'14C146D0E16EA1^0'
+'-33E04324101664^-5'
+'60D8527C55B64C^-5'
+'3053A9F45AFEE^-4'
+'8DDE07CE0FCDE8^1'
+'3DC97D95E8143C^0'
+'14C177182C480F^0'
+'-33DF4870000002^-5'
+'60C13F89C^-5'
+'304756F1A90002^-4'
+'8DDE079A308578^1'
+'3DC983A1FC0CD8^0'
+'14C1A75F8339B8^0'
+'-33EB7240000002^-5'
+'60C32C1E7FFFFC^-5'
+'304764235AFFFC^-4'
+'8DDE0766451338^1'
+'3DC989AE2ECEC^0'
+'14C1D7A6E75D13^0'
+'-33F7BF40000002^-5'
+'60C4E3EC5FFFFC^-5'
+'304771550D^-4'
+'8DDE07324D53F8^1'
+'3DC98FBA7D0D86^0'
+'14C207EE58B22^0'
+'-3403FAA8000006^-5'
+'60C6BEE9BFFFFC^-5'
+'30477E86C30004^-4'
+'8DDE06FE49595^1'
+'3DC995C6E8FC22^0'
+'14C23835D738E3^0'
+'-3410247FFFFFFE^-5'
+'60C899E6C^-5'
+'30478A9EFAFFFC^-4'
+'8DDE06CA3934D^1'
+'3DC99BD3729A8E^0'
+'14C2687D61D7DE^0'
+'-341C7178000002^-5'
+'60CA634C800004^-5'
+'304797D0AF0002^-4'
+'8DDE06961CC358^1'
+'3DC9A1E018CF56^0'
+'14C298C4F9A88D^0'
+'-3428ACE8^-5'
+'60CC2CB22^-5'
+'3047A5025FFFFE^-4'
+'8DDE0661F4167^1'
+'3DC9A7ECDB9A78^0'
+'14C2C90C9EAAED^0'
+'-3434E848000002^-5'
+'60CDF6177FFFFC^-5'
+'3047B23415FFFE^-4'
+'8DDE062DBF2E28^1'
+'3DC9ADF9BAFBF^0'
+'14C2F95450DF03^0'
+'-344123C0000006^-5'
+'60CFD114BFFFFC^-5'
+'3047BE4C4E0002^-4'
+'8DDE05F97E0A68^1'
+'3DC9B406B80D3C^0'
+'14C3299C0F2B51^0'
+'-344D4D8^-5'
+'60D1AC121FFFFC^-5'
+'3047CB7E010002^-4'
+'8DDE05C530BCE8^1'
+'3DC9BA13D2CE5E^0'
+'14C359E3DAA952^0'
+'-34599A88^-5'
+'60D363DFE^-5'
+'3047D8AFB20004^-4'
+'8DDE0590D7226^1'
+'3DC9C021090C5C^0'
+'14C38A2BB35904^0'
+'-3465D5F^-5'
+'60D55074E00004^-5'
+'3047E4C7F^-4'
+'8DDE055C714C7^1'
+'3DC9C62E5E13AA^0'
+'14C3BA739820F4^0'
+'-34721160000002^-5'
+'60D70842C^-5'
+'3047F3131A^-4'
+'8DDE0527FF3B1^1'
+'3DC9CC3BCE97D6^0'
+'14C3EABB8B340E^0'
+'-347E5E58^-5'
+'60D8E34^-5'
+'3047FF2B52FFFC^-4'
+'8DDE04F380DCB8^1'
+'3DC9D2495CCBD6^0'
+'14C41B038A5F61^0'
+'-348A8827FFFFFE^-5'
+'60DAACA5A^-5'
+'30480B438EFFFE^-4'
+'8DDE04BEF6549^1'
+'3DC9D85707963^0'
+'14C44B4B95A2F^0'
+'-3496C398000002^-5'
+'60DC87A29FFFFC^-5'
+'3048198EBB0002^-4'
+'AE0C54F769ED4^7'
+'AE0C550769ED4^7'
+'AE0C551769ED4^7'
+'AE0C552769ED4^7'
+'AE0C553769ED4^7'
+'AE0C554769ED4^7'
+'AE0C555769ED4^7'
+'AE0C556769ED4^7'
+'AE0C557769ED4^7'
+'AE0C558769ED4^7'
+'AE0C559765D4B^7'
+'AE0C55A765D4B^7'
+'AE0C55B765D4B^7'
+'AE0C55C765D4B^7'
+'AE0C55D765D4B^7'
+'AE0C55E765D4B^7'
+'AE0C55F765D4B^7'
+'AE0C560765D4B^7'
+'AE0C561765D4B^7'
+'AE0C562765D4B^7'
+'AE0C563765D4B^7'
+'AE0C564765D4B^7'
+'AE0C565765D4B^7'
+'AE0C566765D4B^7'
+'AE0C567765D4B^7'
+'AE0C568765D4B^7'
+'AE0C569765D4B^7'
+'AE0C56A765D4B^7'
+'AE0C56B765D4B^7'
+'AE0C56C765D4B^7'
+'AE0C56D765D4B^7'
+'AE0C56E765D4B^7'
+'AE0C56F765D4B^7'
+'AE0C570765D4B^7'
+'AE0C571765D4B^7'
+'AE0C572765D4B^7'
+'AE0C573765D4B^7'
+'AE0C574765D4B^7'
+'AE0C575765D4B^7'
+'AE0C576765D4B^7'
+'AE0C577765D4B^7'
+'AE0C578765D4B^7'
+'AE0C579765D4B^7'
+'AE0C57A765D4B^7'
+'AE0C57B765D4B^7'
+'AE0C57C765D4B^7'
+'AE0C57D765D4B^7'
+'AE0C57E765D4B^7'
+'AE0C57F765D4B^7'
+'AE0C580765D4B^7'
+'AE0C581765D4B^7'
+'AE0C582765D4B^7'
+'AE0C583765D4B^7'
+'AE0C584765D4B^7'
+'AE0C585765D4B^7'
+'AE0C586765D4B^7'
+'AE0C587765D4B^7'
+'AE0C588765D4B^7'
+'AE0C589761BC2^7'
+'AE0C58A761BC2^7'
+'AE0C58B761BC2^7'
+'AE0C58C761BC2^7'
+'AE0C58D761BC2^7'
+'AE0C58E761BC2^7'
+'AE0C58F761BC2^7'
+'AE0C590761BC2^7'
+'AE0C591761BC2^7'
+'AE0C592761BC2^7'
+'AE0C593761BC2^7'
+'AE0C594761BC2^7'
+'AE0C595761BC2^7'
+'AE0C596761BC2^7'
+'AE0C597761BC2^7'
+'AE0C598761BC2^7'
+'AE0C599761BC2^7'
+'AE0C59A761BC2^7'
+'AE0C59B761BC2^7'
+'AE0C59C761BC2^7'
+'AE0C59D761BC2^7'
+'AE0C59E761BC2^7'
+'AE0C59F761BC2^7'
+'AE0C5A0761BC2^7'
+'AE0C5A1761BC2^7'
+'AE0C5A2761BC2^7'
+'AE0C5A3761BC2^7'
+'AE0C5A4761BC2^7'
+'AE0C5A5761BC2^7'
+'AE0C5A6761BC2^7'
+'AE0C5A7761BC2^7'
+'AE0C5A8761BC2^7'
+'AE0C5A9761BC2^7'
+'AE0C5AA761BC2^7'
+'AE0C5AB761BC2^7'
+'AE0C5AC761BC2^7'
+'AE0C5AD761BC2^7'
+'AE0C5AE761BC2^7'
+'AE0C5AF761BC2^7'
+'AE0C5B0761BC2^7'
+'AE0C5B1761BC2^7'
+'AE0C5B2761BC2^7'
+'AE0C5B3761BC2^7'
+'AE0C5B4761BC2^7'
+'AE0C5B5761BC2^7'
+'AE0C5B6761BC2^7'
+'AE0C5B7761BC2^7'
+'AE0C5B875DA388^7'
+'AE0C5B975DA388^7'
+'AE0C5BA75DA388^7'
+'AE0C5BB75DA388^7'
+'AE0C5BC75DA388^7'
+'AE0C5BD75DA388^7'
+'AE0C5BE75DA388^7'
+'AE0C5BF75DA388^7'
+'AE0C5C075DA388^7'
+'AE0C5C175DA388^7'
+'AE0C5C275DA388^7'
+'AE0C5C375DA388^7'
+'AE0C5C475DA388^7'
+'AE0C5C575DA388^7'
+'AE0C5C675DA388^7'
+'AE0C5C775DA388^7'
+'AE0C5C875DA388^7'
+'AE0C5C975DA388^7'
+'AE0C5CA75DA388^7'
+'AE0C5CB75DA388^7'
+'AE0C5CC75DA388^7'
+'AE0C5CD75DA388^7'
+'AE0C5CE75DA388^7'
+'AE0C5CF75DA388^7'
+'AE0C5D075DA388^7'
+'AE0C5D175DA388^7'
+'AE0C5D275DA388^7'
+'AE0C5D375DA388^7'
+'AE0C5D475DA388^7'
+'AE0C5D575DA388^7'
+'AE0C5D675DA388^7'
+'AE0C5D775DA388^7'
+'AE0C5D875DA388^7'
+'AE0C5D975DA388^7'
+'AE0C5DA75DA388^7'
+'AE0C5DB75DA388^7'
+'AE0C5DC75DA388^7'
+'AE0C5DD75DA388^7'
+'AE0C5DE75DA388^7'
+'AE0C5DF75DA388^7'
+'AE0C5E075DA388^7'
+'AE0C5E175DA388^7'
+'AE0C5E275DA388^7'
+'AE0C5E375DA388^7'
+'AE0C5E475DA388^7'
+'AE0C5E575DA388^7'
+'AE0C5E675DA388^7'
+'AE0C5E775DA388^7'
+'AE0C5E87598AF8^7'
+'AE0C5E97598AF8^7'
+'AE0C5EA7598AF8^7'
+'AE0C5EB7598AF8^7'
+'AE0C5EC7598AF8^7'
+'AE0C5ED7598AF8^7'
+'AE0C5EE7598AF8^7'
+'AE0C5EF7598AF8^7'
+'AE0C5F07598AF8^7'
+'AE0C5F17598AF8^7'
+'AE0C5F27598AF8^7'
+'AE0C5F37598AF8^7'
+'AE0C5F47598AF8^7'
+'AE0C5F57598AF8^7'
+'AE0C5F67598AF8^7'
+'AE0C5F77598AF8^7'
+'AE0C5F87598AF8^7'
+'AE0C5F97598AF8^7'
+'AE0C5FA7598AF8^7'
+'AE0C5FB7598AF8^7'
+'AE0C5FC7598AF8^7'
+'AE0C5FD7598AF8^7'
+'AE0C5FE7598AF8^7'
+'AE0C5FF7598AF8^7'
+'AE0C6007598AF8^7'
+'AE0C6017598AF8^7'
+'AE0C6027598AF8^7'
+'AE0C6037598AF8^7'
+'AE0C6047598AF8^7'
+'AE0C6057598AF8^7'
+'AE0C6067598AF8^7'
+'AE0C6077598AF8^7'
+'AE0C6087598AF8^7'
+'AE0C6097598AF8^7'
+'AE0C60A7598AF8^7'
+'AE0C60B7598AF8^7'
+'AE0C60C7598AF8^7'
+'AE0C60D7598AF8^7'
+'AE0C60E7598AF8^7'
+'AE0C60F7598AF8^7'
+'AE0C6107598AF8^7'
+'AE0C6117598AF8^7'
+'AE0C6127598AF8^7'
+'AE0C6137598AF8^7'
+'AE0C6147598AF8^7'
+'AE0C6157598AF8^7'
+'AE0C6167598AF8^7'
+'AE0C617755726^7'
+'AE0C618755726^7'
+'AE0C619755726^7'
+'AE0C61A755726^7'
+'AE0C61B755726^7'
+'AE0C61C755726^7'
+'AE0C61D755726^7'
+'AE0C61E755726^7'
+'AE0C61F755726^7'
+'AE0C620755726^7'
+'AE0C621755726^7'
+'AE0C622755726^7'
+'AE0C623755726^7'
+'AE0C624755726^7'
+'AE0C625755726^7'
+'AE0C626755726^7'
+'AE0C627755726^7'
+'AE0C628755726^7'
+'AE0C629755726^7'
+'AE0C62A755726^7'
+'AE0C62B755726^7'
+'AE0C62C755726^7'
+'AE0C62D755726^7'
+'AE0C62E755726^7'
+'AE0C62F755726^7'
+'AE0C630755726^7'
+'AE0C631755726^7'
+'AE0C632755726^7'
+'AE0C633755726^7'
+'AE0C634755726^7'
+'AE0C635755726^7'
+'AE0C636755726^7'
+'AE0C637755726^7'
+'AE0C638755726^7'
+'AE0C639755726^7'
+'AE0C63A755726^7'
+'AE0C63B755726^7'
+'AE0C63C755726^7'
+'AE0C63D755726^7'
+'AE0C63E755726^7'
+'AE0C63F755726^7'
+'AE0C640755726^7'
+'AE0C641755726^7'
+'AE0C642755726^7'
+'AE0C643755726^7'
+'AE0C644755726^7'
+'AE0C645755726^7'
+'AE0C646755726^7'
+'AE0C64775159D^7'
+'AE0C64875159D^7'
+'AE0C64975159D^7'
+'AE0C64A75159D^7'
+'AE0C64B75159D^7'
+'AE0C64C75159D^7'
+'AE0C64D75159D^7'
+'AE0C64E75159D^7'
+'AE0C64F75159D^7'
+'AE0C65075159D^7'
+'AE0C65175159D^7'
+'AE0C65275159D^7'
+'AE0C65375159D^7'
+'AE0C65475159D^7'
+'AE0C65575159D^7'
+'AE0C65675159D^7'
+'AE0C5B2761BC2^7'
+'AE0C6167598AF8^7'
+'1^1'
+'108^3'
+END_ARRAY 2 1852
+BEGIN_ARRAY 3 39
+'DE-0403LE-0403                          '
+'AE0C54FDDC9D6^7'
+'AE0C65630BB8^7'
+'A'
+'0'
+'1'
+'2'
+39
+'ADFB74^7'
+'A8C^5'
+'94A1D96FDC9538^5'
+'-9DFA14C450E87^3'
+'-10A6F90CC55C8E^2'
+'1A8DB36D7919A4^0'
+'-DBA82D668F68^-2'
+'1943E04814A3A9^-3'
+'2D2DBBB0F8889A^-4'
+'-13328359B6AFED^-5'
+'2D4395828FC13A^-6'
+'-166EB5C923E47F^-6'
+'-50E6C5C4989A2^-8'
+'3A64FEEA808364^5'
+'1C038412106FEF^4'
+'-9BB7059785BE3^1'
+'1869B5AA252882^0'
+'934A2C3016BD4^-2'
+'-56AB4C415E9828^-3'
+'595353E6116C3C^-4'
+'-6E4C3AE2B464E^-6'
+'6454B33CA4F478^-6'
+'-E159348A215B38^-7'
+'-8B8F3AF4B6392^-8'
+'14ABA56F833013^5'
+'C116B04BE71DE8^3'
+'-3E3EECFB165A0E^1'
+'8BF8BF3538E55^-1'
+'50D54F66499DF4^-2'
+'-2CBDB1CB1D95C2^-3'
+'2CD23EAB3A0576^-4'
+'-1CDE56A5F1B23D^-6'
+'30DE3A636A3FE2^-6'
+'-4C3AEEAC5F8958^-7'
+'-42223050A58024^-8'
+'AD52B4^7'
+'1518^6'
+'23^2'
+'1^1'
+END_ARRAY 3 39
+TOTAL_ARRAYS 3
+ ~NAIF/SPC BEGIN COMMENTS~
+; ../../../data/isistestdata/hayabusa/out/st_2458542208_v.ale_1.bsp LOG FILE
+
+; Created 2023-02-16/02:11:29.00.
+;
+; BEGIN SPKMERGE COMMANDS
+
+LEAPSECONDS_KERNEL = ../../../remotedata/isis_data/base/kernels/lsk/naif0012.tls
+
+SPK_KERNEL  = ../../../data/isistestdata/hayabusa/out/st_2458542208_v.ale_1.bsp
+SOURCE_SPK_KERNEL = ../../../remotedata/isis_data/hayabusa/kernels/tspk/sb_25143_140.bsp
+    INCLUDE_COMMENTS = NO
+    BODIES           = 2025143
+    BEGIN_TIME       = 2005 OCT 13 19:11:11.684
+    END_TIME         = 2005 OCT 13 19:15:34.008
+SOURCE_SPK_KERNEL = ../../../remotedata/isis_data/hayabusa/kernels/spk/hay_osbj_050911_051118_v1n.bsp
+    INCLUDE_COMMENTS = NO
+    BODIES           = -130
+    BEGIN_TIME       = 2005 OCT 13 19:11:11.684
+    END_TIME         = 2005 OCT 13 19:15:34.008
+SOURCE_SPK_KERNEL = ../../../remotedata/isis_data/hayabusa/kernels/tspk/de403s.bsp
+    INCLUDE_COMMENTS = NO
+    BODIES           = 10
+    BEGIN_TIME       = 2005 OCT 13 19:11:11.684
+    END_TIME         = 2005 OCT 13 19:15:34.008
+
+; END SPKMERGE COMMANDS
+ ~NAIF/SPC END COMMENTS~
diff --git a/tests/pytests/data/st_2458542208_v/st_2458542208_v_isis.lbl b/tests/pytests/data/st_2458542208_v/st_2458542208_v_isis.lbl
new file mode 100644
index 0000000000000000000000000000000000000000..017f3de4350bdff66f204225631c98b828c08ae0
--- /dev/null
+++ b/tests/pytests/data/st_2458542208_v/st_2458542208_v_isis.lbl
@@ -0,0 +1,385 @@
+Object = IsisCube
+  Object = Core
+    StartByte   = 65537
+    Format      = Tile
+    TileSamples = 512
+    TileLines   = 512
+
+    Group = Dimensions
+      Samples = 1024
+      Lines   = 1024
+      Bands   = 1
+    End_Group
+
+    Group = Pixels
+      Type       = Real
+      ByteOrder  = Lsb
+      Base       = 0.0
+      Multiplier = 1.0
+    End_Group
+  End_Object
+
+  Group = Instrument
+    SpacecraftName            = HAYABUSA
+    InstrumentId              = AMICA
+    SpacecraftClockStartCount = 2457499394 <1/32sec>
+    SpacecraftClockStopCount  = 2457499873 <1/32sec>
+    StartTime                 = 2005-10-13T19:13:11
+    StopTime                  = 2005-10-13T19:13:11
+    ExposureDuration          = .0218 <SECOND>
+    TargetName                = ITOKAWA
+    TargetType                = ASTEROID
+    OriginalTargetName        = "25143 ITOKAWA"
+    Binning                   = 1
+    FirstLine                 = 0
+    LastLine                  = 1023
+    FirstSample               = 0
+    LastSample                = 1023
+    CcdTemperature            = -26.86
+  End_Group
+
+  Group = Archive
+    FileName            = st_2458542208_v.fit
+    DataSetId           = HAY-A-AMICA-3-HAYAMICA-V1.0
+    ProductId           = 20051013_ST_2458542208_V_FIT
+    ProductName         = 20051013:ST_2458542208_V.FIT
+    ProductCreationTime = 2008-04-08
+    SubImageCount       = 2
+    Image1Number        = 34
+    DataType            = SCIENCE
+    OutputMode          = LOSSY
+    OperationType       = MEAN
+    LutNumber           = 0
+    QualityFlag         = 0
+    QualityDesc         = GOOD
+    YearDoy             = 2005286
+  End_Group
+
+  Group = BandBin
+    OriginalBand = 1
+    Name         = V
+    Number       = 3
+    Center       = 553 <nanometers>
+    Width        = 72 <nanometers>
+    Unit         = Nanometers
+  End_Group
+
+  Group = Kernels
+    NaifFrameCode             = -130102
+    LeapSecond                = $base/kernels/lsk/naif0012.tls
+    TargetAttitudeShape       = ($base/kernels/pck/pck00009.tpc,
+                                 $hayabusa/kernels/pck/itokawa_gaskell_n3.tpc)
+    TargetPosition            = (Table, $hayabusa/kernels/tspk/de403s.bsp,
+                                 $hayabusa/kernels/tspk/sb_25143_140.bsp)
+    InstrumentPointing        = (Table,
+                                 $hayabusa/kernels/ck/hayabusa_itokawarendezvo-
+                                 us_v02n.bc,
+                                 $hayabusa/kernels/fk/hayabusa_hp.tf,
+                                 $hayabusa/kernels/fk/itokawa_fixed.tf)
+    Instrument                = $hayabusa/kernels/ik/amica31.ti
+    SpacecraftClock           = $hayabusa/kernels/sclk/hayabusa.tsc
+    InstrumentPosition        = (Table,
+                                 $hayabusa/kernels/spk/hay_jaxa_050916_051119_-
+                                 v1n.bsp,
+                                 $hayabusa/kernels/spk/hay_osbj_050911_051118_-
+                                 v1n.bsp)
+    InstrumentAddendum        = $hayabusa/kernels/iak/amicaAddendum002.ti
+    ShapeModel                = Null
+    InstrumentPositionQuality = Reconstructed
+    InstrumentPointingQuality = Reconstructed
+    CameraVersion             = 1
+    Source                    = isis
+  End_Group
+End_Object
+
+Object = Label
+  Bytes = 65536
+End_Object
+
+Object = Table
+  Name                = InstrumentPointing
+  StartByte           = 4265673
+  Bytes               = 64
+  Records             = 1
+  ByteOrder           = Lsb
+  TimeDependentFrames = (-130000, 1)
+  ConstantFrames      = (-130102, -130101, -130000)
+  ConstantRotation    = (0.0066354810266741, 0.99997566485661,
+                         0.0021540859158883, 0.99997683210906,
+                         -0.0066321870038765, -0.0015327559101681,
+                         -0.0015184323097167, 0.0021642065830212,
+                         -0.99999650528049)
+  CkTableStartTime    = 182502855.87768
+  CkTableEndTime      = 182502855.87768
+  CkTableOriginalSize = 1
+  FrameTypeCode       = 3
+  Description         = "Created by spiceinit"
+  Kernels             = ($hayabusa/kernels/ck/hayabusa_itokawarendezvous_v02n-
+                         .bc, $hayabusa/kernels/fk/hayabusa_hp.tf,
+                         $hayabusa/kernels/fk/itokawa_fixed.tf)
+
+  Group = Field
+    Name = J2000Q0
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Q1
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Q2
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Q3
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = AV1
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = AV2
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = AV3
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = ET
+    Type = Double
+    Size = 1
+  End_Group
+End_Object
+
+Object = Table
+  Name                 = InstrumentPosition
+  StartByte            = 4265737
+  Bytes                = 56
+  Records              = 1
+  ByteOrder            = Lsb
+  CacheType            = Linear
+  SpkTableStartTime    = 182502855.87768
+  SpkTableEndTime      = 182502855.87768
+  SpkTableOriginalSize = 1.0
+  Description          = "Created by spiceinit"
+  Kernels              = ($hayabusa/kernels/spk/hay_jaxa_050916_051119_v1n.bs-
+                          p,
+                          $hayabusa/kernels/spk/hay_osbj_050911_051118_v1n.bsp)
+
+  Group = Field
+    Name = J2000X
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Y
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Z
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000XV
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000YV
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000ZV
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = ET
+    Type = Double
+    Size = 1
+  End_Group
+End_Object
+
+Object = Table
+  Name                = BodyRotation
+  StartByte           = 4265793
+  Bytes               = 64
+  Records             = 1
+  ByteOrder           = Lsb
+  TimeDependentFrames = (2025143, 1)
+  CkTableStartTime    = 182502855.87768
+  CkTableEndTime      = 182502855.87768
+  CkTableOriginalSize = 1
+  FrameTypeCode       = 2
+  PoleRa              = (90.02564, 0.0, 0.0)
+  PoleDec             = (-67.02704, 0.0, 0.0)
+  PrimeMeridian       = (129.73, 712.1437611, 0.0)
+  Description         = "Created by spiceinit"
+  Kernels             = ($hayabusa/kernels/tspk/de403s.bsp,
+                         $hayabusa/kernels/tspk/sb_25143_140.bsp,
+                         $base/kernels/pck/pck00009.tpc,
+                         $hayabusa/kernels/pck/itokawa_gaskell_n3.tpc)
+  SolarLongitude      = 126.31213271325
+
+  Group = Field
+    Name = J2000Q0
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Q1
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Q2
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Q3
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = AV1
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = AV2
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = AV3
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = ET
+    Type = Double
+    Size = 1
+  End_Group
+End_Object
+
+Object = Table
+  Name                 = SunPosition
+  StartByte            = 4265857
+  Bytes                = 56
+  Records              = 1
+  ByteOrder            = Lsb
+  CacheType            = Linear
+  SpkTableStartTime    = 182502855.87768
+  SpkTableEndTime      = 182502855.87768
+  SpkTableOriginalSize = 1.0
+  Description          = "Created by spiceinit"
+  Kernels              = ($hayabusa/kernels/tspk/de403s.bsp,
+                          $hayabusa/kernels/tspk/sb_25143_140.bsp)
+
+  Group = Field
+    Name = J2000X
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Y
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000Z
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000XV
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000YV
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = J2000ZV
+    Type = Double
+    Size = 1
+  End_Group
+
+  Group = Field
+    Name = ET
+    Type = Double
+    Size = 1
+  End_Group
+End_Object
+
+Object = History
+  Name      = IsisCube
+  StartByte = 4265913
+  Bytes     = 1357
+End_Object
+
+Object = OriginalLabel
+  Name      = IsisCube
+  StartByte = 4260310
+  Bytes     = 5363
+End_Object
+
+Object = NaifKeywords
+  BODY_CODE                         = 2025143
+  BODY2025143_RADII                 = (0.274, 0.156, 0.138)
+  BODY_FRAME_CODE                   = 2025143
+  INS-130102_SWAP_OBSERVER_TARGET   = TRUE
+  INS-130102_LIGHTTIME_CORRECTION   = NONE
+  INS-130102_LT_SURFACE_CORRECT     = FALSE
+  INS-130102_FOCAL_LENGTH           = 0.1208
+  INS-130102_PIXEL_PITCH            = 0.012
+  CLOCK_ET_-130_2457499394_COMPUTED = 90cabb8f8bc1a541
+  INS-130102_TRANSX                 = (0.0, 0.012, 0.0)
+  INS-130102_TRANSY                 = (0.0, 0.0, -0.012)
+  INS-130102_ITRANSS                = (0.0, 83.33333333, 0.0)
+  INS-130102_ITRANSL                = (0.0, 0.0, -83.33333333)
+  INS-130102_BORESIGHT_LINE         = 511.5
+  INS-130102_BORESIGHT_SAMPLE       = 511.5
+  INS-130102_OD_K                   = (0.0, 2.8e-05, 0.0)
+End_Object
+End
diff --git a/tests/pytests/test_hayabusa_drivers.py b/tests/pytests/test_hayabusa_drivers.py
new file mode 100644
index 0000000000000000000000000000000000000000..2da7df85fd3efa87785d4cb095bcd467b2249fb7
--- /dev/null
+++ b/tests/pytests/test_hayabusa_drivers.py
@@ -0,0 +1,44 @@
+import pytest
+import numpy as np
+import os
+import unittest
+from unittest.mock import MagicMock, PropertyMock, patch
+import spiceypy as spice
+import json
+
+from conftest import get_image, get_image_label, get_isd, get_image_kernels, convert_kernels, compare_dicts
+import ale
+from ale.drivers.hayabusa_drivers import HayabusaAmicaIsisLabelNaifSpiceDriver
+from ale import util
+
+
+@pytest.fixture(scope='module')
+def test_amica_kernels():
+    kernels = get_image_kernels('st_2458542208_v')
+    updated_kernels, binary_kernels = convert_kernels(kernels)
+    yield updated_kernels
+    for kern in binary_kernels:
+        os.remove(kern)
+
+def test_amica_load(test_amica_kernels):
+    label_file = get_image_label('st_2458542208_v', 'isis')
+    compare_dict = get_isd("hayabusaamica")
+
+    isd_str = ale.loads(label_file, props={'kernels': test_amica_kernels})
+    isd_obj = json.loads(isd_str)
+    assert compare_dicts(isd_obj, compare_dict) == []
+
+
+class test_nac_isis_naif(unittest.TestCase):
+    def setUp(self):
+        label = get_image_label("st_2458542208_v", "isis")
+        self.driver = HayabusaAmicaIsisLabelNaifSpiceDriver(label)
+
+    def test_instrument_id(self):
+        assert self.driver.instrument_id == "HAYABUSA_AMICA"
+    
+    def test_sensor_model_version(self):
+        assert self.driver.sensor_model_version == 1
+
+    def test_sensor_name(self):
+        assert self.driver.sensor_name == "HAYABUSA_AMICA"