From 7637e3a135bf36ef37ea61b9ac992dbfda6fd971 Mon Sep 17 00:00:00 2001 From: Karolina Mothander Date: Wed, 29 Sep 2021 16:27:10 +0200 Subject: [PATCH 01/36] A copy of BoxSlicer, changed the way the box is drawn --- .../qtgui/Plotting/Slicers/BoxSlicer_edit.py | 748 ++++++++++++++++++ 1 file changed, 748 insertions(+) create mode 100644 src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py new file mode 100644 index 0000000000..a09afaf5c3 --- /dev/null +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py @@ -0,0 +1,748 @@ +import numpy + +from sas.qtgui.Plotting.Slicers.BaseInteractor import BaseInteractor +from sas.qtgui.Plotting.PlotterData import Data1D +import sas.qtgui.Utilities.GuiUtils as GuiUtils +from sas.qtgui.Plotting.SlicerModel import SlicerModel + + +class BoxInteractor(BaseInteractor, SlicerModel): + """ + BoxInteractor define a rectangle that return data1D average of Data2D + in a rectangle area defined by -x, x ,y, -y + """ + def __init__(self, base, axes, item=None, color='black', zorder=3): + BaseInteractor.__init__(self, base, axes, color=color) + SlicerModel.__init__(self) + # Class initialization + self.markers = [] + self.axes = axes + self._item = item + #connecting artist + self.connect = self.base.connect + # which direction is the preferred interaction direction + self.direction = None + # determine x y values + self.xmin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + self.ymin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + self.xmax = 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + self.ymax = 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + + # when reach qmax reset the graph + self.qmax = max(self.data.xmax, self.data.xmin, + self.data.ymax, self.data.ymin) + + # center of the box + # puts the center of box at the middle of the q-range (??) + self.center_x = self.qmax/2 + self.center_y = self.qmax/2 + + # Number of points on the plot + self.nbins = 30 + # If True, I(|Q|) will be return, otherwise, + # negative q-values are allowed + # Should this be set to True?? + self.fold = True + # reference of the current Slab averaging + self.averager = None + # Create vertical and horizaontal lines for the rectangle + self.horizontal_lines = HorizontalDoubleLine(self, + self.axes, + color='blue', + zorder=zorder, + y=self.ymax, + x=self.xmax, + center_x=self.center_x, + center_y=self.center_y) + self.horizontal_lines.qmax = self.qmax + + self.vertical_lines = VerticalDoubleLine(self, + self.axes, + color='black', + zorder=zorder, + y=self.ymax, + x=self.xmax, + center_x=self.center_x, + center_y=self.center_y) + self.vertical_lines.qmax = self.qmax + + # PointINteractor determins the center of the box + self.center = PointInteractor(self, + self.axes, color='grey', + zorder=zorder, + center_x=self.center_x, + center_y=self.center_y) + + # draw the rectangle and plost the data 1D resulting + # of averaging data2D + self.update() + self._post_data() + self.setModelFromParams() + + def update_and_post(self): + """ + Update the slicer and plot the resulting data + """ + self.update() + self._post_data() + + def set_layer(self, n): + """ + Allow adding plot to the same panel + + :param n: the number of layer + + """ + self.layernum = n + self.update() + + def clear(self): + """ + Clear the slicer and all connected events related to this slicer + """ + self.averager = None + self.clear_markers() + self.horizontal_lines.clear() + self.vertical_lines.clear() + self.base.connect.clearall() + + def update(self): + """ + Respond to changes in the model by recalculating the profiles and + resetting the widgets. + """ + # #Update the slicer if an horizontal line is dragged + if self.horizontal_lines.has_move: + self.horizontal_lines.update() + self.vertical_lines.update(y=self.horizontal_lines.y) + # #Update the slicer if a vertical line is dragged + if self.vertical_lines.has_move: + self.vertical_lines.update() + self.horizontal_lines.update(x=self.vertical_lines.x) + + def save(self, ev): + """ + Remember the roughness for this layer and the next so that we + can restore on Esc. + """ + self.vertical_lines.save(ev) + self.horizontal_lines.save(ev) + + def _post_data(self): + pass + + def post_data(self, new_slab=None, nbins=None, direction=None): + """ + post data averaging in Qx or Qy given new_slab type + + :param new_slab: slicer that determine with direction to average + :param nbins: the number of points plotted when averaging + :param direction: the direction of averaging + + """ + if self.direction is None: + self.direction = direction + + x_min = -1 * numpy.fabs(self.vertical_lines.x) + x_max = numpy.fabs(self.vertical_lines.x) + y_min = -1 * numpy.fabs(self.horizontal_lines.y) + y_max = numpy.fabs(self.horizontal_lines.y) + + if nbins is not None: + self.nbins = nbins + if self.averager is None: + if new_slab is None: + msg = "post data:cannot average , averager is empty" + raise ValueError(msg) + self.averager = new_slab + if self.direction == "X": + if self.fold: + x_low = 0 + else: + x_low = numpy.fabs(x_min) + bin_width = (x_max + x_low) / self.nbins + elif self.direction == "Y": + if self.fold: + y_low = 0 + else: + y_low = numpy.fabs(y_min) + bin_width = (y_max + y_low) / self.nbins + else: + msg = "post data:no Box Average direction was supplied" + raise ValueError(msg) + # # Average data2D given Qx or Qy + box = self.averager(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max, + bin_width=bin_width) + box.fold = self.fold + boxavg = box(self.data) + # 3 Create Data1D to plot + if hasattr(boxavg, "dxl"): + dxl = boxavg.dxl + else: + dxl = None + if hasattr(boxavg, "dxw"): + dxw = boxavg.dxw + else: + dxw = None + new_plot = Data1D(x=boxavg.x, y=boxavg.y, dy=boxavg.dy) + new_plot.dxl = dxl + new_plot.dxw = dxw + new_plot.name = str(self.averager.__name__) + \ + "(" + self.data.name + ")" + new_plot.title = str(self.averager.__name__) + \ + "(" + self.data.name + ")" + new_plot.source = self.data.source + new_plot.interactive = True + new_plot.detector = self.data.detector + # # If the data file does not tell us what the axes are, just assume... + new_plot.xaxis("\\rm{Q}", "A^{-1}") + new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") + + data = self.data + if hasattr(data, "scale") and data.scale == 'linear' and \ + self.data.name.count("Residuals") > 0: + new_plot.ytransform = 'y' + new_plot.yaxis("\\rm{Residuals} ", "/") + + #new_plot. = "2daverage" + self.data.name + new_plot.id = (self.averager.__name__) + self.data.name + new_plot.group_id = new_plot.id + new_plot.is_data = True + item = self._item + if self._item.parent() is not None: + item = self._item.parent() + GuiUtils.updateModelItemWithPlot(item, new_plot, new_plot.id) + self.base.manager.communicator.forcePlotDisplaySignal.emit([item, new_plot]) + + if self.update_model: + self.setModelFromParams() + self.draw() + + def moveend(self, ev): + """ + Called after a dragging event. + Post the slicer new parameters and creates a new Data1D + corresponding to the new average + """ + self._post_data() + + def restore(self): + """ + Restore the roughness for this layer. + """ + self.horizontal_lines.restore() + self.vertical_lines.restore() + + def move(self, x, y, ev): + """ + Process move to a new position, making sure that the move is allowed. + """ + pass + + def set_cursor(self, x, y): + pass + + def getParams(self): + """ + Store a copy of values of parameters of the slicer into a dictionary. + + :return params: the dictionary created + + """ + params = {} + params["x_max"] = numpy.fabs(self.vertical_lines.x) + params["y_max"] = numpy.fabs(self.horizontal_lines.y) + params["nbins"] = self.nbins + return params + + def setParams(self, params): + """ + Receive a dictionary and reset the slicer with values contained + in the values of the dictionary. + + :param params: a dictionary containing name of slicer parameters and + values the user assigned to the slicer. + """ + self.x = float(numpy.fabs(params["x_max"])) + self.y = float(numpy.fabs(params["y_max"])) + self.nbins = params["nbins"] + + self.horizontal_lines.update(x=self.x, y=self.y) + self.vertical_lines.update(x=self.x, y=self.y) + self.post_data(nbins=None) + + def draw(self): + """ + """ + self.base.draw() + + + +class PointInteractor(BaseInteractor): + """ + Draw a point that can be dragged with the marker. + this class controls the motion the center of the BoxSum + """ + def __init__(self, base, axes, color='black', zorder=5, center_x=0.0, + center_y=0.0): + BaseInteractor.__init__(self, base, axes, color=color) + # Initialization the class + self.markers = [] + self.axes = axes + # center coordinates + self.x = center_x + self.y = center_y + # saved value of the center coordinates + self.save_x = center_x + self.save_y = center_y + # Create a marker + self.center_marker = self.axes.plot([self.x], [self.y], linestyle='', + marker='s', markersize=10, + color=self.color, alpha=0.6, + pickradius=5, label="pick", + zorder=zorder, + visible=True)[0] + # Draw a point + self.center = self.axes.plot([self.x], [self.y], + linestyle='-', marker='', + color=self.color, + visible=True)[0] + # Flag to determine the motion this point + self.has_move = False + # connecting the marker to allow them to move + self.connect_markers([self.center_marker]) + # Update the figure + self.update() + + def setLayer(self, n): + """ + Allow adding plot to the same panel + @param n: the number of layer + """ + self.layernum = n + self.update() + + def clear(self): + """ + Clear this figure and its markers + """ + self.clear_markers() + self.center.remove() + self.center_marker.remove() + + def update(self, center_x=None, center_y=None): + """ + Draw the new roughness on the graph. + """ + if center_x is not None: + self.x = center_x + if center_y is not None: + self.y = center_y + self.center_marker.set(xdata=[self.x], ydata=[self.y]) + self.center.set(xdata=[self.x], ydata=[self.y]) + + def save(self, ev): + """ + Remember the roughness for this layer and the next so that we + can restore on Esc. + """ + self.save_x = self.x + self.save_y = self.y + + def moveend(self, ev): + """ + """ + self.has_move = False + self.base.moveend(ev) + + def restore(self): + """ + Restore the roughness for this layer. + """ + self.y = self.save_y + self.x = self.save_x + + def move(self, x, y, ev): + """ + Process move to a new position, making sure that the move is allowed. + """ + self.x = x + self.y = y + self.has_move = True + self.base.base.update() + + def setCursor(self, x, y): + """ + """ + self.move(x, y, None) + self.update() + +class VerticalDoubleLine(BaseInteractor): + """ + Draw 2 vertical lines moving in opposite direction and centered on + a point (PointInteractor) + """ + def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, + center_x=0.0, center_y=0.0): + BaseInteractor.__init__(self, base, axes, color=color) + # Initialization the class + self.markers = [] + self.axes = axes + # Center coordinates + self.center_x = center_x + self.center_y = center_y + # defined end points vertical lignes and their saved values + self.y1 = y + self.center_y + self.save_y1 = self.y1 + + delta = self.y1 - self.center_y + self.y2 = self.center_y - delta + self.save_y2 = self.y2 + + self.x1 = x + self.center_x + self.save_x1 = self.x1 + + delta = self.x1 - self.center_x + self.x2 = self.center_x - delta + self.save_x2 = self.x2 + # # save the color of the line + self.color = color + # the height of the rectangle + self.half_height = numpy.fabs(y) + self.save_half_height = numpy.fabs(y) + # the with of the rectangle + self.half_width = numpy.fabs(self.x1 - self.x2) / 2 + self.save_half_width = numpy.fabs(self.x1 - self.x2) / 2 + # Create marker + self.right_marker = self.axes.plot([self.x1], [0], linestyle='', + marker='s', markersize=10, + color=self.color, alpha=0.6, + pickradius=5, label="pick", + zorder=zorder, visible=True)[0] + + # Define the left and right lines of the rectangle + self.right_line = self.axes.plot([self.x1, self.x1], [self.y1, self.y2], + linestyle='-', marker='', + color=self.color, visible=True)[0] + self.left_line = self.axes.plot([self.x2, self.x2], [self.y1, self.y2], + linestyle='-', marker='', + color=self.color, visible=True)[0] + # Flag to determine if the lines have moved + self.has_move = False + # Connection the marker and draw the pictures + self.connect_markers([self.right_marker]) + self.update() + + def setLayer(self, n): + """ + Allow adding plot to the same panel + :param n: the number of layer + """ + self.layernum = n + self.update() + + def clear(self): + """ + Clear this slicer and its markers + """ + self.clear_markers() + self.right_marker.remove() + self.right_line.remove() + self.left_line.remove() + + def update(self, x1=None, x2=None, y1=None, y2=None, width=None, + height=None, center=None): + """ + Draw the new roughness on the graph. + :param x1: new maximum value of x coordinates + :param x2: new minimum value of x coordinates + :param y1: new maximum value of y coordinates + :param y2: new minimum value of y coordinates + :param width: is the width of the new rectangle + :param height: is the height of the new rectangle + :param center: provided x, y coordinates of the center point + """ + # Save the new height, witdh of the rectangle if given as a param + if width is not None: + self.half_width = width + if height is not None: + self.half_height = height + # If new center coordinates are given draw the rectangle + # given these value + if center is not None: + self.center_x = center.x + self.center_y = center.y + self.x1 = self.half_width + self.center_x + self.x2 = -self.half_width + self.center_x + self.y1 = self.half_height + self.center_y + self.y2 = -self.half_height + self.center_y + + self.right_marker.set(xdata=[self.x1], ydata=[self.center_y]) + self.right_line.set(xdata=[self.x1, self.x1], + ydata=[self.y1, self.y2]) + self.left_line.set(xdata=[self.x2, self.x2], + ydata=[self.y1, self.y2]) + return + # if x1, y1, y2, y3 are given draw the rectangle with this value + if x1 is not None: + self.x1 = x1 + if x2 is not None: + self.x2 = x2 + if y1 is not None: + self.y1 = y1 + if y2 is not None: + self.y2 = y2 + # Draw 2 vertical lines and a marker + self.right_marker.set(xdata=[self.x1], ydata=[self.center_y]) + self.right_line.set(xdata=[self.x1, self.x1], ydata=[self.y1, self.y2]) + self.left_line.set(xdata=[self.x2, self.x2], ydata=[self.y1, self.y2]) + + def save(self, ev): + """ + Remember the roughness for this layer and the next so that we + can restore on Esc. + """ + self.save_x2 = self.x2 + self.save_y2 = self.y2 + self.save_x1 = self.x1 + self.save_y1 = self.y1 + self.save_half_height = self.half_height + self.save_half_width = self.half_width + + def moveend(self, ev): + """ + After a dragging motion reset the flag self.has_move to False + """ + self.has_move = False + self.base.moveend(ev) + + def restore(self): + """ + Restore the roughness for this layer. + """ + self.y2 = self.save_y2 + self.x2 = self.save_x2 + self.y1 = self.save_y1 + self.x1 = self.save_x1 + self.half_height = self.save_half_height + self.half_width = self.save_half_width + + def move(self, x, y, ev): + """ + Process move to a new position, making sure that the move is allowed. + """ + self.x1 = x + delta = self.x1 - self.center_x + self.x2 = self.center_x - delta + self.half_width = numpy.fabs(self.x1 - self.x2) / 2 + self.has_move = True + self.base.base.update() + + def setCursor(self, x, y): + """ + Update the figure given x and y + """ + self.move(x, y, None) + self.update() + +class HorizontalDoubleLine(BaseInteractor): + """ + Select an annulus through a 2D plot + """ + def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, + center_x=0.0, center_y=0.0): + + BaseInteractor.__init__(self, base, axes, color=color) + # Initialization the class + self.markers = [] + self.axes = axes + # Center coordinates + self.center_x = center_x + self.center_y = center_y + self.y1 = y + self.center_y + self.save_y1 = self.y1 + delta = self.y1 - self.center_y + self.y2 = self.center_y - delta + self.save_y2 = self.y2 + self.x1 = x + self.center_x + self.save_x1 = self.x1 + delta = self.x1 - self.center_x + self.x2 = self.center_x - delta + self.save_x2 = self.x2 + self.color = color + self.half_height = numpy.fabs(y) + self.save_half_height = numpy.fabs(y) + self.half_width = numpy.fabs(x) + self.save_half_width = numpy.fabs(x) + self.top_marker = self.axes.plot([0], [self.y1], linestyle='', + marker='s', markersize=10, + color=self.color, alpha=0.6, + pickradius=5, label="pick", + zorder=zorder, visible=True)[0] + + # Define 2 horizotnal lines + self.top_line = self.axes.plot([self.x1, -self.x1], [self.y1, self.y1], + linestyle='-', marker='', + color=self.color, visible=True)[0] + self.bottom_line = self.axes.plot([self.x1, -self.x1], + [self.y2, self.y2], + linestyle='-', marker='', + color=self.color, visible=True)[0] + # Flag to determine if the lines have moved + self.has_move = False + # connection the marker and draw the pictures + self.connect_markers([self.top_marker]) + self.update() + + def setLayer(self, n): + """ + Allow adding plot to the same panel + @param n: the number of layer + """ + self.layernum = n + self.update() + + def clear(self): + """ + Clear this figure and its markers + """ + self.clear_markers() + self.top_marker.remove() + self.bottom_line.remove() + self.top_line.remove() + + def update(self, x1=None, x2=None, y1=None, y2=None, + width=None, height=None, center=None): + """ + Draw the new roughness on the graph. + :param x1: new maximum value of x coordinates + :param x2: new minimum value of x coordinates + :param y1: new maximum value of y coordinates + :param y2: new minimum value of y coordinates + :param width: is the width of the new rectangle + :param height: is the height of the new rectangle + :param center: provided x, y coordinates of the center point + """ + # Save the new height, witdh of the rectangle if given as a param + if width is not None: + self.half_width = width + if height is not None: + self.half_height = height + # If new center coordinates are given draw the rectangle + # given these value + if center is not None: + self.center_x = center.x + self.center_y = center.y + self.x1 = self.half_width + self.center_x + self.x2 = -self.half_width + self.center_x + + self.y1 = self.half_height + self.center_y + self.y2 = -self.half_height + self.center_y + + self.top_marker.set(xdata=[self.center_x], ydata=[self.y1]) + self.top_line.set(xdata=[self.x1, self.x2], + ydata=[self.y1, self.y1]) + self.bottom_line.set(xdata=[self.x1, self.x2], + ydata=[self.y2, self.y2]) + return + # if x1, y1, y2, y3 are given draw the rectangle with this value + if x1 is not None: + self.x1 = x1 + if x2 is not None: + self.x2 = x2 + if y1 is not None: + self.y1 = y1 + if y2 is not None: + self.y2 = y2 + # Draw 2 vertical lines and a marker + self.top_marker.set(xdata=[self.center_x], ydata=[self.y1]) + self.top_line.set(xdata=[self.x1, self.x2], ydata=[self.y1, self.y1]) + self.bottom_line.set(xdata=[self.x1, self.x2], ydata=[self.y2, self.y2]) + + def save(self, ev): + """ + Remember the roughness for this layer and the next so that we + can restore on Esc. + """ + self.save_x2 = self.x2 + self.save_y2 = self.y2 + self.save_x1 = self.x1 + self.save_y1 = self.y1 + self.save_half_height = self.half_height + self.save_half_width = self.half_width + + def moveend(self, ev): + """ + After a dragging motion reset the flag self.has_move to False + """ + self.has_move = False + self.base.moveend(ev) + + def restore(self): + """ + Restore the roughness for this layer. + """ + self.y2 = self.save_y2 + self.x2 = self.save_x2 + self.y1 = self.save_y1 + self.x1 = self.save_x1 + self.half_height = self.save_half_height + self.half_width = self.save_half_width + + def move(self, x, y, ev): + """ + Process move to a new position, making sure that the move is allowed. + """ + self.y1 = y + delta = self.y1 - self.center_y + self.y2 = self.center_y - delta + self.half_height = numpy.fabs(self.y1) - self.center_y + self.has_move = True + self.base.base.update() + + def setCursor(self, x, y): + """ + Update the figure given x and y + """ + self.move(x, y, None) + self.update() + + + +class BoxInteractorX(BoxInteractor): + """ + Average in Qx direction + """ + def __init__(self, base, axes, item=None, color='black', zorder=3): + BoxInteractor.__init__(self, base, axes, item=item, color=color) + self.base = base + self._post_data() + + def _post_data(self): + """ + Post data creating by averaging in Qx direction + """ + from sas.sascalc.dataloader.manipulations import SlabX + self.post_data(SlabX, direction="X") + + +class BoxInteractorY(BoxInteractor): + """ + Average in Qy direction + """ + def __init__(self, base, axes, item=None, color='black', zorder=3): + BoxInteractor.__init__(self, base, axes, item=item, color=color) + self.base = base + self._post_data() + + def _post_data(self): + """ + Post data creating by averaging in Qy direction + """ + from sas.sascalc.dataloader.manipulations import SlabY + self.post_data(SlabY, direction="Y") + From 088c983059162819898c355c233a8bdd8eda1610 Mon Sep 17 00:00:00 2001 From: Karolina Mothander Date: Thu, 30 Sep 2021 11:19:28 +0200 Subject: [PATCH 02/36] Added the changes from BoxSlicer_edit.py to BoxSlicer.py --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 496 +++++++++++++++----- 1 file changed, 367 insertions(+), 129 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 2c9047a687..c6cdff2058 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -32,36 +32,60 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): # which direction is the preferred interaction direction self.direction = None # determine x y values - self.x = 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - self.y = 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) + self.xmin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + self.ymin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + self.xmax = 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + self.ymax = 0.5 * min(numpy.fabs(self.data.xmax), + numpy.fabs(self.data.xmin)) + # when reach qmax reset the graph self.qmax = max(self.data.xmax, self.data.xmin, self.data.ymax, self.data.ymin) + + # center of the box + # puts the center of box at the middle of the q-range (??) + self.center_x = self.qmax/2 + self.center_y = self.qmax/2 + # Number of points on the plot self.nbins = 100 # If True, I(|Q|) will be return, otherwise, # negative q-values are allowed + # Should this be set to True?? self.fold = True # reference of the current Slab averaging self.averager = None # Create vertical and horizaontal lines for the rectangle - self.vertical_lines = VerticalLines(self, - self.axes, - color='blue', - zorder=zorder, - y=self.y, - x=self.x) + self.horizontal_lines = HorizontalDoubleLine(self, + self.axes, + color='blue', + zorder=zorder, + y=self.ymax, + x=self.xmax, + center_x=self.center_x, + center_y=self.center_y) + self.horizontal_lines.qmax = self.qmax + + self.vertical_lines = VerticalDoubleLine(self, + self.axes, + color='black', + zorder=zorder, + y=self.ymax, + x=self.xmax, + center_x=self.center_x, + center_y=self.center_y) self.vertical_lines.qmax = self.qmax - self.horizontal_lines = HorizontalLines(self, - self.axes, - color='green', - zorder=zorder, - x=self.x, - y=self.y) - self.horizontal_lines.qmax = self.qmax + # PointINteractor determins the center of the box + self.center = PointInteractor(self, + self.axes, color='grey', + zorder=zorder, + center_x=self.center_x, + center_y=self.center_y) + # draw the rectangle and plost the data 1D resulting # of averaging data2D self.update() @@ -176,13 +200,13 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): new_plot.dxl = dxl new_plot.dxw = dxw new_plot.name = str(self.averager.__name__) + \ - "(" + self.data.name + ")" + "(" + self.data.name + ")" new_plot.title = str(self.averager.__name__) + \ - "(" + self.data.name + ")" + "(" + self.data.name + ")" new_plot.source = self.data.source new_plot.interactive = True new_plot.detector = self.data.detector - # If the data file does not tell us what the axes are, just assume... + # # If the data file does not tell us what the axes are, just assume... new_plot.xaxis("\\rm{Q}", "A^{-1}") new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") @@ -192,6 +216,7 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): new_plot.ytransform = 'y' new_plot.yaxis("\\rm{Residuals} ", "/") + #new_plot. = "2daverage" + self.data.name new_plot.id = (self.averager.__name__) + self.data.name new_plot.group_id = new_plot.id new_plot.is_data = True @@ -268,83 +293,69 @@ def draw(self): self.base.draw() -class HorizontalLines(BaseInteractor): + +class PointInteractor(BaseInteractor): """ - Draw 2 Horizontal lines centered on (0,0) that can move - on the x direction. The two lines move symmetrically (in opposite - directions). It also defines the x and -x position of a box. + Draw a point that can be dragged with the marker. + this class controls the motion the center of the BoxSum """ - - def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5): - """ - """ + def __init__(self, base, axes, color='black', zorder=5, center_x=0.0, + center_y=0.0): BaseInteractor.__init__(self, base, axes, color=color) - # Class initialization + # Initialization the class self.markers = [] self.axes = axes - # Saving the end points of two lines - self.x = x - self.save_x = x - - self.y = y - self.save_y = y - # Creating a marker - # Inner circle marker - self.inner_marker = self.axes.plot([0], [self.y], linestyle='', - marker='s', markersize=10, - color=self.color, alpha=0.6, - pickradius=5, label="pick", - zorder=zorder, - visible=True)[0] - # Define 2 horizontal lines - self.top_line = self.axes.plot([self.x, -self.x], [self.y, self.y], - linestyle='-', marker='', - color=self.color, visible=True)[0] - self.bottom_line = self.axes.plot([self.x, -self.x], [-self.y, -self.y], - linestyle='-', marker='', - color=self.color, visible=True)[0] - # Flag to check the motion of the lines + # center coordinates + self.x = center_x + self.y = center_y + # saved value of the center coordinates + self.save_x = center_x + self.save_y = center_y + # Create a marker + self.center_marker = self.axes.plot([self.x], [self.y], linestyle='', + marker='s', markersize=10, + color=self.color, alpha=0.6, + pickradius=5, label="pick", + zorder=zorder, + visible=True)[0] + # Draw a point + self.center = self.axes.plot([self.x], [self.y], + linestyle='-', marker='', + color=self.color, + visible=True)[0] + # Flag to determine the motion this point self.has_move = False - # Connecting markers to mouse events and draw - self.connect_markers([self.top_line, self.inner_marker]) + # connecting the marker to allow them to move + self.connect_markers([self.center_marker]) + # Update the figure self.update() - def set_layer(self, n): + def setLayer(self, n): """ Allow adding plot to the same panel - - :param n: the number of layer - + @param n: the number of layer """ self.layernum = n self.update() def clear(self): """ - Clear this slicer and its markers + Clear this figure and its markers """ self.clear_markers() - self.inner_marker.remove() - self.top_line.remove() - self.bottom_line.remove() + self.center.remove() + self.center_marker.remove() - def update(self, x=None, y=None): + def update(self, center_x=None, center_y=None): """ Draw the new roughness on the graph. - - :param x: x-coordinates to reset current class x - :param y: y-coordinates to reset current class y - """ - # Reset x, y- coordinates if send as parameters - if x is not None: - self.x = numpy.sign(self.x) * numpy.fabs(x) - if y is not None: - self.y = numpy.sign(self.y) * numpy.fabs(y) - # Draw lines and markers - self.inner_marker.set(xdata=[0], ydata=[self.y]) - self.top_line.set(xdata=[self.x, -self.x], ydata=[self.y, self.y]) - self.bottom_line.set(xdata=[self.x, -self.x], ydata=[-self.y, -self.y]) + if center_x is not None: + self.x = center_x + if center_y is not None: + self.y = center_y + self.center_marker.set(xdata=[self.x], ydata=[self.y]) + self.center.set(xdata=[self.x], ydata=[self.y]) def save(self, ev): """ @@ -356,8 +367,6 @@ def save(self, ev): def moveend(self, ev): """ - Called after a dragging this edge and set self.has_move to False - to specify the end of dragging motion """ self.has_move = False self.base.moveend(ev) @@ -366,66 +375,85 @@ def restore(self, ev): """ Restore the roughness for this layer. """ - self.x = self.save_x self.y = self.save_y + self.x = self.save_x def move(self, x, y, ev): """ Process move to a new position, making sure that the move is allowed. """ + self.x = x self.y = y self.has_move = True self.base.update() self.base.draw() + def setCursor(self, x, y): + """ + """ + self.move(x, y, None) + self.update() -class VerticalLines(BaseInteractor): +class VerticalDoubleLine(BaseInteractor): """ - Draw 2 vertical lines centered on (0,0) that can move - on the y direction. The two lines move symmetrically (in opposite - directions). It also defines the y and -y position of a box. + Draw 2 vertical lines moving in opposite direction and centered on + a point (PointInteractor) """ - - def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5): - """ - """ + def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, + center_x=0.0, center_y=0.0): BaseInteractor.__init__(self, base, axes, color=color) + # Initialization the class self.markers = [] self.axes = axes - self.x = numpy.fabs(x) - self.save_x = self.x - self.y = numpy.fabs(y) - self.save_y = y - # Inner circle marker - self.inner_marker = self.axes.plot([self.x], [0], linestyle='', + # Center coordinates + self.center_x = center_x + self.center_y = center_y + # defined end points vertical lignes and their saved values + self.y1 = y + self.center_y + self.save_y1 = self.y1 + + delta = self.y1 - self.center_y + self.y2 = self.center_y - delta + self.save_y2 = self.y2 + + self.x1 = x + self.center_x + self.save_x1 = self.x1 + + delta = self.x1 - self.center_x + self.x2 = self.center_x - delta + self.save_x2 = self.x2 + # # save the color of the line + self.color = color + # the height of the rectangle + self.half_height = numpy.fabs(y) + self.save_half_height = numpy.fabs(y) + # the with of the rectangle + self.half_width = numpy.fabs(self.x1 - self.x2) / 2 + self.save_half_width = numpy.fabs(self.x1 - self.x2) / 2 + # Create marker + self.right_marker = self.axes.plot([self.x1], [0], linestyle='', marker='s', markersize=10, color=self.color, alpha=0.6, pickradius=5, label="pick", zorder=zorder, visible=True)[0] - self.right_line = self.axes.plot([self.x, self.x], - [self.y, -self.y], + + # Define the left and right lines of the rectangle + self.right_line = self.axes.plot([self.x1, self.x1], [self.y1, self.y2], linestyle='-', marker='', color=self.color, visible=True)[0] - self.left_line = self.axes.plot([-self.x, -self.x], - [self.y, -self.y], + self.left_line = self.axes.plot([self.x2, self.x2], [self.y1, self.y2], linestyle='-', marker='', color=self.color, visible=True)[0] + # Flag to determine if the lines have moved self.has_move = False - self.connect_markers([self.right_line, self.inner_marker]) + # Connection the marker and draw the pictures + self.connect_markers([self.right_marker]) self.update() - def validate(self, param_name, param_value): - """ - Validate input from user - """ - return True - - def set_layer(self, n): + def setLayer(self, n): """ Allow adding plot to the same panel - :param n: the number of layer - """ self.layernum = n self.update() @@ -435,40 +463,72 @@ def clear(self): Clear this slicer and its markers """ self.clear_markers() - self.inner_marker.remove() - self.left_line.remove() + self.right_marker.remove() self.right_line.remove() + self.left_line.remove() - def update(self, x=None, y=None): + def update(self, x1=None, x2=None, y1=None, y2=None, width=None, + height=None, center=None): """ Draw the new roughness on the graph. - - :param x: x-coordinates to reset current class x - :param y: y-coordinates to reset current class y - - """ - # Reset x, y -coordinates if given as parameters - if x is not None: - self.x = numpy.sign(self.x) * numpy.fabs(x) - if y is not None: - self.y = numpy.sign(self.y) * numpy.fabs(y) - # Draw lines and markers - self.inner_marker.set(xdata=[self.x], ydata=[0]) - self.left_line.set(xdata=[-self.x, -self.x], ydata=[self.y, -self.y]) - self.right_line.set(xdata=[self.x, self.x], ydata=[self.y, -self.y]) + :param x1: new maximum value of x coordinates + :param x2: new minimum value of x coordinates + :param y1: new maximum value of y coordinates + :param y2: new minimum value of y coordinates + :param width: is the width of the new rectangle + :param height: is the height of the new rectangle + :param center: provided x, y coordinates of the center point + """ + # Save the new height, witdh of the rectangle if given as a param + if width is not None: + self.half_width = width + if height is not None: + self.half_height = height + # If new center coordinates are given draw the rectangle + # given these value + if center is not None: + self.center_x = center.x + self.center_y = center.y + self.x1 = self.half_width + self.center_x + self.x2 = -self.half_width + self.center_x + self.y1 = self.half_height + self.center_y + self.y2 = -self.half_height + self.center_y + + self.right_marker.set(xdata=[self.x1], ydata=[self.center_y]) + self.right_line.set(xdata=[self.x1, self.x1], + ydata=[self.y1, self.y2]) + self.left_line.set(xdata=[self.x2, self.x2], + ydata=[self.y1, self.y2]) + return + # if x1, y1, y2, y3 are given draw the rectangle with this value + if x1 is not None: + self.x1 = x1 + if x2 is not None: + self.x2 = x2 + if y1 is not None: + self.y1 = y1 + if y2 is not None: + self.y2 = y2 + # Draw 2 vertical lines and a marker + self.right_marker.set(xdata=[self.x1], ydata=[self.center_y]) + self.right_line.set(xdata=[self.x1, self.x1], ydata=[self.y1, self.y2]) + self.left_line.set(xdata=[self.x2, self.x2], ydata=[self.y1, self.y2]) def save(self, ev): """ Remember the roughness for this layer and the next so that we can restore on Esc. """ - self.save_x = self.x - self.save_y = self.y + self.save_x2 = self.x2 + self.save_y2 = self.y2 + self.save_x1 = self.x1 + self.save_y1 = self.y1 + self.save_half_height = self.half_height + self.save_half_width = self.half_width def moveend(self, ev): """ - Called after a dragging this edge and set self.has_move to False - to specify the end of dragging motion + After a dragging motion reset the flag self.has_move to False """ self.has_move = False self.base.moveend(ev) @@ -477,18 +537,196 @@ def restore(self, ev): """ Restore the roughness for this layer. """ - self.x = self.save_x - self.y = self.save_y + self.y2 = self.save_y2 + self.x2 = self.save_x2 + self.y1 = self.save_y1 + self.x1 = self.save_x1 + self.half_height = self.save_half_height + self.half_width = self.save_half_width def move(self, x, y, ev): """ Process move to a new position, making sure that the move is allowed. """ + self.x1 = x + delta = self.x1 - self.center_x + self.x2 = self.center_x - delta + self.half_width = numpy.fabs(self.x1 - self.x2) / 2 self.has_move = True self.x = x self.base.update() self.base.draw() + def setCursor(self, x, y): + """ + Update the figure given x and y + """ + self.move(x, y, None) + self.update() + +class HorizontalDoubleLine(BaseInteractor): + """ + Select an annulus through a 2D plot + """ + def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, + center_x=0.0, center_y=0.0): + + BaseInteractor.__init__(self, base, axes, color=color) + # Initialization the class + self.markers = [] + self.axes = axes + # Center coordinates + self.center_x = center_x + self.center_y = center_y + self.y1 = y + self.center_y + self.save_y1 = self.y1 + delta = self.y1 - self.center_y + self.y2 = self.center_y - delta + self.save_y2 = self.y2 + self.x1 = x + self.center_x + self.save_x1 = self.x1 + delta = self.x1 - self.center_x + self.x2 = self.center_x - delta + self.save_x2 = self.x2 + self.color = color + self.half_height = numpy.fabs(y) + self.save_half_height = numpy.fabs(y) + self.half_width = numpy.fabs(x) + self.save_half_width = numpy.fabs(x) + self.top_marker = self.axes.plot([0], [self.y1], linestyle='', + marker='s', markersize=10, + color=self.color, alpha=0.6, + pickradius=5, label="pick", + zorder=zorder, visible=True)[0] + + # Define 2 horizotnal lines + self.top_line = self.axes.plot([self.x1, -self.x1], [self.y1, self.y1], + linestyle='-', marker='', + color=self.color, visible=True)[0] + self.bottom_line = self.axes.plot([self.x1, -self.x1], + [self.y2, self.y2], + linestyle='-', marker='', + color=self.color, visible=True)[0] + # Flag to determine if the lines have moved + self.has_move = False + # connection the marker and draw the pictures + self.connect_markers([self.top_marker]) + self.update() + + def setLayer(self, n): + """ + Allow adding plot to the same panel + @param n: the number of layer + """ + self.layernum = n + self.update() + + def clear(self): + """ + Clear this figure and its markers + """ + self.clear_markers() + self.top_marker.remove() + self.bottom_line.remove() + self.top_line.remove() + + def update(self, x1=None, x2=None, y1=None, y2=None, + width=None, height=None, center=None): + """ + Draw the new roughness on the graph. + :param x1: new maximum value of x coordinates + :param x2: new minimum value of x coordinates + :param y1: new maximum value of y coordinates + :param y2: new minimum value of y coordinates + :param width: is the width of the new rectangle + :param height: is the height of the new rectangle + :param center: provided x, y coordinates of the center point + """ + # Save the new height, witdh of the rectangle if given as a param + if width is not None: + self.half_width = width + if height is not None: + self.half_height = height + # If new center coordinates are given draw the rectangle + # given these value + if center is not None: + self.center_x = center.x + self.center_y = center.y + self.x1 = self.half_width + self.center_x + self.x2 = -self.half_width + self.center_x + + self.y1 = self.half_height + self.center_y + self.y2 = -self.half_height + self.center_y + + self.top_marker.set(xdata=[self.center_x], ydata=[self.y1]) + self.top_line.set(xdata=[self.x1, self.x2], + ydata=[self.y1, self.y1]) + self.bottom_line.set(xdata=[self.x1, self.x2], + ydata=[self.y2, self.y2]) + return + # if x1, y1, y2, y3 are given draw the rectangle with this value + if x1 is not None: + self.x1 = x1 + if x2 is not None: + self.x2 = x2 + if y1 is not None: + self.y1 = y1 + if y2 is not None: + self.y2 = y2 + # Draw 2 vertical lines and a marker + self.top_marker.set(xdata=[self.center_x], ydata=[self.y1]) + self.top_line.set(xdata=[self.x1, self.x2], ydata=[self.y1, self.y1]) + self.bottom_line.set(xdata=[self.x1, self.x2], ydata=[self.y2, self.y2]) + + def save(self, ev): + """ + Remember the roughness for this layer and the next so that we + can restore on Esc. + """ + self.save_x2 = self.x2 + self.save_y2 = self.y2 + self.save_x1 = self.x1 + self.save_y1 = self.y1 + self.save_half_height = self.half_height + self.save_half_width = self.half_width + + def moveend(self, ev): + """ + After a dragging motion reset the flag self.has_move to False + """ + self.has_move = False + self.base.moveend(ev) + + def restore(self): + """ + Restore the roughness for this layer. + """ + self.y2 = self.save_y2 + self.x2 = self.save_x2 + self.y1 = self.save_y1 + self.x1 = self.save_x1 + self.half_height = self.save_half_height + self.half_width = self.save_half_width + + def move(self, x, y, ev): + """ + Process move to a new position, making sure that the move is allowed. + """ + self.y1 = y + delta = self.y1 - self.center_y + self.y2 = self.center_y - delta + self.half_height = numpy.fabs(self.y1) - self.center_y + self.has_move = True + self.base.base.update() + + def setCursor(self, x, y): + """ + Update the figure given x and y + """ + self.move(x, y, None) + self.update() + + class BoxInteractorX(BoxInteractor): """ From 0ef28fb2fe929ecd4d01ab1583c5ad7aa97d809a Mon Sep 17 00:00:00 2001 From: Karolina Mothander Date: Thu, 30 Sep 2021 11:21:48 +0200 Subject: [PATCH 03/36] Removed the file, changes are added to BoxSlicer --- .../qtgui/Plotting/Slicers/BoxSlicer_edit.py | 748 ------------------ 1 file changed, 748 deletions(-) delete mode 100644 src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py deleted file mode 100644 index a09afaf5c3..0000000000 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer_edit.py +++ /dev/null @@ -1,748 +0,0 @@ -import numpy - -from sas.qtgui.Plotting.Slicers.BaseInteractor import BaseInteractor -from sas.qtgui.Plotting.PlotterData import Data1D -import sas.qtgui.Utilities.GuiUtils as GuiUtils -from sas.qtgui.Plotting.SlicerModel import SlicerModel - - -class BoxInteractor(BaseInteractor, SlicerModel): - """ - BoxInteractor define a rectangle that return data1D average of Data2D - in a rectangle area defined by -x, x ,y, -y - """ - def __init__(self, base, axes, item=None, color='black', zorder=3): - BaseInteractor.__init__(self, base, axes, color=color) - SlicerModel.__init__(self) - # Class initialization - self.markers = [] - self.axes = axes - self._item = item - #connecting artist - self.connect = self.base.connect - # which direction is the preferred interaction direction - self.direction = None - # determine x y values - self.xmin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - self.ymin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - self.xmax = 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - self.ymax = 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - - # when reach qmax reset the graph - self.qmax = max(self.data.xmax, self.data.xmin, - self.data.ymax, self.data.ymin) - - # center of the box - # puts the center of box at the middle of the q-range (??) - self.center_x = self.qmax/2 - self.center_y = self.qmax/2 - - # Number of points on the plot - self.nbins = 30 - # If True, I(|Q|) will be return, otherwise, - # negative q-values are allowed - # Should this be set to True?? - self.fold = True - # reference of the current Slab averaging - self.averager = None - # Create vertical and horizaontal lines for the rectangle - self.horizontal_lines = HorizontalDoubleLine(self, - self.axes, - color='blue', - zorder=zorder, - y=self.ymax, - x=self.xmax, - center_x=self.center_x, - center_y=self.center_y) - self.horizontal_lines.qmax = self.qmax - - self.vertical_lines = VerticalDoubleLine(self, - self.axes, - color='black', - zorder=zorder, - y=self.ymax, - x=self.xmax, - center_x=self.center_x, - center_y=self.center_y) - self.vertical_lines.qmax = self.qmax - - # PointINteractor determins the center of the box - self.center = PointInteractor(self, - self.axes, color='grey', - zorder=zorder, - center_x=self.center_x, - center_y=self.center_y) - - # draw the rectangle and plost the data 1D resulting - # of averaging data2D - self.update() - self._post_data() - self.setModelFromParams() - - def update_and_post(self): - """ - Update the slicer and plot the resulting data - """ - self.update() - self._post_data() - - def set_layer(self, n): - """ - Allow adding plot to the same panel - - :param n: the number of layer - - """ - self.layernum = n - self.update() - - def clear(self): - """ - Clear the slicer and all connected events related to this slicer - """ - self.averager = None - self.clear_markers() - self.horizontal_lines.clear() - self.vertical_lines.clear() - self.base.connect.clearall() - - def update(self): - """ - Respond to changes in the model by recalculating the profiles and - resetting the widgets. - """ - # #Update the slicer if an horizontal line is dragged - if self.horizontal_lines.has_move: - self.horizontal_lines.update() - self.vertical_lines.update(y=self.horizontal_lines.y) - # #Update the slicer if a vertical line is dragged - if self.vertical_lines.has_move: - self.vertical_lines.update() - self.horizontal_lines.update(x=self.vertical_lines.x) - - def save(self, ev): - """ - Remember the roughness for this layer and the next so that we - can restore on Esc. - """ - self.vertical_lines.save(ev) - self.horizontal_lines.save(ev) - - def _post_data(self): - pass - - def post_data(self, new_slab=None, nbins=None, direction=None): - """ - post data averaging in Qx or Qy given new_slab type - - :param new_slab: slicer that determine with direction to average - :param nbins: the number of points plotted when averaging - :param direction: the direction of averaging - - """ - if self.direction is None: - self.direction = direction - - x_min = -1 * numpy.fabs(self.vertical_lines.x) - x_max = numpy.fabs(self.vertical_lines.x) - y_min = -1 * numpy.fabs(self.horizontal_lines.y) - y_max = numpy.fabs(self.horizontal_lines.y) - - if nbins is not None: - self.nbins = nbins - if self.averager is None: - if new_slab is None: - msg = "post data:cannot average , averager is empty" - raise ValueError(msg) - self.averager = new_slab - if self.direction == "X": - if self.fold: - x_low = 0 - else: - x_low = numpy.fabs(x_min) - bin_width = (x_max + x_low) / self.nbins - elif self.direction == "Y": - if self.fold: - y_low = 0 - else: - y_low = numpy.fabs(y_min) - bin_width = (y_max + y_low) / self.nbins - else: - msg = "post data:no Box Average direction was supplied" - raise ValueError(msg) - # # Average data2D given Qx or Qy - box = self.averager(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max, - bin_width=bin_width) - box.fold = self.fold - boxavg = box(self.data) - # 3 Create Data1D to plot - if hasattr(boxavg, "dxl"): - dxl = boxavg.dxl - else: - dxl = None - if hasattr(boxavg, "dxw"): - dxw = boxavg.dxw - else: - dxw = None - new_plot = Data1D(x=boxavg.x, y=boxavg.y, dy=boxavg.dy) - new_plot.dxl = dxl - new_plot.dxw = dxw - new_plot.name = str(self.averager.__name__) + \ - "(" + self.data.name + ")" - new_plot.title = str(self.averager.__name__) + \ - "(" + self.data.name + ")" - new_plot.source = self.data.source - new_plot.interactive = True - new_plot.detector = self.data.detector - # # If the data file does not tell us what the axes are, just assume... - new_plot.xaxis("\\rm{Q}", "A^{-1}") - new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") - - data = self.data - if hasattr(data, "scale") and data.scale == 'linear' and \ - self.data.name.count("Residuals") > 0: - new_plot.ytransform = 'y' - new_plot.yaxis("\\rm{Residuals} ", "/") - - #new_plot. = "2daverage" + self.data.name - new_plot.id = (self.averager.__name__) + self.data.name - new_plot.group_id = new_plot.id - new_plot.is_data = True - item = self._item - if self._item.parent() is not None: - item = self._item.parent() - GuiUtils.updateModelItemWithPlot(item, new_plot, new_plot.id) - self.base.manager.communicator.forcePlotDisplaySignal.emit([item, new_plot]) - - if self.update_model: - self.setModelFromParams() - self.draw() - - def moveend(self, ev): - """ - Called after a dragging event. - Post the slicer new parameters and creates a new Data1D - corresponding to the new average - """ - self._post_data() - - def restore(self): - """ - Restore the roughness for this layer. - """ - self.horizontal_lines.restore() - self.vertical_lines.restore() - - def move(self, x, y, ev): - """ - Process move to a new position, making sure that the move is allowed. - """ - pass - - def set_cursor(self, x, y): - pass - - def getParams(self): - """ - Store a copy of values of parameters of the slicer into a dictionary. - - :return params: the dictionary created - - """ - params = {} - params["x_max"] = numpy.fabs(self.vertical_lines.x) - params["y_max"] = numpy.fabs(self.horizontal_lines.y) - params["nbins"] = self.nbins - return params - - def setParams(self, params): - """ - Receive a dictionary and reset the slicer with values contained - in the values of the dictionary. - - :param params: a dictionary containing name of slicer parameters and - values the user assigned to the slicer. - """ - self.x = float(numpy.fabs(params["x_max"])) - self.y = float(numpy.fabs(params["y_max"])) - self.nbins = params["nbins"] - - self.horizontal_lines.update(x=self.x, y=self.y) - self.vertical_lines.update(x=self.x, y=self.y) - self.post_data(nbins=None) - - def draw(self): - """ - """ - self.base.draw() - - - -class PointInteractor(BaseInteractor): - """ - Draw a point that can be dragged with the marker. - this class controls the motion the center of the BoxSum - """ - def __init__(self, base, axes, color='black', zorder=5, center_x=0.0, - center_y=0.0): - BaseInteractor.__init__(self, base, axes, color=color) - # Initialization the class - self.markers = [] - self.axes = axes - # center coordinates - self.x = center_x - self.y = center_y - # saved value of the center coordinates - self.save_x = center_x - self.save_y = center_y - # Create a marker - self.center_marker = self.axes.plot([self.x], [self.y], linestyle='', - marker='s', markersize=10, - color=self.color, alpha=0.6, - pickradius=5, label="pick", - zorder=zorder, - visible=True)[0] - # Draw a point - self.center = self.axes.plot([self.x], [self.y], - linestyle='-', marker='', - color=self.color, - visible=True)[0] - # Flag to determine the motion this point - self.has_move = False - # connecting the marker to allow them to move - self.connect_markers([self.center_marker]) - # Update the figure - self.update() - - def setLayer(self, n): - """ - Allow adding plot to the same panel - @param n: the number of layer - """ - self.layernum = n - self.update() - - def clear(self): - """ - Clear this figure and its markers - """ - self.clear_markers() - self.center.remove() - self.center_marker.remove() - - def update(self, center_x=None, center_y=None): - """ - Draw the new roughness on the graph. - """ - if center_x is not None: - self.x = center_x - if center_y is not None: - self.y = center_y - self.center_marker.set(xdata=[self.x], ydata=[self.y]) - self.center.set(xdata=[self.x], ydata=[self.y]) - - def save(self, ev): - """ - Remember the roughness for this layer and the next so that we - can restore on Esc. - """ - self.save_x = self.x - self.save_y = self.y - - def moveend(self, ev): - """ - """ - self.has_move = False - self.base.moveend(ev) - - def restore(self): - """ - Restore the roughness for this layer. - """ - self.y = self.save_y - self.x = self.save_x - - def move(self, x, y, ev): - """ - Process move to a new position, making sure that the move is allowed. - """ - self.x = x - self.y = y - self.has_move = True - self.base.base.update() - - def setCursor(self, x, y): - """ - """ - self.move(x, y, None) - self.update() - -class VerticalDoubleLine(BaseInteractor): - """ - Draw 2 vertical lines moving in opposite direction and centered on - a point (PointInteractor) - """ - def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, - center_x=0.0, center_y=0.0): - BaseInteractor.__init__(self, base, axes, color=color) - # Initialization the class - self.markers = [] - self.axes = axes - # Center coordinates - self.center_x = center_x - self.center_y = center_y - # defined end points vertical lignes and their saved values - self.y1 = y + self.center_y - self.save_y1 = self.y1 - - delta = self.y1 - self.center_y - self.y2 = self.center_y - delta - self.save_y2 = self.y2 - - self.x1 = x + self.center_x - self.save_x1 = self.x1 - - delta = self.x1 - self.center_x - self.x2 = self.center_x - delta - self.save_x2 = self.x2 - # # save the color of the line - self.color = color - # the height of the rectangle - self.half_height = numpy.fabs(y) - self.save_half_height = numpy.fabs(y) - # the with of the rectangle - self.half_width = numpy.fabs(self.x1 - self.x2) / 2 - self.save_half_width = numpy.fabs(self.x1 - self.x2) / 2 - # Create marker - self.right_marker = self.axes.plot([self.x1], [0], linestyle='', - marker='s', markersize=10, - color=self.color, alpha=0.6, - pickradius=5, label="pick", - zorder=zorder, visible=True)[0] - - # Define the left and right lines of the rectangle - self.right_line = self.axes.plot([self.x1, self.x1], [self.y1, self.y2], - linestyle='-', marker='', - color=self.color, visible=True)[0] - self.left_line = self.axes.plot([self.x2, self.x2], [self.y1, self.y2], - linestyle='-', marker='', - color=self.color, visible=True)[0] - # Flag to determine if the lines have moved - self.has_move = False - # Connection the marker and draw the pictures - self.connect_markers([self.right_marker]) - self.update() - - def setLayer(self, n): - """ - Allow adding plot to the same panel - :param n: the number of layer - """ - self.layernum = n - self.update() - - def clear(self): - """ - Clear this slicer and its markers - """ - self.clear_markers() - self.right_marker.remove() - self.right_line.remove() - self.left_line.remove() - - def update(self, x1=None, x2=None, y1=None, y2=None, width=None, - height=None, center=None): - """ - Draw the new roughness on the graph. - :param x1: new maximum value of x coordinates - :param x2: new minimum value of x coordinates - :param y1: new maximum value of y coordinates - :param y2: new minimum value of y coordinates - :param width: is the width of the new rectangle - :param height: is the height of the new rectangle - :param center: provided x, y coordinates of the center point - """ - # Save the new height, witdh of the rectangle if given as a param - if width is not None: - self.half_width = width - if height is not None: - self.half_height = height - # If new center coordinates are given draw the rectangle - # given these value - if center is not None: - self.center_x = center.x - self.center_y = center.y - self.x1 = self.half_width + self.center_x - self.x2 = -self.half_width + self.center_x - self.y1 = self.half_height + self.center_y - self.y2 = -self.half_height + self.center_y - - self.right_marker.set(xdata=[self.x1], ydata=[self.center_y]) - self.right_line.set(xdata=[self.x1, self.x1], - ydata=[self.y1, self.y2]) - self.left_line.set(xdata=[self.x2, self.x2], - ydata=[self.y1, self.y2]) - return - # if x1, y1, y2, y3 are given draw the rectangle with this value - if x1 is not None: - self.x1 = x1 - if x2 is not None: - self.x2 = x2 - if y1 is not None: - self.y1 = y1 - if y2 is not None: - self.y2 = y2 - # Draw 2 vertical lines and a marker - self.right_marker.set(xdata=[self.x1], ydata=[self.center_y]) - self.right_line.set(xdata=[self.x1, self.x1], ydata=[self.y1, self.y2]) - self.left_line.set(xdata=[self.x2, self.x2], ydata=[self.y1, self.y2]) - - def save(self, ev): - """ - Remember the roughness for this layer and the next so that we - can restore on Esc. - """ - self.save_x2 = self.x2 - self.save_y2 = self.y2 - self.save_x1 = self.x1 - self.save_y1 = self.y1 - self.save_half_height = self.half_height - self.save_half_width = self.half_width - - def moveend(self, ev): - """ - After a dragging motion reset the flag self.has_move to False - """ - self.has_move = False - self.base.moveend(ev) - - def restore(self): - """ - Restore the roughness for this layer. - """ - self.y2 = self.save_y2 - self.x2 = self.save_x2 - self.y1 = self.save_y1 - self.x1 = self.save_x1 - self.half_height = self.save_half_height - self.half_width = self.save_half_width - - def move(self, x, y, ev): - """ - Process move to a new position, making sure that the move is allowed. - """ - self.x1 = x - delta = self.x1 - self.center_x - self.x2 = self.center_x - delta - self.half_width = numpy.fabs(self.x1 - self.x2) / 2 - self.has_move = True - self.base.base.update() - - def setCursor(self, x, y): - """ - Update the figure given x and y - """ - self.move(x, y, None) - self.update() - -class HorizontalDoubleLine(BaseInteractor): - """ - Select an annulus through a 2D plot - """ - def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, - center_x=0.0, center_y=0.0): - - BaseInteractor.__init__(self, base, axes, color=color) - # Initialization the class - self.markers = [] - self.axes = axes - # Center coordinates - self.center_x = center_x - self.center_y = center_y - self.y1 = y + self.center_y - self.save_y1 = self.y1 - delta = self.y1 - self.center_y - self.y2 = self.center_y - delta - self.save_y2 = self.y2 - self.x1 = x + self.center_x - self.save_x1 = self.x1 - delta = self.x1 - self.center_x - self.x2 = self.center_x - delta - self.save_x2 = self.x2 - self.color = color - self.half_height = numpy.fabs(y) - self.save_half_height = numpy.fabs(y) - self.half_width = numpy.fabs(x) - self.save_half_width = numpy.fabs(x) - self.top_marker = self.axes.plot([0], [self.y1], linestyle='', - marker='s', markersize=10, - color=self.color, alpha=0.6, - pickradius=5, label="pick", - zorder=zorder, visible=True)[0] - - # Define 2 horizotnal lines - self.top_line = self.axes.plot([self.x1, -self.x1], [self.y1, self.y1], - linestyle='-', marker='', - color=self.color, visible=True)[0] - self.bottom_line = self.axes.plot([self.x1, -self.x1], - [self.y2, self.y2], - linestyle='-', marker='', - color=self.color, visible=True)[0] - # Flag to determine if the lines have moved - self.has_move = False - # connection the marker and draw the pictures - self.connect_markers([self.top_marker]) - self.update() - - def setLayer(self, n): - """ - Allow adding plot to the same panel - @param n: the number of layer - """ - self.layernum = n - self.update() - - def clear(self): - """ - Clear this figure and its markers - """ - self.clear_markers() - self.top_marker.remove() - self.bottom_line.remove() - self.top_line.remove() - - def update(self, x1=None, x2=None, y1=None, y2=None, - width=None, height=None, center=None): - """ - Draw the new roughness on the graph. - :param x1: new maximum value of x coordinates - :param x2: new minimum value of x coordinates - :param y1: new maximum value of y coordinates - :param y2: new minimum value of y coordinates - :param width: is the width of the new rectangle - :param height: is the height of the new rectangle - :param center: provided x, y coordinates of the center point - """ - # Save the new height, witdh of the rectangle if given as a param - if width is not None: - self.half_width = width - if height is not None: - self.half_height = height - # If new center coordinates are given draw the rectangle - # given these value - if center is not None: - self.center_x = center.x - self.center_y = center.y - self.x1 = self.half_width + self.center_x - self.x2 = -self.half_width + self.center_x - - self.y1 = self.half_height + self.center_y - self.y2 = -self.half_height + self.center_y - - self.top_marker.set(xdata=[self.center_x], ydata=[self.y1]) - self.top_line.set(xdata=[self.x1, self.x2], - ydata=[self.y1, self.y1]) - self.bottom_line.set(xdata=[self.x1, self.x2], - ydata=[self.y2, self.y2]) - return - # if x1, y1, y2, y3 are given draw the rectangle with this value - if x1 is not None: - self.x1 = x1 - if x2 is not None: - self.x2 = x2 - if y1 is not None: - self.y1 = y1 - if y2 is not None: - self.y2 = y2 - # Draw 2 vertical lines and a marker - self.top_marker.set(xdata=[self.center_x], ydata=[self.y1]) - self.top_line.set(xdata=[self.x1, self.x2], ydata=[self.y1, self.y1]) - self.bottom_line.set(xdata=[self.x1, self.x2], ydata=[self.y2, self.y2]) - - def save(self, ev): - """ - Remember the roughness for this layer and the next so that we - can restore on Esc. - """ - self.save_x2 = self.x2 - self.save_y2 = self.y2 - self.save_x1 = self.x1 - self.save_y1 = self.y1 - self.save_half_height = self.half_height - self.save_half_width = self.half_width - - def moveend(self, ev): - """ - After a dragging motion reset the flag self.has_move to False - """ - self.has_move = False - self.base.moveend(ev) - - def restore(self): - """ - Restore the roughness for this layer. - """ - self.y2 = self.save_y2 - self.x2 = self.save_x2 - self.y1 = self.save_y1 - self.x1 = self.save_x1 - self.half_height = self.save_half_height - self.half_width = self.save_half_width - - def move(self, x, y, ev): - """ - Process move to a new position, making sure that the move is allowed. - """ - self.y1 = y - delta = self.y1 - self.center_y - self.y2 = self.center_y - delta - self.half_height = numpy.fabs(self.y1) - self.center_y - self.has_move = True - self.base.base.update() - - def setCursor(self, x, y): - """ - Update the figure given x and y - """ - self.move(x, y, None) - self.update() - - - -class BoxInteractorX(BoxInteractor): - """ - Average in Qx direction - """ - def __init__(self, base, axes, item=None, color='black', zorder=3): - BoxInteractor.__init__(self, base, axes, item=item, color=color) - self.base = base - self._post_data() - - def _post_data(self): - """ - Post data creating by averaging in Qx direction - """ - from sas.sascalc.dataloader.manipulations import SlabX - self.post_data(SlabX, direction="X") - - -class BoxInteractorY(BoxInteractor): - """ - Average in Qy direction - """ - def __init__(self, base, axes, item=None, color='black', zorder=3): - BoxInteractor.__init__(self, base, axes, item=item, color=color) - self.base = base - self._post_data() - - def _post_data(self): - """ - Post data creating by averaging in Qy direction - """ - from sas.sascalc.dataloader.manipulations import SlabY - self.post_data(SlabY, direction="Y") - From f2cc820a62e65de969a6c2108263c1118c540430 Mon Sep 17 00:00:00 2001 From: Karolina Mothander Date: Wed, 27 Oct 2021 11:48:58 +0200 Subject: [PATCH 04/36] Box can be placed at arbitrary locations --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 43 ++++++++++++++------- 1 file changed, 30 insertions(+), 13 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index c6cdff2058..508eb45f26 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -47,8 +47,9 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): # center of the box # puts the center of box at the middle of the q-range (??) - self.center_x = self.qmax/2 - self.center_y = self.qmax/2 + + self.center_x = 0.0002 + self.center_y = 0.0003 # Number of points on the plot self.nbins = 100 @@ -121,20 +122,31 @@ def clear(self): self.vertical_lines.clear() self.base.connect.clearall() + def update(self): """ Respond to changes in the model by recalculating the profiles and resetting the widgets. """ - # #Update the slicer if an horizontal line is dragged + # check if the center point has moved and update the figure accordingly + if self.center.has_move: + self.center.update() + self.horizontal_lines.update(center=self.center) + self.vertical_lines.update(center=self.center) + # check if the horizontal lines have moved and + # update the figure accordingly if self.horizontal_lines.has_move: self.horizontal_lines.update() - self.vertical_lines.update(y=self.horizontal_lines.y) - # #Update the slicer if a vertical line is dragged + self.vertical_lines.update(y1=self.horizontal_lines.y1, + y2=self.horizontal_lines.y2, + height=self.horizontal_lines.half_height) + # check if the vertical lines have moved and + # update the figure accordingly if self.vertical_lines.has_move: self.vertical_lines.update() - self.horizontal_lines.update(x=self.vertical_lines.x) - + self.horizontal_lines.update(x1=self.vertical_lines.x1, + x2=self.vertical_lines.x2, + width=self.vertical_lines.half_width) def save(self, ev): """ Remember the roughness for this layer and the next so that we @@ -155,11 +167,16 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): if self.direction is None: self.direction = direction - x_min = -1 * numpy.fabs(self.vertical_lines.x) - x_max = numpy.fabs(self.vertical_lines.x) - y_min = -1 * numpy.fabs(self.horizontal_lines.y) - y_max = numpy.fabs(self.horizontal_lines.y) +# x_min = -1 * numpy.fabs(self.vertical_lines.x) +# x_max = numpy.fabs(self.vertical_lines.x) +# y_min = -1 * numpy.fabs(self.horizontal_lines.y) +# y_max = numpy.fabs(self.horizontal_lines.y) + x_min = self.horizontal_lines.x2 + x_max = self.horizontal_lines.x1 + y_min = self.vertical_lines.y2 + y_max = self.vertical_lines.y1 + if nbins is not None: self.nbins = nbins if self.averager is None: @@ -261,8 +278,8 @@ def getParams(self): """ params = {} - params["x_max"] = numpy.fabs(self.vertical_lines.x) - params["y_max"] = numpy.fabs(self.horizontal_lines.y) + params["x_max"] = numpy.fabs(self.vertical_lines.x1) + params["y_max"] = numpy.fabs(self.horizontal_lines.y1) params["nbins"] = self.nbins params["fold"] = self.fold return params From a74ae39ce4ad17ef6a429096b723edcb936f82dd Mon Sep 17 00:00:00 2001 From: Karolina Mothander Date: Thu, 28 Oct 2021 18:09:57 +0200 Subject: [PATCH 05/36] Box placed at center of plot, not just at zero, point cleared --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 508eb45f26..49f64b3ce5 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -48,8 +48,8 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): # center of the box # puts the center of box at the middle of the q-range (??) - self.center_x = 0.0002 - self.center_y = 0.0003 + self.center_x = (self.data.xmin + self.data.xmax) /2 + self.center_y = (self.data.ymin + self.data.ymax) /2 # Number of points on the plot self.nbins = 100 @@ -121,6 +121,7 @@ def clear(self): self.horizontal_lines.clear() self.vertical_lines.clear() self.base.connect.clearall() + self.center.clear() def update(self): @@ -133,6 +134,7 @@ def update(self): self.center.update() self.horizontal_lines.update(center=self.center) self.vertical_lines.update(center=self.center) + # check if the horizontal lines have moved and # update the figure accordingly if self.horizontal_lines.has_move: @@ -147,6 +149,7 @@ def update(self): self.horizontal_lines.update(x1=self.vertical_lines.x1, x2=self.vertical_lines.x2, width=self.vertical_lines.half_width) + def save(self, ev): """ Remember the roughness for this layer and the next so that we From 3047acc6ebeb026dcf97152a348d6be12596cdf4 Mon Sep 17 00:00:00 2001 From: Karolina Mothander Date: Thu, 11 Nov 2021 16:52:42 +0100 Subject: [PATCH 06/36] Edit parameters = working, added x_center, y_center to parameter list --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 31 +++++++++++++++------ 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 49f64b3ce5..e9d2090b33 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -59,6 +59,9 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): self.fold = True # reference of the current Slab averaging self.averager = None + # Flag to determine if the current figure has moved + # set to False == no motion , set to True== motion + self.has_move = False # Create vertical and horizaontal lines for the rectangle self.horizontal_lines = HorizontalDoubleLine(self, self.axes, @@ -157,6 +160,7 @@ def save(self, ev): """ self.vertical_lines.save(ev) self.horizontal_lines.save(ev) + self.center.save(ev) def _post_data(self, new_slab=None, nbins=None, direction=None): """ @@ -170,10 +174,6 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): if self.direction is None: self.direction = direction -# x_min = -1 * numpy.fabs(self.vertical_lines.x) -# x_max = numpy.fabs(self.vertical_lines.x) -# y_min = -1 * numpy.fabs(self.horizontal_lines.y) -# y_max = numpy.fabs(self.horizontal_lines.y) x_min = self.horizontal_lines.x2 x_max = self.horizontal_lines.x1 @@ -263,6 +263,7 @@ def restore(self, ev): """ self.horizontal_lines.restore(ev) self.vertical_lines.restore(ev) + self.center.restore(ev) def move(self, x, y, ev): """ @@ -284,6 +285,8 @@ def getParams(self): params["x_max"] = numpy.fabs(self.vertical_lines.x1) params["y_max"] = numpy.fabs(self.horizontal_lines.y1) params["nbins"] = self.nbins + params["center_x"] = self.center.x + params["center_y"] = self.center.y params["fold"] = self.fold return params @@ -295,14 +298,24 @@ def setParams(self, params): :param params: a dictionary containing name of slicer parameters and values the user assigned to the slicer. """ - self.x = float(numpy.fabs(params["x_max"])) - self.y = float(numpy.fabs(params["y_max"])) + x_max = float(numpy.fabs(params["x_max"])) + y_max = float(numpy.fabs(params["y_max"])) self.nbins = params["nbins"] self.fold = params["fold"] - - self.horizontal_lines.update(x=self.x, y=self.y) - self.vertical_lines.update(x=self.x, y=self.y) + self.center_x = params["center_x"] + self.center_y = params["center_y"] + + self.center.update(center_x=self.center_x, center_y=self.center_y) + self.horizontal_lines.update(center=self.center, + width=x_max, height=y_max) + self.vertical_lines.update(center=self.center, + width=x_max, height=y_max) + # compute the new error and sum given values of params self._post_data() + + #self.horizontal_lines.update(x=self.x, y=self.y) + #self.vertical_lines.update(x=self.x, y=self.y) + #self._post_data() self.draw() def draw(self): From 64d65f8681e34c0f64df26be7752293267ce7ffe Mon Sep 17 00:00:00 2001 From: Wojciech Potrzebowski Date: Mon, 4 Jul 2022 07:37:12 +0200 Subject: [PATCH 07/36] Revert "add cases in OMFReader" --- src/sas/sascalc/calculator/sas_gen.py | 78 +- .../data/isolated_skyrmion_V1.omf | 6436 ---------------- .../data/isolated_skyrmion_V2.omf | 6440 ----------------- test/sascalculator/utest_sas_gen.py | 27 +- 4 files changed, 52 insertions(+), 12929 deletions(-) delete mode 100644 test/sascalculator/data/isolated_skyrmion_V1.omf delete mode 100644 test/sascalculator/data/isolated_skyrmion_V2.omf diff --git a/src/sas/sascalc/calculator/sas_gen.py b/src/sas/sascalc/calculator/sas_gen.py index 0007a2d63a..4c7e64f79c 100644 --- a/src/sas/sascalc/calculator/sas_gen.py +++ b/src/sas/sascalc/calculator/sas_gen.py @@ -1062,67 +1062,66 @@ def read(self, path): # Reading Header; Segment count ignored s_line = line.split(":", 1) if s_line[0].lower().count("oommf") > 0: - if len(s_line) < 2: s_line = line.split(" ",1) - oommf = s_line[1].strip() - + oommf = s_line[1].lstrip() if s_line[0].lower().count("title") > 0: - title = s_line[1].strip() + title = s_line[1].lstrip() if s_line[0].lower().count("desc") > 0: - desc += s_line[1].strip() + desc += s_line[1].lstrip() desc += '\n' if s_line[0].lower().count("meshtype") > 0: - meshtype = s_line[1].strip() + meshtype = s_line[1].lstrip() if s_line[0].lower().count("meshunit") > 0: - meshunit = s_line[1].strip() + meshunit = s_line[1].lstrip() if meshunit.count("m") < 1: msg = "Error: \n" msg += "We accept only m as meshunit" logging.error(msg) return None if s_line[0].lower().count("xbase") > 0: - xbase = s_line[1].strip() + xbase = s_line[1].lstrip() if s_line[0].lower().count("ybase") > 0: - ybase = s_line[1].strip() + ybase = s_line[1].lstrip() if s_line[0].lower().count("zbase") > 0: - zbase = s_line[1].strip() + zbase = s_line[1].lstrip() if s_line[0].lower().count("xstepsize") > 0: - xstepsize = s_line[1].strip() + xstepsize = s_line[1].lstrip() if s_line[0].lower().count("ystepsize") > 0: - ystepsize = s_line[1].strip() + ystepsize = s_line[1].lstrip() if s_line[0].lower().count("zstepsize") > 0: - zstepsize = s_line[1].strip() + zstepsize = s_line[1].lstrip() if s_line[0].lower().count("xnodes") > 0: - xnodes = s_line[1].strip() + xnodes = s_line[1].lstrip() + #print(s_line[0].lower().count("ynodes")) if s_line[0].lower().count("ynodes") > 0: - ynodes = s_line[1].strip() + ynodes = s_line[1].lstrip() + #print(ynodes) if s_line[0].lower().count("znodes") > 0: - znodes = s_line[1].strip() + znodes = s_line[1].lstrip() if s_line[0].lower().count("xmin") > 0: - xmin = s_line[1].strip() + xmin = s_line[1].lstrip() if s_line[0].lower().count("ymin") > 0: - ymin = s_line[1].strip() + ymin = s_line[1].lstrip() if s_line[0].lower().count("zmin") > 0: - zmin = s_line[1].strip() + zmin = s_line[1].lstrip() if s_line[0].lower().count("xmax") > 0: - xmax = s_line[1].strip() + xmax = s_line[1].lstrip() if s_line[0].lower().count("ymax") > 0: - ymax = s_line[1].strip() + ymax = s_line[1].lstrip() if s_line[0].lower().count("zmax") > 0: - zmax = s_line[1].strip() + zmax = s_line[1].lstrip() if s_line[0].lower().count("valueunit") > 0: - valueunit = s_line[1].strip() + valueunit = s_line[1].lstrip() if valueunit.count("mT") < 1 and valueunit.count("A/m") < 1: msg = "Error: \n" msg += "We accept only mT or A/m as valueunit" logging.error(msg) return None - elif "mT" in valueunit or "A/m" in valueunit: - valueunit = valueunit.split(" ", 1) - valueunit = valueunit[0].strip() if s_line[0].lower().count("valuemultiplier") > 0: - valuemultiplier = s_line[1].strip() - else: - valuemultiplier = 1 + valuemultiplier = s_line[1].lstrip() + if s_line[0].lower().count("valuerangeminmag") > 0: + valuerangeminmag = s_line[1].lstrip() + if s_line[0].lower().count("valuerangemaxmag") > 0: + valuerangemaxmag = s_line[1].lstrip() if s_line[0].lower().count("end") > 0: output.filename = os.path.basename(path) output.oommf = oommf @@ -1145,6 +1144,10 @@ def read(self, path): output.ymax = float(ymax) * METER2ANG output.zmax = float(zmax) * METER2ANG output.valuemultiplier = valuemultiplier + output.valuerangeminmag \ + = mag2sld(float(valuerangeminmag), valueunit) + output.valuerangemaxmag \ + = mag2sld(float(valuerangemaxmag), valueunit) mx = np.reshape(mx, (len(mx),)) my = np.reshape(my, (len(my),)) mz = np.reshape(mz, (len(mz),)) @@ -1419,7 +1422,8 @@ def __init__(self): self.my = None self.mz = None self.valuemultiplier = 1. - + self.valuerangeminmag = 0 + self.valuerangemaxmag = 0 def __str__(self): """ @@ -1452,7 +1456,10 @@ def __str__(self): _str += "zmax: %s [%s]\n" % (str(self.zmax), self.meshunit) _str += "valueunit: %s\n" % self.valueunit _str += "valuemultiplier: %s\n" % str(self.valuemultiplier) - + _str += "ValueRangeMinMag:%s [%s]\n" % (str(self.valuerangeminmag), + self.valueunit) + _str += "ValueRangeMaxMag:%s [%s]\n" % (str(self.valuerangemaxmag), + self.valueunit) return _str def set_m(self, mx, my, mz): @@ -1513,6 +1520,10 @@ def __init__(self, pos_x, pos_y, pos_z, sld_n=None, self.sld_mz = sld_mz self.vol_pix = vol_pix self.data_length = len(pos_x) + #self.sld_m = None + #self.sld_phi = None + #self.sld_theta = None + #self.sld_phi = None self.pix_symbol = None if sld_mx is not None and sld_my is not None and sld_mz is not None: self.set_sldms(sld_mx, sld_my, sld_mz) @@ -1580,6 +1591,11 @@ def set_sldms(self, sld_mx, sld_my, sld_mz): else: self.sld_mz = sld_mz + #sld_m = np.sqrt(sld_mx**2 + sld_my**2 + sld_mz**2) + #if isinstance(sld_m, float): + # self.sld_m = np.full_like(self.pos_x, sld_m) + #else: + # self.sld_m = sld_m def set_pixel_symbols(self, symbol='pixel'): """ diff --git a/test/sascalculator/data/isolated_skyrmion_V1.omf b/test/sascalculator/data/isolated_skyrmion_V1.omf deleted file mode 100644 index ab6a085c58..0000000000 --- a/test/sascalculator/data/isolated_skyrmion_V1.omf +++ /dev/null @@ -1,6436 +0,0 @@ -# OOMMF: rectangular mesh v1.0 -# Segment count: 1 -# Begin: Segment -# Begin: Header -# Title: Oxs_MinDriver::Magnetization -# Desc: Oxs vector field output -# Desc: MIF source file: /mnt/ceph/home/h1110371/Desktop/MagneticSasviewTestData/OOMMF_chiraltestcases/INPUT_isolated_sk_DMI_T.mif -# Desc: Iteration: 217, State id: 508 -# Desc: Stage: 0, Stage iteration: 217 -# Desc: Stage simulation time: -1 s -# Desc: Total simulation time: -2 s -# meshtype: rectangular -# meshunit: m -# xbase: 3.7499999999999995e-10 -# ybase: 3.7499999999999995e-10 -# zbase: 1.0000000000000001e-09 -# xstepsize: 7.4999999999999989e-10 -# ystepsize: 7.4999999999999989e-10 -# zstepsize: 2.0000000000000001e-09 -# xnodes: 80 -# ynodes: 80 -# znodes: 1 -# xmin: 0 -# ymin: 0 -# zmin: 0 -# xmax: 5.9999999999999995e-08 -# ymax: 5.9999999999999995e-08 -# zmax: 2.0000000000000001e-09 -# valueunit: A/m -# valuemultiplier: 1 -# ValueRangeMinMag: 1100000.0000000002 -# ValueRangeMaxMag: 1100000.0000000049 -# End: Header -# Begin: Data Text - 505613.03256497299 -505613.03256497299 835889.30044647900 - 497208.51751455298 -222091.36909522599 955750.55003091099 - 516972.83114608598 -84686.423861058996 967247.28041511006 - 538415.14051355200 -28309.924298523802 958805.34241940000 - 553484.35399110895 -7679.4843639339197 950576.71726533899 - 562234.66909616999 -1126.5910102491900 945458.04119432799 - 566750.38216437504 471.54601353310801 942758.60216753895 - 568888.58756020002 588.65734351480603 941469.82342839497 - 569832.13216431299 395.92100159949001 940899.13614565099 - 570222.73231285205 217.74198556480900 940662.52617083304 - 570374.37706612202 107.00276323919600 940570.60263270105 - 570429.14200834802 48.542762271428501 940537.39510517102 - 570447.14829199505 20.605691551528501 940526.47521531000 - 570452.25323402602 8.2151789026132995 940523.37914202502 - 570453.28997414804 3.0638914400968100 940522.75036188401 - 570453.26167212904 1.0539543261142901 940522.76753224805 - 570453.06853465096 0.32303356018825202 940522.88467601698 - 570452.92179180204 0.080089491998127704 940522.97367963800 - 570452.83872587106 0.0096878153007130194 940523.02406139695 - 570452.79791293200 -0.0054472475746066597 940523.04881555599 - 570452.77970908198 -0.0058435385309752799 940523.05985668499 - 570452.77227435203 -0.0037056891555907801 940523.06436605100 - 570452.76938541199 -0.0019191494091221101 940523.06611827097 - 570452.76836527605 -0.0010062074508062099 940523.06673701096 - 570452.76797587401 -0.00032227817295622899 940523.06697319401 - 570452.76790761796 -0.00010268247672870000 940523.06701459305 - 570452.76792816096 0.00015690702668043100 940523.06700213300 - 570452.76800308202 0.00013246648119156300 940523.06695669203 - 570452.76798202703 9.1783358464866201e-05 940523.06696946197 - 570452.76788044104 1.7695212866989602e-05 940523.06703107699 - 570452.76770393096 -1.4796940617085400e-05 940523.06713813497 - 570452.76758386800 7.3960538883075698e-05 940523.06721095601 - 570452.76756542700 0.00012875110165027899 940523.06722214201 - 570452.76761575299 0.00014723384625272900 940523.06719161803 - 570452.76765581104 9.2187255809757996e-05 940523.06716732099 - 570452.76760803198 -1.6183215299466200e-05 940523.06719630002 - 570452.76752436894 2.9019043092274499e-06 940523.06724704395 - 570452.76745759603 -2.9124629692206199e-05 940523.06728754402 - 570452.76746375696 7.4453250192682707e-05 940523.06728380802 - 570452.76749017602 -2.0764946897581401e-05 940523.06726778299 - 570452.76749017602 2.0765060471172901e-05 940523.06726778299 - 570452.76746375603 -7.4453323147286599e-05 940523.06728380697 - 570452.76745759603 2.9124409691777500e-05 940523.06728754402 - 570452.76752436894 -2.9018740874983398e-06 940523.06724704395 - 570452.76760803198 1.6183407364445999e-05 940523.06719630002 - 570452.76765581104 -9.2187218538009497e-05 940523.06716732099 - 570452.76761575299 -0.00014723386272654499 940523.06719161803 - 570452.76756542700 -0.00012875112642177800 940523.06722214201 - 570452.76758386800 -7.3960616923196397e-05 940523.06721095601 - 570452.76770393096 1.4796906071586200e-05 940523.06713813497 - 570452.76788044104 -1.7695182110059901e-05 940523.06703107699 - 570452.76798202703 -9.1783399099628100e-05 940523.06696946302 - 570452.76800308202 -0.00013246644118840900 940523.06695669203 - 570452.76792816096 -0.00015690701271163699 940523.06700213300 - 570452.76790761796 0.00010268247694842799 940523.06701459305 - 570452.76797587401 0.00032227828312794303 940523.06697319401 - 570452.76836527605 0.0010062074172747300 940523.06673701096 - 570452.76938541199 0.0019191494594074400 940523.06611827097 - 570452.77227435203 0.0037056890715523299 940523.06436605100 - 570452.77970908198 0.0058435383760564296 940523.05985668499 - 570452.79791293095 0.0054472477025430798 940523.04881555599 - 570452.83872587106 -0.0096878152481715708 940523.02406139695 - 570452.92179180204 -0.080089491972315505 940522.97367963800 - 570453.06853465096 -0.32303356017848300 940522.88467601698 - 570453.26167212904 -1.0539543262164000 940522.76753224805 - 570453.28997414804 -3.0638914400439101 940522.75036188401 - 570452.25323402602 -8.2151789025776392 940523.37914202502 - 570447.14829199505 -20.605691551580701 940526.47521531105 - 570429.14200834802 -48.542762271445703 940537.39510517102 - 570374.37706612202 -107.00276323919000 940570.60263270000 - 570222.73231285205 -217.74198556476000 940662.52617083304 - 569832.13216431299 -395.92100159952298 940899.13614565099 - 568888.58756020002 -588.65734351488197 941469.82342839497 - 566750.38216437504 -471.54601353315297 942758.60216753895 - 562234.66909616999 1126.5910102491700 945458.04119432799 - 553484.35399110895 7679.4843639338696 950576.71726533899 - 538415.14051355200 28309.924298523802 958805.34241940104 - 516972.83114608598 84686.423861059098 967247.28041511006 - 497208.51751455298 222091.36909522701 955750.55003091099 - 505613.03256497299 505613.03256497299 835889.30044647900 - 222091.36909522701 -497208.51751455298 955750.55003091099 - 210241.42783246501 -210241.42783246501 1059054.8069131901 - 220293.14511020100 -81823.679189841700 1074604.9579921400 - 233869.41533837101 -29717.441485535801 1074440.3055734800 - 244186.94871026301 -9864.6579728676606 1072508.9382390501 - 250503.08151533501 -2825.1361595308399 1071093.0047185500 - 253914.20652139900 -574.89580371037698 1070293.0651094699 - 255602.00112930001 22.906474370043700 1069891.4040658500 - 256381.55550723200 116.34596073457099 1069704.8585751599 - 256720.86050067499 88.930714368216798 1069623.4813592699 - 256860.54241596299 51.117837445659902 1069589.9490630699 - 256914.86176917201 25.626353916999498 1069576.9038014100 - 256934.67468384601 11.736982198797000 1069572.1447416900 - 256941.33966868601 5.0006042956815699 1069570.5436969800 - 256943.32862485401 1.9925942827585399 1069570.0659008799 - 256943.79939859500 0.73944471480091700 1069569.9528081701 - 256943.84442139801 0.25153096363837502 1069569.9419925199 - 256943.80344049199 0.075128325128700796 1069569.9518374300 - 256943.76454259900 0.017410155082451900 1069569.9611819100 - 256943.74104813300 0.0011936104512466300 1069569.9668260100 - 256943.72918822200 -0.0019614156130353601 1069569.9696751300 - 256943.72379700901 -0.0016752206534132699 1069569.9709702600 - 256943.72149191899 -0.0010865247387291700 1069569.9715240200 - 256943.72049701901 -0.00043949369236302699 1069569.9717630199 - 256943.72011626299 -0.00024450148457419500 1069569.9718544900 - 256943.71988771300 8.5075128608172405e-05 1069569.9719094001 - 256943.71994872100 8.5906363839524996e-05 1069569.9718947399 - 256943.71989812099 0.00018219356873143801 1069569.9719068999 - 256943.71999688199 8.9198122046787196e-05 1069569.9718831701 - 256943.71988307699 7.7686769050395701e-05 1069569.9719105100 - 256943.71987001199 2.6106149822719600e-05 1069569.9719136499 - 256943.71979478901 0.00010156034591347600 1069569.9719317199 - 256943.71986022301 7.1468895126349400e-05 1069569.9719159999 - 256943.71993696599 0.00015979775467880099 1069569.9718975599 - 256943.72000685200 3.6204543352891999e-06 1069569.9718807701 - 256943.72001638700 9.3206003118297506e-05 1069569.9718784799 - 256943.71996960399 -8.4679266347002200e-05 1069569.9718897201 - 256943.71995093700 0.00010687156818589200 1069569.9718942100 - 256943.71995565799 -6.9389440748563700e-05 1069569.9718930700 - 256943.71998433000 0.00011455874677285500 1069569.9718861801 - 256943.71998433000 -0.00011455870404804200 1069569.9718861801 - 256943.71995565799 6.9389372052898793e-05 1069569.9718930700 - 256943.71995093700 -0.00010687160390152300 1069569.9718942100 - 256943.71996960399 8.4679241193109803e-05 1069569.9718897201 - 256943.72001638700 -9.3205935966817003e-05 1069569.9718784799 - 256943.72000685200 -3.6204165196995501e-06 1069569.9718807701 - 256943.71993696599 -0.00015979772137361000 1069569.9718975599 - 256943.71986022199 -7.1468898620623403e-05 1069569.9719159999 - 256943.71979478901 -0.00010156033760272800 1069569.9719317199 - 256943.71987001199 -2.6106237009280800e-05 1069569.9719136499 - 256943.71988307699 -7.7686828441328505e-05 1069569.9719105100 - 256943.71999688199 -8.9198064441241902e-05 1069569.9718831701 - 256943.71989812099 -0.00018219356828588600 1069569.9719068999 - 256943.71994872100 -8.5906375773392194e-05 1069569.9718947399 - 256943.71988771300 -8.5075121951411095e-05 1069569.9719094001 - 256943.72011626299 0.00024450156555725402 1069569.9718544900 - 256943.72049701901 0.00043949374286180798 1069569.9717630199 - 256943.72149191899 0.0010865247061261200 1069569.9715240200 - 256943.72379700901 0.0016752205275333500 1069569.9709702600 - 256943.72918822200 0.0019614155981456001 1069569.9696751300 - 256943.74104813300 -0.0011936104014081900 1069569.9668260100 - 256943.76454259900 -0.017410155101450699 1069569.9611819100 - 256943.80344049199 -0.075128325072534599 1069569.9518374300 - 256943.84442139801 -0.25153096362824701 1069569.9419925199 - 256943.79939859500 -0.73944471482767504 1069569.9528081701 - 256943.32862485401 -1.9925942827036800 1069570.0659008799 - 256941.33966868601 -5.0006042956568404 1069570.5436969800 - 256934.67468384601 -11.736982198828100 1069572.1447416900 - 256914.86176917201 -25.626353917077900 1069576.9038014100 - 256860.54241596299 -51.117837445692203 1069589.9490630699 - 256720.86050067499 -88.930714368186401 1069623.4813592699 - 256381.55550723200 -116.34596073458400 1069704.8585751599 - 255602.00112930001 -22.906474370060401 1069891.4040658500 - 253914.20652139900 574.89580371042098 1070293.0651094699 - 250503.08151533501 2825.1361595308899 1071093.0047185500 - 244186.94871026301 9864.6579728676406 1072508.9382390501 - 233869.41533837101 29717.441485535801 1074440.3055734800 - 220293.14511020100 81823.679189841801 1074604.9579921400 - 210241.42783246501 210241.42783246501 1059054.8069131901 - 222091.36909522599 497208.51751455298 955750.55003091099 - 84686.423861059098 -516972.83114608598 967247.28041511006 - 81823.679189841700 -220293.14511020100 1074604.9579921400 - 87858.202385179495 -87858.202385179495 1092960.1422500701 - 95205.303710473003 -33756.246881396000 1095352.2109083801 - 100877.04548248200 -12503.269935447101 1095293.3351096599 - 104473.43719866400 -4424.1713034656505 1095018.5969325700 - 106497.75808955300 -1469.9800051828499 1094831.5243363599 - 107545.32155349400 -443.83872732058899 1094730.0154920099 - 108053.08187546099 -112.52868469707801 1094680.0988574300 - 108286.04538144900 -17.390582485729301 1094657.0842383499 - 108387.80530071299 4.1011902100998201 1094647.0132628500 - 108430.22653964300 5.7872784899109604 1094642.8120346200 - 108447.09563824401 3.7503483809300100 1094641.1409377800 - 108453.47003991299 1.9430522079443999 1094640.5094059501 - 108455.73927964800 0.88752617430861103 1094640.2845759499 - 108456.48692050000 0.36843131533359302 1094640.2105005700 - 108456.70614902901 0.13929273133196901 1094640.1887795301 - 108456.75779230900 0.047231092312313899 1094640.1836627300 - 108456.76297030800 0.013487418491596801 1094640.1831497001 - 108456.75913676900 0.0025377642627772402 1094640.1835295199 - 108456.75535104101 -0.00020539157718373101 1094640.1839046101 - 108456.75305770400 -0.00065796167290384905 1094640.1841318400 - 108456.75186881200 -0.00040984362670278202 1094640.1842496300 - 108456.75125848800 -0.00020314951536830100 1094640.1843101000 - 108456.75094122200 -3.7852329940942402e-05 1094640.1843415401 - 108456.75086249100 7.4595051604945401e-05 1094640.1843493399 - 108456.75081922900 0.00013273222955262001 1094640.1843536200 - 108456.75092014100 9.8729243182443905e-05 1094640.1843436300 - 108456.75094179400 0.00013077971323459999 1094640.1843414800 - 108456.75101476299 -7.1904415560548600e-06 1094640.1843342499 - 108456.75099806501 9.4186006307523198e-05 1094640.1843359000 - 108456.75106543100 -4.4031637094526900e-05 1094640.1843292301 - 108456.75110666300 0.00011831100970977000 1094640.1843251500 - 108456.75122494600 -4.0557907387135900e-05 1094640.1843134300 - 108456.75127144200 9.1446117296984603e-05 1094640.1843088199 - 108456.75132053001 -7.5142761350856295e-05 1094640.1843039601 - 108456.75129831499 6.1157606070475799e-05 1094640.1843061601 - 108456.75130777300 -5.6584053476048397e-05 1094640.1843052199 - 108456.75131118001 7.7753441680833698e-05 1094640.1843048800 - 108456.75133247100 -5.0538418555948801e-05 1094640.1843027701 - 108456.75133247100 5.0538434459993599e-05 1094640.1843027701 - 108456.75131118001 -7.7753456765781799e-05 1094640.1843048800 - 108456.75130777300 5.6584068190565200e-05 1094640.1843052199 - 108456.75129831499 -6.1157599800784897e-05 1094640.1843061601 - 108456.75132053001 7.5142725955181202e-05 1094640.1843039601 - 108456.75127144200 -9.1446078385887304e-05 1094640.1843088199 - 108456.75122494600 4.0557996886443902e-05 1094640.1843134300 - 108456.75110666300 -0.00011831101114813299 1094640.1843251500 - 108456.75106543100 4.4031619082103797e-05 1094640.1843292301 - 108456.75099806501 -9.4186040634595998e-05 1094640.1843359000 - 108456.75101476299 7.1904064132635696e-06 1094640.1843342499 - 108456.75094179400 -0.00013077970241162499 1094640.1843414800 - 108456.75092014100 -9.8729286746224593e-05 1094640.1843436300 - 108456.75081922900 -0.00013273228024977401 1094640.1843536200 - 108456.75086249100 -7.4595144787263301e-05 1094640.1843493399 - 108456.75094122200 3.7852431139373900e-05 1094640.1843415401 - 108456.75125848800 0.00020314958856087299 1094640.1843101000 - 108456.75186881200 0.00040984354107293999 1094640.1842496300 - 108456.75305770400 0.00065796166287468297 1094640.1841318400 - 108456.75535104101 0.00020539155025095201 1094640.1839046101 - 108456.75913676900 -0.0025377642519091902 1094640.1835295199 - 108456.76297030800 -0.013487418471664001 1094640.1831497001 - 108456.75779230900 -0.047231092291464903 1094640.1836627300 - 108456.70614902901 -0.13929273133195899 1094640.1887795301 - 108456.48692050000 -0.36843131541044599 1094640.2105005700 - 108455.73927964800 -0.88752617435455805 1094640.2845759499 - 108453.47003991299 -1.9430522078639700 1094640.5094059501 - 108447.09563824401 -3.7503483808617499 1094641.1409377800 - 108430.22653964300 -5.7872784899190997 1094642.8120346200 - 108387.80530071299 -4.1011902100507100 1094647.0132628500 - 108286.04538144900 17.390582485752699 1094657.0842383499 - 108053.08187546099 112.52868469694100 1094680.0988574300 - 107545.32155349400 443.83872732057603 1094730.0154920099 - 106497.75808955300 1469.9800051829900 1094831.5243363599 - 104473.43719866400 4424.1713034656304 1095018.5969325700 - 100877.04548248200 12503.269935447001 1095293.3351096599 - 95205.303710473003 33756.246881396102 1095352.2109083801 - 87858.202385179495 87858.202385179495 1092960.1422500701 - 81823.679189841801 220293.14511020100 1074604.9579921400 - 84686.423861058996 516972.83114608598 967247.28041511006 - 28309.924298523900 -538415.14051355200 958805.34241940104 - 29717.441485535801 -233869.41533837101 1074440.3055734800 - 33756.246881396000 -95205.303710473003 1095352.2109083801 - 37720.436059344996 -37720.436059344902 1098705.7556083801 - 40680.305245796699 -14670.826329904199 1099149.6165763400 - 42579.920349020700 -5601.5422506380201 1099161.3044078101 - 43680.464121103803 -2093.3396418230200 1099130.3994446299 - 44271.296391663898 -762.32538647910098 1099108.4892656400 - 44569.840423817303 -269.01893890966602 1099096.6549641599 - 44713.216735599402 -91.327319714766503 1099090.8606245799 - 44779.066405362799 -29.521394446591501 1099088.1831501699 - 44808.097482573598 -8.9428221054962496 1099087.0003416601 - 44820.406802995603 -2.4690018039989199 1099086.4984740401 - 44825.427794789801 -0.58619736610509299 1099086.2937106800 - 44827.394901604297 -0.10096219139900500 1099086.2134820600 - 44828.132527335598 -0.0016697210957409600 1099086.1833969699 - 44828.395411714999 0.0078644853390248699 1099086.1726747400 - 44828.483253325401 0.0034101013875749301 1099086.1690919399 - 44828.510168788001 0.00024852893993079398 1099086.1679941399 - 44828.517147009399 -0.00075397337223224396 1099086.1677095201 - 44828.518541328798 -0.00083290910882206600 1099086.1676526500 - 44828.518315706599 -0.00053651289999056802 1099086.1676618501 - 44828.518177038597 -0.00032196142942048100 1099086.1676675100 - 44828.517937960300 -0.00012931359362561599 1099086.1676772600 - 44828.517921836799 -4.4565186896369499e-05 1099086.1676779201 - 44828.517964555002 2.8589595308558901e-05 1099086.1676761799 - 44828.518011269902 3.6277861223348297e-05 1099086.1676742700 - 44828.518179756204 5.2726748507322797e-05 1099086.1676674001 - 44828.518195817698 3.0671789347934700e-06 1099086.1676667400 - 44828.518318931201 -2.2883958773620199e-06 1099086.1676617200 - 44828.518293684101 -3.0651837120820202e-05 1099086.1676627500 - 44828.518362282201 -3.0452449395404501e-05 1099086.1676599500 - 44828.518373574298 -1.4593517713386900e-05 1099086.1676594899 - 44828.518434801197 -3.4439162155575202e-05 1099086.1676570000 - 44828.518459652099 -4.8806600593256704e-06 1099086.1676559800 - 44828.518471246200 -4.0769551069213999e-05 1099086.1676555099 - 44828.518462669897 1.5213402044720200e-05 1099086.1676558601 - 44828.518453170298 -1.5730131293035200e-05 1099086.1676562501 - 44828.518455861602 4.0868157461914298e-05 1099086.1676561399 - 44828.518461090403 -1.6944256298977198e-05 1099086.1676559199 - 44828.518461090403 1.6944246249445299e-05 1099086.1676559199 - 44828.518455861602 -4.0868142085719603e-05 1099086.1676561399 - 44828.518453170298 1.5730172486952002e-05 1099086.1676562501 - 44828.518462669897 -1.5213442704791600e-05 1099086.1676558601 - 44828.518471246301 4.0769515763354601e-05 1099086.1676555099 - 44828.518459652099 4.8807434966077503e-06 1099086.1676559800 - 44828.518434801197 3.4439186977632399e-05 1099086.1676570000 - 44828.518373574298 1.4593472148117501e-05 1099086.1676594899 - 44828.518362282201 3.0452421051572100e-05 1099086.1676599500 - 44828.518293684203 3.0651818477828097e-05 1099086.1676627500 - 44828.518318931201 2.2884184327093799e-06 1099086.1676617200 - 44828.518195817698 -3.0671969031755700e-06 1099086.1676667400 - 44828.518179756204 -5.2726757193648199e-05 1099086.1676674001 - 44828.518011269902 -3.6277852792836699e-05 1099086.1676742700 - 44828.517964554900 -2.8589616906490000e-05 1099086.1676761799 - 44828.517921836697 4.4565172281978300e-05 1099086.1676779201 - 44828.517937960300 0.00012931361113949699 1099086.1676772600 - 44828.518177038597 0.00032196141990725898 1099086.1676675100 - 44828.518315706599 0.00053651285462573796 1099086.1676618501 - 44828.518541328798 0.00083290913333386397 1099086.1676526500 - 44828.517147009399 0.00075397339072989496 1099086.1677095201 - 44828.510168788001 -0.00024852892834754898 1099086.1679941399 - 44828.483253325401 -0.0034101013999571499 1099086.1690919399 - 44828.395411714999 -0.0078644853412224592 1099086.1726747400 - 44828.132527335598 0.0016697211178603600 1099086.1833969699 - 44827.394901604202 0.10096219144662900 1099086.2134820600 - 44825.427794789699 0.58619736610981399 1099086.2937106800 - 44820.406802995603 2.4690018039553601 1099086.4984740401 - 44808.097482573503 8.9428221054879504 1099087.0003416601 - 44779.066405362799 29.521394446594801 1099088.1831501699 - 44713.216735599402 91.327319714740796 1099090.8606245799 - 44569.840423817397 269.01893890968398 1099096.6549641599 - 44271.296391663796 762.32538647912804 1099108.4892656400 - 43680.464121103803 2093.3396418230100 1099130.3994446299 - 42579.920349020700 5601.5422506380501 1099161.3044078101 - 40680.305245796699 14670.826329904199 1099149.6165763400 - 37720.436059344902 37720.436059344902 1098705.7556083801 - 33756.246881396102 95205.303710473003 1095352.2109083801 - 29717.441485535801 233869.41533837101 1074440.3055734800 - 28309.924298523802 538415.14051355200 958805.34241940000 - 7679.4843639338897 -553484.35399110895 950576.71726533899 - 9864.6579728676406 -244186.94871026301 1072508.9382390501 - 12503.269935447001 -100877.04548248200 1095293.3351096599 - 14670.826329904199 -40680.305245796699 1099149.6165763400 - 16202.377889524800 -16202.377889524900 1099761.3222429000 - 17178.694298120201 -6391.9681731885903 1099847.2781277800 - 17753.134104737299 -2497.6224895647201 1099853.8939838100 - 18069.878628891100 -965.59959062893699 1099851.1477030700 - 18235.327548974401 -368.88774080356302 1099848.7790378300 - 18317.824841091900 -139.10264297601901 1099847.4612161200 - 18357.307175600399 -51.737688564951497 1099846.8105133900 - 18375.513393277499 -18.978860229448699 1099846.5075397301 - 18383.623338977101 -6.8723085910574202 1099846.3721564501 - 18387.118790335098 -2.4622009501555602 1099846.3137441201 - 18388.577201452699 -0.87672683177422095 1099846.2893639901 - 18389.166340708402 -0.31262109806029897 1099846.2795141900 - 18389.396518248999 -0.11269021103017400 1099846.2756656900 - 18389.482813988900 -0.041653909399975202 1099846.2742228301 - 18389.514197501299 -0.015900155264444299 1099846.2736980901 - 18389.524762349600 -0.0063108669402125103 1099846.2735214501 - 18389.528141802599 -0.0026458783370197402 1099846.2734649400 - 18389.529272772801 -0.0010644430608714201 1099846.2734460300 - 18389.529436684901 -0.00049939112280013005 1099846.2734432900 - 18389.529697758899 -0.00021060848148097400 1099846.2734389300 - 18389.529677396898 -0.00012053629380489200 1099846.2734392700 - 18389.529875204498 -6.9531729444218795e-05 1099846.2734359601 - 18389.529907213899 -6.8388464654375004e-05 1099846.2734354299 - 18389.530051879901 -4.0772759932578503e-05 1099846.2734330101 - 18389.530087884701 -7.3305853097656797e-05 1099846.2734324001 - 18389.530137084701 -2.3296838791246599e-05 1099846.2734315800 - 18389.530155678400 -8.4782916555977100e-05 1099846.2734312699 - 18389.530145892699 4.1598326146824698e-07 1099846.2734314301 - 18389.530187769800 -7.7837378025879798e-05 1099846.2734307300 - 18389.530166869099 2.0174084529796002e-05 1099846.2734310799 - 18389.530219315198 -6.5225162467852499e-05 1099846.2734302101 - 18389.530177787201 4.0967063364557100e-05 1099846.2734308999 - 18389.530208002601 -3.2037039993433002e-05 1099846.2734304001 - 18389.530168751699 7.0127489124337605e-05 1099846.2734310499 - 18389.530189684199 -1.4412994743296100e-05 1099846.2734306999 - 18389.530179466499 5.3674485928822301e-05 1099846.2734308699 - 18389.530179466499 -5.3674480274664299e-05 1099846.2734308699 - 18389.530189684199 1.4412991736773701e-05 1099846.2734306999 - 18389.530168751699 -7.0127493759443801e-05 1099846.2734310499 - 18389.530208002700 3.2037021378735999e-05 1099846.2734304001 - 18389.530177787201 -4.0967064532646001e-05 1099846.2734308999 - 18389.530219315300 6.5225201730127597e-05 1099846.2734302101 - 18389.530166869201 -2.0174078005541300e-05 1099846.2734310799 - 18389.530187769800 7.7837420286080197e-05 1099846.2734307300 - 18389.530145892699 -4.1599905348654099e-07 1099846.2734314301 - 18389.530155678400 8.4782866356411594e-05 1099846.2734312699 - 18389.530137084701 2.3296842659948999e-05 1099846.2734315800 - 18389.530087884799 7.3305855602633506e-05 1099846.2734324001 - 18389.530051879799 4.0772764277380500e-05 1099846.2734330101 - 18389.529907213899 6.8388451757297894e-05 1099846.2734354299 - 18389.529875204498 6.9531722053299796e-05 1099846.2734359601 - 18389.529677396898 0.00012053630442900700 1099846.2734392700 - 18389.529697758899 0.00021060847317519899 1099846.2734389300 - 18389.529436684901 0.00049939110486704405 1099846.2734432900 - 18389.529272772801 0.0010644430700449000 1099846.2734460300 - 18389.528141802501 0.0026458783434937100 1099846.2734649400 - 18389.524762349600 0.0063108669302979203 1099846.2735214501 - 18389.514197501299 0.015900155275560199 1099846.2736980901 - 18389.482813988900 0.041653909417325399 1099846.2742228301 - 18389.396518248999 0.11269021099987100 1099846.2756656900 - 18389.166340708300 0.31262109807136101 1099846.2795141900 - 18388.577201452699 0.87672683177958499 1099846.2893639901 - 18387.118790335200 2.4622009501633699 1099846.3137441201 - 18383.623338977101 6.8723085910815902 1099846.3721564501 - 18375.513393277499 18.978860229441800 1099846.5075397301 - 18357.307175600399 51.737688564947298 1099846.8105133900 - 18317.824841091900 139.10264297599801 1099847.4612161200 - 18235.327548974299 368.88774080354500 1099848.7790378300 - 18069.878628891100 965.59959062893995 1099851.1477030700 - 17753.134104737201 2497.6224895647401 1099853.8939838100 - 17178.694298120299 6391.9681731885803 1099847.2781277800 - 16202.377889524900 16202.377889524800 1099761.3222429000 - 14670.826329904199 40680.305245796699 1099149.6165763400 - 12503.269935447001 100877.04548248200 1095293.3351096599 - 9864.6579728676406 244186.94871026301 1072508.9382390501 - 7679.4843639339297 553484.35399110895 950576.71726533899 - 1126.5910102491100 -562234.66909616999 945458.04119432799 - 2825.1361595308899 -250503.08151533501 1071093.0047185500 - 4424.1713034656304 -104473.43719866400 1095018.5969325700 - 5601.5422506380501 -42579.920349020802 1099161.3044078101 - 6391.9681731885903 -17178.694298120201 1099847.2781277800 - 6887.9997576209598 -6887.9997576209698 1099956.8677537700 - 7181.4371892353402 -2747.5229292244499 1099973.1260706601 - 7346.1493202294696 -1090.1558362345399 1099974.9295554000 - 7434.3952887054102 -430.07083172199998 1099974.7928047101 - 7479.7480950394402 -168.61723887291899 1099974.5564951301 - 7502.1991370091800 -65.684665300579695 1099974.4145631900 - 7512.9395358972197 -25.424306548374702 1099974.3429249299 - 7517.9177162713804 -9.7828583506733597 1099974.3091624901 - 7520.1569389283904 -3.7456042193985799 1099974.2938930800 - 7521.1362786820500 -1.4293392462866501 1099974.2872026800 - 7521.5528346868196 -0.54459280829382495 1099974.2843551701 - 7521.7250528154900 -0.20784697523701001 1099974.2831776501 - 7521.7945563205003 -0.079587852916761403 1099974.2827023901 - 7521.8214912767999 -0.030661433588744399 1099974.2825182099 - 7521.8319168626304 -0.011964870260622699 1099974.2824469199 - 7521.8356247869897 -0.0046035471026749097 1099974.2824215600 - 7521.8371369164697 -0.0019056302607076399 1099974.2824112200 - 7521.8375911673602 -0.00075039205435711105 1099974.2824081201 - 7521.8378217850304 -0.00041734170723203200 1099974.2824065399 - 7521.8379440027402 -0.00023156034102334800 1099974.2824057001 - 7521.8379281866701 -0.00018492371570308700 1099974.2824058100 - 7521.8380687889003 -0.00011751985694823799 1099974.2824048500 - 7521.8379766440603 -7.4541264068186605e-05 1099974.2824054800 - 7521.8380968811698 -5.9136473923780297e-05 1099974.2824046600 - 7521.8380046909097 -1.2305865863984800e-05 1099974.2824052901 - 7521.8380618493202 -4.0697622344236997e-05 1099974.2824049001 - 7521.8380207561204 -6.5131794779849500e-06 1099974.2824051799 - 7521.8380401765598 -4.6766997218200200e-05 1099974.2824050500 - 7521.8380589619901 -1.4886990335107401e-05 1099974.2824049201 - 7521.8380569980300 -4.1278427195074203e-05 1099974.2824049301 - 7521.8380913221499 6.1421234736647700e-06 1099974.2824047001 - 7521.8380727777203 2.1178764266517799e-06 1099974.2824048200 - 7521.8380976649996 4.2251328315024702e-05 1099974.2824046500 - 7521.8380858141800 2.1756978491315300e-05 1099974.2824047301 - 7521.8380969630498 2.2916030951375301e-05 1099974.2824046600 - 7521.8380969630398 -2.2916035277185401e-05 1099974.2824046600 - 7521.8380858142000 -2.1756974450385301e-05 1099974.2824047301 - 7521.8380976649996 -4.2251334593628302e-05 1099974.2824046500 - 7521.8380727777103 -2.1178721520188798e-06 1099974.2824048200 - 7521.8380913221299 -6.1421144580585899e-06 1099974.2824047001 - 7521.8380569980300 4.1278422518454902e-05 1099974.2824049301 - 7521.8380589620101 1.4886997191117099e-05 1099974.2824049201 - 7521.8380401765598 4.6766997938594403e-05 1099974.2824050500 - 7521.8380207561804 6.5131774001077696e-06 1099974.2824051799 - 7521.8380618493002 4.0697629666862101e-05 1099974.2824049001 - 7521.8380046909197 1.2305859265676400e-05 1099974.2824052901 - 7521.8380968811498 5.9136476905895401e-05 1099974.2824046600 - 7521.8379766440803 7.4541263422428405e-05 1099974.2824054800 - 7521.8380687888903 0.00011751984779231000 1099974.2824048500 - 7521.8379281866701 0.00018492371893794699 1099974.2824058100 - 7521.8379440027302 0.00023156033292661099 1099974.2824057001 - 7521.8378217850504 0.00041734170892595201 1099974.2824065399 - 7521.8375911673402 0.00075039206040880102 1099974.2824081201 - 7521.8371369164597 0.0019056302529140000 1099974.2824112200 - 7521.8356247869897 0.0046035470991605499 1099974.2824215600 - 7521.8319168626203 0.011964870261493100 1099974.2824469199 - 7521.8214912767698 0.030661433590713699 1099974.2825182099 - 7521.7945563205203 0.079587852912135507 1099974.2827023901 - 7521.7250528154900 0.20784697524528400 1099974.2831776501 - 7521.5528346867904 0.54459280829409695 1099974.2843551701 - 7521.1362786820700 1.4293392462902299 1099974.2872026800 - 7520.1569389283704 3.7456042194073600 1099974.2938930800 - 7517.9177162714104 9.7828583506717894 1099974.3091624901 - 7512.9395358972197 25.424306548380400 1099974.3429249299 - 7502.1991370092001 65.684665300573300 1099974.4145631900 - 7479.7480950394502 168.61723887291100 1099974.5564951301 - 7434.3952887054002 430.07083172199100 1099974.7928047101 - 7346.1493202294496 1090.1558362345500 1099974.9295554000 - 7181.4371892353502 2747.5229292244398 1099973.1260706601 - 6887.9997576209698 6887.9997576209598 1099956.8677537700 - 6391.9681731885803 17178.694298120201 1099847.2781277800 - 5601.5422506380100 42579.920349020700 1099161.3044078101 - 4424.1713034656004 104473.43719866400 1095018.5969325700 - 2825.1361595308299 250503.08151533501 1071093.0047185500 - 1126.5910102491700 562234.66909616999 945458.04119432799 --471.54601353318600 -566750.38216437504 942758.60216753895 - 574.89580371040904 -253914.20652139900 1070293.0651094699 - 1469.9800051829700 -106497.75808955300 1094831.5243363599 - 2093.3396418229700 -43680.464121103803 1099130.3994446299 - 2497.6224895647401 -17753.134104737201 1099853.8939838100 - 2747.5229292244599 -7181.4371892353302 1099973.1260706601 - 2895.4180510065298 -2895.4180510065398 1099992.3786593301 - 2979.3942081052001 -1163.8750305940100 1099995.3493561100 - 3025.2496788486201 -466.38819858088499 1099995.7410583100 - 3049.3929388975198 -186.26682963526000 1099995.7574951700 - 3061.6816609684101 -74.128646129476707 1099995.7366328100 - 3067.7432432310602 -29.394691086486901 1099995.7218495600 - 3070.6464507933902 -11.615088467107000 1099995.7140805000 - 3071.9990774051598 -4.5751119480526796 1099995.7103556099 - 3072.6132968070301 -1.7971584307821900 1099995.7086481301 - 3072.8851592193500 -0.70461630618200299 1099995.7078899499 - 3073.0024363799498 -0.27591488274285297 1099995.7075625099 - 3073.0522226251801 -0.10800494169443600 1099995.7074234500 - 3073.0725729324399 -0.042344263849473401 1099995.7073666099 - 3073.0809462038201 -0.016589145718099399 1099995.7073432100 - 3073.0844304094599 -0.0065831304086627299 1099995.7073334800 - 3073.0855312342101 -0.0026989839931418798 1099995.7073304099 - 3073.0862960807699 -0.0011943717160451200 1099995.7073282700 - 3073.0862382754299 -0.00059668359615837796 1099995.7073284299 - 3073.0865005925998 -0.00028366089754275998 1099995.7073277000 - 3073.0863085950300 -0.00017284711246918100 1099995.7073282299 - 3073.0864117889901 -2.7954755810383199e-05 1099995.7073279400 - 3073.0862786294201 -3.0799230612686602e-05 1099995.7073283200 - 3073.0863041342000 4.4324235964441601e-05 1099995.7073282499 - 3073.0862401132199 -2.0132432341619899e-05 1099995.7073284199 - 3073.0862407832201 8.0615066482699598e-06 1099995.7073284199 - 3073.0862380159201 -6.4563450941360097e-05 1099995.7073284299 - 3073.0862390858601 -4.3512755240701900e-05 1099995.7073284299 - 3073.0862846948498 -9.0009195060658704e-05 1099995.7073283000 - 3073.0862822399799 -4.3718794319697803e-05 1099995.7073283100 - 3073.0863386306601 -4.8156123922700299e-05 1099995.7073281500 - 3073.0863245582000 1.5237850591072799e-05 1099995.7073281901 - 3073.0863652399798 1.3916858410354900e-05 1099995.7073280700 - 3073.0863531225200 4.2122667670905001e-05 1099995.7073281100 - 3073.0863686301500 3.5386816204158198e-06 1099995.7073280700 - 3073.0863686301500 -3.5386845580747199e-06 1099995.7073280700 - 3073.0863531225100 -4.2122671998575601e-05 1099995.7073281100 - 3073.0863652399798 -1.3916851344876000e-05 1099995.7073280700 - 3073.0863245581900 -1.5237849562963500e-05 1099995.7073281901 - 3073.0863386306701 4.8156122140882699e-05 1099995.7073281500 - 3073.0862822399899 4.3718797159278600e-05 1099995.7073283100 - 3073.0862846948498 9.0009196795502296e-05 1099995.7073283000 - 3073.0862390858701 4.3512757228486802e-05 1099995.7073284299 - 3073.0862380159201 6.4563454949831902e-05 1099995.7073284299 - 3073.0862407832301 -8.0615109068171507e-06 1099995.7073284199 - 3073.0862401132199 2.0132435439659600e-05 1099995.7073284199 - 3073.0863041342000 -4.4324234710447602e-05 1099995.7073282499 - 3073.0862786294301 3.0799224524254197e-05 1099995.7073283200 - 3073.0864117889801 2.7954757917289700e-05 1099995.7073279400 - 3073.0863085950300 0.00017284710917364000 1099995.7073282299 - 3073.0865005925998 0.00028366089619503401 1099995.7073277000 - 3073.0862382754199 0.00059668359287678703 1099995.7073284299 - 3073.0862960807799 0.0011943717176361301 1099995.7073282700 - 3073.0855312342101 0.0026989839948640499 1099995.7073304099 - 3073.0844304094599 0.0065831304027972899 1099995.7073334800 - 3073.0809462038301 0.016589145721185999 1099995.7073432100 - 3073.0725729324399 0.042344263850642702 1099995.7073666099 - 3073.0522226251801 0.10800494169416200 1099995.7074234500 - 3073.0024363799498 0.27591488275043702 1099995.7075625099 - 3072.8851592193600 0.70461630617342097 1099995.7078899499 - 3072.6132968070301 1.7971584307817501 1099995.7086481301 - 3071.9990774051598 4.5751119480569002 1099995.7103556099 - 3070.6464507933902 11.615088467107601 1099995.7140805000 - 3067.7432432310702 29.394691086488901 1099995.7218495600 - 3061.6816609684201 74.128646129467100 1099995.7366328100 - 3049.3929388975198 186.26682963526400 1099995.7574951700 - 3025.2496788486201 466.38819858089300 1099995.7410583100 - 2979.3942081052001 1163.8750305940000 1099995.3493561100 - 2895.4180510065398 2895.4180510065398 1099992.3786593301 - 2747.5229292244499 7181.4371892353402 1099973.1260706601 - 2497.6224895647301 17753.134104737201 1099853.8939838100 - 2093.3396418230200 43680.464121103803 1099130.3994446299 - 1469.9800051829500 106497.75808955300 1094831.5243363599 - 574.89580371038505 253914.20652139900 1070293.0651094699 --471.54601353315797 566750.38216437504 942758.60216753895 --588.65734351488300 -568888.58756020002 941469.82342839497 --22.906474370070601 -255602.00112930001 1069891.4040658500 - 443.83872732058501 -107545.32155349400 1094730.0154920099 - 762.32538647912804 -44271.296391663796 1099108.4892656400 - 965.59959062894302 -18069.878628891100 1099851.1477030700 - 1090.1558362345600 -7346.1493202294496 1099974.9295554000 - 1163.8750305940100 -2979.3942081051900 1099995.3493561100 - 1206.0763927412399 -1206.0763927412499 1099998.6776171499 - 1229.4596298924500 -487.33480089428599 1099999.2049696301 - 1242.0128257548299 -196.53659385435401 1099999.2812622699 - 1248.5514814685500 -79.097823056792095 1099999.2885737401 - 1251.8605071807201 -31.764749477064100 1099999.2871980700 - 1253.4900274301301 -12.728364178795299 1099999.2857273801 - 1254.2724727472300 -5.0892998288032798 1099999.2848973400 - 1254.6388922451599 -2.0308734742087799 1099999.2844893700 - 1254.8064515592300 -0.80890237027092105 1099999.2842998200 - 1254.8816857001500 -0.32176460079597202 1099999.2842142400 - 1254.9145305517600 -0.12781715853190900 1099999.2841768099 - 1254.9288172655199 -0.050787228487492300 1099999.2841605200 - 1254.9348534814701 -0.020239190963766501 1099999.2841536400 - 1254.9373106300100 -0.0081832741965454196 1099999.2841508300 - 1254.9383765893299 -0.0033389526438552500 1099999.2841496200 - 1254.9386873667600 -0.0014155300054024501 1099999.2841492600 - 1254.9389023943600 -0.00054365161139341596 1099999.2841490200 - 1254.9387511062801 -0.00023495215873708600 1099999.2841491899 - 1254.9389092991901 -2.5112684041610301e-05 1099999.2841490100 - 1254.9386671046400 -1.1178673078524601e-05 1099999.2841492901 - 1254.9388528101999 4.9774045885301402e-06 1099999.2841490700 - 1254.9386622346201 -2.1279077814976498e-06 1099999.2841492901 - 1254.9388318237300 -4.6158395503955697e-05 1099999.2841491001 - 1254.9387265806899 -4.2471131191121199e-05 1099999.2841492200 - 1254.9388334907301 -9.7218475309683298e-05 1099999.2841491001 - 1254.9388175146901 -6.4944946099226503e-05 1099999.2841491101 - 1254.9388571447500 -0.00010718754194465800 1099999.2841490700 - 1254.9388963563399 -2.9844541818249799e-05 1099999.2841490200 - 1254.9388875776699 -5.2595960595332499e-05 1099999.2841490300 - 1254.9389335131100 5.8302492719288803e-05 1099999.2841489799 - 1254.9389075457900 4.9733327949299901e-06 1099999.2841490100 - 1254.9389344356300 8.9919825478700495e-05 1099999.2841489799 - 1254.9389221072699 -2.5913980963605699e-05 1099999.2841490000 - 1254.9389221072699 2.5913980532686100e-05 1099999.2841490000 - 1254.9389344356300 -8.9919826705074003e-05 1099999.2841489799 - 1254.9389075457900 -4.9733339934157698e-06 1099999.2841490100 - 1254.9389335131100 -5.8302492838763999e-05 1099999.2841489799 - 1254.9388875776699 5.2595960938160600e-05 1099999.2841490300 - 1254.9388963563399 2.9844545179178800e-05 1099999.2841490200 - 1254.9388571447600 0.00010718754097028300 1099999.2841490700 - 1254.9388175146901 6.4944948298748697e-05 1099999.2841491101 - 1254.9388334907301 9.7218476310304298e-05 1099999.2841491001 - 1254.9387265806999 4.2471132176753999e-05 1099999.2841492200 - 1254.9388318237300 4.6158395900039200e-05 1099999.2841491001 - 1254.9386622346301 2.1279037944101702e-06 1099999.2841492901 - 1254.9388528101999 -4.9774039078981699e-06 1099999.2841490700 - 1254.9386671046500 1.1178672620121500e-05 1099999.2841492901 - 1254.9389092991901 2.5112683097842400e-05 1099999.2841490100 - 1254.9387511062801 0.00023495215690590699 1099999.2841491899 - 1254.9389023943600 0.00054365161358474901 1099999.2841490200 - 1254.9386873667600 0.0014155300045916601 1099999.2841492600 - 1254.9383765893299 0.0033389526436055001 1099999.2841496200 - 1254.9373106300100 0.0081832741968331808 1099999.2841508300 - 1254.9348534814701 0.020239190960365399 1099999.2841536400 - 1254.9288172655199 0.050787228487058501 1099999.2841605200 - 1254.9145305517600 0.12781715853296299 1099999.2841768099 - 1254.8816857001500 0.32176460079210900 1099999.2842142400 - 1254.8064515592400 0.80890237026866796 1099999.2842998200 - 1254.6388922451399 2.0308734742119099 1099999.2844893700 - 1254.2724727472400 5.0892998288068698 1099999.2848973400 - 1253.4900274301301 12.728364178795800 1099999.2857273801 - 1251.8605071807301 31.764749477062900 1099999.2871980700 - 1248.5514814685400 79.097823056794297 1099999.2885737401 - 1242.0128257548299 196.53659385435299 1099999.2812622699 - 1229.4596298924500 487.33480089427900 1099999.2049696301 - 1206.0763927412499 1206.0763927412499 1099998.6776171499 - 1163.8750305940000 2979.3942081052001 1099995.3493561100 - 1090.1558362345500 7346.1493202294696 1099974.9295554000 - 965.59959062894995 18069.878628891001 1099851.1477030700 - 762.32538647912202 44271.296391663796 1099108.4892656400 - 443.83872732064901 107545.32155349400 1094730.0154920099 --22.906474370007700 255602.00112930001 1069891.4040658500 --588.65734351480205 568888.58756020002 941469.82342839497 --395.92100159948802 -569832.13216431299 940899.13614565099 --116.34596073465600 -256381.55550723200 1069704.8585751599 - 112.52868469700201 -108053.08187546200 1094680.0988574300 - 269.01893890967500 -44569.840423817303 1099096.6549641599 - 368.88774080353198 -18235.327548974299 1099848.7790378300 - 430.07083172199299 -7434.3952887054002 1099974.7928047101 - 466.38819858089499 -3025.2496788486101 1099995.7410583100 - 487.33480089428701 -1229.4596298924400 1099999.2049696301 - 499.08282967321901 -499.08282967322100 1099999.7735602800 - 505.49249081710099 -202.36223880096301 1099999.8652394800 - 508.89630551100902 -81.950451848528900 1099999.8792312101 - 510.65696811554301 -33.143619709048401 1099999.8809686101 - 511.54509761350101 -13.385872904399200 1099999.8809738299 - 511.98266166574598 -5.3984993675397099 1099999.8808384500 - 512.19307894301903 -2.1740912034591799 1099999.8807516000 - 512.29221202246401 -0.87440775745921095 1099999.8807072300 - 512.33818813143705 -0.35122206579389498 1099999.8806861099 - 512.35879434737706 -0.14096912864846400 1099999.8806765601 - 512.36813818279597 -0.056549327630295299 1099999.8806722199 - 512.37217869786298 -0.022773806051572101 1099999.8806703300 - 512.37375689670796 -0.0090921225541990801 1099999.8806696001 - 512.37458556071795 -0.0036835260012165198 1099999.8806692101 - 512.37468913297505 -0.0014061130065566899 1099999.8806691701 - 512.37484016864005 -0.00053418662268540505 1099999.8806690900 - 512.37483841643598 -0.00023831315532820899 1099999.8806691000 - 512.37480074005896 -9.6072454885087806e-05 1099999.8806691100 - 512.37494359469201 -0.00011935926554224400 1099999.8806690499 - 512.37484259370103 -3.0334065436657799e-05 1099999.8806690900 - 512.37504134004701 -7.1967926919170200e-05 1099999.8806690001 - 512.37492067321000 -1.9595712054481700e-05 1099999.8806690599 - 512.37507192418002 -4.1799543964834200e-05 1099999.8806689901 - 512.37496774297404 -3.8923441082349600e-05 1099999.8806690399 - 512.37505297612302 -4.9078993940464798e-05 1099999.8806690001 - 512.37498379994895 -3.9936242579052601e-05 1099999.8806690299 - 512.37502531019300 -2.9868902843536199e-05 1099999.8806690101 - 512.37497949419901 2.0828028729851398e-05 1099999.8806690299 - 512.37499475846096 3.6769449078193103e-05 1099999.8806690201 - 512.37496263753599 7.9634225792330894e-05 1099999.8806690399 - 512.37496533952503 4.6706336522176299e-05 1099999.8806690399 - 512.37495292745496 3.7801668413102800e-05 1099999.8806690399 - 512.37495292745496 -3.7801667514096900e-05 1099999.8806690399 - 512.37496533952606 -4.6706336313530000e-05 1099999.8806690399 - 512.37496263753303 -7.9634227125414007e-05 1099999.8806690399 - 512.37499475846096 -3.6769449395359501e-05 1099999.8806690201 - 512.37497949419696 -2.0828027047577199e-05 1099999.8806690299 - 512.37502531019095 2.9868902209065401e-05 1099999.8806690101 - 512.37498379995100 3.9936242157070300e-05 1099999.8806690299 - 512.37505297611995 4.9078993605835101e-05 1099999.8806690001 - 512.37496774297995 3.8923441558901002e-05 1099999.8806690399 - 512.37507192417797 4.1799544079204999e-05 1099999.8806689901 - 512.37492067321602 1.9595709220863899e-05 1099999.8806690599 - 512.37504134004496 7.1967927066884303e-05 1099999.8806690001 - 512.37484259370399 3.0334066756503101e-05 1099999.8806690900 - 512.37494359469099 0.00011935926530531200 1099999.8806690499 - 512.37480074006100 9.6072454794151094e-05 1099999.8806691100 - 512.37483841643302 0.00023831315626050500 1099999.8806691000 - 512.37484016863903 0.00053418662267958202 1099999.8806690900 - 512.37468913297505 0.0014061130069738300 1099999.8806691701 - 512.37458556071897 0.0036835260018776902 1099999.8806692101 - 512.37375689670796 0.0090921225540122903 1099999.8806696001 - 512.37217869786105 0.022773806050830500 1099999.8806703300 - 512.36813818279404 0.056549327628189497 1099999.8806722199 - 512.35879434737399 0.14096912864741901 1099999.8806765601 - 512.33818813143500 0.35122206579268300 1099999.8806861099 - 512.29221202245606 0.87440775746200805 1099999.8807072300 - 512.19307894301596 2.1740912034602302 1099999.8807516000 - 511.98266166574399 5.3984993675370703 1099999.8808384500 - 511.54509761350101 13.385872904400300 1099999.8809738299 - 510.65696811554199 33.143619709050100 1099999.8809686101 - 508.89630551100601 81.950451848528701 1099999.8792312101 - 505.49249081710099 202.36223880096199 1099999.8652394800 - 499.08282967321600 499.08282967321901 1099999.7735602800 - 487.33480089428099 1229.4596298924400 1099999.2049696301 - 466.38819858089300 3025.2496788486201 1099995.7410583100 - 430.07083172200100 7434.3952887054002 1099974.7928047101 - 368.88774080356097 18235.327548974299 1099848.7790378300 - 269.01893890965999 44569.840423817303 1099096.6549641599 - 112.52868469700000 108053.08187546099 1094680.0988574300 --116.34596073462900 256381.55550723200 1069704.8585751599 --395.92100159947302 569832.13216431299 940899.13614565204 --217.74198556477199 -570222.73231285205 940662.52617083304 --88.930714368151598 -256720.86050067499 1069623.4813592699 - 17.390582485762700 -108286.04538144900 1094657.0842383499 - 91.327319714755504 -44713.216735599402 1099090.8606245799 - 139.10264297601299 -18317.824841091900 1099847.4612161200 - 168.61723887290501 -7479.7480950394502 1099974.5564951301 - 186.26682963526301 -3049.3929388975198 1099995.7574951700 - 196.53659385435500 -1242.0128257548299 1099999.2812622699 - 202.36223880096099 -505.49249081710002 1099999.8652394800 - 205.58622227359101 -205.58622227359001 1099999.9615766399 - 207.32715146081301 -83.550362176210697 1099999.9772885400 - 208.24500121843599 -33.927524489855202 1099999.9797649700 - 208.71783217726900 -13.765036550985000 1099999.9801124500 - 208.95594886441700 -5.5796741325011299 1099999.9801392199 - 209.07332176211901 -2.2595271969764701 1099999.9801287500 - 209.13017828515001 -0.91422127325681601 1099999.9801198801 - 209.15702066050000 -0.36953997103210001 1099999.9801150900 - 209.16956362625399 -0.14919709300607500 1099999.9801127601 - 209.17533963084500 -0.060310076906570198 1099999.9801116700 - 209.17778786434101 -0.024196353593101998 1099999.9801112099 - 209.17890096074700 -0.0097649957037734703 1099999.9801109901 - 209.17937014959500 -0.0038957347308803299 1099999.9801109000 - 209.17953670142700 -0.0015461348164585199 1099999.9801108700 - 209.17964760484699 -0.00075808560769368002 1099999.9801108500 - 209.17971312141700 -0.00030231336363234702 1099999.9801108399 - 209.17979477733701 -0.00021914423195376999 1099999.9801108199 - 209.17983169213900 -4.3145117317963803e-05 1099999.9801108199 - 209.17987563077600 -1.7623072309261599e-05 1099999.9801108099 - 209.17987753179600 4.2289595017796700e-05 1099999.9801108099 - 209.17985736763001 4.2444906220718999e-05 1099999.9801108099 - 209.17982594551600 1.7677264931663800e-06 1099999.9801108199 - 209.17979853331201 -7.6201389478313296e-07 1099999.9801108199 - 209.17974475252299 -6.0380254732612202e-05 1099999.9801108299 - 209.17975058826099 -2.1560827079951300e-05 1099999.9801108299 - 209.17968650285400 -5.9964019628432903e-05 1099999.9801108399 - 209.17971389875700 4.5471912037797497e-05 1099999.9801108399 - 209.17965152006201 4.5710238565839099e-06 1099999.9801108500 - 209.17967392998099 0.00011596246590818700 1099999.9801108500 - 209.17963349094600 1.1712449655147100e-05 1099999.9801108500 - 209.17964089762600 7.7183928590857104e-05 1099999.9801108500 - 209.17964089762600 -7.7183928584522707e-05 1099999.9801108500 - 209.17963349094600 -1.1712449307654200e-05 1099999.9801108500 - 209.17967392998099 -0.00011596246528839899 1099999.9801108500 - 209.17965152006099 -4.5710236762103300e-06 1099999.9801108500 - 209.17971389875601 -4.5471912538481701e-05 1099999.9801108399 - 209.17968650285499 5.9964019246224200e-05 1099999.9801108399 - 209.17975058825999 2.1560827618370700e-05 1099999.9801108299 - 209.17974475252399 6.0380253563826099e-05 1099999.9801108299 - 209.17979853330999 7.6201330672400105e-07 1099999.9801108199 - 209.17982594551901 -1.7677275594800701e-06 1099999.9801108199 - 209.17985736762901 -4.2444905912603697e-05 1099999.9801108099 - 209.17987753179500 -4.2289594541053699e-05 1099999.9801108099 - 209.17987563077500 1.7623072099885900e-05 1099999.9801108099 - 209.17983169214000 4.3145117985917898e-05 1099999.9801108199 - 209.17979477733499 0.00021914423229690800 1099999.9801108199 - 209.17971312141700 0.00030231336524883797 1099999.9801108399 - 209.17964760484600 0.00075808560714784700 1099999.9801108500 - 209.17953670142700 0.0015461348153371799 1099999.9801108700 - 209.17937014959500 0.0038957347310141798 1099999.9801109000 - 209.17890096074800 0.0097649957038593894 1099999.9801109901 - 209.17778786433999 0.024196353593544901 1099999.9801112099 - 209.17533963084500 0.060310076906487202 1099999.9801116700 - 209.16956362625100 0.14919709300593700 1099999.9801127601 - 209.15702066049900 0.36953997103283098 1099999.9801150900 - 209.13017828514600 0.91422127325645997 1099999.9801198801 - 209.07332176212100 2.2595271969755499 1099999.9801287500 - 208.95594886441401 5.5796741325013404 1099999.9801392199 - 208.71783217726900 13.765036550985100 1099999.9801124500 - 208.24500121843400 33.927524489854598 1099999.9797649700 - 207.32715146081401 83.550362176212701 1099999.9772885400 - 205.58622227358799 205.58622227359001 1099999.9615766399 - 202.36223880096199 505.49249081709701 1099999.8652394800 - 196.53659385435401 1242.0128257548299 1099999.2812622699 - 186.26682963525801 3049.3929388975198 1099995.7574951700 - 168.61723887291299 7479.7480950394402 1099974.5564951301 - 139.10264297599699 18317.824841091900 1099847.4612161200 - 91.327319714782305 44713.216735599402 1099090.8606245799 - 17.390582485753601 108286.04538144900 1094657.0842383499 --88.930714368149907 256720.86050067499 1069623.4813592699 --217.74198556476500 570222.73231285205 940662.52617083304 --107.00276323921300 -570374.37706612202 940570.60263270105 --51.117837445642500 -256860.54241596299 1069589.9490630699 --4.1011902100961599 -108387.80530071299 1094647.0132628500 - 29.521394446563299 -44779.066405362799 1099088.1831501699 - 51.737688564956898 -18357.307175600399 1099846.8105133900 - 65.684665300568099 -7502.1991370091901 1099974.4145631900 - 74.128646129469004 -3061.6816609684101 1099995.7366328100 - 79.097823056793203 -1248.5514814685400 1099999.2885737401 - 81.950451848530406 -508.89630551100998 1099999.8792312101 - 83.550362176210896 -207.32715146081500 1099999.9772885400 - 84.427561818598704 -84.427561818598804 1099999.9935199900 - 84.897857214490600 -34.363496040040800 1099999.9961870499 - 85.144859271273305 -13.979143280173000 1099999.9966158799 - 85.271763272299197 -5.6834274993615796 1099999.9966801901 - 85.335673235993497 -2.3093712073705999 1099999.9966875000 - 85.367239542030006 -0.93781246194308099 1099999.9966870700 - 85.382535781717493 -0.38050554411887599 1099999.9966862199 - 85.389831648360897 -0.15433422617272599 1099999.9966857100 - 85.393216839537303 -0.062447058434422401 1099999.9966854500 - 85.394616637643594 -0.025204827668664501 1099999.9966853401 - 85.395472282539799 -0.010292587969325299 1099999.9966852800 - 85.395713170352707 -0.0041578332184925900 1099999.9966852600 - 85.395946452101398 -0.0017813627515563201 1099999.9966852400 - 85.396059818346004 -0.00077127971641370000 1099999.9966852299 - 85.396122951886497 -0.00031371712120446701 1099999.9966852299 - 85.396238039906095 -7.9344814684716001e-05 1099999.9966852199 - 85.396175123453204 2.2771226598868900e-05 1099999.9966852199 - 85.396286723947895 7.7353234183947099e-05 1099999.9966852199 - 85.396136325597993 1.9322056254902401e-05 1099999.9966852299 - 85.396224266728098 5.5852487901603803e-05 1099999.9966852199 - 85.396094241169195 -4.9579773240020997e-05 1099999.9966852299 - 85.396128591928701 -3.8879491073936798e-06 1099999.9966852299 - 85.396066191674905 -7.4695050302679098e-05 1099999.9966852299 - 85.396060102379394 -7.2356456714264701e-06 1099999.9966852299 - 85.396041551935397 -2.5321518158725600e-05 1099999.9966852299 - 85.396017410008398 6.1171358225528194e-05 1099999.9966852400 - 85.396009329129100 6.1204802001278396e-05 1099999.9966852400 - 85.395983238290498 0.00011237433083099800 1099999.9966852400 - 85.395975785037095 6.2167473632933806e-05 1099999.9966852400 - 85.395964133857703 4.8088578543328598e-05 1099999.9966852400 - 85.395964133857703 -4.8088578979887597e-05 1099999.9966852400 - 85.395975785037095 -6.2167473128195899e-05 1099999.9966852400 - 85.395983238291194 -0.00011237433075417601 1099999.9966852400 - 85.396009329129299 -6.1204801800981301e-05 1099999.9966852400 - 85.396017410009605 -6.1171358504458204e-05 1099999.9966852400 - 85.396041551935298 2.5321518171928200e-05 1099999.9966852299 - 85.396060102379906 7.2356455334869098e-06 1099999.9966852299 - 85.396066191675601 7.4695050537565698e-05 1099999.9966852299 - 85.396128591927905 3.8879482918119002e-06 1099999.9966852299 - 85.396094241168797 4.9579773359822200e-05 1099999.9966852299 - 85.396224266726506 -5.5852487668463100e-05 1099999.9966852199 - 85.396136325598107 -1.9322056258894999e-05 1099999.9966852299 - 85.396286723946602 -7.7353234069602801e-05 1099999.9966852199 - 85.396175123453006 -2.2771226637617001e-05 1099999.9966852199 - 85.396238039905498 7.9344815226187600e-05 1099999.9966852199 - 85.396122951886994 0.00031371712094818097 1099999.9966852299 - 85.396059818347197 0.00077127971697932404 1099999.9966852299 - 85.395946452101100 0.0017813627513065401 1099999.9966852400 - 85.395713170352195 0.0041578332178887796 1099999.9966852600 - 85.395472282539302 0.010292587969450200 1099999.9966852800 - 85.394616637644006 0.025204827668291001 1099999.9966853401 - 85.393216839537303 0.062447058434643703 1099999.9966854500 - 85.389831648361394 0.15433422617324599 1099999.9966857100 - 85.382535781717394 0.38050554411885801 1099999.9966862199 - 85.367239542031200 0.93781246194288703 1099999.9966870700 - 85.335673235992900 2.3093712073705701 1099999.9966875000 - 85.271763272298799 5.6834274993617502 1099999.9966801901 - 85.144859271272693 13.979143280173099 1099999.9966158799 - 84.897857214490401 34.363496040041198 1099999.9961870499 - 84.427561818598505 84.427561818598704 1099999.9935199900 - 83.550362176210797 207.32715146081199 1099999.9772885400 - 81.950451848528601 508.89630551100697 1099999.8792312101 - 79.097823056792393 1248.5514814685400 1099999.2885737401 - 74.128646129473196 3061.6816609684201 1099995.7366328100 - 65.684665300563097 7502.1991370091901 1099974.4145631900 - 51.737688564935802 18357.307175600399 1099846.8105133900 - 29.521394446585600 44779.066405362697 1099088.1831501699 --4.1011902100659698 108387.80530071299 1094647.0132628500 --51.117837445655198 256860.54241596299 1069589.9490630699 --107.00276323921899 570374.37706612295 940570.60263270105 --48.542762271441397 -570429.14200834802 940537.39510517102 --25.626353917061000 -256914.86176917201 1069576.9038014100 --5.7872784899784300 -108430.22653964300 1094642.8120346200 - 8.9428221054785695 -44808.097482573503 1099087.0003416601 - 18.978860229416298 -18375.513393277499 1099846.5075397301 - 25.424306548379398 -7512.9395358972197 1099974.3429249299 - 29.394691086489701 -3067.7432432310602 1099995.7218495600 - 31.764749477066999 -1251.8605071807301 1099999.2871980700 - 33.143619709048401 -510.65696811554000 1099999.8809686101 - 33.927524489854697 -208.24500121843400 1099999.9797649700 - 34.363496040041099 -84.897857214490401 1099999.9961870499 - 34.601115968278798 -34.601115968279203 1099999.9989116001 - 34.728092048456801 -14.097602898788800 1099999.9993614601 - 34.794370060404901 -5.7418553216313697 1099999.9994347200 - 34.828361274580402 -2.3377777851756898 1099999.9994461499 - 34.845618581856698 -0.95137458478879700 1099999.9994476701 - 34.854017837102397 -0.38690228641330598 1099999.9994477499 - 34.858179207254601 -0.15729720815174100 1099999.9994476701 - 34.859979268265299 -0.063766815289503703 1099999.9994476300 - 34.860997948900497 -0.025984257543167098 1099999.9994476000 - 34.861447282906802 -0.010595032873264200 1099999.9994475800 - 34.861684628649698 -0.0042847780281705600 1099999.9994475699 - 34.861771538766497 -0.0018560189549427599 1099999.9994475699 - 34.861956841917397 -0.00072002975258489204 1099999.9994475699 - 34.862008264381799 -0.00020945538478902499 1099999.9994475599 - 34.862040898780698 -0.00012065671546542600 1099999.9994475599 - 34.862115444765003 3.8458723302866403e-05 1099999.9994475599 - 34.862027763231097 -5.9612503627310900e-05 1099999.9994475599 - 34.862086309586701 7.7289817036293207e-05 1099999.9994475599 - 34.861987120294103 -4.6618075241385401e-05 1099999.9994475599 - 34.862009037879602 7.6324829756187096e-05 1099999.9994475599 - 34.861919290573397 -5.1855274514935100e-05 1099999.9994475699 - 34.861938810747702 8.1594108102914605e-05 1099999.9994475699 - 34.861851244270802 -5.2741958284137103e-05 1099999.9994475699 - 34.861883702138996 0.00012399847405956201 1099999.9994475699 - 34.861801822438800 -9.0029567830662605e-06 1099999.9994475699 - 34.861830439515302 0.00018799554887376501 1099999.9994475699 - 34.861767524250801 1.7724796340731599e-05 1099999.9994475699 - 34.861780517721201 0.00017340677464463500 1099999.9994475699 - 34.861755896210497 -5.7064839975042397e-05 1099999.9994475699 - 34.861755896209999 5.7064840172565798e-05 1099999.9994475699 - 34.861780517721400 -0.00017340677490536099 1099999.9994475699 - 34.861767524250801 -1.7724796213213401e-05 1099999.9994475699 - 34.861830439515600 -0.00018799554913254699 1099999.9994475699 - 34.861801822439197 9.0029569641582793e-06 1099999.9994475699 - 34.861883702138798 -0.00012399847404223201 1099999.9994475699 - 34.861851244271200 5.2741958210183598e-05 1099999.9994475699 - 34.861938810747297 -8.1594108117733996e-05 1099999.9994475699 - 34.861919290574100 5.1855274804617197e-05 1099999.9994475699 - 34.862009037878202 -7.6324829779122295e-05 1099999.9994475599 - 34.861987120294600 4.6618075036152103e-05 1099999.9994475599 - 34.862086309585898 -7.7289817035476003e-05 1099999.9994475599 - 34.862027763231502 5.9612503720635798e-05 1099999.9994475599 - 34.862115444764399 -3.8458723270648902e-05 1099999.9994475599 - 34.862040898781302 0.00012065671534091400 1099999.9994475599 - 34.862008264381700 0.00020945538473785100 1099999.9994475599 - 34.861956841917802 0.00072002975250428497 1099999.9994475699 - 34.861771538767101 0.0018560189554138900 1099999.9994475699 - 34.861684628649698 0.0042847780280266196 1099999.9994475699 - 34.861447282906802 0.010595032872998700 1099999.9994475800 - 34.860997948900597 0.025984257543074801 1099999.9994476000 - 34.859979268265000 0.063766815289535803 1099999.9994476300 - 34.858179207254800 0.15729720815160300 1099999.9994476701 - 34.854017837102703 0.38690228641327701 1099999.9994477499 - 34.845618581856797 0.95137458478919001 1099999.9994476701 - 34.828361274580303 2.3377777851757799 1099999.9994461499 - 34.794370060405200 5.7418553216315296 1099999.9994347200 - 34.728092048456702 14.097602898788599 1099999.9993614601 - 34.601115968279103 34.601115968278997 1099999.9989116001 - 34.363496040040800 84.897857214491907 1099999.9961870499 - 33.927524489854498 208.24500121843599 1099999.9797649700 - 33.143619709046099 510.65696811553698 1099999.8809686101 - 31.764749477065202 1251.8605071807201 1099999.2871980700 - 29.394691086490901 3067.7432432310702 1099995.7218495600 - 25.424306548368701 7512.9395358972297 1099974.3429249299 - 18.978860229404301 18375.513393277499 1099846.5075397301 - 8.9428221054614703 44808.097482573503 1099087.0003416601 --5.7872784899899399 108430.22653964300 1094642.8120346200 --25.626353917084600 256914.86176917201 1069576.9038014100 --48.542762271461598 570429.14200834802 940537.39510517102 --20.605691551515100 -570447.14829199505 940526.47521531000 --11.736982198779600 -256934.67468384601 1069572.1447417000 --3.7503483808542102 -108447.09563824401 1094641.1409377800 - 2.4690018039893800 -44820.406802995603 1099086.4984740401 - 6.8723085910799604 -18383.623338977101 1099846.3721564501 - 9.7828583506765501 -7517.9177162714204 1099974.3091624901 - 11.615088467109000 -3070.6464507933902 1099995.7140805000 - 12.728364178794800 -1253.4900274301201 1099999.2857273801 - 13.385872904401101 -511.54509761350101 1099999.8809738299 - 13.765036550984201 -208.71783217727000 1099999.9801124500 - 13.979143280172799 -85.144859271272793 1099999.9966158799 - 14.097602898788701 -34.728092048456602 1099999.9993614601 - 14.161822850282300 -14.161822850282499 1099999.9998176801 - 14.195852754136901 -5.7738535559862001 1099999.9998932499 - 14.213744007517199 -2.3535401313660800 1099999.9999056500 - 14.222940028832401 -0.95897316162852297 1099999.9999076300 - 14.227441031724201 -0.39065720583972102 1099999.9999079199 - 14.229674784805599 -0.15897139856971201 1099999.9999079499 - 14.230760262295600 -0.064695800335117001 1099999.9999079499 - 14.231294894316701 -0.026395833840013101 1099999.9999079399 - 14.231646320630400 -0.010731227426005701 1099999.9999079399 - 14.231620519111400 -0.0043894777834630697 1099999.9999079399 - 14.231985125542099 -0.0018852354372718000 1099999.9999079299 - 14.231994191294699 -0.00064690188372422202 1099999.9999079299 - 14.232073610727401 -0.00039000257214598800 1099999.9999079299 - 14.232101812921600 -0.00013442993143729200 1099999.9999079299 - 14.232034034843700 -6.3630471556451004e-05 1099999.9999079299 - 14.231997858663201 5.4291626473103996e-06 1099999.9999079299 - 14.231961510419300 4.0729244892129303e-05 1099999.9999079299 - 14.231913588473200 6.9351952451133906e-05 1099999.9999079299 - 14.231846115385199 -1.1978593949081999e-05 1099999.9999079299 - 14.231871092334099 4.9591256288742900e-05 1099999.9999079299 - 14.231766744139501 -7.9981925159042005e-05 1099999.9999079299 - 14.231846272012300 4.9466391254375202e-05 1099999.9999079299 - 14.231736350208900 -6.1036023667545303e-05 1099999.9999079399 - 14.231814400158299 9.5532240873059501e-05 1099999.9999079299 - 14.231723332954500 1.6758839557764900e-05 1099999.9999079399 - 14.231767234209601 0.00012112107696763300 1099999.9999079299 - 14.231713935650600 2.9754966952420101e-05 1099999.9999079399 - 14.231725840167501 5.9103142877752903e-05 1099999.9999079399 - 14.231725840168000 -5.9103142748988499e-05 1099999.9999079399 - 14.231713935650300 -2.9754966980679899e-05 1099999.9999079399 - 14.231767234209700 -0.00012112107711837300 1099999.9999079299 - 14.231723332954600 -1.6758839515671699e-05 1099999.9999079399 - 14.231814400157900 -9.5532240958242704e-05 1099999.9999079299 - 14.231736350209200 6.1036023756697798e-05 1099999.9999079399 - 14.231846272012000 -4.9466391272153502e-05 1099999.9999079299 - 14.231766744139700 7.9981925194148905e-05 1099999.9999079299 - 14.231871092333799 -4.9591256194889901e-05 1099999.9999079299 - 14.231846115385700 1.1978593925279000e-05 1099999.9999079299 - 14.231913588473001 -6.9351952490560905e-05 1099999.9999079299 - 14.231961510419501 -4.0729244907471198e-05 1099999.9999079299 - 14.231997858663201 -5.4291626725311902e-06 1099999.9999079299 - 14.232034034843901 6.3630471532911294e-05 1099999.9999079299 - 14.232101812921600 0.00013442993141859401 1099999.9999079299 - 14.232073610727401 0.00039000257205315297 1099999.9999079299 - 14.231994191294500 0.00064690188376539395 1099999.9999079299 - 14.231985125542201 0.0018852354371869100 1099999.9999079299 - 14.231620519111800 0.0043894777835032503 1099999.9999079399 - 14.231646320630400 0.010731227425950601 1099999.9999079399 - 14.231294894316800 0.026395833840104400 1099999.9999079399 - 14.230760262295201 0.064695800335087997 1099999.9999079499 - 14.229674784805800 0.15897139856959500 1099999.9999079499 - 14.227441031723700 0.39065720583982400 1099999.9999079199 - 14.222940028832500 0.95897316162854496 1099999.9999076300 - 14.213744007517301 2.3535401313661901 1099999.9999056500 - 14.195852754137000 5.7738535559860997 1099999.9998932499 - 14.161822850282499 14.161822850282800 1099999.9998176801 - 14.097602898788500 34.728092048457199 1099999.9993614601 - 13.979143280173099 85.144859271273603 1099999.9966158799 - 13.765036550984400 208.71783217727000 1099999.9801124500 - 13.385872904400200 511.54509761349902 1099999.8809738299 - 12.728364178794800 1253.4900274301201 1099999.2857273801 - 11.615088467105700 3070.6464507934002 1099995.7140805000 - 9.7828583506745801 7517.9177162714404 1099974.3091624901 - 6.8723085910780402 18383.623338977101 1099846.3721564501 - 2.4690018039690602 44820.406802995603 1099086.4984740401 --3.7503483808911802 108447.09563824401 1094641.1409377800 --11.736982198740600 256934.67468384601 1069572.1447416900 --20.605691551517300 570447.14829199505 940526.47521531105 --8.2151789026182698 -570452.25323402602 940523.37914202502 --5.0006042957165899 -256941.33966868601 1069570.5436969800 --1.9430522078746399 -108453.47003991299 1094640.5094059501 - 0.58619736610195206 -44825.427794789699 1099086.2937106800 - 2.4622009501708599 -18387.118790335200 1099846.3137441201 - 3.7456042194058399 -7520.1569389283704 1099974.2938930800 - 4.5751119480532898 -3071.9990774051598 1099995.7103556099 - 5.0892998288056202 -1254.2724727472300 1099999.2848973400 - 5.3984993675389701 -511.98266166574200 1099999.8808384500 - 5.5796741325015100 -208.95594886441401 1099999.9801392199 - 5.6834274993610396 -85.271763272299495 1099999.9966801901 - 5.7418553216312800 -34.794370060405399 1099999.9994347200 - 5.7738535559861903 -14.195852754137199 1099999.9998932499 - 5.7911759113584100 -5.7911759113583496 1099999.9999695099 - 5.8004743671293300 -2.3622010507164100 1099999.9999821701 - 5.8050965516643096 -0.96327815615976298 1099999.9999842599 - 5.8074767835034198 -0.39272232169366400 1099999.9999846001 - 5.8086982447572204 -0.16005830039268601 1099999.9999846499 - 5.8092363805355101 -0.065199918008275196 1099999.9999846600 - 5.8096953470989297 -0.026611810172191400 1099999.9999846600 - 5.8097483851574498 -0.010728659323278300 1099999.9999846600 - 5.8100099273832404 -0.0045781260174412499 1099999.9999846600 - 5.8102157233493497 -0.0018318246265066199 1099999.9999846600 - 5.8100997393317897 -0.00079276381485150001 1099999.9999846600 - 5.8101115129255003 -0.00047936513333744600 1099999.9999846600 - 5.8100194238818403 -0.00011525290707742299 1099999.9999846600 - 5.8098973349225602 -6.7161269413078994e-05 1099999.9999846600 - 5.8099586339470903 5.1176699334983802e-05 1099999.9999846600 - 5.8098667287338301 5.7023819110768897e-05 1099999.9999846600 - 5.8098511061764899 -2.5678046252270701e-05 1099999.9999846600 - 5.8098812520038603 3.3147124964887199e-05 1099999.9999846600 - 5.8098013398939399 -7.1613075373907006e-05 1099999.9999846600 - 5.8098604478263800 2.0382043148455501e-05 1099999.9999846600 - 5.8097737341911699 -3.6580828383866099e-06 1099999.9999846600 - 5.8097933142877602 5.6512241473368499e-05 1099999.9999846600 - 5.8097207359889902 9.9422262364451804e-05 1099999.9999846600 - 5.8096977017377904 9.6052402086954994e-05 1099999.9999846600 - 5.8096450010864400 0.00013577246018691401 1099999.9999846600 - 5.8096162499474699 5.9848809629412300e-05 1099999.9999846600 - 5.8095956252626504 5.9477092114604098e-05 1099999.9999846600 - 5.8095956252624399 -5.9477092154329903e-05 1099999.9999846600 - 5.8096162499477204 -5.9848809584543698e-05 1099999.9999846600 - 5.8096450010862402 -0.00013577246020148200 1099999.9999846600 - 5.8096977017377904 -9.6052402063073205e-05 1099999.9999846600 - 5.8097207359888898 -9.9422262353065106e-05 1099999.9999846600 - 5.8097933142876599 -5.6512241527617598e-05 1099999.9999846600 - 5.8097737341912001 3.6580829015234798e-06 1099999.9999846600 - 5.8098604478262601 -2.0382043159163200e-05 1099999.9999846600 - 5.8098013398939896 7.1613075337575093e-05 1099999.9999846600 - 5.8098812520038798 -3.3147124953234703e-05 1099999.9999846600 - 5.8098511061765903 2.5678046317322499e-05 1099999.9999846600 - 5.8098667287337804 -5.7023819116285697e-05 1099999.9999846600 - 5.8099586339471703 -5.1176699380201097e-05 1099999.9999846600 - 5.8098973349225398 6.7161269422395705e-05 1099999.9999846600 - 5.8100194238818101 0.00011525290703364200 1099999.9999846600 - 5.8101115129254799 0.00047936513335217602 1099999.9999846600 - 5.8100997393316502 0.00079276381480368203 1099999.9999846600 - 5.8102157233493203 0.0018318246264080701 1099999.9999846600 - 5.8100099273830299 0.0045781260174552899 1099999.9999846600 - 5.8097483851574800 0.010728659323335899 1099999.9999846600 - 5.8096953470986303 0.026611810172230500 1099999.9999846600 - 5.8092363805356397 0.065199918008251798 1099999.9999846600 - 5.8086982447568696 0.16005830039273400 1099999.9999846499 - 5.8074767835034500 0.39272232169369298 1099999.9999846001 - 5.8050965516642101 0.96327815615965395 1099999.9999842599 - 5.8004743671292696 2.3622010507164002 1099999.9999821701 - 5.7911759113583203 5.7911759113586196 1099999.9999695099 - 5.7738535559861797 14.195852754137100 1099999.9998932499 - 5.7418553216315198 34.794370060405001 1099999.9994347200 - 5.6834274993610503 85.271763272300802 1099999.9966801901 - 5.5796741325008297 208.95594886441700 1099999.9801392199 - 5.3984993675402704 511.98266166574001 1099999.8808384500 - 5.0892998288054700 1254.2724727472300 1099999.2848973400 - 4.5751119480528901 3071.9990774051698 1099995.7103556099 - 3.7456042194191301 7520.1569389283804 1099974.2938930800 - 2.4622009501982900 18387.118790335200 1099846.3137441201 - 0.58619736609423601 44825.427794789699 1099086.2937106800 --1.9430522078844901 108453.47003991299 1094640.5094059501 --5.0006042957128498 256941.33966868601 1069570.5436969800 --8.2151789026594404 570452.25323402602 940523.37914202502 --3.0638914401307198 -570453.28997414804 940522.75036188401 --1.9925942827803700 -256943.32862485401 1069570.0659008799 --0.88752617436942405 -108455.73927964800 1094640.2845759499 - 0.10096219141639000 -44827.394901604297 1099086.2134820600 - 0.87672683177287403 -18388.577201452699 1099846.2893639901 - 1.4293392462906900 -7521.1362786820700 1099974.2872026800 - 1.7971584307817701 -3072.6132968070201 1099995.7086481301 - 2.0308734742088901 -1254.6388922451399 1099999.2844893700 - 2.1740912034590001 -512.19307894301699 1099999.8807516000 - 2.2595271969763502 -209.07332176212000 1099999.9801287500 - 2.3093712073709400 -85.335673235992900 1099999.9966875000 - 2.3377777851757799 -34.828361274580899 1099999.9994461499 - 2.3535401313660000 -14.213744007517400 1099999.9999056500 - 2.3622010507163900 -5.8004743671293797 1099999.9999821701 - 2.3667975561231702 -2.3667975561230401 1099999.9999949101 - 2.3691551039048000 -0.96560689824465096 1099999.9999970200 - 2.3705083924919998 -0.39390834928927199 1099999.9999973800 - 2.3710783805792000 -0.16056742304439800 1099999.9999974300 - 2.3715436169487201 -0.065475334917074093 1099999.9999974400 - 2.3717579516769001 -0.026591832727939000 1099999.9999974400 - 2.3718565875000102 -0.010978350725482301 1099999.9999974400 - 2.3721383919955801 -0.0045820120088686904 1099999.9999974400 - 2.3719369963698100 -0.0018827189474488601 1099999.9999974400 - 2.3717879212073298 -0.00098156873255333303 1099999.9999974400 - 2.3717979131234301 -0.00039049638217884098 1099999.9999974400 - 2.3716554288037699 -6.1566274925567798e-05 1099999.9999974400 - 2.3717196390289801 3.4993194591169402e-06 1099999.9999974400 - 2.3717327167982600 9.7696235017230606e-05 1099999.9999974400 - 2.3715840052851300 5.3336905977478699e-05 1099999.9999974400 - 2.3716873193139700 7.4170483488273102e-05 1099999.9999974400 - 2.3715330265626600 7.1406910780226994e-05 1099999.9999974400 - 2.3715353824165302 4.2686341483438698e-05 1099999.9999974400 - 2.3714466354131800 0.00013209994854545499 1099999.9999974400 - 2.3713218235486901 7.8930788310775698e-05 1099999.9999974400 - 2.3712679540272399 0.00017142686377389301 1099999.9999974400 - 2.3710822667648901 0.00014082724320794499 1099999.9999974400 - 2.3710308322486902 0.00016335712268871199 1099999.9999974400 - 2.3708700971248500 0.00014663213259081699 1099999.9999974400 - 2.3708309004757999 8.0575767848877804e-05 1099999.9999974400 - 2.3707672111394400 5.7525365200447800e-05 1099999.9999974500 - 2.3707672111394502 -5.7525365216365900e-05 1099999.9999974500 - 2.3708309004757302 -8.0575767872888003e-05 1099999.9999974400 - 2.3708700971249401 -0.00014663213255689401 1099999.9999974400 - 2.3710308322485698 -0.00016335712268672801 1099999.9999974400 - 2.3710822667650402 -0.00014082724318438501 1099999.9999974400 - 2.3712679540271200 -0.00017142686376999400 1099999.9999974400 - 2.3713218235487399 -7.8930788306417801e-05 1099999.9999974400 - 2.3714466354131498 -0.00013209994854800400 1099999.9999974400 - 2.3715353824165399 -4.2686341494545699e-05 1099999.9999974400 - 2.3715330265626098 -7.1406910761583596e-05 1099999.9999974400 - 2.3716873193139398 -7.4170483480933297e-05 1099999.9999974400 - 2.3715840052851802 -5.3336905980531900e-05 1099999.9999974400 - 2.3717327167982001 -9.7696235000948301e-05 1099999.9999974400 - 2.3717196390290098 -3.4993194766338602e-06 1099999.9999974400 - 2.3716554288037202 6.1566274907961602e-05 1099999.9999974400 - 2.3717979131234399 0.00039049638218898098 1099999.9999974400 - 2.3717879212073401 0.00098156873250122107 1099999.9999974400 - 2.3719369963697199 0.0018827189474698400 1099999.9999974400 - 2.3721383919954802 0.0045820120088709100 1099999.9999974400 - 2.3718565874999098 0.010978350725510700 1099999.9999974400 - 2.3717579516768699 0.026591832727904802 1099999.9999974400 - 2.3715436169487001 0.065475334917089206 1099999.9999974400 - 2.3710783805791702 0.16056742304444299 1099999.9999974300 - 2.3705083924920700 0.39390834928917901 1099999.9999973800 - 2.3691551039047298 0.96560689824472101 1099999.9999970200 - 2.3667975561230898 2.3667975561231298 1099999.9999949101 - 2.3622010507163900 5.8004743671291701 1099999.9999821701 - 2.3535401313661199 14.213744007517301 1099999.9999056500 - 2.3377777851758599 34.828361274581503 1099999.9994461499 - 2.3093712073705301 85.335673235994307 1099999.9966875000 - 2.2595271969767898 209.07332176211901 1099999.9801287500 - 2.1740912034591502 512.19307894301596 1099999.8807516000 - 2.0308734742077501 1254.6388922451499 1099999.2844893700 - 1.7971584307821400 3072.6132968070201 1099995.7086481301 - 1.4293392462939900 7521.1362786820600 1099974.2872026800 - 0.87672683178016297 18388.577201452699 1099846.2893639901 - 0.10096219143569200 44827.394901604297 1099086.2134820600 --0.88752617436905701 108455.73927964800 1094640.2845759499 --1.9925942827248999 256943.32862485401 1069570.0659008799 --3.0638914401321098 570453.28997414804 940522.75036188401 --1.0539543262224400 -570453.26167212904 940522.76753224805 --0.73944471486445196 -256943.79939859500 1069569.9528081701 --0.36843131543399399 -108456.48692050000 1094640.2105005700 - 0.0016697210887173300 -44828.132527335598 1099086.1833969699 - 0.31262109805711502 -18389.166340708402 1099846.2795141900 - 0.54459280828580103 -7521.5528346868005 1099974.2843551701 - 0.70461630617454596 -3072.8851592193600 1099995.7078899499 - 0.80890237027116196 -1254.8064515592400 1099999.2842998200 - 0.87440775746125898 -512.29221202245697 1099999.8807072300 - 0.91422127325588898 -209.13017828514700 1099999.9801198801 - 0.93781246194312096 -85.367239542030902 1099999.9966870700 - 0.95137458478912995 -34.845618581856698 1099999.9994476701 - 0.95897316162851898 -14.222940028832500 1099999.9999076300 - 0.96327815615975398 -5.8050965516643496 1099999.9999842599 - 0.96560689824461299 -2.3691551039048999 1099999.9999970200 - 0.96688888314184795 -0.96688888314178500 1099999.9999991499 - 0.96752632860713705 -0.39449704075022002 1099999.9999995001 - 0.96792118496628299 -0.16088534857989500 1099999.9999995600 - 0.96822341225586905 -0.065575128205573194 1099999.9999995700 - 0.96834367044790104 -0.026830941916443099 1099999.9999995700 - 0.96848363463337706 -0.011132599556120500 1099999.9999995700 - 0.96838973032027298 -0.0046393876832808000 1099999.9999995700 - 0.96811345037462604 -0.0020016297730942800 1099999.9999995700 - 0.96816318589903505 -0.00085253785085854497 1099999.9999995700 - 0.96814539339853900 -0.00019364890264979300 1099999.9999995700 - 0.96804590760683296 2.1601458758670499e-05 1099999.9999995700 - 0.96819244217031397 9.3318850864292506e-05 1099999.9999995700 - 0.96787496452538302 0.00014365158055797001 1099999.9999995700 - 0.96796065670275000 8.4994207171594502e-05 1099999.9999995700 - 0.96784327986513297 0.00011265258974619600 1099999.9999995700 - 0.96767743392723604 3.7899999409535602e-05 1099999.9999995700 - 0.96765321427940598 8.5809691966060099e-05 1099999.9999995700 - 0.96732197733313396 0.00010330293906252500 1099999.9999995700 - 0.96723871338507805 0.00013345081784395699 1099999.9999995700 - 0.96683613572652805 0.00023956144161525601 1099999.9999995800 - 0.96664746458628603 0.00019154211545546401 1099999.9999995800 - 0.96626869863583598 0.00030302562722815798 1099999.9999995800 - 0.96605733748339095 0.00014628823503938499 1099999.9999995800 - 0.96582129661514005 0.00021643883724959900 1099999.9999995800 - 0.96572767251821201 -1.9586754792669500e-05 1099999.9999995800 - 0.96572767251824698 1.9586754795740499e-05 1099999.9999995800 - 0.96582129661511196 -0.00021643883724773200 1099999.9999995800 - 0.96605733748338096 -0.00014628823505149000 1099999.9999995800 - 0.96626869863588205 -0.00030302562722674402 1099999.9999995800 - 0.96664746458624595 -0.00019154211545774000 1099999.9999995800 - 0.96683613572660898 -0.00023956144159701799 1099999.9999995800 - 0.96723871338503198 -0.00013345081785414001 1099999.9999995700 - 0.96732197733321201 -0.00010330293904449000 1099999.9999995700 - 0.96765321427937800 -8.5809691960300099e-05 1099999.9999995700 - 0.96767743392728300 -3.7899999412833101e-05 1099999.9999995700 - 0.96784327986511598 -0.00011265258975282900 1099999.9999995700 - 0.96796065670279097 -8.4994207165168707e-05 1099999.9999995700 - 0.96787496452537902 -0.00014365158055647999 1099999.9999995700 - 0.96819244217033296 -9.3318850872546401e-05 1099999.9999995700 - 0.96804590760684395 -2.1601458743182102e-05 1099999.9999995700 - 0.96814539339852801 0.00019364890262282499 1099999.9999995700 - 0.96816318589905004 0.00085253785087623004 1099999.9999995700 - 0.96811345037458196 0.0020016297730951799 1099999.9999995700 - 0.96838973032032505 0.0046393876832826197 1099999.9999995700 - 0.96848363463331599 0.011132599556097701 1099999.9999995700 - 0.96834367044800296 0.026830941916450201 1099999.9999995700 - 0.96822341225579700 0.065575128205579494 1099999.9999995700 - 0.96792118496639901 0.16088534857984299 1099999.9999995600 - 0.96752632860708099 0.39449704075029401 1099999.9999995001 - 0.96688888314188903 0.96688888314178900 1099999.9999991499 - 0.96560689824463097 2.3691551039047800 1099999.9999970200 - 0.96327815615977197 5.8050965516644499 1099999.9999842599 - 0.95897316162844404 14.222940028832500 1099999.9999076300 - 0.95137458478886805 34.845618581856698 1099999.9994476701 - 0.93781246194403600 85.367239542031598 1099999.9966870700 - 0.91422127325705704 209.13017828514899 1099999.9801198801 - 0.87440775745792299 512.29221202245799 1099999.8807072300 - 0.80890237026864598 1254.8064515592300 1099999.2842998200 - 0.70461630618122595 3072.8851592193600 1099995.7078899499 - 0.54459280828093204 7521.5528346868005 1099974.2843551701 - 0.31262109806580302 18389.166340708402 1099846.2795141900 - 0.0016697211145152899 44828.132527335598 1099086.1833969699 --0.36843131542854501 108456.48692050000 1094640.2105005700 --0.73944471483068397 256943.79939859500 1069569.9528081701 --1.0539543262181601 570453.26167212904 940522.76753224700 --0.32303356018327600 -570453.06853465096 940522.88467601698 --0.25153096362968802 -256943.84442139801 1069569.9419925199 --0.13929273142059201 -108456.70614902901 1094640.1887795301 --0.0078644853473940797 -44828.395411715101 1099086.1726747400 - 0.11269021101284100 -18389.396518248999 1099846.2756656900 - 0.20784697523919499 -7521.7250528155000 1099974.2831776501 - 0.27591488274789899 -3073.0024363799598 1099995.7075625099 - 0.32176460079440999 -1254.8816857001400 1099999.2842142400 - 0.35122206579168103 -512.33818813143296 1099999.8806861099 - 0.36953997103265701 -209.15702066049900 1099999.9801150900 - 0.38050554411876297 -85.382535781718303 1099999.9966862199 - 0.38690228641336200 -34.854017837102901 1099999.9994477499 - 0.39065720583995200 -14.227441031724000 1099999.9999079199 - 0.39272232169361498 -5.8074767835035503 1099999.9999846001 - 0.39390834928923202 -2.3705083924919399 1099999.9999973800 - 0.39449704075026198 -0.96752632860714205 1099999.9999995001 - 0.39483389108028699 -0.39483389108029399 1099999.9999998601 - 0.39514859292492999 -0.16111401477578699 1099999.9999999199 - 0.39536901309877598 -0.065892361848123707 1099999.9999999299 - 0.39544751051417298 -0.027090664487518200 1099999.9999999299 - 0.39535810280918399 -0.011118347036422199 1099999.9999999299 - 0.39516562500428798 -0.0045230351259909598 1099999.9999999299 - 0.39509225201260600 -0.0017989281248243700 1099999.9999999299 - 0.39521705565249599 -0.00061518944739726803 1099999.9999999299 - 0.39504147153000302 -8.8080901288809695e-05 1099999.9999999299 - 0.39513884586935799 3.3657941977904498e-05 1099999.9999999299 - 0.39491184827209702 2.0583102491021000e-05 1099999.9999999299 - 0.39482130352984302 0.00010509038027360500 1099999.9999999299 - 0.39486668115466400 4.6341334386053700e-05 1099999.9999999299 - 0.39449027417557597 0.00010538948476140600 1099999.9999999299 - 0.39439239124678399 0.00013717310559576700 1099999.9999999299 - 0.39388235896133900 0.00030218038734888998 1099999.9999999299 - 0.39345527184518098 0.00045135259742042799 1099999.9999999299 - 0.39278424689245800 0.00062020457792919198 1099999.9999999299 - 0.39203029713810800 0.00077806611570063798 1099999.9999999299 - 0.39123891469721800 0.00077671167655964405 1099999.9999999299 - 0.39037681946925201 0.00081177605277284604 1099999.9999999299 - 0.38968862408576299 0.00058408600681820100 1099999.9999999299 - 0.38910185911672801 0.00047329402129781299 1099999.9999999299 - 0.38882275848208497 9.0032210700908701e-05 1099999.9999999299 - 0.38882275848205100 -9.0032210700313799e-05 1099999.9999999299 - 0.38910185911677297 -0.00047329402129409298 1099999.9999999299 - 0.38968862408573801 -0.00058408600681518995 1099999.9999999299 - 0.39037681946926900 -0.00081177605278101497 1099999.9999999299 - 0.39123891469720301 -0.00077671167656240497 1099999.9999999299 - 0.39203029713811099 -0.00077806611570871095 1099999.9999999299 - 0.39278424689248198 -0.00062020457792709405 1099999.9999999299 - 0.39345527184516299 -0.00045135259742299798 1099999.9999999299 - 0.39388235896139701 -0.00030218038734148201 1099999.9999999299 - 0.39439239124676401 -0.00013717310559676799 1099999.9999999299 - 0.39449027417563298 -0.00010538948476258300 1099999.9999999299 - 0.39486668115463802 -4.6341334382068701e-05 1099999.9999999299 - 0.39482130352989397 -0.00010509038028090700 1099999.9999999299 - 0.39491184827207998 -2.0583102479719700e-05 1099999.9999999299 - 0.39513884586938303 -3.3657941976545397e-05 1099999.9999999299 - 0.39504147153000602 8.8080901292539107e-05 1099999.9999999299 - 0.39521705565247600 0.00061518944739937995 1099999.9999999299 - 0.39509225201264397 0.0017989281248162300 1099999.9999999299 - 0.39516562500426100 0.0045230351259885598 1099999.9999999299 - 0.39535810280924899 0.011118347036417300 1099999.9999999299 - 0.39544751051412502 0.027090664487512999 1099999.9999999299 - 0.39536901309883898 0.065892361848119196 1099999.9999999299 - 0.39514859292487597 0.16111401477580800 1099999.9999999199 - 0.39483389108031097 0.39483389108025202 1099999.9999998601 - 0.39449704075025699 0.96752632860716803 1099999.9999995001 - 0.39390834928924601 2.3705083924920198 1099999.9999973800 - 0.39272232169360599 5.8074767835034198 1099999.9999846001 - 0.39065720583997798 14.227441031724300 1099999.9999079199 - 0.38690228641328800 34.854017837102603 1099999.9994477499 - 0.38050554411814602 85.382535781718204 1099999.9966862199 - 0.36953997103363001 209.15702066050201 1099999.9801150900 - 0.35122206579442600 512.33818813143398 1099999.8806861099 - 0.32176460079306202 1254.8816857001400 1099999.2842142400 - 0.27591488274263198 3073.0024363799698 1099995.7075625099 - 0.20784697523518800 7521.7250528154900 1099974.2831776501 - 0.11269021101987900 18389.396518248999 1099846.2756656900 --0.0078644853425021508 44828.395411715101 1099086.1726747400 --0.13929273134240000 108456.70614902901 1094640.1887795301 --0.25153096361161298 256943.84442139801 1069569.9419925199 --0.32303356010354300 570453.06853465096 940522.88467601698 --0.080089491901538606 -570452.92179180204 940522.97367963905 --0.075128325001354801 -256943.80344049199 1069569.9518374300 --0.047231092267531603 -108456.75779230900 1094640.1836627300 --0.0034101013922060901 -44828.483253325503 1099086.1690919399 - 0.041653909417202498 -18389.482813989001 1099846.2742228301 - 0.079587852912560000 -7521.7945563205103 1099974.2827023901 - 0.10800494169358400 -3073.0522226251801 1099995.7074234500 - 0.12781715853338399 -1254.9145305517600 1099999.2841768099 - 0.14096912864825101 -512.35879434737501 1099999.8806765601 - 0.14919709300548301 -209.16956362625399 1099999.9801127601 - 0.15433422617325501 -85.389831648360897 1099999.9966857100 - 0.15729720815176701 -34.858179207254899 1099999.9994476701 - 0.15897139856954401 -14.229674784805701 1099999.9999079499 - 0.16005830039277000 -5.8086982447569904 1099999.9999846499 - 0.16056742304445401 -2.3710783805793301 1099999.9999974300 - 0.16088534857984499 -0.96792118496626700 1099999.9999995600 - 0.16111401477580700 -0.39514859292489302 1099999.9999999199 - 0.16144753886512700 -0.16144753886514501 1099999.9999999800 - 0.16153459331917999 -0.066066171782419900 1099999.9999999900 - 0.16136296399329500 -0.026903269578270501 1099999.9999999900 - 0.16125812386464000 -0.010851723012462801 1099999.9999999900 - 0.16114492169959499 -0.0043203956036029596 1099999.9999999900 - 0.16128658128673201 -0.0016660393770507301 1099999.9999999900 - 0.16120025875572500 -0.00064645438685834102 1099999.9999999900 - 0.16121149610478500 -0.00021461373858666801 1099999.9999999900 - 0.16109295534733500 -0.00017505360081928001 1099999.9999999900 - 0.16090161744390499 6.0929039170735800e-05 1099999.9999999900 - 0.16087155391274299 0.00019648784786027100 1099999.9999999900 - 0.16042158959585501 0.00027172697557227202 1099999.9999999900 - 0.15995073255468401 0.00058310515690852295 1099999.9999999900 - 0.15928409317126099 0.00074516957428106005 1099999.9999999900 - 0.15825919805396799 0.0012224759554265701 1099999.9999999900 - 0.15706608118436699 0.0014038995194354600 1099999.9999999900 - 0.15537756383630000 0.0019172360769083899 1099999.9999999900 - 0.15357861495996600 0.0019052411850854500 1099999.9999999900 - 0.15143085083991500 0.0021817783571636399 1099999.9999999900 - 0.14941836842310000 0.0018075661033896200 1099999.9999999900 - 0.14750328247920499 0.0016880344274255500 1099999.9999999900 - 0.14611693370210899 0.00091091013594939499 1099999.9999999900 - 0.14533433806983601 0.00048164837807021201 1099999.9999999900 - 0.14533433806986101 -0.00048164837807241701 1099999.9999999900 - 0.14611693370208600 -0.00091091013595031504 1099999.9999999900 - 0.14750328247923500 -0.0016880344274234000 1099999.9999999900 - 0.14941836842307599 -0.0018075661033881501 1099999.9999999900 - 0.15143085083993599 -0.0021817783571679902 1099999.9999999900 - 0.15357861495995101 -0.0019052411850892300 1099999.9999999900 - 0.15537756383630799 -0.0019172360769089999 1099999.9999999900 - 0.15706608118436099 -0.0014038995194424701 1099999.9999999900 - 0.15825919805395700 -0.0012224759554264200 1099999.9999999900 - 0.15928409317127201 -0.00074516957427749303 1099999.9999999900 - 0.15995073255466999 -0.00058310515690688700 1099999.9999999900 - 0.16042158959586700 -0.00027172697557682800 1099999.9999999900 - 0.16087155391272900 -0.00019648784785291401 1099999.9999999900 - 0.16090161744391601 -6.0929039171230901e-05 1099999.9999999900 - 0.16109295534733400 0.00017505360081901701 1099999.9999999900 - 0.16121149610479099 0.00021461373859215299 1099999.9999999900 - 0.16120025875574101 0.00064645438685224802 1099999.9999999900 - 0.16128658128673001 0.0016660393770573101 1099999.9999999900 - 0.16114492169959899 0.0043203956035973998 1099999.9999999900 - 0.16125812386464300 0.010851723012460100 1099999.9999999900 - 0.16136296399328501 0.026903269578271199 1099999.9999999900 - 0.16153459331917500 0.066066171782422994 1099999.9999999900 - 0.16144753886511801 0.16144753886513299 1099999.9999999800 - 0.16111401477581899 0.39514859292491800 1099999.9999999199 - 0.16088534857983100 0.96792118496625801 1099999.9999995600 - 0.16056742304445301 2.3710783805792599 1099999.9999974300 - 0.16005830039275401 5.8086982447570596 1099999.9999846499 - 0.15897139856956399 14.229674784805701 1099999.9999079499 - 0.15729720815182099 34.858179207255603 1099999.9994476701 - 0.15433422617298601 85.389831648360797 1099999.9966857100 - 0.14919709300530001 209.16956362625200 1099999.9801127601 - 0.14096912864968300 512.35879434737797 1099999.8806765601 - 0.12781715853223799 1254.9145305517600 1099999.2841768099 - 0.10800494169092800 3073.0522226251801 1099995.7074234500 - 0.079587852921722102 7521.7945563205003 1099974.2827023901 - 0.041653909403413097 18389.482813988900 1099846.2742228301 --0.0034101013884765101 44828.483253325401 1099086.1690919399 --0.047231092206337200 108456.75779230900 1094640.1836627300 --0.075128324996749499 256943.80344049199 1069569.9518374300 --0.080089491845700203 570452.92179180204 940522.97367963800 --0.0096878153155225792 -570452.83872587106 940523.02406139695 --0.017410155105138301 -256943.76454259900 1069569.9611819100 --0.013487418404928600 -108456.76297030800 1094640.1831497001 --0.00024852891228346901 -44828.510168788103 1099086.1679941399 - 0.015900155267820199 -18389.514197501299 1099846.2736980901 - 0.030661433593757701 -7521.8214912767899 1099974.2825182099 - 0.042344263854055403 -3073.0725729324499 1099995.7073666099 - 0.050787228484891700 -1254.9288172655199 1099999.2841605200 - 0.056549327628309297 -512.36813818278995 1099999.8806722199 - 0.060310076907392297 -209.17533963084500 1099999.9801116700 - 0.062447058434708901 -85.393216839538596 1099999.9966854500 - 0.063766815289376499 -34.859979268264802 1099999.9994476300 - 0.064695800335176204 -14.230760262295400 1099999.9999079499 - 0.065199918008285201 -5.8092363805358200 1099999.9999846600 - 0.065475334917070194 -2.3715436169485602 1099999.9999974400 - 0.065575128205587099 -0.96822341225585395 1099999.9999995700 - 0.065892361848103001 -0.39536901309880901 1099999.9999999299 - 0.066066171782423605 -0.16153459331915701 1099999.9999999900 - 0.065831104608920096 -0.065831104608921900 1100000.0000000000 - 0.065708049141528294 -0.026688140473099600 1100000.0000000000 - 0.065688112014387304 -0.010774325034489000 1100000.0000000000 - 0.065767720543344496 -0.0043999812188551700 1100000.0000000000 - 0.065785790057341698 -0.0018835486778523199 1100000.0000000000 - 0.065752185175248001 -0.00076213557230969003 1100000.0000000000 - 0.065602780084326295 -0.00029291978623291801 1100000.0000000000 - 0.065349977889582703 1.1781003239236700e-05 1100000.0000000000 - 0.065145860145577494 0.00047405444260344598 1100000.0000000000 - 0.064633424808886106 0.00064097523370160701 1100000.0000000000 - 0.063856924927527606 0.0010738427607111199 1100000.0000000000 - 0.062850452276289007 0.0014667273614985201 1100000.0000000000 - 0.061244755363470800 0.0020907583269405201 1100000.0000000000 - 0.059013503351595102 0.0027317826652816699 1100000.0000000000 - 0.055945920727920401 0.0035356871410393499 1100000.0000000000 - 0.052062162901170203 0.0042294954742896004 1100000.0000000000 - 0.047377872380897697 0.0048013379518058903 1100000.0000000000 - 0.042178057704537503 0.0050052778615558699 1100000.0000000000 - 0.036868958663643800 0.0047737292576868302 1100000.0000000000 - 0.032036379272187401 0.0039273684183526300 1100000.0000000000 - 0.028337730556008300 0.0026508235201630000 1100000.0000000000 - 0.026320763376238201 0.00088974214016481401 1100000.0000000000 - 0.026320763376242000 -0.00088974214016414603 1100000.0000000000 - 0.028337730556001400 -0.0026508235201630902 1100000.0000000000 - 0.032036379272183502 -0.0039273684183529197 1100000.0000000000 - 0.036868958663647797 -0.0047737292576865500 1100000.0000000000 - 0.042178057704531903 -0.0050052778615547701 1100000.0000000000 - 0.047377872380904601 -0.0048013379518040203 1100000.0000000000 - 0.052062162901157803 -0.0042294954742926501 1100000.0000000000 - 0.055945920727929199 -0.0035356871410353700 1100000.0000000000 - 0.059013503351576797 -0.0027317826652850301 1100000.0000000000 - 0.061244755363473798 -0.0020907583269404299 1100000.0000000000 - 0.062850452276278196 -0.0014667273614982900 1100000.0000000000 - 0.063856924927528105 -0.0010738427607095799 1100000.0000000000 - 0.064633424808876502 -0.00064097523370268503 1100000.0000000000 - 0.065145860145582393 -0.00047405444260400500 1100000.0000000000 - 0.065349977889580205 -1.1781003241722299e-05 1100000.0000000000 - 0.065602780084329404 0.00029291978622981199 1100000.0000000000 - 0.065752185175253705 0.00076213557231468896 1100000.0000000000 - 0.065785790057339796 0.0018835486778527200 1100000.0000000000 - 0.065767720543357500 0.0043999812188552498 1100000.0000000000 - 0.065688112014365002 0.010774325034494100 1100000.0000000000 - 0.065708049141546196 0.026688140473098500 1100000.0000000000 - 0.065831104608892105 0.065831104608917099 1100000.0000000000 - 0.066066171782446295 0.16153459331915701 1099999.9999999900 - 0.065892361848082795 0.39536901309877798 1099999.9999999299 - 0.065575128205609207 0.96822341225588804 1099999.9999995700 - 0.065475334917062797 2.3715436169486401 1099999.9999974400 - 0.065199918008305602 5.8092363805356797 1099999.9999846600 - 0.064695800335077297 14.230760262295600 1099999.9999079499 - 0.063766815289382300 34.859979268264901 1099999.9994476300 - 0.062447058435216099 85.393216839538596 1099999.9966854500 - 0.060310076906945599 209.17533963084600 1099999.9801116700 - 0.056549327627594001 512.36813818279302 1099999.8806722199 - 0.050787228485341299 1254.9288172655199 1099999.2841605200 - 0.042344263852107100 3073.0725729324499 1099995.7073666099 - 0.030661433599011099 7521.8214912767899 1099974.2825182099 - 0.015900155273932199 18389.514197501299 1099846.2736980901 --0.00024852894672412903 44828.510168787900 1099086.1679941399 --0.013487418465909800 108456.76297030800 1094640.1831497001 --0.017410155141212798 256943.76454259900 1069569.9611819100 --0.0096878153045200401 570452.83872587106 940523.02406139695 - 0.0054472476484558200 -570452.79791293095 940523.04881555506 --0.0011936104102783301 -256943.74104813300 1069569.9668260100 --0.0025377641987750200 -108456.75913676900 1094640.1835295199 - 0.00075397341722360095 -44828.517147009399 1099086.1677095201 - 0.0063108669311908302 -18389.524762349600 1099846.2735214501 - 0.011964870269201100 -7521.8319168626304 1099974.2824469199 - 0.016589145715871299 -3073.0809462038101 1099995.7073432100 - 0.020239190956405698 -1254.9348534814601 1099999.2841536400 - 0.022773806052621699 -512.37217869786400 1099999.8806703300 - 0.024196353594765501 -209.17778786434201 1099999.9801112099 - 0.025204827668328600 -85.394616637643395 1099999.9966853401 - 0.025984257543035998 -34.860997948900597 1099999.9994476000 - 0.026395833840053600 -14.231294894316800 1099999.9999079399 - 0.026611810172252101 -5.8096953470987103 1099999.9999846600 - 0.026591832727930101 -2.3717579516770200 1099999.9999974400 - 0.026830941916421699 -0.96834367044786396 1099999.9999995700 - 0.027090664487518099 -0.39544751051413601 1099999.9999999299 - 0.026903269578277201 -0.16136296399332900 1099999.9999999900 - 0.026688140473092700 -0.065708049141524894 1100000.0000000000 - 0.026708183354336300 -0.026708183354331502 1100000.0000000000 - 0.026808945376822799 -0.010953448518072600 1100000.0000000000 - 0.026818894524457400 -0.0045303225100358996 1100000.0000000000 - 0.026778415199064001 -0.0017799942356201599 1100000.0000000000 - 0.026542051163560201 -0.00059189191256001398 1100000.0000000000 - 0.026265382059914400 -9.9622181600647903e-06 1100000.0000000000 - 0.025977218944228001 0.00061316119318962096 1100000.0000000000 - 0.025388258790825600 0.0010480563152423000 1100000.0000000000 - 0.024427604926184902 0.0014839438914448400 1100000.0000000000 - 0.022892096581790498 0.0023118283843173298 1100000.0000000000 - 0.020488671518546501 0.0033323943731355899 1100000.0000000000 - 0.016704142781717599 0.0047609301726432704 1100000.0000000000 - 0.011285942881948801 0.0065054127572382898 1100000.0000000000 - 0.0038650724249613198 0.0085422200782529593 1100000.0000000000 --0.0058039722389924900 0.010534870794257200 1100000.0000000000 --0.017516071261367901 0.012123883548426900 1100000.0000000000 --0.030824764997928501 0.012941388987009399 1100000.0000000000 --0.044538526868001700 0.012366141660020201 1100000.0000000000 --0.057182386353284098 0.010451645324893300 1100000.0000000000 --0.066931311391265097 0.0069189436121548801 1100000.0000000000 --0.072273693126036598 0.0024896883240447098 1100000.0000000000 --0.072273693126080493 -0.0024896883240425999 1100000.0000000000 --0.066931311391227599 -0.0069189436121506803 1100000.0000000000 --0.057182386353324399 -0.010451645324894900 1100000.0000000000 --0.044538526867977497 -0.012366141660015000 1100000.0000000000 --0.030824764997956600 -0.012941388987010600 1100000.0000000000 --0.017516071261365000 -0.012123883548423900 1100000.0000000000 --0.0058039722389989501 -0.010534870794257601 1100000.0000000000 - 0.0038650724249483402 -0.0085422200782541598 1100000.0000000000 - 0.011285942881964901 -0.0065054127572352202 1100000.0000000000 - 0.016704142781710701 -0.0047609301726438897 1100000.0000000000 - 0.020488671518552801 -0.0033323943731360800 1100000.0000000000 - 0.022892096581783601 -0.0023118283843152000 1100000.0000000000 - 0.024427604926194300 -0.0014839438914462199 1100000.0000000000 - 0.025388258790816701 -0.0010480563152449401 1100000.0000000000 - 0.025977218944232501 -0.00061316119318797298 1100000.0000000000 - 0.026265382059913200 9.9622181589118294e-06 1100000.0000000000 - 0.026542051163550701 0.00059189191255844102 1100000.0000000000 - 0.026778415199070899 0.0017799942356205201 1100000.0000000000 - 0.026818894524451999 0.0045303225100433997 1100000.0000000000 - 0.026808945376827500 0.010953448518068299 1100000.0000000000 - 0.026708183354326499 0.026708183354334100 1100000.0000000000 - 0.026688140473101099 0.065708049141531097 1100000.0000000000 - 0.026903269578267199 0.16136296399330699 1099999.9999999900 - 0.027090664487519699 0.39544751051413801 1099999.9999999299 - 0.026830941916427799 0.96834367044786895 1099999.9999995700 - 0.026591832727956101 2.3717579516769800 1099999.9999974400 - 0.026611810172196500 5.8096953470988204 1099999.9999846600 - 0.026395833840089301 14.231294894316800 1099999.9999079399 - 0.025984257543223001 34.860997948900703 1099999.9994476000 - 0.025204827668057400 85.394616637643495 1099999.9966853401 - 0.024196353594387199 209.17778786434201 1099999.9801112099 - 0.022773806052757799 512.37217869786502 1099999.8806703300 - 0.020239190959211700 1254.9348534814701 1099999.2841536400 - 0.016589145717517101 3073.0809462038201 1099995.7073432100 - 0.011964870260231001 7521.8319168626103 1099974.2824469199 - 0.0063108669425309804 18389.524762349600 1099846.2735214501 - 0.00075397339905372703 44828.517147009399 1099086.1677095201 --0.0025377643292086101 108456.75913676800 1094640.1835295199 --0.0011936104182577400 256943.74104813300 1069569.9668260100 - 0.0054472476091318601 570452.79791293095 940523.04881555599 - 0.0058435385378374097 -570452.77970908198 940523.05985668499 - 0.0019614156550721100 -256943.72918822200 1069569.9696751300 - 0.00020539158988947499 -108456.75535104101 1094640.1839046101 - 0.00083290913235654896 -44828.518541328798 1099086.1676526500 - 0.0026458783485878400 -18389.528141802501 1099846.2734649400 - 0.0046035470966218003 -7521.8356247869897 1099974.2824215600 - 0.0065831303976143602 -3073.0844304094599 1099995.7073334800 - 0.0081832741999388701 -1254.9373106300100 1099999.2841508300 - 0.0090921225562792599 -512.37375689671001 1099999.8806696001 - 0.0097649957027986997 -209.17890096074601 1099999.9801109901 - 0.010292587969415699 -85.395472282538904 1099999.9966852800 - 0.010595032873276400 -34.861447282906902 1099999.9994475800 - 0.010731227425971400 -14.231646320630700 1099999.9999079399 - 0.010728659323285501 -5.8097483851575697 1099999.9999846600 - 0.010978350725475899 -2.3718565874997601 1099999.9999974400 - 0.011132599556119900 -0.96848363463338005 1099999.9999995700 - 0.011118347036423400 -0.39535810280924100 1099999.9999999299 - 0.010851723012456399 -0.16125812386461999 1099999.9999999900 - 0.010774325034491000 -0.065688112014391606 1100000.0000000000 - 0.010953448518069901 -0.026808945376827001 1100000.0000000000 - 0.010933518795621400 -0.010933518795618600 1100000.0000000000 - 0.010874109119890400 -0.0043607048123114802 1100000.0000000000 - 0.010603504915706099 -0.0015825571298409200 1100000.0000000000 - 0.010339496842526700 -0.00034352879571244597 1100000.0000000000 - 0.0099978652817960308 0.00053975328232744996 1100000.0000000000 - 0.0093050255267079600 0.0012085983776921900 1100000.0000000000 - 0.0081084917204801103 0.0019545729367192702 1100000.0000000000 - 0.0059482905711715902 0.0032403444591432898 1100000.0000000000 - 0.0024148166848962098 0.0051490939616561796 1100000.0000000000 --0.0033190942239448400 0.0077517709797653303 1100000.0000000000 --0.012157694374569501 0.011344887231690999 1100000.0000000000 --0.024949981001765102 0.015832473096997500 1100000.0000000000 --0.042967921008436799 0.021082488132889800 1100000.0000000000 --0.066632419248448399 0.026266201926463100 1100000.0000000000 --0.096075429243837399 0.030749151061609001 1100000.0000000000 --0.12989087131202501 0.032995482055256299 1099999.9999999900 --0.16534626803438099 0.032112117052729199 1099999.9999999900 --0.19834924107503199 0.027204829058068800 1099999.9999999800 --0.22404698045599500 0.018281883855658401 1099999.9999999800 --0.23820471679606400 0.0064935284401628802 1099999.9999999700 --0.23820471679599900 -0.0064935284401634501 1099999.9999999700 --0.22404698045605900 -0.018281883855661599 1099999.9999999800 --0.19834924107496499 -0.027204829058064900 1099999.9999999800 --0.16534626803444399 -0.032112117052733501 1099999.9999999900 --0.12989087131197199 -0.032995482055248201 1099999.9999999900 --0.096075429243892799 -0.030749151061616301 1100000.0000000000 --0.066632419248427804 -0.026266201926456401 1100000.0000000000 --0.042967921008463202 -0.021082488132896701 1100000.0000000000 --0.024949981001783202 -0.015832473097004401 1100000.0000000000 --0.012157694374551100 -0.011344887231685500 1100000.0000000000 --0.0033190942239449900 -0.0077517709797640102 1100000.0000000000 - 0.0024148166848995400 -0.0051490939616589603 1100000.0000000000 - 0.0059482905711707003 -0.0032403444591387900 1100000.0000000000 - 0.0081084917204824105 -0.0019545729367183699 1100000.0000000000 - 0.0093050255267002595 -0.0012085983776935099 1100000.0000000000 - 0.0099978652817973197 -0.00053975328232381799 1100000.0000000000 - 0.010339496842527400 0.00034352879571065601 1100000.0000000000 - 0.010603504915698799 0.0015825571298393000 1100000.0000000000 - 0.010874109119891701 0.0043607048123086700 1100000.0000000000 - 0.010933518795625201 0.010933518795628500 1100000.0000000000 - 0.010953448518067500 0.026808945376827001 1100000.0000000000 - 0.010774325034495999 0.065688112014379907 1100000.0000000000 - 0.010851723012447601 0.16125812386462701 1099999.9999999900 - 0.011118347036427400 0.39535810280920802 1099999.9999999299 - 0.011132599556119000 0.96848363463337295 1099999.9999995700 - 0.010978350725491800 2.3718565874998698 1099999.9999974400 - 0.010728659323321101 5.8097483851574898 1099999.9999846600 - 0.010731227426019100 14.231646320630601 1099999.9999079399 - 0.010595032873006401 34.861447282907299 1099999.9994475800 - 0.010292587969346000 85.395472282539501 1099999.9966852800 - 0.0097649957036854904 209.17890096074601 1099999.9801109901 - 0.0090921225556383194 512.37375689671001 1099999.8806696001 - 0.0081832741993363000 1254.9373106300100 1099999.2841508300 - 0.0065831304052450697 3073.0844304094599 1099995.7073334800 - 0.0046035470949091399 7521.8356247869897 1099974.2824215600 - 0.0026458783394711599 18389.528141802501 1099846.2734649400 - 0.00083290915924192103 44828.518541328798 1099086.1676526500 - 0.00020539157728914300 108456.75535104101 1094640.1839046101 - 0.0019614156269276602 256943.72918822200 1069569.9696751300 - 0.0058435384149321500 570452.77970908198 940523.05985668499 - 0.0037056891603465801 -570452.77227435203 940523.06436605100 - 0.0016752205578388700 -256943.72379700901 1069569.9709702600 - 0.00065796161923300101 -108456.75305770400 1094640.1841318400 - 0.00053651286671506902 -44828.518315706599 1099086.1676618501 - 0.0010644430504582500 -18389.529272772801 1099846.2734460300 - 0.0019056302489072500 -7521.8371369164497 1099974.2824112200 - 0.0026989839975301499 -3073.0855312342101 1099995.7073304099 - 0.0033389526446333901 -1254.9383765893399 1099999.2841496200 - 0.0036835259992308899 -512.37458556071499 1099999.8806692101 - 0.0038957347308197199 -209.17937014959500 1099999.9801109000 - 0.0041578332184356304 -85.395713170353005 1099999.9966852600 - 0.0042847780281446701 -34.861684628649598 1099999.9994475699 - 0.0043894777835037100 -14.231620519111400 1099999.9999079399 - 0.0045781260173939301 -5.8100099273830796 1099999.9999846600 - 0.0045820120088666903 -2.3721383919957000 1099999.9999974400 - 0.0046393876832845496 -0.96838973032025299 1099999.9999995700 - 0.0045230351259927196 -0.39516562500423202 1099999.9999999299 - 0.0043203956035988804 -0.16114492169962399 1099999.9999999900 - 0.0043999812188551804 -0.065767720543353198 1100000.0000000000 - 0.0045303225100373698 -0.026818894524455201 1100000.0000000000 - 0.0043607048123103197 -0.010874109119892301 1100000.0000000000 - 0.0041668236563838102 -0.0041668236563822203 1100000.0000000000 - 0.0038689347992266901 -0.0013241104520324400 1100000.0000000000 - 0.0034763653672150799 0.00016564602820774100 1100000.0000000000 - 0.0026772614758922299 0.0012517589900792900 1100000.0000000000 - 0.0012084794579301000 0.0024092510552707401 1100000.0000000000 --0.0014699462308791300 0.0043566172592283898 1100000.0000000000 --0.0062215207821598902 0.0072931663937353900 1100000.0000000000 --0.014109351304015900 0.011719621951447200 1100000.0000000000 --0.027136342036772901 0.018038777081203199 1100000.0000000000 --0.047269249152568200 0.026812759711351900 1100000.0000000000 --0.077571700845326899 0.038132698381910003 1100000.0000000000 --0.12071872297480400 0.051363259063730099 1099999.9999999900 --0.17888657999955501 0.065236854586395707 1099999.9999999800 --0.25254594534168900 0.077409030690781699 1099999.9999999700 --0.33854678416235801 0.084403350862041607 1099999.9999999399 --0.43033768620817597 0.083330106046981406 1099999.9999999099 --0.51665750967961499 0.071186493758658306 1099999.9999998801 --0.58478410167255601 0.048401925401400002 1099999.9999998400 --0.62240519900154501 0.017073400962298899 1099999.9999998200 --0.62240519900159497 -0.017073400962308201 1099999.9999998200 --0.58478410167249095 -0.048401925401405699 1099999.9999998400 --0.51665750967966195 -0.071186493758668201 1099999.9999998801 --0.43033768620808899 -0.083330106046980698 1099999.9999999099 --0.33854678416241502 -0.084403350862049600 1099999.9999999399 --0.25254594534159502 -0.077409030690770694 1099999.9999999700 --0.17888657999962901 -0.065236854586405393 1099999.9999999800 --0.12071872297474499 -0.051363259063716797 1099999.9999999900 --0.077571700845391098 -0.038132698381924797 1100000.0000000000 --0.047269249152599897 -0.026812759711369701 1100000.0000000000 --0.027136342036748501 -0.018038777081191400 1100000.0000000000 --0.014109351304017800 -0.011719621951448499 1100000.0000000000 --0.0062215207821603100 -0.0072931663937387302 1100000.0000000000 --0.0014699462308771401 -0.0043566172592205696 1100000.0000000000 - 0.0012084794579297000 -0.0024092510552704499 1100000.0000000000 - 0.0026772614758856900 -0.0012517589900818799 1100000.0000000000 - 0.0034763653672199800 -0.00016564602820530301 1100000.0000000000 - 0.0038689347992268801 0.0013241104520328401 1100000.0000000000 - 0.0041668236563819601 0.0041668236563832100 1100000.0000000000 - 0.0043607048123102598 0.010874109119887700 1100000.0000000000 - 0.0045303225100433000 0.026818894524459801 1100000.0000000000 - 0.0043999812188513102 0.065767720543358693 1100000.0000000000 - 0.0043203956036048296 0.16114492169960301 1099999.9999999900 - 0.0045230351259814301 0.39516562500423302 1099999.9999999299 - 0.0046393876832705903 0.96838973032023401 1099999.9999995700 - 0.0045820120088923503 2.3721383919956400 1099999.9999974400 - 0.0045781260175149297 5.8100099273831596 1099999.9999846600 - 0.0043894777833552402 14.231620519111701 1099999.9999079399 - 0.0042847780280537697 34.861684628649897 1099999.9994475699 - 0.0041578332185834201 85.395713170352195 1099999.9966852600 - 0.0038957347305602899 209.17937014959500 1099999.9801109000 - 0.0036835260013864100 512.37458556071897 1099999.8806692101 - 0.0033389526458847099 1254.9383765893299 1099999.2841496200 - 0.0026989839930361900 3073.0855312342101 1099995.7073304099 - 0.0019056302592113301 7521.8371369164597 1099974.2824112200 - 0.0010644430579023101 18389.529272772801 1099846.2734460300 - 0.00053651288469188404 44828.518315706599 1099086.1676618501 - 0.00065796169401036901 108456.75305770400 1094640.1841318400 - 0.0016752205467819900 256943.72379700901 1069569.9709702600 - 0.0037056891491127398 570452.77227435203 940523.06436605100 - 0.0019191494253026000 -570452.76938541199 940523.06611827097 - 0.0010865246555828800 -256943.72149191899 1069569.9715240200 - 0.00040984353388779098 -108456.75186881200 1094640.1842496300 - 0.00032196138805834598 -44828.518177038597 1099086.1676675100 - 0.00049939107584509102 -18389.529436684901 1099846.2734432900 - 0.00075039204299531901 -7521.8375911673702 1099974.2824081201 - 0.0011943717145667500 -3073.0862960807799 1099995.7073282700 - 0.0014155300046807401 -1254.9386873667499 1099999.2841492600 - 0.0014061130063932400 -512.37468913297698 1099999.8806691701 - 0.0015461348160129200 -209.17953670142799 1099999.9801108700 - 0.0017813627511856700 -85.395946452100802 1099999.9966852400 - 0.0018560189550265299 -34.861771538766398 1099999.9994475699 - 0.0018852354372695700 -14.231985125542399 1099999.9999079299 - 0.0018318246265062101 -5.8102157233494998 1099999.9999846600 - 0.0018827189474195599 -2.3719369963696399 1099999.9999974400 - 0.0020016297730987100 -0.96811345037462304 1099999.9999995700 - 0.0017989281248312701 -0.39509225201265302 1099999.9999999299 - 0.0016660393770528399 -0.16128658128671100 1099999.9999999900 - 0.0018835486778496500 -0.065785790057346305 1100000.0000000000 - 0.0017799942356208499 -0.026778415199072800 1100000.0000000000 - 0.0015825571298410700 -0.010603504915702401 1100000.0000000000 - 0.0013241104520326299 -0.0038689347992245100 1100000.0000000000 - 0.00084713591476442605 -0.00084713591476515398 1100000.0000000000 - 1.8938130249372401e-05 0.00099864380779715102 1100000.0000000000 --0.0015850036748671101 0.0026664601557886401 1100000.0000000000 --0.0046920449546871898 0.0053370016885854197 1100000.0000000000 --0.010365889159865801 0.0094980912333035798 1100000.0000000000 --0.020510540871533499 0.016106640545790599 1100000.0000000000 --0.037913045484069798 0.026300665864043699 1100000.0000000000 --0.066852003134227803 0.041425255796030597 1100000.0000000000 --0.11301503121763400 0.062924827819013998 1099999.9999999900 --0.18382235610153999 0.090972564499738395 1099999.9999999800 --0.28694707471221897 0.12500532984554999 1099999.9999999600 --0.42934171025985901 0.16184203782303400 1099999.9999999001 --0.61292828732133597 0.19529343282268399 1099999.9999998100 --0.83209670852019302 0.21680918907232100 1099999.9999996601 --1.0695596637381799 0.21668652312021100 1099999.9999994601 --1.2966720893090300 0.18751381580717399 1099999.9999992200 --1.4775242447523900 0.12822729140740799 1099999.9999990000 --1.5782775178577200 0.045603450209252702 1099999.9999988701 --1.5782775178577200 -0.045603450209257101 1099999.9999988701 --1.4775242447523800 -0.12822729140742400 1099999.9999990000 --1.2966720893090100 -0.18751381580717300 1099999.9999992200 --1.0695596637381799 -0.21668652312023501 1099999.9999994601 --0.83209670852011697 -0.21680918907231300 1099999.9999996601 --0.61292828732135296 -0.19529343282270001 1099999.9999998100 --0.42934171025973500 -0.16184203782301301 1099999.9999999001 --0.28694707471227798 -0.12500532984555501 1099999.9999999600 --0.18382235610141701 -0.090972564499706504 1099999.9999999800 --0.11301503121774900 -0.062924827819043599 1099999.9999999900 --0.066852003134264995 -0.041425255796059900 1100000.0000000000 --0.037913045484041397 -0.026300665864022101 1100000.0000000000 --0.020510540871540198 -0.016106640545797399 1100000.0000000000 --0.010365889159862300 -0.0094980912333087909 1100000.0000000000 --0.0046920449546838097 -0.0053370016885769204 1100000.0000000000 --0.0015850036748654200 -0.0026664601557883599 1100000.0000000000 - 1.8938130241997699e-05 -0.00099864380780043897 1100000.0000000000 - 0.00084713591476799405 0.00084713591476579995 1100000.0000000000 - 0.0013241104520335301 0.0038689347992266602 1100000.0000000000 - 0.0015825571298410199 0.010603504915706901 1100000.0000000000 - 0.0017799942356207701 0.026778415199068799 1100000.0000000000 - 0.0018835486778515001 0.065785790057343904 1100000.0000000000 - 0.0016660393770521499 0.16128658128671899 1099999.9999999900 - 0.0017989281248187701 0.39509225201262899 1099999.9999999299 - 0.0020016297731008802 0.96811345037459595 1099999.9999995700 - 0.0018827189474615899 2.3719369963696200 1099999.9999974400 - 0.0018318246264155300 5.8102157233495602 1099999.9999846600 - 0.0018852354372604100 14.231985125542399 1099999.9999079299 - 0.0018560189553252599 34.861771538766497 1099999.9994475699 - 0.0017813627514957099 85.395946452101597 1099999.9966852400 - 0.0015461348154853999 209.17953670142700 1099999.9801108700 - 0.0014061130057540501 512.37468913297505 1099999.8806691701 - 0.0014155300069953500 1254.9386873667600 1099999.2841492600 - 0.0011943717163632600 3073.0862960807699 1099995.7073282700 - 0.00075039205390676101 7521.8375911673502 1099974.2824081201 - 0.00049939110417377395 18389.529436684901 1099846.2734432900 - 0.00032196139236114802 44828.518177038597 1099086.1676675100 - 0.00040984356782814698 108456.75186881200 1094640.1842496300 - 0.0010865246970715500 256943.72149191899 1069569.9715240200 - 0.0019191494867596801 570452.76938541199 940523.06611827202 - 0.0010062074100973799 -570452.76836527605 940523.06673701096 - 0.00043949369139862200 -256943.72049701901 1069569.9717630199 - 0.00020314950529916700 -108456.75125848800 1094640.1843101000 - 0.00012931357934628800 -44828.517937960300 1099086.1676772600 - 0.00021060847415313601 -18389.529697758899 1099846.2734389300 - 0.00041734170584665402 -7521.8378217850604 1099974.2824065399 - 0.00059668359272899499 -3073.0862382754399 1099995.7073284299 - 0.00054365161332389398 -1254.9389023943700 1099999.2841490200 - 0.00053418662366938802 -512.37484016863800 1099999.8806690900 - 0.00075808560701644896 -209.17964760484500 1099999.9801108500 - 0.00077127971637324896 -85.396059818346501 1099999.9966852299 - 0.00072002975262787600 -34.861956841918101 1099999.9994475699 - 0.00064690188371729505 -14.231994191294600 1099999.9999079299 - 0.00079276381475808602 -5.8100997393315801 1099999.9999846600 - 0.00098156873257594104 -2.3717879212074799 1099999.9999974400 - 0.00085253785087398498 -0.96816318589904904 1099999.9999995700 - 0.00061518944738859702 -0.39521705565243598 1099999.9999999299 - 0.00064645438686004701 -0.16120025875574401 1099999.9999999900 - 0.00076213557231335203 -0.065752185175260394 1100000.0000000000 - 0.00059189191255802599 -0.026542051163555999 1100000.0000000000 - 0.00034352879571118402 -0.010339496842524200 1100000.0000000000 --0.00016564602820600500 -0.0034763653672180502 1100000.0000000000 --0.00099864380779722604 -1.8938130249449901e-05 1100000.0000000000 --0.0025192786415955200 0.0025192786415997501 1100000.0000000000 --0.0059376708489570600 0.0059685243863026403 1100000.0000000000 --0.012152410781563301 0.011372882422388200 1100000.0000000000 --0.024020809124852799 0.020305231054394801 1100000.0000000000 --0.045364076010445099 0.035091470193065702 1100000.0000000000 --0.082890989601483500 0.058526628836700102 1100000.0000000000 --0.14666807119100800 0.094452809858344103 1099999.9999999900 --0.25106257997422698 0.14601304708891499 1099999.9999999600 --0.41507368451381399 0.21588689442310399 1099999.9999999001 --0.66017089218322800 0.30299729417379101 1099999.9999997600 --1.0064638720068499 0.40036619922258099 1099999.9999994701 --1.4634620387531101 0.49265488335914098 1099999.9999989199 --2.0209664567690799 0.55668826301802099 1099999.9999980000 --2.6365874350318701 0.56478111642813000 1099999.9999966901 --3.2352672676276000 0.49495129353815998 1099999.9999951301 --3.7176908730199600 0.34121750875503698 1099999.9999936600 --3.9887624267592101 0.12198736134104800 1099999.9999927599 --3.9887624267591102 -0.12198736134104700 1099999.9999927599 --3.7176908730200799 -0.34121750875502699 1099999.9999936600 --3.2352672676275298 -0.49495129353817702 1099999.9999951301 --2.6365874350319700 -0.56478111642811701 1099999.9999966901 --2.0209664567690502 -0.55668826301806895 1099999.9999980000 --1.4634620387531101 -0.49265488335911800 1099999.9999989199 --1.0064638720068300 -0.40036619922262801 1099999.9999994701 --0.66017089218312597 -0.30299729417375099 1099999.9999997600 --0.41507368451380500 -0.21588689442309700 1099999.9999999001 --0.25106257997403603 -0.14601304708885199 1099999.9999999600 --0.14666807119116801 -0.094452809858394896 1099999.9999999900 --0.082890989601509493 -0.058526628836734700 1100000.0000000000 --0.045364076010420203 -0.035091470193034498 1100000.0000000000 --0.024020809124864199 -0.020305231054407100 1100000.0000000000 --0.012152410781555600 -0.011372882422396100 1100000.0000000000 --0.0059376708489554900 -0.0059685243862942303 1100000.0000000000 --0.0025192786415915601 -0.0025192786415965500 1100000.0000000000 --0.00099864380780430501 1.8938130246124501e-05 1100000.0000000000 --0.00016564602820636699 0.0034763653672164399 1100000.0000000000 - 0.00034352879571231500 0.010339496842526099 1100000.0000000000 - 0.00059189191255914597 0.026542051163563399 1100000.0000000000 - 0.00076213557231623200 0.065752185175255606 1100000.0000000000 - 0.00064645438685403099 0.16120025875574201 1099999.9999999900 - 0.00061518944739445496 0.39521705565244702 1099999.9999999299 - 0.00085253785086064301 0.96816318589896899 1099999.9999995700 - 0.00098156873251357404 2.3717879212074600 1099999.9999974400 - 0.00079276381482934802 5.8100997393317098 1099999.9999846600 - 0.00064690188384983400 14.231994191294699 1099999.9999079299 - 0.00072002975259291004 34.861956841917802 1099999.9994475699 - 0.00077127971639128802 85.396059818346600 1099999.9966852299 - 0.00075808560776271497 209.17964760484699 1099999.9801108500 - 0.00053418662190562603 512.37484016863903 1099999.8806690900 - 0.00054365160936717296 1254.9389023943600 1099999.2841490200 - 0.00059668359986684704 3073.0862382754299 1099995.7073284299 - 0.00041734170273322898 7521.8378217850404 1099974.2824065399 - 0.00021060846942611201 18389.529697758899 1099846.2734389300 - 0.00012931357765705599 44828.517937960300 1099086.1676772600 - 0.00020314949164276300 108456.75125848800 1094640.1843101000 - 0.00043949363537885500 256943.72049701901 1069569.9717630199 - 0.0010062073315246899 570452.76836527605 940523.06673701096 - 0.00032227826608712500 -570452.76797587401 940523.06697319401 - 0.00024450154792258198 -256943.72011626299 1069569.9718544900 - 3.7852391945229903e-05 -108456.75094122200 1094640.1843415401 - 4.4565181077582302e-05 -44828.517921836799 1099086.1676779201 - 0.00012053632101391700 -18389.529677396898 1099846.2734392700 - 0.00023156035076101099 -7521.8379440027602 1099974.2824057001 - 0.00028366090208093700 -3073.0865005926098 1099995.7073277000 - 0.00023495215639122299 -1254.9387511062801 1099999.2841491899 - 0.00023831315606715199 -512.37483841643598 1099999.8806691000 - 0.00030231336470533198 -209.17971312141600 1099999.9801108399 - 0.00031371712110780302 -85.396122951886696 1099999.9966852299 - 0.00020945538453540199 -34.862008264381799 1099999.9994475599 - 0.00039000257205192999 -14.232073610727500 1099999.9999079299 - 0.00047936513344202700 -5.8101115129256602 1099999.9999846600 - 0.00039049638215984500 -2.3717979131233702 1099999.9999974400 - 0.00019364890262982100 -0.96814539339849803 1099999.9999995700 - 8.8080901302231996e-05 -0.39504147153002700 1099999.9999999299 - 0.00021461373858579501 -0.16121149610478899 1099999.9999999900 - 0.00029291978623164201 -0.065602780084325699 1100000.0000000000 - 9.9622181598992394e-06 -0.026265382059915101 1100000.0000000000 --0.00053975328232521997 -0.0099978652817994604 1100000.0000000000 --0.0012517589900791200 -0.0026772614758898499 1100000.0000000000 --0.0026664601557870901 0.0015850036748728900 1100000.0000000000 --0.0059685243862981898 0.0059376708489596100 1100000.0000000000 --0.012404765421697101 0.012404765421678600 1100000.0000000000 --0.024842747333099099 0.023448942047868099 1100000.0000000000 --0.048791291122618499 0.042794423262499999 1100000.0000000000 --0.092923912979635107 0.075392109363102602 1099999.9999999900 --0.17254163350500101 0.12885495381082901 1099999.9999999800 --0.31124293328682501 0.21216130402553099 1099999.9999999399 --0.54480212072987899 0.33602435582926898 1099999.9999998100 --0.92103081173736001 0.50860640536959800 1099999.9999995001 --1.4988232893908700 0.73055562125049101 1099999.9999987399 --2.3356907028023701 0.98718080850256296 1099999.9999970801 --3.4695128848843799 1.2410464941562600 1099999.9999938300 --4.8848107373636500 1.4297541332868000 1099999.9999882199 --6.4828783064096296 1.4755819369604299 1099999.9999799100 --8.0648352936545606 1.3109393121288500 1099999.9999696501 --9.3586866702817098 0.91244944562781405 1099999.9999598099 --10.091843773464200 0.32795575395113002 1099999.9999536599 --10.091843773464500 -0.32795575395114301 1099999.9999536599 --9.3586866702814895 -0.91244944562779395 1099999.9999598099 --8.0648352936547596 -1.3109393121288500 1099999.9999696501 --6.4828783064094502 -1.4755819369604000 1099999.9999799100 --4.8848107373638996 -1.4297541332868200 1099999.9999882199 --3.4695128848843400 -1.2410464941563100 1099999.9999938300 --2.3356907028024798 -0.98718080850254897 1099999.9999970801 --1.4988232893908799 -0.73055562125060203 1099999.9999987399 --0.92103081173734602 -0.50860640536954604 1099999.9999995001 --0.54480212072977496 -0.33602435582925100 1099999.9999998100 --0.31124293328660602 -0.21216130402543401 1099999.9999999399 --0.17254163350517701 -0.12885495381090201 1099999.9999999800 --0.092923912979638201 -0.075392109363134299 1099999.9999999900 --0.048791291122604601 -0.042794423262459698 1100000.0000000000 --0.024842747333113101 -0.023448942047882601 1100000.0000000000 --0.012404765421688300 -0.012404765421690500 1100000.0000000000 --0.0059685243862990303 -0.0059376708489532999 1100000.0000000000 --0.0026664601557808000 -0.0015850036748666200 1100000.0000000000 --0.0012517589900847800 0.0026772614758891599 1100000.0000000000 --0.00053975328232727898 0.0099978652817979893 1100000.0000000000 - 9.9622181621074797e-06 0.026265382059909199 1100000.0000000000 - 0.00029291978623006802 0.065602780084333401 1100000.0000000000 - 0.00021461373859309199 0.16121149610479499 1099999.9999999900 - 8.8080901305518294e-05 0.39504147153001701 1099999.9999999299 - 0.00019364890261806399 0.96814539339851102 1099999.9999995700 - 0.00039049638211535601 2.3717979131232800 1099999.9999974400 - 0.00047936513336636801 5.8101115129255900 1099999.9999846600 - 0.00039000257220097700 14.232073610727600 1099999.9999079299 - 0.00020945538486442301 34.862008264382197 1099999.9994475599 - 0.00031371712111789602 85.396122951886994 1099999.9966852299 - 0.00030231336364948099 209.17971312141600 1099999.9801108399 - 0.00023831315554852001 512.37483841643700 1099999.8806691000 - 0.00023495215827114299 1254.9387511062700 1099999.2841491899 - 0.00028366089499922098 3073.0865005925998 1099995.7073277000 - 0.00023156034182611601 7521.8379440027502 1099974.2824057001 - 0.00012053629015933200 18389.529677396898 1099846.2734392700 - 4.4565159113042299e-05 44828.517921836799 1099086.1676779201 - 3.7852361772500801e-05 108456.75094122200 1094640.1843415401 - 0.00024450150347096598 256943.72011626299 1069569.9718544900 - 0.00032227814555785202 570452.76797587401 940523.06697319401 - 0.00010268245171038400 -570452.76790761796 940523.06701459305 --8.5075144858684097e-05 -256943.71988771300 1069569.9719094001 --7.4595031145848595e-05 -108456.75086249100 1094640.1843493399 --2.8589584697074201e-05 -44828.517964555002 1099086.1676761799 - 6.9531746479154798e-05 -18389.529875204498 1099846.2734359601 - 0.00018492372337914999 -7521.8379281866801 1099974.2824058100 - 0.00017284710996417999 -3073.0863085950300 1099995.7073282299 - 2.5112684288378900e-05 -1254.9389092991901 1099999.2841490100 - 9.6072453722960405e-05 -512.37480074005805 1099999.8806691100 - 0.00021914423211267300 -209.17979477733601 1099999.9801108199 - 7.9344815152398494e-05 -85.396238039905398 1099999.9966852199 - 0.00012065671551152800 -34.862040898781302 1099999.9994475599 - 0.00013442993146201701 -14.232101812921901 1099999.9999079299 - 0.00011525290696667901 -5.8100194238817897 1099999.9999846600 - 6.1566274924874600e-05 -2.3716554288037202 1099999.9999974400 --2.1601458735895799e-05 -0.96804590760685005 1099999.9999995700 --3.3657941982762802e-05 -0.39513884586935499 1099999.9999999299 - 0.00017505360082215699 -0.16109295534733400 1099999.9999999900 --1.1781003240787300e-05 -0.065349977889591307 1100000.0000000000 --0.00061316119318860203 -0.025977218944231099 1100000.0000000000 --0.0012085983776908601 -0.0093050255267008598 1100000.0000000000 --0.0024092510552705801 -0.0012084794579259701 1100000.0000000000 --0.0053370016885820604 0.0046920449546848601 1100000.0000000000 --0.011372882422404600 0.012152410781547700 1100000.0000000000 --0.023448942047860501 0.024842747333110499 1100000.0000000000 --0.047750018499691703 0.047750018499710001 1100000.0000000000 --0.095056454410473307 0.088640857330010994 1099999.9999999900 --0.18485503799776801 0.15985195966698901 1099999.9999999700 --0.35066247561028202 0.27913116690799400 1099999.9999999099 --0.64846138284109200 0.47142816487603201 1099999.9999997099 --1.1628449125066000 0.76557276822729303 1099999.9999991199 --2.0162529248677501 1.1883724775779401 1099999.9999975101 --3.3633223830745900 1.7502424213060901 1099999.9999934700 --5.3721840682438504 2.4238673739120302 1099999.9999842099 --8.1696535522943794 3.1193649314124201 1099999.9999652400 --11.756624978938801 3.6724115649279900 1099999.9999310400 --15.905837967709200 3.8629792627057098 1099999.9998782200 --20.101066911129202 3.4853506623222001 1099999.9998108200 --23.588289901512699 2.4527189118751700 1099999.9997443501 --25.585148273674100 0.88656420170521599 1099999.9997020999 --25.585148273673799 -0.88656420170523298 1099999.9997020999 --23.588289901512901 -2.4527189118752801 1099999.9997443501 --20.101066911128800 -3.4853506623220798 1099999.9998108200 --15.905837967709299 -3.8629792627057600 1099999.9998782200 --11.756624978938500 -3.6724115649278102 1099999.9999310400 --8.1696535522947098 -3.1193649314125000 1099999.9999652400 --5.3721840682437101 -2.4238673739119898 1099999.9999842099 --3.3633223830747401 -1.7502424213061101 1099999.9999934700 --2.0162529248678700 -1.1883724775781299 1099999.9999975101 --1.1628449125066700 -0.76557276822725095 1099999.9999991199 --0.64846138284093402 -0.47142816487601302 1099999.9999997099 --0.35066247561009600 -0.27913116690788098 1099999.9999999099 --0.18485503799792199 -0.15985195966707899 1099999.9999999700 --0.095056454410455599 -0.088640857330034906 1099999.9999999900 --0.047750018499688997 -0.047750018499662900 1100000.0000000000 --0.023448942047872800 -0.024842747333122101 1100000.0000000000 --0.011372882422395600 -0.012152410781562199 1100000.0000000000 --0.0053370016885858603 -0.0046920449546817298 1100000.0000000000 --0.0024092510552634699 0.0012084794579326700 1100000.0000000000 --0.0012085983776934999 0.0093050255266993800 1100000.0000000000 --0.00061316119319194799 0.025977218944235901 1100000.0000000000 --1.1781003239176899e-05 0.065349977889583202 1100000.0000000000 - 0.00017505360082081499 0.16109295534732301 1099999.9999999900 --3.3657941974353303e-05 0.39513884586936798 1099999.9999999299 --2.1601458722845999e-05 0.96804590760687004 1099999.9999995700 - 6.1566274885340604e-05 2.3716554288037699 1099999.9999974400 - 0.00011525290690268700 5.8100194238816201 1099999.9999846600 - 0.00013442993148928499 14.232101812921700 1099999.9999079299 - 0.00012065671561772700 34.862040898781402 1099999.9994475599 - 7.9344814960760095e-05 85.396238039906507 1099999.9966852199 - 0.00021914423201583699 209.17979477733701 1099999.9801108199 - 9.6072454287182306e-05 512.37480074005703 1099999.8806691100 - 2.5112683818585601e-05 1254.9389092991901 1099999.2841490100 - 0.00017284711135713600 3073.0863085950300 1099995.7073282299 - 0.00018492371809392401 7521.8379281866801 1099974.2824058100 - 6.9531729055798393e-05 18389.529875204498 1099846.2734359601 --2.8589610166839699e-05 44828.517964555002 1099086.1676761799 --7.4595104987400406e-05 108456.75086249100 1094640.1843493399 --8.5075121995952004e-05 256943.71988771300 1069569.9719094001 - 0.00010268244779364800 570452.76790761796 940523.06701459305 --0.00015690711528457900 -570452.76792816096 940523.06700213300 --8.5906307916084503e-05 -256943.71994872100 1069569.9718947399 --0.00013273220411314901 -108456.75081922900 1094640.1843536200 --3.6277828723811598e-05 -44828.518011269902 1099086.1676742700 - 6.8388472487324205e-05 -18389.529907213899 1099846.2734354299 - 0.00011751985314474800 -7521.8380687889003 1099974.2824048500 - 2.7954756596611900e-05 -3073.0864117889901 1099995.7073279400 - 1.1178670548596800e-05 -1254.9386671046400 1099999.2841492901 - 0.00011935926547084300 -512.37494359469201 1099999.8806690499 - 4.3145117745557100e-05 -209.17983169213900 1099999.9801108199 --2.2771226369002701e-05 -85.396175123453304 1099999.9966852199 --3.8458723048826002e-05 -34.862115444764797 1099999.9994475599 - 6.3630471402188496e-05 -14.232034034843799 1099999.9999079299 - 6.7161269365091202e-05 -5.8098973349224696 1099999.9999846600 --3.4993194470714600e-06 -2.3717196390290698 1099999.9999974400 --9.3318850858255505e-05 -0.96819244217033795 1099999.9999995700 --2.0583102483462102e-05 -0.39491184827207199 1099999.9999999299 --6.0929039175401698e-05 -0.16090161744391501 1099999.9999999900 --0.00047405444260247698 -0.065145860145579396 1100000.0000000000 --0.0010480563152408800 -0.025388258790819501 1100000.0000000000 --0.0019545729367194298 -0.0081084917204798206 1100000.0000000000 --0.0043566172592258597 0.0014699462308735700 1100000.0000000000 --0.0094980912333159900 0.010365889159857301 1100000.0000000000 --0.020305231054388299 0.024020809124870899 1100000.0000000000 --0.042794423262482797 0.048791291122627700 1100000.0000000000 --0.088640857330033102 0.095056454410448105 1099999.9999999900 --0.18031315271457099 0.18031315271459800 1099999.9999999700 --0.35847862302501798 0.33236221926528198 1099999.9999998901 --0.69825873608955402 0.59597369713599302 1099999.9999996200 --1.3245076822596100 1.0331281066453299 1099999.9999987199 --2.4400493111786501 1.7233818187372001 1099999.9999959399 --4.3463778859338102 2.7485242299047501 1099999.9999879799 --7.4513870812598597 4.1600092601416803 1099999.9999669001 --12.227863194485300 5.9176328253953399 1099999.9999161200 --19.088566979020200 7.8162544568023602 1099999.9998066099 --28.150744360170702 9.4273547132974205 1099999.9995993900 --38.927148126294099 10.132381179951700 1099999.9992645499 --50.087887253536600 9.3041955459502503 1099999.9988202900 --59.542117406774800 6.6306459395821404 1099999.9983685301 --65.021978460147594 2.4122791078579100 1099999.9980756000 --65.021978460147807 -2.4122791078579802 1099999.9980756000 --59.542117406774601 -6.6306459395820001 1099999.9983685301 --50.087887253536898 -9.3041955459505807 1099999.9988202900 --38.927148126293702 -10.132381179951400 1099999.9992645499 --28.150744360170599 -9.4273547132975501 1099999.9995993900 --19.088566979019699 -7.8162544568019001 1099999.9998066099 --12.227863194485700 -5.9176328253955202 1099999.9999161200 --7.4513870812594698 -4.1600092601414103 1099999.9999669001 --4.3463778859339302 -2.7485242299047701 1099999.9999879799 --2.4400493111788402 -1.7233818187373999 1099999.9999959399 --1.3245076822596800 -1.0331281066453100 1099999.9999987199 --0.69825873608942601 -0.59597369713598303 1099999.9999996200 --0.35847862302490002 -0.33236221926517800 1099999.9999998901 --0.18031315271468201 -0.18031315271470000 1099999.9999999700 --0.088640857330005998 -0.095056454410466104 1099999.9999999900 --0.042794423262487502 -0.048791291122581501 1100000.0000000000 --0.020305231054398298 -0.024020809124873602 1100000.0000000000 --0.0094980912333047299 -0.010365889159870301 1100000.0000000000 --0.0043566172592311402 -0.0014699462308767600 1100000.0000000000 --0.0019545729367156702 0.0081084917204883502 1100000.0000000000 --0.0010480563152420899 0.025388258790817599 1100000.0000000000 --0.00047405444260349000 0.065145860145580603 1100000.0000000000 --6.0929039170463103e-05 0.16090161744390899 1099999.9999999900 --2.0583102485218600e-05 0.39491184827206199 1099999.9999999299 --9.3318850878413101e-05 0.96819244217036804 1099999.9999995700 --3.4993194301465601e-06 2.3717196390290800 1099999.9999974400 - 6.7161269432756206e-05 5.8098973349224803 1099999.9999846600 - 6.3630471311997106e-05 14.232034034843601 1099999.9999079299 --3.8458723322209200e-05 34.862115444765102 1099999.9994475599 --2.2771226401541899e-05 85.396175123453801 1099999.9966852199 - 4.3145117912966603e-05 209.17983169214000 1099999.9801108199 - 0.00011935926595504300 512.37494359469304 1099999.8806690499 - 1.1178672038109300e-05 1254.9386671046400 1099999.2841492901 - 2.7954757238636599e-05 3073.0864117889801 1099995.7073279400 - 0.00011751985493087300 7521.8380687889103 1099974.2824048500 - 6.8388463339774707e-05 18389.529907213899 1099846.2734354299 --3.6277869114981100e-05 44828.518011270004 1099086.1676742700 --0.00013273227634126301 108456.75081922900 1094640.1843536200 --8.5906373699728701e-05 256943.71994872100 1069569.9718947399 --0.00015690703104900001 570452.76792816096 940523.06700213300 --0.00013246643755768499 -570452.76800308202 940523.06695669203 --0.00018219355631341700 -256943.71989812099 1069569.9719068999 --9.8729256672093000e-05 -108456.75092014100 1094640.1843436300 --5.2726767724241699e-05 -44828.518179756204 1099086.1676674001 - 4.0772762103969099e-05 -18389.530051879901 1099846.2734330101 - 7.4541263807517203e-05 -7521.8379766440603 1099974.2824054800 - 3.0799223867395698e-05 -3073.0862786294201 1099995.7073283200 --4.9774036611104603e-06 -1254.9388528101999 1099999.2841490700 - 3.0334065601052600e-05 -512.37484259370297 1099999.8806690900 - 1.7623072423001699e-05 -209.17987563077500 1099999.9801108099 --7.7353233651572594e-05 -85.396286723946901 1099999.9966852199 - 5.9612503482710003e-05 -34.862027763231303 1099999.9994475599 --5.4291627002427997e-06 -14.231997858663100 1099999.9999079299 --5.1176699321798298e-05 -5.8099586339472502 1099999.9999846600 --9.7696235018412196e-05 -2.3717327167982400 1099999.9999974400 --0.00014365158055732301 -0.96787496452537203 1099999.9999995700 --0.00010509038027445800 -0.39482130352986300 1099999.9999999299 --0.00019648784785503899 -0.16087155391272501 1099999.9999999900 --0.00064097523370271604 -0.064633424808889603 1100000.0000000000 --0.0014839438914450399 -0.024427604926190300 1100000.0000000000 --0.0032403444591410798 -0.0059482905711762202 1100000.0000000000 --0.0072931663937443004 0.0062215207821588103 1100000.0000000000 --0.016106640545784898 0.020510540871557102 1100000.0000000000 --0.035091470193055002 0.045364076010438500 1100000.0000000000 --0.075392109363119894 0.092923912979609100 1099999.9999999900 --0.15985195966697499 0.18485503799781500 1099999.9999999700 --0.33236221926531800 0.35847862302495298 1099999.9999998901 --0.67909268469711603 0.67909268469713602 1099999.9999995800 --1.3578507491134300 1.2503718389557701 1099999.9999984500 --2.6481045815119302 2.2284858691977401 1099999.9999945599 --5.0190979846165797 3.8245514352104601 1099999.9999819000 --9.2062663620979102 6.2808060074369196 1099999.9999435400 --16.259682544972399 9.7913696307332199 1099999.9998362500 --27.488653781556199 14.347054606842500 1099999.9995629699 --44.179969387478700 19.504850152125300 1099999.9989398599 --66.978330375051897 24.175544665116700 1099999.9976951999 --94.955138015528107 26.626267684302899 1099999.9955793500 --124.74530831504700 24.949988044984799 1099999.9926436800 --150.54358697436200 18.040799544228200 1099999.9895505300 --165.71215447618599 6.6138910101043100 1099999.9874980601 --165.71215447618701 -6.6138910101041102 1099999.9874980601 --150.54358697436101 -18.040799544228101 1099999.9895505300 --124.74530831504801 -24.949988044984600 1099999.9926436800 --94.955138015528803 -26.626267684303599 1099999.9955793500 --66.978330375051897 -24.175544665116199 1099999.9976951999 --44.179969387478302 -19.504850152125499 1099999.9989398599 --27.488653781555801 -14.347054606841800 1099999.9995629699 --16.259682544973000 -9.7913696307336195 1099999.9998362500 --9.2062663620973098 -6.2808060074364098 1099999.9999435400 --5.0190979846167201 -3.8245514352104100 1099999.9999819000 --2.6481045815120599 -2.2284858691978999 1099999.9999945599 --1.3578507491133900 -1.2503718389557701 1099999.9999984500 --0.67909268469706796 -0.67909268469712603 1099999.9999995800 --0.33236221926526199 -0.35847862302487798 1099999.9999998901 --0.15985195966704599 -0.18485503799791300 1099999.9999999700 --0.075392109363093901 -0.092923912979623796 1099999.9999999900 --0.035091470193062399 -0.045364076010404999 1100000.0000000000 --0.016106640545794498 -0.020510540871552099 1100000.0000000000 --0.0072931663937308199 -0.0062215207821629502 1100000.0000000000 --0.0032403444591462402 0.0059482905711690497 1100000.0000000000 --0.0014839438914454499 0.024427604926195199 1100000.0000000000 --0.00064097523370016795 0.064633424808882706 1100000.0000000000 --0.00019648784785204599 0.16087155391272301 1099999.9999999900 --0.00010509038028231901 0.39482130352987499 1099999.9999999299 --0.00014365158056028399 0.96787496452537902 1099999.9999995700 --9.7696235012840698e-05 2.3717327167982698 1099999.9999974400 --5.1176699329989499e-05 5.8099586339472102 1099999.9999846600 --5.4291626260507798e-06 14.231997858663201 1099999.9999079299 - 5.9612503398125598e-05 34.862027763231197 1099999.9994475599 --7.7353234067369304e-05 85.396286723947696 1099999.9966852199 - 1.7623072501967900e-05 209.17987563077600 1099999.9801108099 - 3.0334066984313198e-05 512.37484259370103 1099999.8806690900 --4.9774021829807300e-06 1254.9388528101999 1099999.2841490700 - 3.0799223377409202e-05 3073.0862786294201 1099995.7073283200 - 7.4541263180919905e-05 7521.8379766440703 1099974.2824054800 - 4.0772758188847102e-05 18389.530051879901 1099846.2734330101 --5.2726756915597097e-05 44828.518179756298 1099086.1676674001 --9.8729217103797704e-05 108456.75092014100 1094640.1843436300 --0.00018219351299674500 256943.71989812099 1069569.9719068899 --0.00013246626213568599 570452.76800308202 940523.06695669203 --9.1783333144428004e-05 -570452.76798202703 940523.06696946197 --8.9198139861789504e-05 -256943.71999688199 1069569.9718831701 --0.00013077981649444600 -108456.75094179400 1094640.1843414800 --3.0672005389604601e-06 -44828.518195817698 1099086.1676667400 - 7.3305847033004504e-05 -18389.530087884799 1099846.2734324001 - 5.9136472260863497e-05 -7521.8380968811698 1099974.2824046600 --4.4324237585908098e-05 -3073.0863041342000 1099995.7073282499 - 2.1279031588255300e-06 -1254.9386622346301 1099999.2841492901 - 7.1967927889230306e-05 -512.37504134004496 1099999.8806690001 --4.2289594302124000e-05 -209.17987753179600 1099999.9801108099 --1.9322056528788499e-05 -85.396136325598903 1099999.9966852299 --7.7289816909601201e-05 -34.862086309585500 1099999.9994475599 --4.0729244850402102e-05 -14.231961510419399 1099999.9999079299 --5.7023819159583799e-05 -5.8098667287339101 1099999.9999846600 --5.3336905981475597e-05 -2.3715840052852202 1099999.9999974400 --8.4994207164662100e-05 -0.96796065670274600 1099999.9999995700 --4.6341334383734903e-05 -0.39486668115462298 1099999.9999999299 --0.00027172697557392201 -0.16042158959587399 1099999.9999999900 --0.0010738427607073699 -0.063856924927527203 1100000.0000000000 --0.0023118283843172101 -0.022892096581794301 1100000.0000000000 --0.0051490939616630699 -0.0024148166848956300 1100000.0000000000 --0.011719621951441999 0.014109351304038901 1100000.0000000000 --0.026300665864039102 0.037913045484051097 1100000.0000000000 --0.058526628836710802 0.082890989601464904 1100000.0000000000 --0.12885495381082901 0.17254163350506799 1099999.9999999800 --0.27913116690800099 0.35066247561018898 1099999.9999999099 --0.59597369713594595 0.69825873608955602 1099999.9999996200 --1.2503718389558001 1.3578507491134300 1099999.9999984500 --2.5707772995133902 2.5707772995132299 1099999.9999939899 --5.1619668871694797 4.7172911629413399 1099999.9999777700 --10.087083252090601 8.3465604648459699 1099999.9999220800 --19.096506120078999 14.145612698317800 1099999.9997432800 --34.839922223958403 22.776883523728099 1099999.9992124501 --60.866295937547100 34.481020239989498 1099999.9977756201 --101.06106027464500 48.412147269611097 1099999.9942922399 --158.07930214788399 61.881298160457902 1099999.9869007501 --230.61675061491101 70.087746721568294 1099999.9735925600 --310.39143602311100 67.230284331629605 1099999.9541532900 --381.29548413951801 49.445121717077299 1099999.9328040599 --423.69951070469102 18.289113876833099 1099999.9182473801 --423.69951070468699 -18.289113876832602 1099999.9182473801 --381.29548413952199 -49.445121717077797 1099999.9328040599 --310.39143602310997 -67.230284331628695 1099999.9541532900 --230.61675061491300 -70.087746721568806 1099999.9735925600 --158.07930214788499 -61.881298160459203 1099999.9869007501 --101.06106027464500 -48.412147269610998 1099999.9942922399 --60.866295937546298 -34.481020239989697 1099999.9977756201 --34.839922223958403 -22.776883523727300 1099999.9992124501 --19.096506120079599 -14.145612698318500 1099999.9997432800 --10.087083252090100 -8.3465604648453908 1099999.9999220800 --5.1619668871697497 -4.7172911629412200 1099999.9999777700 --2.5707772995133702 -2.5707772995133298 1099999.9999939899 --1.2503718389556600 -1.3578507491134100 1099999.9999984500 --0.59597369713596804 -0.69825873608953803 1099999.9999996200 --0.27913116690798601 -0.35066247561015201 1099999.9999999099 --0.12885495381087100 -0.17254163350514501 1099999.9999999800 --0.058526628836689500 -0.082890989601473605 1100000.0000000000 --0.026300665864044500 -0.037913045484035297 1100000.0000000000 --0.011719621951453100 -0.014109351304033400 1100000.0000000000 --0.0051490939616498999 0.0024148166849015502 1100000.0000000000 --0.0023118283843189600 0.022892096581784000 1100000.0000000000 --0.0010738427607102901 0.063856924927523803 1100000.0000000000 --0.00027172697557622101 0.16042158959587099 1099999.9999999900 --4.6341334376256300e-05 0.39486668115462298 1099999.9999999299 --8.4994207167454205e-05 0.96796065670280496 1099999.9999995700 --5.3336906004493697e-05 2.3715840052852402 1099999.9999974400 --5.7023819116349103e-05 5.8098667287337298 1099999.9999846600 --4.0729244877256103e-05 14.231961510419399 1099999.9999079299 --7.7289816978192303e-05 34.862086309586502 1099999.9994475599 --1.9322056321063199e-05 85.396136325598505 1099999.9966852299 --4.2289593634635800e-05 209.17987753179500 1099999.9801108099 - 7.1967927343807996e-05 512.37504134004598 1099999.8806690001 - 2.1279010318756301e-06 1254.9386622346301 1099999.2841492901 --4.4324231707294700e-05 3073.0863041342000 1099995.7073282499 - 5.9136476385700003e-05 7521.8380968811798 1099974.2824046600 - 7.3305855352425299e-05 18389.530087884799 1099846.2734324001 --3.0671525412150398e-06 44828.518195817698 1099086.1676667400 --0.00013077967387615800 108456.75094179400 1094640.1843414800 --8.9198016446973593e-05 256943.71999688199 1069569.9718831701 --9.1783230779106395e-05 570452.76798202703 940523.06696946302 --1.7695265996964702e-05 -570452.76788043999 940523.06703107699 --7.7686755626546998e-05 -256943.71988307699 1069569.9719105100 - 7.1904533609191902e-06 -108456.75101476299 1094640.1843342499 - 2.2884067787159298e-06 -44828.518318931303 1099086.1676617200 - 2.3296845656883100e-05 -18389.530137084701 1099846.2734315800 - 1.2305859621301201e-05 -7521.8380046909097 1099974.2824052901 - 2.0132431254195199e-05 -3073.0862401132199 1099995.7073284199 - 4.6158393233354801e-05 -1254.9388318237400 1099999.2841491001 - 1.9595711002151799e-05 -512.37492067321705 1099999.8806690599 --4.2444905542821401e-05 -209.17985736762901 1099999.9801108099 --5.5852487857484797e-05 -85.396224266726406 1099999.9966852199 - 4.6618075149600403e-05 -34.861987120294899 1099999.9994475599 --6.9351952478612604e-05 -14.231913588472899 1099999.9999079299 - 2.5678046283604899e-05 -5.8098511061765601 1099999.9999846600 --7.4170483477266702e-05 -2.3716873193140202 1099999.9999974400 --0.00011265258975371301 -0.96784327986513896 1099999.9999995700 --0.00010538948476043601 -0.39449027417558402 1099999.9999999299 --0.00058310515690480999 -0.15995073255466299 1099999.9999999900 --0.0014667273615017701 -0.062850452276300997 1100000.0000000000 --0.0033323943731377202 -0.020488671518544100 1100000.0000000000 --0.0077517709797609996 0.0033190942239607799 1100000.0000000000 --0.018038777081203099 0.027136342036750499 1100000.0000000000 --0.041425255796035301 0.066852003134227900 1100000.0000000000 --0.094452809858358105 0.14666807119107900 1099999.9999999900 --0.21216130402551300 0.31124293328670499 1099999.9999999399 --0.47142816487594902 0.64846138284108101 1099999.9999997099 --1.0331281066454101 1.3245076822596600 1099999.9999987199 --2.2284858691979501 2.6481045815118200 1099999.9999945599 --4.7172911629410104 5.1619668871697897 1099999.9999777700 --9.7698698220176805 9.7698698220177604 1099999.9999132301 --19.723090598479398 17.857632296684098 1099999.9996782299 --38.633866700247097 31.312568260443800 1099999.9988758899 --73.022792509600805 52.227507163087303 1099999.9963363500 --132.28529202445199 81.965805688905903 1099999.9889919099 --227.80395983235601 119.30874972343700 1099999.9699412601 --369.24565470459902 157.93046657872500 1099999.9266889100 --556.82842281487694 184.73291066941300 1099999.8435526500 --771.09144938533495 182.10771018027299 1099999.7146612201 --967.51267644428196 136.63327595416800 1099999.5660228999 --1087.4012680593601 51.075532147497000 1099999.4613406700 --1087.4012680593601 -51.075532147497299 1099999.4613406700 --967.51267644427901 -136.63327595416700 1099999.5660228999 --771.09144938533905 -182.10771018027600 1099999.7146612201 --556.82842281487501 -184.73291066941101 1099999.8435526500 --369.24565470459902 -157.93046657872500 1099999.9266889100 --227.80395983235999 -119.30874972343901 1099999.9699412601 --132.28529202445301 -81.965805688906499 1099999.9889919099 --73.022792509599896 -52.227507163087502 1099999.9963363500 --38.633866700247303 -31.312568260443001 1099999.9988758899 --19.723090598479700 -17.857632296684901 1099999.9996782299 --9.7698698220175206 -9.7698698220173004 1099999.9999132301 --4.7172911629414100 -5.1619668871697098 1099999.9999777700 --2.2284858691978200 -2.6481045815119000 1099999.9999945599 --1.0331281066452200 -1.3245076822595800 1099999.9999987199 --0.47142816487600497 -0.64846138284106403 1099999.9999997099 --0.21216130402551900 -0.31124293328670799 1099999.9999999399 --0.094452809858381601 -0.14666807119112801 1099999.9999999900 --0.041425255796019800 -0.066852003134225499 1100000.0000000000 --0.018038777081203099 -0.027136342036745701 1100000.0000000000 --0.0077517709797725199 -0.0033190942239611299 1100000.0000000000 --0.0033323943731280998 0.020488671518553901 1100000.0000000000 --0.0014667273615013999 0.062850452276287896 1100000.0000000000 --0.00058310515690758902 0.15995073255465000 1099999.9999999900 --0.00010538948476425600 0.39449027417562199 1099999.9999999299 --0.00011265258975343300 0.96784327986516405 1099999.9999995700 --7.4170483457704903e-05 2.3716873193139598 1099999.9999974400 - 2.5678046244189000e-05 5.8098511061765903 1099999.9999846600 --6.9351952527330497e-05 14.231913588473100 1099999.9999079299 - 4.6618075311782099e-05 34.861987120294302 1099999.9994475599 --5.5852487251569997e-05 85.396224266726406 1099999.9966852199 --4.2444905882893603e-05 209.17985736763100 1099999.9801108099 - 1.9595709455300000e-05 512.37492067321796 1099999.8806690599 - 4.6158396123315499e-05 1254.9388318237300 1099999.2841491001 - 2.0132432664052900e-05 3073.0862401132199 1099995.7073284199 - 1.2305868061099999e-05 7521.8380046909197 1099974.2824052901 - 2.3296861525150199e-05 18389.530137084701 1099846.2734315800 - 2.2884143003170802e-06 44828.518318931201 1099086.1676617200 - 7.1904748862965197e-06 108456.75101476299 1094640.1843342499 --7.7686747334802998e-05 256943.71988307699 1069569.9719105100 --1.7695254441527600e-05 570452.76788043999 940523.06703107699 - 1.4796900762126199e-05 -570452.76770393096 940523.06713813497 --2.6106169658334199e-05 -256943.71987001199 1069569.9719136499 --9.4185966449859398e-05 -108456.75099806501 1094640.1843359000 - 3.0651833180938903e-05 -44828.518293684101 1099086.1676627500 - 8.4782864827689797e-05 -18389.530155678400 1099846.2734312699 - 4.0697633536572399e-05 -7521.8380618493002 1099974.2824049001 --8.0615099452359400e-06 -3073.0862407832301 1099995.7073284199 - 4.2471132619947800e-05 -1254.9387265806999 1099999.2841492200 - 4.1799543073608901e-05 -512.37507192418002 1099999.8806689901 --1.7677273119317101e-06 -209.17982594551799 1099999.9801108199 - 4.9579773794313700e-05 -85.396094241168697 1099999.9966852299 --7.6324829866589004e-05 -34.862009037878302 1099999.9994475599 - 1.1978593872101401e-05 -14.231846115385601 1099999.9999079299 --3.3147124922853000e-05 -5.8098812520039997 1099999.9999846600 --7.1406910757260502e-05 -2.3715330265626799 1099999.9999974400 --3.7899999411167902e-05 -0.96767743392722305 1099999.9999995700 --0.00013717310560422600 -0.39439239124676101 1099999.9999999299 --0.00074516957428149904 -0.15928409317127401 1099999.9999999900 --0.0020907583269375199 -0.061244755363464999 1100000.0000000000 --0.0047609301726432799 -0.016704142781716301 1100000.0000000000 --0.011344887231691900 0.012157694374554299 1100000.0000000000 --0.026812759711351799 0.047269249152589503 1100000.0000000000 --0.062924827819037396 0.11301503121768899 1099999.9999999900 --0.14601304708887999 0.25106257997408699 1099999.9999999600 --0.33602435582916501 0.54480212072986900 1099999.9999998100 --0.76557276822741904 1.1628449125066800 1099999.9999991199 --1.7233818187374399 2.4400493111786101 1099999.9999959399 --3.8245514352101799 5.0190979846168400 1099999.9999819000 --8.3465604648457106 10.087083252090499 1099999.9999220800 --17.857632296684500 19.723090598479200 1099999.9996782299 --37.320153488200297 37.320153488200603 1099999.9987338199 --75.832936466860204 67.879548870080100 1099999.9952916999 --148.96905009531699 117.65503321230599 1099999.9836206899 --280.91255261120699 192.15375222393499 1099999.9473477600 --504.00114809084403 291.26340304453902 1099999.8459765699 --850.91581778989701 401.26120732628101 1099999.5976961600 --1333.7803285785701 487.25532919434301 1099999.0834597400 --1910.6181748587101 496.03311258128201 1099998.2288573701 --2459.4478700926402 381.10228122383199 1099997.1844860399 --2802.8015708326602 144.26555523982000 1099996.4197627199 --2802.8015708326702 -144.26555523981901 1099996.4197627199 --2459.4478700926302 -381.10228122383000 1099997.1844860399 --1910.6181748587101 -496.03311258128201 1099998.2288573701 --1333.7803285785701 -487.25532919434801 1099999.0834597400 --850.91581778989405 -401.26120732627800 1099999.5976961600 --504.00114809083999 -291.26340304453601 1099999.8459765699 --280.91255261121199 -192.15375222393899 1099999.9473477600 --148.96905009531699 -117.65503321230700 1099999.9836206899 --75.832936466860104 -67.879548870080797 1099999.9952916999 --37.320153488200297 -37.320153488199701 1099999.9987338199 --17.857632296684400 -19.723090598479700 1099999.9996782299 --8.3465604648458598 -10.087083252090199 1099999.9999220800 --3.8245514352105099 -5.0190979846168702 1099999.9999819000 --1.7233818187373000 -2.4400493111786599 1099999.9999959399 --0.76557276822724896 -1.1628449125065601 1099999.9999991199 --0.33602435582922602 -0.54480212072986800 1099999.9999998100 --0.14601304708889101 -0.25106257997411902 1099999.9999999600 --0.062924827819049206 -0.11301503121771600 1099999.9999999900 --0.026812759711345700 -0.047269249152576499 1100000.0000000000 --0.011344887231685899 -0.012157694374549600 1100000.0000000000 --0.0047609301726518503 0.016704142781704501 1100000.0000000000 --0.0020907583269342001 0.061244755363469801 1100000.0000000000 --0.00074516957427992001 0.15928409317128001 1099999.9999999900 --0.00013717310560597300 0.39439239124675401 1099999.9999999299 --3.7899999406322901e-05 0.96767743392726002 1099999.9999995700 --7.1406910776804900e-05 2.3715330265627199 1099999.9999974400 --3.3147124946763100e-05 5.8098812520039003 1099999.9999846600 - 1.1978593965096199e-05 14.231846115385400 1099999.9999079299 --7.6324829669171401e-05 34.862009037878401 1099999.9994475599 - 4.9579773522355903e-05 85.396094241168996 1099999.9966852299 --1.7677271396520800e-06 209.17982594551901 1099999.9801108199 - 4.1799544356692498e-05 512.37507192417900 1099999.8806689901 - 4.2471131135315701e-05 1254.9387265806999 1099999.2841492200 --8.0615057179548493e-06 3073.0862407832201 1099995.7073284199 - 4.0697626521597901e-05 7521.8380618493102 1099974.2824049001 - 8.4782907120549102e-05 18389.530155678400 1099846.2734312699 - 3.0651836123625701e-05 44828.518293684101 1099086.1676627500 --9.4186024492720700e-05 108456.75099806501 1094640.1843359000 --2.6106183251059499e-05 256943.71987001199 1069569.9719136499 - 1.4796937721541399e-05 570452.76770393096 940523.06713813497 --7.3960507697739999e-05 -570452.76758386800 940523.06721095601 --0.00010156033172923200 -256943.71979478901 1069569.9719317199 - 4.4031572488982400e-05 -108456.75106543100 1094640.1843292301 - 3.0452448627780300e-05 -44828.518362282201 1099086.1676599500 --4.1598756598881400e-07 -18389.530145892699 1099846.2734314301 - 6.5131765921276796e-06 -7521.8380207561804 1099974.2824051799 - 6.4563459398212205e-05 -3073.0862380159101 1099995.7073284299 - 9.7218476521120797e-05 -1254.9388334907301 1099999.2841491001 - 3.8923441287805098e-05 -512.37496774298097 1099999.8806690399 - 7.6201345076320003e-07 -209.17979853331099 1099999.9801108199 - 3.8879483627024702e-06 -85.396128591927805 1099999.9966852299 - 5.1855274790273202e-05 -34.861919290573503 1099999.9994475699 --4.9591256207802200e-05 -14.231871092333900 1099999.9999079299 - 7.1613075353011300e-05 -5.8098013398940900 1099999.9999846600 --4.2686341481053298e-05 -2.3715353824165599 1099999.9999974400 --8.5809691965095904e-05 -0.96765321427938900 1099999.9999995700 --0.00030218038734667598 -0.39388235896134000 1099999.9999999299 --0.0012224759554284701 -0.15825919805396199 1099999.9999999900 --0.0027317826652851198 -0.059013503351601999 1100000.0000000000 --0.0065054127572364596 -0.011285942881951600 1100000.0000000000 --0.015832473096994901 0.024949981001791001 1100000.0000000000 --0.038132698381933602 0.077571700845355807 1100000.0000000000 --0.090972564499698205 0.18382235610141301 1099999.9999999800 --0.21588689442301701 0.41507368451381899 1099999.9999999001 --0.50860640536973201 0.92103081173743895 1099999.9999995001 --1.1883724775781499 2.0162529248677701 1099999.9999975101 --2.7485242299045600 4.3463778859340003 1099999.9999879799 --6.2808060074366301 9.2062663620975602 1099999.9999435400 --14.145612698318100 19.096506120078899 1099999.9997432800 --31.312568260443602 38.633866700247502 1099999.9988758899 --67.879548870079802 75.832936466859906 1099999.9952916999 --143.45611843036500 143.45611843036500 1099999.9812912201 --293.88097507537600 259.27703888766200 1099999.9301860800 --579.31279240389904 442.54097794716500 1099999.7584336901 --1088.5330999407599 702.13103819554397 1099999.2373214201 --1926.0327172766499 1012.7115939669500 1099997.8476402599 --3159.5270374534998 1284.8383116212501 1099994.7120688399 --4714.1734825404901 1359.0437745959700 1099989.0588403100 --6261.5584068199496 1074.3160989809001 1099981.6538157500 --7259.1348474902397 412.88281531963099 1099975.9699598199 --7259.1348474902097 -412.88281531963298 1099975.9699598199 --6261.5584068199496 -1074.3160989809101 1099981.6538157500 --4714.1734825404801 -1359.0437745959500 1099989.0588403100 --3159.5270374534998 -1284.8383116212501 1099994.7120688399 --1926.0327172766599 -1012.7115939669600 1099997.8476402599 --1088.5330999407499 -702.13103819553999 1099999.2373214201 --579.31279240389404 -442.54097794715801 1099999.7584336901 --293.88097507538100 -259.27703888766598 1099999.9301860800 --143.45611843036400 -143.45611843036400 1099999.9812912201 --67.879548870080598 -75.832936466861796 1099999.9952916999 --31.312568260443200 -38.633866700246600 1099999.9988758899 --14.145612698318001 -19.096506120078999 1099999.9997432800 --6.2808060074368797 -9.2062663620975300 1099999.9999435400 --2.7485242299046901 -4.3463778859340696 1099999.9999879799 --1.1883724775780500 -2.0162529248677798 1099999.9999975101 --0.50860640536962398 -0.92103081173733004 1099999.9999995001 --0.21588689442306899 -0.41507368451383497 1099999.9999999001 --0.090972564499704298 -0.18382235610144801 1099999.9999999800 --0.038132698381936003 -0.077571700845372002 1100000.0000000000 --0.015832473096998801 -0.024949981001779298 1100000.0000000000 --0.0065054127572286100 0.011285942881964601 1100000.0000000000 --0.0027317826652876100 0.059013503351584000 1100000.0000000000 --0.0012224759554298999 0.15825919805395100 1099999.9999999900 --0.00030218038734449999 0.39388235896137802 1099999.9999999299 --8.5809691971327695e-05 0.96765321427941597 1099999.9999995700 --4.2686341487800600e-05 2.3715353824165701 1099999.9999974400 - 7.1613075387386594e-05 5.8098013398940198 1099999.9999846600 --4.9591256176747797e-05 14.231871092333700 1099999.9999079299 - 5.1855274640927897e-05 34.861919290573397 1099999.9994475699 - 3.8879486162545002e-06 85.396128591928104 1099999.9966852299 - 7.6201393080055497e-07 209.17979853331099 1099999.9801108199 - 3.8923441253357603e-05 512.37496774298097 1099999.8806690399 - 9.7218476997591602e-05 1254.9388334907201 1099999.2841491001 - 6.4563453333163595e-05 3073.0862380159101 1099995.7073284299 - 6.5131743825202902e-06 7521.8380207561304 1099974.2824051799 --4.1599616014889702e-07 18389.530145892699 1099846.2734314301 - 3.0452445042728699e-05 44828.518362282201 1099086.1676599500 - 4.4031585170915500e-05 108456.75106543100 1094640.1843292301 --0.00010156036974166300 256943.71979478901 1069569.9719317199 --7.3960631987505599e-05 570452.76758386905 940523.06721095601 --0.00012875106600469601 -570452.76756542700 940523.06722214201 --7.1468884680993394e-05 -256943.71986022199 1069569.9719159999 --0.00011831098027423599 -108456.75110666300 1094640.1843251500 - 1.4593520955411500e-05 -44828.518373574298 1099086.1676594899 - 7.7837430308374403e-05 -18389.530187769800 1099846.2734307300 - 4.6767001617727302e-05 -7521.8380401765498 1099974.2824050500 - 4.3512759742491303e-05 -3073.0862390858701 1099995.7073284299 - 6.4944949141067899e-05 -1254.9388175146801 1099999.2841491101 - 4.9078993406837598e-05 -512.37505297612199 1099999.8806690001 - 6.0380253599234997e-05 -209.17974475252399 1099999.9801108299 - 7.4695050468973905e-05 -85.396066191675004 1099999.9966852299 --8.1594108121223094e-05 -34.861938810747503 1099999.9994475699 - 7.9981925207540103e-05 -14.231766744139399 1099999.9999079299 --2.0382043125118601e-05 -5.8098604478264102 1099999.9999846600 --0.00013209994853811499 -2.3714466354132400 1099999.9999974400 --0.00010330293906342500 -0.96732197733312797 1099999.9999995700 --0.00045135259742498098 -0.39345527184517198 1099999.9999999299 --0.0014038995194382200 -0.15706608118436699 1099999.9999999900 --0.0035356871410387302 -0.055945920727918597 1100000.0000000000 --0.0085422200782508707 -0.0038650724249506500 1100000.0000000000 --0.021082488132904600 0.042967921008449102 1100000.0000000000 --0.051363259063697903 0.12071872297472300 1099999.9999999900 --0.12500532984550700 0.28694707471224001 1099999.9999999600 --0.30299729417388399 0.66017089218325797 1099999.9999997600 --0.73055562125059204 1.4988232893909299 1099999.9999987399 --1.7502424213060299 3.3633223830747401 1099999.9999934700 --4.1600092601414902 7.4513870812594298 1099999.9999669001 --9.7913696307332394 16.259682544972399 1099999.9998362500 --22.776883523727900 34.839922223958901 1099999.9992124501 --52.227507163087203 73.022792509600194 1099999.9963363500 --117.65503321230700 148.96905009531699 1099999.9836206899 --259.27703888766200 293.88097507537702 1099999.9301860800 --555.82581742119100 555.82581742119305 1099999.7191432901 --1150.6398870257799 996.09897128356204 1099998.9471879900 --2277.7043718931800 1663.9993203961101 1099996.3832527201 --4254.5675613894900 2530.6987143336200 1099988.8609521801 --7366.5710456906800 3381.4892439650998 1099970.1355771101 --11550.501448668800 3745.7043402527402 1099932.9777833200 --15950.839881197900 3065.1059383789702 1099880.0733864901 --18893.257072184701 1199.8197824854501 1099837.0812396200 --18893.257072184701 -1199.8197824854699 1099837.0812396200 --15950.839881197900 -3065.1059383789602 1099880.0733864901 --11550.501448668800 -3745.7043402527502 1099932.9777833200 --7366.5710456906800 -3381.4892439650798 1099970.1355771101 --4254.5675613894900 -2530.6987143336200 1099988.8609521801 --2277.7043718931900 -1663.9993203961301 1099996.3832527201 --1150.6398870257699 -996.09897128355897 1099998.9471879900 --555.82581742118703 -555.82581742118805 1099999.7191432901 --259.27703888766501 -293.88097507537901 1099999.9301860800 --117.65503321230599 -148.96905009531599 1099999.9836206899 --52.227507163087999 -73.022792509602795 1099999.9963363500 --22.776883523727399 -34.839922223957899 1099999.9992124501 --9.7913696307334295 -16.259682544972399 1099999.9998362500 --4.1600092601417202 -7.4513870812595897 1099999.9999669001 --1.7502424213059500 -3.3633223830747099 1099999.9999934700 --0.73055562125054696 -1.4988232893908999 1099999.9999987399 --0.30299729417384402 -0.66017089218321201 1099999.9999997600 --0.12500532984554100 -0.28694707471226499 1099999.9999999600 --0.051363259063698298 -0.12071872297473700 1099999.9999999900 --0.021082488132900600 -0.042967921008456297 1100000.0000000000 --0.0085422200782582294 0.0038650724249426598 1100000.0000000000 --0.0035356871410328998 0.055945920727933703 1100000.0000000000 --0.0014038995194404400 0.15706608118437199 1099999.9999999900 --0.00045135259743073002 0.39345527184515400 1099999.9999999299 --0.00010330293904958300 0.96732197733318603 1099999.9999995700 --0.00013209994852463999 2.3714466354132400 1099999.9999974400 --2.0382043158567600e-05 5.8098604478262503 1099999.9999846600 - 7.9981925167308505e-05 14.231766744139399 1099999.9999079299 --8.1594108062735198e-05 34.861938810747397 1099999.9994475699 - 7.4695050420777094e-05 85.396066191674905 1099999.9966852299 - 6.0380254023274503e-05 209.17974475252399 1099999.9801108299 - 4.9078994272664601e-05 512.37505297612097 1099999.8806690001 - 6.4944948364463302e-05 1254.9388175146901 1099999.2841491101 - 4.3512753318240801e-05 3073.0862390858601 1099995.7073284299 - 4.6766996234403301e-05 7521.8380401765598 1099974.2824050500 - 7.7837375311301399e-05 18389.530187769800 1099846.2734307300 - 1.4593476953174700e-05 44828.518373574298 1099086.1676594899 --0.00011831093086706000 108456.75110666300 1094640.1843251500 --7.1468956033701695e-05 256943.71986022301 1069569.9719159999 --0.00012875119426664100 570452.76756542700 940523.06722214201 --0.00014723382554089701 -570452.76761575299 940523.06719161803 --0.00015979777712165201 -256943.71993696599 1069569.9718975599 - 4.0557937116393001e-05 -108456.75122494600 1094640.1843134300 - 3.4439170122122498e-05 -44828.518434801103 1099086.1676570000 --2.0174085746852300e-05 -18389.530166869099 1099846.2734310799 - 1.4886999521931699e-05 -7521.8380589620001 1099974.2824049201 - 9.0009198374879103e-05 -3073.0862846948298 1099995.7073283000 - 0.00010718754245565800 -1254.9388571447600 1099999.2841490700 - 3.9936241781342802e-05 -512.37498379995100 1099999.8806690299 - 2.1560827455602301e-05 -209.17975058826099 1099999.9801108299 - 7.2356456574103702e-06 -85.396060102379806 1099999.9966852299 - 5.2741958108658500e-05 -34.861851244270703 1099999.9994475699 --4.9466391232443398e-05 -14.231846272012300 1099999.9999079299 - 3.6580829263121099e-06 -5.8097737341912401 1099999.9999846600 --7.8930788322504000e-05 -2.3713218235486901 1099999.9999974400 --0.00013345081784855699 -0.96723871338505396 1099999.9999995700 --0.00062020457792966795 -0.39278424689244901 1099999.9999999299 --0.0019172360769133701 -0.15537756383631099 1099999.9999999900 --0.0042294954742887903 -0.052062162901172500 1100000.0000000000 --0.010534870794262500 0.0058039722390000404 1100000.0000000000 --0.026266201926443401 0.066632419248416300 1100000.0000000000 --0.065236854586391099 0.17888657999958499 1099999.9999999800 --0.16184203782306800 0.42934171025981599 1099999.9999999001 --0.40036619922258598 1.0064638720068999 1099999.9999994701 --0.98718080850261902 2.3356907028025300 1099999.9999970801 --2.4238673739119800 5.3721840682434996 1099999.9999842099 --5.9176328253951302 12.227863194485300 1099999.9999161200 --14.347054606842400 27.488653781556501 1099999.9995629699 --34.481020239989803 60.866295937546703 1099999.9977756201 --81.965805688906102 132.28529202445199 1099999.9889919099 --192.15375222393499 280.91255261120801 1099999.9473477600 --442.54097794716301 579.31279240389995 1099999.7584336901 --996.09897128356397 1150.6398870257799 1099998.9471879900 --2175.8437344284698 2175.8437344284598 1099995.6960861699 --4567.1728483074203 3852.6162820042400 1099983.7718257301 --9083.7540683287098 6231.0955475001001 1099944.8435536700 --16776.864837009900 8857.4993260248702 1099836.3885196401 --27963.888144879202 10380.564278548100 1099595.5005569500 --40550.313972395103 8862.9451409824906 1099216.5938704601 --49342.681844547697 3548.2509409122199 1098887.0322574801 --49342.681844547697 -3548.2509409122099 1098887.0322574801 --40550.313972395103 -8862.9451409825106 1099216.5938704601 --27963.888144879100 -10380.564278548200 1099595.5005569500 --16776.864837009900 -8857.4993260248593 1099836.3885196401 --9083.7540683287007 -6231.0955475000801 1099944.8435536700 --4567.1728483074103 -3852.6162820042200 1099983.7718257301 --2175.8437344284798 -2175.8437344284798 1099995.6960861699 --996.09897128355703 -1150.6398870257799 1099998.9471879900 --442.54097794716000 -579.31279240389802 1099999.7584336901 --192.15375222393601 -280.91255261120898 1099999.9473477600 --81.965805688905704 -132.28529202445100 1099999.9889919099 --34.481020239990301 -60.866295937548699 1099999.9977756201 --14.347054606842001 -27.488653781555598 1099999.9995629699 --5.9176328253954198 -12.227863194485399 1099999.9999161200 --2.4238673739121301 -5.3721840682437199 1099999.9999842099 --0.98718080850245804 -2.3356907028023701 1099999.9999970801 --0.40036619922258398 -1.0064638720068699 1099999.9999994701 --0.16184203782306800 -0.42934171025983298 1099999.9999999001 --0.065236854586405005 -0.17888657999960800 1099999.9999999800 --0.026266201926443800 -0.066632419248415106 1100000.0000000000 --0.010534870794256501 -0.0058039722389941796 1100000.0000000000 --0.0042294954742975403 0.052062162901157102 1100000.0000000000 --0.0019172360769117800 0.15537756383630999 1099999.9999999900 --0.00062020457792422699 0.39278424689247898 1099999.9999999299 --0.00013345081784764599 0.96723871338504996 1099999.9999995700 --7.8930788305747696e-05 2.3713218235487199 1099999.9999974400 - 3.6580829202549701e-06 5.8097737341912303 1099999.9999846600 --4.9466391299280803e-05 14.231846272012000 1099999.9999079299 - 5.2741958096494301e-05 34.861851244270603 1099999.9994475699 - 7.2356454705053600e-06 85.396060102379295 1099999.9966852299 - 2.1560827474750199e-05 209.17975058826099 1099999.9801108299 - 3.9936243742792299e-05 512.37498379995304 1099999.8806690299 - 0.00010718754152606000 1254.9388571447500 1099999.2841490700 - 9.0009196830008101e-05 3073.0862846948498 1099995.7073283000 - 1.4886990149279700e-05 7521.8380589620101 1099974.2824049201 --2.0174085555478599e-05 18389.530166869201 1099846.2734310799 - 3.4439157937420900e-05 44828.518434801103 1099086.1676570000 - 4.0557958332951303e-05 108456.75122494600 1094640.1843134300 --0.00015979774321343401 256943.71993696500 1069569.9718975599 --0.00014723397006814401 570452.76761575299 940523.06719161803 --9.2187243591011203e-05 -570452.76765581104 940523.06716732203 --3.6204910136621898e-06 -256943.72000685200 1069569.9718807701 --9.1446132190071204e-05 -108456.75127144200 1094640.1843088199 - 4.8806692964454099e-06 -44828.518459652099 1099086.1676559800 - 6.5225163147746004e-05 -18389.530219315198 1099846.2734302101 - 4.1278415975211803e-05 -7521.8380569980300 1099974.2824049301 - 4.3718800555701500e-05 -3073.0862822399899 1099995.7073283100 - 2.9844544456310498e-05 -1254.9388963563399 1099999.2841490200 - 2.9868902475956300e-05 -512.37502531019197 1099999.8806690101 - 5.9964019328181298e-05 -209.17968650285499 1099999.9801108399 - 2.5321517932896899e-05 -85.396041551935099 1099999.9966852299 --0.00012399847400217101 -34.861883702138798 1099999.9994475699 - 6.1036023782798095e-05 -14.231736350208999 1099999.9999079399 --5.6512241493026501e-05 -5.8097933142878304 1099999.9999846600 --0.00017142686377501600 -2.3712679540271999 1099999.9999974400 --0.00023956144162168299 -0.96683613572651905 1099999.9999995800 --0.00077806611570394903 -0.39203029713810800 1099999.9999999299 --0.0019052411850837600 -0.15357861495996100 1099999.9999999900 --0.0048013379518084204 -0.047377872380905503 1100000.0000000000 --0.012123883548416901 0.017516071261359401 1100000.0000000000 --0.030749151061619101 0.096075429243866403 1100000.0000000000 --0.077409030690777300 0.25254594534160901 1099999.9999999700 --0.19529343282265699 0.61292828732136795 1099999.9999998100 --0.49265488335924201 1.4634620387532600 1099999.9999989199 --1.2410464941562600 3.4695128848842001 1099999.9999938300 --3.1193649314121998 8.1696535522943297 1099999.9999652400 --7.8162544568023300 19.088566979020200 1099999.9998066099 --19.504850152125599 44.179969387478501 1099999.9989398599 --48.412147269610699 101.06106027464401 1099999.9942922399 --119.30874972343599 227.80395983235701 1099999.9699412601 --291.26340304453902 504.00114809084499 1099999.8459765699 --702.13103819554601 1088.5330999407499 1099999.2373214201 --1663.9993203961201 2277.7043718931800 1099996.3832527201 --3852.6162820042400 4567.1728483074203 1099983.7718257301 --8633.6056648290996 8633.6056648291105 1099932.2350519800 --18462.828869586901 14999.254362146799 1099742.7637037300 --36844.537936716602 22972.128145567000 1099142.7392985399 --66250.711901638497 28868.965544231800 1097623.5356445899 --102129.72334303800 25982.613552476301 1094940.3743596501 --128453.55572359600 10694.428753563700 1092421.7652608401 --128453.55572359600 -10694.428753563700 1092421.7652608401 --102129.72334303800 -25982.613552476301 1094940.3743596501 --66250.711901638395 -28868.965544231800 1097623.5356445899 --36844.537936716602 -22972.128145566901 1099142.7392985399 --18462.828869586901 -14999.254362146799 1099742.7637037300 --8633.6056648290996 -8633.6056648290996 1099932.2350519800 --3852.6162820042300 -4567.1728483074103 1099983.7718257301 --1663.9993203961201 -2277.7043718931800 1099996.3832527201 --702.13103819553999 -1088.5330999407499 1099999.2373214201 --291.26340304453601 -504.00114809084300 1099999.8459765699 --119.30874972343700 -227.80395983235800 1099999.9699412601 --48.412147269610600 -101.06106027464401 1099999.9942922399 --19.504850152125901 -44.179969387479403 1099999.9989398599 --7.8162544568021497 -19.088566979019699 1099999.9998066099 --3.1193649314123602 -8.1696535522945606 1099999.9999652400 --1.2410464941563399 -3.4695128848843599 1099999.9999938300 --0.49265488335912100 -1.4634620387530901 1099999.9999989199 --0.19529343282267500 -0.61292828732135696 1099999.9999998100 --0.077409030690784003 -0.25254594534164398 1099999.9999999700 --0.030749151061618601 -0.096075429243879198 1100000.0000000000 --0.012123883548421499 -0.017516071261359099 1100000.0000000000 --0.0048013379518036898 0.047377872380912900 1100000.0000000000 --0.0019052411850885300 0.15357861495995700 1099999.9999999900 --0.00077806611570615202 0.39203029713810300 1099999.9999999299 --0.00023956144161244001 0.96683613572655602 1099999.9999995800 --0.00017142686375937299 2.3712679540271702 1099999.9999974400 --5.6512241462942797e-05 5.8097933142877700 1099999.9999846600 - 6.1036023745882596e-05 14.231736350209101 1099999.9999079399 --0.00012399847421342000 34.861883702138499 1099999.9994475699 - 2.5321517874993699e-05 85.396041551934999 1099999.9966852299 - 5.9964019240281803e-05 209.17968650285400 1099999.9801108399 - 2.9868903096781100e-05 512.37502531019004 1099999.8806690101 - 2.9844546340400699e-05 1254.9388963563399 1099999.2841490200 - 4.3718794161178202e-05 3073.0862822399899 1099995.7073283100 - 4.1278424482917898e-05 7521.8380569980300 1099974.2824049301 - 6.5225184843187495e-05 18389.530219315300 1099846.2734302101 - 4.8806937270404699e-06 44828.518459652099 1099086.1676559800 --9.1446195418092696e-05 108456.75127144200 1094640.1843088199 --3.6204471755123899e-06 256943.72000685200 1069569.9718807701 --9.2187323747447203e-05 570452.76765581104 940523.06716732099 - 1.6183194215230399e-05 -570452.76760803198 940523.06719630002 --9.3205970594269601e-05 -256943.72001638700 1069569.9718784799 - 7.5142745048901094e-05 -108456.75132053001 1094640.1843039601 - 4.0769504744141999e-05 -44828.518471246200 1099086.1676555099 --4.0967072448075401e-05 -18389.530177787201 1099846.2734308999 --6.1421230248673902e-06 -7521.8380913221699 1099974.2824047001 - 4.8156121911348601e-05 -3073.0863386306701 1099995.7073281500 - 5.2595963152417502e-05 -1254.9388875776599 1099999.2841490300 --2.0828026961256901e-05 -512.37497949419799 1099999.8806690299 --4.5471912911398398e-05 -209.17971389875700 1099999.9801108399 --6.1171358609734601e-05 -85.396017410009094 1099999.9966852400 - 9.0029570209381402e-06 -34.861801822438998 1099999.9994475699 --9.5532240846964001e-05 -14.231814400158100 1099999.9999079299 --9.9422262391289805e-05 -5.8097207359888703 1099999.9999846600 --0.00014082724321920901 -2.3710822667649798 1099999.9999974400 --0.00019154211545289500 -0.96664746458627604 1099999.9999995800 --0.00077671167656069898 -0.39123891469719402 1099999.9999999299 --0.0021817783571644401 -0.15143085083993199 1099999.9999999900 --0.0050052778615502901 -0.042178057704537399 1100000.0000000000 --0.012941388987018600 0.030824764997943999 1100000.0000000000 --0.032995482055241700 0.12989087131196000 1099999.9999999900 --0.084403350862029297 0.33854678416238998 1099999.9999999399 --0.21680918907239199 0.83209670852026996 1099999.9999996601 --0.55668826301800600 2.0209664567690400 1099999.9999980000 --1.4297541332867301 4.8848107373636704 1099999.9999882199 --3.6724115649280198 11.756624978938500 1099999.9999310400 --9.4273547132974898 28.150744360170599 1099999.9995993900 --24.175544665116099 66.978330375051897 1099999.9976951999 --61.881298160457298 158.07930214788300 1099999.9869007501 --157.93046657872699 369.24565470459999 1099999.9266889100 --401.26120732628198 850.91581778989598 1099999.5976961600 --1012.7115939669600 1926.0327172766599 1099997.8476402599 --2530.6987143336200 4254.5675613894900 1099988.8609521801 --6231.0955475000901 9083.7540683287098 1099944.8435536700 --14999.254362146899 18462.828869586901 1099742.7637037300 --34835.407239634798 34835.407239634696 1098896.2593461201 --76225.705504997502 58367.669915573599 1095802.3804176101 --150435.26188561801 79989.380957344503 1086724.8644047200 --249505.09371728700 76797.288801715797 1068573.5279529600 --325348.13004610001 32673.475907616499 1050276.6484348900 --325348.13004610001 -32673.475907616499 1050276.6484348900 --249505.09371728700 -76797.288801715797 1068573.5279529600 --150435.26188561699 -79989.380957344503 1086724.8644047200 --76225.705504997401 -58367.669915573599 1095802.3804176101 --34835.407239634696 -34835.407239634696 1098896.2593461201 --14999.254362146899 -18462.828869586901 1099742.7637037300 --6231.0955475000801 -9083.7540683287207 1099944.8435536700 --2530.6987143336301 -4254.5675613894800 1099988.8609521801 --1012.7115939669600 -1926.0327172766499 1099997.8476402599 --401.26120732627800 -850.91581778989496 1099999.5976961600 --157.93046657872500 -369.24565470459697 1099999.9266889100 --61.881298160458101 -158.07930214788601 1099999.9869007501 --24.175544665115801 -66.978330375051200 1099999.9976951999 --9.4273547132976905 -28.150744360170901 1099999.9995993900 --3.6724115649280100 -11.756624978938399 1099999.9999310400 --1.4297541332867001 -4.8848107373636900 1099999.9999882199 --0.55668826301804297 -2.0209664567691101 1099999.9999980000 --0.21680918907234401 -0.83209670852019402 1099999.9999996601 --0.084403350862042398 -0.33854678416239598 1099999.9999999399 --0.032995482055246800 -0.12989087131198099 1099999.9999999900 --0.012941388987012000 -0.030824764997944301 1100000.0000000000 --0.0050052778615566496 0.042178057704538398 1100000.0000000000 --0.0021817783571668400 0.15143085083992799 1099999.9999999900 --0.00077671167656104604 0.39123891469719602 1099999.9999999299 --0.00019154211544340801 0.96664746458626005 1099999.9999995800 --0.00014082724318727099 2.3710822667649798 1099999.9999974400 --9.9422262393774702e-05 5.8097207359889396 1099999.9999846600 --9.5532240932120100e-05 14.231814400157999 1099999.9999079299 - 9.0029570096856294e-06 34.861801822439098 1099999.9994475699 --6.1171358562460797e-05 85.396017410008795 1099999.9966852400 --4.5471912725923099e-05 209.17971389875601 1099999.9801108399 --2.0828027640331401e-05 512.37497949419901 1099999.8806690299 - 5.2595960720699697e-05 1254.9388875776699 1099999.2841490300 - 4.8156122481317302e-05 3073.0863386306701 1099995.7073281500 --6.1421165567241703e-06 7521.8380913221499 1099974.2824047001 --4.0967062016639399e-05 18389.530177787201 1099846.2734308999 - 4.0769496444624398e-05 44828.518471246301 1099086.1676555099 - 7.5142755606880498e-05 108456.75132053001 1094640.1843039601 --9.3206014871483793e-05 256943.72001638700 1069569.9718784799 - 1.6183320150381399e-05 570452.76760803198 940523.06719630002 --2.9020225811048199e-06 -570452.76752436894 940523.06724704395 - 8.4679218543430606e-05 -256943.71996960399 1069569.9718897201 --6.1157631386603696e-05 -108456.75129831499 1094640.1843061601 --1.5213426253493400e-05 -44828.518462669999 1099086.1676558601 - 3.2037033341959102e-05 -18389.530208002700 1099846.2734304001 --2.1178758106754700e-06 -7521.8380727777203 1099974.2824048200 --1.5237850192410100e-05 -3073.0863245582000 1099995.7073281901 --5.8302490174450900e-05 -1254.9389335131100 1099999.2841489799 --3.6769449213409302e-05 -512.37499475845800 1099999.8806690201 --4.5710240127418097e-06 -209.17965152006099 1099999.9801108500 --6.1204801851895204e-05 -85.396009329129896 1099999.9966852400 --0.00018799554903447201 -34.861830439515700 1099999.9994475699 --1.6758839533062601e-05 -14.231723332954299 1099999.9999079399 --9.6052402069420897e-05 -5.8096977017377904 1099999.9999846600 --0.00016335712271082299 -2.3710308322486799 1099999.9999974400 --0.00030302562722943501 -0.96626869863585396 1099999.9999995800 --0.00081177605276508598 -0.39037681946925601 1099999.9999999299 --0.0018075661033891701 -0.14941836842308301 1099999.9999999900 --0.0047737292576928401 -0.036868958663648602 1100000.0000000000 --0.012366141660006900 0.044538526867970198 1100000.0000000000 --0.032112117052733799 0.16534626803441399 1099999.9999999900 --0.083330106047006205 0.43033768620815299 1099999.9999999099 --0.21668652312018499 1.0695596637382001 1099999.9999994601 --0.56478111642816498 2.6365874350319900 1099999.9999966901 --1.4755819369604199 6.4828783064093303 1099999.9999799100 --3.8629792627055801 15.905837967708999 1099999.9998782200 --10.132381179951601 38.927148126294099 1099999.9992645499 --26.626267684302800 94.955138015527595 1099999.9955793500 --70.087746721569005 230.61675061491201 1099999.9735925600 --184.73291066941300 556.82842281487797 1099999.8435526500 --487.25532919435000 1333.7803285785801 1099999.0834597400 --1284.8383116212501 3159.5270374534898 1099994.7120688399 --3381.4892439650798 7366.5710456906900 1099970.1355771101 --8857.4993260248903 16776.864837010002 1099836.3885196401 --22972.128145567000 36844.537936716602 1099142.7392985399 --58367.669915573701 76225.705504997401 1095802.3804176101 --141824.81643559600 141824.81643559600 1081559.7269157299 --311216.56035348302 215128.46043841500 1032891.0872261100 --552565.44315455004 220879.67258125200 925139.77391084796 --733667.20890625694 96566.878256827404 813884.06090759195 --733667.20890625694 -96566.878256827593 813884.06090759195 --552565.44315455004 -220879.67258125200 925139.77391084796 --311216.56035348302 -215128.46043841500 1032891.0872261100 --141824.81643559600 -141824.81643559600 1081559.7269157299 --58367.669915573701 -76225.705504997401 1095802.3804176101 --22972.128145566901 -36844.537936716501 1099142.7392985399 --8857.4993260248793 -16776.864837009900 1099836.3885196401 --3381.4892439650798 -7366.5710456906900 1099970.1355771101 --1284.8383116212501 -3159.5270374534898 1099994.7120688399 --487.25532919434499 -1333.7803285785701 1099999.0834597400 --184.73291066941101 -556.82842281487603 1099999.8435526500 --70.087746721569104 -230.61675061490999 1099999.9735925600 --26.626267684303301 -94.955138015529300 1099999.9955793500 --10.132381179951301 -38.927148126293503 1099999.9992645499 --3.8629792627057098 -15.905837967709401 1099999.9998782200 --1.4755819369604799 -6.4828783064094502 1099999.9999799100 --0.56478111642808704 -2.6365874350318199 1099999.9999966901 --0.21668652312021100 -1.0695596637382101 1099999.9999994601 --0.083330106046995797 -0.43033768620816498 1099999.9999999099 --0.032112117052732599 -0.16534626803442201 1099999.9999999900 --0.012366141660013600 -0.044538526867970600 1100000.0000000000 --0.0047737292576891400 0.036868958663653702 1100000.0000000000 --0.0018075661033919500 0.14941836842307399 1099999.9999999900 --0.00081177605277040496 0.39037681946924302 1099999.9999999299 --0.00030302562722227998 0.96626869863586995 1099999.9999995800 --0.00016335712268913000 2.3710308322486400 1099999.9999974400 --9.6052402041246304e-05 5.8096977017377203 1099999.9999846600 --1.6758839558204199e-05 14.231723332954600 1099999.9999079399 --0.00018799554928174801 34.861830439515700 1099999.9994475699 --6.1204801639928394e-05 85.396009329129100 1099999.9966852400 --4.5710231448628598e-06 209.17965152006099 1099999.9801108500 --3.6769450644486801e-05 512.37499475846005 1099999.8806690201 --5.8302493621345200e-05 1254.9389335131100 1099999.2841489799 --1.5237848331693801e-05 3073.0863245582000 1099995.7073281901 --2.1178758078367700e-06 7521.8380727777203 1099974.2824048200 - 3.2037036474215499e-05 18389.530208002700 1099846.2734304001 --1.5213412702995899e-05 44828.518462669897 1099086.1676558601 --6.1157607821323300e-05 108456.75129831499 1094640.1843061601 - 8.4679216747392204e-05 256943.71996960399 1069569.9718897201 --2.9018827088236998e-06 570452.76752436894 940523.06724704395 - 2.9124487241747899e-05 -570452.76745759603 940523.06728754402 --0.00010687165219834200 -256943.71995093700 1069569.9718942100 - 5.6584054435190499e-05 -108456.75130777300 1094640.1843052199 - 1.5730167394681999e-05 -44828.518453170298 1099086.1676562501 --7.0127488523623696e-05 -18389.530168751699 1099846.2734310499 --4.2251319402505298e-05 -7521.8380976650196 1099974.2824046500 --1.3916855334217701e-05 -3073.0863652399898 1099995.7073280700 --4.9733357662926497e-06 -1254.9389075457900 1099999.2841490100 --7.9634225587152599e-05 -512.37496263753098 1099999.8806690399 --0.00011596246545958300 -209.17967392998099 1099999.9801108500 --0.00011237433100682500 -85.395983238291294 1099999.9966852400 --1.7724796243755099e-05 -34.861767524250702 1099999.9994475699 --0.00012112107700292400 -14.231767234209800 1099999.9999079299 --0.00013577246022793599 -5.8096450010863103 1099999.9999846600 --0.00014663213258006501 -2.3708700971248500 1099999.9999974400 --0.00014628823503557101 -0.96605733748341704 1099999.9999995800 --0.00058408600681743804 -0.38968862408575999 1099999.9999999299 --0.0016880344274257000 -0.14750328247920999 1099999.9999999900 --0.0039273684183471500 -0.032036379272187901 1100000.0000000000 --0.010451645324901801 0.057182386353302597 1100000.0000000000 --0.027204829058067100 0.19834924107497101 1099999.9999999800 --0.071186493758644304 0.51665750967964397 1099999.9999998801 --0.18751381580722701 1.2966720893091499 1099999.9999992200 --0.49495129353812600 3.2352672676274699 1099999.9999951301 --1.3109393121287700 8.0648352936545091 1099999.9999696501 --3.4853506623222801 20.101066911128999 1099999.9998108200 --9.3041955459502397 50.087887253536202 1099999.9988202900 --24.949988044984298 124.74530831504700 1099999.9926436800 --67.230284331629207 310.39143602311202 1099999.9541532900 --182.10771018027799 771.09144938534200 1099999.7146612201 --496.03311258128298 1910.6181748587001 1099998.2288573701 --1359.0437745959500 4714.1734825404901 1099989.0588403100 --3745.7043402527502 11550.501448668900 1099932.9777833200 --10380.564278548200 27963.888144879202 1099595.5005569500 --28868.965544231800 66250.711901638497 1097623.5356445899 --79989.380957344503 150435.26188561801 1086724.8644047200 --215128.46043841500 311216.56035348302 1032891.0872261100 --513353.02545338898 513353.02545338898 826400.23143492895 --888533.27416035498 525061.95733328594 380550.34052174800 --1078245.4994615701 217542.86807153499 -7857.6995415868696 --1078245.4994615701 -217542.86807153601 -7857.6995415866604 --888533.27416035498 -525061.95733328594 380550.34052174800 --513353.02545338799 -513353.02545338898 826400.23143493000 --215128.46043841500 -311216.56035348302 1032891.0872261100 --79989.380957344503 -150435.26188561699 1086724.8644047200 --28868.965544231702 -66250.711901638497 1097623.5356445899 --10380.564278548100 -27963.888144879202 1099595.5005569500 --3745.7043402527502 -11550.501448668800 1099932.9777833200 --1359.0437745959600 -4714.1734825404801 1099989.0588403100 --496.03311258128298 -1910.6181748587101 1099998.2288573701 --182.10771018027401 -771.09144938533404 1099999.7146612201 --67.230284331628894 -310.39143602311202 1099999.9541532900 --24.949988044984700 -124.74530831504600 1099999.9926436800 --9.3041955459504404 -50.087887253537097 1099999.9988202900 --3.4853506623221699 -20.101066911128701 1099999.9998108200 --1.3109393121287800 -8.0648352936546104 1099999.9999696501 --0.49495129353816802 -3.2352672676275800 1099999.9999951301 --0.18751381580718099 -1.2966720893090100 1099999.9999992200 --0.071186493758660499 -0.51665750967965296 1099999.9999998801 --0.027204829058068598 -0.19834924107499599 1099999.9999999800 --0.010451645324894900 -0.057182386353303603 1100000.0000000000 --0.0039273684183520497 0.032036379272192897 1100000.0000000000 --0.0016880344274255400 0.14750328247921299 1099999.9999999900 --0.00058408600681679403 0.38968862408573801 1099999.9999999299 --0.00014628823504426699 0.96605733748338296 1099999.9999995800 --0.00014663213256108101 2.3708700971248402 1099999.9999974400 --0.00013577246018913700 5.8096450010863698 1099999.9999846600 --0.00012112107711263700 14.231767234210000 1099999.9999079299 --1.7724796201958698e-05 34.861767524250602 1099999.9994475699 --0.00011237433073330600 85.395983238289702 1099999.9966852400 --0.00011596246558826900 209.17967392998099 1099999.9801108500 --7.9634226146773200e-05 512.37496263753701 1099999.8806690399 --4.9733359646794101e-06 1254.9389075457900 1099999.2841490100 --1.3916856158066501e-05 3073.0863652399798 1099995.7073280700 --4.2251327999516700e-05 7521.8380976649996 1099974.2824046500 --7.0127493710843896e-05 18389.530168751699 1099846.2734310499 - 1.5730185453998899e-05 44828.518453170298 1099086.1676562501 - 5.6584015945973599e-05 108456.75130777300 1094640.1843052199 --0.00010687160221265500 256943.71995093700 1069569.9718942100 - 2.9124581100295000e-05 570452.76745759603 940523.06728754402 --7.4453218041281604e-05 -570452.76746375603 940523.06728380697 - 6.9389391202549503e-05 -256943.71995565799 1069569.9718930700 --7.7753367332443000e-05 -108456.75131118001 1094640.1843048800 --4.0868144017724201e-05 -44828.518455861602 1099086.1676561399 - 1.4413011319179600e-05 -18389.530189684199 1099846.2734306999 --2.1756975411558100e-05 -7521.8380858142000 1099974.2824047301 --4.2122673733168397e-05 -3073.0863531225100 1099995.7073281100 --8.9919826576461103e-05 -1254.9389344356300 1099999.2841489799 --4.6706335267438699e-05 -512.37496533952503 1099999.8806690399 --1.1712449244137700e-05 -209.17963349094501 1099999.9801108500 --6.2167473592161801e-05 -85.395975785037507 1099999.9966852400 --0.00017340677489226800 -34.861780517722003 1099999.9994475699 --2.9754967006772999e-05 -14.231713935650300 1099999.9999079399 --5.9848809561967200e-05 -5.8096162499473998 1099999.9999846600 --8.0575767849644402e-05 -2.3708309004758199 1099999.9999974400 --0.00021643883725916901 -0.96582129661517102 1099999.9999995800 --0.00047329402129616001 -0.38910185911673800 1099999.9999999299 --0.00091091013594778105 -0.14611693370209000 1099999.9999999900 --0.0026508235201664499 -0.028337730556005501 1100000.0000000000 --0.0069189436121459801 0.066931311391223505 1100000.0000000000 --0.018281883855660999 0.22404698045602700 1099999.9999999800 --0.048401925401427598 0.58478410167257300 1099999.9999998400 --0.12822729140737699 1.4775242447523700 1099999.9999990000 --0.34121750875504597 3.7176908730200600 1099999.9999936600 --0.91244944562784303 9.3586866702814202 1099999.9999598099 --2.4527189118750798 23.588289901512400 1099999.9997443501 --6.6306459395819299 59.542117406774700 1099999.9983685301 --18.040799544228101 150.54358697436101 1099999.9895505300 --49.445121717079999 381.29548413952301 1099999.9328040599 --136.63327595416601 967.51267644428106 1099999.5660228999 --381.10228122382699 2459.4478700926402 1099997.1844860399 --1074.3160989809101 6261.5584068199596 1099981.6538157500 --3065.1059383789702 15950.839881197900 1099880.0733864901 --8862.9451409824906 40550.313972395197 1099216.5938704601 --25982.613552476301 102129.72334303800 1094940.3743596501 --76797.288801715898 249505.09371728700 1068573.5279529600 --220879.67258125200 552565.44315455004 925139.77391084796 --525061.95733328594 888533.27416035498 380550.34052174701 --714809.15688421205 714809.15688421205 -433700.05587844300 --698385.65421217796 238065.58711888199 -815832.24637199205 --698385.65421217796 -238065.58711888301 -815832.24637199100 --714809.15688421205 -714809.15688421205 -433700.05587844201 --525061.95733328594 -888533.27416035498 380550.34052174800 --220879.67258125200 -552565.44315455004 925139.77391084796 --76797.288801715695 -249505.09371728700 1068573.5279529600 --25982.613552476199 -102129.72334303800 1094940.3743596501 --8862.9451409824596 -40550.313972395103 1099216.5938704601 --3065.1059383789802 -15950.839881197900 1099880.0733864901 --1074.3160989809101 -6261.5584068199496 1099981.6538157500 --381.10228122382802 -2459.4478700926402 1099997.1844860399 --136.63327595416700 -967.51267644428106 1099999.5660228999 --49.445121717078301 -381.29548413951699 1099999.9328040599 --18.040799544228300 -150.54358697436300 1099999.9895505300 --6.6306459395820303 -59.542117406774302 1099999.9983685301 --2.4527189118750901 -23.588289901513001 1099999.9997443501 --0.91244944562785002 -9.3586866702814309 1099999.9999598099 --0.34121750875502099 -3.7176908730198801 1099999.9999936600 --0.12822729140740499 -1.4775242447524199 1099999.9999990000 --0.048401925401410098 -0.58478410167255901 1099999.9999998400 --0.018281883855659899 -0.22404698045603200 1099999.9999999800 --0.0069189436121532798 -0.066931311391231194 1100000.0000000000 --0.0026508235201633899 0.028337730556010299 1100000.0000000000 --0.00091091013594720002 0.14611693370209000 1099999.9999999900 --0.00047329402129994198 0.38910185911673301 1099999.9999999299 --0.00021643883724643801 0.96582129661511396 1099999.9999995800 --8.0575767861138897e-05 2.3708309004757600 1099999.9999974400 --5.9848809649427201e-05 5.8096162499476103 1099999.9999846600 --2.9754966864843701e-05 14.231713935650401 1099999.9999079399 --0.00017340677463942501 34.861780517721300 1099999.9994475699 --6.2167473729845095e-05 85.395975785037095 1099999.9966852400 --1.1712449670356800e-05 209.17963349094501 1099999.9801108500 --4.6706335690349097e-05 512.37496533952697 1099999.8806690399 --8.9919825575975304e-05 1254.9389344356400 1099999.2841489799 --4.2122671591461900e-05 3073.0863531225100 1099995.7073281100 --2.1756979696133100e-05 7521.8380858142000 1099974.2824047301 - 1.4412994870519200e-05 18389.530189684199 1099846.2734306999 --4.0868138899573899e-05 44828.518455861602 1099086.1676561399 --7.7753385627185104e-05 108456.75131118001 1094640.1843048800 - 6.9389503888610005e-05 256943.71995565799 1069569.9718930700 --7.4453156060150100e-05 570452.76746375603 940523.06728380697 - 2.0765014690382400e-05 -570452.76749017602 940523.06726778299 --0.00011455865723692100 -256943.71998433000 1069569.9718861801 - 5.0538487261001800e-05 -108456.75133247100 1094640.1843027701 - 1.6944275137709601e-05 -44828.518461090302 1099086.1676559199 --5.3674481172296297e-05 -18389.530179466499 1099846.2734308699 --2.2916035045638801e-05 -7521.8380969630398 1099974.2824046600 --3.5386846952399400e-06 -3073.0863686301500 1099995.7073280700 - 2.5913981265166701e-05 -1254.9389221072699 1099999.2841490000 --3.7801668209800303e-05 -512.37495292745200 1099999.8806690399 --7.7183928362108294e-05 -209.17964089762501 1099999.9801108500 --4.8088578656796299e-05 -85.395964133858101 1099999.9966852400 - 5.7064839875163599e-05 -34.861755896210397 1099999.9994475699 --5.9103142831181202e-05 -14.231725840167901 1099999.9999079399 --5.9477092114641401e-05 -5.8095956252625403 1099999.9999846600 --5.7525365197107800e-05 -2.3707672111393698 1099999.9999974500 - 1.9586754790524501e-05 -0.96572767251825098 1099999.9999995800 --9.0032210705741098e-05 -0.38882275848209003 1099999.9999999299 --0.00048164837806850998 -0.14533433806983301 1099999.9999999900 --0.00088974214015845896 -0.026320763376247100 1100000.0000000000 --0.0024896883240512098 0.072273693126056901 1100000.0000000000 --0.0064935284401686803 0.23820471679601499 1099999.9999999700 --0.017073400962285702 0.62240519900156699 1099999.9999998200 --0.045603450209278799 1.5782775178578501 1099999.9999988701 --0.12198736134101899 3.9887624267590498 1099999.9999927599 --0.32795575395109400 10.091843773464101 1099999.9999536599 --0.88656420170528505 25.585148273673799 1099999.9997020999 --2.4122791078579202 65.021978460147295 1099999.9980756000 --6.6138910101049202 165.71215447618800 1099999.9874980601 --18.289113876831699 423.69951070468898 1099999.9182473801 --51.075532147497498 1087.4012680593601 1099999.4613406700 --144.26555523982401 2802.8015708326602 1099996.4197627199 --412.88281531962201 7259.1348474902297 1099975.9699598199 --1199.8197824854601 18893.257072184701 1099837.0812396200 --3548.2509409122299 49342.681844547798 1098887.0322574801 --10694.428753563700 128453.55572359600 1092421.7652608401 --32673.475907616699 325348.13004610001 1050276.6484348900 --96566.878256827695 733667.20890625799 813884.06090759195 --217542.86807153601 1078245.4994615701 -7857.6995415876299 --238065.58711888301 698385.65421217703 -815832.24637199205 --208944.17891767301 208944.17891767301 -1059568.1479701200 --208944.17891767301 -208944.17891767301 -1059568.1479701200 --238065.58711888301 -698385.65421217796 -815832.24637199100 --217542.86807153601 -1078245.4994615701 -7857.6995415861902 --96566.878256827404 -733667.20890625694 813884.06090759300 --32673.475907616499 -325348.13004609902 1050276.6484348900 --10694.428753563599 -128453.55572359600 1092421.7652608401 --3548.2509409122699 -49342.681844547697 1098887.0322574801 --1199.8197824854601 -18893.257072184701 1099837.0812396200 --412.88281531963202 -7259.1348474902297 1099975.9699598199 --144.26555523981901 -2802.8015708326602 1099996.4197627199 --51.075532147497398 -1087.4012680593601 1099999.4613406700 --18.289113876832900 -423.69951070469000 1099999.9182473801 --6.6138910101043500 -165.71215447618499 1099999.9874980601 --2.4122791078578900 -65.021978460148205 1099999.9980756000 --0.88656420170532801 -25.585148273673699 1099999.9997020999 --0.32795575395106702 -10.091843773464300 1099999.9999536599 --0.12198736134103701 -3.9887624267591399 1099999.9999927599 --0.045603450209264498 -1.5782775178576900 1099999.9999988701 --0.017073400962302102 -0.62240519900158797 1099999.9999998200 --0.0064935284401643903 -0.23820471679603700 1099999.9999999700 --0.0024896883240431698 -0.072273693126054694 1100000.0000000000 --0.00088974214016530504 0.026320763376242701 1100000.0000000000 --0.00048164837807040299 0.14533433806984000 1099999.9999999900 --9.0032210695387198e-05 0.38882275848206099 1099999.9999999299 - 1.9586754778080299e-05 0.96572767251822900 1099999.9999995800 --5.7525365232478601e-05 2.3707672111394600 1099999.9999974500 --5.9477092053268098e-05 5.8095956252624203 1099999.9999846600 --5.9103142772061399e-05 14.231725840167700 1099999.9999079399 - 5.7064839853609199e-05 34.861755896210802 1099999.9994475699 --4.8088578669934898e-05 85.395964133857106 1099999.9966852400 --7.7183928272810299e-05 209.17964089762501 1099999.9801108500 --3.7801668325647000e-05 512.37495292745598 1099999.8806690399 - 2.5913980629356500e-05 1254.9389221072699 1099999.2841490000 --3.5386822472554598e-06 3073.0863686301600 1099995.7073280700 --2.2916029246974101e-05 7521.8380969630498 1099974.2824046600 --5.3674479264314102e-05 18389.530179466499 1099846.2734308699 - 1.6944274081772901e-05 44828.518461090302 1099086.1676559199 - 5.0538451346825402e-05 108456.75133247100 1094640.1843027701 --0.00011455869438707800 256943.71998433000 1069569.9718861801 - 2.0765074356399701e-05 570452.76749017602 940523.06726778299 --2.0764980130646901e-05 -570452.76749017602 940523.06726778299 - 0.00011455875984079601 -256943.71998433000 1069569.9718861801 --5.0538468115795499e-05 -108456.75133247100 1094640.1843027701 --1.6944267454254201e-05 -44828.518461090302 1099086.1676559199 - 5.3674482206149198e-05 -18389.530179466499 1099846.2734308699 - 2.2916027642108199e-05 -7521.8380969630498 1099974.2824046600 - 3.5386903361492800e-06 -3073.0863686301500 1099995.7073280700 --2.5913980086542500e-05 -1254.9389221072699 1099999.2841490000 - 3.7801667222176800e-05 -512.37495292745496 1099999.8806690399 - 7.7183928004876404e-05 -209.17964089762501 1099999.9801108500 - 4.8088578738912199e-05 -85.395964133857603 1099999.9966852400 --5.7064839789484502e-05 -34.861755896210703 1099999.9994475699 - 5.9103142787112903e-05 -14.231725840167799 1099999.9999079399 - 5.9477092063092603e-05 -5.8095956252624097 1099999.9999846600 - 5.7525365200858502e-05 -2.3707672111395102 1099999.9999974500 --1.9586754775851400e-05 -0.96572767251824898 1099999.9999995800 - 9.0032210705362806e-05 -0.38882275848205000 1099999.9999999299 - 0.00048164837806857102 -0.14533433806985399 1099999.9999999900 - 0.00088974214016098797 -0.026320763376233999 1100000.0000000000 - 0.0024896883240478201 0.072273693126037902 1100000.0000000000 - 0.0064935284401628499 0.23820471679602800 1099999.9999999700 - 0.017073400962288800 0.62240519900162705 1099999.9999998200 - 0.045603450209282997 1.5782775178577000 1099999.9999988701 - 0.12198736134104400 3.9887624267591901 1099999.9999927599 - 0.32795575395113202 10.091843773464101 1099999.9999536599 - 0.88656420170524997 25.585148273673600 1099999.9997020999 - 2.4122791078576502 65.021978460148205 1099999.9980756000 - 6.6138910101045303 165.71215447618599 1099999.9874980601 - 18.289113876832200 423.69951070469102 1099999.9182473801 - 51.075532147497199 1087.4012680593701 1099999.4613406700 - 144.26555523982600 2802.8015708326602 1099996.4197627199 - 412.88281531962798 7259.1348474902197 1099975.9699598199 - 1199.8197824854601 18893.257072184701 1099837.0812396200 - 3548.2509409122399 49342.681844547798 1098887.0322574801 - 10694.428753563700 128453.55572359600 1092421.7652608401 - 32673.475907616601 325348.13004610001 1050276.6484348900 - 96566.878256827506 733667.20890625799 813884.06090759195 - 217542.86807153601 1078245.4994615701 -7857.6995415877600 - 238065.58711888301 698385.65421217703 -815832.24637199205 - 208944.17891767301 208944.17891767301 -1059568.1479701200 - 208944.17891767301 -208944.17891767301 -1059568.1479701200 - 238065.58711888301 -698385.65421217796 -815832.24637199205 - 217542.86807153601 -1078245.4994615701 -7857.6995415862502 - 96566.878256827404 -733667.20890625694 813884.06090759300 - 32673.475907616499 -325348.13004609902 1050276.6484348900 - 10694.428753563700 -128453.55572359600 1092421.7652608401 - 3548.2509409122099 -49342.681844547697 1098887.0322574801 - 1199.8197824854601 -18893.257072184701 1099837.0812396200 - 412.88281531963798 -7259.1348474902197 1099975.9699598199 - 144.26555523982100 -2802.8015708326702 1099996.4197627199 - 51.075532147497000 -1087.4012680593601 1099999.4613406700 - 18.289113876832200 -423.69951070468602 1099999.9182473801 - 6.6138910101040196 -165.71215447618800 1099999.9874980601 - 2.4122791078578301 -65.021978460147395 1099999.9980756000 - 0.88656420170544903 -25.585148273674200 1099999.9997020999 - 0.32795575395109600 -10.091843773464200 1099999.9999536599 - 0.12198736134102200 -3.9887624267590001 1099999.9999927599 - 0.045603450209266302 -1.5782775178577499 1099999.9999988701 - 0.017073400962302601 -0.62240519900160496 1099999.9999998200 - 0.0064935284401645898 -0.23820471679603500 1099999.9999999700 - 0.0024896883240436902 -0.072273693126043703 1100000.0000000000 - 0.00088974214016278297 0.026320763376244900 1100000.0000000000 - 0.00048164837806989797 0.14533433806983301 1099999.9999999900 - 9.0032210701715496e-05 0.38882275848205700 1099999.9999999299 --1.9586754789285501e-05 0.96572767251826197 1099999.9999995800 - 5.7525365217727299e-05 2.3707672111393601 1099999.9999974500 - 5.9477092083761399e-05 5.8095956252624896 1099999.9999846600 - 5.9103142755190203e-05 14.231725840168099 1099999.9999079399 --5.7064839842603598e-05 34.861755896209999 1099999.9994475699 - 4.8088578890461003e-05 85.395964133857305 1099999.9966852400 - 7.7183928270327504e-05 209.17964089762501 1099999.9801108500 - 3.7801667314643301e-05 512.37495292745700 1099999.8806690399 --2.5913980467573302e-05 1254.9389221072699 1099999.2841490000 - 3.5386889041061202e-06 3073.0863686301400 1099995.7073280700 - 2.2916032905458999e-05 7521.8380969630498 1099974.2824046600 - 5.3674486613615303e-05 18389.530179466499 1099846.2734308699 --1.6944240159841499e-05 44828.518461090403 1099086.1676559199 --5.0538450310371399e-05 108456.75133247100 1094640.1843027701 - 0.00011455865764045500 256943.71998433000 1069569.9718861801 --2.0765111057915799e-05 570452.76749017602 940523.06726778299 - 7.4453360729608904e-05 -570452.76746375696 940523.06728380697 --6.9389438649974697e-05 -256943.71995565799 1069569.9718930700 - 7.7753333989444404e-05 -108456.75131118001 1094640.1843048800 - 4.0868138441040901e-05 -44828.518455861602 1099086.1676561399 --1.4412954302036901e-05 -18389.530189684199 1099846.2734306999 - 2.1756978682347901e-05 -7521.8380858141900 1099974.2824047301 - 4.2122669046372802e-05 -3073.0863531225200 1099995.7073281100 - 8.9919828645979393e-05 -1254.9389344356300 1099999.2841489799 - 4.6706335827018602e-05 -512.37496533952299 1099999.8806690399 - 1.1712449021553901e-05 -209.17963349094600 1099999.9801108500 - 6.2167473522543499e-05 -85.395975785038203 1099999.9966852400 - 0.00017340677481775401 -34.861780517721400 1099999.9994475699 - 2.9754966971878901e-05 -14.231713935650200 1099999.9999079399 - 5.9848809588508002e-05 -5.8096162499477098 1099999.9999846600 - 8.0575767860159198e-05 -2.3708309004757799 1099999.9999974400 - 0.00021643883724778001 -0.96582129661512695 1099999.9999995800 - 0.00047329402130053498 -0.38910185911675399 1099999.9999999299 - 0.00091091013595084197 -0.14611693370207901 1099999.9999999900 - 0.0026508235201643600 -0.028337730556016200 1100000.0000000000 - 0.0069189436121475899 0.066931311391246501 1100000.0000000000 - 0.018281883855653901 0.22404698045601201 1099999.9999999800 - 0.048401925401413699 0.58478410167251305 1099999.9999998400 - 0.12822729140742101 1.4775242447525201 1099999.9999990000 - 0.34121750875506102 3.7176908730199201 1099999.9999936600 - 0.91244944562777497 9.3586866702813705 1099999.9999598099 - 2.4527189118750798 23.588289901512699 1099999.9997443501 - 6.6306459395821298 59.542117406774203 1099999.9983685301 - 18.040799544228001 150.54358697436399 1099999.9895505300 - 49.445121717078003 381.29548413952199 1099999.9328040599 - 136.63327595416700 967.51267644427696 1099999.5660228999 - 381.10228122383103 2459.4478700926402 1099997.1844860399 - 1074.3160989809101 6261.5584068199596 1099981.6538157500 - 3065.1059383789702 15950.839881197900 1099880.0733864901 - 8862.9451409824997 40550.313972395103 1099216.5938704601 - 25982.613552476301 102129.72334303800 1094940.3743596501 - 76797.288801715898 249505.09371728700 1068573.5279529600 - 220879.67258125200 552565.44315455004 925139.77391084703 - 525061.95733328594 888533.27416035498 380550.34052174701 - 714809.15688421205 714809.15688421205 -433700.05587844300 - 698385.65421217796 238065.58711888199 -815832.24637199205 - 698385.65421217796 -238065.58711888301 -815832.24637199205 - 714809.15688421205 -714809.15688421205 -433700.05587844201 - 525061.95733328501 -888533.27416035498 380550.34052174800 - 220879.67258125200 -552565.44315455004 925139.77391084796 - 76797.288801715695 -249505.09371728700 1068573.5279529600 - 25982.613552476199 -102129.72334303800 1094940.3743596501 - 8862.9451409824505 -40550.313972395103 1099216.5938704601 - 3065.1059383789802 -15950.839881197900 1099880.0733864901 - 1074.3160989809101 -6261.5584068199596 1099981.6538157500 - 381.10228122382699 -2459.4478700926302 1099997.1844860399 - 136.63327595416499 -967.51267644427799 1099999.5660228999 - 49.445121717077797 -381.29548413952199 1099999.9328040599 - 18.040799544228200 -150.54358697436101 1099999.9895505300 - 6.6306459395822603 -59.542117406775198 1099999.9983685301 - 2.4527189118750701 -23.588289901512500 1099999.9997443501 - 0.91244944562783403 -9.3586866702814504 1099999.9999598099 - 0.34121750875505702 -3.7176908730200200 1099999.9999936600 - 0.12822729140740199 -1.4775242447523600 1099999.9999990000 - 0.048401925401402500 -0.58478410167254202 1099999.9999998400 - 0.018281883855660298 -0.22404698045603400 1099999.9999999800 - 0.0069189436121537698 -0.066931311391238493 1100000.0000000000 - 0.0026508235201640000 0.028337730556007801 1100000.0000000000 - 0.00091091013594815997 0.14611693370208700 1099999.9999999900 - 0.00047329402129587302 0.38910185911674999 1099999.9999999299 - 0.00021643883725893900 0.96582129661507998 1099999.9999995800 - 8.0575767840929599e-05 2.3708309004758301 1099999.9999974400 - 5.9848809577146302e-05 5.8096162499476396 1099999.9999846600 - 2.9754966999102201e-05 14.231713935650101 1099999.9999079399 - 0.00017340677478440699 34.861780517721499 1099999.9994475699 - 6.2167473566457997e-05 85.395975785036896 1099999.9966852400 - 1.1712449168103199e-05 209.17963349094600 1099999.9801108500 - 4.6706335871970498e-05 512.37496533952606 1099999.8806690399 - 8.9919828027345302e-05 1254.9389344356300 1099999.2841489799 - 4.2122672555936400e-05 3073.0863531225200 1099995.7073281100 - 2.1756980017057899e-05 7521.8380858141800 1099974.2824047301 --1.4412944229875800e-05 18389.530189684101 1099846.2734306999 - 4.0868172255771803e-05 44828.518455861602 1099086.1676561399 - 7.7753445796962996e-05 108456.75131118001 1094640.1843048800 --6.9389470994961100e-05 256943.71995565799 1069569.9718930700 - 7.4453132675309500e-05 570452.76746375696 940523.06728380697 --2.9124435796483001e-05 -570452.76745759603 940523.06728754402 - 0.00010687170253150601 -256943.71995093700 1069569.9718942100 --5.6584016803115003e-05 -108456.75130777300 1094640.1843052199 --1.5730122970787900e-05 -44828.518453170400 1099086.1676562501 - 7.0127494691358598e-05 -18389.530168751699 1099846.2734310499 - 4.2251329396501001e-05 -7521.8380976649596 1099974.2824046500 - 1.3916858545106400e-05 -3073.0863652399698 1099995.7073280700 - 4.9733315439162102e-06 -1254.9389075457900 1099999.2841490100 - 7.9634225687285406e-05 -512.37496263753098 1099999.8806690399 - 0.00011596246611537000 -209.17967392998199 1099999.9801108500 - 0.00011237433083297001 -85.395983238291095 1099999.9966852400 - 1.7724796154865601e-05 -34.861767524250801 1099999.9994475699 - 0.00012112107707320500 -14.231767234209800 1099999.9999079299 - 0.00013577246021196501 -5.8096450010862304 1099999.9999846600 - 0.00014663213256291101 -2.3708700971249299 1099999.9999974400 - 0.00014628823505391500 -0.96605733748342104 1099999.9999995800 - 0.00058408600681513899 -0.38968862408573601 1099999.9999999299 - 0.0016880344274218899 -0.14750328247921601 1099999.9999999900 - 0.0039273684183504798 -0.032036379272178103 1100000.0000000000 - 0.010451645324897400 0.057182386353281399 1100000.0000000000 - 0.027204829058067100 0.19834924107499499 1099999.9999999800 - 0.071186493758654795 0.51665750967968205 1099999.9999998801 - 0.18751381580718801 1.2966720893090000 1099999.9999992200 - 0.49495129353818401 3.2352672676276302 1099999.9999951301 - 1.3109393121288699 8.0648352936544807 1099999.9999696501 - 3.4853506623220598 20.101066911128701 1099999.9998108200 - 9.3041955459499608 50.087887253537303 1099999.9988202900 - 24.949988044984799 124.74530831504600 1099999.9926436800 - 67.230284331630799 310.39143602311202 1099999.9541532900 - 182.10771018027501 771.09144938534303 1099999.7146612201 - 496.03311258127798 1910.6181748587001 1099998.2288573701 - 1359.0437745959600 4714.1734825404801 1099989.0588403100 - 3745.7043402527702 11550.501448668800 1099932.9777833200 - 10380.564278548100 27963.888144879202 1099595.5005569500 - 28868.965544231800 66250.711901638497 1097623.5356445899 - 79989.380957344503 150435.26188561801 1086724.8644047200 - 215128.46043841500 311216.56035348302 1032891.0872261100 - 513353.02545338898 513353.02545338898 826400.23143492895 - 888533.27416035498 525061.95733328594 380550.34052174701 - 1078245.4994615701 217542.86807153499 -7857.6995415871697 - 1078245.4994615701 -217542.86807153601 -7857.6995415868696 - 888533.27416035498 -525061.95733328594 380550.34052174800 - 513353.02545338799 -513353.02545338898 826400.23143493000 - 215128.46043841500 -311216.56035348302 1032891.0872261100 - 79989.380957344503 -150435.26188561699 1086724.8644047200 - 28868.965544231702 -66250.711901638497 1097623.5356445899 - 10380.564278548100 -27963.888144879100 1099595.5005569500 - 3745.7043402527502 -11550.501448668900 1099932.9777833200 - 1359.0437745959500 -4714.1734825404901 1099989.0588403100 - 496.03311258128002 -1910.6181748587101 1099998.2288573701 - 182.10771018027501 -771.09144938533905 1099999.7146612201 - 67.230284331629605 -310.39143602310997 1099999.9541532900 - 24.949988044984700 -124.74530831504801 1099999.9926436800 - 9.3041955459501100 -50.087887253536202 1099999.9988202900 - 3.4853506623223498 -20.101066911129099 1099999.9998108200 - 1.3109393121288400 -8.0648352936546104 1099999.9999696501 - 0.49495129353811002 -3.2352672676274001 1099999.9999951301 - 0.18751381580718199 -1.2966720893090500 1099999.9999992200 - 0.071186493758668395 -0.51665750967967605 1099999.9999998801 - 0.027204829058069199 -0.19834924107499999 1099999.9999999800 - 0.010451645324895099 -0.057182386353291002 1100000.0000000000 - 0.0039273684183510297 0.032036379272194798 1100000.0000000000 - 0.0016880344274257800 0.14750328247920599 1099999.9999999900 - 0.00058408600681839800 0.38968862408570998 1099999.9999999299 - 0.00014628823502824801 0.96605733748345501 1099999.9999995800 - 0.00014663213257318699 2.3708700971248602 1099999.9999974400 - 0.00013577246021783201 5.8096450010862402 1099999.9999846600 - 0.00012112107702758900 14.231767234210000 1099999.9999079299 - 1.7724796320711101e-05 34.861767524250297 1099999.9994475699 - 0.00011237433065881700 85.395983238290896 1099999.9966852400 - 0.00011596246536029601 209.17967392998099 1099999.9801108500 - 7.9634226717140304e-05 512.37496263753405 1099999.8806690399 - 4.9733350011792801e-06 1254.9389075457900 1099999.2841490100 - 1.3916856335243901e-05 3073.0863652399698 1099995.7073280700 - 4.2251329558016597e-05 7521.8380976649496 1099974.2824046500 - 7.0127488178594406e-05 18389.530168751699 1099846.2734310499 --1.5730133638902699e-05 44828.518453170400 1099086.1676562501 --5.6584075662618598e-05 108456.75130777300 1094640.1843052199 - 0.00010687159710899001 256943.71995093700 1069569.9718942100 --2.9124580639939800e-05 570452.76745759603 940523.06728754402 - 2.9019132994174900e-06 -570452.76752436894 940523.06724704395 --8.4679254018192894e-05 -256943.71996960399 1069569.9718897201 - 6.1157689793022707e-05 -108456.75129831499 1094640.1843061601 - 1.5213421066190200e-05 -44828.518462669897 1099086.1676558601 --3.2037079458566400e-05 -18389.530208002601 1099846.2734304001 - 2.1178787504872501e-06 -7521.8380727777203 1099974.2824048200 - 1.5237849107184001e-05 -3073.0863245582000 1099995.7073281901 - 5.8302490897426202e-05 -1254.9389335131000 1099999.2841489799 - 3.6769449163236498e-05 -512.37499475846096 1099999.8806690201 - 4.5710235971179501e-06 -209.17965152006201 1099999.9801108500 - 6.1204801896368906e-05 -85.396009329129498 1099999.9966852400 - 0.00018799554915832100 -34.861830439515700 1099999.9994475699 - 1.6758839512724401e-05 -14.231723332954401 1099999.9999079399 - 9.6052402058591899e-05 -5.8096977017378402 1099999.9999846600 - 0.00016335712270049699 -2.3710308322486600 1099999.9999974400 - 0.00030302562722251802 -0.96626869863586595 1099999.9999995800 - 0.00081177605277516396 -0.39037681946924402 1099999.9999999299 - 0.0018075661033889600 -0.14941836842307099 1099999.9999999900 - 0.0047737292576904601 -0.036868958663664499 1100000.0000000000 - 0.012366141660014500 0.044538526867988398 1100000.0000000000 - 0.032112117052722898 0.16534626803439401 1099999.9999999900 - 0.083330106046984806 0.43033768620812402 1099999.9999999099 - 0.21668652312024700 1.0695596637383100 1099999.9999994601 - 0.56478111642814299 2.6365874350318501 1099999.9999966901 - 1.4755819369603600 6.4828783064093596 1099999.9999799100 - 3.8629792627057098 15.905837967709200 1099999.9998782200 - 10.132381179951500 38.927148126293503 1099999.9992645499 - 26.626267684302700 94.955138015529300 1099999.9955793500 - 70.087746721568607 230.61675061491201 1099999.9735925600 - 184.73291066941599 556.82842281487603 1099999.8435526500 - 487.25532919434897 1333.7803285785801 1099999.0834597400 - 1284.8383116212401 3159.5270374534898 1099994.7120688399 - 3381.4892439650898 7366.5710456906900 1099970.1355771101 - 8857.4993260248903 16776.864837009900 1099836.3885196401 - 22972.128145567000 36844.537936716602 1099142.7392985399 - 58367.669915573701 76225.705504997502 1095802.3804176101 - 141824.81643559600 141824.81643559600 1081559.7269157299 - 311216.56035348302 215128.46043841500 1032891.0872261100 - 552565.44315455004 220879.67258125200 925139.77391084796 - 733667.20890625694 96566.878256827506 813884.06090759195 - 733667.20890625694 -96566.878256827695 813884.06090759195 - 552565.44315455004 -220879.67258125200 925139.77391084796 - 311216.56035348302 -215128.46043841500 1032891.0872261100 - 141824.81643559600 -141824.81643559600 1081559.7269157299 - 58367.669915573701 -76225.705504997502 1095802.3804176101 - 22972.128145566901 -36844.537936716501 1099142.7392985399 - 8857.4993260249103 -16776.864837009900 1099836.3885196401 - 3381.4892439650898 -7366.5710456907000 1099970.1355771101 - 1284.8383116212501 -3159.5270374534998 1099994.7120688399 - 487.25532919434698 -1333.7803285785801 1099999.0834597400 - 184.73291066941300 -556.82842281487501 1099999.8435526500 - 70.087746721568607 -230.61675061491300 1099999.9735925600 - 26.626267684302800 -94.955138015527993 1099999.9955793500 - 10.132381179951899 -38.927148126294199 1099999.9992645499 - 3.8629792627056498 -15.905837967709100 1099999.9998782200 - 1.4755819369603400 -6.4828783064093001 1099999.9999799100 - 0.56478111642815898 -2.6365874350319300 1099999.9999966901 - 0.21668652312022299 -1.0695596637382001 1099999.9999994601 - 0.083330106046979394 -0.43033768620815099 1099999.9999999099 - 0.032112117052730600 -0.16534626803441899 1099999.9999999900 - 0.012366141660017800 -0.044538526867977803 1100000.0000000000 - 0.0047737292576921697 0.036868958663655298 1100000.0000000000 - 0.0018075661033902901 0.14941836842307399 1099999.9999999900 - 0.00081177605276164504 0.39037681946927399 1099999.9999999299 - 0.00030302562722443602 0.96626869863580200 1099999.9999995800 - 0.00016335712270087801 2.3710308322486799 1099999.9999974400 - 9.6052402053528295e-05 5.8096977017378704 1099999.9999846600 - 1.6758839597239299e-05 14.231723332954100 1099999.9999079399 - 0.00018799554913065500 34.861830439515899 1099999.9994475699 - 6.1204801552134798e-05 85.396009329129200 1099999.9966852400 - 4.5710230376333600e-06 209.17965152006201 1099999.9801108500 - 3.6769450068386903e-05 512.37499475846096 1099999.8806690201 - 5.8302493886271498e-05 1254.9389335131000 1099999.2841489799 - 1.5237849861735900e-05 3073.0863245582100 1099995.7073281901 - 2.1178671366878300e-06 7521.8380727777203 1099974.2824048200 --3.2037089584303597e-05 18389.530208002601 1099846.2734304001 - 1.5213374392886400e-05 44828.518462669999 1099086.1676558601 - 6.1157590486307702e-05 108456.75129831499 1094640.1843061601 --8.4679257746928395e-05 256943.71996960399 1069569.9718897201 - 2.9019150715706400e-06 570452.76752436894 940523.06724704395 --1.6183368954551099e-05 -570452.76760803198 940523.06719630002 - 9.3205961494079599e-05 -256943.72001638700 1069569.9718784799 --7.5142815876628796e-05 -108456.75132053001 1094640.1843039601 --4.0769529402544103e-05 -44828.518471246200 1099086.1676555099 - 4.0967066289212600e-05 -18389.530177787201 1099846.2734308999 - 6.1421256732223600e-06 -7521.8380913221499 1099974.2824047001 --4.8156132609329101e-05 -3073.0863386306501 1099995.7073281500 --5.2595963382168602e-05 -1254.9388875776699 1099999.2841490300 - 2.0828029012256801e-05 -512.37497949419696 1099999.8806690299 - 4.5471912852726100e-05 -209.17971389875700 1099999.9801108399 - 6.1171358256866597e-05 -85.396017410009506 1099999.9966852400 --9.0029569970163103e-06 -34.861801822438800 1099999.9994475699 - 9.5532240999394397e-05 -14.231814400158100 1099999.9999079299 - 9.9422262361769501e-05 -5.8097207359889698 1099999.9999846600 - 0.00014082724317752101 -2.3710822667649998 1099999.9999974400 - 0.00019154211545707899 -0.96664746458626205 1099999.9999995800 - 0.00077671167656247100 -0.39123891469720101 1099999.9999999299 - 0.0021817783571690102 -0.15143085083992999 1099999.9999999900 - 0.0050052778615526103 -0.042178057704529703 1100000.0000000000 - 0.012941388987010700 0.030824764997928300 1100000.0000000000 - 0.032995482055253600 0.12989087131200000 1099999.9999999900 - 0.084403350862033794 0.33854678416238998 1099999.9999999399 - 0.21680918907231700 0.83209670852013995 1099999.9999996601 - 0.55668826301809904 2.0209664567691901 1099999.9999980000 - 1.4297541332868300 4.8848107373636402 1099999.9999882199 - 3.6724115649277702 11.756624978938399 1099999.9999310400 - 9.4273547132975093 28.150744360171299 1099999.9995993900 - 24.175544665116199 66.978330375050902 1099999.9976951999 - 61.881298160457703 158.07930214788399 1099999.9869007501 - 157.93046657872500 369.24565470460101 1099999.9266889100 - 401.26120732628402 850.91581778989405 1099999.5976961600 - 1012.7115939669700 1926.0327172766599 1099997.8476402599 - 2530.6987143336000 4254.5675613894800 1099988.8609521801 - 6231.0955475001001 9083.7540683287298 1099944.8435536700 - 14999.254362146799 18462.828869586901 1099742.7637037300 - 34835.407239634798 34835.407239634798 1098896.2593461201 - 76225.705504997401 58367.669915573701 1095802.3804176101 - 150435.26188561801 79989.380957344503 1086724.8644047200 - 249505.09371728700 76797.288801715797 1068573.5279529600 - 325348.13004610001 32673.475907616499 1050276.6484348900 - 325348.13004610001 -32673.475907616601 1050276.6484348900 - 249505.09371728700 -76797.288801715695 1068573.5279529600 - 150435.26188561699 -79989.380957344503 1086724.8644047200 - 76225.705504997502 -58367.669915573701 1095802.3804176101 - 34835.407239634696 -34835.407239634696 1098896.2593461201 - 14999.254362146899 -18462.828869586901 1099742.7637037300 - 6231.0955475001101 -9083.7540683287207 1099944.8435536700 - 2530.6987143336200 -4254.5675613894800 1099988.8609521801 - 1012.7115939669600 -1926.0327172766599 1099997.8476402599 - 401.26120732627902 -850.91581778989098 1099999.5976961600 - 157.93046657872500 -369.24565470459999 1099999.9266889100 - 61.881298160458300 -158.07930214788499 1099999.9869007501 - 24.175544665116799 -66.978330375052195 1099999.9976951999 - 9.4273547132972801 -28.150744360170300 1099999.9995993900 - 3.6724115649278999 -11.756624978938500 1099999.9999310400 - 1.4297541332868600 -4.8848107373637699 1099999.9999882199 - 0.55668826301800700 -2.0209664567689800 1099999.9999980000 - 0.21680918907231400 -0.83209670852018303 1099999.9999996601 - 0.084403350862052806 -0.33854678416241302 1099999.9999999399 - 0.032995482055255897 -0.12989087131199800 1099999.9999999900 - 0.012941388987011099 -0.030824764997937799 1100000.0000000000 - 0.0050052778615538897 0.042178057704541000 1100000.0000000000 - 0.0021817783571647900 0.15143085083994101 1099999.9999999900 - 0.00077671167656144502 0.39123891469717498 1099999.9999999299 - 0.00019154211544433601 0.96664746458630202 1099999.9999995800 - 0.00014082724319036601 2.3710822667649500 1099999.9999974400 - 9.9422262427695295e-05 5.8097207359887699 1099999.9999846600 - 9.5532240932361199e-05 14.231814400158299 1099999.9999079299 --9.0029570822367897e-06 34.861801822438800 1099999.9994475699 - 6.1171358284095495e-05 85.396017410009605 1099999.9966852400 - 4.5471912422042101e-05 209.17971389875700 1099999.9801108399 - 2.0828027866937302e-05 512.37497949419605 1099999.8806690299 --5.2595959731030203e-05 1254.9388875776699 1099999.2841490300 --4.8156130792335503e-05 3073.0863386306701 1099995.7073281500 - 6.1421196675385303e-06 7521.8380913221499 1099974.2824047001 - 4.0967059508556499e-05 18389.530177787201 1099846.2734308999 --4.0769576526801697e-05 44828.518471246200 1099086.1676555099 --7.5142751535659707e-05 108456.75132053001 1094640.1843039601 - 9.3205989637042006e-05 256943.72001638700 1069569.9718784799 --1.6183255689707899e-05 570452.76760803198 940523.06719630002 - 9.2187293979696994e-05 -570452.76765581104 940523.06716732099 - 3.6204973371349500e-06 -256943.72000685200 1069569.9718807701 - 9.1446131897015206e-05 -108456.75127144200 1094640.1843088199 --4.8806694765885197e-06 -44828.518459652099 1099086.1676559800 --6.5225171825157306e-05 -18389.530219315198 1099846.2734302101 --4.1278436591309797e-05 -7521.8380569980200 1099974.2824049301 --4.3718795890815198e-05 -3073.0862822399899 1099995.7073283100 --2.9844543109733901e-05 -1254.9388963563399 1099999.2841490200 --2.9868902523905799e-05 -512.37502531019402 1099999.8806690101 --5.9964019205721598e-05 -209.17968650285400 1099999.9801108399 --2.5321517976596199e-05 -85.396041551935099 1099999.9966852299 - 0.00012399847398498399 -34.861883702139203 1099999.9994475699 --6.1036023799331500e-05 -14.231736350208999 1099999.9999079399 - 5.6512241544200403e-05 -5.8097933142876803 1099999.9999846600 - 0.00017142686376555300 -2.3712679540272399 1099999.9999974400 - 0.00023956144160054501 -0.96683613572658900 1099999.9999995800 - 0.00077806611571003400 -0.39203029713809001 1099999.9999999299 - 0.0019052411850857399 -0.15357861495994499 1099999.9999999900 - 0.0048013379518067698 -0.047377872380913302 1100000.0000000000 - 0.012123883548424700 0.017516071261362901 1100000.0000000000 - 0.030749151061605400 0.096075429243843394 1100000.0000000000 - 0.077409030690775898 0.25254594534164398 1099999.9999999700 - 0.19529343282271100 0.61292828732142501 1099999.9999998100 - 0.49265488335913998 1.4634620387530799 1099999.9999989199 - 1.2410464941562800 3.4695128848842800 1099999.9999938300 - 3.1193649314124201 8.1696535522944504 1099999.9999652400 - 7.8162544568020902 19.088566979019902 1099999.9998066099 - 19.504850152125901 44.179969387480000 1099999.9989398599 - 48.412147269610500 101.06106027464300 1099999.9942922399 - 119.30874972343599 227.80395983235499 1099999.9699412601 - 291.26340304453697 504.00114809084801 1099999.8459765699 - 702.13103819554703 1088.5330999407499 1099999.2373214201 - 1663.9993203961301 2277.7043718931800 1099996.3832527201 - 3852.6162820042100 4567.1728483074103 1099983.7718257301 - 8633.6056648291196 8633.6056648291196 1099932.2350519800 - 18462.828869586901 14999.254362146899 1099742.7637037300 - 36844.537936716602 22972.128145566901 1099142.7392985399 - 66250.711901638497 28868.965544231800 1097623.5356445899 - 102129.72334303800 25982.613552476301 1094940.3743596501 - 128453.55572359600 10694.428753563700 1092421.7652608401 - 128453.55572359600 -10694.428753563700 1092421.7652608401 - 102129.72334303800 -25982.613552476301 1094940.3743596501 - 66250.711901638599 -28868.965544231800 1097623.5356445899 - 36844.537936716602 -22972.128145566901 1099142.7392985399 - 18462.828869586901 -14999.254362146899 1099742.7637037300 - 8633.6056648291105 -8633.6056648290996 1099932.2350519800 - 3852.6162820042200 -4567.1728483073903 1099983.7718257301 - 1663.9993203961301 -2277.7043718931900 1099996.3832527201 - 702.13103819553999 -1088.5330999407499 1099999.2373214201 - 291.26340304453601 -504.00114809084499 1099999.8459765699 - 119.30874972343901 -227.80395983235999 1099999.9699412601 - 48.412147269611602 -101.06106027464500 1099999.9942922399 - 19.504850152125002 -44.179969387478003 1099999.9989398599 - 7.8162544568022296 -19.088566979020101 1099999.9998066099 - 3.1193649314125000 -8.1696535522945695 1099999.9999652400 - 1.2410464941561901 -3.4695128848841699 1099999.9999938300 - 0.49265488335914298 -1.4634620387531101 1099999.9999989199 - 0.19529343282271100 -0.61292828732138205 1099999.9999998100 - 0.077409030690779299 -0.25254594534166203 1099999.9999999700 - 0.030749151061609602 -0.096075429243865307 1100000.0000000000 - 0.012123883548423199 -0.017516071261353901 1100000.0000000000 - 0.0048013379518073501 0.047377872380911498 1100000.0000000000 - 0.0019052411850866799 0.15357861495994499 1099999.9999999900 - 0.00077806611570158796 0.39203029713813597 1099999.9999999299 - 0.00023956144161423301 0.96683613572653604 1099999.9999995800 - 0.00017142686377787900 2.3712679540271400 1099999.9999974400 - 5.6512241464789797e-05 5.8097933142877496 1099999.9999846600 --6.1036023750026905e-05 14.231736350208800 1099999.9999079399 - 0.00012399847412929201 34.861883702139302 1099999.9994475699 --2.5321518004305100e-05 85.396041551935795 1099999.9966852299 --5.9964019684156097e-05 209.17968650285400 1099999.9801108399 --2.9868902881994500e-05 512.37502531019004 1099999.8806690101 --2.9844544203488399e-05 1254.9388963563399 1099999.2841490200 --4.3718795969825998e-05 3073.0862822399899 1099995.7073283100 --4.1278432272525101e-05 7521.8380569980400 1099974.2824049301 --6.5225181062809995e-05 18389.530219315198 1099846.2734302101 --4.8807033758090399e-06 44828.518459652099 1099086.1676559800 - 9.1446146823998995e-05 108456.75127144200 1094640.1843088199 - 3.6205685154071399e-06 256943.72000685200 1069569.9718807701 - 9.2187347544009403e-05 570452.76765581104 940523.06716732099 - 0.00014723392208145200 -570452.76761575299 940523.06719161803 - 0.00015979773216540400 -256943.71993696500 1069569.9718975599 --4.0557922754988601e-05 -108456.75122494600 1094640.1843134300 --3.4439169810190798e-05 -44828.518434801103 1099086.1676570000 - 2.0174080349364400e-05 -18389.530166869099 1099846.2734310799 --1.4887002088886000e-05 -7521.8380589620101 1099974.2824049201 --9.0009197546324607e-05 -3073.0862846948498 1099995.7073283000 --0.00010718753931750500 -1254.9388571447600 1099999.2841490700 --3.9936242746099797e-05 -512.37498379994804 1099999.8806690299 --2.1560827774933499e-05 -209.17975058826201 1099999.9801108299 --7.2356454483174802e-06 -85.396060102379906 1099999.9966852299 --5.2741958081169998e-05 -34.861851244270603 1099999.9994475699 - 4.9466391248440401e-05 -14.231846272012200 1099999.9999079299 --3.6580829382166798e-06 -5.8097737341912596 1099999.9999846600 - 7.8930788325853101e-05 -2.3713218235486999 1099999.9999974400 - 0.00013345081784189099 -0.96723871338506595 1099999.9999995700 - 0.00062020457792632796 -0.39278424689247299 1099999.9999999299 - 0.0019172360769172099 -0.15537756383630300 1099999.9999999900 - 0.0042294954742897097 -0.052062162901163202 1100000.0000000000 - 0.010534870794257099 0.0058039722389934901 1100000.0000000000 - 0.026266201926461900 0.066632419248443195 1100000.0000000000 - 0.065236854586379497 0.17888657999955601 1099999.9999999800 - 0.16184203782301201 0.42934171025978402 1099999.9999999001 - 0.40036619922269101 1.0064638720070200 1099999.9999994701 - 0.98718080850259304 2.3356907028023799 1099999.9999970801 - 2.4238673739118402 5.3721840682434401 1099999.9999842099 - 5.9176328253953603 12.227863194485700 1099999.9999161200 - 14.347054606842301 27.488653781556000 1099999.9995629699 - 34.481020239990698 60.866295937548500 1099999.9977756201 - 81.965805688905505 132.28529202445100 1099999.9889919099 - 192.15375222393300 280.91255261120500 1099999.9473477600 - 442.54097794716102 579.31279240390404 1099999.7584336901 - 996.09897128356295 1150.6398870257699 1099998.9471879900 - 2175.8437344284798 2175.8437344284698 1099995.6960861699 - 4567.1728483074103 3852.6162820042300 1099983.7718257301 - 9083.7540683287207 6231.0955475001001 1099944.8435536700 - 16776.864837009900 8857.4993260248903 1099836.3885196401 - 27963.888144879202 10380.564278548100 1099595.5005569500 - 40550.313972395103 8862.9451409824705 1099216.5938704601 - 49342.681844547697 3548.2509409122299 1098887.0322574801 - 49342.681844547697 -3548.2509409122099 1098887.0322574801 - 40550.313972395103 -8862.9451409824997 1099216.5938704601 - 27963.888144879202 -10380.564278548100 1099595.5005569500 - 16776.864837009900 -8857.4993260248702 1099836.3885196401 - 9083.7540683287207 -6231.0955475000901 1099944.8435536700 - 4567.1728483074003 -3852.6162820042100 1099983.7718257301 - 2175.8437344284798 -2175.8437344284798 1099995.6960861699 - 996.09897128355794 -1150.6398870257799 1099998.9471879900 - 442.54097794716102 -579.31279240390097 1099999.7584336901 - 192.15375222393800 -280.91255261121103 1099999.9473477600 - 81.965805688906599 -132.28529202445100 1099999.9889919099 - 34.481020239989199 -60.866295937546802 1099999.9977756201 - 14.347054606842301 -27.488653781556199 1099999.9995629699 - 5.9176328253954402 -12.227863194485501 1099999.9999161200 - 2.4238673739118601 -5.3721840682435804 1099999.9999842099 - 0.98718080850260204 -2.3356907028023901 1099999.9999970801 - 0.40036619922263300 -1.0064638720068599 1099999.9999994701 - 0.16184203782301801 -0.42934171025983398 1099999.9999999001 - 0.065236854586395707 -0.17888657999959501 1099999.9999999800 - 0.026266201926460800 -0.066632419248431607 1100000.0000000000 - 0.010534870794258900 -0.0058039722389952898 1100000.0000000000 - 0.0042294954742889404 0.052062162901166602 1100000.0000000000 - 0.0019172360769112199 0.15537756383632101 1099999.9999999900 - 0.00062020457793208496 0.39278424689245500 1099999.9999999299 - 0.00013345081784563899 0.96723871338506495 1099999.9999995700 - 7.8930788290673600e-05 2.3713218235486999 1099999.9999974400 --3.6580828853465100e-06 5.8097737341910998 1099999.9999846600 - 4.9466391313556398e-05 14.231846272012200 1099999.9999079299 --5.2741958176489400e-05 34.861851244270703 1099999.9994475699 --7.2356456561612398e-06 85.396060102380304 1099999.9966852299 --2.1560827332023701e-05 209.17975058826201 1099999.9801108299 --3.9936242693570500e-05 512.37498379994895 1099999.8806690299 --0.00010718754309009001 1254.9388571447500 1099999.2841490700 --9.0009196793381597e-05 3073.0862846948598 1099995.7073283000 --1.4886989725427500e-05 7521.8380589620101 1099974.2824049201 - 2.0174090597605400e-05 18389.530166869201 1099846.2734310799 --3.4439164383786199e-05 44828.518434801103 1099086.1676570000 --4.0557909423348502e-05 108456.75122494600 1094640.1843134300 - 0.00015979775266555200 256943.71993696599 1069569.9718975599 - 0.00014723395880548700 570452.76761575299 940523.06719161803 - 0.00012875106800404500 -570452.76756542700 940523.06722214201 - 7.1468924461300006e-05 -256943.71986022301 1069569.9719159999 - 0.00011831097189165199 -108456.75110666300 1094640.1843251500 --1.4593511027833599e-05 -44828.518373574298 1099086.1676594899 --7.7837436566709399e-05 -18389.530187769800 1099846.2734307300 --4.6766992583685599e-05 -7521.8380401765398 1099974.2824050500 --4.3512755266164198e-05 -3073.0862390858802 1099995.7073284299 --6.4944951033424599e-05 -1254.9388175146901 1099999.2841491101 --4.9078993386286797e-05 -512.37505297612097 1099999.8806690001 --6.0380253651658198e-05 -209.17974475252299 1099999.9801108299 --7.4695050435139100e-05 -85.396066191675203 1099999.9966852299 - 8.1594108123955595e-05 -34.861938810747702 1099999.9994475699 --7.9981925198722097e-05 -14.231766744139399 1099999.9999079299 - 2.0382043161116800e-05 -5.8098604478262699 1099999.9999846600 - 0.00013209994852924400 -2.3714466354132799 1099999.9999974400 - 0.00010330293905372400 -0.96732197733319303 1099999.9999995700 - 0.00045135259741978402 -0.39345527184515899 1099999.9999999299 - 0.0014038995194416101 -0.15706608118435200 1099999.9999999900 - 0.0035356871410397498 -0.055945920727923898 1100000.0000000000 - 0.0085422200782507007 -0.0038650724249641101 1100000.0000000000 - 0.021082488132894900 0.042967921008439901 1100000.0000000000 - 0.051363259063729801 0.12071872297479300 1099999.9999999900 - 0.12500532984552201 0.28694707471223002 1099999.9999999600 - 0.30299729417375099 0.66017089218313796 1099999.9999997600 - 0.73055562125067697 1.4988232893910400 1099999.9999987399 - 1.7502424213061101 3.3633223830746100 1099999.9999934700 - 4.1600092601413099 7.4513870812593304 1099999.9999669001 - 9.7913696307336195 16.259682544973298 1099999.9998362500 - 22.776883523727601 34.839922223957899 1099999.9992124501 - 52.227507163088603 73.022792509602198 1099999.9963363500 - 117.65503321230599 148.96905009531699 1099999.9836206899 - 259.27703888765899 293.88097507537401 1099999.9301860800 - 555.82581742119203 555.82581742119703 1099999.7191432901 - 1150.6398870257699 996.09897128355396 1099998.9471879900 - 2277.7043718931800 1663.9993203961201 1099996.3832527201 - 4254.5675613894900 2530.6987143336200 1099988.8609521801 - 7366.5710456906900 3381.4892439650898 1099970.1355771101 - 11550.501448668800 3745.7043402527602 1099932.9777833200 - 15950.839881197900 3065.1059383789702 1099880.0733864901 - 18893.257072184701 1199.8197824854401 1099837.0812396200 - 18893.257072184701 -1199.8197824854601 1099837.0812396200 - 15950.839881197900 -3065.1059383789602 1099880.0733864901 - 11550.501448668800 -3745.7043402527602 1099932.9777833200 - 7366.5710456906900 -3381.4892439650898 1099970.1355771101 - 4254.5675613894800 -2530.6987143336100 1099988.8609521801 - 2277.7043718931900 -1663.9993203961301 1099996.3832527201 - 1150.6398870257799 -996.09897128356704 1099998.9471879900 - 555.82581742119305 -555.82581742119203 1099999.7191432901 - 259.27703888766501 -293.88097507537702 1099999.9301860800 - 117.65503321230599 -148.96905009531500 1099999.9836206899 - 52.227507163087303 -73.022792509601700 1099999.9963363500 - 22.776883523727900 -34.839922223958503 1099999.9992124501 - 9.7913696307333797 -16.259682544972300 1099999.9998362500 - 4.1600092601413703 -7.4513870812596101 1099999.9999669001 - 1.7502424213061600 -3.3633223830746601 1099999.9999934700 - 0.73055562125059204 -1.4988232893908400 1099999.9999987399 - 0.30299729417374599 -0.66017089218320002 1099999.9999997600 - 0.12500532984554300 -0.28694707471226000 1099999.9999999600 - 0.051363259063735997 -0.12071872297478400 1099999.9999999900 - 0.021082488132895601 -0.042967921008448602 1100000.0000000000 - 0.0085422200782476303 0.0038650724249640698 1100000.0000000000 - 0.0035356871410371299 0.055945920727931801 1100000.0000000000 - 0.0014038995194411701 0.15706608118435500 1099999.9999999900 - 0.00045135259742375697 0.39345527184517098 1099999.9999999299 - 0.00010330293904520200 0.96732197733318903 1099999.9999995700 - 0.00013209994854821401 2.3714466354131800 1099999.9999974400 - 2.0382043175433100e-05 5.8098604478262201 1099999.9999846600 --7.9981925194151399e-05 14.231766744139399 1099999.9999079299 - 8.1594108027600800e-05 34.861938810748001 1099999.9994475699 --7.4695050434119597e-05 85.396066191675203 1099999.9966852299 --6.0380253308421901e-05 209.17974475252299 1099999.9801108299 --4.9078993864265700e-05 512.37505297612097 1099999.8806690001 --6.4944951083439699e-05 1254.9388175146901 1099999.2841491101 --4.3512756555971299e-05 3073.0862390858601 1099995.7073284299 --4.6766985973896901e-05 7521.8380401765398 1099974.2824050500 --7.7837407836527401e-05 18389.530187769800 1099846.2734307300 --1.4593485615786801e-05 44828.518373574298 1099086.1676594899 - 0.00011831098510120700 108456.75110666300 1094640.1843251500 - 7.1468903514750200e-05 256943.71986022301 1069569.9719159999 - 0.00012875113526669699 570452.76756542700 940523.06722214201 - 7.3960500303507705e-05 -570452.76758386800 940523.06721095601 - 0.00010156028970691601 -256943.71979478901 1069569.9719317199 --4.4031654021259600e-05 -108456.75106543100 1094640.1843292301 --3.0452448315484399e-05 -44828.518362282201 1099086.1676599500 - 4.1599594211212399e-07 -18389.530145892699 1099846.2734314301 --6.5131819650168300e-06 -7521.8380207561904 1099974.2824051799 --6.4563453951259095e-05 -3073.0862380159101 1099995.7073284299 --9.7218473981260805e-05 -1254.9388334907301 1099999.2841491001 --3.8923442687910600e-05 -512.37496774297801 1099999.8806690399 --7.6201356577424301e-07 -209.17979853331099 1099999.9801108199 --3.8879482545833596e-06 -85.396128591928203 1099999.9966852299 --5.1855274699685502e-05 -34.861919290573503 1099999.9994475699 - 4.9591256175530198e-05 -14.231871092333900 1099999.9999079299 --7.1613075370160803e-05 -5.8098013398940900 1099999.9999846600 - 4.2686341492072302e-05 -2.3715353824165399 1099999.9999974400 - 8.5809691959167094e-05 -0.96765321427940598 1099999.9999995700 - 0.00030218038734794298 -0.39388235896137602 1099999.9999999299 - 0.0012224759554259100 -0.15825919805396099 1099999.9999999900 - 0.0027317826652883698 -0.059013503351578900 1100000.0000000000 - 0.0065054127572357796 -0.011285942881954000 1100000.0000000000 - 0.015832473096994301 0.024949981001764598 1100000.0000000000 - 0.038132698381915901 0.077571700845333297 1100000.0000000000 - 0.090972564499728806 0.18382235610150799 1099999.9999999800 - 0.21588689442309000 0.41507368451385901 1099999.9999999001 - 0.50860640536957902 0.92103081173728796 1099999.9999995001 - 1.1883724775781099 2.0162529248677998 1099999.9999975101 - 2.7485242299046302 4.3463778859337996 1099999.9999879799 - 6.2808060074365697 9.2062663620975300 1099999.9999435400 - 14.145612698318800 19.096506120080100 1099999.9997432800 - 31.312568260442902 38.633866700246301 1099999.9988758899 - 67.879548870081706 75.832936466862293 1099999.9952916999 - 143.45611843036400 143.45611843036400 1099999.9812912201 - 293.88097507537401 259.27703888766098 1099999.9301860800 - 579.31279240390302 442.54097794716603 1099999.7584336901 - 1088.5330999407499 702.13103819553896 1099999.2373214201 - 1926.0327172766599 1012.7115939669700 1099997.8476402599 - 3159.5270374534998 1284.8383116212501 1099994.7120688399 - 4714.1734825404901 1359.0437745959600 1099989.0588403100 - 6261.5584068199596 1074.3160989809101 1099981.6538157500 - 7259.1348474902297 412.88281531962201 1099975.9699598199 - 7259.1348474902197 -412.88281531963497 1099975.9699598199 - 6261.5584068199596 -1074.3160989809201 1099981.6538157500 - 4714.1734825404901 -1359.0437745959500 1099989.0588403100 - 3159.5270374534898 -1284.8383116212501 1099994.7120688399 - 1926.0327172766699 -1012.7115939669600 1099997.8476402599 - 1088.5330999407499 -702.13103819554794 1099999.2373214201 - 579.31279240390199 -442.54097794716199 1099999.7584336901 - 293.88097507537799 -259.27703888766098 1099999.9301860800 - 143.45611843036301 -143.45611843036301 1099999.9812912201 - 67.879548870080995 -75.832936466862193 1099999.9952916999 - 31.312568260443800 -38.633866700247303 1099999.9988758899 - 14.145612698318001 -19.096506120078601 1099999.9997432800 - 6.2808060074365004 -9.2062663620977307 1099999.9999435400 - 2.7485242299047998 -4.3463778859339497 1099999.9999879799 - 1.1883724775780899 -2.0162529248676799 1099999.9999975101 - 0.50860640536952895 -0.92103081173732004 1099999.9999995001 - 0.21588689442308701 -0.41507368451383603 1099999.9999999001 - 0.090972564499757699 -0.18382235610152201 1099999.9999999800 - 0.038132698381917199 -0.077571700845357403 1100000.0000000000 - 0.015832473096985399 -0.024949981001759401 1100000.0000000000 - 0.0065054127572394902 0.011285942881961900 1100000.0000000000 - 0.0027317826652882302 0.059013503351584000 1100000.0000000000 - 0.0012224759554218300 0.15825919805396299 1099999.9999999900 - 0.00030218038733907302 0.39388235896138002 1099999.9999999299 - 8.5809691988933295e-05 0.96765321427936901 1099999.9999995700 - 4.2686341495876598e-05 2.3715353824165102 1099999.9999974400 --7.1613075422732994e-05 5.8098013398940003 1099999.9999846600 - 4.9591256211164697e-05 14.231871092334000 1099999.9999079299 --5.1855274617702700e-05 34.861919290573702 1099999.9994475699 --3.8879483446446400e-06 85.396128591928004 1099999.9966852299 --7.6201351385155098e-07 209.17979853330999 1099999.9801108199 --3.8923442264879700e-05 512.37496774298097 1099999.8806690399 --9.7218476791430898e-05 1254.9388334907301 1099999.2841491001 --6.4563453881139201e-05 3073.0862380159101 1099995.7073284299 --6.5131769004341300e-06 7521.8380207561704 1099974.2824051799 - 4.1600269503650897e-07 18389.530145892699 1099846.2734314301 --3.0452426232890700e-05 44828.518362282201 1099086.1676599500 --4.4031608450300999e-05 108456.75106543100 1094640.1843292301 - 0.00010156035179641400 256943.71979478901 1069569.9719317199 - 7.3960597753915203e-05 570452.76758386800 940523.06721095601 --1.4796937394875100e-05 -570452.76770393096 940523.06713813497 - 2.6106116244714799e-05 -256943.71987001199 1069569.9719136499 - 9.4186069553337207e-05 -108456.75099806501 1094640.1843359000 --3.0651857813693499e-05 -44828.518293684203 1099086.1676627500 --8.4782862055300396e-05 -18389.530155678400 1099846.2734312699 --4.0697627283940801e-05 -7521.8380618493002 1099974.2824049001 - 8.0615084952779393e-06 -3073.0862407832401 1099995.7073284199 --4.2471132147371402e-05 -1254.9387265806899 1099999.2841492200 --4.1799543420499603e-05 -512.37507192417797 1099999.8806689901 - 1.7677270603331700e-06 -209.17982594551901 1099999.9801108199 --4.9579773498244297e-05 -85.396094241169095 1099999.9966852299 - 7.6324829889560497e-05 -34.862009037878401 1099999.9994475599 --1.1978593873798201e-05 -14.231846115385400 1099999.9999079299 - 3.3147124909701099e-05 -5.8098812520039198 1099999.9999846600 - 7.1406910756805205e-05 -2.3715330265627301 1099999.9999974400 - 3.7899999410225297e-05 -0.96767743392728001 1099999.9999995700 - 0.00013717310559308900 -0.39439239124676501 1099999.9999999299 - 0.00074516957428888300 -0.15928409317125999 1099999.9999999900 - 0.0020907583269391401 -0.061244755363471501 1100000.0000000000 - 0.0047609301726420396 -0.016704142781709699 1100000.0000000000 - 0.011344887231689801 0.012157694374560300 1100000.0000000000 - 0.026812759711356701 0.047269249152570601 1100000.0000000000 - 0.062924827819013304 0.11301503121764800 1099999.9999999900 - 0.14601304708887999 0.25106257997416898 1099999.9999999600 - 0.33602435582930001 0.54480212072997003 1099999.9999998100 - 0.76557276822733999 1.1628449125065701 1099999.9999991199 - 1.7233818187372401 2.4400493111785400 1099999.9999959399 - 3.8245514352101302 5.0190979846165700 1099999.9999819000 - 8.3465604648457301 10.087083252090300 1099999.9999220800 - 17.857632296685502 19.723090598480301 1099999.9996782299 - 37.320153488199800 37.320153488199601 1099999.9987338199 - 75.832936466862506 67.879548870082203 1099999.9952916999 - 148.96905009531400 117.65503321230500 1099999.9836206899 - 280.91255261120801 192.15375222393601 1099999.9473477600 - 504.00114809084602 291.26340304453902 1099999.8459765699 - 850.91581778989303 401.26120732627999 1099999.5976961600 - 1333.7803285785801 487.25532919435199 1099999.0834597400 - 1910.6181748587101 496.03311258128400 1099998.2288573701 - 2459.4478700926502 381.10228122383103 1099997.1844860399 - 2802.8015708326702 144.26555523982100 1099996.4197627199 - 2802.8015708326702 -144.26555523982901 1099996.4197627199 - 2459.4478700926402 -381.10228122382802 1099997.1844860399 - 1910.6181748587001 -496.03311258128298 1099998.2288573701 - 1333.7803285785801 -487.25532919434801 1099999.0834597400 - 850.91581778989598 -401.26120732628101 1099999.5976961600 - 504.00114809084602 -291.26340304453902 1099999.8459765699 - 280.91255261120801 -192.15375222393300 1099999.9473477600 - 148.96905009531400 -117.65503321230500 1099999.9836206899 - 75.832936466861696 -67.879548870082104 1099999.9952916999 - 37.320153488200802 -37.320153488200297 1099999.9987338199 - 17.857632296684201 -19.723090598478901 1099999.9996782299 - 8.3465604648455098 -10.087083252090499 1099999.9999220800 - 3.8245514352104100 -5.0190979846167298 1099999.9999819000 - 1.7233818187373500 -2.4400493111785599 1099999.9999959399 - 0.76557276822723297 -1.1628449125065501 1099999.9999991199 - 0.33602435582925599 -0.54480212072986700 1099999.9999998100 - 0.14601304708893900 -0.25106257997421699 1099999.9999999600 - 0.062924827819018994 -0.11301503121768799 1099999.9999999900 - 0.026812759711338001 -0.047269249152554503 1100000.0000000000 - 0.011344887231695799 -0.012157694374557200 1100000.0000000000 - 0.0047609301726449704 0.016704142781704900 1100000.0000000000 - 0.0020907583269345800 0.061244755363478398 1100000.0000000000 - 0.00074516957428157895 0.15928409317128600 1099999.9999999900 - 0.00013717310560767900 0.39439239124673803 1099999.9999999299 - 3.7899999407677801e-05 0.96767743392724503 1099999.9999995700 - 7.1406910775025101e-05 2.3715330265626799 1099999.9999974400 - 3.3147124958858398e-05 5.8098812520038896 1099999.9999846600 --1.1978594030111501e-05 14.231846115385499 1099999.9999079299 - 7.6324829784699594e-05 34.862009037878501 1099999.9994475599 --4.9579773139449699e-05 85.396094241168896 1099999.9966852299 - 1.7677272095434400e-06 209.17982594551901 1099999.9801108199 --4.1799543976878100e-05 512.37507192417797 1099999.8806689901 --4.2471132077513403e-05 1254.9387265806999 1099999.2841492200 - 8.0615056120532304e-06 3073.0862407832301 1099995.7073284199 --4.0697628783248898e-05 7521.8380618492902 1099974.2824049001 --8.4782864293606006e-05 18389.530155678400 1099846.2734312699 --3.0651802815578598e-05 44828.518293684101 1099086.1676627500 - 9.4186077985771902e-05 108456.75099806501 1094640.1843359000 - 2.6106197954590901e-05 256943.71987001199 1069569.9719136499 --1.4796889553397000e-05 570452.76770393096 940523.06713813497 - 1.7695323836216698e-05 -570452.76788043999 940523.06703107699 - 7.7686833258610902e-05 -256943.71988307699 1069569.9719105100 --7.1903827138051303e-06 -108456.75101476299 1094640.1843342499 --2.2884049276408098e-06 -44828.518318931201 1099086.1676617200 --2.3296866495829900e-05 -18389.530137084701 1099846.2734315800 --1.2305860913857700e-05 -7521.8380046909197 1099974.2824052901 --2.0132429824110599e-05 -3073.0862401132199 1099995.7073284199 --4.6158395717918598e-05 -1254.9388318237400 1099999.2841491001 --1.9595710622590701e-05 -512.37492067321500 1099999.8806690599 - 4.2444906105622698e-05 -209.17985736762901 1099999.9801108099 - 5.5852487779713803e-05 -85.396224266726804 1099999.9966852199 --4.6618075182841499e-05 -34.861987120294700 1099999.9994475599 - 6.9351952477829105e-05 -14.231913588473001 1099999.9999079299 --2.5678046259816301e-05 -5.8098511061764899 1099999.9999846600 - 7.4170483475896203e-05 -2.3716873193139998 1099999.9999974400 - 0.00011265258974782199 -0.96784327986515495 1099999.9999995700 - 0.00010538948475886399 -0.39449027417562199 1099999.9999999299 - 0.00058310515690121001 -0.15995073255467801 1099999.9999999900 - 0.0014667273615057699 -0.062850452276268398 1100000.0000000000 - 0.0033323943731367401 -0.020488671518549099 1100000.0000000000 - 0.0077517709797604896 0.0033190942239442502 1100000.0000000000 - 0.018038777081201499 0.027136342036761199 1100000.0000000000 - 0.041425255796042400 0.066852003134232701 1100000.0000000000 - 0.094452809858341105 0.14666807119103301 1099999.9999999900 - 0.21216130402547101 0.31124293328674701 1099999.9999999399 - 0.47142816487610101 0.64846138284120303 1099999.9999997099 - 1.0331281066454301 1.3245076822596000 1099999.9999987199 - 2.2284858691976801 2.6481045815117699 1099999.9999945599 - 4.7172911629409100 5.1619668871695596 1099999.9999777700 - 9.7698698220174993 9.7698698220173696 1099999.9999132301 - 19.723090598480301 17.857632296684901 1099999.9996782299 - 38.633866700247097 31.312568260443101 1099999.9988758899 - 73.022792509602994 52.227507163088603 1099999.9963363500 - 132.28529202444901 81.965805688905306 1099999.9889919099 - 227.80395983235900 119.30874972343800 1099999.9699412601 - 369.24565470459800 157.93046657872600 1099999.9266889100 - 556.82842281487899 184.73291066941300 1099999.8435526500 - 771.09144938533905 182.10771018027700 1099999.7146612201 - 967.51267644428697 136.63327595416601 1099999.5660228999 - 1087.4012680593601 51.075532147498599 1099999.4613406700 - 1087.4012680593701 -51.075532147497597 1099999.4613406700 - 967.51267644427799 -136.63327595416499 1099999.5660228999 - 771.09144938534098 -182.10771018027700 1099999.7146612201 - 556.82842281487603 -184.73291066941201 1099999.8435526500 - 369.24565470459999 -157.93046657872799 1099999.9266889100 - 227.80395983235701 -119.30874972343599 1099999.9699412601 - 132.28529202445000 -81.965805688905604 1099999.9889919099 - 73.022792509601999 -52.227507163088703 1099999.9963363500 - 38.633866700247900 -31.312568260443399 1099999.9988758899 - 19.723090598479299 -17.857632296684201 1099999.9996782299 - 9.7698698220172808 -9.7698698220176805 1099999.9999132301 - 4.7172911629411596 -5.1619668871695401 1099999.9999777700 - 2.2284858691978702 -2.6481045815118298 1099999.9999945599 - 1.0331281066453100 -1.3245076822595800 1099999.9999987199 - 0.47142816487604799 -0.64846138284105004 1099999.9999997099 - 0.21216130402554101 -0.31124293328682501 1099999.9999999399 - 0.094452809858339801 -0.14666807119108399 1099999.9999999900 - 0.041425255796022298 -0.066852003134207194 1100000.0000000000 - 0.018038777081209600 -0.027136342036758802 1100000.0000000000 - 0.0077517709797637396 -0.0033190942239519701 1100000.0000000000 - 0.0033323943731331800 0.020488671518554699 1100000.0000000000 - 0.0014667273615000401 0.062850452276285204 1100000.0000000000 - 0.00058310515690860199 0.15995073255466100 1099999.9999999900 - 0.00010538948476207100 0.39449027417562799 1099999.9999999299 - 0.00011265258975663000 0.96784327986509100 1099999.9999995700 - 7.4170483492251094e-05 2.3716873193139301 1099999.9999974400 --2.5678046303797301e-05 5.8098511061766898 1099999.9999846600 - 6.9351952439513400e-05 14.231913588473001 1099999.9999079299 --4.6618075191297097e-05 34.861987120294202 1099999.9994475599 - 5.5852487712627703e-05 85.396224266726804 1099999.9966852199 - 4.2444906350462302e-05 209.17985736762901 1099999.9801108099 --1.9595709816915899e-05 512.37492067321796 1099999.8806690599 --4.6158396458745601e-05 1254.9388318237300 1099999.2841491001 --2.0132432110192700e-05 3073.0862401132199 1099995.7073284199 --1.2305862489168499e-05 7521.8380046909097 1099974.2824052901 --2.3296846945017400e-05 18389.530137084701 1099846.2734315800 --2.2883989515799801e-06 44828.518318931201 1099086.1676617200 --7.1904657180352598e-06 108456.75101476299 1094640.1843342499 - 7.7686799345879203e-05 256943.71988307699 1069569.9719105100 - 1.7695259867217001e-05 570452.76788044104 940523.06703107699 - 9.1783394296887999e-05 -570452.76798202703 940523.06696946302 - 8.9198143109386899e-05 -256943.71999688199 1069569.9718831701 - 0.00013077964352399099 -108456.75094179400 1094640.1843414800 - 3.0671887795531901e-06 -44828.518195817698 1099086.1676667400 --7.3305849429957705e-05 -18389.530087884799 1099846.2734324001 --5.9136481781026597e-05 -7521.8380968811898 1099974.2824046600 - 4.4324231022740703e-05 -3073.0863041342100 1099995.7073282499 --2.1279023449514200e-06 -1254.9386622346201 1099999.2841492901 --7.1967926809990594e-05 -512.37504134004496 1099999.8806690001 - 4.2289594558359700e-05 -209.17987753179699 1099999.9801108099 - 1.9322056261859499e-05 -85.396136325598803 1099999.9966852299 - 7.7289816992558903e-05 -34.862086309585699 1099999.9994475599 - 4.0729244884837203e-05 -14.231961510419300 1099999.9999079299 - 5.7023819114465301e-05 -5.8098667287339101 1099999.9999846600 - 5.3336905989360599e-05 -2.3715840052852402 1099999.9999974400 - 8.4994207175877304e-05 -0.96796065670277798 1099999.9999995700 - 4.6341334383217501e-05 -0.39486668115464002 1099999.9999999299 - 0.00027172697556928700 -0.16042158959586700 1099999.9999999900 - 0.0010738427607070700 -0.063856924927532796 1100000.0000000000 - 0.0023118283843203699 -0.022892096581774699 1100000.0000000000 - 0.0051490939616575301 -0.0024148166848987200 1100000.0000000000 - 0.011719621951445099 0.014109351304010399 1100000.0000000000 - 0.026300665864036701 0.037913045484055302 1100000.0000000000 - 0.058526628836708901 0.082890989601492202 1100000.0000000000 - 0.12885495381084500 0.17254163350504700 1099999.9999999800 - 0.27913116690793799 0.35066247561019698 1099999.9999999099 - 0.59597369713605197 0.69825873608963196 1099999.9999996200 - 1.2503718389558600 1.3578507491133900 1099999.9999984500 - 2.5707772995131899 2.5707772995133098 1099999.9999939899 - 5.1619668871694397 4.7172911629412102 1099999.9999777700 - 10.087083252090100 8.3465604648454494 1099999.9999220800 - 19.096506120079400 14.145612698318200 1099999.9997432800 - 34.839922223958503 22.776883523727300 1099999.9992124501 - 60.866295937548500 34.481020239990201 1099999.9977756201 - 101.06106027464300 48.412147269610301 1099999.9942922399 - 158.07930214788601 61.881298160457902 1099999.9869007501 - 230.61675061490999 70.087746721568607 1099999.9735925600 - 310.39143602311299 67.230284331628795 1099999.9541532900 - 381.29548413951801 49.445121717078898 1099999.9328040599 - 423.69951070469199 18.289113876832001 1099999.9182473801 - 423.69951070468699 -18.289113876830900 1099999.9182473801 - 381.29548413952301 -49.445121717079502 1099999.9328040599 - 310.39143602311100 -67.230284331628397 1099999.9541532900 - 230.61675061491300 -70.087746721569900 1099999.9735925600 - 158.07930214788399 -61.881298160457099 1099999.9869007501 - 101.06106027464401 -48.412147269610500 1099999.9942922399 - 60.866295937547797 -34.481020239990301 1099999.9977756201 - 34.839922223958801 -22.776883523727498 1099999.9992124501 - 19.096506120078999 -14.145612698318001 1099999.9997432800 - 10.087083252090000 -8.3465604648458207 1099999.9999220800 - 5.1619668871694904 -4.7172911629409198 1099999.9999777700 - 2.5707772995133702 -2.5707772995132601 1099999.9999939899 - 1.2503718389558101 -1.3578507491134399 1099999.9999984500 - 0.59597369713603898 -0.69825873608951206 1099999.9999996200 - 0.27913116690797801 -0.35066247561028402 1099999.9999999099 - 0.12885495381081399 -0.17254163350508800 1099999.9999999800 - 0.058526628836705702 -0.082890989601459700 1100000.0000000000 - 0.026300665864049600 -0.037913045484052797 1100000.0000000000 - 0.011719621951441900 -0.014109351304020201 1100000.0000000000 - 0.0051490939616573904 0.0024148166848959500 1100000.0000000000 - 0.0023118283843179201 0.022892096581784399 1100000.0000000000 - 0.0010738427607092100 0.063856924927534003 1100000.0000000000 - 0.00027172697557207697 0.16042158959587799 1099999.9999999900 - 4.6341334387311801e-05 0.39486668115460299 1099999.9999999299 - 8.4994207182835998e-05 0.96796065670276099 1099999.9999995700 - 5.3336905964127501e-05 2.3715840052852299 1099999.9999974400 - 5.7023819099994197e-05 5.8098667287338097 1099999.9999846600 - 4.0729244896726802e-05 14.231961510419501 1099999.9999079299 - 7.7289816992539496e-05 34.862086309585997 1099999.9994475599 - 1.9322056340541901e-05 85.396136325597794 1099999.9966852299 - 4.2289594542686697e-05 209.17987753179699 1099999.9801108099 --7.1967927187950898e-05 512.37504134004496 1099999.8806690001 --2.1279035485183699e-06 1254.9386622346301 1099999.2841492901 - 4.4324236579783600e-05 3073.0863041342000 1099995.7073282499 --5.9136476174089502e-05 7521.8380968811498 1099974.2824046600 --7.3305853310295406e-05 18389.530087884799 1099846.2734324001 - 3.0671945197923101e-06 44828.518195817698 1099086.1676667400 - 0.00013077969863827400 108456.75094179400 1094640.1843414800 - 8.9198042330885903e-05 256943.71999688199 1069569.9718831701 - 9.1783277754038694e-05 570452.76798202703 940523.06696946302 - 0.00013246642432811499 -570452.76800308202 940523.06695669203 - 0.00018219354587324600 -256943.71989812099 1069569.9719068999 - 9.8729201190816499e-05 -108456.75092014100 1094640.1843436300 - 5.2726710541312497e-05 -44828.518179756298 1099086.1676674001 --4.0772776613965501e-05 -18389.530051879901 1099846.2734330101 --7.4541256475039099e-05 -7521.8379766440603 1099974.2824054800 --3.0799228823311903e-05 -3073.0862786294301 1099995.7073283200 - 4.9774025560134402e-06 -1254.9388528102099 1099999.2841490700 --3.0334064250318700e-05 -512.37484259370206 1099999.8806690900 --1.7623072554895401e-05 -209.17987563077500 1099999.9801108099 - 7.7353233931721395e-05 -85.396286723946602 1099999.9966852199 --5.9612503573000002e-05 -34.862027763231403 1099999.9994475599 - 5.4291626435519798e-06 -14.231997858663201 1099999.9999079299 - 5.1176699361574301e-05 -5.8099586339471401 1099999.9999846600 - 9.7696235018299697e-05 -2.3717327167982498 1099999.9999974400 - 0.00014365158055204501 -0.96787496452540900 1099999.9999995700 - 0.00010509038027829601 -0.39482130352986999 1099999.9999999299 - 0.00019648784785767300 -0.16087155391273200 1099999.9999999900 - 0.00064097523370037297 -0.064633424808879306 1100000.0000000000 - 0.0014839438914464400 -0.024427604926194599 1100000.0000000000 - 0.0032403444591418500 -0.0059482905711640000 1100000.0000000000 - 0.0072931663937357699 0.0062215207821617402 1100000.0000000000 - 0.016106640545794599 0.020510540871524000 1100000.0000000000 - 0.035091470193045197 0.045364076010422402 1100000.0000000000 - 0.075392109363098897 0.092923912979647805 1099999.9999999900 - 0.15985195966704299 0.18485503799784500 1099999.9999999700 - 0.33236221926525700 0.35847862302494599 1099999.9999998901 - 0.67909268469715101 0.67909268469714401 1099999.9999995800 - 1.3578507491134799 1.2503718389557099 1099999.9999984500 - 2.6481045815118298 2.2284858691979301 1099999.9999945599 - 5.0190979846166304 3.8245514352104100 1099999.9999819000 - 9.2062663620973400 6.2808060074365297 1099999.9999435400 - 16.259682544972598 9.7913696307334508 1099999.9998362500 - 27.488653781556000 14.347054606841899 1099999.9995629699 - 44.179969387478998 19.504850152125702 1099999.9989398599 - 66.978330375051300 24.175544665115801 1099999.9976951999 - 94.955138015528405 26.626267684302999 1099999.9955793500 - 124.74530831504600 24.949988044984401 1099999.9926436800 - 150.54358697436200 18.040799544227902 1099999.9895505300 - 165.71215447618499 6.6138910101046200 1099999.9874980601 - 165.71215447618701 -6.6138910101048198 1099999.9874980601 - 150.54358697436200 -18.040799544227699 1099999.9895505300 - 124.74530831504700 -24.949988044984998 1099999.9926436800 - 94.955138015528107 -26.626267684302601 1099999.9955793500 - 66.978330375051399 -24.175544665115901 1099999.9976951999 - 44.179969387478998 -19.504850152125599 1099999.9989398599 - 27.488653781555900 -14.347054606842100 1099999.9995629699 - 16.259682544972598 -9.7913696307333495 1099999.9998362500 - 9.2062663620972405 -6.2808060074367598 1099999.9999435400 - 5.0190979846164598 -3.8245514352100298 1099999.9999819000 - 2.6481045815120101 -2.2284858691977898 1099999.9999945599 - 1.3578507491135301 -1.2503718389558800 1099999.9999984500 - 0.67909268469718398 -0.67909268469710204 1099999.9999995800 - 0.33236221926523801 -0.35847862302501099 1099999.9999998901 - 0.15985195966697099 -0.18485503799784700 1099999.9999999700 - 0.075392109363124502 -0.092923912979610696 1099999.9999999900 - 0.035091470193066299 -0.045364076010429799 1100000.0000000000 - 0.016106640545779500 -0.020510540871539001 1100000.0000000000 - 0.0072931663937399003 -0.0062215207821631298 1100000.0000000000 - 0.0032403444591457202 0.0059482905711750302 1100000.0000000000 - 0.0014839438914438900 0.024427604926191698 1100000.0000000000 - 0.00064097523370032798 0.064633424808883205 1100000.0000000000 - 0.00019648784785749300 0.16087155391272301 1099999.9999999900 - 0.00010509038027670800 0.39482130352986899 1099999.9999999299 - 0.00014365158055225401 0.96787496452537403 1099999.9999995700 - 9.7696235038394503e-05 2.3717327167982498 1099999.9999974400 - 5.1176699330736101e-05 5.8099586339472102 1099999.9999846600 - 5.4291625586812097e-06 14.231997858663100 1099999.9999079299 --5.9612503505289902e-05 34.862027763231197 1099999.9994475599 - 7.7353234186729893e-05 85.396286723947199 1099999.9966852199 --1.7623072747645199e-05 209.17987563077401 1099999.9801108099 --3.0334065914176299e-05 512.37484259370399 1099999.8806690900 - 4.9774055415362198e-06 1254.9388528101999 1099999.2841490700 --3.0799227129720103e-05 3073.0862786294201 1099995.7073283200 --7.4541261823920295e-05 7521.8379766440603 1099974.2824054800 --4.0772771856102499e-05 18389.530051879799 1099846.2734330101 - 5.2726741703739703e-05 44828.518179756204 1099086.1676674001 - 9.8729271116381105e-05 108456.75092014100 1094640.1843436300 - 0.00018219352977868800 256943.71989812099 1069569.9719068899 - 0.00013246629892993899 570452.76800308202 940523.06695669203 - 0.00015690707256465800 -570452.76792816096 940523.06700213300 - 8.5906384493378800e-05 -256943.71994872100 1069569.9718947399 - 0.00013273228609339801 -108456.75081922900 1094640.1843536200 - 3.6277833590029101e-05 -44828.518011270004 1099086.1676742700 --6.8388455126982701e-05 -18389.529907214001 1099846.2734354299 --0.00011751985556718300 -7521.8380687889303 1099974.2824048500 --2.7954751064051200e-05 -3073.0864117889901 1099995.7073279400 --1.1178671044572601e-05 -1254.9386671046500 1099999.2841492901 --0.00011935926708064300 -512.37494359469201 1099999.8806690499 --4.3145117166314900e-05 -209.17983169213801 1099999.9801108199 - 2.2771226387455101e-05 -85.396175123453901 1099999.9966852199 - 3.8458723144433200e-05 -34.862115444764598 1099999.9994475599 --6.3630471430258694e-05 -14.232034034843601 1099999.9999079299 --6.7161269406059001e-05 -5.8098973349225700 1099999.9999846600 - 3.4993194656099199e-06 -2.3717196390290698 1099999.9999974400 - 9.3318850878513295e-05 -0.96819244217033396 1099999.9999995700 - 2.0583102486328098e-05 -0.39491184827209103 1099999.9999999299 - 6.0929039167179603e-05 -0.16090161744391199 1099999.9999999900 - 0.00047405444260056000 -0.065145860145580103 1100000.0000000000 - 0.0010480563152443700 -0.025388258790814400 1100000.0000000000 - 0.0019545729367231499 -0.0081084917204832102 1100000.0000000000 - 0.0043566172592234796 0.0014699462308811501 1100000.0000000000 - 0.0094980912333070492 0.010365889159867501 1100000.0000000000 - 0.020305231054403301 0.024020809124840000 1100000.0000000000 - 0.042794423262459497 0.048791291122585900 1100000.0000000000 - 0.088640857329995701 0.095056454410487295 1099999.9999999900 - 0.18031315271468701 0.18031315271466600 1099999.9999999700 - 0.35847862302495898 0.33236221926527298 1099999.9999998901 - 0.69825873608954303 0.59597369713596104 1099999.9999996200 - 1.3245076822596600 1.0331281066452700 1099999.9999987199 - 2.4400493111786399 1.7233818187374299 1099999.9999959399 - 4.3463778859339399 2.7485242299047301 1099999.9999879799 - 7.4513870812594298 4.1600092601415097 1099999.9999669001 - 12.227863194485300 5.9176328253953701 1099999.9999161200 - 19.088566979019799 7.8162544568019996 1099999.9998066099 - 28.150744360170499 9.4273547132976603 1099999.9995993900 - 38.927148126293702 10.132381179951199 1099999.9992645499 - 50.087887253536202 9.3041955459503907 1099999.9988202900 - 59.542117406774501 6.6306459395819202 1099999.9983685301 - 65.021978460147295 2.4122791078578398 1099999.9980756000 - 65.021978460147494 -2.4122791078578700 1099999.9980756000 - 59.542117406774203 -6.6306459395820401 1099999.9983685301 - 50.087887253536501 -9.3041955459502006 1099999.9988202900 - 38.927148126293297 -10.132381179951301 1099999.9992645499 - 28.150744360170801 -9.4273547132975395 1099999.9995993900 - 19.088566979019600 -7.8162544568021302 1099999.9998066099 - 12.227863194485399 -5.9176328253953496 1099999.9999161200 - 7.4513870812593996 -4.1600092601415399 1099999.9999669001 - 4.3463778859336797 -2.7485242299044699 1099999.9999879799 - 2.4400493111788299 -1.7233818187372900 1099999.9999959399 - 1.3245076822597801 -1.0331281066455100 1099999.9999987199 - 0.69825873608958200 -0.59597369713596804 1099999.9999996200 - 0.35847862302488198 -0.33236221926529003 1099999.9999998901 - 0.18031315271458900 -0.18031315271463000 1099999.9999999700 - 0.088640857330045994 -0.095056454410452601 1099999.9999999900 - 0.042794423262488800 -0.048791291122610603 1100000.0000000000 - 0.020305231054381499 -0.024020809124857701 1100000.0000000000 - 0.0094980912333136793 -0.010365889159866200 1100000.0000000000 - 0.0043566172592301696 -0.0014699462308734601 1100000.0000000000 - 0.0019545729367165098 0.0081084917204782992 1100000.0000000000 - 0.0010480563152421899 0.025388258790821499 1100000.0000000000 - 0.00047405444260395702 0.065145860145584294 1100000.0000000000 - 6.0929039171858200e-05 0.16090161744391199 1099999.9999999900 - 2.0583102486632800e-05 0.39491184827206899 1099999.9999999299 - 9.3318850867223904e-05 0.96819244217031097 1099999.9999995700 - 3.4993194302506799e-06 2.3717196390290498 1099999.9999974400 --6.7161269384586594e-05 5.8098973349226100 1099999.9999846600 --6.3630471350364093e-05 14.232034034843700 1099999.9999079299 - 3.8458723098895502e-05 34.862115444764598 1099999.9994475599 - 2.2771226160463102e-05 85.396175123453403 1099999.9966852199 --4.3145117451432797e-05 209.17983169214000 1099999.9801108199 --0.00011935926523656599 512.37494359468997 1099999.8806690499 --1.1178672053799599e-05 1254.9386671046500 1099999.2841492901 --2.7954754426888599e-05 3073.0864117889801 1099995.7073279400 --0.00011751985363184800 7521.8380687888903 1099974.2824048500 --6.8388471129246696e-05 18389.529907213899 1099846.2734354299 - 3.6277824104006599e-05 44828.518011269902 1099086.1676742700 - 0.00013273218926512599 108456.75081922900 1094640.1843536200 - 8.5906284536439102e-05 256943.71994872100 1069569.9718947399 - 0.00015690701437959901 570452.76792816096 940523.06700213300 --0.00010268253892538300 -570452.76790761796 940523.06701459305 - 8.5075163026914906e-05 -256943.71988771300 1069569.9719094001 - 7.4595145671522804e-05 -108456.75086249100 1094640.1843493399 - 2.8589651011308101e-05 -44828.517964555002 1099086.1676761799 --6.9531716079865796e-05 -18389.529875204498 1099846.2734359601 --0.00018492371041663500 -7521.8379281866701 1099974.2824058100 --0.00017284710715719399 -3073.0863085950400 1099995.7073282299 --2.5112685756058600e-05 -1254.9389092991901 1099999.2841490100 --9.6072454131586202e-05 -512.37480074005805 1099999.8806691100 --0.00021914423211437099 -209.17979477733701 1099999.9801108199 --7.9344815162740400e-05 -85.396238039904901 1099999.9966852199 --0.00012065671565599201 -34.862040898781302 1099999.9994475599 --0.00013442993146062200 -14.232101812921799 1099999.9999079299 --0.00011525290694936400 -5.8100194238817497 1099999.9999846600 --6.1566274896467595e-05 -2.3716554288037601 1099999.9999974400 - 2.1601458743184998e-05 -0.96804590760687403 1099999.9999995700 - 3.3657941983441200e-05 -0.39513884586935100 1099999.9999999299 --0.00017505360081840999 -0.16109295534732801 1099999.9999999900 - 1.1781003234092699e-05 -0.065349977889586103 1100000.0000000000 - 0.00061316119318593403 -0.025977218944239700 1100000.0000000000 - 0.0012085983776954699 -0.0093050255266995899 1100000.0000000000 - 0.0024092510552746801 -0.0012084794579240801 1100000.0000000000 - 0.0053370016885804497 0.0046920449546894996 1100000.0000000000 - 0.011372882422397600 0.012152410781563500 1100000.0000000000 - 0.023448942047875999 0.024842747333083798 1100000.0000000000 - 0.047750018499655801 0.047750018499653601 1100000.0000000000 - 0.095056454410431895 0.088640857330044495 1099999.9999999900 - 0.18485503799790501 0.15985195966705701 1099999.9999999700 - 0.35066247561020703 0.27913116690799000 1099999.9999999099 - 0.64846138284107102 0.47142816487598399 1099999.9999997099 - 1.1628449125066400 0.76557276822724696 1099999.9999991199 - 2.0162529248677798 1.1883724775781701 1099999.9999975101 - 3.3633223830747898 1.7502424213060801 1099999.9999934700 - 5.3721840682436000 2.4238673739120302 1099999.9999842099 - 8.1696535522944806 3.1193649314123602 1099999.9999652400 - 11.756624978938500 3.6724115649278901 1099999.9999310400 - 15.905837967708999 3.8629792627057400 1099999.9998782200 - 20.101066911128900 3.4853506623220598 1099999.9998108200 - 23.588289901512400 2.4527189118752100 1099999.9997443501 - 25.585148273673902 0.88656420170520100 1099999.9997020999 - 25.585148273673500 -0.88656420170518302 1099999.9997020999 - 23.588289901512699 -2.4527189118752002 1099999.9997443501 - 20.101066911128601 -3.4853506623220398 1099999.9998108200 - 15.905837967709200 -3.8629792627057502 1099999.9998782200 - 11.756624978938399 -3.6724115649278701 1099999.9999310400 - 8.1696535522944398 -3.1193649314124201 1099999.9999652400 - 5.3721840682437199 -2.4238673739119498 1099999.9999842099 - 3.3633223830745300 -1.7502424213059899 1099999.9999934700 - 2.0162529248679801 -1.1883724775780600 1099999.9999975101 - 1.1628449125067399 -0.76557276822747100 1099999.9999991199 - 0.64846138284107402 -0.47142816487599398 1099999.9999997099 - 0.35066247561010500 -0.27913116690795697 1099999.9999999099 - 0.18485503799781100 -0.15985195966701499 1099999.9999999700 - 0.095056454410498203 -0.088640857330021694 1099999.9999999900 - 0.047750018499686603 -0.047750018499692501 1100000.0000000000 - 0.023448942047856601 -0.024842747333102402 1100000.0000000000 - 0.011372882422405001 -0.012152410781559000 1100000.0000000000 - 0.0053370016885846598 -0.0046920449546812701 1100000.0000000000 - 0.0024092510552674402 0.0012084794579255000 1100000.0000000000 - 0.0012085983776915100 0.0093050255267027402 1100000.0000000000 - 0.00061316119318933701 0.025977218944232699 1100000.0000000000 - 1.1781003240365800e-05 0.065349977889588406 1100000.0000000000 --0.00017505360081912101 0.16109295534733001 1099999.9999999900 - 3.3657941982947997e-05 0.39513884586934900 1099999.9999999299 - 2.1601458733266300e-05 0.96804590760687703 1099999.9999995700 --6.1566274923310300e-05 2.3716554288037401 1099999.9999974400 --0.00011525290696549000 5.8100194238816298 1099999.9999846600 --0.00013442993144950399 14.232101812921901 1099999.9999079299 --0.00012065671551791800 34.862040898781601 1099999.9994475599 --7.9344815084223102e-05 85.396238039905100 1099999.9966852199 --0.00021914423239743899 209.17979477733499 1099999.9801108199 --9.6072454258280999e-05 512.37480074006100 1099999.8806691100 --2.5112682672169601e-05 1254.9389092991901 1099999.2841490100 --0.00017284710971028500 3073.0863085950300 1099995.7073282299 --0.00018492372006702099 7521.8379281866701 1099974.2824058100 --6.9531729322753403e-05 18389.529875204498 1099846.2734359601 - 2.8589591006155999e-05 44828.517964555002 1099086.1676761799 - 7.4595082378410300e-05 108456.75086249100 1094640.1843493399 - 8.5075198049303202e-05 256943.71988771300 1069569.9719094001 --0.00010268249550290299 570452.76790761796 940523.06701459305 --0.00032227826690025299 -570452.76797587401 940523.06697319401 --0.00024450158923785300 -256943.72011626299 1069569.9718544900 --3.7852365097523201e-05 -108456.75094122200 1094640.1843415401 --4.4565150507922502e-05 -44828.517921836697 1099086.1676779201 --0.00012053628972578800 -18389.529677396898 1099846.2734392700 --0.00023156033385202199 -7521.8379440027502 1099974.2824057001 --0.00028366089587535999 -3073.0865005925998 1099995.7073277000 --0.00023495215627067600 -1254.9387511062801 1099999.2841491899 --0.00023831315620699399 -512.37483841643598 1099999.8806691000 --0.00030231336459316199 -209.17971312141501 1099999.9801108399 --0.00031371712107891201 -85.396122951887094 1099999.9966852299 --0.00020945538491780799 -34.862008264381899 1099999.9994475599 --0.00039000257220539100 -14.232073610727500 1099999.9999079299 --0.00047936513331874400 -5.8101115129255803 1099999.9999846600 --0.00039049638212911399 -2.3717979131234102 1099999.9999974400 --0.00019364890263612899 -0.96814539339851402 1099999.9999995700 --8.8080901300118805e-05 -0.39504147153001501 1099999.9999999299 --0.00021461373858586299 -0.16121149610477900 1099999.9999999900 --0.00029291978622787999 -0.065602780084326698 1100000.0000000000 --9.9622181640341900e-06 -0.026265382059914199 1100000.0000000000 - 0.00053975328232123401 -0.0099978652818044304 1100000.0000000000 - 0.0012517589900822501 -0.0026772614758901999 1100000.0000000000 - 0.0026664601557918502 0.0015850036748738000 1100000.0000000000 - 0.0059685243863003201 0.0059376708489631402 1100000.0000000000 - 0.012404765421691900 0.012404765421699099 1100000.0000000000 - 0.024842747333112099 0.023448942047844899 1100000.0000000000 - 0.048791291122577199 0.042794423262448603 1100000.0000000000 - 0.092923912979601203 0.075392109363125695 1099999.9999999900 - 0.17254163350512999 0.12885495381087600 1099999.9999999800 - 0.31124293328673103 0.21216130402553199 1099999.9999999399 - 0.54480212072986800 0.33602435582920698 1099999.9999998100 - 0.92103081173735701 0.50860640536957602 1099999.9999995001 - 1.4988232893909199 0.73055562125065099 1099999.9999987399 - 2.3356907028025700 0.98718080850257195 1099999.9999970801 - 3.4695128848842698 1.2410464941563499 1099999.9999938300 - 4.8848107373638703 1.4297541332867600 1099999.9999882199 - 6.4828783064093800 1.4755819369604499 1099999.9999799100 - 8.0648352936546708 1.3109393121288200 1099999.9999696501 - 9.3586866702814504 0.91244944562780494 1099999.9999598099 - 10.091843773464200 0.32795575395115201 1099999.9999536599 - 10.091843773464200 -0.32795575395114301 1099999.9999536599 - 9.3586866702814699 -0.91244944562775498 1099999.9999598099 - 8.0648352936545997 -1.3109393121288699 1099999.9999696501 - 6.4828783064095097 -1.4755819369603700 1099999.9999799100 - 4.8848107373636900 -1.4297541332868300 1099999.9999882199 - 3.4695128848844798 -1.2410464941562500 1099999.9999938300 - 2.3356907028023501 -0.98718080850257806 1099999.9999970801 - 1.4988232893910500 -0.73055562125058904 1099999.9999987399 - 0.92103081173740797 -0.50860640536971202 1099999.9999995001 - 0.54480212072983203 -0.33602435582921297 1099999.9999998100 - 0.31124293328665098 -0.21216130402547501 1099999.9999999399 - 0.17254163350506099 -0.12885495381085499 1099999.9999999800 - 0.092923912979675297 -0.075392109363121101 1099999.9999999900 - 0.048791291122600500 -0.042794423262487002 1100000.0000000000 - 0.024842747333098700 -0.023448942047860299 1100000.0000000000 - 0.012404765421700300 -0.012404765421689400 1100000.0000000000 - 0.0059685243862972496 -0.0059376708489542298 1100000.0000000000 - 0.0026664601557849798 -0.0015850036748730400 1100000.0000000000 - 0.0012517589900804700 0.0026772614758910798 1100000.0000000000 - 0.00053975328232646399 0.0099978652817968704 1100000.0000000000 --9.9622181595549002e-06 0.026265382059914900 1100000.0000000000 --0.00029291978623099903 0.065602780084331000 1100000.0000000000 --0.00021461373858458599 0.16121149610478200 1099999.9999999900 --8.8080901307246594e-05 0.39504147153002100 1099999.9999999299 --0.00019364890263994200 0.96814539339850503 1099999.9999995700 --0.00039049638211257698 2.3717979131233600 1099999.9999974400 --0.00047936513338823100 5.8101115129256700 1099999.9999846600 --0.00039000257221166002 14.232073610727401 1099999.9999079299 --0.00020945538469433400 34.862008264381600 1099999.9994475599 --0.00031371712102290598 85.396122951887094 1099999.9966852299 --0.00030231336452485400 209.17971312141600 1099999.9801108399 --0.00023831315607928500 512.37483841643405 1099999.8806691000 --0.00023495215665732800 1254.9387511062801 1099999.2841491899 --0.00028366089594142899 3073.0865005925998 1099995.7073277000 --0.00023156033860013199 7521.8379440027402 1099974.2824057001 --0.00012053629696736400 18389.529677396898 1099846.2734392700 --4.4565157450745900e-05 44828.517921836697 1099086.1676779201 --3.7852332350809101e-05 108456.75094122200 1094640.1843415401 --0.00024450141337564502 256943.72011626299 1069569.9718544900 --0.00032227818749485998 570452.76797587401 940523.06697319401 --0.0010062073473663300 -570452.76836527605 940523.06673701096 --0.00043949368279381102 -256943.72049701901 1069569.9717630199 --0.00020314953136898699 -108456.75125848800 1094640.1843101000 --0.00012931357555626301 -44828.517937960300 1099086.1676772600 --0.00021060846932774999 -18389.529697758899 1099846.2734389300 --0.00041734170562744200 -7521.8378217850304 1099974.2824065399 --0.00059668359755593202 -3073.0862382754299 1099995.7073284299 --0.00054365161153640802 -1254.9389023943600 1099999.2841490200 --0.00053418662278771200 -512.37484016863596 1099999.8806690900 --0.00075808560750765500 -209.17964760484699 1099999.9801108500 --0.00077127971645468902 -85.396059818345904 1099999.9966852299 --0.00072002975254276396 -34.861956841917802 1099999.9994475699 --0.00064690188385130895 -14.231994191294900 1099999.9999079299 --0.00079276381484863902 -5.8100997393317799 1099999.9999846600 --0.00098156873251651808 -2.3717879212073498 1099999.9999974400 --0.00085253785085903601 -0.96816318589902695 1099999.9999995700 --0.00061518944739801201 -0.39521705565246501 1099999.9999999299 --0.00064645438685291502 -0.16120025875573701 1099999.9999999900 --0.00076213557231429399 -0.065752185175247793 1100000.0000000000 --0.00059189191255968904 -0.026542051163556998 1100000.0000000000 --0.00034352879571031698 -0.010339496842527199 1100000.0000000000 - 0.00016564602820279801 -0.0034763653672225999 1100000.0000000000 - 0.00099864380779565091 -1.8938130248544999e-05 1100000.0000000000 - 0.0025192786416017099 0.0025192786415995901 1100000.0000000000 - 0.0059376708489612901 0.0059685243863049804 1100000.0000000000 - 0.012152410781560100 0.011372882422408101 1100000.0000000000 - 0.024020809124864501 0.020305231054376299 1100000.0000000000 - 0.045364076010405201 0.035091470193032499 1100000.0000000000 - 0.082890989601464196 0.058526628836710101 1100000.0000000000 - 0.14666807119111200 0.094452809858371706 1099999.9999999900 - 0.25106257997413101 0.14601304708891599 1099999.9999999600 - 0.41507368451381799 0.21588689442303699 1099999.9999999001 - 0.66017089218316405 0.30299729417378202 1099999.9999997600 - 1.0064638720068899 0.40036619922264199 1099999.9999994701 - 1.4634620387532100 0.49265488335915802 1099999.9999989199 - 2.0209664567690702 0.55668826301808905 1099999.9999980000 - 2.6365874350320699 0.56478111642812601 1099999.9999966901 - 3.2352672676275098 0.49495129353819001 1099999.9999951301 - 3.7176908730201701 0.34121750875503598 1099999.9999936600 - 3.9887624267591000 0.12198736134103801 1099999.9999927599 - 3.9887624267592798 -0.12198736134103499 1099999.9999927599 - 3.7176908730199800 -0.34121750875506801 1099999.9999936600 - 3.2352672676276999 -0.49495129353815598 1099999.9999951301 - 2.6365874350318701 -0.56478111642817397 1099999.9999966901 - 2.0209664567692101 -0.55668826301804297 1099999.9999980000 - 1.4634620387530699 -0.49265488335917901 1099999.9999989199 - 1.0064638720069301 -0.40036619922262301 1099999.9999994701 - 0.66017089218319502 -0.30299729417383398 1099999.9999997600 - 0.41507368451376803 -0.21588689442305101 1099999.9999999001 - 0.25106257997410097 -0.14601304708886600 1099999.9999999600 - 0.14666807119107000 -0.094452809858372302 1099999.9999999900 - 0.082890989601532294 -0.058526628836720801 1100000.0000000000 - 0.045364076010417899 -0.035091470193056702 1100000.0000000000 - 0.024020809124851699 -0.020305231054384702 1100000.0000000000 - 0.012152410781570099 -0.011372882422398201 1100000.0000000000 - 0.0059376708489529001 -0.0059685243862967500 1100000.0000000000 - 0.0025192786415955499 -0.0025192786416013200 1100000.0000000000 - 0.00099864380780100991 1.8938130250363000e-05 1100000.0000000000 - 0.00016564602820607100 0.0034763653672155799 1100000.0000000000 --0.00034352879571104898 0.010339496842524800 1100000.0000000000 --0.00059189191255881604 0.026542051163561800 1100000.0000000000 --0.00076213557231023603 0.065752185175250596 1100000.0000000000 --0.00064645438686405596 0.16120025875574301 1099999.9999999900 --0.00061518944739217998 0.39521705565246501 1099999.9999999299 --0.00085253785084632699 0.96816318589900696 1099999.9999995700 --0.00098156873256903900 2.3717879212074000 1099999.9999974400 --0.00079276381480408796 5.8100997393317302 1099999.9999846600 --0.00064690188372785995 14.231994191294600 1099999.9999079299 --0.00072002975273232803 34.861956841917802 1099999.9994475699 --0.00077127971643393197 85.396059818346401 1099999.9966852299 --0.00075808560706922099 209.17964760484699 1099999.9801108500 --0.00053418662322703603 512.37484016863903 1099999.8806690900 --0.00054365161281466103 1254.9389023943600 1099999.2841490200 --0.00059668359547719498 3073.0862382754299 1099995.7073284299 --0.00041734170424218697 7521.8378217850404 1099974.2824065399 --0.00021060846215080101 18389.529697758899 1099846.2734389300 --0.00012931358259402301 44828.517937960300 1099086.1676772600 --0.00020314951022965100 108456.75125848800 1094640.1843101000 --0.00043949375279255399 256943.72049701901 1069569.9717630199 --0.0010062073571816500 570452.76836527605 940523.06673701096 --0.0019191493600586500 -570452.76938541199 940523.06611827097 --0.0010865246176134100 -256943.72149191899 1069569.9715240200 --0.00040984359946793001 -108456.75186881200 1094640.1842496300 --0.00032196138458469498 -44828.518177038502 1099086.1676675100 --0.00049939110783260197 -18389.529436684901 1099846.2734432900 --0.00075039206023853400 -7521.8375911673602 1099974.2824081201 --0.0011943717175746400 -3073.0862960807699 1099995.7073282700 --0.0014155300078288000 -1254.9386873667600 1099999.2841492600 --0.0014061130060715099 -512.37468913297698 1099999.8806691701 --0.0015461348156677100 -209.17953670142501 1099999.9801108700 --0.0017813627514675699 -85.395946452101597 1099999.9966852400 --0.0018560189550097699 -34.861771538766398 1099999.9994475699 --0.0018852354372245000 -14.231985125542201 1099999.9999079299 --0.0018318246265068400 -5.8102157233496197 1099999.9999846600 --0.0018827189474776101 -2.3719369963697798 1099999.9999974400 --0.0020016297731001000 -0.96811345037456698 1099999.9999995700 --0.0017989281248129000 -0.39509225201262899 1099999.9999999299 --0.0016660393770534399 -0.16128658128671999 1099999.9999999900 --0.0018835486778508101 -0.065785790057338603 1100000.0000000000 --0.0017799942356203000 -0.026778415199069500 1100000.0000000000 --0.0015825571298415399 -0.010603504915705100 1100000.0000000000 --0.0013241104520305500 -0.0038689347992240599 1100000.0000000000 --0.00084713591476645795 -0.00084713591476938898 1100000.0000000000 --1.8938130254894399e-05 0.00099864380779711502 1100000.0000000000 - 0.0015850036748745299 0.0026664601557881899 1100000.0000000000 - 0.0046920449546892602 0.0053370016885869002 1100000.0000000000 - 0.010365889159865801 0.0094980912333179103 1100000.0000000000 - 0.020510540871545899 0.016106640545777900 1100000.0000000000 - 0.037913045484034603 0.026300665864028398 1100000.0000000000 - 0.066852003134223903 0.041425255796030902 1100000.0000000000 - 0.11301503121770801 0.062924827819035398 1099999.9999999900 - 0.18382235610146699 0.090972564499734607 1099999.9999999800 - 0.28694707471223901 0.12500532984550200 1099999.9999999600 - 0.42934171025976198 0.16184203782302700 1099999.9999999001 - 0.61292828732135995 0.19529343282267900 1099999.9999998100 - 0.83209670852017503 0.21680918907232999 1099999.9999996601 - 1.0695596637382001 0.21668652312022799 1099999.9999994601 - 1.2966720893090899 0.18751381580717899 1099999.9999992200 - 1.4775242447523800 0.12822729140741401 1099999.9999990000 - 1.5782775178578099 0.045603450209254499 1099999.9999988701 - 1.5782775178577000 -0.045603450209271597 1099999.9999988701 - 1.4775242447524799 -0.12822729140741901 1099999.9999990000 - 1.2966720893090000 -0.18751381580719700 1099999.9999992200 - 1.0695596637382401 -0.21668652312022699 1099999.9999994601 - 0.83209670852014195 -0.21680918907233501 1099999.9999996601 - 0.61292828732134397 -0.19529343282268999 1099999.9999998100 - 0.42934171025980600 -0.16184203782303400 1099999.9999999001 - 0.28694707471219499 -0.12500532984552101 1099999.9999999600 - 0.18382235610148101 -0.090972564499706393 1099999.9999999800 - 0.11301503121768200 -0.062924827819041795 1099999.9999999900 - 0.066852003134271906 -0.041425255796045800 1100000.0000000000 - 0.037913045484041799 -0.026300665864037800 1100000.0000000000 - 0.020510540871528801 -0.016106640545778601 1100000.0000000000 - 0.010365889159878400 -0.0094980912333138597 1100000.0000000000 - 0.0046920449546800202 -0.0053370016885803196 1100000.0000000000 - 0.0015850036748687900 -0.0026664601557912200 1100000.0000000000 --1.8938130243575599e-05 -0.00099864380779636996 1100000.0000000000 --0.00084713591476774598 0.00084713591476628903 1100000.0000000000 --0.0013241104520310700 0.0038689347992246202 1100000.0000000000 --0.0015825571298427100 0.010603504915704101 1100000.0000000000 --0.0017799942356181201 0.026778415199067301 1100000.0000000000 --0.0018835486778534900 0.065785790057352897 1100000.0000000000 --0.0016660393770497801 0.16128658128671700 1099999.9999999900 --0.0017989281248245799 0.39509225201261200 1099999.9999999299 --0.0020016297730949600 0.96811345037461405 1099999.9999995700 --0.0018827189474130901 2.3719369963697101 1099999.9999974400 --0.0018318246265375899 5.8102157233494802 1099999.9999846600 --0.0018852354373765699 14.231985125542399 1099999.9999079299 --0.0018560189548855999 34.861771538766199 1099999.9994475699 --0.0017813627511247801 85.395946452101001 1099999.9966852400 --0.0015461348162766600 209.17953670142799 1099999.9801108700 --0.0014061130068494399 512.37468913297505 1099999.8806691701 --0.0014155300052196001 1254.9386873667600 1099999.2841492600 --0.0011943717159172799 3073.0862960807699 1099995.7073282700 --0.00075039205504608803 7521.8375911673402 1099974.2824081201 --0.00049939111189028303 18389.529436684901 1099846.2734432900 --0.00032196139489072700 44828.518177038502 1099086.1676675100 --0.00040984360467447500 108456.75186881200 1094640.1842496300 --0.0010865247153951901 256943.72149191899 1069569.9715240200 --0.0019191494809821701 570452.76938541199 940523.06611827097 --0.0037056891086676299 -570452.77227435203 940523.06436605100 --0.0016752205840243101 -256943.72379700799 1069569.9709702600 --0.00065796166858857197 -108456.75305770400 1094640.1841318400 --0.00053651289631121205 -44828.518315706599 1099086.1676618501 --0.0010644430586906101 -18389.529272772801 1099846.2734460300 --0.0019056302589225099 -7521.8371369164397 1099974.2824112200 --0.0026989839957720701 -3073.0855312342201 1099995.7073304099 --0.0033389526428061500 -1254.9383765893299 1099999.2841496200 --0.0036835260029149100 -512.37458556071704 1099999.8806692101 --0.0038957347303000202 -209.17937014959600 1099999.9801109000 --0.0041578332180038204 -85.395713170351399 1099999.9966852600 --0.0042847780282973197 -34.861684628649897 1099999.9994475699 --0.0043894777833563903 -14.231620519111701 1099999.9999079399 --0.0045781260174641803 -5.8100099273831498 1099999.9999846600 --0.0045820120089243802 -2.3721383919956098 1099999.9999974400 --0.0046393876832747901 -0.96838973032030495 1099999.9999995700 --0.0045230351259872804 -0.39516562500425501 1099999.9999999299 --0.0043203956035995699 -0.16114492169959499 1099999.9999999900 --0.0043999812188526997 -0.065767720543349895 1100000.0000000000 --0.0045303225100383898 -0.026818894524456301 1100000.0000000000 --0.0043607048123128801 -0.010874109119891100 1100000.0000000000 --0.0041668236563813400 -0.0041668236563846602 1100000.0000000000 --0.0038689347992245100 -0.0013241104520300500 1100000.0000000000 --0.0034763653672178901 0.00016564602820523500 1100000.0000000000 --0.0026772614758963798 0.0012517589900787800 1100000.0000000000 --0.0012084794579235900 0.0024092510552690800 1100000.0000000000 - 0.0014699462308778201 0.0043566172592287402 1100000.0000000000 - 0.0062215207821621800 0.0072931663937438997 1100000.0000000000 - 0.014109351304025399 0.011719621951439401 1100000.0000000000 - 0.027136342036744001 0.018038777081198599 1100000.0000000000 - 0.047269249152572197 0.026812759711347400 1100000.0000000000 - 0.077571700845368699 0.038132698381929002 1100000.0000000000 - 0.12071872297476401 0.051363259063724097 1099999.9999999900 - 0.17888657999958699 0.065236854586378207 1099999.9999999800 - 0.25254594534160701 0.077409030690773498 1099999.9999999700 - 0.33854678416238498 0.084403350862027396 1099999.9999999399 - 0.43033768620810098 0.083330106046979893 1099999.9999999099 - 0.51665750967963897 0.071186493758656100 1099999.9999998801 - 0.58478410167250805 0.048401925401399301 1099999.9999998400 - 0.62240519900156399 0.017073400962302799 1099999.9999998200 - 0.62240519900156199 -0.017073400962307399 1099999.9999998200 - 0.58478410167251504 -0.048401925401400397 1099999.9999998400 - 0.51665750967962099 -0.071186493758664801 1099999.9999998801 - 0.43033768620813201 -0.083330106046973704 1099999.9999999099 - 0.33854678416235001 -0.084403350862041204 1099999.9999999399 - 0.25254594534165498 -0.077409030690767100 1099999.9999999700 - 0.17888657999955401 -0.065236854586391599 1099999.9999999800 - 0.12071872297478900 -0.051363259063713800 1099999.9999999900 - 0.077571700845355807 -0.038132698381932000 1100000.0000000000 - 0.047269249152596303 -0.026812759711357700 1100000.0000000000 - 0.027136342036752300 -0.018038777081201898 1100000.0000000000 - 0.014109351304008699 -0.011719621951434200 1100000.0000000000 - 0.0062215207821758600 -0.0072931663937458599 1100000.0000000000 - 0.0014699462308721701 -0.0043566172592240998 1100000.0000000000 --0.0012084794579291401 -0.0024092510552713199 1100000.0000000000 --0.0026772614758877600 -0.0012517589900795001 1100000.0000000000 --0.0034763653672204198 -0.00016564602820374501 1100000.0000000000 --0.0038689347992251701 0.0013241104520306201 1100000.0000000000 --0.0041668236563849603 0.0041668236563823001 1100000.0000000000 --0.0043607048123094801 0.010874109119889700 1100000.0000000000 --0.0045303225100410396 0.026818894524461099 1100000.0000000000 --0.0043999812188522504 0.065767720543349797 1100000.0000000000 --0.0043203956036033699 0.16114492169960801 1099999.9999999900 --0.0045230351259822801 0.39516562500424901 1099999.9999999299 --0.0046393876832718402 0.96838973032021503 1099999.9999995700 --0.0045820120089116899 2.3721383919956698 1099999.9999974400 --0.0045781260174653097 5.8100099273833399 1099999.9999846600 --0.0043894777833520396 14.231620519111299 1099999.9999079399 --0.0042847780281257096 34.861684628649400 1099999.9994475699 --0.0041578332186687104 85.395713170352707 1099999.9966852600 --0.0038957347303204101 209.17937014959600 1099999.9801109000 --0.0036835259993772498 512.37458556071897 1099999.8806692101 --0.0033389526463787301 1254.9383765893299 1099999.2841496200 --0.0026989839954409400 3073.0855312342101 1099995.7073304099 --0.0019056302571072599 7521.8371369164597 1099974.2824112200 --0.0010644430781993500 18389.529272772801 1099846.2734460300 --0.00053651289044398705 44828.518315706599 1099086.1676618501 --0.00065796171353075898 108456.75305770400 1094640.1841318400 --0.0016752205922162899 256943.72379700901 1069569.9709702600 --0.0037056890889912600 570452.77227435203 940523.06436604995 --0.0058435384837373702 -570452.77970908198 940523.05985668499 --0.0019614156272455101 -256943.72918822200 1069569.9696751300 --0.00020539156478744600 -108456.75535104101 1094640.1839046101 --0.00083290915272461405 -44828.518541328798 1099086.1676526500 --0.0026458783479965200 -18389.528141802599 1099846.2734649400 --0.0046035470970855301 -7521.8356247869897 1099974.2824215600 --0.0065831304042505102 -3073.0844304094599 1099995.7073334800 --0.0081832741969864800 -1254.9373106300100 1099999.2841508300 --0.0090921225535928497 -512.37375689671001 1099999.8806696001 --0.0097649957044661298 -209.17890096074700 1099999.9801109901 --0.010292587969244199 -85.395472282539501 1099999.9966852800 --0.010595032872863100 -34.861447282906298 1099999.9994475800 --0.010731227426147599 -14.231646320630601 1099999.9999079399 --0.010728659323347600 -5.8097483851575804 1099999.9999846600 --0.010978350725476300 -2.3718565874999702 1099999.9999974400 --0.011132599556116000 -0.96848363463338505 1099999.9999995700 --0.011118347036421901 -0.39535810280921702 1099999.9999999299 --0.010851723012461300 -0.16125812386462299 1099999.9999999900 --0.010774325034490100 -0.065688112014370498 1100000.0000000000 --0.010953448518072100 -0.026808945376829801 1100000.0000000000 --0.010933518795621700 -0.010933518795628100 1100000.0000000000 --0.010874109119894700 -0.0043607048123079301 1100000.0000000000 --0.010603504915703801 -0.0015825571298401600 1100000.0000000000 --0.010339496842523501 -0.00034352879571088201 1100000.0000000000 --0.0099978652817995593 0.00053975328232480895 1100000.0000000000 --0.0093050255267084596 0.0012085983776924799 1100000.0000000000 --0.0081084917204784796 0.0019545729367178599 1100000.0000000000 --0.0059482905711761699 0.0032403444591434299 1100000.0000000000 --0.0024148166848933501 0.0051490939616610004 1100000.0000000000 - 0.0033190942239479100 0.0077517709797612503 1100000.0000000000 - 0.012157694374551000 0.011344887231690101 1100000.0000000000 - 0.024949981001767301 0.015832473096992199 1100000.0000000000 - 0.042967921008457699 0.021082488132902599 1100000.0000000000 - 0.066632419248430996 0.026266201926457500 1100000.0000000000 - 0.096075429243870497 0.030749151061608901 1100000.0000000000 - 0.12989087131197699 0.032995482055250297 1099999.9999999900 - 0.16534626803441499 0.032112117052725299 1099999.9999999900 - 0.19834924107496901 0.027204829058064501 1099999.9999999800 - 0.22404698045602700 0.018281883855660500 1099999.9999999800 - 0.23820471679600000 0.0064935284401607804 1099999.9999999700 - 0.23820471679603300 -0.0064935284401578600 1099999.9999999700 - 0.22404698045599700 -0.018281883855661301 1099999.9999999800 - 0.19834924107500501 -0.027204829058058499 1099999.9999999800 - 0.16534626803438501 -0.032112117052731398 1099999.9999999900 - 0.12989087131200999 -0.032995482055245100 1099999.9999999900 - 0.096075429243850097 -0.030749151061614799 1100000.0000000000 - 0.066632419248447206 -0.026266201926455401 1100000.0000000000 - 0.042967921008450698 -0.021082488132904701 1100000.0000000000 - 0.024949981001774001 -0.015832473096995800 1100000.0000000000 - 0.012157694374559901 -0.011344887231692500 1100000.0000000000 - 0.0033190942239375099 -0.0077517709797538803 1100000.0000000000 --0.0024148166848845798 -0.0051490939616655801 1100000.0000000000 --0.0059482905711736398 -0.0032403444591410100 1100000.0000000000 --0.0081084917204865999 -0.0019545729367172601 1100000.0000000000 --0.0093050255267024696 -0.0012085983776921100 1100000.0000000000 --0.0099978652818014501 -0.00053975328232230705 1100000.0000000000 --0.010339496842531199 0.00034352879570823000 1100000.0000000000 --0.010603504915702200 0.0015825571298400301 1100000.0000000000 --0.010874109119892899 0.0043607048123117604 1100000.0000000000 --0.010933518795620800 0.010933518795622200 1100000.0000000000 --0.010953448518075700 0.026808945376823601 1100000.0000000000 --0.010774325034493800 0.065688112014393105 1100000.0000000000 --0.010851723012451299 0.16125812386462199 1099999.9999999900 --0.011118347036417300 0.39535810280918798 1099999.9999999299 --0.011132599556135100 0.96848363463340703 1099999.9999995700 --0.010978350725494501 2.3718565874999098 1099999.9999974400 --0.010728659323289201 5.8097483851574401 1099999.9999846600 --0.010731227426006400 14.231646320630700 1099999.9999079399 --0.010595032873205601 34.861447282906802 1099999.9994475800 --0.010292587969027499 85.395472282538805 1099999.9966852800 --0.0097649957033015995 209.17890096074601 1099999.9801109901 --0.0090921225558486703 512.37375689671001 1099999.8806696001 --0.0081832741963061405 1254.9373106300100 1099999.2841508300 --0.0065831304092775897 3073.0844304094599 1099995.7073334800 --0.0046035471010407300 7521.8356247869797 1099974.2824215600 --0.0026458783356574202 18389.528141802599 1099846.2734649400 --0.00083290916894239995 44828.518541328798 1099086.1676526500 --0.00020539160109526799 108456.75535104101 1094640.1839046101 --0.0019614156827249098 256943.72918822200 1069569.9696751300 --0.0058435384500394698 570452.77970908198 940523.05985668499 --0.0054472476970081098 -570452.79791293200 940523.04881555599 - 0.0011936104192644601 -256943.74104813300 1069569.9668260100 - 0.0025377642985578300 -108456.75913676800 1094640.1835295199 --0.00075397337992525999 -44828.517147009399 1099086.1677095201 --0.0063108669404200396 -18389.524762349600 1099846.2735214501 --0.011964870258398401 -7521.8319168626203 1099974.2824469199 --0.016589145720941698 -3073.0809462038301 1099995.7073432100 --0.020239190957967002 -1254.9348534814701 1099999.2841536400 --0.022773806050396000 -512.37217869785900 1099999.8806703300 --0.024196353593750702 -209.17778786434201 1099999.9801112099 --0.025204827668589402 -85.394616637643693 1099999.9966853401 --0.025984257543240800 -34.860997948900398 1099999.9994476000 --0.026395833840013299 -14.231294894316600 1099999.9999079399 --0.026611810172248399 -5.8096953470989696 1099999.9999846600 --0.026591832727947601 -2.3717579516770102 1099999.9999974400 --0.026830941916427299 -0.96834367044792102 1099999.9999995700 --0.027090664487524101 -0.39544751051414101 1099999.9999999299 --0.026903269578269700 -0.16136296399329700 1099999.9999999900 --0.026688140473108302 -0.065708049141532596 1100000.0000000000 --0.026708183354330100 -0.026708183354325000 1100000.0000000000 --0.026808945376825901 -0.010953448518070900 1100000.0000000000 --0.026818894524457900 -0.0045303225100452801 1100000.0000000000 --0.026778415199066499 -0.0017799942356184499 1100000.0000000000 --0.026542051163557800 -0.00059189191255843397 1100000.0000000000 --0.026265382059912100 -9.9622181590618796e-06 1100000.0000000000 --0.025977218944231301 0.00061316119318874005 1100000.0000000000 --0.025388258790825902 0.0010480563152427600 1100000.0000000000 --0.024427604926185301 0.0014839438914445999 1100000.0000000000 --0.022892096581793499 0.0023118283843180502 1100000.0000000000 --0.020488671518541699 0.0033323943731372700 1100000.0000000000 --0.016704142781713598 0.0047609301726436303 1100000.0000000000 --0.011285942881953500 0.0065054127572357996 1100000.0000000000 --0.0038650724249633000 0.0085422200782493893 1100000.0000000000 - 0.0058039722390048299 0.010534870794262000 1100000.0000000000 - 0.017516071261360500 0.012123883548422800 1100000.0000000000 - 0.030824764997947202 0.012941388987012300 1100000.0000000000 - 0.044538526867982597 0.012366141660016001 1100000.0000000000 - 0.057182386353305303 0.010451645324896600 1100000.0000000000 - 0.066931311391237605 0.0069189436121519102 1100000.0000000000 - 0.072273693126062299 0.0024896883240458799 1100000.0000000000 - 0.072273693126047103 -0.0024896883240452302 1100000.0000000000 - 0.066931311391250095 -0.0069189436121502197 1100000.0000000000 - 0.057182386353297497 -0.010451645324894900 1100000.0000000000 - 0.044538526867989703 -0.012366141660014301 1100000.0000000000 - 0.030824764997943298 -0.012941388987014701 1100000.0000000000 - 0.017516071261364799 -0.012123883548422700 1100000.0000000000 - 0.0058039722390041699 -0.010534870794264200 1100000.0000000000 --0.0038650724249624999 -0.0085422200782486503 1100000.0000000000 --0.011285942881953000 -0.0065054127572402301 1100000.0000000000 --0.016704142781720100 -0.0047609301726369603 1100000.0000000000 --0.020488671518542698 -0.0033323943731398001 1100000.0000000000 --0.022892096581785700 -0.0023118283843187302 1100000.0000000000 --0.024427604926199400 -0.0014839438914409100 1100000.0000000000 --0.025388258790818699 -0.0010480563152424800 1100000.0000000000 --0.025977218944235499 -0.00061316119318800203 1100000.0000000000 --0.026265382059918099 9.9622181594400002e-06 1100000.0000000000 --0.026542051163554799 0.00059189191255814796 1100000.0000000000 --0.026778415199074399 0.0017799942356190299 1100000.0000000000 --0.026818894524451999 0.0045303225100364599 1100000.0000000000 --0.026808945376830200 0.010953448518074900 1100000.0000000000 --0.026708183354328899 0.026708183354337101 1100000.0000000000 --0.026688140473105200 0.065708049141515706 1100000.0000000000 --0.026903269578266002 0.16136296399330799 1099999.9999999900 --0.027090664487520601 0.39544751051416699 1099999.9999999299 --0.026830941916428600 0.96834367044785097 1099999.9999995700 --0.026591832727968098 2.3717579516769902 1099999.9999974400 --0.026611810172211502 5.8096953470989998 1099999.9999846600 --0.026395833840029002 14.231294894316600 1099999.9999079399 --0.025984257543033500 34.860997948900000 1099999.9994476000 --0.025204827668451401 85.394616637643594 1099999.9966853401 --0.024196353593917301 209.17778786434300 1099999.9801112099 --0.022773806051761200 512.37217869786195 1099999.8806703300 --0.020239190963292200 1254.9348534814601 1099999.2841536400 --0.016589145715529701 3073.0809462038201 1099995.7073432100 --0.011964870260849299 7521.8319168626203 1099974.2824469199 --0.0063108669378028103 18389.524762349600 1099846.2735214501 --0.00075397338847943299 44828.517147009399 1099086.1677095201 - 0.0025377642579426799 108456.75913676900 1094640.1835295199 - 0.0011936104551090599 256943.74104813300 1069569.9668260100 --0.0054472477316226996 570452.79791293095 940523.04881555599 - 0.0096878151832258206 -570452.83872587199 940523.02406139695 - 0.017410155015484000 -256943.76454259900 1069569.9611819100 - 0.013487418515516700 -108456.76297030800 1094640.1831497001 - 0.00024852892966456303 -44828.510168787900 1099086.1679941399 --0.015900155264597801 -18389.514197501299 1099846.2736980901 --0.030661433594198800 -7521.8214912767999 1099974.2825182099 --0.042344263849730099 -3073.0725729324299 1099995.7073666099 --0.050787228485173801 -1254.9288172655199 1099999.2841605200 --0.056549327627883200 -512.36813818279302 1099999.8806722199 --0.060310076906485099 -209.17533963084401 1099999.9801116700 --0.062447058434706500 -85.393216839537502 1099999.9966854500 --0.063766815289622303 -34.859979268264702 1099999.9994476300 --0.064695800335164200 -14.230760262295700 1099999.9999079499 --0.065199918008259500 -5.8092363805356904 1099999.9999846600 --0.065475334917070804 -2.3715436169487498 1099999.9999974400 --0.065575128205602198 -0.96822341225588104 1099999.9999995700 --0.065892361848098699 -0.39536901309879202 1099999.9999999299 --0.066066171782438607 -0.16153459331915901 1099999.9999999900 --0.065831104608911103 -0.065831104608900196 1100000.0000000000 --0.065708049141528696 -0.026688140473109800 1100000.0000000000 --0.065688112014380406 -0.010774325034495800 1100000.0000000000 --0.065767720543338001 -0.0043999812188516502 1100000.0000000000 --0.065785790057345805 -0.0018835486778550499 1100000.0000000000 --0.065752185175240105 -0.00076213557231081001 1100000.0000000000 --0.065602780084330500 -0.00029291978623113200 1100000.0000000000 --0.065349977889574001 1.1781003241970001e-05 1100000.0000000000 --0.065145860145574594 0.00047405444260352600 1100000.0000000000 --0.064633424808882206 0.00064097523370200199 1100000.0000000000 --0.063856924927523304 0.0010738427607103001 1100000.0000000000 --0.062850452276284899 0.0014667273614990600 1100000.0000000000 --0.061244755363464999 0.0020907583269382801 1100000.0000000000 --0.059013503351582099 0.0027317826652855401 1100000.0000000000 --0.055945920727924897 0.0035356871410374201 1100000.0000000000 --0.052062162901163403 0.0042294954742889898 1100000.0000000000 --0.047377872380904303 0.0048013379518087197 1100000.0000000000 --0.042178057704531903 0.0050052778615516302 1100000.0000000000 --0.036868958663653702 0.0047737292576909797 1100000.0000000000 --0.032036379272180802 0.0039273684183511797 1100000.0000000000 --0.028337730556009199 0.0026508235201627098 1100000.0000000000 --0.026320763376233899 0.00088974214016353096 1100000.0000000000 --0.026320763376242801 -0.00088974214016326100 1100000.0000000000 --0.028337730555998700 -0.0026508235201631800 1100000.0000000000 --0.032036379272193702 -0.0039273684183513003 1100000.0000000000 --0.036868958663631698 -0.0047737292576895103 1100000.0000000000 --0.042178057704539702 -0.0050052778615537197 1100000.0000000000 --0.047377872380891597 -0.0048013379518084603 1100000.0000000000 --0.052062162901171001 -0.0042294954742870903 1100000.0000000000 --0.055945920727917701 -0.0035356871410373498 1100000.0000000000 --0.059013503351590599 -0.0027317826652812701 1100000.0000000000 --0.061244755363469398 -0.0020907583269413098 1100000.0000000000 --0.062850452276281402 -0.0014667273615036199 1100000.0000000000 --0.063856924927536599 -0.0010738427607022700 1100000.0000000000 --0.064633424808884704 -0.00064097523370098403 1100000.0000000000 --0.065145860145575704 -0.00047405444260466002 1100000.0000000000 --0.065349977889584104 -1.1781003239068100e-05 1100000.0000000000 --0.065602780084327503 0.00029291978622812697 1100000.0000000000 --0.065752185175245503 0.00076213557231228301 1100000.0000000000 --0.065785790057348595 0.0018835486778513101 1100000.0000000000 --0.065767720543353198 0.0043999812188540901 1100000.0000000000 --0.065688112014384001 0.010774325034488901 1100000.0000000000 --0.065708049141534303 0.026688140473102001 1100000.0000000000 --0.065831104608910604 0.065831104608922095 1100000.0000000000 --0.066066171782433500 0.16153459331914499 1099999.9999999900 --0.065892361848101100 0.39536901309876499 1099999.9999999299 --0.065575128205590597 0.96822341225594499 1099999.9999995700 --0.065475334917088998 2.3715436169487099 1099999.9999974400 --0.065199918008300703 5.8092363805355003 1099999.9999846600 --0.064695800334965206 14.230760262295400 1099999.9999079499 --0.063766815289458795 34.859979268265199 1099999.9994476300 --0.062447058434964703 85.393216839537402 1099999.9966854500 --0.060310076906984998 209.17533963084401 1099999.9801116700 --0.056549327630120001 512.36813818279802 1099999.8806722199 --0.050787228485717900 1254.9288172655199 1099999.2841605200 --0.042344263846493597 3073.0725729324399 1099995.7073666099 --0.030661433591874301 7521.8214912767899 1099974.2825182099 --0.015900155278238001 18389.514197501299 1099846.2736980901 - 0.00024852893644209398 44828.510168788001 1099086.1679941399 - 0.013487418476097400 108456.76297030800 1094640.1831497001 - 0.017410155086258299 256943.76454259900 1069569.9611819100 - 0.0096878152755151808 570452.83872587106 940523.02406139695 - 0.080089491885022707 -570452.92179180204 940522.97367963800 - 0.075128325009913705 -256943.80344049199 1069569.9518374300 - 0.047231092234302899 -108456.75779230900 1094640.1836627300 - 0.0034101014006317500 -44828.483253325401 1099086.1690919399 --0.041653909399299298 -18389.482813988900 1099846.2742228301 --0.079587852918455201 -7521.7945563205003 1099974.2827023901 --0.10800494169511700 -3073.0522226251901 1099995.7074234500 --0.12781715853267500 -1254.9145305517600 1099999.2841768099 --0.14096912864768099 -512.35879434737205 1099999.8806765601 --0.14919709300584100 -209.16956362625200 1099999.9801127601 --0.15433422617294901 -85.389831648360996 1099999.9966857100 --0.15729720815159601 -34.858179207254800 1099999.9994476701 --0.15897139856973899 -14.229674784805599 1099999.9999079499 --0.16005830039277999 -5.8086982447572701 1099999.9999846499 --0.16056742304442601 -2.3710783805792799 1099999.9999974300 --0.16088534857982201 -0.96792118496632895 1099999.9999995600 --0.16111401477581100 -0.39514859292490301 1099999.9999999199 --0.16144753886513499 -0.16144753886511101 1099999.9999999800 --0.16153459331914000 -0.066066171782445698 1099999.9999999900 --0.16136296399330999 -0.026903269578268201 1099999.9999999900 --0.16125812386460800 -0.010851723012465101 1099999.9999999900 --0.16114492169960601 -0.0043203956036039302 1099999.9999999900 --0.16128658128670401 -0.0016660393770528399 1099999.9999999900 --0.16120025875575000 -0.00064645438685540998 1099999.9999999900 --0.16121149610475899 -0.00021461373858534699 1099999.9999999900 --0.16109295534734699 -0.00017505360082379999 1099999.9999999900 --0.16090161744388001 6.0929039181031797e-05 1099999.9999999900 --0.16087155391273800 0.00019648784785628799 1099999.9999999900 --0.16042158959584499 0.00027172697557442498 1099999.9999999900 --0.15995073255467199 0.00058310515690773300 1099999.9999999900 --0.15928409317126599 0.00074516957427755504 1099999.9999999900 --0.15825919805397501 0.0012224759554272701 1099999.9999999900 --0.15706608118433901 0.0014038995194413601 1099999.9999999900 --0.15537756383632501 0.0019172360769110701 1099999.9999999900 --0.15357861495993799 0.0019052411850872899 1099999.9999999900 --0.15143085083994301 0.0021817783571706001 1099999.9999999900 --0.14941836842307701 0.0018075661033864800 1099999.9999999900 --0.14750328247922900 0.0016880344274221399 1099999.9999999900 --0.14611693370208800 0.00091091013594889495 1099999.9999999900 --0.14533433806985899 0.00048164837806883502 1099999.9999999900 --0.14533433806983501 -0.00048164837807030200 1099999.9999999900 --0.14611693370210599 -0.00091091013594740895 1099999.9999999900 --0.14750328247920100 -0.0016880344274288600 1099999.9999999900 --0.14941836842308201 -0.0018075661033913799 1099999.9999999900 --0.15143085083991201 -0.0021817783571636399 1099999.9999999900 --0.15357861495995800 -0.0019052411850845900 1099999.9999999900 --0.15537756383630200 -0.0019172360769063399 1099999.9999999900 --0.15706608118436399 -0.0014038995194370801 1099999.9999999900 --0.15825919805395400 -0.0012224759554258201 1099999.9999999900 --0.15928409317127201 -0.00074516957428703704 1099999.9999999900 --0.15995073255466599 -0.00058310515689992100 1099999.9999999900 --0.16042158959587499 -0.00027172697557148402 1099999.9999999900 --0.16087155391271499 -0.00019648784786062100 1099999.9999999900 --0.16090161744390899 -6.0929039173100201e-05 1099999.9999999900 --0.16109295534732801 0.00017505360082126101 1099999.9999999900 --0.16121149610477001 0.00021461373858835299 1099999.9999999900 --0.16120025875574900 0.00064645438685771803 1099999.9999999900 --0.16128658128671500 0.0016660393770545001 1099999.9999999900 --0.16114492169961600 0.0043203956036006802 1099999.9999999900 --0.16125812386463600 0.010851723012462299 1099999.9999999900 --0.16136296399330999 0.026903269578268600 1099999.9999999900 --0.16153459331917200 0.066066171782414695 1099999.9999999900 --0.16144753886513999 0.16144753886513000 1099999.9999999800 --0.16111401477580001 0.39514859292492999 1099999.9999999199 --0.16088534857987799 0.96792118496627899 1099999.9999995600 --0.16056742304441901 2.3710783805792901 1099999.9999974300 --0.16005830039271901 5.8086982447570499 1099999.9999846499 --0.15897139856968701 14.229674784805500 1099999.9999079499 --0.15729720815159601 34.858179207254601 1099999.9994476701 --0.15433422617301201 85.389831648361096 1099999.9966857100 --0.14919709300696099 209.16956362625601 1099999.9801127601 --0.14096912864777700 512.35879434737296 1099999.8806765601 --0.12781715852790601 1254.9145305517500 1099999.2841768099 --0.10800494169519601 3073.0522226251901 1099995.7074234500 --0.079587852926451194 7521.7945563205103 1099974.2827023901 --0.041653909409351701 18389.482813988900 1099846.2742228301 - 0.0034101013834368899 44828.483253325401 1099086.1690919399 - 0.047231092253797499 108456.75779230900 1094640.1836627300 - 0.075128324992169704 256943.80344049199 1069569.9518374300 - 0.080089492008353802 570452.92179180204 940522.97367963800 - 0.32303356017484303 -570453.06853465096 940522.88467601698 - 0.25153096361042199 -256943.84442139801 1069569.9419925199 - 0.13929273131307601 -108456.70614902901 1094640.1887795301 - 0.0078644853393074598 -44828.395411714999 1099086.1726747400 --0.11269021101654800 -18389.396518248999 1099846.2756656900 --0.20784697523542800 -7521.7250528154900 1099974.2831776501 --0.27591488275073300 -3073.0024363799598 1099995.7075625099 --0.32176460079609398 -1254.8816857001500 1099999.2842142400 --0.35122206579290599 -512.33818813143296 1099999.8806861099 --0.36953997103182301 -209.15702066049900 1099999.9801150900 --0.38050554411878301 -85.382535781717706 1099999.9966862199 --0.38690228641359897 -34.854017837102198 1099999.9994477499 --0.39065720583990499 -14.227441031724201 1099999.9999079199 --0.39272232169357302 -5.8074767835035797 1099999.9999846001 --0.39390834928919199 -2.3705083924921699 1099999.9999973800 --0.39449704075026198 -0.96752632860712695 1099999.9999995001 --0.39483389108029798 -0.39483389108025602 1099999.9999998601 --0.39514859292484800 -0.16111401477583401 1099999.9999999199 --0.39536901309882400 -0.065892361848084294 1099999.9999999299 --0.39544751051411903 -0.027090664487531901 1099999.9999999299 --0.39535810280923800 -0.011118347036426800 1099999.9999999299 --0.39516562500426899 -0.0045230351259834501 1099999.9999999299 --0.39509225201263098 -0.0017989281248161899 1099999.9999999299 --0.39521705565248400 -0.00061518944740009303 1099999.9999999299 --0.39504147153002100 -8.8080901291360199e-05 1099999.9999999299 --0.39513884586935399 3.3657941981650600e-05 1099999.9999999299 --0.39491184827212100 2.0583102475397901e-05 1099999.9999999299 --0.39482130352981498 0.00010509038029117000 1099999.9999999299 --0.39486668115466600 4.6341334372700097e-05 1099999.9999999299 --0.39449027417556598 0.00010538948477132000 1099999.9999999299 --0.39439239124677400 0.00013717310560605001 1099999.9999999299 --0.39388235896135299 0.00030218038733811897 1099999.9999999299 --0.39345527184519202 0.00045135259742185799 1099999.9999999299 --0.39278424689243202 0.00062020457793278698 1099999.9999999299 --0.39203029713814103 0.00077806611570513200 1099999.9999999299 --0.39123891469717398 0.00077671167656926700 1099999.9999999299 --0.39037681946928199 0.00081177605277283997 1099999.9999999299 --0.38968862408572802 0.00058408600681477004 1099999.9999999299 --0.38910185911677098 0.00047329402129575398 1099999.9999999299 --0.38882275848205700 9.0032210698855899e-05 1099999.9999999299 --0.38882275848208198 -9.0032210700404601e-05 1099999.9999999299 --0.38910185911674500 -0.00047329402130354901 1099999.9999999299 --0.38968862408573302 -0.00058408600682210402 1099999.9999999299 --0.39037681946927999 -0.00081177605277306603 1099999.9999999299 --0.39123891469720501 -0.00077671167655810297 1099999.9999999299 --0.39203029713812199 -0.00077806611569889697 1099999.9999999299 --0.39278424689246699 -0.00062020457792820796 1099999.9999999299 --0.39345527184517398 -0.00045135259742284597 1099999.9999999299 --0.39388235896137702 -0.00030218038734981399 1099999.9999999299 --0.39439239124675102 -0.00013717310559235399 1099999.9999999299 --0.39449027417562899 -0.00010538948475990900 1099999.9999999299 --0.39486668115460799 -4.6341334391180601e-05 1099999.9999999299 --0.39482130352986500 -0.00010509038028687000 1099999.9999999299 --0.39491184827207998 -2.0583102476332300e-05 1099999.9999999299 --0.39513884586935200 -3.3657941980106100e-05 1099999.9999999299 --0.39504147153000302 8.8080901301071900e-05 1099999.9999999299 --0.39521705565247300 0.00061518944740733496 1099999.9999999299 --0.39509225201262599 0.0017989281248196301 1099999.9999999299 --0.39516562500425001 0.0045230351259926199 1099999.9999999299 --0.39535810280921602 0.011118347036420100 1099999.9999999299 --0.39544751051413801 0.027090664487519199 1099999.9999999299 --0.39536901309880301 0.065892361848121805 1099999.9999999299 --0.39514859292491200 0.16111401477578399 1099999.9999999199 --0.39483389108029998 0.39483389108025602 1099999.9999998601 --0.39449704075023700 0.96752632860720200 1099999.9999995001 --0.39390834928926799 2.3705083924920398 1099999.9999973800 --0.39272232169365101 5.8074767835034402 1099999.9999846001 --0.39065720583979302 14.227441031723700 1099999.9999079199 --0.38690228641347202 34.854017837102901 1099999.9994477499 --0.38050554411895399 85.382535781719000 1099999.9966862199 --0.36953997103211600 209.15702066049801 1099999.9801150900 --0.35122206579177401 512.33818813143398 1099999.8806861099 --0.32176460079471297 1254.8816857001500 1099999.2842142400 --0.27591488275137199 3073.0024363799598 1099995.7075625099 --0.20784697523871701 7521.7250528155000 1099974.2831776501 --0.11269021102195000 18389.396518248999 1099846.2756656900 - 0.0078644853347634002 44828.395411715101 1099086.1726747400 - 0.13929273134409101 108456.70614902901 1094640.1887795301 - 0.25153096366682498 256943.84442139801 1069569.9419925199 - 0.32303356015262602 570453.06853465096 940522.88467601698 - 1.0539543261004301 -570453.26167212904 940522.76753224805 - 0.73944471481501495 -256943.79939859500 1069569.9528081701 - 0.36843131539529800 -108456.48692050000 1094640.2105005700 --0.0016697211332133901 -44828.132527335598 1099086.1833969699 --0.31262109806346700 -18389.166340708402 1099846.2795141900 --0.54459280828798495 -7521.5528346867904 1099974.2843551701 --0.70461630617588100 -3072.8851592193600 1099995.7078899499 --0.80890237027137102 -1254.8064515592400 1099999.2842998200 --0.87440775746101695 -512.29221202245901 1099999.8807072300 --0.91422127325710800 -209.13017828514600 1099999.9801198801 --0.93781246194324797 -85.367239542029793 1099999.9966870700 --0.95137458478900905 -34.845618581856897 1099999.9994476701 --0.95897316162843904 -14.222940028832600 1099999.9999076300 --0.96327815615967005 -5.8050965516646604 1099999.9999842599 --0.96560689824458001 -2.3691551039047600 1099999.9999970200 --0.96688888314185095 -0.96688888314179500 1099999.9999991499 --0.96752632860710197 -0.39449704075032099 1099999.9999995001 --0.96792118496631796 -0.16088534857982900 1099999.9999995600 --0.96822341225588604 -0.065575128205582200 1099999.9999995700 --0.96834367044792502 -0.026830941916425401 1099999.9999995700 --0.96848363463341502 -0.011132599556091000 1099999.9999995700 --0.96838973032028797 -0.0046393876832943699 1099999.9999995700 --0.96811345037468699 -0.0020016297730819101 1099999.9999995700 --0.96816318589899597 -0.00085253785085245598 1099999.9999995700 --0.96814539339861605 -0.00019364890265783600 1099999.9999995700 --0.96804590760682496 2.1601458760488899e-05 1099999.9999995700 --0.96819244217036804 9.3318850840185894e-05 1099999.9999995700 --0.96787496452541699 0.00014365158054303100 1099999.9999995700 --0.96796065670273101 8.4994207188700895e-05 1099999.9999995700 --0.96784327986518603 0.00011265258971999899 1099999.9999995700 --0.96767743392717598 3.7899999434898201e-05 1099999.9999995700 --0.96765321427938800 8.5809691974570598e-05 1099999.9999995700 --0.96732197733316205 0.00010330293904326500 1099999.9999995700 --0.96723871338508005 0.00013345081785034099 1099999.9999995700 --0.96683613572652305 0.00023956144161299900 1099999.9999995800 --0.96664746458629602 0.00019154211544720499 1099999.9999995800 --0.96626869863579501 0.00030302562723962700 1099999.9999995800 --0.96605733748343603 0.00014628823505160701 1099999.9999995800 --0.96582129661509397 0.00021643883724976301 1099999.9999995800 --0.96572767251825797 -1.9586754785722600e-05 1099999.9999995800 --0.96572767251824598 1.9586754783220800e-05 1099999.9999995800 --0.96582129661509297 -0.00021643883725981999 1099999.9999995800 --0.96605733748347500 -0.00014628823503498700 1099999.9999995800 --0.96626869863585996 -0.00030302562721760197 1099999.9999995800 --0.96664746458636597 -0.00019154211545565199 1099999.9999995800 --0.96683613572656601 -0.00023956144161131000 1099999.9999995800 --0.96723871338511302 -0.00013345081785493099 1099999.9999995700 --0.96732197733318703 -0.00010330293905812899 1099999.9999995700 --0.96765321427941198 -8.5809691964395496e-05 1099999.9999995700 --0.96767743392726702 -3.7899999406827902e-05 1099999.9999995700 --0.96784327986514795 -0.00011265258975925800 1099999.9999995700 --0.96796065670275100 -8.4994207184595102e-05 1099999.9999995700 --0.96787496452540700 -0.00014365158053655799 1099999.9999995700 --0.96819244217034595 -9.3318850873682699e-05 1099999.9999995700 --0.96804590760682296 -2.1601458747472202e-05 1099999.9999995700 --0.96814539339856698 0.00019364890264178899 1099999.9999995700 --0.96816318589897399 0.00085253785086563598 1099999.9999995700 --0.96811345037459495 0.0020016297731034701 1099999.9999995700 --0.96838973032024700 0.0046393876832710396 1099999.9999995700 --0.96848363463330800 0.011132599556115100 1099999.9999995700 --0.96834367044789305 0.026830941916448501 1099999.9999995700 --0.96822341225579700 0.065575128205579106 1099999.9999995700 --0.96792118496626600 0.16088534857986300 1099999.9999995600 --0.96752632860710497 0.39449704075026498 1099999.9999995001 --0.96688888314181398 0.96688888314179899 1099999.9999991499 --0.96560689824460999 2.3691551039048999 1099999.9999970200 --0.96327815615969004 5.8050965516642901 1099999.9999842599 --0.95897316162859703 14.222940028832500 1099999.9999076300 --0.95137458478908199 34.845618581856598 1099999.9994476701 --0.93781246194329204 85.367239542030504 1099999.9966870700 --0.91422127325577995 209.13017828514899 1099999.9801198801 --0.87440775746048205 512.29221202245697 1099999.8807072300 --0.80890237027388900 1254.8064515592300 1099999.2842998200 --0.70461630617432303 3072.8851592193600 1099995.7078899499 --0.54459280828739298 7521.5528346868296 1099974.2843551701 --0.31262109806390498 18389.166340708402 1099846.2795141900 --0.0016697211029373599 44828.132527335598 1099086.1833969699 - 0.36843131543534402 108456.48692050000 1094640.2105005700 - 0.73944471482846297 256943.79939859500 1069569.9528081701 - 1.0539543260644200 570453.26167212904 940522.76753224805 - 3.0638914400445700 -570453.28997414804 940522.75036188401 - 1.9925942827452201 -256943.32862485401 1069570.0659008799 - 0.88752617434073899 -108455.73927964800 1094640.2845759499 --0.10096219143221800 -44827.394901604297 1099086.2134820600 --0.87672683178027699 -18388.577201452699 1099846.2893639901 --1.4293392462891299 -7521.1362786820600 1099974.2872026800 --1.7971584307773900 -3072.6132968070201 1099995.7086481301 --2.0308734742108498 -1254.6388922451499 1099999.2844893700 --2.1740912034619599 -512.19307894301596 1099999.8807516000 --2.2595271969760500 -209.07332176212000 1099999.9801287500 --2.3093712073708401 -85.335673235993497 1099999.9966875000 --2.3377777851758101 -34.828361274580303 1099999.9994461499 --2.3535401313659401 -14.213744007517599 1099999.9999056500 --2.3622010507162701 -5.8004743671293300 1099999.9999821701 --2.3667975561231200 -2.3667975561231400 1099999.9999949101 --2.3691551039048200 -0.96560689824467405 1099999.9999970200 --2.3705083924919901 -0.39390834928920498 1099999.9999973800 --2.3710783805794100 -0.16056742304439600 1099999.9999974300 --2.3715436169486299 -0.065475334917080893 1099999.9999974400 --2.3717579516770302 -0.026591832727912899 1099999.9999974400 --2.3718565874999298 -0.010978350725491300 1099999.9999974400 --2.3721383919956001 -0.0045820120088441198 1099999.9999974400 --2.3719369963697798 -0.0018827189474728600 1099999.9999974400 --2.3717879212074200 -0.00098156873254044708 1099999.9999974400 --2.3717979131233999 -0.00039049638215663001 1099999.9999974400 --2.3716554288038001 -6.1566274964313999e-05 1099999.9999974400 --2.3717196390289801 3.4993194948503900e-06 1099999.9999974400 --2.3717327167983600 9.7696234954538797e-05 1099999.9999974400 --2.3715840052851900 5.3336906001631803e-05 1099999.9999974400 --2.3716873193139998 7.4170483479450705e-05 1099999.9999974400 --2.3715330265627701 7.1406910699135705e-05 1099999.9999974400 --2.3715353824164702 4.2686341538888301e-05 1099999.9999974400 --2.3714466354132200 0.00013209994855572100 1099999.9999974400 --2.3713218235487199 7.8930788286906296e-05 1099999.9999974400 --2.3712679540271902 0.00017142686377618000 1099999.9999974400 --2.3710822667649700 0.00014082724318274301 1099999.9999974400 --2.3710308322486400 0.00016335712270295800 1099999.9999974400 --2.3708700971248802 0.00014663213259252499 1099999.9999974400 --2.3708309004757702 8.0575767872829795e-05 1099999.9999974400 --2.3707672111394600 5.7525365228701898e-05 1099999.9999974500 --2.3707672111394000 -5.7525365227694498e-05 1099999.9999974500 --2.3708309004758799 -8.0575767830034993e-05 1099999.9999974400 --2.3708700971248899 -0.00014663213254429501 1099999.9999974400 --2.3710308322487399 -0.00016335712269060300 1099999.9999974400 --2.3710822667649700 -0.00014082724320223699 1099999.9999974400 --2.3712679540272998 -0.00017142686379234800 1099999.9999974400 --2.3713218235487501 -7.8930788307478598e-05 1099999.9999974400 --2.3714466354132502 -0.00013209994856397099 1099999.9999974400 --2.3715353824165000 -4.2686341492445301e-05 1099999.9999974400 --2.3715330265627701 -7.1406910768474405e-05 1099999.9999974400 --2.3716873193139101 -7.4170483496151295e-05 1099999.9999974400 --2.3715840052853201 -5.3336905964490499e-05 1099999.9999974400 --2.3717327167982600 -9.7696234998019302e-05 1099999.9999974400 --2.3717196390290001 -3.4993194865112300e-06 1099999.9999974400 --2.3716554288038298 6.1566274918883394e-05 1099999.9999974400 --2.3717979131233502 0.00039049638215722801 1099999.9999974400 --2.3717879212074200 0.00098156873249126506 1099999.9999974400 --2.3719369963696200 0.0018827189474682300 1099999.9999974400 --2.3721383919955499 0.0045820120088633899 1099999.9999974400 --2.3718565874998800 0.010978350725480399 1099999.9999974400 --2.3717579516768401 0.026591832727923499 1099999.9999974400 --2.3715436169486201 0.065475334917075204 1099999.9999974400 --2.3710783805790898 0.16056742304443700 1099999.9999974300 --2.3705083924919301 0.39390834928923302 1099999.9999973800 --2.3691551039047098 0.96560689824470203 1099999.9999970200 --2.3667975561230099 2.3667975561231001 1099999.9999949101 --2.3622010507163900 5.8004743671294099 1099999.9999821701 --2.3535401313660600 14.213744007517100 1099999.9999056500 --2.3377777851759101 34.828361274580800 1099999.9994461499 --2.3093712073707899 85.335673235993696 1099999.9966875000 --2.2595271969763400 209.07332176211801 1099999.9801287500 --2.1740912034596001 512.19307894301903 1099999.8807516000 --2.0308734742093999 1254.6388922451399 1099999.2844893700 --1.7971584307798201 3072.6132968070301 1099995.7086481301 --1.4293392462881200 7521.1362786820600 1099974.2872026800 --0.87672683177874999 18388.577201452699 1099846.2893639901 --0.10096219142040000 44827.394901604297 1099086.2134820600 - 0.88752617436756598 108455.73927964800 1094640.2845759499 - 1.9925942827222101 256943.32862485401 1069570.0659008799 - 3.0638914401108499 570453.28997414804 940522.75036188401 - 8.2151789026367901 -570452.25323402602 940523.37914202502 - 5.0006042956618897 -256941.33966868601 1069570.5436969800 - 1.9430522078806600 -108453.47003991299 1094640.5094059501 --0.58619736609996997 -44825.427794789699 1099086.2937106800 --2.4622009501668898 -18387.118790335200 1099846.3137441201 --3.7456042194123600 -7520.1569389283704 1099974.2938930800 --4.5751119480487299 -3071.9990774051598 1099995.7103556099 --5.0892998288056202 -1254.2724727472300 1099999.2848973400 --5.3984993675389097 -511.98266166574501 1099999.8808384500 --5.5796741325016503 -208.95594886441600 1099999.9801392199 --5.6834274993623097 -85.271763272298202 1099999.9966801901 --5.7418553216314399 -34.794370060405498 1099999.9994347200 --5.7738535559859496 -14.195852754137301 1099999.9998932499 --5.7911759113584500 -5.7911759113585504 1099999.9999695099 --5.8004743671294996 -2.3622010507162701 1099999.9999821701 --5.8050965516643496 -0.96327815615968204 1099999.9999842599 --5.8074767835036196 -0.39272232169355398 1099999.9999846001 --5.8086982447571396 -0.16005830039276900 1099999.9999846499 --5.8092363805356699 -0.065199918008307406 1099999.9999846600 --5.8096953470989003 -0.026611810172187399 1099999.9999846600 --5.8097483851574703 -0.010728659323339700 1099999.9999846600 --5.8100099273832502 -0.0045781260174352599 1099999.9999846600 --5.8102157233492298 -0.0018318246265027001 1099999.9999846600 --5.8100997393318998 -0.00079276381487582604 1099999.9999846600 --5.8101115129253298 -0.00047936513333524301 1099999.9999846600 --5.8100194238818998 -0.00011525290703338200 1099999.9999846600 --5.8098973349225096 -6.7161269388959303e-05 1099999.9999846600 --5.8099586339471196 5.1176699393906802e-05 1099999.9999846600 --5.8098667287339802 5.7023819033287500e-05 1099999.9999846600 --5.8098511061764704 -2.5678046188812500e-05 1099999.9999846600 --5.8098812520040397 3.3147124916701501e-05 1099999.9999846600 --5.8098013398941299 -7.1613075455376898e-05 1099999.9999846600 --5.8098604478263001 2.0382043203304001e-05 1099999.9999846600 --5.8097737341911504 -3.6580829075322799e-06 1099999.9999846600 --5.8097933142878402 5.6512241469321199e-05 1099999.9999846600 --5.8097207359888197 9.9422262401216801e-05 1099999.9999846600 --5.8096977017379796 9.6052402042206894e-05 1099999.9999846600 --5.8096450010861496 0.00013577246021329999 1099999.9999846600 --5.8096162499477497 5.9848809641433900e-05 1099999.9999846600 --5.8095956252623600 5.9477092093206697e-05 1099999.9999846600 --5.8095956252625696 -5.9477092041695297e-05 1099999.9999846600 --5.8096162499476502 -5.9848809567745801e-05 1099999.9999846600 --5.8096450010862704 -0.00013577246020495101 1099999.9999846600 --5.8096977017378304 -9.6052402076551396e-05 1099999.9999846600 --5.8097207359888099 -9.9422262380793197e-05 1099999.9999846600 --5.8097933142877700 -5.6512241479805102e-05 1099999.9999846600 --5.8097737341910900 3.6580828629057002e-06 1099999.9999846600 --5.8098604478262796 -2.0382043184156201e-05 1099999.9999846600 --5.8098013398940802 7.1613075356468699e-05 1099999.9999846600 --5.8098812520038496 -3.3147124942532197e-05 1099999.9999846600 --5.8098511061766098 2.5678046291761599e-05 1099999.9999846600 --5.8098667287339198 -5.7023819087306999e-05 1099999.9999846600 --5.8099586339470601 -5.1176699468195698e-05 1099999.9999846600 --5.8098973349226402 6.7161269452409905e-05 1099999.9999846600 --5.8100194238816796 0.00011525290699167800 1099999.9999846600 --5.8101115129255998 0.00047936513331428202 1099999.9999846600 --5.8100997393316201 0.00079276381483969695 1099999.9999846600 --5.8102157233495202 0.0018318246263589700 1099999.9999846600 --5.8100099273830104 0.0045781260175148204 1099999.9999846600 --5.8097483851574996 0.010728659323277200 1099999.9999846600 --5.8096953470987298 0.026611810172194401 1099999.9999846600 --5.8092363805356202 0.065199918008249300 1099999.9999846600 --5.8086982447570001 0.16005830039272401 1099999.9999846499 --5.8074767835033203 0.39272232169366600 1099999.9999846001 --5.8050965516642599 0.96327815615974299 1099999.9999842599 --5.8004743671292198 2.3622010507165601 1099999.9999821701 --5.7911759113583496 5.7911759113583603 1099999.9999695099 --5.7738535559861397 14.195852754137100 1099999.9998932499 --5.7418553216314399 34.794370060405299 1099999.9994347200 --5.6834274993612999 85.271763272299197 1099999.9966801901 --5.5796741325014798 208.95594886441600 1099999.9801392199 --5.3984993675397499 511.98266166574200 1099999.8808384500 --5.0892998288041200 1254.2724727472300 1099999.2848973400 --4.5751119480502904 3071.9990774051598 1099995.7103556099 --3.7456042194013399 7520.1569389284005 1099974.2938930800 --2.4622009501627198 18387.118790335098 1099846.3137441201 --0.58619736609134798 44825.427794789699 1099086.2937106800 - 1.9430522078733401 108453.47003991299 1094640.5094059501 - 5.0006042956958101 256941.33966868601 1069570.5436969800 - 8.2151789026457198 570452.25323402602 940523.37914202502 - 20.605691551539799 -570447.14829199505 940526.47521531000 - 11.736982198762700 -256934.67468384601 1069572.1447416900 - 3.7503483808715798 -108447.09563824401 1094641.1409377800 --2.4690018039514099 -44820.406802995603 1099086.4984740401 --6.8723085910778900 -18383.623338977101 1099846.3721564501 --9.7828583506664302 -7517.9177162714004 1099974.3091624901 --11.615088467109800 -3070.6464507933902 1099995.7140805000 --12.728364178793500 -1253.4900274301201 1099999.2857273801 --13.385872904400500 -511.54509761349999 1099999.8809738299 --13.765036550986601 -208.71783217726801 1099999.9801124500 --13.979143280172700 -85.144859271273603 1099999.9966158799 --14.097602898788599 -34.728092048457597 1099999.9993614601 --14.161822850282800 -14.161822850282800 1099999.9998176801 --14.195852754137499 -5.7738535559857800 1099999.9998932499 --14.213744007517400 -2.3535401313660902 1099999.9999056500 --14.222940028832401 -0.95897316162854995 1099999.9999076300 --14.227441031724400 -0.39065720583977498 1099999.9999079199 --14.229674784805200 -0.15897139856966799 1099999.9999079499 --14.230760262295901 -0.064695800335067999 1099999.9999079499 --14.231294894316600 -0.026395833840103501 1099999.9999079399 --14.231646320630500 -0.010731227426041901 1099999.9999079399 --14.231620519111599 -0.0043894777836456199 1099999.9999079399 --14.231985125542201 -0.0018852354372144099 1099999.9999079299 --14.231994191294399 -0.00064690188374573498 1099999.9999079299 --14.232073610727500 -0.00039000257220531300 1099999.9999079299 --14.232101812921499 -0.00013442993133227601 1099999.9999079299 --14.232034034843799 -6.3630471524496598e-05 1099999.9999079299 --14.231997858663000 5.4291627458158802e-06 1099999.9999079299 --14.231961510419300 4.0729244850488398e-05 1099999.9999079299 --14.231913588473001 6.9351952418274801e-05 1099999.9999079299 --14.231846115385100 -1.1978593727776600e-05 1099999.9999079299 --14.231871092334099 4.9591256119634798e-05 1099999.9999079299 --14.231766744139399 -7.9981925286935605e-05 1099999.9999079299 --14.231846272012300 4.9466391359624697e-05 1099999.9999079299 --14.231736350208800 -6.1036023794953004e-05 1099999.9999079399 --14.231814400158299 9.5532240910778596e-05 1099999.9999079299 --14.231723332954200 1.6758839539242499e-05 1099999.9999079399 --14.231767234210000 0.00012112107704624100 1099999.9999079299 --14.231713935649999 2.9754966944641500e-05 1099999.9999079399 --14.231725840168000 5.9103142800050803e-05 1099999.9999079399 --14.231725840167799 -5.9103142708053599e-05 1099999.9999079399 --14.231713935650200 -2.9754966975786102e-05 1099999.9999079399 --14.231767234209901 -0.00012112107710761200 1099999.9999079299 --14.231723332954200 -1.6758839561102999e-05 1099999.9999079399 --14.231814400158299 -9.5532240896762193e-05 1099999.9999079299 --14.231736350208500 6.1036023747440405e-05 1099999.9999079399 --14.231846272012200 -4.9466391324962300e-05 1099999.9999079299 --14.231766744139300 7.9981925289451699e-05 1099999.9999079299 --14.231871092334201 -4.9591256211516901e-05 1099999.9999079299 --14.231846115385199 1.1978593865869500e-05 1099999.9999079299 --14.231913588473301 -6.9351952367446902e-05 1099999.9999079299 --14.231961510418801 -4.0729245102550102e-05 1099999.9999079299 --14.231997858663499 -5.4291626020665896e-06 1099999.9999079299 --14.232034034843499 6.3630471396640593e-05 1099999.9999079299 --14.232101812921901 0.00013442993139531700 1099999.9999079299 --14.232073610727200 0.00039000257216697599 1099999.9999079299 --14.231994191294699 0.00064690188372873599 1099999.9999079299 --14.231985125542300 0.0018852354372855401 1099999.9999079299 --14.231620519111800 0.0043894777833068700 1099999.9999079399 --14.231646320630199 0.010731227426112900 1099999.9999079399 --14.231294894316999 0.026395833840062100 1099999.9999079399 --14.230760262295400 0.064695800335130199 1099999.9999079499 --14.229674784805900 0.15897139856954301 1099999.9999079499 --14.227441031724201 0.39065720583981600 1099999.9999079199 --14.222940028832500 0.95897316162859003 1099999.9999076300 --14.213744007517400 2.3535401313661199 1099999.9999056500 --14.195852754136800 5.7738535559862703 1099999.9998932499 --14.161822850282499 14.161822850282499 1099999.9998176801 --14.097602898788800 34.728092048456901 1099999.9993614601 --13.979143280172799 85.144859271273305 1099999.9966158799 --13.765036550984400 208.71783217726900 1099999.9801124500 --13.385872904400999 511.54509761350198 1099999.8809738299 --12.728364178793500 1253.4900274301201 1099999.2857273801 --11.615088467106400 3070.6464507933902 1099995.7140805000 --9.7828583506780493 7517.9177162714004 1099974.3091624901 --6.8723085910606496 18383.623338977101 1099846.3721564501 --2.4690018039875099 44820.406802995603 1099086.4984740401 - 3.7503483808497702 108447.09563824401 1094641.1409377800 - 11.736982198781201 256934.67468384601 1069572.1447416900 - 20.605691551506400 570447.14829199505 940526.47521531000 - 48.542762271494603 -570429.14200834802 940537.39510517102 - 25.626353917085599 -256914.86176917201 1069576.9038014100 - 5.7872784899433798 -108430.22653964300 1094642.8120346200 --8.9428221054985997 -44808.097482573503 1099087.0003416601 --18.978860229435000 -18375.513393277499 1099846.5075397301 --25.424306548378201 -7512.9395358972197 1099974.3429249299 --29.394691086493200 -3067.7432432310602 1099995.7218495600 --31.764749477065301 -1251.8605071807301 1099999.2871980700 --33.143619709049602 -510.65696811553602 1099999.8809686101 --33.927524489854399 -208.24500121843701 1099999.9797649700 --34.363496040040403 -84.897857214491694 1099999.9961870499 --34.601115968278997 -34.601115968278798 1099999.9989116001 --34.728092048457299 -14.097602898788400 1099999.9993614601 --34.794370060405100 -5.7418553216317303 1099999.9994347200 --34.828361274579997 -2.3377777851759900 1099999.9994461499 --34.845618581857302 -0.95137458478884196 1099999.9994476701 --34.854017837101800 -0.38690228641367902 1099999.9994477499 --34.858179207254899 -0.15729720815151901 1099999.9994476701 --34.859979268264503 -0.063766815289346801 1099999.9994476300 --34.860997948900398 -0.025984257543394899 1099999.9994476000 --34.861447282906397 -0.010595032873087201 1099999.9994475800 --34.861684628649300 -0.0042847780281981404 1099999.9994475699 --34.861771538766902 -0.0018560189552300299 1099999.9994475699 --34.861956841917099 -0.00072002975245205299 1099999.9994475699 --34.862008264381899 -0.00020945538472284101 1099999.9994475599 --34.862040898780798 -0.00012065671554174900 1099999.9994475599 --34.862115444764697 3.8458723203598302e-05 1099999.9994475599 --34.862027763231097 -5.9612503643314300e-05 1099999.9994475599 --34.862086309585997 7.7289817124453602e-05 1099999.9994475599 --34.861987120294302 -4.6618075272559100e-05 1099999.9994475599 --34.862009037878700 7.6324829700390298e-05 1099999.9994475599 --34.861919290573098 -5.1855274456096099e-05 1099999.9994475699 --34.861938810747802 8.1594108099071800e-05 1099999.9994475699 --34.861851244270497 -5.2741958160690698e-05 1099999.9994475699 --34.861883702138996 0.00012399847415298199 1099999.9994475699 --34.861801822438700 -9.0029571063286599e-06 1099999.9994475699 --34.861830439515700 0.00018799554915778800 1099999.9994475699 --34.861767524250503 1.7724796188194901e-05 1099999.9994475699 --34.861780517721499 0.00017340677471984399 1099999.9994475699 --34.861755896210198 -5.7064839822598902e-05 1099999.9994475699 --34.861755896210703 5.7064839812742597e-05 1099999.9994475699 --34.861780517721300 -0.00017340677481366500 1099999.9994475699 --34.861767524250602 -1.7724796225007400e-05 1099999.9994475699 --34.861830439515799 -0.00018799554899335701 1099999.9994475699 --34.861801822438601 9.0029567991833493e-06 1099999.9994475699 --34.861883702139203 -0.00012399847418840100 1099999.9994475699 --34.861851244270497 5.2741958330074898e-05 1099999.9994475699 --34.861938810748100 -8.1594107932887202e-05 1099999.9994475699 --34.861919290572700 5.1855274742938602e-05 1099999.9994475699 --34.862009037879602 -7.6324829818101599e-05 1099999.9994475599 --34.861987120293598 4.6618074785762503e-05 1099999.9994475599 --34.862086309586601 -7.7289816806675097e-05 1099999.9994475599 --34.862027763230699 5.9612503726029900e-05 1099999.9994475599 --34.862115444765202 -3.8458723375252598e-05 1099999.9994475599 --34.862040898780997 0.00012065671557241800 1099999.9994475599 --34.862008264382098 0.00020945538472591900 1099999.9994475599 --34.861956841917703 0.00072002975252982401 1099999.9994475699 --34.861771538766703 0.0018560189552035500 1099999.9994475699 --34.861684628649499 0.0042847780280227997 1099999.9994475699 --34.861447282907498 0.010595032873054700 1099999.9994475800 --34.860997948900298 0.025984257543366598 1099999.9994476000 --34.859979268265100 0.063766815289448400 1099999.9994476300 --34.858179207255198 0.15729720815175499 1099999.9994476701 --34.854017837103100 0.38690228641325197 1099999.9994477499 --34.845618581857003 0.95137458478890402 1099999.9994476701 --34.828361274580701 2.3377777851756800 1099999.9994461499 --34.794370060405399 5.7418553216314301 1099999.9994347200 --34.728092048456702 14.097602898789200 1099999.9993614601 --34.601115968278897 34.601115968278798 1099999.9989116001 --34.363496040040900 84.897857214490102 1099999.9961870499 --33.927524489855003 208.24500121843701 1099999.9797649700 --33.143619709048401 510.65696811553698 1099999.8809686101 --31.764749477065699 1251.8605071807301 1099999.2871980700 --29.394691086492699 3067.7432432310702 1099995.7218495600 --25.424306548381001 7512.9395358972197 1099974.3429249299 --18.978860229418100 18375.513393277499 1099846.5075397301 --8.9428221054900199 44808.097482573598 1099087.0003416601 - 5.7872784899565204 108430.22653964300 1094642.8120346200 - 25.626353917044899 256914.86176917201 1069576.9038014100 - 48.542762271485202 570429.14200834802 940537.39510517102 - 107.00276323926400 -570374.37706612202 940570.60263270000 - 51.117837445730999 -256860.54241596299 1069589.9490630699 - 4.1011902100995599 -108387.80530071299 1094647.0132628500 --29.521394446583201 -44779.066405362799 1099088.1831501699 --51.737688564950702 -18357.307175600399 1099846.8105133900 --65.684665300573698 -7502.1991370091800 1099974.4145631900 --74.128646129470098 -3061.6816609684201 1099995.7366328100 --79.097823056798205 -1248.5514814685400 1099999.2885737401 --81.950451848529298 -508.89630551100998 1099999.8792312101 --83.550362176210001 -207.32715146081301 1099999.9772885400 --84.427561818599301 -84.427561818598505 1099999.9935199900 --84.897857214490600 -34.363496040040900 1099999.9961870499 --85.144859271272196 -13.979143280173300 1099999.9966158799 --85.271763272298202 -5.6834274993620104 1099999.9966801901 --85.335673235993298 -2.3093712073705701 1099999.9966875000 --85.367239542030802 -0.93781246194322598 1099999.9966870700 --85.382535781716896 -0.38050554411900200 1099999.9966862199 --85.389831648361493 -0.15433422617314299 1099999.9966857100 --85.393216839536294 -0.062447058434737197 1099999.9966854500 --85.394616637643495 -0.025204827668401202 1099999.9966853401 --85.395472282539302 -0.010292587969390300 1099999.9966852800 --85.395713170351897 -0.0041578332175832003 1099999.9966852600 --85.395946452100802 -0.0017813627515244599 1099999.9966852400 --85.396059818346799 -0.00077127971689851997 1099999.9966852299 --85.396122951886099 -0.00031371712084123299 1099999.9966852299 --85.396238039905299 -7.9344815071299995e-05 1099999.9966852199 --85.396175123453204 2.2771226407495399e-05 1099999.9966852199 --85.396286723947000 7.7353234014001498e-05 1099999.9966852199 --85.396136325598306 1.9322056429605599e-05 1099999.9966852299 --85.396224266727202 5.5852487749876600e-05 1099999.9966852199 --85.396094241169493 -4.9579773548209998e-05 1099999.9966852299 --85.396128591928203 -3.8879484885140798e-06 1099999.9966852299 --85.396066191675104 -7.4695050220977295e-05 1099999.9966852299 --85.396060102379707 -7.2356456441414602e-06 1099999.9966852299 --85.396041551935397 -2.5321517928332699e-05 1099999.9966852299 --85.396017410009193 6.1171358642443801e-05 1099999.9966852400 --85.396009329129598 6.1204801637811205e-05 1099999.9966852400 --85.395983238290398 0.00011237433068518200 1099999.9966852400 --85.395975785037606 6.2167473436410304e-05 1099999.9966852400 --85.395964133857504 4.8088578835586000e-05 1099999.9966852400 --85.395964133857603 -4.8088578817000099e-05 1099999.9966852400 --85.395975785037706 -6.2167473638180396e-05 1099999.9966852400 --85.395983238290995 -0.00011237433049397099 1099999.9966852400 --85.396009329128802 -6.1204802064815801e-05 1099999.9966852400 --85.396017410008895 -6.1171358471915794e-05 1099999.9966852400 --85.396041551935696 2.5321517938825801e-05 1099999.9966852299 --85.396060102380105 7.2356458060627797e-06 1099999.9966852299 --85.396066191674606 7.4695050009323806e-05 1099999.9966852299 --85.396128591928502 3.8879489365993903e-06 1099999.9966852299 --85.396094241167603 4.9579773477663897e-05 1099999.9966852299 --85.396224266728893 -5.5852487922476700e-05 1099999.9966852199 --85.396136325598306 -1.9322056013261899e-05 1099999.9966852299 --85.396286723947398 -7.7353234186874499e-05 1099999.9966852199 --85.396175123452906 -2.2771225940506501e-05 1099999.9966852199 --85.396238039905796 7.9344814839783299e-05 1099999.9966852199 --85.396122951886596 0.00031371712096172298 1099999.9966852299 --85.396059818346501 0.00077127971672036105 1099999.9966852299 --85.395946452100702 0.0017813627511635501 1099999.9966852400 --85.395713170353105 0.0041578332186993101 1099999.9966852600 --85.395472282539401 0.010292587969245100 1099999.9966852800 --85.394616637643594 0.025204827667814601 1099999.9966853401 --85.393216839538297 0.062447058435064200 1099999.9966854500 --85.389831648360499 0.15433422617333001 1099999.9966857100 --85.382535781718502 0.38050554411865301 1099999.9966862199 --85.367239542030504 0.93781246194308299 1099999.9966870700 --85.335673235993895 2.3093712073706798 1099999.9966875000 --85.271763272299694 5.6834274993613603 1099999.9966801901 --85.144859271273802 13.979143280172901 1099999.9966158799 --84.897857214490301 34.363496040041397 1099999.9961870499 --84.427561818599301 84.427561818598704 1099999.9935199900 --83.550362176211806 207.32715146081199 1099999.9772885400 --81.950451848527507 508.89630551101197 1099999.8792312101 --79.097823056796003 1248.5514814685400 1099999.2885737401 --74.128646129476394 3061.6816609684201 1099995.7366328100 --65.684665300564902 7502.1991370091700 1099974.4145631900 --51.737688564958098 18357.307175600399 1099846.8105133900 --29.521394446560201 44779.066405362799 1099088.1831501699 - 4.1011902100701398 108387.80530071299 1094647.0132628500 - 51.117837445717001 256860.54241596299 1069589.9490630699 - 107.00276323926801 570374.37706612202 940570.60263270105 - 217.74198556481500 -570222.73231285205 940662.52617083304 - 88.930714368165496 -256720.86050067499 1069623.4813592699 --17.390582485766799 -108286.04538144900 1094657.0842383499 --91.327319714753997 -44713.216735599402 1099090.8606245799 --139.10264297600801 -18317.824841091799 1099847.4612161200 --168.61723887291501 -7479.7480950394502 1099974.5564951301 --186.26682963525599 -3049.3929388975098 1099995.7574951700 --196.53659385435401 -1242.0128257548299 1099999.2812622699 --202.36223880096199 -505.49249081710298 1099999.8652394800 --205.58622227359001 -205.58622227359101 1099999.9615766399 --207.32715146081401 -83.550362176211095 1099999.9772885400 --208.24500121843499 -33.927524489855401 1099999.9797649700 --208.71783217726801 -13.765036550985901 1099999.9801124500 --208.95594886441501 -5.5796741325013501 1099999.9801392199 --209.07332176212199 -2.2595271969751902 1099999.9801287500 --209.13017828514401 -0.91422127325715496 1099999.9801198801 --209.15702066050099 -0.36953997103229502 1099999.9801150900 --209.16956362625100 -0.14919709300646700 1099999.9801127601 --209.17533963084500 -0.060310076907250099 1099999.9801116700 --209.17778786433999 -0.024196353592618399 1099999.9801112099 --209.17890096074800 -0.0097649957036568206 1099999.9801109901 --209.17937014959600 -0.0038957347307637699 1099999.9801109000 --209.17953670142600 -0.0015461348155443300 1099999.9801108700 --209.17964760484699 -0.00075808560764195501 1099999.9801108500 --209.17971312141600 -0.00030231336495973498 1099999.9801108399 --209.17979477733601 -0.00021914423184626200 1099999.9801108199 --209.17983169213900 -4.3145117232081398e-05 1099999.9801108199 --209.17987563077600 -1.7623072429269800e-05 1099999.9801108099 --209.17987753179500 4.2289594672718499e-05 1099999.9801108099 --209.17985736763001 4.2444906260554003e-05 1099999.9801108099 --209.17982594551799 1.7677274678958901e-06 1099999.9801108199 --209.17979853331201 -7.6201371503353801e-07 1099999.9801108199 --209.17974475252299 -6.0380254159635200e-05 1099999.9801108299 --209.17975058826201 -2.1560827583881900e-05 1099999.9801108299 --209.17968650285400 -5.9964019239584600e-05 1099999.9801108399 --209.17971389875800 4.5471912866081099e-05 1099999.9801108399 --209.17965152006099 4.5710233629248996e-06 1099999.9801108500 --209.17967392998199 0.00011596246536121500 1099999.9801108500 --209.17963349094501 1.1712449410163400e-05 1099999.9801108500 --209.17964089762700 7.7183928223105701e-05 1099999.9801108500 --209.17964089762401 -7.7183928155511605e-05 1099999.9801108500 --209.17963349094700 -1.1712448803751400e-05 1099999.9801108500 --209.17967392998099 -0.00011596246657536400 1099999.9801108500 --209.17965152006099 -4.5710242185243502e-06 1099999.9801108500 --209.17971389875700 -4.5471911942865100e-05 1099999.9801108399 --209.17968650285400 5.9964019893649598e-05 1099999.9801108399 --209.17975058826201 2.1560826558841100e-05 1099999.9801108299 --209.17974475252399 6.0380254230897403e-05 1099999.9801108299 --209.17979853331300 7.6201268334228201e-07 1099999.9801108199 --209.17982594551799 -1.7677257612751999e-06 1099999.9801108199 --209.17985736762901 -4.2444904573320601e-05 1099999.9801108099 --209.17987753179699 -4.2289596007083403e-05 1099999.9801108099 --209.17987563077600 1.7623072662158300e-05 1099999.9801108099 --209.17983169213801 4.3145117474381298e-05 1099999.9801108199 --209.17979477733601 0.00021914423183720701 1099999.9801108199 --209.17971312141600 0.00030231336425731498 1099999.9801108399 --209.17964760484500 0.00075808560751887302 1099999.9801108500 --209.17953670142700 0.0015461348166581801 1099999.9801108700 --209.17937014959500 0.0038957347308494002 1099999.9801109000 --209.17890096074601 0.0097649957028589102 1099999.9801109901 --209.17778786434201 0.024196353594444098 1099999.9801112099 --209.17533963084600 0.060310076906654103 1099999.9801116700 --209.16956362625299 0.14919709300598399 1099999.9801127601 --209.15702066049900 0.36953997103286501 1099999.9801150900 --209.13017828514899 0.91422127325648905 1099999.9801198801 --209.07332176212000 2.2595271969764199 1099999.9801287500 --208.95594886441600 5.5796741325011903 1099999.9801392199 --208.71783217726900 13.765036550984499 1099999.9801124500 --208.24500121843701 33.927524489854399 1099999.9797649700 --207.32715146081301 83.550362176211905 1099999.9772885400 --205.58622227359101 205.58622227359001 1099999.9615766399 --202.36223880096600 505.49249081709797 1099999.8652394800 --196.53659385434901 1242.0128257548299 1099999.2812622699 --186.26682963525300 3049.3929388975098 1099995.7574951700 --168.61723887292001 7479.7480950394502 1099974.5564951301 --139.10264297600699 18317.824841091799 1099847.4612161200 --91.327319714743197 44713.216735599402 1099090.8606245799 --17.390582485741501 108286.04538144900 1094657.0842383499 - 88.930714368191602 256720.86050067499 1069623.4813592699 - 217.74198556476401 570222.73231285205 940662.52617083304 - 395.92100159946301 -569832.13216431299 940899.13614565099 - 116.34596073458100 -256381.55550723200 1069704.8585751599 --112.52868469700300 -108053.08187546200 1094680.0988574300 --269.01893890973002 -44569.840423817397 1099096.6549641599 --368.88774080355898 -18235.327548974299 1099848.7790378300 --430.07083172199799 -7434.3952887054002 1099974.7928047101 --466.38819858088902 -3025.2496788486201 1099995.7410583100 --487.33480089427002 -1229.4596298924400 1099999.2049696301 --499.08282967321600 -499.08282967321799 1099999.7735602800 --505.49249081710099 -202.36223880096199 1099999.8652394800 --508.89630551100601 -81.950451848529895 1099999.8792312101 --510.65696811553801 -33.143619709050597 1099999.8809686101 --511.54509761350101 -13.385872904400401 1099999.8809738299 --511.98266166574501 -5.3984993675362700 1099999.8808384500 --512.19307894301505 -2.1740912034616202 1099999.8807516000 --512.29221202245697 -0.87440775746142196 1099999.8807072300 --512.33818813143296 -0.35122206579232701 1099999.8806861099 --512.35879434737399 -0.14096912864869199 1099999.8806765601 --512.36813818279404 -0.056549327629028999 1099999.8806722199 --512.37217869786195 -0.022773806050420099 1099999.8806703300 --512.37375689670603 -0.0090921225530389508 1099999.8806696001 --512.37458556071795 -0.0036835260028405098 1099999.8806692101 --512.37468913297596 -0.0014061130064990299 1099999.8806691701 --512.37484016863903 -0.00053418662153985298 1099999.8806690900 --512.37483841643598 -0.00023831315635236799 1099999.8806691000 --512.37480074006100 -9.6072454939420294e-05 1099999.8806691100 --512.37494359469099 -0.00011935926567848399 1099999.8806690499 --512.37484259370297 -3.0334066078227099e-05 1099999.8806690900 --512.37504134004405 -7.1967927042060803e-05 1099999.8806690001 --512.37492067321398 -1.9595709622990301e-05 1099999.8806690599 --512.37507192417695 -4.1799543414169597e-05 1099999.8806689901 --512.37496774297801 -3.8923441540878201e-05 1099999.8806690399 --512.37505297612302 -4.9078993883234197e-05 1099999.8806690001 --512.37498379994997 -3.9936242709959903e-05 1099999.8806690299 --512.37502531019300 -2.9868902794774199e-05 1099999.8806690101 --512.37497949419605 2.0828026937873899e-05 1099999.8806690299 --512.37499475846198 3.6769449224989903e-05 1099999.8806690201 --512.37496263753303 7.9634227075196107e-05 1099999.8806690399 --512.37496533952697 4.6706336864884603e-05 1099999.8806690399 --512.37495292745496 3.7801667378968603e-05 1099999.8806690399 --512.37495292745700 -3.7801667363194898e-05 1099999.8806690399 --512.37496533952401 -4.6706335835796302e-05 1099999.8806690399 --512.37496263753405 -7.9634227334367995e-05 1099999.8806690399 --512.37499475846300 -3.6769449047570998e-05 1099999.8806690201 --512.37497949419901 -2.0828028085182401e-05 1099999.8806690299 --512.37502531019197 2.9868902607941001e-05 1099999.8806690101 --512.37498379995100 3.9936243402746497e-05 1099999.8806690299 --512.37505297612302 4.9078994042400801e-05 1099999.8806690001 --512.37496774297904 3.8923441380233401e-05 1099999.8806690399 --512.37507192418298 4.1799542079268901e-05 1099999.8806689901 --512.37492067321102 1.9595711490637698e-05 1099999.8806690599 --512.37504134004496 7.1967928922580604e-05 1099999.8806690001 --512.37484259370206 3.0334064036436901e-05 1099999.8806690900 --512.37494359469395 0.00011935926382438200 1099999.8806690499 --512.37480074005805 9.6072455501843598e-05 1099999.8806691100 --512.37483841643598 0.00023831315566712899 1099999.8806691000 --512.37484016864005 0.00053418662236430904 1099999.8806690900 --512.37468913297698 0.0014061130072901000 1099999.8806691701 --512.37458556071499 0.0036835260004433601 1099999.8806692101 --512.37375689671205 0.0090921225563809997 1099999.8806696001 --512.37217869786605 0.022773806053142599 1099999.8806703300 --512.36813818279199 0.056549327629230400 1099999.8806722199 --512.35879434737797 0.14096912864632399 1099999.8806765601 --512.33818813143398 0.35122206579331600 1099999.8806861099 --512.29221202246003 0.87440775746111599 1099999.8807072300 --512.19307894301699 2.1740912034587798 1099999.8807516000 --511.98266166574302 5.3984993675390900 1099999.8808384500 --511.54509761349902 13.385872904400101 1099999.8809738299 --510.65696811554000 33.143619709048799 1099999.8809686101 --508.89630551100902 81.950451848528900 1099999.8792312101 --505.49249081710201 202.36223880096500 1099999.8652394800 --499.08282967321998 499.08282967321799 1099999.7735602800 --487.33480089427701 1229.4596298924300 1099999.2049696301 --466.38819858088499 3025.2496788486301 1099995.7410583100 --430.07083172198799 7434.3952887053902 1099974.7928047101 --368.88774080354102 18235.327548974299 1099848.7790378300 --269.01893890968302 44569.840423817303 1099096.6549641599 --112.52868469699800 108053.08187546099 1094680.0988574300 - 116.34596073455199 256381.55550723200 1069704.8585751599 - 395.92100159949098 569832.13216431299 940899.13614565099 - 588.65734351482297 -568888.58756020002 941469.82342839497 - 22.906474370018898 -255602.00112930001 1069891.4040658500 --443.83872732059001 -107545.32155349400 1094730.0154920099 --762.32538647912702 -44271.296391663796 1099108.4892656400 --965.59959062894302 -18069.878628891100 1099851.1477030700 --1090.1558362345500 -7346.1493202294696 1099974.9295554000 --1163.8750305940100 -2979.3942081052101 1099995.3493561100 --1206.0763927412399 -1206.0763927412499 1099998.6776171499 --1229.4596298924400 -487.33480089427201 1099999.2049696301 --1242.0128257548299 -196.53659385435401 1099999.2812622699 --1248.5514814685400 -79.097823056796003 1099999.2885737401 --1251.8605071807301 -31.764749477062601 1099999.2871980700 --1253.4900274301201 -12.728364178792800 1099999.2857273801 --1254.2724727472300 -5.0892998288058804 1099999.2848973400 --1254.6388922451399 -2.0308734742115999 1099999.2844893700 --1254.8064515592400 -0.80890237026997003 1099999.2842998200 --1254.8816857001500 -0.32176460079365299 1099999.2842142400 --1254.9145305517500 -0.12781715853069900 1099999.2841768099 --1254.9288172655299 -0.050787228485200703 1099999.2841605200 --1254.9348534814701 -0.020239190963573898 1099999.2841536400 --1254.9373106300100 -0.0081832741977411801 1099999.2841508300 --1254.9383765893299 -0.0033389526418718700 1099999.2841496200 --1254.9386873667600 -0.0014155300035741301 1099999.2841492600 --1254.9389023943600 -0.00054365161170293400 1099999.2841490200 --1254.9387511062801 -0.00023495215622282401 1099999.2841491899 --1254.9389092991901 -2.5112685463032299e-05 1099999.2841490100 --1254.9386671046500 -1.1178673280421700e-05 1099999.2841492901 --1254.9388528101999 4.9774034803970703e-06 1099999.2841490700 --1254.9386622346401 -2.1279050711634802e-06 1099999.2841492901 --1254.9388318237300 -4.6158394756771800e-05 1099999.2841491001 --1254.9387265806999 -4.2471131919452799e-05 1099999.2841492200 --1254.9388334907301 -9.7218473935670700e-05 1099999.2841491001 --1254.9388175146901 -6.4944948546965495e-05 1099999.2841491101 --1254.9388571447600 -0.00010718754208784800 1099999.2841490700 --1254.9388963563399 -2.9844545271159500e-05 1099999.2841490200 --1254.9388875776699 -5.2595962490513397e-05 1099999.2841490300 --1254.9389335131100 5.8302493622022101e-05 1099999.2841489799 --1254.9389075457900 4.9733353782641799e-06 1099999.2841490100 --1254.9389344356400 8.9919827281158295e-05 1099999.2841489799 --1254.9389221072699 -2.5913979497172899e-05 1099999.2841490000 --1254.9389221072699 2.5913979569431199e-05 1099999.2841490000 --1254.9389344356300 -8.9919828342834406e-05 1099999.2841489799 --1254.9389075457900 -4.9733314503081301e-06 1099999.2841490100 --1254.9389335131100 -5.8302491311977401e-05 1099999.2841489799 --1254.9388875776699 5.2595959170805499e-05 1099999.2841490300 --1254.9388963563399 2.9844543880019801e-05 1099999.2841490200 --1254.9388571447500 0.00010718754293617000 1099999.2841490700 --1254.9388175146901 6.4944948139723994e-05 1099999.2841491101 --1254.9388334907201 9.7218478242200605e-05 1099999.2841491001 --1254.9387265806899 4.2471127800301599e-05 1099999.2841492200 --1254.9388318237300 4.6158391751306803e-05 1099999.2841491001 --1254.9386622346201 2.1279071476223000e-06 1099999.2841492901 --1254.9388528101999 -4.9774035003596303e-06 1099999.2841490700 --1254.9386671046500 1.1178672717126999e-05 1099999.2841492901 --1254.9389092992001 2.5112683095826001e-05 1099999.2841490100 --1254.9387511062700 0.00023495215844740301 1099999.2841491899 --1254.9389023943600 0.00054365161251597504 1099999.2841490200 --1254.9386873667499 0.0014155300016202600 1099999.2841492600 --1254.9383765893399 0.0033389526466639499 1099999.2841496200 --1254.9373106300100 0.0081832742027873901 1099999.2841508300 --1254.9348534814601 0.020239190957165198 1099999.2841536400 --1254.9288172655199 0.050787228484440401 1099999.2841605200 --1254.9145305517600 0.12781715853410100 1099999.2841768099 --1254.8816857001500 0.32176460079270502 1099999.2842142400 --1254.8064515592300 0.80890237026996004 1099999.2842998200 --1254.6388922451499 2.0308734742084602 1099999.2844893700 --1254.2724727472300 5.0892998288038198 1099999.2848973400 --1253.4900274301201 12.728364178796401 1099999.2857273801 --1251.8605071807201 31.764749477065202 1099999.2871980700 --1248.5514814685400 79.097823056796599 1099999.2885737401 --1242.0128257548299 196.53659385435401 1099999.2812622699 --1229.4596298924400 487.33480089427201 1099999.2049696301 --1206.0763927412399 1206.0763927412399 1099998.6776171499 --1163.8750305940200 2979.3942081051900 1099995.3493561100 --1090.1558362345399 7346.1493202294696 1099974.9295554000 --965.59959062895803 18069.878628891100 1099851.1477030700 --762.32538647912497 44271.296391663898 1099108.4892656400 --443.83872732060701 107545.32155349400 1094730.0154920099 - 22.906474370044400 255602.00112930001 1069891.4040658500 - 588.65734351488197 568888.58756020002 941469.82342839497 - 471.54601353317599 -566750.38216437504 942758.60216753895 --574.89580371044303 -253914.20652139801 1070293.0651094699 --1469.9800051829600 -106497.75808955300 1094831.5243363599 --2093.3396418229199 -43680.464121103803 1099130.3994446299 --2497.6224895647301 -17753.134104737299 1099853.8939838100 --2747.5229292244499 -7181.4371892353402 1099973.1260706601 --2895.4180510065498 -2895.4180510065598 1099992.3786593301 --2979.3942081052001 -1163.8750305940100 1099995.3493561100 --3025.2496788486201 -466.38819858088902 1099995.7410583100 --3049.3929388975098 -186.26682963525801 1099995.7574951700 --3061.6816609684201 -74.128646129470994 1099995.7366328100 --3067.7432432310602 -29.394691086487800 1099995.7218495600 --3070.6464507933902 -11.615088467105901 1099995.7140805000 --3071.9990774051598 -4.5751119480564801 1099995.7103556099 --3072.6132968070301 -1.7971584307769899 1099995.7086481301 --3072.8851592193600 -0.70461630617299997 1099995.7078899499 --3073.0024363799598 -0.27591488275352399 1099995.7075625099 --3073.0522226251801 -0.10800494168903800 1099995.7074234500 --3073.0725729324299 -0.042344263845079499 1099995.7073666099 --3073.0809462038301 -0.016589145722337599 1099995.7073432100 --3073.0844304094599 -0.0065831304093589204 1099995.7073334800 --3073.0855312342101 -0.0026989839915167999 1099995.7073304099 --3073.0862960807699 -0.0011943717127360701 1099995.7073282700 --3073.0862382754199 -0.00059668359697951799 1099995.7073284299 --3073.0865005925998 -0.00028366089682888598 1099995.7073277000 --3073.0863085950300 -0.00017284710881192500 1099995.7073282299 --3073.0864117889901 -2.7954756977777001e-05 1099995.7073279400 --3073.0862786294301 -3.0799222959572003e-05 1099995.7073283200 --3073.0863041342000 4.4324236296801900e-05 1099995.7073282499 --3073.0862401132299 -2.0132436132341599e-05 1099995.7073284199 --3073.0862407832301 8.0615092570152295e-06 1099995.7073284199 --3073.0862380159201 -6.4563455474312697e-05 1099995.7073284299 --3073.0862390858601 -4.3512755652864303e-05 1099995.7073284299 --3073.0862846948498 -9.0009196902014101e-05 1099995.7073283000 --3073.0862822399899 -4.3718800410683998e-05 1099995.7073283100 --3073.0863386306701 -4.8156120922302300e-05 1099995.7073281500 --3073.0863245582000 1.5237852576088501e-05 1099995.7073281901 --3073.0863652399898 1.3916852332556600e-05 1099995.7073280700 --3073.0863531225100 4.2122669779062102e-05 1099995.7073281100 --3073.0863686301500 3.5386860707095999e-06 1099995.7073280700 --3073.0863686301500 -3.5386841923583902e-06 1099995.7073280700 --3073.0863531225100 -4.2122675199394897e-05 1099995.7073281100 --3073.0863652399798 -1.3916856119588801e-05 1099995.7073280700 --3073.0863245581900 -1.5237848802314700e-05 1099995.7073281901 --3073.0863386306701 4.8156127258647397e-05 1099995.7073281500 --3073.0862822399899 4.3718795923913600e-05 1099995.7073283100 --3073.0862846948498 9.0009195449863405e-05 1099995.7073283000 --3073.0862390858601 4.3512756129034303e-05 1099995.7073284299 --3073.0862380159101 6.4563449965855495e-05 1099995.7073284299 --3073.0862407832201 -8.0615034240640301e-06 1099995.7073284199 --3073.0862401132099 2.0132429744785899e-05 1099995.7073284199 --3073.0863041342100 -4.4324238843663798e-05 1099995.7073282499 --3073.0862786294201 3.0799235009691403e-05 1099995.7073283200 --3073.0864117889801 2.7954759409009601e-05 1099995.7073279400 --3073.0863085950200 0.00017284710263868201 1099995.7073282299 --3073.0865005925898 0.00028366089472526299 1099995.7073277000 --3073.0862382754099 0.00059668359933177798 1099995.7073284299 --3073.0862960807699 0.0011943717193897299 1099995.7073282700 --3073.0855312342101 0.0026989839940566901 1099995.7073304099 --3073.0844304094599 0.0065831304000912296 1099995.7073334800 --3073.0809462038101 0.016589145719133200 1099995.7073432100 --3073.0725729324499 0.042344263849607697 1099995.7073666099 --3073.0522226251801 0.10800494169796500 1099995.7074234500 --3073.0024363799498 0.27591488274564102 1099995.7075625099 --3072.8851592193600 0.70461630617199600 1099995.7078899499 --3072.6132968070201 1.7971584307832900 1099995.7086481301 --3071.9990774051698 4.5751119480539701 1099995.7103556099 --3070.6464507933902 11.615088467107400 1099995.7140805000 --3067.7432432310702 29.394691086492699 1099995.7218495600 --3061.6816609684101 74.128646129471406 1099995.7366328100 --3049.3929388975098 186.26682963525499 1099995.7574951700 --3025.2496788486101 466.38819858088800 1099995.7410583100 --2979.3942081052001 1163.8750305940100 1099995.3493561100 --2895.4180510065398 2895.4180510065498 1099992.3786593301 --2747.5229292244599 7181.4371892353302 1099973.1260706601 --2497.6224895647301 17753.134104737201 1099853.8939838100 --2093.3396418229800 43680.464121103803 1099130.3994446299 --1469.9800051829300 106497.75808955300 1094831.5243363599 --574.89580371037903 253914.20652139900 1070293.0651094699 - 471.54601353314001 566750.38216437504 942758.60216753895 --1126.5910102491600 -562234.66909616999 945458.04119432799 --2825.1361595308199 -250503.08151533501 1071093.0047185400 --4424.1713034656204 -104473.43719866400 1095018.5969325700 --5601.5422506380201 -42579.920349020700 1099161.3044078101 --6391.9681731885803 -17178.694298120201 1099847.2781277800 --6887.9997576209598 -6887.9997576209798 1099956.8677537700 --7181.4371892353402 -2747.5229292244499 1099973.1260706601 --7346.1493202294696 -1090.1558362345500 1099974.9295554000 --7434.3952887053902 -430.07083172200100 1099974.7928047101 --7479.7480950394402 -168.61723887291501 1099974.5564951301 --7502.1991370091800 -65.684665300567502 1099974.4145631900 --7512.9395358972197 -25.424306548379700 1099974.3429249299 --7517.9177162713904 -9.7828583506738909 1099974.3091624901 --7520.1569389283804 -3.7456042194000001 1099974.2938930800 --7521.1362786820500 -1.4293392462881100 1099974.2872026800 --7521.5528346868095 -0.54459280829449097 1099974.2843551701 --7521.7250528154900 -0.20784697523744200 1099974.2831776501 --7521.7945563205203 -0.079587852924738106 1099974.2827023901 --7521.8214912767799 -0.030661433591618700 1099974.2825182099 --7521.8319168626304 -0.011964870251679000 1099974.2824469199 --7521.8356247869897 -0.0046035470964752596 1099974.2824215600 --7521.8371369164597 -0.0019056302588892301 1099974.2824112200 --7521.8375911673402 -0.00075039206522257203 1099974.2824081201 --7521.8378217850304 -0.00041734170272732002 1099974.2824065399 --7521.8379440027302 -0.00023156033682416701 1099974.2824057001 --7521.8379281866801 -0.00018492371361643700 1099974.2824058100 --7521.8380687888903 -0.00011751984585936700 1099974.2824048500 --7521.8379766440803 -7.4541259932533400e-05 1099974.2824054800 --7521.8380968811598 -5.9136470244285098e-05 1099974.2824046600 --7521.8380046909197 -1.2305863788608700e-05 1099974.2824052901 --7521.8380618493102 -4.0697633062843101e-05 1099974.2824049001 --7521.8380207561804 -6.5131816554335104e-06 1099974.2824051799 --7521.8380401765598 -4.6766997103175999e-05 1099974.2824050500 --7521.8380589620001 -1.4886995859552300e-05 1099974.2824049201 --7521.8380569980300 -4.1278420132070803e-05 1099974.2824049301 --7521.8380913221499 6.1421212808648403e-06 1099974.2824047001 --7521.8380727777303 2.1178729153825300e-06 1099974.2824048200 --7521.8380976650096 4.2251323706614898e-05 1099974.2824046500 --7521.8380858141900 2.1756971493115801e-05 1099974.2824047301 --7521.8380969630398 2.2916033526524298e-05 1099974.2824046600 --7521.8380969630398 -2.2916032480159501e-05 1099974.2824046600 --7521.8380858141900 -2.1756977399028899e-05 1099974.2824047301 --7521.8380976650096 -4.2251332295214700e-05 1099974.2824046500 --7521.8380727777403 -2.1178712189421599e-06 1099974.2824048200 --7521.8380913221499 -6.1421189682170897e-06 1099974.2824047001 --7521.8380569980400 4.1278428372211997e-05 1099974.2824049301 --7521.8380589620001 1.4886998232353800e-05 1099974.2824049201 --7521.8380401765498 4.6766986684491102e-05 1099974.2824050500 --7521.8380207561804 6.5131751813349196e-06 1099974.2824051799 --7521.8380618492902 4.0697625240215003e-05 1099974.2824049001 --7521.8380046909197 1.2305868234826501e-05 1099974.2824052901 --7521.8380968811698 5.9136480296719698e-05 1099974.2824046600 --7521.8379766440603 7.4541257698198504e-05 1099974.2824054800 --7521.8380687888903 0.00011751984482587400 1099974.2824048500 --7521.8379281866501 0.00018492370760626000 1099974.2824058100 --7521.8379440027502 0.00023156033545663899 1099974.2824057001 --7521.8378217850304 0.00041734171588455400 1099974.2824065399 --7521.8375911673502 0.00075039206805315795 1099974.2824081201 --7521.8371369164597 0.0019056302569443800 1099974.2824112200 --7521.8356247869897 0.0046035470923771801 1099974.2824215600 --7521.8319168626404 0.011964870264370301 1099974.2824469199 --7521.8214912767799 0.030661433600561401 1099974.2825182099 --7521.7945563205003 0.079587852909652701 1099974.2827023901 --7521.7250528154900 0.20784697524196799 1099974.2831776501 --7521.5528346868005 0.54459280829165502 1099974.2843551701 --7521.1362786820600 1.4293392462922001 1099974.2872026800 --7520.1569389283704 3.7456042194077099 1099974.2938930800 --7517.9177162714204 9.7828583506728393 1099974.3091624901 --7512.9395358972297 25.424306548377800 1099974.3429249299 --7502.1991370092001 65.684665300563594 1099974.4145631900 --7479.7480950394402 168.61723887290901 1099974.5564951301 --7434.3952887054002 430.07083172199901 1099974.7928047101 --7346.1493202294696 1090.1558362345600 1099974.9295554000 --7181.4371892353402 2747.5229292244499 1099973.1260706601 --6887.9997576209598 6887.9997576209598 1099956.8677537700 --6391.9681731885803 17178.694298120201 1099847.2781277800 --5601.5422506380501 42579.920349020802 1099161.3044078101 --4424.1713034656204 104473.43719866400 1095018.5969325700 --2825.1361595308699 250503.08151533501 1071093.0047185500 --1126.5910102491800 562234.66909616999 945458.04119432799 --7679.4843639338396 -553484.35399110895 950576.71726533899 --9864.6579728675606 -244186.94871026301 1072508.9382390501 --12503.269935447001 -100877.04548248200 1095293.3351096599 --14670.826329904199 -40680.305245796699 1099149.6165763400 --16202.377889524900 -16202.377889524900 1099761.3222429000 --17178.694298120201 -6391.9681731885703 1099847.2781277800 --17753.134104737299 -2497.6224895647401 1099853.8939838100 --18069.878628891100 -965.59959062896201 1099851.1477030700 --18235.327548974299 -368.88774080355000 1099848.7790378300 --18317.824841091799 -139.10264297599400 1099847.4612161200 --18357.307175600399 -51.737688564953402 1099846.8105133900 --18375.513393277499 -18.978860229440201 1099846.5075397301 --18383.623338977101 -6.8723085910669299 1099846.3721564501 --18387.118790335098 -2.4622009501597000 1099846.3137441201 --18388.577201452699 -0.87672683176837296 1099846.2893639901 --18389.166340708402 -0.31262109805749200 1099846.2795141900 --18389.396518248999 -0.11269021101016100 1099846.2756656900 --18389.482813988900 -0.041653909413204203 1099846.2742228301 --18389.514197501299 -0.015900155277610999 1099846.2736980901 --18389.524762349600 -0.0063108669325175797 1099846.2735214501 --18389.528141802599 -0.0026458783489976198 1099846.2734649400 --18389.529272772801 -0.0010644430828043901 1099846.2734460300 --18389.529436684901 -0.00049939111275879499 1099846.2734432900 --18389.529697758899 -0.00021060846423041600 1099846.2734389300 --18389.529677396898 -0.00012053628620156500 1099846.2734392700 --18389.529875204498 -6.9531724772122495e-05 1099846.2734359601 --18389.529907213899 -6.8388453009956299e-05 1099846.2734354299 --18389.530051879799 -4.0772764045574999e-05 1099846.2734330101 --18389.530087884799 -7.3305864844753501e-05 1099846.2734324001 --18389.530137084701 -2.3296838168628499e-05 1099846.2734315800 --18389.530155678400 -8.4782865783726398e-05 1099846.2734312699 --18389.530145892699 4.1599365144923601e-07 1099846.2734314301 --18389.530187769800 -7.7837430982576796e-05 1099846.2734307300 --18389.530166869201 2.0174080985678599e-05 1099846.2734310799 --18389.530219315198 -6.5225169576318902e-05 1099846.2734302101 --18389.530177787201 4.0967067610470502e-05 1099846.2734308999 --18389.530208002700 -3.2037026517175898e-05 1099846.2734304001 --18389.530168751699 7.0127489074178794e-05 1099846.2734310499 --18389.530189684199 -1.4413011014943700e-05 1099846.2734306999 --18389.530179466499 5.3674475194370603e-05 1099846.2734308699 --18389.530179466499 -5.3674483256433502e-05 1099846.2734308699 --18389.530189684199 1.4413004719638601e-05 1099846.2734306999 --18389.530168751699 -7.0127467324178203e-05 1099846.2734310499 --18389.530208002700 3.2037029620324400e-05 1099846.2734304001 --18389.530177787201 -4.0967077059882200e-05 1099846.2734308999 --18389.530219315300 6.5225179223970300e-05 1099846.2734302101 --18389.530166869201 -2.0174095052747601e-05 1099846.2734310799 --18389.530187769800 7.7837425018124001e-05 1099846.2734307300 --18389.530145892699 -4.1599588168691900e-07 1099846.2734314301 --18389.530155678400 8.4782870368374096e-05 1099846.2734312699 --18389.530137084701 2.3296855255998301e-05 1099846.2734315800 --18389.530087884799 7.3305842819782800e-05 1099846.2734324001 --18389.530051879901 4.0772757118792697e-05 1099846.2734330101 --18389.529907214001 6.8388442347859496e-05 1099846.2734354299 --18389.529875204498 6.9531739011268097e-05 1099846.2734359601 --18389.529677396898 0.00012053630378951100 1099846.2734392700 --18389.529697758899 0.00021060846507229099 1099846.2734389300 --18389.529436684901 0.00049939112669029103 1099846.2734432900 --18389.529272772801 0.0010644430697103800 1099846.2734460300 --18389.528141802599 0.0026458783440937001 1099846.2734649400 --18389.524762349600 0.0063108669247807997 1099846.2735214501 --18389.514197501299 0.015900155262272401 1099846.2736980901 --18389.482813988900 0.041653909414224297 1099846.2742228301 --18389.396518248999 0.11269021102252200 1099846.2756656900 --18389.166340708402 0.31262109806906402 1099846.2795141900 --18388.577201452699 0.87672683177142696 1099846.2893639901 --18387.118790335098 2.4622009501716300 1099846.3137441201 --18383.623338977101 6.8723085910820503 1099846.3721564501 --18375.513393277499 18.978860229432900 1099846.5075397301 --18357.307175600399 51.737688564941799 1099846.8105133900 --18317.824841091900 139.10264297598800 1099847.4612161200 --18235.327548974299 368.88774080355000 1099848.7790378300 --18069.878628891100 965.59959062895803 1099851.1477030700 --17753.134104737299 2497.6224895647301 1099853.8939838100 --17178.694298120201 6391.9681731885803 1099847.2781277800 --16202.377889524900 16202.377889524900 1099761.3222429000 --14670.826329904199 40680.305245796699 1099149.6165763400 --12503.269935447001 100877.04548248200 1095293.3351096599 --9864.6579728676297 244186.94871026301 1072508.9382390501 --7679.4843639338897 553484.35399110895 950576.71726533899 --28309.924298523802 -538415.14051355200 958805.34241940104 --29717.441485535699 -233869.41533837101 1074440.3055734800 --33756.246881396102 -95205.303710472901 1095352.2109083801 --37720.436059344902 -37720.436059344902 1098705.7556083801 --40680.305245796699 -14670.826329904199 1099149.6165763400 --42579.920349020700 -5601.5422506380401 1099161.3044078101 --43680.464121103803 -2093.3396418229800 1099130.3994446299 --44271.296391663898 -762.32538647913202 1099108.4892656400 --44569.840423817303 -269.01893890968802 1099096.6549641599 --44713.216735599402 -91.327319714752207 1099090.8606245799 --44779.066405362799 -29.521394446560699 1099088.1831501699 --44808.097482573598 -8.9428221054886397 1099087.0003416601 --44820.406802995603 -2.4690018039887498 1099086.4984740401 --44825.427794789699 -0.58619736610854101 1099086.2937106800 --44827.394901604297 -0.10096219141702700 1099086.2134820600 --44828.132527335598 -0.0016697210931910201 1099086.1833969699 --44828.395411715101 0.0078644853391797997 1099086.1726747400 --44828.483253325401 0.0034101014096461499 1099086.1690919399 --44828.510168788001 0.00024852897177183599 1099086.1679941399 --44828.517147009399 -0.00075397339961893897 1099086.1677095201 --44828.518541328798 -0.00083290919920924497 1099086.1676526500 --44828.518315706599 -0.00053651288622032396 1099086.1676618501 --44828.518177038502 -0.00032196139152251602 1099086.1676675100 --44828.517937960300 -0.00012931359451772700 1099086.1676772600 --44828.517921836799 -4.4565161247608098e-05 1099086.1676779201 --44828.517964554900 2.8589610374923700e-05 1099086.1676761799 --44828.518011269902 3.6277832541159200e-05 1099086.1676742700 --44828.518179756204 5.2726764731688398e-05 1099086.1676674001 --44828.518195817698 3.0672120471871399e-06 1099086.1676667400 --44828.518318931303 -2.2884147341059200e-06 1099086.1676617200 --44828.518293684101 -3.0651841635072103e-05 1099086.1676627500 --44828.518362282201 -3.0452445385631200e-05 1099086.1676599500 --44828.518373574399 -1.4593505187052400e-05 1099086.1676594899 --44828.518434801103 -3.4439189537101299e-05 1099086.1676570000 --44828.518459652099 -4.8807108527570498e-06 1099086.1676559800 --44828.518471246200 -4.0769502695167003e-05 1099086.1676555099 --44828.518462669897 1.5213451088236000e-05 1099086.1676558601 --44828.518453170298 -1.5730148425914900e-05 1099086.1676562501 --44828.518455861602 4.0868143236920699e-05 1099086.1676561399 --44828.518461090302 -1.6944271747692300e-05 1099086.1676559199 --44828.518461090403 1.6944258840030900e-05 1099086.1676559199 --44828.518455861602 -4.0868139000379697e-05 1099086.1676561399 --44828.518453170298 1.5730177932615301e-05 1099086.1676562501 --44828.518462669897 -1.5213390571600899e-05 1099086.1676558601 --44828.518471246200 4.0769512808268101e-05 1099086.1676555099 --44828.518459652099 4.8806734828433601e-06 1099086.1676559800 --44828.518434801197 3.4439161735040101e-05 1099086.1676570000 --44828.518373574399 1.4593475334678899e-05 1099086.1676594899 --44828.518362282099 3.0452436233293499e-05 1099086.1676599500 --44828.518293684101 3.0651836760370101e-05 1099086.1676627500 --44828.518318931201 2.2883876234154202e-06 1099086.1676617200 --44828.518195817698 -3.0671673753356499e-06 1099086.1676667400 --44828.518179756204 -5.2726701167812698e-05 1099086.1676674001 --44828.518011269902 -3.6277879771616999e-05 1099086.1676742700 --44828.517964554900 -2.8589645226629799e-05 1099086.1676761799 --44828.517921836697 4.4565182593085702e-05 1099086.1676779201 --44828.517937960300 0.00012931359192918000 1099086.1676772600 --44828.518177038597 0.00032196140595842199 1099086.1676675100 --44828.518315706599 0.00053651288760705399 1099086.1676618501 --44828.518541328798 0.00083290914227107801 1099086.1676526500 --44828.517147009399 0.00075397339783524902 1099086.1677095201 --44828.510168788001 -0.00024852893477946599 1099086.1679941399 --44828.483253325503 -0.0034101013900459500 1099086.1690919399 --44828.395411715101 -0.0078644853406189992 1099086.1726747400 --44828.132527335598 0.0016697211037079900 1099086.1833969699 --44827.394901604297 0.10096219138899699 1099086.2134820600 --44825.427794789699 0.58619736610801798 1099086.2937106800 --44820.406802995603 2.4690018040126498 1099086.4984740401 --44808.097482573598 8.9428221054816301 1099087.0003416601 --44779.066405362799 29.521394446593199 1099088.1831501699 --44713.216735599402 91.327319714742202 1099090.8606245799 --44569.840423817303 269.01893890965903 1099096.6549641599 --44271.296391663796 762.32538647911099 1099108.4892656400 --43680.464121103803 2093.3396418230100 1099130.3994446299 --42579.920349020700 5601.5422506380501 1099161.3044078101 --40680.305245796699 14670.826329904199 1099149.6165763400 --37720.436059344902 37720.436059344902 1098705.7556083801 --33756.246881396000 95205.303710473003 1095352.2109083801 --29717.441485535699 233869.41533837101 1074440.3055734800 --28309.924298523802 538415.14051355200 958805.34241940000 --84686.423861058996 -516972.83114608598 967247.28041511006 --81823.679189841801 -220293.14511020100 1074604.9579921400 --87858.202385179495 -87858.202385179393 1092960.1422500701 --95205.303710473003 -33756.246881396102 1095352.2109083801 --100877.04548248200 -12503.269935447101 1095293.3351096599 --104473.43719866400 -4424.1713034656204 1095018.5969325700 --106497.75808955300 -1469.9800051829100 1094831.5243363599 --107545.32155349400 -443.83872732063401 1094730.0154920099 --108053.08187546200 -112.52868469702500 1094680.0988574300 --108286.04538144900 -17.390582485718699 1094657.0842383499 --108387.80530071299 4.1011902100820103 1094647.0132628500 --108430.22653964300 5.7872784899239500 1094642.8120346200 --108447.09563824401 3.7503483808409501 1094641.1409377800 --108453.47003991299 1.9430522079375900 1094640.5094059501 --108455.73927964800 0.88752617436894199 1094640.2845759499 --108456.48692050000 0.36843131539607998 1094640.2105005700 --108456.70614902901 0.13929273134379300 1094640.1887795301 --108456.75779230900 0.047231092263511999 1094640.1836627300 --108456.76297030800 0.013487418488620799 1094640.1831497001 --108456.75913676800 0.0025377642625997298 1094640.1835295199 --108456.75535104101 -0.00020539160714813399 1094640.1839046101 --108456.75305770400 -0.00065796171813489702 1094640.1841318400 --108456.75186881200 -0.00040984359693800799 1094640.1842496300 --108456.75125848800 -0.00020314946453330800 1094640.1843101000 --108456.75094122200 -3.7852393683885997e-05 1094640.1843415401 --108456.75086249100 7.4595018069819905e-05 1094640.1843493399 --108456.75081922900 0.00013273231373095101 1094640.1843536200 --108456.75092014100 9.8729296885428198e-05 1094640.1843436300 --108456.75094179400 0.00013077975636032499 1094640.1843414800 --108456.75101476299 -7.1904568308844696e-06 1094640.1843342499 --108456.75099806501 9.4186008741944501e-05 1094640.1843359000 --108456.75106543100 -4.4031557104647698e-05 1094640.1843292301 --108456.75110666300 0.00011831089965119800 1094640.1843251400 --108456.75122494600 -4.0557995558414101e-05 1094640.1843134300 --108456.75127144200 9.1446165509694103e-05 1094640.1843088199 --108456.75132053001 -7.5142716673120202e-05 1094640.1843039601 --108456.75129831499 6.1157641074026598e-05 1094640.1843061601 --108456.75130777300 -5.6584080443073602e-05 1094640.1843052199 --108456.75131118001 7.7753383797116998e-05 1094640.1843048800 --108456.75133247100 -5.0538408565735398e-05 1094640.1843027701 --108456.75133247100 5.0538464150999397e-05 1094640.1843027701 --108456.75131118001 -7.7753430055425000e-05 1094640.1843048800 --108456.75130777300 5.6584094627686802e-05 1094640.1843052199 --108456.75129831499 -6.1157650302702906e-05 1094640.1843061601 --108456.75132053001 7.5142748201404404e-05 1094640.1843039601 --108456.75127144200 -9.1446089318255000e-05 1094640.1843088199 --108456.75122494600 4.0557936440175300e-05 1094640.1843134300 --108456.75110666300 -0.00011831104188144600 1094640.1843251400 --108456.75106543100 4.4031556351321599e-05 1094640.1843292301 --108456.75099806501 -9.4186004364304500e-05 1094640.1843359000 --108456.75101476299 7.1904254139314800e-06 1094640.1843342499 --108456.75094179400 -0.00013077971268613301 1094640.1843414800 --108456.75092014100 -9.8729232452914904e-05 1094640.1843436300 --108456.75081922900 -0.00013273226660676300 1094640.1843536200 --108456.75086249100 -7.4595096353985500e-05 1094640.1843493399 --108456.75094122200 3.7852355224038799e-05 1094640.1843415401 --108456.75125848800 0.00020314959539812901 1094640.1843101000 --108456.75186881200 0.00040984365321559301 1094640.1842496300 --108456.75305770400 0.00065796164011882100 1094640.1841318400 --108456.75535104101 0.00020539153920611999 1094640.1839046101 --108456.75913676900 -0.0025377642558164601 1094640.1835295199 --108456.76297030800 -0.013487418418845300 1094640.1831497001 --108456.75779230900 -0.047231092273365902 1094640.1836627300 --108456.70614902901 -0.13929273139109799 1094640.1887795301 --108456.48692050000 -0.36843131541836899 1094640.2105005700 --108455.73927964800 -0.88752617432397596 1094640.2845759499 --108453.47003991299 -1.9430522078544199 1094640.5094059501 --108447.09563824401 -3.7503483808863902 1094641.1409377800 --108430.22653964300 -5.7872784899836800 1094642.8120346200 --108387.80530071299 -4.1011902101063802 1094647.0132628500 --108286.04538144900 17.390582485757200 1094657.0842383499 --108053.08187546200 112.52868469696701 1094680.0988574300 --107545.32155349400 443.83872732058302 1094730.0154920099 --106497.75808955300 1469.9800051829500 1094831.5243363599 --104473.43719866400 4424.1713034656204 1095018.5969325700 --100877.04548248200 12503.269935447101 1095293.3351096599 --95205.303710472901 33756.246881396102 1095352.2109083801 --87858.202385179393 87858.202385179393 1092960.1422500701 --81823.679189841700 220293.14511020100 1074604.9579921400 --84686.423861058996 516972.83114608598 967247.28041511006 --222091.36909522599 -497208.51751455298 955750.55003091099 --210241.42783246501 -210241.42783246501 1059054.8069131901 --220293.14511020100 -81823.679189841801 1074604.9579921400 --233869.41533837101 -29717.441485535699 1074440.3055734800 --244186.94871026301 -9864.6579728676206 1072508.9382390501 --250503.08151533501 -2825.1361595308699 1071093.0047185500 --253914.20652139900 -574.89580371036595 1070293.0651094699 --255602.00112930001 22.906474370055601 1069891.4040658500 --256381.55550723200 116.34596073463599 1069704.8585751599 --256720.86050067499 88.930714368238498 1069623.4813592699 --256860.54241596299 51.117837445615400 1069589.9490630699 --256914.86176917201 25.626353917002600 1069576.9038014100 --256934.67468384601 11.736982198787400 1069572.1447416900 --256941.33966868601 5.0006042956682499 1069570.5436969800 --256943.32862485401 1.9925942827509200 1069570.0659008799 --256943.79939859500 0.73944471480308605 1069569.9528081701 --256943.84442139801 0.25153096364352301 1069569.9419925199 --256943.80344049199 0.075128325085810105 1069569.9518374300 --256943.76454259900 0.017410155084866000 1069569.9611819100 --256943.74104813300 0.0011936104207787199 1069569.9668260100 --256943.72918822200 -0.0019614156772641599 1069569.9696751300 --256943.72379700901 -0.0016752206305101799 1069569.9709702600 --256943.72149191899 -0.0010865246946030499 1069569.9715240200 --256943.72049701901 -0.00043949366583654302 1069569.9717630199 --256943.72011626299 -0.00024450146808529302 1069569.9718544900 --256943.71988771300 8.5075170525190005e-05 1069569.9719094001 --256943.71994872100 8.5906346984578806e-05 1069569.9718947399 --256943.71989812099 0.00018219353812805799 1069569.9719068999 --256943.71999688199 8.9198059276803296e-05 1069569.9718831701 --256943.71988307699 7.7686749684936500e-05 1069569.9719105100 --256943.71987001199 2.6106216592423600e-05 1069569.9719136499 --256943.71979478901 0.00010156039251073200 1069569.9719317199 --256943.71986022301 7.1468914518752597e-05 1069569.9719159999 --256943.71993696599 0.00015979767120897299 1069569.9718975599 --256943.72000685200 3.6204265409183800e-06 1069569.9718807701 --256943.72001638700 9.3205982974280002e-05 1069569.9718784799 --256943.71996960399 -8.4679199704707300e-05 1069569.9718897201 --256943.71995093700 0.00010687166590582100 1069569.9718942100 --256943.71995565799 -6.9389370329524895e-05 1069569.9718930700 --256943.71998433000 0.00011455878347081600 1069569.9718861801 --256943.71998433000 -0.00011455874859239501 1069569.9718861801 --256943.71995565799 6.9389375022554497e-05 1069569.9718930700 --256943.71995093700 -0.00010687164564503600 1069569.9718942100 --256943.71996960399 8.4679253277720703e-05 1069569.9718897201 --256943.72001638700 -9.3206004717156097e-05 1069569.9718784799 --256943.72000685200 -3.6205213667338000e-06 1069569.9718807701 --256943.71993696500 -0.00015979778732394000 1069569.9718975599 --256943.71986022199 -7.1468890405484303e-05 1069569.9719159999 --256943.71979478901 -0.00010156027612427900 1069569.9719317199 --256943.71987001199 -2.6106163331329100e-05 1069569.9719136499 --256943.71988307699 -7.7686825806966498e-05 1069569.9719105100 --256943.71999688199 -8.9198096219196004e-05 1069569.9718831701 --256943.71989812099 -0.00018219351043725500 1069569.9719068999 --256943.71994872100 -8.5906351845247098e-05 1069569.9718947399 --256943.71988771300 -8.5075165340037798e-05 1069569.9719094001 --256943.72011626299 0.00024450146701153301 1069569.9718544900 --256943.72049701901 0.00043949367109505399 1069569.9717630199 --256943.72149191899 0.0010865247632788799 1069569.9715240200 --256943.72379700799 0.0016752206431624699 1069569.9709702600 --256943.72918822200 0.0019614156273163401 1069569.9696751300 --256943.74104813300 -0.0011936104845011401 1069569.9668260100 --256943.76454259900 -0.017410155135273799 1069569.9611819100 --256943.80344049199 -0.075128324996260806 1069569.9518374300 --256943.84442139801 -0.25153096360908300 1069569.9419925199 --256943.79939859500 -0.73944471482203200 1069569.9528081701 --256943.32862485401 -1.9925942827502501 1069570.0659008799 --256941.33966868601 -5.0006042957167098 1069570.5436969800 --256934.67468384601 -11.736982198742799 1069572.1447417000 --256914.86176917201 -25.626353917043101 1069576.9038014100 --256860.54241596299 -51.117837445737003 1069589.9490630699 --256720.86050067499 -88.930714368135895 1069623.4813592699 --256381.55550723200 -116.34596073459601 1069704.8585751599 --255602.00112930001 -22.906474370124201 1069891.4040658500 --253914.20652139900 574.89580371043303 1070293.0651094699 --250503.08151533501 2825.1361595309199 1071093.0047185400 --244186.94871026301 9864.6579728676097 1072508.9382390501 --233869.41533837101 29717.441485535699 1074440.3055734800 --220293.14511020100 81823.679189841801 1074604.9579921400 --210241.42783246501 210241.42783246501 1059054.8069131901 --222091.36909522599 497208.51751455298 955750.55003091099 --505613.03256497299 -505613.03256497299 835889.30044647900 --497208.51751455298 -222091.36909522599 955750.55003091099 --516972.83114608598 -84686.423861058996 967247.28041511006 --538415.14051355200 -28309.924298523700 958805.34241940104 --553484.35399110895 -7679.4843639338496 950576.71726533899 --562234.66909616999 -1126.5910102491700 945458.04119432799 --566750.38216437504 471.54601353310198 942758.60216753895 --568888.58756020002 588.65734351482899 941469.82342839497 --569832.13216431299 395.92100159957999 940899.13614565099 --570222.73231285205 217.74198556482099 940662.52617083304 --570374.37706612202 107.00276323917400 940570.60263270105 --570429.14200834802 48.542762271396100 940537.39510517102 --570447.14829199505 20.605691551534001 940526.47521531105 --570452.25323402602 8.2151789026216306 940523.37914202502 --570453.28997414804 3.0638914400671200 940522.75036188401 --570453.26167212904 1.0539543261804101 940522.76753224805 --570453.06853465096 0.32303356019501300 940522.88467601698 --570452.92179180204 0.080089491899032500 940522.97367963800 --570452.83872587106 0.0096878152978336698 940523.02406139695 --570452.79791293095 -0.0054472476389189799 940523.04881555599 --570452.77970908198 -0.0058435385098028802 940523.05985668499 --570452.77227435203 -0.0037056891711654502 940523.06436605100 --570452.76938541199 -0.0019191494109433299 940523.06611827097 --570452.76836527605 -0.0010062073504636900 940523.06673701096 --570452.76797587401 -0.00032227816453552101 940523.06697319401 --570452.76790761796 -0.00010268242998645900 940523.06701459305 --570452.76792816096 0.00015690708036692700 940523.06700213300 --570452.76800308202 0.00013246640045155701 940523.06695669203 --570452.76798202703 9.1783232592572507e-05 940523.06696946197 --570452.76788044104 1.7695257943548701e-05 940523.06703107699 --570452.76770393096 -1.4796890539839899e-05 940523.06713813497 --570452.76758386800 7.3960550723806595e-05 940523.06721095601 --570452.76756542700 0.00012875110583581600 940523.06722214201 --570452.76761575299 0.00014723381333952101 940523.06719161803 --570452.76765581104 9.2187243255344297e-05 940523.06716732203 --570452.76760803198 -1.6183235628412300e-05 940523.06719630002 --570452.76752436894 2.9019547111149301e-06 940523.06724704395 --570452.76745759603 -2.9124497066370199e-05 940523.06728754402 --570452.76746375696 7.4453323030438404e-05 940523.06728380697 --570452.76749017602 -2.0764988020865700e-05 940523.06726778299 --570452.76749017602 2.0764998658072399e-05 940523.06726778299 --570452.76746375696 -7.4453295657800000e-05 940523.06728380697 --570452.76745759603 2.9124492963672501e-05 940523.06728754402 --570452.76752436894 -2.9019737845843800e-06 940523.06724704395 --570452.76760803198 1.6183211109155901e-05 940523.06719630002 --570452.76765581104 -9.2187272448783196e-05 940523.06716732203 --570452.76761575299 -0.00014723393408583001 940523.06719161803 --570452.76756542700 -0.00012875112310254500 940523.06722214201 --570452.76758386800 -7.3960514480331198e-05 940523.06721095601 --570452.76770393096 1.4796900853774600e-05 940523.06713813497 --570452.76788043999 -1.7695192241330699e-05 940523.06703107699 --570452.76798202703 -9.1783258179374295e-05 940523.06696946197 --570452.76800308202 -0.00013246640508378100 940523.06695669203 --570452.76792816096 -0.00015690702843273500 940523.06700213300 --570452.76790761796 0.00010268248570441501 940523.06701459305 --570452.76797587401 0.00032227812230825701 940523.06697319401 --570452.76836527605 0.0010062073953646200 940523.06673701201 --570452.76938541199 0.0019191495140766200 940523.06611827097 --570452.77227435203 0.0037056890775041900 940523.06436604995 --570452.77970908198 0.0058435383755166496 940523.05985668499 --570452.79791293095 0.0054472476694791402 940523.04881555599 --570452.83872587199 -0.0096878152465037694 940523.02406139695 --570452.92179180204 -0.080089491954785000 940522.97367963800 --570453.06853465096 -0.32303356019825902 940522.88467601698 --570453.26167212904 -1.0539543261181099 940522.76753224805 --570453.28997414804 -3.0638914400897699 940522.75036188401 --570452.25323402602 -8.2151789026186197 940523.37914202595 --570447.14829199505 -20.605691551464901 940526.47521531000 --570429.14200834802 -48.542762271482601 940537.39510517102 --570374.37706612295 -107.00276323920799 940570.60263270105 --570222.73231285205 -217.74198556474201 940662.52617083304 --569832.13216431299 -395.92100159952798 940899.13614565099 --568888.58756020002 -588.65734351488300 941469.82342839497 --566750.38216437504 -471.54601353314501 942758.60216753895 --562234.66909616999 1126.5910102492001 945458.04119432799 --553484.35399110895 7679.4843639339697 950576.71726533899 --538415.14051355200 28309.924298523802 958805.34241940000 --516972.83114608598 84686.423861058895 967247.28041511006 --497208.51751455298 222091.36909522599 955750.55003091099 --505613.03256497299 505613.03256497299 835889.30044647900 -# End: Data Text -# End: Segment diff --git a/test/sascalculator/data/isolated_skyrmion_V2.omf b/test/sascalculator/data/isolated_skyrmion_V2.omf deleted file mode 100644 index 8afe5b2429..0000000000 --- a/test/sascalculator/data/isolated_skyrmion_V2.omf +++ /dev/null @@ -1,6440 +0,0 @@ -# OOMMF OVF 2.0 -# -# Segment count: 1 -# -# Begin: Segment -# Begin: Header -# -# Title: Oxs_MinDriver::Magnetization -# Desc: Oxs vector field output -# Desc: MIF source file: /mnt/ceph/home/h1110371/Desktop/MagneticSasviewTestData/OOMMF_chiraltestcases/INPUT_isolated_sk_DMI_T.mif -# Desc: Iteration: 217, State id: 508 -# Desc: Stage: 0, Stage iteration: 217 -# Desc: Stage simulation time: -1 s -# Desc: Total simulation time: -2 s -# meshunit: m -# meshtype: rectangular -# xbase: 3.7499999999999995e-10 -# ybase: 3.7499999999999995e-10 -# zbase: 1.0000000000000001e-09 -# xnodes: 80 -# ynodes: 80 -# znodes: 1 -# xstepsize: 7.4999999999999989e-10 -# ystepsize: 7.4999999999999989e-10 -# zstepsize: 2.0000000000000001e-09 -# xmin: 0 -# ymin: 0 -# zmin: 0 -# xmax: 5.9999999999999995e-08 -# ymax: 5.9999999999999995e-08 -# zmax: 2.0000000000000001e-09 -# valuedim: 3 -# valuelabels: Magnetization_x Magnetization_y Magnetization_z -# valueunits: A/m A/m A/m -# -# End: Header -# -# Begin: Data Text - 505613.032564973 -505613.032564973 835889.300446479 - 497208.517514553 -222091.369095226 955750.550030911 - 516972.831146086 -84686.4238610590 967247.280415110 - 538415.140513552 -28309.9242985238 958805.342419400 - 553484.353991109 -7679.48436393392 950576.717265339 - 562234.669096170 -1126.59101024919 945458.041194328 - 566750.382164375 471.546013533108 942758.602167539 - 568888.587560200 588.657343514806 941469.823428395 - 569832.132164313 395.921001599490 940899.136145651 - 570222.732312852 217.741985564809 940662.526170833 - 570374.377066122 107.002763239196 940570.602632701 - 570429.142008348 48.5427622714285 940537.395105171 - 570447.148291995 20.6056915515285 940526.475215310 - 570452.253234026 8.21517890261330 940523.379142025 - 570453.289974148 3.06389144009681 940522.750361884 - 570453.261672129 1.05395432611429 940522.767532248 - 570453.068534651 0.323033560188252 940522.884676017 - 570452.921791802 0.0800894919981277 940522.973679638 - 570452.838725871 0.00968781530071302 940523.024061397 - 570452.797912932 -0.00544724757460666 940523.048815556 - 570452.779709082 -0.00584353853097528 940523.059856685 - 570452.772274352 -0.00370568915559078 940523.064366051 - 570452.769385412 -0.00191914940912211 940523.066118271 - 570452.768365276 -0.00100620745080621 940523.066737011 - 570452.767975874 -0.000322278172956229 940523.066973194 - 570452.767907618 -0.000102682476728700 940523.067014593 - 570452.767928161 0.000156907026680431 940523.067002133 - 570452.768003082 0.000132466481191563 940523.066956692 - 570452.767982027 9.17833584648662e-05 940523.066969462 - 570452.767880441 1.76952128669896e-05 940523.067031077 - 570452.767703931 -1.47969406170854e-05 940523.067138135 - 570452.767583868 7.39605388830757e-05 940523.067210956 - 570452.767565427 0.000128751101650279 940523.067222142 - 570452.767615753 0.000147233846252729 940523.067191618 - 570452.767655811 9.21872558097580e-05 940523.067167321 - 570452.767608032 -1.61832152994662e-05 940523.067196300 - 570452.767524369 2.90190430922745e-06 940523.067247044 - 570452.767457596 -2.91246296922062e-05 940523.067287544 - 570452.767463757 7.44532501926827e-05 940523.067283808 - 570452.767490176 -2.07649468975814e-05 940523.067267783 - 570452.767490176 2.07650604711729e-05 940523.067267783 - 570452.767463756 -7.44533231472866e-05 940523.067283807 - 570452.767457596 2.91244096917775e-05 940523.067287544 - 570452.767524369 -2.90187408749834e-06 940523.067247044 - 570452.767608032 1.61834073644460e-05 940523.067196300 - 570452.767655811 -9.21872185380095e-05 940523.067167321 - 570452.767615753 -0.000147233862726545 940523.067191618 - 570452.767565427 -0.000128751126421778 940523.067222142 - 570452.767583868 -7.39606169231964e-05 940523.067210956 - 570452.767703931 1.47969060715862e-05 940523.067138135 - 570452.767880441 -1.76951821100599e-05 940523.067031077 - 570452.767982027 -9.17833990996281e-05 940523.066969463 - 570452.768003082 -0.000132466441188409 940523.066956692 - 570452.767928161 -0.000156907012711637 940523.067002133 - 570452.767907618 0.000102682476948428 940523.067014593 - 570452.767975874 0.000322278283127943 940523.066973194 - 570452.768365276 0.00100620741727473 940523.066737011 - 570452.769385412 0.00191914945940744 940523.066118271 - 570452.772274352 0.00370568907155233 940523.064366051 - 570452.779709082 0.00584353837605643 940523.059856685 - 570452.797912931 0.00544724770254308 940523.048815556 - 570452.838725871 -0.00968781524817157 940523.024061397 - 570452.921791802 -0.0800894919723155 940522.973679638 - 570453.068534651 -0.323033560178483 940522.884676017 - 570453.261672129 -1.05395432621640 940522.767532248 - 570453.289974148 -3.06389144004391 940522.750361884 - 570452.253234026 -8.21517890257764 940523.379142025 - 570447.148291995 -20.6056915515807 940526.475215311 - 570429.142008348 -48.5427622714457 940537.395105171 - 570374.377066122 -107.002763239190 940570.602632700 - 570222.732312852 -217.741985564760 940662.526170833 - 569832.132164313 -395.921001599523 940899.136145651 - 568888.587560200 -588.657343514882 941469.823428395 - 566750.382164375 -471.546013533153 942758.602167539 - 562234.669096170 1126.59101024917 945458.041194328 - 553484.353991109 7679.48436393387 950576.717265339 - 538415.140513552 28309.9242985238 958805.342419401 - 516972.831146086 84686.4238610591 967247.280415110 - 497208.517514553 222091.369095227 955750.550030911 - 505613.032564973 505613.032564973 835889.300446479 - 222091.369095227 -497208.517514553 955750.550030911 - 210241.427832465 -210241.427832465 1059054.80691319 - 220293.145110201 -81823.6791898417 1074604.95799214 - 233869.415338371 -29717.4414855358 1074440.30557348 - 244186.948710263 -9864.65797286766 1072508.93823905 - 250503.081515335 -2825.13615953084 1071093.00471855 - 253914.206521399 -574.895803710377 1070293.06510947 - 255602.001129300 22.9064743700437 1069891.40406585 - 256381.555507232 116.345960734571 1069704.85857516 - 256720.860500675 88.9307143682168 1069623.48135927 - 256860.542415963 51.1178374456599 1069589.94906307 - 256914.861769172 25.6263539169995 1069576.90380141 - 256934.674683846 11.7369821987970 1069572.14474169 - 256941.339668686 5.00060429568157 1069570.54369698 - 256943.328624854 1.99259428275854 1069570.06590088 - 256943.799398595 0.739444714800917 1069569.95280817 - 256943.844421398 0.251530963638375 1069569.94199252 - 256943.803440492 0.0751283251287008 1069569.95183743 - 256943.764542599 0.0174101550824519 1069569.96118191 - 256943.741048133 0.00119361045124663 1069569.96682601 - 256943.729188222 -0.00196141561303536 1069569.96967513 - 256943.723797009 -0.00167522065341327 1069569.97097026 - 256943.721491919 -0.00108652473872917 1069569.97152402 - 256943.720497019 -0.000439493692363027 1069569.97176302 - 256943.720116263 -0.000244501484574195 1069569.97185449 - 256943.719887713 8.50751286081724e-05 1069569.97190940 - 256943.719948721 8.59063638395250e-05 1069569.97189474 - 256943.719898121 0.000182193568731438 1069569.97190690 - 256943.719996882 8.91981220467872e-05 1069569.97188317 - 256943.719883077 7.76867690503957e-05 1069569.97191051 - 256943.719870012 2.61061498227196e-05 1069569.97191365 - 256943.719794789 0.000101560345913476 1069569.97193172 - 256943.719860223 7.14688951263494e-05 1069569.97191600 - 256943.719936966 0.000159797754678801 1069569.97189756 - 256943.720006852 3.62045433528920e-06 1069569.97188077 - 256943.720016387 9.32060031182975e-05 1069569.97187848 - 256943.719969604 -8.46792663470022e-05 1069569.97188972 - 256943.719950937 0.000106871568185892 1069569.97189421 - 256943.719955658 -6.93894407485637e-05 1069569.97189307 - 256943.719984330 0.000114558746772855 1069569.97188618 - 256943.719984330 -0.000114558704048042 1069569.97188618 - 256943.719955658 6.93893720528988e-05 1069569.97189307 - 256943.719950937 -0.000106871603901523 1069569.97189421 - 256943.719969604 8.46792411931098e-05 1069569.97188972 - 256943.720016387 -9.32059359668170e-05 1069569.97187848 - 256943.720006852 -3.62041651969955e-06 1069569.97188077 - 256943.719936966 -0.000159797721373610 1069569.97189756 - 256943.719860222 -7.14688986206234e-05 1069569.97191600 - 256943.719794789 -0.000101560337602728 1069569.97193172 - 256943.719870012 -2.61062370092808e-05 1069569.97191365 - 256943.719883077 -7.76868284413285e-05 1069569.97191051 - 256943.719996882 -8.91980644412419e-05 1069569.97188317 - 256943.719898121 -0.000182193568285886 1069569.97190690 - 256943.719948721 -8.59063757733922e-05 1069569.97189474 - 256943.719887713 -8.50751219514111e-05 1069569.97190940 - 256943.720116263 0.000244501565557254 1069569.97185449 - 256943.720497019 0.000439493742861808 1069569.97176302 - 256943.721491919 0.00108652470612612 1069569.97152402 - 256943.723797009 0.00167522052753335 1069569.97097026 - 256943.729188222 0.00196141559814560 1069569.96967513 - 256943.741048133 -0.00119361040140819 1069569.96682601 - 256943.764542599 -0.0174101551014507 1069569.96118191 - 256943.803440492 -0.0751283250725346 1069569.95183743 - 256943.844421398 -0.251530963628247 1069569.94199252 - 256943.799398595 -0.739444714827675 1069569.95280817 - 256943.328624854 -1.99259428270368 1069570.06590088 - 256941.339668686 -5.00060429565684 1069570.54369698 - 256934.674683846 -11.7369821988281 1069572.14474169 - 256914.861769172 -25.6263539170779 1069576.90380141 - 256860.542415963 -51.1178374456922 1069589.94906307 - 256720.860500675 -88.9307143681864 1069623.48135927 - 256381.555507232 -116.345960734584 1069704.85857516 - 255602.001129300 -22.9064743700604 1069891.40406585 - 253914.206521399 574.895803710421 1070293.06510947 - 250503.081515335 2825.13615953089 1071093.00471855 - 244186.948710263 9864.65797286764 1072508.93823905 - 233869.415338371 29717.4414855358 1074440.30557348 - 220293.145110201 81823.6791898418 1074604.95799214 - 210241.427832465 210241.427832465 1059054.80691319 - 222091.369095226 497208.517514553 955750.550030911 - 84686.4238610591 -516972.831146086 967247.280415110 - 81823.6791898417 -220293.145110201 1074604.95799214 - 87858.2023851795 -87858.2023851795 1092960.14225007 - 95205.3037104730 -33756.2468813960 1095352.21090838 - 100877.045482482 -12503.2699354471 1095293.33510966 - 104473.437198664 -4424.17130346565 1095018.59693257 - 106497.758089553 -1469.98000518285 1094831.52433636 - 107545.321553494 -443.838727320589 1094730.01549201 - 108053.081875461 -112.528684697078 1094680.09885743 - 108286.045381449 -17.3905824857293 1094657.08423835 - 108387.805300713 4.10119021009982 1094647.01326285 - 108430.226539643 5.78727848991096 1094642.81203462 - 108447.095638244 3.75034838093001 1094641.14093778 - 108453.470039913 1.94305220794440 1094640.50940595 - 108455.739279648 0.887526174308611 1094640.28457595 - 108456.486920500 0.368431315333593 1094640.21050057 - 108456.706149029 0.139292731331969 1094640.18877953 - 108456.757792309 0.0472310923123139 1094640.18366273 - 108456.762970308 0.0134874184915968 1094640.18314970 - 108456.759136769 0.00253776426277724 1094640.18352952 - 108456.755351041 -0.000205391577183731 1094640.18390461 - 108456.753057704 -0.000657961672903849 1094640.18413184 - 108456.751868812 -0.000409843626702782 1094640.18424963 - 108456.751258488 -0.000203149515368301 1094640.18431010 - 108456.750941222 -3.78523299409424e-05 1094640.18434154 - 108456.750862491 7.45950516049454e-05 1094640.18434934 - 108456.750819229 0.000132732229552620 1094640.18435362 - 108456.750920141 9.87292431824439e-05 1094640.18434363 - 108456.750941794 0.000130779713234600 1094640.18434148 - 108456.751014763 -7.19044155605486e-06 1094640.18433425 - 108456.750998065 9.41860063075232e-05 1094640.18433590 - 108456.751065431 -4.40316370945269e-05 1094640.18432923 - 108456.751106663 0.000118311009709770 1094640.18432515 - 108456.751224946 -4.05579073871359e-05 1094640.18431343 - 108456.751271442 9.14461172969846e-05 1094640.18430882 - 108456.751320530 -7.51427613508563e-05 1094640.18430396 - 108456.751298315 6.11576060704758e-05 1094640.18430616 - 108456.751307773 -5.65840534760484e-05 1094640.18430522 - 108456.751311180 7.77534416808337e-05 1094640.18430488 - 108456.751332471 -5.05384185559488e-05 1094640.18430277 - 108456.751332471 5.05384344599936e-05 1094640.18430277 - 108456.751311180 -7.77534567657818e-05 1094640.18430488 - 108456.751307773 5.65840681905652e-05 1094640.18430522 - 108456.751298315 -6.11575998007849e-05 1094640.18430616 - 108456.751320530 7.51427259551812e-05 1094640.18430396 - 108456.751271442 -9.14460783858873e-05 1094640.18430882 - 108456.751224946 4.05579968864439e-05 1094640.18431343 - 108456.751106663 -0.000118311011148133 1094640.18432515 - 108456.751065431 4.40316190821038e-05 1094640.18432923 - 108456.750998065 -9.41860406345960e-05 1094640.18433590 - 108456.751014763 7.19040641326357e-06 1094640.18433425 - 108456.750941794 -0.000130779702411625 1094640.18434148 - 108456.750920141 -9.87292867462246e-05 1094640.18434363 - 108456.750819229 -0.000132732280249774 1094640.18435362 - 108456.750862491 -7.45951447872633e-05 1094640.18434934 - 108456.750941222 3.78524311393739e-05 1094640.18434154 - 108456.751258488 0.000203149588560873 1094640.18431010 - 108456.751868812 0.000409843541072940 1094640.18424963 - 108456.753057704 0.000657961662874683 1094640.18413184 - 108456.755351041 0.000205391550250952 1094640.18390461 - 108456.759136769 -0.00253776425190919 1094640.18352952 - 108456.762970308 -0.0134874184716640 1094640.18314970 - 108456.757792309 -0.0472310922914649 1094640.18366273 - 108456.706149029 -0.139292731331959 1094640.18877953 - 108456.486920500 -0.368431315410446 1094640.21050057 - 108455.739279648 -0.887526174354558 1094640.28457595 - 108453.470039913 -1.94305220786397 1094640.50940595 - 108447.095638244 -3.75034838086175 1094641.14093778 - 108430.226539643 -5.78727848991910 1094642.81203462 - 108387.805300713 -4.10119021005071 1094647.01326285 - 108286.045381449 17.3905824857527 1094657.08423835 - 108053.081875461 112.528684696941 1094680.09885743 - 107545.321553494 443.838727320576 1094730.01549201 - 106497.758089553 1469.98000518299 1094831.52433636 - 104473.437198664 4424.17130346563 1095018.59693257 - 100877.045482482 12503.2699354470 1095293.33510966 - 95205.3037104730 33756.2468813961 1095352.21090838 - 87858.2023851795 87858.2023851795 1092960.14225007 - 81823.6791898418 220293.145110201 1074604.95799214 - 84686.4238610590 516972.831146086 967247.280415110 - 28309.9242985239 -538415.140513552 958805.342419401 - 29717.4414855358 -233869.415338371 1074440.30557348 - 33756.2468813960 -95205.3037104730 1095352.21090838 - 37720.4360593450 -37720.4360593449 1098705.75560838 - 40680.3052457967 -14670.8263299042 1099149.61657634 - 42579.9203490207 -5601.54225063802 1099161.30440781 - 43680.4641211038 -2093.33964182302 1099130.39944463 - 44271.2963916639 -762.325386479101 1099108.48926564 - 44569.8404238173 -269.018938909666 1099096.65496416 - 44713.2167355994 -91.3273197147665 1099090.86062458 - 44779.0664053628 -29.5213944465915 1099088.18315017 - 44808.0974825736 -8.94282210549625 1099087.00034166 - 44820.4068029956 -2.46900180399892 1099086.49847404 - 44825.4277947898 -0.586197366105093 1099086.29371068 - 44827.3949016043 -0.100962191399005 1099086.21348206 - 44828.1325273356 -0.00166972109574096 1099086.18339697 - 44828.3954117150 0.00786448533902487 1099086.17267474 - 44828.4832533254 0.00341010138757493 1099086.16909194 - 44828.5101687880 0.000248528939930794 1099086.16799414 - 44828.5171470094 -0.000753973372232244 1099086.16770952 - 44828.5185413288 -0.000832909108822066 1099086.16765265 - 44828.5183157066 -0.000536512899990568 1099086.16766185 - 44828.5181770386 -0.000321961429420481 1099086.16766751 - 44828.5179379603 -0.000129313593625616 1099086.16767726 - 44828.5179218368 -4.45651868963695e-05 1099086.16767792 - 44828.5179645550 2.85895953085589e-05 1099086.16767618 - 44828.5180112699 3.62778612233483e-05 1099086.16767427 - 44828.5181797562 5.27267485073228e-05 1099086.16766740 - 44828.5181958177 3.06717893479347e-06 1099086.16766674 - 44828.5183189312 -2.28839587736202e-06 1099086.16766172 - 44828.5182936841 -3.06518371208202e-05 1099086.16766275 - 44828.5183622822 -3.04524493954045e-05 1099086.16765995 - 44828.5183735743 -1.45935177133869e-05 1099086.16765949 - 44828.5184348012 -3.44391621555752e-05 1099086.16765700 - 44828.5184596521 -4.88066005932567e-06 1099086.16765598 - 44828.5184712462 -4.07695510692140e-05 1099086.16765551 - 44828.5184626699 1.52134020447202e-05 1099086.16765586 - 44828.5184531703 -1.57301312930352e-05 1099086.16765625 - 44828.5184558616 4.08681574619143e-05 1099086.16765614 - 44828.5184610904 -1.69442562989772e-05 1099086.16765592 - 44828.5184610904 1.69442462494453e-05 1099086.16765592 - 44828.5184558616 -4.08681420857196e-05 1099086.16765614 - 44828.5184531703 1.57301724869520e-05 1099086.16765625 - 44828.5184626699 -1.52134427047916e-05 1099086.16765586 - 44828.5184712463 4.07695157633546e-05 1099086.16765551 - 44828.5184596521 4.88074349660775e-06 1099086.16765598 - 44828.5184348012 3.44391869776324e-05 1099086.16765700 - 44828.5183735743 1.45934721481175e-05 1099086.16765949 - 44828.5183622822 3.04524210515721e-05 1099086.16765995 - 44828.5182936842 3.06518184778281e-05 1099086.16766275 - 44828.5183189312 2.28841843270938e-06 1099086.16766172 - 44828.5181958177 -3.06719690317557e-06 1099086.16766674 - 44828.5181797562 -5.27267571936482e-05 1099086.16766740 - 44828.5180112699 -3.62778527928367e-05 1099086.16767427 - 44828.5179645549 -2.85896169064900e-05 1099086.16767618 - 44828.5179218367 4.45651722819783e-05 1099086.16767792 - 44828.5179379603 0.000129313611139497 1099086.16767726 - 44828.5181770386 0.000321961419907259 1099086.16766751 - 44828.5183157066 0.000536512854625738 1099086.16766185 - 44828.5185413288 0.000832909133333864 1099086.16765265 - 44828.5171470094 0.000753973390729895 1099086.16770952 - 44828.5101687880 -0.000248528928347549 1099086.16799414 - 44828.4832533254 -0.00341010139995715 1099086.16909194 - 44828.3954117150 -0.00786448534122246 1099086.17267474 - 44828.1325273356 0.00166972111786036 1099086.18339697 - 44827.3949016042 0.100962191446629 1099086.21348206 - 44825.4277947897 0.586197366109814 1099086.29371068 - 44820.4068029956 2.46900180395536 1099086.49847404 - 44808.0974825735 8.94282210548795 1099087.00034166 - 44779.0664053628 29.5213944465948 1099088.18315017 - 44713.2167355994 91.3273197147408 1099090.86062458 - 44569.8404238174 269.018938909684 1099096.65496416 - 44271.2963916638 762.325386479128 1099108.48926564 - 43680.4641211038 2093.33964182301 1099130.39944463 - 42579.9203490207 5601.54225063805 1099161.30440781 - 40680.3052457967 14670.8263299042 1099149.61657634 - 37720.4360593449 37720.4360593449 1098705.75560838 - 33756.2468813961 95205.3037104730 1095352.21090838 - 29717.4414855358 233869.415338371 1074440.30557348 - 28309.9242985238 538415.140513552 958805.342419400 - 7679.48436393389 -553484.353991109 950576.717265339 - 9864.65797286764 -244186.948710263 1072508.93823905 - 12503.2699354470 -100877.045482482 1095293.33510966 - 14670.8263299042 -40680.3052457967 1099149.61657634 - 16202.3778895248 -16202.3778895249 1099761.32224290 - 17178.6942981202 -6391.96817318859 1099847.27812778 - 17753.1341047373 -2497.62248956472 1099853.89398381 - 18069.8786288911 -965.599590628937 1099851.14770307 - 18235.3275489744 -368.887740803563 1099848.77903783 - 18317.8248410919 -139.102642976019 1099847.46121612 - 18357.3071756004 -51.7376885649515 1099846.81051339 - 18375.5133932775 -18.9788602294487 1099846.50753973 - 18383.6233389771 -6.87230859105742 1099846.37215645 - 18387.1187903351 -2.46220095015556 1099846.31374412 - 18388.5772014527 -0.876726831774221 1099846.28936399 - 18389.1663407084 -0.312621098060299 1099846.27951419 - 18389.3965182490 -0.112690211030174 1099846.27566569 - 18389.4828139889 -0.0416539093999752 1099846.27422283 - 18389.5141975013 -0.0159001552644443 1099846.27369809 - 18389.5247623496 -0.00631086694021251 1099846.27352145 - 18389.5281418026 -0.00264587833701974 1099846.27346494 - 18389.5292727728 -0.00106444306087142 1099846.27344603 - 18389.5294366849 -0.000499391122800130 1099846.27344329 - 18389.5296977589 -0.000210608481480974 1099846.27343893 - 18389.5296773969 -0.000120536293804892 1099846.27343927 - 18389.5298752045 -6.95317294442188e-05 1099846.27343596 - 18389.5299072139 -6.83884646543750e-05 1099846.27343543 - 18389.5300518799 -4.07727599325785e-05 1099846.27343301 - 18389.5300878847 -7.33058530976568e-05 1099846.27343240 - 18389.5301370847 -2.32968387912466e-05 1099846.27343158 - 18389.5301556784 -8.47829165559771e-05 1099846.27343127 - 18389.5301458927 4.15983261468247e-07 1099846.27343143 - 18389.5301877698 -7.78373780258798e-05 1099846.27343073 - 18389.5301668691 2.01740845297960e-05 1099846.27343108 - 18389.5302193152 -6.52251624678525e-05 1099846.27343021 - 18389.5301777872 4.09670633645571e-05 1099846.27343090 - 18389.5302080026 -3.20370399934330e-05 1099846.27343040 - 18389.5301687517 7.01274891243376e-05 1099846.27343105 - 18389.5301896842 -1.44129947432961e-05 1099846.27343070 - 18389.5301794665 5.36744859288223e-05 1099846.27343087 - 18389.5301794665 -5.36744802746643e-05 1099846.27343087 - 18389.5301896842 1.44129917367737e-05 1099846.27343070 - 18389.5301687517 -7.01274937594438e-05 1099846.27343105 - 18389.5302080027 3.20370213787360e-05 1099846.27343040 - 18389.5301777872 -4.09670645326460e-05 1099846.27343090 - 18389.5302193153 6.52252017301276e-05 1099846.27343021 - 18389.5301668692 -2.01740780055413e-05 1099846.27343108 - 18389.5301877698 7.78374202860802e-05 1099846.27343073 - 18389.5301458927 -4.15999053486541e-07 1099846.27343143 - 18389.5301556784 8.47828663564116e-05 1099846.27343127 - 18389.5301370847 2.32968426599490e-05 1099846.27343158 - 18389.5300878848 7.33058556026335e-05 1099846.27343240 - 18389.5300518798 4.07727642773805e-05 1099846.27343301 - 18389.5299072139 6.83884517572979e-05 1099846.27343543 - 18389.5298752045 6.95317220532998e-05 1099846.27343596 - 18389.5296773969 0.000120536304429007 1099846.27343927 - 18389.5296977589 0.000210608473175199 1099846.27343893 - 18389.5294366849 0.000499391104867044 1099846.27344329 - 18389.5292727728 0.00106444307004490 1099846.27344603 - 18389.5281418025 0.00264587834349371 1099846.27346494 - 18389.5247623496 0.00631086693029792 1099846.27352145 - 18389.5141975013 0.0159001552755602 1099846.27369809 - 18389.4828139889 0.0416539094173254 1099846.27422283 - 18389.3965182490 0.112690210999871 1099846.27566569 - 18389.1663407083 0.312621098071361 1099846.27951419 - 18388.5772014527 0.876726831779585 1099846.28936399 - 18387.1187903352 2.46220095016337 1099846.31374412 - 18383.6233389771 6.87230859108159 1099846.37215645 - 18375.5133932775 18.9788602294418 1099846.50753973 - 18357.3071756004 51.7376885649473 1099846.81051339 - 18317.8248410919 139.102642975998 1099847.46121612 - 18235.3275489743 368.887740803545 1099848.77903783 - 18069.8786288911 965.599590628940 1099851.14770307 - 17753.1341047372 2497.62248956474 1099853.89398381 - 17178.6942981203 6391.96817318858 1099847.27812778 - 16202.3778895249 16202.3778895248 1099761.32224290 - 14670.8263299042 40680.3052457967 1099149.61657634 - 12503.2699354470 100877.045482482 1095293.33510966 - 9864.65797286764 244186.948710263 1072508.93823905 - 7679.48436393393 553484.353991109 950576.717265339 - 1126.59101024911 -562234.669096170 945458.041194328 - 2825.13615953089 -250503.081515335 1071093.00471855 - 4424.17130346563 -104473.437198664 1095018.59693257 - 5601.54225063805 -42579.9203490208 1099161.30440781 - 6391.96817318859 -17178.6942981202 1099847.27812778 - 6887.99975762096 -6887.99975762097 1099956.86775377 - 7181.43718923534 -2747.52292922445 1099973.12607066 - 7346.14932022947 -1090.15583623454 1099974.92955540 - 7434.39528870541 -430.070831722000 1099974.79280471 - 7479.74809503944 -168.617238872919 1099974.55649513 - 7502.19913700918 -65.6846653005797 1099974.41456319 - 7512.93953589722 -25.4243065483747 1099974.34292493 - 7517.91771627138 -9.78285835067336 1099974.30916249 - 7520.15693892839 -3.74560421939858 1099974.29389308 - 7521.13627868205 -1.42933924628665 1099974.28720268 - 7521.55283468682 -0.544592808293825 1099974.28435517 - 7521.72505281549 -0.207846975237010 1099974.28317765 - 7521.79455632050 -0.0795878529167614 1099974.28270239 - 7521.82149127680 -0.0306614335887444 1099974.28251821 - 7521.83191686263 -0.0119648702606227 1099974.28244692 - 7521.83562478699 -0.00460354710267491 1099974.28242156 - 7521.83713691647 -0.00190563026070764 1099974.28241122 - 7521.83759116736 -0.000750392054357111 1099974.28240812 - 7521.83782178503 -0.000417341707232032 1099974.28240654 - 7521.83794400274 -0.000231560341023348 1099974.28240570 - 7521.83792818667 -0.000184923715703087 1099974.28240581 - 7521.83806878890 -0.000117519856948238 1099974.28240485 - 7521.83797664406 -7.45412640681866e-05 1099974.28240548 - 7521.83809688117 -5.91364739237803e-05 1099974.28240466 - 7521.83800469091 -1.23058658639848e-05 1099974.28240529 - 7521.83806184932 -4.06976223442370e-05 1099974.28240490 - 7521.83802075612 -6.51317947798495e-06 1099974.28240518 - 7521.83804017656 -4.67669972182002e-05 1099974.28240505 - 7521.83805896199 -1.48869903351074e-05 1099974.28240492 - 7521.83805699803 -4.12784271950742e-05 1099974.28240493 - 7521.83809132215 6.14212347366477e-06 1099974.28240470 - 7521.83807277772 2.11787642665178e-06 1099974.28240482 - 7521.83809766500 4.22513283150247e-05 1099974.28240465 - 7521.83808581418 2.17569784913153e-05 1099974.28240473 - 7521.83809696305 2.29160309513753e-05 1099974.28240466 - 7521.83809696304 -2.29160352771854e-05 1099974.28240466 - 7521.83808581420 -2.17569744503853e-05 1099974.28240473 - 7521.83809766500 -4.22513345936283e-05 1099974.28240465 - 7521.83807277771 -2.11787215201888e-06 1099974.28240482 - 7521.83809132213 -6.14211445805859e-06 1099974.28240470 - 7521.83805699803 4.12784225184549e-05 1099974.28240493 - 7521.83805896201 1.48869971911171e-05 1099974.28240492 - 7521.83804017656 4.67669979385944e-05 1099974.28240505 - 7521.83802075618 6.51317740010777e-06 1099974.28240518 - 7521.83806184930 4.06976296668621e-05 1099974.28240490 - 7521.83800469092 1.23058592656764e-05 1099974.28240529 - 7521.83809688115 5.91364769058954e-05 1099974.28240466 - 7521.83797664408 7.45412634224284e-05 1099974.28240548 - 7521.83806878889 0.000117519847792310 1099974.28240485 - 7521.83792818667 0.000184923718937947 1099974.28240581 - 7521.83794400273 0.000231560332926611 1099974.28240570 - 7521.83782178505 0.000417341708925952 1099974.28240654 - 7521.83759116734 0.000750392060408801 1099974.28240812 - 7521.83713691646 0.00190563025291400 1099974.28241122 - 7521.83562478699 0.00460354709916055 1099974.28242156 - 7521.83191686262 0.0119648702614931 1099974.28244692 - 7521.82149127677 0.0306614335907137 1099974.28251821 - 7521.79455632052 0.0795878529121355 1099974.28270239 - 7521.72505281549 0.207846975245284 1099974.28317765 - 7521.55283468679 0.544592808294097 1099974.28435517 - 7521.13627868207 1.42933924629023 1099974.28720268 - 7520.15693892837 3.74560421940736 1099974.29389308 - 7517.91771627141 9.78285835067179 1099974.30916249 - 7512.93953589722 25.4243065483804 1099974.34292493 - 7502.19913700920 65.6846653005733 1099974.41456319 - 7479.74809503945 168.617238872911 1099974.55649513 - 7434.39528870540 430.070831721991 1099974.79280471 - 7346.14932022945 1090.15583623455 1099974.92955540 - 7181.43718923535 2747.52292922444 1099973.12607066 - 6887.99975762097 6887.99975762096 1099956.86775377 - 6391.96817318858 17178.6942981202 1099847.27812778 - 5601.54225063801 42579.9203490207 1099161.30440781 - 4424.17130346560 104473.437198664 1095018.59693257 - 2825.13615953083 250503.081515335 1071093.00471855 - 1126.59101024917 562234.669096170 945458.041194328 - -471.546013533186 -566750.382164375 942758.602167539 - 574.895803710409 -253914.206521399 1070293.06510947 - 1469.98000518297 -106497.758089553 1094831.52433636 - 2093.33964182297 -43680.4641211038 1099130.39944463 - 2497.62248956474 -17753.1341047372 1099853.89398381 - 2747.52292922446 -7181.43718923533 1099973.12607066 - 2895.41805100653 -2895.41805100654 1099992.37865933 - 2979.39420810520 -1163.87503059401 1099995.34935611 - 3025.24967884862 -466.388198580885 1099995.74105831 - 3049.39293889752 -186.266829635260 1099995.75749517 - 3061.68166096841 -74.1286461294767 1099995.73663281 - 3067.74324323106 -29.3946910864869 1099995.72184956 - 3070.64645079339 -11.6150884671070 1099995.71408050 - 3071.99907740516 -4.57511194805268 1099995.71035561 - 3072.61329680703 -1.79715843078219 1099995.70864813 - 3072.88515921935 -0.704616306182003 1099995.70788995 - 3073.00243637995 -0.275914882742853 1099995.70756251 - 3073.05222262518 -0.108004941694436 1099995.70742345 - 3073.07257293244 -0.0423442638494734 1099995.70736661 - 3073.08094620382 -0.0165891457180994 1099995.70734321 - 3073.08443040946 -0.00658313040866273 1099995.70733348 - 3073.08553123421 -0.00269898399314188 1099995.70733041 - 3073.08629608077 -0.00119437171604512 1099995.70732827 - 3073.08623827543 -0.000596683596158378 1099995.70732843 - 3073.08650059260 -0.000283660897542760 1099995.70732770 - 3073.08630859503 -0.000172847112469181 1099995.70732823 - 3073.08641178899 -2.79547558103832e-05 1099995.70732794 - 3073.08627862942 -3.07992306126866e-05 1099995.70732832 - 3073.08630413420 4.43242359644416e-05 1099995.70732825 - 3073.08624011322 -2.01324323416199e-05 1099995.70732842 - 3073.08624078322 8.06150664826996e-06 1099995.70732842 - 3073.08623801592 -6.45634509413601e-05 1099995.70732843 - 3073.08623908586 -4.35127552407019e-05 1099995.70732843 - 3073.08628469485 -9.00091950606587e-05 1099995.70732830 - 3073.08628223998 -4.37187943196978e-05 1099995.70732831 - 3073.08633863066 -4.81561239227003e-05 1099995.70732815 - 3073.08632455820 1.52378505910728e-05 1099995.70732819 - 3073.08636523998 1.39168584103549e-05 1099995.70732807 - 3073.08635312252 4.21226676709050e-05 1099995.70732811 - 3073.08636863015 3.53868162041582e-06 1099995.70732807 - 3073.08636863015 -3.53868455807472e-06 1099995.70732807 - 3073.08635312251 -4.21226719985756e-05 1099995.70732811 - 3073.08636523998 -1.39168513448760e-05 1099995.70732807 - 3073.08632455819 -1.52378495629635e-05 1099995.70732819 - 3073.08633863067 4.81561221408827e-05 1099995.70732815 - 3073.08628223999 4.37187971592786e-05 1099995.70732831 - 3073.08628469485 9.00091967955023e-05 1099995.70732830 - 3073.08623908587 4.35127572284868e-05 1099995.70732843 - 3073.08623801592 6.45634549498319e-05 1099995.70732843 - 3073.08624078323 -8.06151090681715e-06 1099995.70732842 - 3073.08624011322 2.01324354396596e-05 1099995.70732842 - 3073.08630413420 -4.43242347104476e-05 1099995.70732825 - 3073.08627862943 3.07992245242542e-05 1099995.70732832 - 3073.08641178898 2.79547579172897e-05 1099995.70732794 - 3073.08630859503 0.000172847109173640 1099995.70732823 - 3073.08650059260 0.000283660896195034 1099995.70732770 - 3073.08623827542 0.000596683592876787 1099995.70732843 - 3073.08629608078 0.00119437171763613 1099995.70732827 - 3073.08553123421 0.00269898399486405 1099995.70733041 - 3073.08443040946 0.00658313040279729 1099995.70733348 - 3073.08094620383 0.0165891457211860 1099995.70734321 - 3073.07257293244 0.0423442638506427 1099995.70736661 - 3073.05222262518 0.108004941694162 1099995.70742345 - 3073.00243637995 0.275914882750437 1099995.70756251 - 3072.88515921936 0.704616306173421 1099995.70788995 - 3072.61329680703 1.79715843078175 1099995.70864813 - 3071.99907740516 4.57511194805690 1099995.71035561 - 3070.64645079339 11.6150884671076 1099995.71408050 - 3067.74324323107 29.3946910864889 1099995.72184956 - 3061.68166096842 74.1286461294671 1099995.73663281 - 3049.39293889752 186.266829635264 1099995.75749517 - 3025.24967884862 466.388198580893 1099995.74105831 - 2979.39420810520 1163.87503059400 1099995.34935611 - 2895.41805100654 2895.41805100654 1099992.37865933 - 2747.52292922445 7181.43718923534 1099973.12607066 - 2497.62248956473 17753.1341047372 1099853.89398381 - 2093.33964182302 43680.4641211038 1099130.39944463 - 1469.98000518295 106497.758089553 1094831.52433636 - 574.895803710385 253914.206521399 1070293.06510947 - -471.546013533158 566750.382164375 942758.602167539 - -588.657343514883 -568888.587560200 941469.823428395 - -22.9064743700706 -255602.001129300 1069891.40406585 - 443.838727320585 -107545.321553494 1094730.01549201 - 762.325386479128 -44271.2963916638 1099108.48926564 - 965.599590628943 -18069.8786288911 1099851.14770307 - 1090.15583623456 -7346.14932022945 1099974.92955540 - 1163.87503059401 -2979.39420810519 1099995.34935611 - 1206.07639274124 -1206.07639274125 1099998.67761715 - 1229.45962989245 -487.334800894286 1099999.20496963 - 1242.01282575483 -196.536593854354 1099999.28126227 - 1248.55148146855 -79.0978230567921 1099999.28857374 - 1251.86050718072 -31.7647494770641 1099999.28719807 - 1253.49002743013 -12.7283641787953 1099999.28572738 - 1254.27247274723 -5.08929982880328 1099999.28489734 - 1254.63889224516 -2.03087347420878 1099999.28448937 - 1254.80645155923 -0.808902370270921 1099999.28429982 - 1254.88168570015 -0.321764600795972 1099999.28421424 - 1254.91453055176 -0.127817158531909 1099999.28417681 - 1254.92881726552 -0.0507872284874923 1099999.28416052 - 1254.93485348147 -0.0202391909637665 1099999.28415364 - 1254.93731063001 -0.00818327419654542 1099999.28415083 - 1254.93837658933 -0.00333895264385525 1099999.28414962 - 1254.93868736676 -0.00141553000540245 1099999.28414926 - 1254.93890239436 -0.000543651611393416 1099999.28414902 - 1254.93875110628 -0.000234952158737086 1099999.28414919 - 1254.93890929919 -2.51126840416103e-05 1099999.28414901 - 1254.93866710464 -1.11786730785246e-05 1099999.28414929 - 1254.93885281020 4.97740458853014e-06 1099999.28414907 - 1254.93866223462 -2.12790778149765e-06 1099999.28414929 - 1254.93883182373 -4.61583955039557e-05 1099999.28414910 - 1254.93872658069 -4.24711311911212e-05 1099999.28414922 - 1254.93883349073 -9.72184753096833e-05 1099999.28414910 - 1254.93881751469 -6.49449460992265e-05 1099999.28414911 - 1254.93885714475 -0.000107187541944658 1099999.28414907 - 1254.93889635634 -2.98445418182498e-05 1099999.28414902 - 1254.93888757767 -5.25959605953325e-05 1099999.28414903 - 1254.93893351311 5.83024927192888e-05 1099999.28414898 - 1254.93890754579 4.97333279492999e-06 1099999.28414901 - 1254.93893443563 8.99198254787005e-05 1099999.28414898 - 1254.93892210727 -2.59139809636057e-05 1099999.28414900 - 1254.93892210727 2.59139805326861e-05 1099999.28414900 - 1254.93893443563 -8.99198267050740e-05 1099999.28414898 - 1254.93890754579 -4.97333399341577e-06 1099999.28414901 - 1254.93893351311 -5.83024928387640e-05 1099999.28414898 - 1254.93888757767 5.25959609381606e-05 1099999.28414903 - 1254.93889635634 2.98445451791788e-05 1099999.28414902 - 1254.93885714476 0.000107187540970283 1099999.28414907 - 1254.93881751469 6.49449482987487e-05 1099999.28414911 - 1254.93883349073 9.72184763103043e-05 1099999.28414910 - 1254.93872658070 4.24711321767540e-05 1099999.28414922 - 1254.93883182373 4.61583959000392e-05 1099999.28414910 - 1254.93866223463 2.12790379441017e-06 1099999.28414929 - 1254.93885281020 -4.97740390789817e-06 1099999.28414907 - 1254.93866710465 1.11786726201215e-05 1099999.28414929 - 1254.93890929919 2.51126830978424e-05 1099999.28414901 - 1254.93875110628 0.000234952156905907 1099999.28414919 - 1254.93890239436 0.000543651613584749 1099999.28414902 - 1254.93868736676 0.00141553000459166 1099999.28414926 - 1254.93837658933 0.00333895264360550 1099999.28414962 - 1254.93731063001 0.00818327419683318 1099999.28415083 - 1254.93485348147 0.0202391909603654 1099999.28415364 - 1254.92881726552 0.0507872284870585 1099999.28416052 - 1254.91453055176 0.127817158532963 1099999.28417681 - 1254.88168570015 0.321764600792109 1099999.28421424 - 1254.80645155924 0.808902370268668 1099999.28429982 - 1254.63889224514 2.03087347421191 1099999.28448937 - 1254.27247274724 5.08929982880687 1099999.28489734 - 1253.49002743013 12.7283641787958 1099999.28572738 - 1251.86050718073 31.7647494770629 1099999.28719807 - 1248.55148146854 79.0978230567943 1099999.28857374 - 1242.01282575483 196.536593854353 1099999.28126227 - 1229.45962989245 487.334800894279 1099999.20496963 - 1206.07639274125 1206.07639274125 1099998.67761715 - 1163.87503059400 2979.39420810520 1099995.34935611 - 1090.15583623455 7346.14932022947 1099974.92955540 - 965.599590628950 18069.8786288910 1099851.14770307 - 762.325386479122 44271.2963916638 1099108.48926564 - 443.838727320649 107545.321553494 1094730.01549201 - -22.9064743700077 255602.001129300 1069891.40406585 - -588.657343514802 568888.587560200 941469.823428395 - -395.921001599488 -569832.132164313 940899.136145651 - -116.345960734656 -256381.555507232 1069704.85857516 - 112.528684697002 -108053.081875462 1094680.09885743 - 269.018938909675 -44569.8404238173 1099096.65496416 - 368.887740803532 -18235.3275489743 1099848.77903783 - 430.070831721993 -7434.39528870540 1099974.79280471 - 466.388198580895 -3025.24967884861 1099995.74105831 - 487.334800894287 -1229.45962989244 1099999.20496963 - 499.082829673219 -499.082829673221 1099999.77356028 - 505.492490817101 -202.362238800963 1099999.86523948 - 508.896305511009 -81.9504518485289 1099999.87923121 - 510.656968115543 -33.1436197090484 1099999.88096861 - 511.545097613501 -13.3858729043992 1099999.88097383 - 511.982661665746 -5.39849936753971 1099999.88083845 - 512.193078943019 -2.17409120345918 1099999.88075160 - 512.292212022464 -0.874407757459211 1099999.88070723 - 512.338188131437 -0.351222065793895 1099999.88068611 - 512.358794347377 -0.140969128648464 1099999.88067656 - 512.368138182796 -0.0565493276302953 1099999.88067222 - 512.372178697863 -0.0227738060515721 1099999.88067033 - 512.373756896708 -0.00909212255419908 1099999.88066960 - 512.374585560718 -0.00368352600121652 1099999.88066921 - 512.374689132975 -0.00140611300655669 1099999.88066917 - 512.374840168640 -0.000534186622685405 1099999.88066909 - 512.374838416436 -0.000238313155328209 1099999.88066910 - 512.374800740059 -9.60724548850878e-05 1099999.88066911 - 512.374943594692 -0.000119359265542244 1099999.88066905 - 512.374842593701 -3.03340654366578e-05 1099999.88066909 - 512.375041340047 -7.19679269191702e-05 1099999.88066900 - 512.374920673210 -1.95957120544817e-05 1099999.88066906 - 512.375071924180 -4.17995439648342e-05 1099999.88066899 - 512.374967742974 -3.89234410823496e-05 1099999.88066904 - 512.375052976123 -4.90789939404648e-05 1099999.88066900 - 512.374983799949 -3.99362425790526e-05 1099999.88066903 - 512.375025310193 -2.98689028435362e-05 1099999.88066901 - 512.374979494199 2.08280287298514e-05 1099999.88066903 - 512.374994758461 3.67694490781931e-05 1099999.88066902 - 512.374962637536 7.96342257923309e-05 1099999.88066904 - 512.374965339525 4.67063365221763e-05 1099999.88066904 - 512.374952927455 3.78016684131028e-05 1099999.88066904 - 512.374952927455 -3.78016675140969e-05 1099999.88066904 - 512.374965339526 -4.67063363135300e-05 1099999.88066904 - 512.374962637533 -7.96342271254140e-05 1099999.88066904 - 512.374994758461 -3.67694493953595e-05 1099999.88066902 - 512.374979494197 -2.08280270475772e-05 1099999.88066903 - 512.375025310191 2.98689022090654e-05 1099999.88066901 - 512.374983799951 3.99362421570703e-05 1099999.88066903 - 512.375052976120 4.90789936058351e-05 1099999.88066900 - 512.374967742980 3.89234415589010e-05 1099999.88066904 - 512.375071924178 4.17995440792050e-05 1099999.88066899 - 512.374920673216 1.95957092208639e-05 1099999.88066906 - 512.375041340045 7.19679270668843e-05 1099999.88066900 - 512.374842593704 3.03340667565031e-05 1099999.88066909 - 512.374943594691 0.000119359265305312 1099999.88066905 - 512.374800740061 9.60724547941511e-05 1099999.88066911 - 512.374838416433 0.000238313156260505 1099999.88066910 - 512.374840168639 0.000534186622679582 1099999.88066909 - 512.374689132975 0.00140611300697383 1099999.88066917 - 512.374585560719 0.00368352600187769 1099999.88066921 - 512.373756896708 0.00909212255401229 1099999.88066960 - 512.372178697861 0.0227738060508305 1099999.88067033 - 512.368138182794 0.0565493276281895 1099999.88067222 - 512.358794347374 0.140969128647419 1099999.88067656 - 512.338188131435 0.351222065792683 1099999.88068611 - 512.292212022456 0.874407757462008 1099999.88070723 - 512.193078943016 2.17409120346023 1099999.88075160 - 511.982661665744 5.39849936753707 1099999.88083845 - 511.545097613501 13.3858729044003 1099999.88097383 - 510.656968115542 33.1436197090501 1099999.88096861 - 508.896305511006 81.9504518485287 1099999.87923121 - 505.492490817101 202.362238800962 1099999.86523948 - 499.082829673216 499.082829673219 1099999.77356028 - 487.334800894281 1229.45962989244 1099999.20496963 - 466.388198580893 3025.24967884862 1099995.74105831 - 430.070831722001 7434.39528870540 1099974.79280471 - 368.887740803561 18235.3275489743 1099848.77903783 - 269.018938909660 44569.8404238173 1099096.65496416 - 112.528684697000 108053.081875461 1094680.09885743 - -116.345960734629 256381.555507232 1069704.85857516 - -395.921001599473 569832.132164313 940899.136145652 - -217.741985564772 -570222.732312852 940662.526170833 - -88.9307143681516 -256720.860500675 1069623.48135927 - 17.3905824857627 -108286.045381449 1094657.08423835 - 91.3273197147555 -44713.2167355994 1099090.86062458 - 139.102642976013 -18317.8248410919 1099847.46121612 - 168.617238872905 -7479.74809503945 1099974.55649513 - 186.266829635263 -3049.39293889752 1099995.75749517 - 196.536593854355 -1242.01282575483 1099999.28126227 - 202.362238800961 -505.492490817100 1099999.86523948 - 205.586222273591 -205.586222273590 1099999.96157664 - 207.327151460813 -83.5503621762107 1099999.97728854 - 208.245001218436 -33.9275244898552 1099999.97976497 - 208.717832177269 -13.7650365509850 1099999.98011245 - 208.955948864417 -5.57967413250113 1099999.98013922 - 209.073321762119 -2.25952719697647 1099999.98012875 - 209.130178285150 -0.914221273256816 1099999.98011988 - 209.157020660500 -0.369539971032100 1099999.98011509 - 209.169563626254 -0.149197093006075 1099999.98011276 - 209.175339630845 -0.0603100769065702 1099999.98011167 - 209.177787864341 -0.0241963535931020 1099999.98011121 - 209.178900960747 -0.00976499570377347 1099999.98011099 - 209.179370149595 -0.00389573473088033 1099999.98011090 - 209.179536701427 -0.00154613481645852 1099999.98011087 - 209.179647604847 -0.000758085607693680 1099999.98011085 - 209.179713121417 -0.000302313363632347 1099999.98011084 - 209.179794777337 -0.000219144231953770 1099999.98011082 - 209.179831692139 -4.31451173179638e-05 1099999.98011082 - 209.179875630776 -1.76230723092616e-05 1099999.98011081 - 209.179877531796 4.22895950177967e-05 1099999.98011081 - 209.179857367630 4.24449062207190e-05 1099999.98011081 - 209.179825945516 1.76772649316638e-06 1099999.98011082 - 209.179798533312 -7.62013894783133e-07 1099999.98011082 - 209.179744752523 -6.03802547326122e-05 1099999.98011083 - 209.179750588261 -2.15608270799513e-05 1099999.98011083 - 209.179686502854 -5.99640196284329e-05 1099999.98011084 - 209.179713898757 4.54719120377975e-05 1099999.98011084 - 209.179651520062 4.57102385658391e-06 1099999.98011085 - 209.179673929981 0.000115962465908187 1099999.98011085 - 209.179633490946 1.17124496551471e-05 1099999.98011085 - 209.179640897626 7.71839285908571e-05 1099999.98011085 - 209.179640897626 -7.71839285845227e-05 1099999.98011085 - 209.179633490946 -1.17124493076542e-05 1099999.98011085 - 209.179673929981 -0.000115962465288399 1099999.98011085 - 209.179651520061 -4.57102367621033e-06 1099999.98011085 - 209.179713898756 -4.54719125384817e-05 1099999.98011084 - 209.179686502855 5.99640192462242e-05 1099999.98011084 - 209.179750588260 2.15608276183707e-05 1099999.98011083 - 209.179744752524 6.03802535638261e-05 1099999.98011083 - 209.179798533310 7.62013306724001e-07 1099999.98011082 - 209.179825945519 -1.76772755948007e-06 1099999.98011082 - 209.179857367629 -4.24449059126037e-05 1099999.98011081 - 209.179877531795 -4.22895945410537e-05 1099999.98011081 - 209.179875630775 1.76230720998859e-05 1099999.98011081 - 209.179831692140 4.31451179859179e-05 1099999.98011082 - 209.179794777335 0.000219144232296908 1099999.98011082 - 209.179713121417 0.000302313365248838 1099999.98011084 - 209.179647604846 0.000758085607147847 1099999.98011085 - 209.179536701427 0.00154613481533718 1099999.98011087 - 209.179370149595 0.00389573473101418 1099999.98011090 - 209.178900960748 0.00976499570385939 1099999.98011099 - 209.177787864340 0.0241963535935449 1099999.98011121 - 209.175339630845 0.0603100769064872 1099999.98011167 - 209.169563626251 0.149197093005937 1099999.98011276 - 209.157020660499 0.369539971032831 1099999.98011509 - 209.130178285146 0.914221273256460 1099999.98011988 - 209.073321762121 2.25952719697555 1099999.98012875 - 208.955948864414 5.57967413250134 1099999.98013922 - 208.717832177269 13.7650365509851 1099999.98011245 - 208.245001218434 33.9275244898546 1099999.97976497 - 207.327151460814 83.5503621762127 1099999.97728854 - 205.586222273588 205.586222273590 1099999.96157664 - 202.362238800962 505.492490817097 1099999.86523948 - 196.536593854354 1242.01282575483 1099999.28126227 - 186.266829635258 3049.39293889752 1099995.75749517 - 168.617238872913 7479.74809503944 1099974.55649513 - 139.102642975997 18317.8248410919 1099847.46121612 - 91.3273197147823 44713.2167355994 1099090.86062458 - 17.3905824857536 108286.045381449 1094657.08423835 - -88.9307143681499 256720.860500675 1069623.48135927 - -217.741985564765 570222.732312852 940662.526170833 - -107.002763239213 -570374.377066122 940570.602632701 - -51.1178374456425 -256860.542415963 1069589.94906307 - -4.10119021009616 -108387.805300713 1094647.01326285 - 29.5213944465633 -44779.0664053628 1099088.18315017 - 51.7376885649569 -18357.3071756004 1099846.81051339 - 65.6846653005681 -7502.19913700919 1099974.41456319 - 74.1286461294690 -3061.68166096841 1099995.73663281 - 79.0978230567932 -1248.55148146854 1099999.28857374 - 81.9504518485304 -508.896305511010 1099999.87923121 - 83.5503621762109 -207.327151460815 1099999.97728854 - 84.4275618185987 -84.4275618185988 1099999.99351999 - 84.8978572144906 -34.3634960400408 1099999.99618705 - 85.1448592712733 -13.9791432801730 1099999.99661588 - 85.2717632722992 -5.68342749936158 1099999.99668019 - 85.3356732359935 -2.30937120737060 1099999.99668750 - 85.3672395420300 -0.937812461943081 1099999.99668707 - 85.3825357817175 -0.380505544118876 1099999.99668622 - 85.3898316483609 -0.154334226172726 1099999.99668571 - 85.3932168395373 -0.0624470584344224 1099999.99668545 - 85.3946166376436 -0.0252048276686645 1099999.99668534 - 85.3954722825398 -0.0102925879693253 1099999.99668528 - 85.3957131703527 -0.00415783321849259 1099999.99668526 - 85.3959464521014 -0.00178136275155632 1099999.99668524 - 85.3960598183460 -0.000771279716413700 1099999.99668523 - 85.3961229518865 -0.000313717121204467 1099999.99668523 - 85.3962380399061 -7.93448146847160e-05 1099999.99668522 - 85.3961751234532 2.27712265988689e-05 1099999.99668522 - 85.3962867239479 7.73532341839471e-05 1099999.99668522 - 85.3961363255980 1.93220562549024e-05 1099999.99668523 - 85.3962242667281 5.58524879016038e-05 1099999.99668522 - 85.3960942411692 -4.95797732400210e-05 1099999.99668523 - 85.3961285919287 -3.88794910739368e-06 1099999.99668523 - 85.3960661916749 -7.46950503026791e-05 1099999.99668523 - 85.3960601023794 -7.23564567142647e-06 1099999.99668523 - 85.3960415519354 -2.53215181587256e-05 1099999.99668523 - 85.3960174100084 6.11713582255282e-05 1099999.99668524 - 85.3960093291291 6.12048020012784e-05 1099999.99668524 - 85.3959832382905 0.000112374330830998 1099999.99668524 - 85.3959757850371 6.21674736329338e-05 1099999.99668524 - 85.3959641338577 4.80885785433286e-05 1099999.99668524 - 85.3959641338577 -4.80885789798876e-05 1099999.99668524 - 85.3959757850371 -6.21674731281959e-05 1099999.99668524 - 85.3959832382912 -0.000112374330754176 1099999.99668524 - 85.3960093291293 -6.12048018009813e-05 1099999.99668524 - 85.3960174100096 -6.11713585044582e-05 1099999.99668524 - 85.3960415519353 2.53215181719282e-05 1099999.99668523 - 85.3960601023799 7.23564553348691e-06 1099999.99668523 - 85.3960661916756 7.46950505375657e-05 1099999.99668523 - 85.3961285919279 3.88794829181190e-06 1099999.99668523 - 85.3960942411688 4.95797733598222e-05 1099999.99668523 - 85.3962242667265 -5.58524876684631e-05 1099999.99668522 - 85.3961363255981 -1.93220562588950e-05 1099999.99668523 - 85.3962867239466 -7.73532340696028e-05 1099999.99668522 - 85.3961751234530 -2.27712266376170e-05 1099999.99668522 - 85.3962380399055 7.93448152261876e-05 1099999.99668522 - 85.3961229518870 0.000313717120948181 1099999.99668523 - 85.3960598183472 0.000771279716979324 1099999.99668523 - 85.3959464521011 0.00178136275130654 1099999.99668524 - 85.3957131703522 0.00415783321788878 1099999.99668526 - 85.3954722825393 0.0102925879694502 1099999.99668528 - 85.3946166376440 0.0252048276682910 1099999.99668534 - 85.3932168395373 0.0624470584346437 1099999.99668545 - 85.3898316483614 0.154334226173246 1099999.99668571 - 85.3825357817174 0.380505544118858 1099999.99668622 - 85.3672395420312 0.937812461942887 1099999.99668707 - 85.3356732359929 2.30937120737057 1099999.99668750 - 85.2717632722988 5.68342749936175 1099999.99668019 - 85.1448592712727 13.9791432801731 1099999.99661588 - 84.8978572144904 34.3634960400412 1099999.99618705 - 84.4275618185985 84.4275618185987 1099999.99351999 - 83.5503621762108 207.327151460812 1099999.97728854 - 81.9504518485286 508.896305511007 1099999.87923121 - 79.0978230567924 1248.55148146854 1099999.28857374 - 74.1286461294732 3061.68166096842 1099995.73663281 - 65.6846653005631 7502.19913700919 1099974.41456319 - 51.7376885649358 18357.3071756004 1099846.81051339 - 29.5213944465856 44779.0664053627 1099088.18315017 - -4.10119021006597 108387.805300713 1094647.01326285 - -51.1178374456552 256860.542415963 1069589.94906307 - -107.002763239219 570374.377066123 940570.602632701 - -48.5427622714414 -570429.142008348 940537.395105171 - -25.6263539170610 -256914.861769172 1069576.90380141 - -5.78727848997843 -108430.226539643 1094642.81203462 - 8.94282210547857 -44808.0974825735 1099087.00034166 - 18.9788602294163 -18375.5133932775 1099846.50753973 - 25.4243065483794 -7512.93953589722 1099974.34292493 - 29.3946910864897 -3067.74324323106 1099995.72184956 - 31.7647494770670 -1251.86050718073 1099999.28719807 - 33.1436197090484 -510.656968115540 1099999.88096861 - 33.9275244898547 -208.245001218434 1099999.97976497 - 34.3634960400411 -84.8978572144904 1099999.99618705 - 34.6011159682788 -34.6011159682792 1099999.99891160 - 34.7280920484568 -14.0976028987888 1099999.99936146 - 34.7943700604049 -5.74185532163137 1099999.99943472 - 34.8283612745804 -2.33777778517569 1099999.99944615 - 34.8456185818567 -0.951374584788797 1099999.99944767 - 34.8540178371024 -0.386902286413306 1099999.99944775 - 34.8581792072546 -0.157297208151741 1099999.99944767 - 34.8599792682653 -0.0637668152895037 1099999.99944763 - 34.8609979489005 -0.0259842575431671 1099999.99944760 - 34.8614472829068 -0.0105950328732642 1099999.99944758 - 34.8616846286497 -0.00428477802817056 1099999.99944757 - 34.8617715387665 -0.00185601895494276 1099999.99944757 - 34.8619568419174 -0.000720029752584892 1099999.99944757 - 34.8620082643818 -0.000209455384789025 1099999.99944756 - 34.8620408987807 -0.000120656715465426 1099999.99944756 - 34.8621154447650 3.84587233028664e-05 1099999.99944756 - 34.8620277632311 -5.96125036273109e-05 1099999.99944756 - 34.8620863095867 7.72898170362932e-05 1099999.99944756 - 34.8619871202941 -4.66180752413854e-05 1099999.99944756 - 34.8620090378796 7.63248297561871e-05 1099999.99944756 - 34.8619192905734 -5.18552745149351e-05 1099999.99944757 - 34.8619388107477 8.15941081029146e-05 1099999.99944757 - 34.8618512442708 -5.27419582841371e-05 1099999.99944757 - 34.8618837021390 0.000123998474059562 1099999.99944757 - 34.8618018224388 -9.00295678306626e-06 1099999.99944757 - 34.8618304395153 0.000187995548873765 1099999.99944757 - 34.8617675242508 1.77247963407316e-05 1099999.99944757 - 34.8617805177212 0.000173406774644635 1099999.99944757 - 34.8617558962105 -5.70648399750424e-05 1099999.99944757 - 34.8617558962100 5.70648401725658e-05 1099999.99944757 - 34.8617805177214 -0.000173406774905361 1099999.99944757 - 34.8617675242508 -1.77247962132134e-05 1099999.99944757 - 34.8618304395156 -0.000187995549132547 1099999.99944757 - 34.8618018224392 9.00295696415828e-06 1099999.99944757 - 34.8618837021388 -0.000123998474042232 1099999.99944757 - 34.8618512442712 5.27419582101836e-05 1099999.99944757 - 34.8619388107473 -8.15941081177340e-05 1099999.99944757 - 34.8619192905741 5.18552748046172e-05 1099999.99944757 - 34.8620090378782 -7.63248297791223e-05 1099999.99944756 - 34.8619871202946 4.66180750361521e-05 1099999.99944756 - 34.8620863095859 -7.72898170354760e-05 1099999.99944756 - 34.8620277632315 5.96125037206358e-05 1099999.99944756 - 34.8621154447644 -3.84587232706489e-05 1099999.99944756 - 34.8620408987813 0.000120656715340914 1099999.99944756 - 34.8620082643817 0.000209455384737851 1099999.99944756 - 34.8619568419178 0.000720029752504285 1099999.99944757 - 34.8617715387671 0.00185601895541389 1099999.99944757 - 34.8616846286497 0.00428477802802662 1099999.99944757 - 34.8614472829068 0.0105950328729987 1099999.99944758 - 34.8609979489006 0.0259842575430748 1099999.99944760 - 34.8599792682650 0.0637668152895358 1099999.99944763 - 34.8581792072548 0.157297208151603 1099999.99944767 - 34.8540178371027 0.386902286413277 1099999.99944775 - 34.8456185818568 0.951374584789190 1099999.99944767 - 34.8283612745803 2.33777778517578 1099999.99944615 - 34.7943700604052 5.74185532163153 1099999.99943472 - 34.7280920484567 14.0976028987886 1099999.99936146 - 34.6011159682791 34.6011159682790 1099999.99891160 - 34.3634960400408 84.8978572144919 1099999.99618705 - 33.9275244898545 208.245001218436 1099999.97976497 - 33.1436197090461 510.656968115537 1099999.88096861 - 31.7647494770652 1251.86050718072 1099999.28719807 - 29.3946910864909 3067.74324323107 1099995.72184956 - 25.4243065483687 7512.93953589723 1099974.34292493 - 18.9788602294043 18375.5133932775 1099846.50753973 - 8.94282210546147 44808.0974825735 1099087.00034166 - -5.78727848998994 108430.226539643 1094642.81203462 - -25.6263539170846 256914.861769172 1069576.90380141 - -48.5427622714616 570429.142008348 940537.395105171 - -20.6056915515151 -570447.148291995 940526.475215310 - -11.7369821987796 -256934.674683846 1069572.14474170 - -3.75034838085421 -108447.095638244 1094641.14093778 - 2.46900180398938 -44820.4068029956 1099086.49847404 - 6.87230859107996 -18383.6233389771 1099846.37215645 - 9.78285835067655 -7517.91771627142 1099974.30916249 - 11.6150884671090 -3070.64645079339 1099995.71408050 - 12.7283641787948 -1253.49002743012 1099999.28572738 - 13.3858729044011 -511.545097613501 1099999.88097383 - 13.7650365509842 -208.717832177270 1099999.98011245 - 13.9791432801728 -85.1448592712728 1099999.99661588 - 14.0976028987887 -34.7280920484566 1099999.99936146 - 14.1618228502823 -14.1618228502825 1099999.99981768 - 14.1958527541369 -5.77385355598620 1099999.99989325 - 14.2137440075172 -2.35354013136608 1099999.99990565 - 14.2229400288324 -0.958973161628523 1099999.99990763 - 14.2274410317242 -0.390657205839721 1099999.99990792 - 14.2296747848056 -0.158971398569712 1099999.99990795 - 14.2307602622956 -0.0646958003351170 1099999.99990795 - 14.2312948943167 -0.0263958338400131 1099999.99990794 - 14.2316463206304 -0.0107312274260057 1099999.99990794 - 14.2316205191114 -0.00438947778346307 1099999.99990794 - 14.2319851255421 -0.00188523543727180 1099999.99990793 - 14.2319941912947 -0.000646901883724222 1099999.99990793 - 14.2320736107274 -0.000390002572145988 1099999.99990793 - 14.2321018129216 -0.000134429931437292 1099999.99990793 - 14.2320340348437 -6.36304715564510e-05 1099999.99990793 - 14.2319978586632 5.42916264731040e-06 1099999.99990793 - 14.2319615104193 4.07292448921293e-05 1099999.99990793 - 14.2319135884732 6.93519524511339e-05 1099999.99990793 - 14.2318461153852 -1.19785939490820e-05 1099999.99990793 - 14.2318710923341 4.95912562887429e-05 1099999.99990793 - 14.2317667441395 -7.99819251590420e-05 1099999.99990793 - 14.2318462720123 4.94663912543752e-05 1099999.99990793 - 14.2317363502089 -6.10360236675453e-05 1099999.99990794 - 14.2318144001583 9.55322408730595e-05 1099999.99990793 - 14.2317233329545 1.67588395577649e-05 1099999.99990794 - 14.2317672342096 0.000121121076967633 1099999.99990793 - 14.2317139356506 2.97549669524201e-05 1099999.99990794 - 14.2317258401675 5.91031428777529e-05 1099999.99990794 - 14.2317258401680 -5.91031427489885e-05 1099999.99990794 - 14.2317139356503 -2.97549669806799e-05 1099999.99990794 - 14.2317672342097 -0.000121121077118373 1099999.99990793 - 14.2317233329546 -1.67588395156717e-05 1099999.99990794 - 14.2318144001579 -9.55322409582427e-05 1099999.99990793 - 14.2317363502092 6.10360237566978e-05 1099999.99990794 - 14.2318462720120 -4.94663912721535e-05 1099999.99990793 - 14.2317667441397 7.99819251941489e-05 1099999.99990793 - 14.2318710923338 -4.95912561948899e-05 1099999.99990793 - 14.2318461153857 1.19785939252790e-05 1099999.99990793 - 14.2319135884730 -6.93519524905609e-05 1099999.99990793 - 14.2319615104195 -4.07292449074712e-05 1099999.99990793 - 14.2319978586632 -5.42916267253119e-06 1099999.99990793 - 14.2320340348439 6.36304715329113e-05 1099999.99990793 - 14.2321018129216 0.000134429931418594 1099999.99990793 - 14.2320736107274 0.000390002572053153 1099999.99990793 - 14.2319941912945 0.000646901883765394 1099999.99990793 - 14.2319851255422 0.00188523543718691 1099999.99990793 - 14.2316205191118 0.00438947778350325 1099999.99990794 - 14.2316463206304 0.0107312274259506 1099999.99990794 - 14.2312948943168 0.0263958338401044 1099999.99990794 - 14.2307602622952 0.0646958003350880 1099999.99990795 - 14.2296747848058 0.158971398569595 1099999.99990795 - 14.2274410317237 0.390657205839824 1099999.99990792 - 14.2229400288325 0.958973161628545 1099999.99990763 - 14.2137440075173 2.35354013136619 1099999.99990565 - 14.1958527541370 5.77385355598610 1099999.99989325 - 14.1618228502825 14.1618228502828 1099999.99981768 - 14.0976028987885 34.7280920484572 1099999.99936146 - 13.9791432801731 85.1448592712736 1099999.99661588 - 13.7650365509844 208.717832177270 1099999.98011245 - 13.3858729044002 511.545097613499 1099999.88097383 - 12.7283641787948 1253.49002743012 1099999.28572738 - 11.6150884671057 3070.64645079340 1099995.71408050 - 9.78285835067458 7517.91771627144 1099974.30916249 - 6.87230859107804 18383.6233389771 1099846.37215645 - 2.46900180396906 44820.4068029956 1099086.49847404 - -3.75034838089118 108447.095638244 1094641.14093778 - -11.7369821987406 256934.674683846 1069572.14474169 - -20.6056915515173 570447.148291995 940526.475215311 - -8.21517890261827 -570452.253234026 940523.379142025 - -5.00060429571659 -256941.339668686 1069570.54369698 - -1.94305220787464 -108453.470039913 1094640.50940595 - 0.586197366101952 -44825.4277947897 1099086.29371068 - 2.46220095017086 -18387.1187903352 1099846.31374412 - 3.74560421940584 -7520.15693892837 1099974.29389308 - 4.57511194805329 -3071.99907740516 1099995.71035561 - 5.08929982880562 -1254.27247274723 1099999.28489734 - 5.39849936753897 -511.982661665742 1099999.88083845 - 5.57967413250151 -208.955948864414 1099999.98013922 - 5.68342749936104 -85.2717632722995 1099999.99668019 - 5.74185532163128 -34.7943700604054 1099999.99943472 - 5.77385355598619 -14.1958527541372 1099999.99989325 - 5.79117591135841 -5.79117591135835 1099999.99996951 - 5.80047436712933 -2.36220105071641 1099999.99998217 - 5.80509655166431 -0.963278156159763 1099999.99998426 - 5.80747678350342 -0.392722321693664 1099999.99998460 - 5.80869824475722 -0.160058300392686 1099999.99998465 - 5.80923638053551 -0.0651999180082752 1099999.99998466 - 5.80969534709893 -0.0266118101721914 1099999.99998466 - 5.80974838515745 -0.0107286593232783 1099999.99998466 - 5.81000992738324 -0.00457812601744125 1099999.99998466 - 5.81021572334935 -0.00183182462650662 1099999.99998466 - 5.81009973933179 -0.000792763814851500 1099999.99998466 - 5.81011151292550 -0.000479365133337446 1099999.99998466 - 5.81001942388184 -0.000115252907077423 1099999.99998466 - 5.80989733492256 -6.71612694130790e-05 1099999.99998466 - 5.80995863394709 5.11766993349838e-05 1099999.99998466 - 5.80986672873383 5.70238191107689e-05 1099999.99998466 - 5.80985110617649 -2.56780462522707e-05 1099999.99998466 - 5.80988125200386 3.31471249648872e-05 1099999.99998466 - 5.80980133989394 -7.16130753739070e-05 1099999.99998466 - 5.80986044782638 2.03820431484555e-05 1099999.99998466 - 5.80977373419117 -3.65808283838661e-06 1099999.99998466 - 5.80979331428776 5.65122414733685e-05 1099999.99998466 - 5.80972073598899 9.94222623644518e-05 1099999.99998466 - 5.80969770173779 9.60524020869550e-05 1099999.99998466 - 5.80964500108644 0.000135772460186914 1099999.99998466 - 5.80961624994747 5.98488096294123e-05 1099999.99998466 - 5.80959562526265 5.94770921146041e-05 1099999.99998466 - 5.80959562526244 -5.94770921543299e-05 1099999.99998466 - 5.80961624994772 -5.98488095845437e-05 1099999.99998466 - 5.80964500108624 -0.000135772460201482 1099999.99998466 - 5.80969770173779 -9.60524020630732e-05 1099999.99998466 - 5.80972073598889 -9.94222623530651e-05 1099999.99998466 - 5.80979331428766 -5.65122415276176e-05 1099999.99998466 - 5.80977373419120 3.65808290152348e-06 1099999.99998466 - 5.80986044782626 -2.03820431591632e-05 1099999.99998466 - 5.80980133989399 7.16130753375751e-05 1099999.99998466 - 5.80988125200388 -3.31471249532347e-05 1099999.99998466 - 5.80985110617659 2.56780463173225e-05 1099999.99998466 - 5.80986672873378 -5.70238191162857e-05 1099999.99998466 - 5.80995863394717 -5.11766993802011e-05 1099999.99998466 - 5.80989733492254 6.71612694223957e-05 1099999.99998466 - 5.81001942388181 0.000115252907033642 1099999.99998466 - 5.81011151292548 0.000479365133352176 1099999.99998466 - 5.81009973933165 0.000792763814803682 1099999.99998466 - 5.81021572334932 0.00183182462640807 1099999.99998466 - 5.81000992738303 0.00457812601745529 1099999.99998466 - 5.80974838515748 0.0107286593233359 1099999.99998466 - 5.80969534709863 0.0266118101722305 1099999.99998466 - 5.80923638053564 0.0651999180082518 1099999.99998466 - 5.80869824475687 0.160058300392734 1099999.99998465 - 5.80747678350345 0.392722321693693 1099999.99998460 - 5.80509655166421 0.963278156159654 1099999.99998426 - 5.80047436712927 2.36220105071640 1099999.99998217 - 5.79117591135832 5.79117591135862 1099999.99996951 - 5.77385355598618 14.1958527541371 1099999.99989325 - 5.74185532163152 34.7943700604050 1099999.99943472 - 5.68342749936105 85.2717632723008 1099999.99668019 - 5.57967413250083 208.955948864417 1099999.98013922 - 5.39849936754027 511.982661665740 1099999.88083845 - 5.08929982880547 1254.27247274723 1099999.28489734 - 4.57511194805289 3071.99907740517 1099995.71035561 - 3.74560421941913 7520.15693892838 1099974.29389308 - 2.46220095019829 18387.1187903352 1099846.31374412 - 0.586197366094236 44825.4277947897 1099086.29371068 - -1.94305220788449 108453.470039913 1094640.50940595 - -5.00060429571285 256941.339668686 1069570.54369698 - -8.21517890265944 570452.253234026 940523.379142025 - -3.06389144013072 -570453.289974148 940522.750361884 - -1.99259428278037 -256943.328624854 1069570.06590088 - -0.887526174369424 -108455.739279648 1094640.28457595 - 0.100962191416390 -44827.3949016043 1099086.21348206 - 0.876726831772874 -18388.5772014527 1099846.28936399 - 1.42933924629069 -7521.13627868207 1099974.28720268 - 1.79715843078177 -3072.61329680702 1099995.70864813 - 2.03087347420889 -1254.63889224514 1099999.28448937 - 2.17409120345900 -512.193078943017 1099999.88075160 - 2.25952719697635 -209.073321762120 1099999.98012875 - 2.30937120737094 -85.3356732359929 1099999.99668750 - 2.33777778517578 -34.8283612745809 1099999.99944615 - 2.35354013136600 -14.2137440075174 1099999.99990565 - 2.36220105071639 -5.80047436712938 1099999.99998217 - 2.36679755612317 -2.36679755612304 1099999.99999491 - 2.36915510390480 -0.965606898244651 1099999.99999702 - 2.37050839249200 -0.393908349289272 1099999.99999738 - 2.37107838057920 -0.160567423044398 1099999.99999743 - 2.37154361694872 -0.0654753349170741 1099999.99999744 - 2.37175795167690 -0.0265918327279390 1099999.99999744 - 2.37185658750001 -0.0109783507254823 1099999.99999744 - 2.37213839199558 -0.00458201200886869 1099999.99999744 - 2.37193699636981 -0.00188271894744886 1099999.99999744 - 2.37178792120733 -0.000981568732553333 1099999.99999744 - 2.37179791312343 -0.000390496382178841 1099999.99999744 - 2.37165542880377 -6.15662749255678e-05 1099999.99999744 - 2.37171963902898 3.49931945911694e-06 1099999.99999744 - 2.37173271679826 9.76962350172306e-05 1099999.99999744 - 2.37158400528513 5.33369059774787e-05 1099999.99999744 - 2.37168731931397 7.41704834882731e-05 1099999.99999744 - 2.37153302656266 7.14069107802270e-05 1099999.99999744 - 2.37153538241653 4.26863414834387e-05 1099999.99999744 - 2.37144663541318 0.000132099948545455 1099999.99999744 - 2.37132182354869 7.89307883107757e-05 1099999.99999744 - 2.37126795402724 0.000171426863773893 1099999.99999744 - 2.37108226676489 0.000140827243207945 1099999.99999744 - 2.37103083224869 0.000163357122688712 1099999.99999744 - 2.37087009712485 0.000146632132590817 1099999.99999744 - 2.37083090047580 8.05757678488778e-05 1099999.99999744 - 2.37076721113944 5.75253652004478e-05 1099999.99999745 - 2.37076721113945 -5.75253652163659e-05 1099999.99999745 - 2.37083090047573 -8.05757678728880e-05 1099999.99999744 - 2.37087009712494 -0.000146632132556894 1099999.99999744 - 2.37103083224857 -0.000163357122686728 1099999.99999744 - 2.37108226676504 -0.000140827243184385 1099999.99999744 - 2.37126795402712 -0.000171426863769994 1099999.99999744 - 2.37132182354874 -7.89307883064178e-05 1099999.99999744 - 2.37144663541315 -0.000132099948548004 1099999.99999744 - 2.37153538241654 -4.26863414945457e-05 1099999.99999744 - 2.37153302656261 -7.14069107615836e-05 1099999.99999744 - 2.37168731931394 -7.41704834809333e-05 1099999.99999744 - 2.37158400528518 -5.33369059805319e-05 1099999.99999744 - 2.37173271679820 -9.76962350009483e-05 1099999.99999744 - 2.37171963902901 -3.49931947663386e-06 1099999.99999744 - 2.37165542880372 6.15662749079616e-05 1099999.99999744 - 2.37179791312344 0.000390496382188981 1099999.99999744 - 2.37178792120734 0.000981568732501221 1099999.99999744 - 2.37193699636972 0.00188271894746984 1099999.99999744 - 2.37213839199548 0.00458201200887091 1099999.99999744 - 2.37185658749991 0.0109783507255107 1099999.99999744 - 2.37175795167687 0.0265918327279048 1099999.99999744 - 2.37154361694870 0.0654753349170892 1099999.99999744 - 2.37107838057917 0.160567423044443 1099999.99999743 - 2.37050839249207 0.393908349289179 1099999.99999738 - 2.36915510390473 0.965606898244721 1099999.99999702 - 2.36679755612309 2.36679755612313 1099999.99999491 - 2.36220105071639 5.80047436712917 1099999.99998217 - 2.35354013136612 14.2137440075173 1099999.99990565 - 2.33777778517586 34.8283612745815 1099999.99944615 - 2.30937120737053 85.3356732359943 1099999.99668750 - 2.25952719697679 209.073321762119 1099999.98012875 - 2.17409120345915 512.193078943016 1099999.88075160 - 2.03087347420775 1254.63889224515 1099999.28448937 - 1.79715843078214 3072.61329680702 1099995.70864813 - 1.42933924629399 7521.13627868206 1099974.28720268 - 0.876726831780163 18388.5772014527 1099846.28936399 - 0.100962191435692 44827.3949016043 1099086.21348206 - -0.887526174369057 108455.739279648 1094640.28457595 - -1.99259428272490 256943.328624854 1069570.06590088 - -3.06389144013211 570453.289974148 940522.750361884 - -1.05395432622244 -570453.261672129 940522.767532248 - -0.739444714864452 -256943.799398595 1069569.95280817 - -0.368431315433994 -108456.486920500 1094640.21050057 - 0.00166972108871733 -44828.1325273356 1099086.18339697 - 0.312621098057115 -18389.1663407084 1099846.27951419 - 0.544592808285801 -7521.55283468680 1099974.28435517 - 0.704616306174546 -3072.88515921936 1099995.70788995 - 0.808902370271162 -1254.80645155924 1099999.28429982 - 0.874407757461259 -512.292212022457 1099999.88070723 - 0.914221273255889 -209.130178285147 1099999.98011988 - 0.937812461943121 -85.3672395420309 1099999.99668707 - 0.951374584789130 -34.8456185818567 1099999.99944767 - 0.958973161628519 -14.2229400288325 1099999.99990763 - 0.963278156159754 -5.80509655166435 1099999.99998426 - 0.965606898244613 -2.36915510390490 1099999.99999702 - 0.966888883141848 -0.966888883141785 1099999.99999915 - 0.967526328607137 -0.394497040750220 1099999.99999950 - 0.967921184966283 -0.160885348579895 1099999.99999956 - 0.968223412255869 -0.0655751282055732 1099999.99999957 - 0.968343670447901 -0.0268309419164431 1099999.99999957 - 0.968483634633377 -0.0111325995561205 1099999.99999957 - 0.968389730320273 -0.00463938768328080 1099999.99999957 - 0.968113450374626 -0.00200162977309428 1099999.99999957 - 0.968163185899035 -0.000852537850858545 1099999.99999957 - 0.968145393398539 -0.000193648902649793 1099999.99999957 - 0.968045907606833 2.16014587586705e-05 1099999.99999957 - 0.968192442170314 9.33188508642925e-05 1099999.99999957 - 0.967874964525383 0.000143651580557970 1099999.99999957 - 0.967960656702750 8.49942071715945e-05 1099999.99999957 - 0.967843279865133 0.000112652589746196 1099999.99999957 - 0.967677433927236 3.78999994095356e-05 1099999.99999957 - 0.967653214279406 8.58096919660601e-05 1099999.99999957 - 0.967321977333134 0.000103302939062525 1099999.99999957 - 0.967238713385078 0.000133450817843957 1099999.99999957 - 0.966836135726528 0.000239561441615256 1099999.99999958 - 0.966647464586286 0.000191542115455464 1099999.99999958 - 0.966268698635836 0.000303025627228158 1099999.99999958 - 0.966057337483391 0.000146288235039385 1099999.99999958 - 0.965821296615140 0.000216438837249599 1099999.99999958 - 0.965727672518212 -1.95867547926695e-05 1099999.99999958 - 0.965727672518247 1.95867547957405e-05 1099999.99999958 - 0.965821296615112 -0.000216438837247732 1099999.99999958 - 0.966057337483381 -0.000146288235051490 1099999.99999958 - 0.966268698635882 -0.000303025627226744 1099999.99999958 - 0.966647464586246 -0.000191542115457740 1099999.99999958 - 0.966836135726609 -0.000239561441597018 1099999.99999958 - 0.967238713385032 -0.000133450817854140 1099999.99999957 - 0.967321977333212 -0.000103302939044490 1099999.99999957 - 0.967653214279378 -8.58096919603001e-05 1099999.99999957 - 0.967677433927283 -3.78999994128331e-05 1099999.99999957 - 0.967843279865116 -0.000112652589752829 1099999.99999957 - 0.967960656702791 -8.49942071651687e-05 1099999.99999957 - 0.967874964525379 -0.000143651580556480 1099999.99999957 - 0.968192442170333 -9.33188508725464e-05 1099999.99999957 - 0.968045907606844 -2.16014587431821e-05 1099999.99999957 - 0.968145393398528 0.000193648902622825 1099999.99999957 - 0.968163185899050 0.000852537850876230 1099999.99999957 - 0.968113450374582 0.00200162977309518 1099999.99999957 - 0.968389730320325 0.00463938768328262 1099999.99999957 - 0.968483634633316 0.0111325995560977 1099999.99999957 - 0.968343670448003 0.0268309419164502 1099999.99999957 - 0.968223412255797 0.0655751282055795 1099999.99999957 - 0.967921184966399 0.160885348579843 1099999.99999956 - 0.967526328607081 0.394497040750294 1099999.99999950 - 0.966888883141889 0.966888883141789 1099999.99999915 - 0.965606898244631 2.36915510390478 1099999.99999702 - 0.963278156159772 5.80509655166445 1099999.99998426 - 0.958973161628444 14.2229400288325 1099999.99990763 - 0.951374584788868 34.8456185818567 1099999.99944767 - 0.937812461944036 85.3672395420316 1099999.99668707 - 0.914221273257057 209.130178285149 1099999.98011988 - 0.874407757457923 512.292212022458 1099999.88070723 - 0.808902370268646 1254.80645155923 1099999.28429982 - 0.704616306181226 3072.88515921936 1099995.70788995 - 0.544592808280932 7521.55283468680 1099974.28435517 - 0.312621098065803 18389.1663407084 1099846.27951419 - 0.00166972111451529 44828.1325273356 1099086.18339697 - -0.368431315428545 108456.486920500 1094640.21050057 - -0.739444714830684 256943.799398595 1069569.95280817 - -1.05395432621816 570453.261672129 940522.767532247 - -0.323033560183276 -570453.068534651 940522.884676017 - -0.251530963629688 -256943.844421398 1069569.94199252 - -0.139292731420592 -108456.706149029 1094640.18877953 - -0.00786448534739408 -44828.3954117151 1099086.17267474 - 0.112690211012841 -18389.3965182490 1099846.27566569 - 0.207846975239195 -7521.72505281550 1099974.28317765 - 0.275914882747899 -3073.00243637996 1099995.70756251 - 0.321764600794410 -1254.88168570014 1099999.28421424 - 0.351222065791681 -512.338188131433 1099999.88068611 - 0.369539971032657 -209.157020660499 1099999.98011509 - 0.380505544118763 -85.3825357817183 1099999.99668622 - 0.386902286413362 -34.8540178371029 1099999.99944775 - 0.390657205839952 -14.2274410317240 1099999.99990792 - 0.392722321693615 -5.80747678350355 1099999.99998460 - 0.393908349289232 -2.37050839249194 1099999.99999738 - 0.394497040750262 -0.967526328607142 1099999.99999950 - 0.394833891080287 -0.394833891080294 1099999.99999986 - 0.395148592924930 -0.161114014775787 1099999.99999992 - 0.395369013098776 -0.0658923618481237 1099999.99999993 - 0.395447510514173 -0.0270906644875182 1099999.99999993 - 0.395358102809184 -0.0111183470364222 1099999.99999993 - 0.395165625004288 -0.00452303512599096 1099999.99999993 - 0.395092252012606 -0.00179892812482437 1099999.99999993 - 0.395217055652496 -0.000615189447397268 1099999.99999993 - 0.395041471530003 -8.80809012888097e-05 1099999.99999993 - 0.395138845869358 3.36579419779045e-05 1099999.99999993 - 0.394911848272097 2.05831024910210e-05 1099999.99999993 - 0.394821303529843 0.000105090380273605 1099999.99999993 - 0.394866681154664 4.63413343860537e-05 1099999.99999993 - 0.394490274175576 0.000105389484761406 1099999.99999993 - 0.394392391246784 0.000137173105595767 1099999.99999993 - 0.393882358961339 0.000302180387348890 1099999.99999993 - 0.393455271845181 0.000451352597420428 1099999.99999993 - 0.392784246892458 0.000620204577929192 1099999.99999993 - 0.392030297138108 0.000778066115700638 1099999.99999993 - 0.391238914697218 0.000776711676559644 1099999.99999993 - 0.390376819469252 0.000811776052772846 1099999.99999993 - 0.389688624085763 0.000584086006818201 1099999.99999993 - 0.389101859116728 0.000473294021297813 1099999.99999993 - 0.388822758482085 9.00322107009087e-05 1099999.99999993 - 0.388822758482051 -9.00322107003138e-05 1099999.99999993 - 0.389101859116773 -0.000473294021294093 1099999.99999993 - 0.389688624085738 -0.000584086006815190 1099999.99999993 - 0.390376819469269 -0.000811776052781015 1099999.99999993 - 0.391238914697203 -0.000776711676562405 1099999.99999993 - 0.392030297138111 -0.000778066115708711 1099999.99999993 - 0.392784246892482 -0.000620204577927094 1099999.99999993 - 0.393455271845163 -0.000451352597422998 1099999.99999993 - 0.393882358961397 -0.000302180387341482 1099999.99999993 - 0.394392391246764 -0.000137173105596768 1099999.99999993 - 0.394490274175633 -0.000105389484762583 1099999.99999993 - 0.394866681154638 -4.63413343820687e-05 1099999.99999993 - 0.394821303529894 -0.000105090380280907 1099999.99999993 - 0.394911848272080 -2.05831024797197e-05 1099999.99999993 - 0.395138845869383 -3.36579419765454e-05 1099999.99999993 - 0.395041471530006 8.80809012925391e-05 1099999.99999993 - 0.395217055652476 0.000615189447399380 1099999.99999993 - 0.395092252012644 0.00179892812481623 1099999.99999993 - 0.395165625004261 0.00452303512598856 1099999.99999993 - 0.395358102809249 0.0111183470364173 1099999.99999993 - 0.395447510514125 0.0270906644875130 1099999.99999993 - 0.395369013098839 0.0658923618481192 1099999.99999993 - 0.395148592924876 0.161114014775808 1099999.99999992 - 0.394833891080311 0.394833891080252 1099999.99999986 - 0.394497040750257 0.967526328607168 1099999.99999950 - 0.393908349289246 2.37050839249202 1099999.99999738 - 0.392722321693606 5.80747678350342 1099999.99998460 - 0.390657205839978 14.2274410317243 1099999.99990792 - 0.386902286413288 34.8540178371026 1099999.99944775 - 0.380505544118146 85.3825357817182 1099999.99668622 - 0.369539971033630 209.157020660502 1099999.98011509 - 0.351222065794426 512.338188131434 1099999.88068611 - 0.321764600793062 1254.88168570014 1099999.28421424 - 0.275914882742632 3073.00243637997 1099995.70756251 - 0.207846975235188 7521.72505281549 1099974.28317765 - 0.112690211019879 18389.3965182490 1099846.27566569 - -0.00786448534250215 44828.3954117151 1099086.17267474 - -0.139292731342400 108456.706149029 1094640.18877953 - -0.251530963611613 256943.844421398 1069569.94199252 - -0.323033560103543 570453.068534651 940522.884676017 - -0.0800894919015386 -570452.921791802 940522.973679639 - -0.0751283250013548 -256943.803440492 1069569.95183743 - -0.0472310922675316 -108456.757792309 1094640.18366273 - -0.00341010139220609 -44828.4832533255 1099086.16909194 - 0.0416539094172025 -18389.4828139890 1099846.27422283 - 0.0795878529125600 -7521.79455632051 1099974.28270239 - 0.108004941693584 -3073.05222262518 1099995.70742345 - 0.127817158533384 -1254.91453055176 1099999.28417681 - 0.140969128648251 -512.358794347375 1099999.88067656 - 0.149197093005483 -209.169563626254 1099999.98011276 - 0.154334226173255 -85.3898316483609 1099999.99668571 - 0.157297208151767 -34.8581792072549 1099999.99944767 - 0.158971398569544 -14.2296747848057 1099999.99990795 - 0.160058300392770 -5.80869824475699 1099999.99998465 - 0.160567423044454 -2.37107838057933 1099999.99999743 - 0.160885348579845 -0.967921184966267 1099999.99999956 - 0.161114014775807 -0.395148592924893 1099999.99999992 - 0.161447538865127 -0.161447538865145 1099999.99999998 - 0.161534593319180 -0.0660661717824199 1099999.99999999 - 0.161362963993295 -0.0269032695782705 1099999.99999999 - 0.161258123864640 -0.0108517230124628 1099999.99999999 - 0.161144921699595 -0.00432039560360296 1099999.99999999 - 0.161286581286732 -0.00166603937705073 1099999.99999999 - 0.161200258755725 -0.000646454386858341 1099999.99999999 - 0.161211496104785 -0.000214613738586668 1099999.99999999 - 0.161092955347335 -0.000175053600819280 1099999.99999999 - 0.160901617443905 6.09290391707358e-05 1099999.99999999 - 0.160871553912743 0.000196487847860271 1099999.99999999 - 0.160421589595855 0.000271726975572272 1099999.99999999 - 0.159950732554684 0.000583105156908523 1099999.99999999 - 0.159284093171261 0.000745169574281060 1099999.99999999 - 0.158259198053968 0.00122247595542657 1099999.99999999 - 0.157066081184367 0.00140389951943546 1099999.99999999 - 0.155377563836300 0.00191723607690839 1099999.99999999 - 0.153578614959966 0.00190524118508545 1099999.99999999 - 0.151430850839915 0.00218177835716364 1099999.99999999 - 0.149418368423100 0.00180756610338962 1099999.99999999 - 0.147503282479205 0.00168803442742555 1099999.99999999 - 0.146116933702109 0.000910910135949395 1099999.99999999 - 0.145334338069836 0.000481648378070212 1099999.99999999 - 0.145334338069861 -0.000481648378072417 1099999.99999999 - 0.146116933702086 -0.000910910135950315 1099999.99999999 - 0.147503282479235 -0.00168803442742340 1099999.99999999 - 0.149418368423076 -0.00180756610338815 1099999.99999999 - 0.151430850839936 -0.00218177835716799 1099999.99999999 - 0.153578614959951 -0.00190524118508923 1099999.99999999 - 0.155377563836308 -0.00191723607690900 1099999.99999999 - 0.157066081184361 -0.00140389951944247 1099999.99999999 - 0.158259198053957 -0.00122247595542642 1099999.99999999 - 0.159284093171272 -0.000745169574277493 1099999.99999999 - 0.159950732554670 -0.000583105156906887 1099999.99999999 - 0.160421589595867 -0.000271726975576828 1099999.99999999 - 0.160871553912729 -0.000196487847852914 1099999.99999999 - 0.160901617443916 -6.09290391712309e-05 1099999.99999999 - 0.161092955347334 0.000175053600819017 1099999.99999999 - 0.161211496104791 0.000214613738592153 1099999.99999999 - 0.161200258755741 0.000646454386852248 1099999.99999999 - 0.161286581286730 0.00166603937705731 1099999.99999999 - 0.161144921699599 0.00432039560359740 1099999.99999999 - 0.161258123864643 0.0108517230124601 1099999.99999999 - 0.161362963993285 0.0269032695782712 1099999.99999999 - 0.161534593319175 0.0660661717824230 1099999.99999999 - 0.161447538865118 0.161447538865133 1099999.99999998 - 0.161114014775819 0.395148592924918 1099999.99999992 - 0.160885348579831 0.967921184966258 1099999.99999956 - 0.160567423044453 2.37107838057926 1099999.99999743 - 0.160058300392754 5.80869824475706 1099999.99998465 - 0.158971398569564 14.2296747848057 1099999.99990795 - 0.157297208151821 34.8581792072556 1099999.99944767 - 0.154334226172986 85.3898316483608 1099999.99668571 - 0.149197093005300 209.169563626252 1099999.98011276 - 0.140969128649683 512.358794347378 1099999.88067656 - 0.127817158532238 1254.91453055176 1099999.28417681 - 0.108004941690928 3073.05222262518 1099995.70742345 - 0.0795878529217221 7521.79455632050 1099974.28270239 - 0.0416539094034131 18389.4828139889 1099846.27422283 - -0.00341010138847651 44828.4832533254 1099086.16909194 - -0.0472310922063372 108456.757792309 1094640.18366273 - -0.0751283249967495 256943.803440492 1069569.95183743 - -0.0800894918457002 570452.921791802 940522.973679638 - -0.00968781531552258 -570452.838725871 940523.024061397 - -0.0174101551051383 -256943.764542599 1069569.96118191 - -0.0134874184049286 -108456.762970308 1094640.18314970 - -0.000248528912283469 -44828.5101687881 1099086.16799414 - 0.0159001552678202 -18389.5141975013 1099846.27369809 - 0.0306614335937577 -7521.82149127679 1099974.28251821 - 0.0423442638540554 -3073.07257293245 1099995.70736661 - 0.0507872284848917 -1254.92881726552 1099999.28416052 - 0.0565493276283093 -512.368138182790 1099999.88067222 - 0.0603100769073923 -209.175339630845 1099999.98011167 - 0.0624470584347089 -85.3932168395386 1099999.99668545 - 0.0637668152893765 -34.8599792682648 1099999.99944763 - 0.0646958003351762 -14.2307602622954 1099999.99990795 - 0.0651999180082852 -5.80923638053582 1099999.99998466 - 0.0654753349170702 -2.37154361694856 1099999.99999744 - 0.0655751282055871 -0.968223412255854 1099999.99999957 - 0.0658923618481030 -0.395369013098809 1099999.99999993 - 0.0660661717824236 -0.161534593319157 1099999.99999999 - 0.0658311046089201 -0.0658311046089219 1100000.00000000 - 0.0657080491415283 -0.0266881404730996 1100000.00000000 - 0.0656881120143873 -0.0107743250344890 1100000.00000000 - 0.0657677205433445 -0.00439998121885517 1100000.00000000 - 0.0657857900573417 -0.00188354867785232 1100000.00000000 - 0.0657521851752480 -0.000762135572309690 1100000.00000000 - 0.0656027800843263 -0.000292919786232918 1100000.00000000 - 0.0653499778895827 1.17810032392367e-05 1100000.00000000 - 0.0651458601455775 0.000474054442603446 1100000.00000000 - 0.0646334248088861 0.000640975233701607 1100000.00000000 - 0.0638569249275276 0.00107384276071112 1100000.00000000 - 0.0628504522762890 0.00146672736149852 1100000.00000000 - 0.0612447553634708 0.00209075832694052 1100000.00000000 - 0.0590135033515951 0.00273178266528167 1100000.00000000 - 0.0559459207279204 0.00353568714103935 1100000.00000000 - 0.0520621629011702 0.00422949547428960 1100000.00000000 - 0.0473778723808977 0.00480133795180589 1100000.00000000 - 0.0421780577045375 0.00500527786155587 1100000.00000000 - 0.0368689586636438 0.00477372925768683 1100000.00000000 - 0.0320363792721874 0.00392736841835263 1100000.00000000 - 0.0283377305560083 0.00265082352016300 1100000.00000000 - 0.0263207633762382 0.000889742140164814 1100000.00000000 - 0.0263207633762420 -0.000889742140164146 1100000.00000000 - 0.0283377305560014 -0.00265082352016309 1100000.00000000 - 0.0320363792721835 -0.00392736841835292 1100000.00000000 - 0.0368689586636478 -0.00477372925768655 1100000.00000000 - 0.0421780577045319 -0.00500527786155477 1100000.00000000 - 0.0473778723809046 -0.00480133795180402 1100000.00000000 - 0.0520621629011578 -0.00422949547429265 1100000.00000000 - 0.0559459207279292 -0.00353568714103537 1100000.00000000 - 0.0590135033515768 -0.00273178266528503 1100000.00000000 - 0.0612447553634738 -0.00209075832694043 1100000.00000000 - 0.0628504522762782 -0.00146672736149829 1100000.00000000 - 0.0638569249275281 -0.00107384276070958 1100000.00000000 - 0.0646334248088765 -0.000640975233702685 1100000.00000000 - 0.0651458601455824 -0.000474054442604005 1100000.00000000 - 0.0653499778895802 -1.17810032417223e-05 1100000.00000000 - 0.0656027800843294 0.000292919786229812 1100000.00000000 - 0.0657521851752537 0.000762135572314689 1100000.00000000 - 0.0657857900573398 0.00188354867785272 1100000.00000000 - 0.0657677205433575 0.00439998121885525 1100000.00000000 - 0.0656881120143650 0.0107743250344941 1100000.00000000 - 0.0657080491415462 0.0266881404730985 1100000.00000000 - 0.0658311046088921 0.0658311046089171 1100000.00000000 - 0.0660661717824463 0.161534593319157 1099999.99999999 - 0.0658923618480828 0.395369013098778 1099999.99999993 - 0.0655751282056092 0.968223412255888 1099999.99999957 - 0.0654753349170628 2.37154361694864 1099999.99999744 - 0.0651999180083056 5.80923638053568 1099999.99998466 - 0.0646958003350773 14.2307602622956 1099999.99990795 - 0.0637668152893823 34.8599792682649 1099999.99944763 - 0.0624470584352161 85.3932168395386 1099999.99668545 - 0.0603100769069456 209.175339630846 1099999.98011167 - 0.0565493276275940 512.368138182793 1099999.88067222 - 0.0507872284853413 1254.92881726552 1099999.28416052 - 0.0423442638521071 3073.07257293245 1099995.70736661 - 0.0306614335990111 7521.82149127679 1099974.28251821 - 0.0159001552739322 18389.5141975013 1099846.27369809 - -0.000248528946724129 44828.5101687879 1099086.16799414 - -0.0134874184659098 108456.762970308 1094640.18314970 - -0.0174101551412128 256943.764542599 1069569.96118191 - -0.00968781530452004 570452.838725871 940523.024061397 - 0.00544724764845582 -570452.797912931 940523.048815555 - -0.00119361041027833 -256943.741048133 1069569.96682601 - -0.00253776419877502 -108456.759136769 1094640.18352952 - 0.000753973417223601 -44828.5171470094 1099086.16770952 - 0.00631086693119083 -18389.5247623496 1099846.27352145 - 0.0119648702692011 -7521.83191686263 1099974.28244692 - 0.0165891457158713 -3073.08094620381 1099995.70734321 - 0.0202391909564057 -1254.93485348146 1099999.28415364 - 0.0227738060526217 -512.372178697864 1099999.88067033 - 0.0241963535947655 -209.177787864342 1099999.98011121 - 0.0252048276683286 -85.3946166376434 1099999.99668534 - 0.0259842575430360 -34.8609979489006 1099999.99944760 - 0.0263958338400536 -14.2312948943168 1099999.99990794 - 0.0266118101722521 -5.80969534709871 1099999.99998466 - 0.0265918327279301 -2.37175795167702 1099999.99999744 - 0.0268309419164217 -0.968343670447864 1099999.99999957 - 0.0270906644875181 -0.395447510514136 1099999.99999993 - 0.0269032695782772 -0.161362963993329 1099999.99999999 - 0.0266881404730927 -0.0657080491415249 1100000.00000000 - 0.0267081833543363 -0.0267081833543315 1100000.00000000 - 0.0268089453768228 -0.0109534485180726 1100000.00000000 - 0.0268188945244574 -0.00453032251003590 1100000.00000000 - 0.0267784151990640 -0.00177999423562016 1100000.00000000 - 0.0265420511635602 -0.000591891912560014 1100000.00000000 - 0.0262653820599144 -9.96221816006479e-06 1100000.00000000 - 0.0259772189442280 0.000613161193189621 1100000.00000000 - 0.0253882587908256 0.00104805631524230 1100000.00000000 - 0.0244276049261849 0.00148394389144484 1100000.00000000 - 0.0228920965817905 0.00231182838431733 1100000.00000000 - 0.0204886715185465 0.00333239437313559 1100000.00000000 - 0.0167041427817176 0.00476093017264327 1100000.00000000 - 0.0112859428819488 0.00650541275723829 1100000.00000000 - 0.00386507242496132 0.00854222007825296 1100000.00000000 - -0.00580397223899249 0.0105348707942572 1100000.00000000 - -0.0175160712613679 0.0121238835484269 1100000.00000000 - -0.0308247649979285 0.0129413889870094 1100000.00000000 - -0.0445385268680017 0.0123661416600202 1100000.00000000 - -0.0571823863532841 0.0104516453248933 1100000.00000000 - -0.0669313113912651 0.00691894361215488 1100000.00000000 - -0.0722736931260366 0.00248968832404471 1100000.00000000 - -0.0722736931260805 -0.00248968832404260 1100000.00000000 - -0.0669313113912276 -0.00691894361215068 1100000.00000000 - -0.0571823863533244 -0.0104516453248949 1100000.00000000 - -0.0445385268679775 -0.0123661416600150 1100000.00000000 - -0.0308247649979566 -0.0129413889870106 1100000.00000000 - -0.0175160712613650 -0.0121238835484239 1100000.00000000 - -0.00580397223899895 -0.0105348707942576 1100000.00000000 - 0.00386507242494834 -0.00854222007825416 1100000.00000000 - 0.0112859428819649 -0.00650541275723522 1100000.00000000 - 0.0167041427817107 -0.00476093017264389 1100000.00000000 - 0.0204886715185528 -0.00333239437313608 1100000.00000000 - 0.0228920965817836 -0.00231182838431520 1100000.00000000 - 0.0244276049261943 -0.00148394389144622 1100000.00000000 - 0.0253882587908167 -0.00104805631524494 1100000.00000000 - 0.0259772189442325 -0.000613161193187973 1100000.00000000 - 0.0262653820599132 9.96221815891183e-06 1100000.00000000 - 0.0265420511635507 0.000591891912558441 1100000.00000000 - 0.0267784151990709 0.00177999423562052 1100000.00000000 - 0.0268188945244520 0.00453032251004340 1100000.00000000 - 0.0268089453768275 0.0109534485180683 1100000.00000000 - 0.0267081833543265 0.0267081833543341 1100000.00000000 - 0.0266881404731011 0.0657080491415311 1100000.00000000 - 0.0269032695782672 0.161362963993307 1099999.99999999 - 0.0270906644875197 0.395447510514138 1099999.99999993 - 0.0268309419164278 0.968343670447869 1099999.99999957 - 0.0265918327279561 2.37175795167698 1099999.99999744 - 0.0266118101721965 5.80969534709882 1099999.99998466 - 0.0263958338400893 14.2312948943168 1099999.99990794 - 0.0259842575432230 34.8609979489007 1099999.99944760 - 0.0252048276680574 85.3946166376435 1099999.99668534 - 0.0241963535943872 209.177787864342 1099999.98011121 - 0.0227738060527578 512.372178697865 1099999.88067033 - 0.0202391909592117 1254.93485348147 1099999.28415364 - 0.0165891457175171 3073.08094620382 1099995.70734321 - 0.0119648702602310 7521.83191686261 1099974.28244692 - 0.00631086694253098 18389.5247623496 1099846.27352145 - 0.000753973399053727 44828.5171470094 1099086.16770952 - -0.00253776432920861 108456.759136768 1094640.18352952 - -0.00119361041825774 256943.741048133 1069569.96682601 - 0.00544724760913186 570452.797912931 940523.048815556 - 0.00584353853783741 -570452.779709082 940523.059856685 - 0.00196141565507211 -256943.729188222 1069569.96967513 - 0.000205391589889475 -108456.755351041 1094640.18390461 - 0.000832909132356549 -44828.5185413288 1099086.16765265 - 0.00264587834858784 -18389.5281418025 1099846.27346494 - 0.00460354709662180 -7521.83562478699 1099974.28242156 - 0.00658313039761436 -3073.08443040946 1099995.70733348 - 0.00818327419993887 -1254.93731063001 1099999.28415083 - 0.00909212255627926 -512.373756896710 1099999.88066960 - 0.00976499570279870 -209.178900960746 1099999.98011099 - 0.0102925879694157 -85.3954722825389 1099999.99668528 - 0.0105950328732764 -34.8614472829069 1099999.99944758 - 0.0107312274259714 -14.2316463206307 1099999.99990794 - 0.0107286593232855 -5.80974838515757 1099999.99998466 - 0.0109783507254759 -2.37185658749976 1099999.99999744 - 0.0111325995561199 -0.968483634633380 1099999.99999957 - 0.0111183470364234 -0.395358102809241 1099999.99999993 - 0.0108517230124564 -0.161258123864620 1099999.99999999 - 0.0107743250344910 -0.0656881120143916 1100000.00000000 - 0.0109534485180699 -0.0268089453768270 1100000.00000000 - 0.0109335187956214 -0.0109335187956186 1100000.00000000 - 0.0108741091198904 -0.00436070481231148 1100000.00000000 - 0.0106035049157061 -0.00158255712984092 1100000.00000000 - 0.0103394968425267 -0.000343528795712446 1100000.00000000 - 0.00999786528179603 0.000539753282327450 1100000.00000000 - 0.00930502552670796 0.00120859837769219 1100000.00000000 - 0.00810849172048011 0.00195457293671927 1100000.00000000 - 0.00594829057117159 0.00324034445914329 1100000.00000000 - 0.00241481668489621 0.00514909396165618 1100000.00000000 - -0.00331909422394484 0.00775177097976533 1100000.00000000 - -0.0121576943745695 0.0113448872316910 1100000.00000000 - -0.0249499810017651 0.0158324730969975 1100000.00000000 - -0.0429679210084368 0.0210824881328898 1100000.00000000 - -0.0666324192484484 0.0262662019264631 1100000.00000000 - -0.0960754292438374 0.0307491510616090 1100000.00000000 - -0.129890871312025 0.0329954820552563 1099999.99999999 - -0.165346268034381 0.0321121170527292 1099999.99999999 - -0.198349241075032 0.0272048290580688 1099999.99999998 - -0.224046980455995 0.0182818838556584 1099999.99999998 - -0.238204716796064 0.00649352844016288 1099999.99999997 - -0.238204716795999 -0.00649352844016345 1099999.99999997 - -0.224046980456059 -0.0182818838556616 1099999.99999998 - -0.198349241074965 -0.0272048290580649 1099999.99999998 - -0.165346268034444 -0.0321121170527335 1099999.99999999 - -0.129890871311972 -0.0329954820552482 1099999.99999999 - -0.0960754292438928 -0.0307491510616163 1100000.00000000 - -0.0666324192484278 -0.0262662019264564 1100000.00000000 - -0.0429679210084632 -0.0210824881328967 1100000.00000000 - -0.0249499810017832 -0.0158324730970044 1100000.00000000 - -0.0121576943745511 -0.0113448872316855 1100000.00000000 - -0.00331909422394499 -0.00775177097976401 1100000.00000000 - 0.00241481668489954 -0.00514909396165896 1100000.00000000 - 0.00594829057117070 -0.00324034445913879 1100000.00000000 - 0.00810849172048241 -0.00195457293671837 1100000.00000000 - 0.00930502552670026 -0.00120859837769351 1100000.00000000 - 0.00999786528179732 -0.000539753282323818 1100000.00000000 - 0.0103394968425274 0.000343528795710656 1100000.00000000 - 0.0106035049156988 0.00158255712983930 1100000.00000000 - 0.0108741091198917 0.00436070481230867 1100000.00000000 - 0.0109335187956252 0.0109335187956285 1100000.00000000 - 0.0109534485180675 0.0268089453768270 1100000.00000000 - 0.0107743250344960 0.0656881120143799 1100000.00000000 - 0.0108517230124476 0.161258123864627 1099999.99999999 - 0.0111183470364274 0.395358102809208 1099999.99999993 - 0.0111325995561190 0.968483634633373 1099999.99999957 - 0.0109783507254918 2.37185658749987 1099999.99999744 - 0.0107286593233211 5.80974838515749 1099999.99998466 - 0.0107312274260191 14.2316463206306 1099999.99990794 - 0.0105950328730064 34.8614472829073 1099999.99944758 - 0.0102925879693460 85.3954722825395 1099999.99668528 - 0.00976499570368549 209.178900960746 1099999.98011099 - 0.00909212255563832 512.373756896710 1099999.88066960 - 0.00818327419933630 1254.93731063001 1099999.28415083 - 0.00658313040524507 3073.08443040946 1099995.70733348 - 0.00460354709490914 7521.83562478699 1099974.28242156 - 0.00264587833947116 18389.5281418025 1099846.27346494 - 0.000832909159241921 44828.5185413288 1099086.16765265 - 0.000205391577289143 108456.755351041 1094640.18390461 - 0.00196141562692766 256943.729188222 1069569.96967513 - 0.00584353841493215 570452.779709082 940523.059856685 - 0.00370568916034658 -570452.772274352 940523.064366051 - 0.00167522055783887 -256943.723797009 1069569.97097026 - 0.000657961619233001 -108456.753057704 1094640.18413184 - 0.000536512866715069 -44828.5183157066 1099086.16766185 - 0.00106444305045825 -18389.5292727728 1099846.27344603 - 0.00190563024890725 -7521.83713691645 1099974.28241122 - 0.00269898399753015 -3073.08553123421 1099995.70733041 - 0.00333895264463339 -1254.93837658934 1099999.28414962 - 0.00368352599923089 -512.374585560715 1099999.88066921 - 0.00389573473081972 -209.179370149595 1099999.98011090 - 0.00415783321843563 -85.3957131703530 1099999.99668526 - 0.00428477802814467 -34.8616846286496 1099999.99944757 - 0.00438947778350371 -14.2316205191114 1099999.99990794 - 0.00457812601739393 -5.81000992738308 1099999.99998466 - 0.00458201200886669 -2.37213839199570 1099999.99999744 - 0.00463938768328455 -0.968389730320253 1099999.99999957 - 0.00452303512599272 -0.395165625004232 1099999.99999993 - 0.00432039560359888 -0.161144921699624 1099999.99999999 - 0.00439998121885518 -0.0657677205433532 1100000.00000000 - 0.00453032251003737 -0.0268188945244552 1100000.00000000 - 0.00436070481231032 -0.0108741091198923 1100000.00000000 - 0.00416682365638381 -0.00416682365638222 1100000.00000000 - 0.00386893479922669 -0.00132411045203244 1100000.00000000 - 0.00347636536721508 0.000165646028207741 1100000.00000000 - 0.00267726147589223 0.00125175899007929 1100000.00000000 - 0.00120847945793010 0.00240925105527074 1100000.00000000 - -0.00146994623087913 0.00435661725922839 1100000.00000000 - -0.00622152078215989 0.00729316639373539 1100000.00000000 - -0.0141093513040159 0.0117196219514472 1100000.00000000 - -0.0271363420367729 0.0180387770812032 1100000.00000000 - -0.0472692491525682 0.0268127597113519 1100000.00000000 - -0.0775717008453269 0.0381326983819100 1100000.00000000 - -0.120718722974804 0.0513632590637301 1099999.99999999 - -0.178886579999555 0.0652368545863957 1099999.99999998 - -0.252545945341689 0.0774090306907817 1099999.99999997 - -0.338546784162358 0.0844033508620416 1099999.99999994 - -0.430337686208176 0.0833301060469814 1099999.99999991 - -0.516657509679615 0.0711864937586583 1099999.99999988 - -0.584784101672556 0.0484019254014000 1099999.99999984 - -0.622405199001545 0.0170734009622989 1099999.99999982 - -0.622405199001595 -0.0170734009623082 1099999.99999982 - -0.584784101672491 -0.0484019254014057 1099999.99999984 - -0.516657509679662 -0.0711864937586682 1099999.99999988 - -0.430337686208089 -0.0833301060469807 1099999.99999991 - -0.338546784162415 -0.0844033508620496 1099999.99999994 - -0.252545945341595 -0.0774090306907707 1099999.99999997 - -0.178886579999629 -0.0652368545864054 1099999.99999998 - -0.120718722974745 -0.0513632590637168 1099999.99999999 - -0.0775717008453911 -0.0381326983819248 1100000.00000000 - -0.0472692491525999 -0.0268127597113697 1100000.00000000 - -0.0271363420367485 -0.0180387770811914 1100000.00000000 - -0.0141093513040178 -0.0117196219514485 1100000.00000000 - -0.00622152078216031 -0.00729316639373873 1100000.00000000 - -0.00146994623087714 -0.00435661725922057 1100000.00000000 - 0.00120847945792970 -0.00240925105527045 1100000.00000000 - 0.00267726147588569 -0.00125175899008188 1100000.00000000 - 0.00347636536721998 -0.000165646028205303 1100000.00000000 - 0.00386893479922688 0.00132411045203284 1100000.00000000 - 0.00416682365638196 0.00416682365638321 1100000.00000000 - 0.00436070481231026 0.0108741091198877 1100000.00000000 - 0.00453032251004330 0.0268188945244598 1100000.00000000 - 0.00439998121885131 0.0657677205433587 1100000.00000000 - 0.00432039560360483 0.161144921699603 1099999.99999999 - 0.00452303512598143 0.395165625004233 1099999.99999993 - 0.00463938768327059 0.968389730320234 1099999.99999957 - 0.00458201200889235 2.37213839199564 1099999.99999744 - 0.00457812601751493 5.81000992738316 1099999.99998466 - 0.00438947778335524 14.2316205191117 1099999.99990794 - 0.00428477802805377 34.8616846286499 1099999.99944757 - 0.00415783321858342 85.3957131703522 1099999.99668526 - 0.00389573473056029 209.179370149595 1099999.98011090 - 0.00368352600138641 512.374585560719 1099999.88066921 - 0.00333895264588471 1254.93837658933 1099999.28414962 - 0.00269898399303619 3073.08553123421 1099995.70733041 - 0.00190563025921133 7521.83713691646 1099974.28241122 - 0.00106444305790231 18389.5292727728 1099846.27344603 - 0.000536512884691884 44828.5183157066 1099086.16766185 - 0.000657961694010369 108456.753057704 1094640.18413184 - 0.00167522054678199 256943.723797009 1069569.97097026 - 0.00370568914911274 570452.772274352 940523.064366051 - 0.00191914942530260 -570452.769385412 940523.066118271 - 0.00108652465558288 -256943.721491919 1069569.97152402 - 0.000409843533887791 -108456.751868812 1094640.18424963 - 0.000321961388058346 -44828.5181770386 1099086.16766751 - 0.000499391075845091 -18389.5294366849 1099846.27344329 - 0.000750392042995319 -7521.83759116737 1099974.28240812 - 0.00119437171456675 -3073.08629608078 1099995.70732827 - 0.00141553000468074 -1254.93868736675 1099999.28414926 - 0.00140611300639324 -512.374689132977 1099999.88066917 - 0.00154613481601292 -209.179536701428 1099999.98011087 - 0.00178136275118567 -85.3959464521008 1099999.99668524 - 0.00185601895502653 -34.8617715387664 1099999.99944757 - 0.00188523543726957 -14.2319851255424 1099999.99990793 - 0.00183182462650621 -5.81021572334950 1099999.99998466 - 0.00188271894741956 -2.37193699636964 1099999.99999744 - 0.00200162977309871 -0.968113450374623 1099999.99999957 - 0.00179892812483127 -0.395092252012653 1099999.99999993 - 0.00166603937705284 -0.161286581286711 1099999.99999999 - 0.00188354867784965 -0.0657857900573463 1100000.00000000 - 0.00177999423562085 -0.0267784151990728 1100000.00000000 - 0.00158255712984107 -0.0106035049157024 1100000.00000000 - 0.00132411045203263 -0.00386893479922451 1100000.00000000 - 0.000847135914764426 -0.000847135914765154 1100000.00000000 - 1.89381302493724e-05 0.000998643807797151 1100000.00000000 - -0.00158500367486711 0.00266646015578864 1100000.00000000 - -0.00469204495468719 0.00533700168858542 1100000.00000000 - -0.0103658891598658 0.00949809123330358 1100000.00000000 - -0.0205105408715335 0.0161066405457906 1100000.00000000 - -0.0379130454840698 0.0263006658640437 1100000.00000000 - -0.0668520031342278 0.0414252557960306 1100000.00000000 - -0.113015031217634 0.0629248278190140 1099999.99999999 - -0.183822356101540 0.0909725644997384 1099999.99999998 - -0.286947074712219 0.125005329845550 1099999.99999996 - -0.429341710259859 0.161842037823034 1099999.99999990 - -0.612928287321336 0.195293432822684 1099999.99999981 - -0.832096708520193 0.216809189072321 1099999.99999966 - -1.06955966373818 0.216686523120211 1099999.99999946 - -1.29667208930903 0.187513815807174 1099999.99999922 - -1.47752424475239 0.128227291407408 1099999.99999900 - -1.57827751785772 0.0456034502092527 1099999.99999887 - -1.57827751785772 -0.0456034502092571 1099999.99999887 - -1.47752424475238 -0.128227291407424 1099999.99999900 - -1.29667208930901 -0.187513815807173 1099999.99999922 - -1.06955966373818 -0.216686523120235 1099999.99999946 - -0.832096708520117 -0.216809189072313 1099999.99999966 - -0.612928287321353 -0.195293432822700 1099999.99999981 - -0.429341710259735 -0.161842037823013 1099999.99999990 - -0.286947074712278 -0.125005329845555 1099999.99999996 - -0.183822356101417 -0.0909725644997065 1099999.99999998 - -0.113015031217749 -0.0629248278190436 1099999.99999999 - -0.0668520031342650 -0.0414252557960599 1100000.00000000 - -0.0379130454840414 -0.0263006658640221 1100000.00000000 - -0.0205105408715402 -0.0161066405457974 1100000.00000000 - -0.0103658891598623 -0.00949809123330879 1100000.00000000 - -0.00469204495468381 -0.00533700168857692 1100000.00000000 - -0.00158500367486542 -0.00266646015578836 1100000.00000000 - 1.89381302419977e-05 -0.000998643807800439 1100000.00000000 - 0.000847135914767994 0.000847135914765800 1100000.00000000 - 0.00132411045203353 0.00386893479922666 1100000.00000000 - 0.00158255712984102 0.0106035049157069 1100000.00000000 - 0.00177999423562077 0.0267784151990688 1100000.00000000 - 0.00188354867785150 0.0657857900573439 1100000.00000000 - 0.00166603937705215 0.161286581286719 1099999.99999999 - 0.00179892812481877 0.395092252012629 1099999.99999993 - 0.00200162977310088 0.968113450374596 1099999.99999957 - 0.00188271894746159 2.37193699636962 1099999.99999744 - 0.00183182462641553 5.81021572334956 1099999.99998466 - 0.00188523543726041 14.2319851255424 1099999.99990793 - 0.00185601895532526 34.8617715387665 1099999.99944757 - 0.00178136275149571 85.3959464521016 1099999.99668524 - 0.00154613481548540 209.179536701427 1099999.98011087 - 0.00140611300575405 512.374689132975 1099999.88066917 - 0.00141553000699535 1254.93868736676 1099999.28414926 - 0.00119437171636326 3073.08629608077 1099995.70732827 - 0.000750392053906761 7521.83759116735 1099974.28240812 - 0.000499391104173774 18389.5294366849 1099846.27344329 - 0.000321961392361148 44828.5181770386 1099086.16766751 - 0.000409843567828147 108456.751868812 1094640.18424963 - 0.00108652469707155 256943.721491919 1069569.97152402 - 0.00191914948675968 570452.769385412 940523.066118272 - 0.00100620741009738 -570452.768365276 940523.066737011 - 0.000439493691398622 -256943.720497019 1069569.97176302 - 0.000203149505299167 -108456.751258488 1094640.18431010 - 0.000129313579346288 -44828.5179379603 1099086.16767726 - 0.000210608474153136 -18389.5296977589 1099846.27343893 - 0.000417341705846654 -7521.83782178506 1099974.28240654 - 0.000596683592728995 -3073.08623827544 1099995.70732843 - 0.000543651613323894 -1254.93890239437 1099999.28414902 - 0.000534186623669388 -512.374840168638 1099999.88066909 - 0.000758085607016449 -209.179647604845 1099999.98011085 - 0.000771279716373249 -85.3960598183465 1099999.99668523 - 0.000720029752627876 -34.8619568419181 1099999.99944757 - 0.000646901883717295 -14.2319941912946 1099999.99990793 - 0.000792763814758086 -5.81009973933158 1099999.99998466 - 0.000981568732575941 -2.37178792120748 1099999.99999744 - 0.000852537850873985 -0.968163185899049 1099999.99999957 - 0.000615189447388597 -0.395217055652436 1099999.99999993 - 0.000646454386860047 -0.161200258755744 1099999.99999999 - 0.000762135572313352 -0.0657521851752604 1100000.00000000 - 0.000591891912558026 -0.0265420511635560 1100000.00000000 - 0.000343528795711184 -0.0103394968425242 1100000.00000000 - -0.000165646028206005 -0.00347636536721805 1100000.00000000 - -0.000998643807797226 -1.89381302494499e-05 1100000.00000000 - -0.00251927864159552 0.00251927864159975 1100000.00000000 - -0.00593767084895706 0.00596852438630264 1100000.00000000 - -0.0121524107815633 0.0113728824223882 1100000.00000000 - -0.0240208091248528 0.0203052310543948 1100000.00000000 - -0.0453640760104451 0.0350914701930657 1100000.00000000 - -0.0828909896014835 0.0585266288367001 1100000.00000000 - -0.146668071191008 0.0944528098583441 1099999.99999999 - -0.251062579974227 0.146013047088915 1099999.99999996 - -0.415073684513814 0.215886894423104 1099999.99999990 - -0.660170892183228 0.302997294173791 1099999.99999976 - -1.00646387200685 0.400366199222581 1099999.99999947 - -1.46346203875311 0.492654883359141 1099999.99999892 - -2.02096645676908 0.556688263018021 1099999.99999800 - -2.63658743503187 0.564781116428130 1099999.99999669 - -3.23526726762760 0.494951293538160 1099999.99999513 - -3.71769087301996 0.341217508755037 1099999.99999366 - -3.98876242675921 0.121987361341048 1099999.99999276 - -3.98876242675911 -0.121987361341047 1099999.99999276 - -3.71769087302008 -0.341217508755027 1099999.99999366 - -3.23526726762753 -0.494951293538177 1099999.99999513 - -2.63658743503197 -0.564781116428117 1099999.99999669 - -2.02096645676905 -0.556688263018069 1099999.99999800 - -1.46346203875311 -0.492654883359118 1099999.99999892 - -1.00646387200683 -0.400366199222628 1099999.99999947 - -0.660170892183126 -0.302997294173751 1099999.99999976 - -0.415073684513805 -0.215886894423097 1099999.99999990 - -0.251062579974036 -0.146013047088852 1099999.99999996 - -0.146668071191168 -0.0944528098583949 1099999.99999999 - -0.0828909896015095 -0.0585266288367347 1100000.00000000 - -0.0453640760104202 -0.0350914701930345 1100000.00000000 - -0.0240208091248642 -0.0203052310544071 1100000.00000000 - -0.0121524107815556 -0.0113728824223961 1100000.00000000 - -0.00593767084895549 -0.00596852438629423 1100000.00000000 - -0.00251927864159156 -0.00251927864159655 1100000.00000000 - -0.000998643807804305 1.89381302461245e-05 1100000.00000000 - -0.000165646028206367 0.00347636536721644 1100000.00000000 - 0.000343528795712315 0.0103394968425261 1100000.00000000 - 0.000591891912559146 0.0265420511635634 1100000.00000000 - 0.000762135572316232 0.0657521851752556 1100000.00000000 - 0.000646454386854031 0.161200258755742 1099999.99999999 - 0.000615189447394455 0.395217055652447 1099999.99999993 - 0.000852537850860643 0.968163185898969 1099999.99999957 - 0.000981568732513574 2.37178792120746 1099999.99999744 - 0.000792763814829348 5.81009973933171 1099999.99998466 - 0.000646901883849834 14.2319941912947 1099999.99990793 - 0.000720029752592910 34.8619568419178 1099999.99944757 - 0.000771279716391288 85.3960598183466 1099999.99668523 - 0.000758085607762715 209.179647604847 1099999.98011085 - 0.000534186621905626 512.374840168639 1099999.88066909 - 0.000543651609367173 1254.93890239436 1099999.28414902 - 0.000596683599866847 3073.08623827543 1099995.70732843 - 0.000417341702733229 7521.83782178504 1099974.28240654 - 0.000210608469426112 18389.5296977589 1099846.27343893 - 0.000129313577657056 44828.5179379603 1099086.16767726 - 0.000203149491642763 108456.751258488 1094640.18431010 - 0.000439493635378855 256943.720497019 1069569.97176302 - 0.00100620733152469 570452.768365276 940523.066737011 - 0.000322278266087125 -570452.767975874 940523.066973194 - 0.000244501547922582 -256943.720116263 1069569.97185449 - 3.78523919452299e-05 -108456.750941222 1094640.18434154 - 4.45651810775823e-05 -44828.5179218368 1099086.16767792 - 0.000120536321013917 -18389.5296773969 1099846.27343927 - 0.000231560350761011 -7521.83794400276 1099974.28240570 - 0.000283660902080937 -3073.08650059261 1099995.70732770 - 0.000234952156391223 -1254.93875110628 1099999.28414919 - 0.000238313156067152 -512.374838416436 1099999.88066910 - 0.000302313364705332 -209.179713121416 1099999.98011084 - 0.000313717121107803 -85.3961229518867 1099999.99668523 - 0.000209455384535402 -34.8620082643818 1099999.99944756 - 0.000390002572051930 -14.2320736107275 1099999.99990793 - 0.000479365133442027 -5.81011151292566 1099999.99998466 - 0.000390496382159845 -2.37179791312337 1099999.99999744 - 0.000193648902629821 -0.968145393398498 1099999.99999957 - 8.80809013022320e-05 -0.395041471530027 1099999.99999993 - 0.000214613738585795 -0.161211496104789 1099999.99999999 - 0.000292919786231642 -0.0656027800843257 1100000.00000000 - 9.96221815989924e-06 -0.0262653820599151 1100000.00000000 - -0.000539753282325220 -0.00999786528179946 1100000.00000000 - -0.00125175899007912 -0.00267726147588985 1100000.00000000 - -0.00266646015578709 0.00158500367487289 1100000.00000000 - -0.00596852438629819 0.00593767084895961 1100000.00000000 - -0.0124047654216971 0.0124047654216786 1100000.00000000 - -0.0248427473330991 0.0234489420478681 1100000.00000000 - -0.0487912911226185 0.0427944232625000 1100000.00000000 - -0.0929239129796351 0.0753921093631026 1099999.99999999 - -0.172541633505001 0.128854953810829 1099999.99999998 - -0.311242933286825 0.212161304025531 1099999.99999994 - -0.544802120729879 0.336024355829269 1099999.99999981 - -0.921030811737360 0.508606405369598 1099999.99999950 - -1.49882328939087 0.730555621250491 1099999.99999874 - -2.33569070280237 0.987180808502563 1099999.99999708 - -3.46951288488438 1.24104649415626 1099999.99999383 - -4.88481073736365 1.42975413328680 1099999.99998822 - -6.48287830640963 1.47558193696043 1099999.99997991 - -8.06483529365456 1.31093931212885 1099999.99996965 - -9.35868667028171 0.912449445627814 1099999.99995981 - -10.0918437734642 0.327955753951130 1099999.99995366 - -10.0918437734645 -0.327955753951143 1099999.99995366 - -9.35868667028149 -0.912449445627794 1099999.99995981 - -8.06483529365476 -1.31093931212885 1099999.99996965 - -6.48287830640945 -1.47558193696040 1099999.99997991 - -4.88481073736390 -1.42975413328682 1099999.99998822 - -3.46951288488434 -1.24104649415631 1099999.99999383 - -2.33569070280248 -0.987180808502549 1099999.99999708 - -1.49882328939088 -0.730555621250602 1099999.99999874 - -0.921030811737346 -0.508606405369546 1099999.99999950 - -0.544802120729775 -0.336024355829251 1099999.99999981 - -0.311242933286606 -0.212161304025434 1099999.99999994 - -0.172541633505177 -0.128854953810902 1099999.99999998 - -0.0929239129796382 -0.0753921093631343 1099999.99999999 - -0.0487912911226046 -0.0427944232624597 1100000.00000000 - -0.0248427473331131 -0.0234489420478826 1100000.00000000 - -0.0124047654216883 -0.0124047654216905 1100000.00000000 - -0.00596852438629903 -0.00593767084895330 1100000.00000000 - -0.00266646015578080 -0.00158500367486662 1100000.00000000 - -0.00125175899008478 0.00267726147588916 1100000.00000000 - -0.000539753282327279 0.00999786528179799 1100000.00000000 - 9.96221816210748e-06 0.0262653820599092 1100000.00000000 - 0.000292919786230068 0.0656027800843334 1100000.00000000 - 0.000214613738593092 0.161211496104795 1099999.99999999 - 8.80809013055183e-05 0.395041471530017 1099999.99999993 - 0.000193648902618064 0.968145393398511 1099999.99999957 - 0.000390496382115356 2.37179791312328 1099999.99999744 - 0.000479365133366368 5.81011151292559 1099999.99998466 - 0.000390002572200977 14.2320736107276 1099999.99990793 - 0.000209455384864423 34.8620082643822 1099999.99944756 - 0.000313717121117896 85.3961229518870 1099999.99668523 - 0.000302313363649481 209.179713121416 1099999.98011084 - 0.000238313155548520 512.374838416437 1099999.88066910 - 0.000234952158271143 1254.93875110627 1099999.28414919 - 0.000283660894999221 3073.08650059260 1099995.70732770 - 0.000231560341826116 7521.83794400275 1099974.28240570 - 0.000120536290159332 18389.5296773969 1099846.27343927 - 4.45651591130423e-05 44828.5179218368 1099086.16767792 - 3.78523617725008e-05 108456.750941222 1094640.18434154 - 0.000244501503470966 256943.720116263 1069569.97185449 - 0.000322278145557852 570452.767975874 940523.066973194 - 0.000102682451710384 -570452.767907618 940523.067014593 - -8.50751448586841e-05 -256943.719887713 1069569.97190940 - -7.45950311458486e-05 -108456.750862491 1094640.18434934 - -2.85895846970742e-05 -44828.5179645550 1099086.16767618 - 6.95317464791548e-05 -18389.5298752045 1099846.27343596 - 0.000184923723379150 -7521.83792818668 1099974.28240581 - 0.000172847109964180 -3073.08630859503 1099995.70732823 - 2.51126842883789e-05 -1254.93890929919 1099999.28414901 - 9.60724537229604e-05 -512.374800740058 1099999.88066911 - 0.000219144232112673 -209.179794777336 1099999.98011082 - 7.93448151523985e-05 -85.3962380399054 1099999.99668522 - 0.000120656715511528 -34.8620408987813 1099999.99944756 - 0.000134429931462017 -14.2321018129219 1099999.99990793 - 0.000115252906966679 -5.81001942388179 1099999.99998466 - 6.15662749248746e-05 -2.37165542880372 1099999.99999744 - -2.16014587358958e-05 -0.968045907606850 1099999.99999957 - -3.36579419827628e-05 -0.395138845869355 1099999.99999993 - 0.000175053600822157 -0.161092955347334 1099999.99999999 - -1.17810032407873e-05 -0.0653499778895913 1100000.00000000 - -0.000613161193188602 -0.0259772189442311 1100000.00000000 - -0.00120859837769086 -0.00930502552670086 1100000.00000000 - -0.00240925105527058 -0.00120847945792597 1100000.00000000 - -0.00533700168858206 0.00469204495468486 1100000.00000000 - -0.0113728824224046 0.0121524107815477 1100000.00000000 - -0.0234489420478605 0.0248427473331105 1100000.00000000 - -0.0477500184996917 0.0477500184997100 1100000.00000000 - -0.0950564544104733 0.0886408573300110 1099999.99999999 - -0.184855037997768 0.159851959666989 1099999.99999997 - -0.350662475610282 0.279131166907994 1099999.99999991 - -0.648461382841092 0.471428164876032 1099999.99999971 - -1.16284491250660 0.765572768227293 1099999.99999912 - -2.01625292486775 1.18837247757794 1099999.99999751 - -3.36332238307459 1.75024242130609 1099999.99999347 - -5.37218406824385 2.42386737391203 1099999.99998421 - -8.16965355229438 3.11936493141242 1099999.99996524 - -11.7566249789388 3.67241156492799 1099999.99993104 - -15.9058379677092 3.86297926270571 1099999.99987822 - -20.1010669111292 3.48535066232220 1099999.99981082 - -23.5882899015127 2.45271891187517 1099999.99974435 - -25.5851482736741 0.886564201705216 1099999.99970210 - -25.5851482736738 -0.886564201705233 1099999.99970210 - -23.5882899015129 -2.45271891187528 1099999.99974435 - -20.1010669111288 -3.48535066232208 1099999.99981082 - -15.9058379677093 -3.86297926270576 1099999.99987822 - -11.7566249789385 -3.67241156492781 1099999.99993104 - -8.16965355229471 -3.11936493141250 1099999.99996524 - -5.37218406824371 -2.42386737391199 1099999.99998421 - -3.36332238307474 -1.75024242130611 1099999.99999347 - -2.01625292486787 -1.18837247757813 1099999.99999751 - -1.16284491250667 -0.765572768227251 1099999.99999912 - -0.648461382840934 -0.471428164876013 1099999.99999971 - -0.350662475610096 -0.279131166907881 1099999.99999991 - -0.184855037997922 -0.159851959667079 1099999.99999997 - -0.0950564544104556 -0.0886408573300349 1099999.99999999 - -0.0477500184996890 -0.0477500184996629 1100000.00000000 - -0.0234489420478728 -0.0248427473331221 1100000.00000000 - -0.0113728824223956 -0.0121524107815622 1100000.00000000 - -0.00533700168858586 -0.00469204495468173 1100000.00000000 - -0.00240925105526347 0.00120847945793267 1100000.00000000 - -0.00120859837769350 0.00930502552669938 1100000.00000000 - -0.000613161193191948 0.0259772189442359 1100000.00000000 - -1.17810032391769e-05 0.0653499778895832 1100000.00000000 - 0.000175053600820815 0.161092955347323 1099999.99999999 - -3.36579419743533e-05 0.395138845869368 1099999.99999993 - -2.16014587228460e-05 0.968045907606870 1099999.99999957 - 6.15662748853406e-05 2.37165542880377 1099999.99999744 - 0.000115252906902687 5.81001942388162 1099999.99998466 - 0.000134429931489285 14.2321018129217 1099999.99990793 - 0.000120656715617727 34.8620408987814 1099999.99944756 - 7.93448149607601e-05 85.3962380399065 1099999.99668522 - 0.000219144232015837 209.179794777337 1099999.98011082 - 9.60724542871823e-05 512.374800740057 1099999.88066911 - 2.51126838185856e-05 1254.93890929919 1099999.28414901 - 0.000172847111357136 3073.08630859503 1099995.70732823 - 0.000184923718093924 7521.83792818668 1099974.28240581 - 6.95317290557984e-05 18389.5298752045 1099846.27343596 - -2.85896101668397e-05 44828.5179645550 1099086.16767618 - -7.45951049874004e-05 108456.750862491 1094640.18434934 - -8.50751219959520e-05 256943.719887713 1069569.97190940 - 0.000102682447793648 570452.767907618 940523.067014593 - -0.000156907115284579 -570452.767928161 940523.067002133 - -8.59063079160845e-05 -256943.719948721 1069569.97189474 - -0.000132732204113149 -108456.750819229 1094640.18435362 - -3.62778287238116e-05 -44828.5180112699 1099086.16767427 - 6.83884724873242e-05 -18389.5299072139 1099846.27343543 - 0.000117519853144748 -7521.83806878890 1099974.28240485 - 2.79547565966119e-05 -3073.08641178899 1099995.70732794 - 1.11786705485968e-05 -1254.93866710464 1099999.28414929 - 0.000119359265470843 -512.374943594692 1099999.88066905 - 4.31451177455571e-05 -209.179831692139 1099999.98011082 - -2.27712263690027e-05 -85.3961751234533 1099999.99668522 - -3.84587230488260e-05 -34.8621154447648 1099999.99944756 - 6.36304714021885e-05 -14.2320340348438 1099999.99990793 - 6.71612693650912e-05 -5.80989733492247 1099999.99998466 - -3.49931944707146e-06 -2.37171963902907 1099999.99999744 - -9.33188508582555e-05 -0.968192442170338 1099999.99999957 - -2.05831024834621e-05 -0.394911848272072 1099999.99999993 - -6.09290391754017e-05 -0.160901617443915 1099999.99999999 - -0.000474054442602477 -0.0651458601455794 1100000.00000000 - -0.00104805631524088 -0.0253882587908195 1100000.00000000 - -0.00195457293671943 -0.00810849172047982 1100000.00000000 - -0.00435661725922586 0.00146994623087357 1100000.00000000 - -0.00949809123331599 0.0103658891598573 1100000.00000000 - -0.0203052310543883 0.0240208091248709 1100000.00000000 - -0.0427944232624828 0.0487912911226277 1100000.00000000 - -0.0886408573300331 0.0950564544104481 1099999.99999999 - -0.180313152714571 0.180313152714598 1099999.99999997 - -0.358478623025018 0.332362219265282 1099999.99999989 - -0.698258736089554 0.595973697135993 1099999.99999962 - -1.32450768225961 1.03312810664533 1099999.99999872 - -2.44004931117865 1.72338181873720 1099999.99999594 - -4.34637788593381 2.74852422990475 1099999.99998798 - -7.45138708125986 4.16000926014168 1099999.99996690 - -12.2278631944853 5.91763282539534 1099999.99991612 - -19.0885669790202 7.81625445680236 1099999.99980661 - -28.1507443601707 9.42735471329742 1099999.99959939 - -38.9271481262941 10.1323811799517 1099999.99926455 - -50.0878872535366 9.30419554595025 1099999.99882029 - -59.5421174067748 6.63064593958214 1099999.99836853 - -65.0219784601476 2.41227910785791 1099999.99807560 - -65.0219784601478 -2.41227910785798 1099999.99807560 - -59.5421174067746 -6.63064593958200 1099999.99836853 - -50.0878872535369 -9.30419554595058 1099999.99882029 - -38.9271481262937 -10.1323811799514 1099999.99926455 - -28.1507443601706 -9.42735471329755 1099999.99959939 - -19.0885669790197 -7.81625445680190 1099999.99980661 - -12.2278631944857 -5.91763282539552 1099999.99991612 - -7.45138708125947 -4.16000926014141 1099999.99996690 - -4.34637788593393 -2.74852422990477 1099999.99998798 - -2.44004931117884 -1.72338181873740 1099999.99999594 - -1.32450768225968 -1.03312810664531 1099999.99999872 - -0.698258736089426 -0.595973697135983 1099999.99999962 - -0.358478623024900 -0.332362219265178 1099999.99999989 - -0.180313152714682 -0.180313152714700 1099999.99999997 - -0.0886408573300060 -0.0950564544104661 1099999.99999999 - -0.0427944232624875 -0.0487912911225815 1100000.00000000 - -0.0203052310543983 -0.0240208091248736 1100000.00000000 - -0.00949809123330473 -0.0103658891598703 1100000.00000000 - -0.00435661725923114 -0.00146994623087676 1100000.00000000 - -0.00195457293671567 0.00810849172048835 1100000.00000000 - -0.00104805631524209 0.0253882587908176 1100000.00000000 - -0.000474054442603490 0.0651458601455806 1100000.00000000 - -6.09290391704631e-05 0.160901617443909 1099999.99999999 - -2.05831024852186e-05 0.394911848272062 1099999.99999993 - -9.33188508784131e-05 0.968192442170368 1099999.99999957 - -3.49931943014656e-06 2.37171963902908 1099999.99999744 - 6.71612694327562e-05 5.80989733492248 1099999.99998466 - 6.36304713119971e-05 14.2320340348436 1099999.99990793 - -3.84587233222092e-05 34.8621154447651 1099999.99944756 - -2.27712264015419e-05 85.3961751234538 1099999.99668522 - 4.31451179129666e-05 209.179831692140 1099999.98011082 - 0.000119359265955043 512.374943594693 1099999.88066905 - 1.11786720381093e-05 1254.93866710464 1099999.28414929 - 2.79547572386366e-05 3073.08641178898 1099995.70732794 - 0.000117519854930873 7521.83806878891 1099974.28240485 - 6.83884633397747e-05 18389.5299072139 1099846.27343543 - -3.62778691149811e-05 44828.5180112700 1099086.16767427 - -0.000132732276341263 108456.750819229 1094640.18435362 - -8.59063736997287e-05 256943.719948721 1069569.97189474 - -0.000156907031049000 570452.767928161 940523.067002133 - -0.000132466437557685 -570452.768003082 940523.066956692 - -0.000182193556313417 -256943.719898121 1069569.97190690 - -9.87292566720930e-05 -108456.750920141 1094640.18434363 - -5.27267677242417e-05 -44828.5181797562 1099086.16766740 - 4.07727621039691e-05 -18389.5300518799 1099846.27343301 - 7.45412638075172e-05 -7521.83797664406 1099974.28240548 - 3.07992238673957e-05 -3073.08627862942 1099995.70732832 - -4.97740366111046e-06 -1254.93885281020 1099999.28414907 - 3.03340656010526e-05 -512.374842593703 1099999.88066909 - 1.76230724230017e-05 -209.179875630775 1099999.98011081 - -7.73532336515726e-05 -85.3962867239469 1099999.99668522 - 5.96125034827100e-05 -34.8620277632313 1099999.99944756 - -5.42916270024280e-06 -14.2319978586631 1099999.99990793 - -5.11766993217983e-05 -5.80995863394725 1099999.99998466 - -9.76962350184122e-05 -2.37173271679824 1099999.99999744 - -0.000143651580557323 -0.967874964525372 1099999.99999957 - -0.000105090380274458 -0.394821303529863 1099999.99999993 - -0.000196487847855039 -0.160871553912725 1099999.99999999 - -0.000640975233702716 -0.0646334248088896 1100000.00000000 - -0.00148394389144504 -0.0244276049261903 1100000.00000000 - -0.00324034445914108 -0.00594829057117622 1100000.00000000 - -0.00729316639374430 0.00622152078215881 1100000.00000000 - -0.0161066405457849 0.0205105408715571 1100000.00000000 - -0.0350914701930550 0.0453640760104385 1100000.00000000 - -0.0753921093631199 0.0929239129796091 1099999.99999999 - -0.159851959666975 0.184855037997815 1099999.99999997 - -0.332362219265318 0.358478623024953 1099999.99999989 - -0.679092684697116 0.679092684697136 1099999.99999958 - -1.35785074911343 1.25037183895577 1099999.99999845 - -2.64810458151193 2.22848586919774 1099999.99999456 - -5.01909798461658 3.82455143521046 1099999.99998190 - -9.20626636209791 6.28080600743692 1099999.99994354 - -16.2596825449724 9.79136963073322 1099999.99983625 - -27.4886537815562 14.3470546068425 1099999.99956297 - -44.1799693874787 19.5048501521253 1099999.99893986 - -66.9783303750519 24.1755446651167 1099999.99769520 - -94.9551380155281 26.6262676843029 1099999.99557935 - -124.745308315047 24.9499880449848 1099999.99264368 - -150.543586974362 18.0407995442282 1099999.98955053 - -165.712154476186 6.61389101010431 1099999.98749806 - -165.712154476187 -6.61389101010411 1099999.98749806 - -150.543586974361 -18.0407995442281 1099999.98955053 - -124.745308315048 -24.9499880449846 1099999.99264368 - -94.9551380155288 -26.6262676843036 1099999.99557935 - -66.9783303750519 -24.1755446651162 1099999.99769520 - -44.1799693874783 -19.5048501521255 1099999.99893986 - -27.4886537815558 -14.3470546068418 1099999.99956297 - -16.2596825449730 -9.79136963073362 1099999.99983625 - -9.20626636209731 -6.28080600743641 1099999.99994354 - -5.01909798461672 -3.82455143521041 1099999.99998190 - -2.64810458151206 -2.22848586919790 1099999.99999456 - -1.35785074911339 -1.25037183895577 1099999.99999845 - -0.679092684697068 -0.679092684697126 1099999.99999958 - -0.332362219265262 -0.358478623024878 1099999.99999989 - -0.159851959667046 -0.184855037997913 1099999.99999997 - -0.0753921093630939 -0.0929239129796238 1099999.99999999 - -0.0350914701930624 -0.0453640760104050 1100000.00000000 - -0.0161066405457945 -0.0205105408715521 1100000.00000000 - -0.00729316639373082 -0.00622152078216295 1100000.00000000 - -0.00324034445914624 0.00594829057116905 1100000.00000000 - -0.00148394389144545 0.0244276049261952 1100000.00000000 - -0.000640975233700168 0.0646334248088827 1100000.00000000 - -0.000196487847852046 0.160871553912723 1099999.99999999 - -0.000105090380282319 0.394821303529875 1099999.99999993 - -0.000143651580560284 0.967874964525379 1099999.99999957 - -9.76962350128407e-05 2.37173271679827 1099999.99999744 - -5.11766993299895e-05 5.80995863394721 1099999.99998466 - -5.42916262605078e-06 14.2319978586632 1099999.99990793 - 5.96125033981256e-05 34.8620277632312 1099999.99944756 - -7.73532340673693e-05 85.3962867239477 1099999.99668522 - 1.76230725019679e-05 209.179875630776 1099999.98011081 - 3.03340669843132e-05 512.374842593701 1099999.88066909 - -4.97740218298073e-06 1254.93885281020 1099999.28414907 - 3.07992233774092e-05 3073.08627862942 1099995.70732832 - 7.45412631809199e-05 7521.83797664407 1099974.28240548 - 4.07727581888471e-05 18389.5300518799 1099846.27343301 - -5.27267569155971e-05 44828.5181797563 1099086.16766740 - -9.87292171037977e-05 108456.750920141 1094640.18434363 - -0.000182193512996745 256943.719898121 1069569.97190689 - -0.000132466262135686 570452.768003082 940523.066956692 - -9.17833331444280e-05 -570452.767982027 940523.066969462 - -8.91981398617895e-05 -256943.719996882 1069569.97188317 - -0.000130779816494446 -108456.750941794 1094640.18434148 - -3.06720053896046e-06 -44828.5181958177 1099086.16766674 - 7.33058470330045e-05 -18389.5300878848 1099846.27343240 - 5.91364722608635e-05 -7521.83809688117 1099974.28240466 - -4.43242375859081e-05 -3073.08630413420 1099995.70732825 - 2.12790315882553e-06 -1254.93866223463 1099999.28414929 - 7.19679278892303e-05 -512.375041340045 1099999.88066900 - -4.22895943021240e-05 -209.179877531796 1099999.98011081 - -1.93220565287885e-05 -85.3961363255989 1099999.99668523 - -7.72898169096012e-05 -34.8620863095855 1099999.99944756 - -4.07292448504021e-05 -14.2319615104194 1099999.99990793 - -5.70238191595838e-05 -5.80986672873391 1099999.99998466 - -5.33369059814756e-05 -2.37158400528522 1099999.99999744 - -8.49942071646621e-05 -0.967960656702746 1099999.99999957 - -4.63413343837349e-05 -0.394866681154623 1099999.99999993 - -0.000271726975573922 -0.160421589595874 1099999.99999999 - -0.00107384276070737 -0.0638569249275272 1100000.00000000 - -0.00231182838431721 -0.0228920965817943 1100000.00000000 - -0.00514909396166307 -0.00241481668489563 1100000.00000000 - -0.0117196219514420 0.0141093513040389 1100000.00000000 - -0.0263006658640391 0.0379130454840511 1100000.00000000 - -0.0585266288367108 0.0828909896014649 1100000.00000000 - -0.128854953810829 0.172541633505068 1099999.99999998 - -0.279131166908001 0.350662475610189 1099999.99999991 - -0.595973697135946 0.698258736089556 1099999.99999962 - -1.25037183895580 1.35785074911343 1099999.99999845 - -2.57077729951339 2.57077729951323 1099999.99999399 - -5.16196688716948 4.71729116294134 1099999.99997777 - -10.0870832520906 8.34656046484597 1099999.99992208 - -19.0965061200790 14.1456126983178 1099999.99974328 - -34.8399222239584 22.7768835237281 1099999.99921245 - -60.8662959375471 34.4810202399895 1099999.99777562 - -101.061060274645 48.4121472696111 1099999.99429224 - -158.079302147884 61.8812981604579 1099999.98690075 - -230.616750614911 70.0877467215683 1099999.97359256 - -310.391436023111 67.2302843316296 1099999.95415329 - -381.295484139518 49.4451217170773 1099999.93280406 - -423.699510704691 18.2891138768331 1099999.91824738 - -423.699510704687 -18.2891138768326 1099999.91824738 - -381.295484139522 -49.4451217170778 1099999.93280406 - -310.391436023110 -67.2302843316287 1099999.95415329 - -230.616750614913 -70.0877467215688 1099999.97359256 - -158.079302147885 -61.8812981604592 1099999.98690075 - -101.061060274645 -48.4121472696110 1099999.99429224 - -60.8662959375463 -34.4810202399897 1099999.99777562 - -34.8399222239584 -22.7768835237273 1099999.99921245 - -19.0965061200796 -14.1456126983185 1099999.99974328 - -10.0870832520901 -8.34656046484539 1099999.99992208 - -5.16196688716975 -4.71729116294122 1099999.99997777 - -2.57077729951337 -2.57077729951333 1099999.99999399 - -1.25037183895566 -1.35785074911341 1099999.99999845 - -0.595973697135968 -0.698258736089538 1099999.99999962 - -0.279131166907986 -0.350662475610152 1099999.99999991 - -0.128854953810871 -0.172541633505145 1099999.99999998 - -0.0585266288366895 -0.0828909896014736 1100000.00000000 - -0.0263006658640445 -0.0379130454840353 1100000.00000000 - -0.0117196219514531 -0.0141093513040334 1100000.00000000 - -0.00514909396164990 0.00241481668490155 1100000.00000000 - -0.00231182838431896 0.0228920965817840 1100000.00000000 - -0.00107384276071029 0.0638569249275238 1100000.00000000 - -0.000271726975576221 0.160421589595871 1099999.99999999 - -4.63413343762563e-05 0.394866681154623 1099999.99999993 - -8.49942071674542e-05 0.967960656702805 1099999.99999957 - -5.33369060044937e-05 2.37158400528524 1099999.99999744 - -5.70238191163491e-05 5.80986672873373 1099999.99998466 - -4.07292448772561e-05 14.2319615104194 1099999.99990793 - -7.72898169781923e-05 34.8620863095865 1099999.99944756 - -1.93220563210632e-05 85.3961363255985 1099999.99668523 - -4.22895936346358e-05 209.179877531795 1099999.98011081 - 7.19679273438080e-05 512.375041340046 1099999.88066900 - 2.12790103187563e-06 1254.93866223463 1099999.28414929 - -4.43242317072947e-05 3073.08630413420 1099995.70732825 - 5.91364763857000e-05 7521.83809688118 1099974.28240466 - 7.33058553524253e-05 18389.5300878848 1099846.27343240 - -3.06715254121504e-06 44828.5181958177 1099086.16766674 - -0.000130779673876158 108456.750941794 1094640.18434148 - -8.91980164469736e-05 256943.719996882 1069569.97188317 - -9.17832307791064e-05 570452.767982027 940523.066969463 - -1.76952659969647e-05 -570452.767880440 940523.067031077 - -7.76867556265470e-05 -256943.719883077 1069569.97191051 - 7.19045336091919e-06 -108456.751014763 1094640.18433425 - 2.28840677871593e-06 -44828.5183189313 1099086.16766172 - 2.32968456568831e-05 -18389.5301370847 1099846.27343158 - 1.23058596213012e-05 -7521.83800469091 1099974.28240529 - 2.01324312541952e-05 -3073.08624011322 1099995.70732842 - 4.61583932333548e-05 -1254.93883182374 1099999.28414910 - 1.95957110021518e-05 -512.374920673217 1099999.88066906 - -4.24449055428214e-05 -209.179857367629 1099999.98011081 - -5.58524878574848e-05 -85.3962242667264 1099999.99668522 - 4.66180751496004e-05 -34.8619871202949 1099999.99944756 - -6.93519524786126e-05 -14.2319135884729 1099999.99990793 - 2.56780462836049e-05 -5.80985110617656 1099999.99998466 - -7.41704834772667e-05 -2.37168731931402 1099999.99999744 - -0.000112652589753713 -0.967843279865139 1099999.99999957 - -0.000105389484760436 -0.394490274175584 1099999.99999993 - -0.000583105156904810 -0.159950732554663 1099999.99999999 - -0.00146672736150177 -0.0628504522763010 1100000.00000000 - -0.00333239437313772 -0.0204886715185441 1100000.00000000 - -0.00775177097976100 0.00331909422396078 1100000.00000000 - -0.0180387770812031 0.0271363420367505 1100000.00000000 - -0.0414252557960353 0.0668520031342279 1100000.00000000 - -0.0944528098583581 0.146668071191079 1099999.99999999 - -0.212161304025513 0.311242933286705 1099999.99999994 - -0.471428164875949 0.648461382841081 1099999.99999971 - -1.03312810664541 1.32450768225966 1099999.99999872 - -2.22848586919795 2.64810458151182 1099999.99999456 - -4.71729116294101 5.16196688716979 1099999.99997777 - -9.76986982201768 9.76986982201776 1099999.99991323 - -19.7230905984794 17.8576322966841 1099999.99967823 - -38.6338667002471 31.3125682604438 1099999.99887589 - -73.0227925096008 52.2275071630873 1099999.99633635 - -132.285292024452 81.9658056889059 1099999.98899191 - -227.803959832356 119.308749723437 1099999.96994126 - -369.245654704599 157.930466578725 1099999.92668891 - -556.828422814877 184.732910669413 1099999.84355265 - -771.091449385335 182.107710180273 1099999.71466122 - -967.512676444282 136.633275954168 1099999.56602290 - -1087.40126805936 51.0755321474970 1099999.46134067 - -1087.40126805936 -51.0755321474973 1099999.46134067 - -967.512676444279 -136.633275954167 1099999.56602290 - -771.091449385339 -182.107710180276 1099999.71466122 - -556.828422814875 -184.732910669411 1099999.84355265 - -369.245654704599 -157.930466578725 1099999.92668891 - -227.803959832360 -119.308749723439 1099999.96994126 - -132.285292024453 -81.9658056889065 1099999.98899191 - -73.0227925095999 -52.2275071630875 1099999.99633635 - -38.6338667002473 -31.3125682604430 1099999.99887589 - -19.7230905984797 -17.8576322966849 1099999.99967823 - -9.76986982201752 -9.76986982201730 1099999.99991323 - -4.71729116294141 -5.16196688716971 1099999.99997777 - -2.22848586919782 -2.64810458151190 1099999.99999456 - -1.03312810664522 -1.32450768225958 1099999.99999872 - -0.471428164876005 -0.648461382841064 1099999.99999971 - -0.212161304025519 -0.311242933286708 1099999.99999994 - -0.0944528098583816 -0.146668071191128 1099999.99999999 - -0.0414252557960198 -0.0668520031342255 1100000.00000000 - -0.0180387770812031 -0.0271363420367457 1100000.00000000 - -0.00775177097977252 -0.00331909422396113 1100000.00000000 - -0.00333239437312810 0.0204886715185539 1100000.00000000 - -0.00146672736150140 0.0628504522762879 1100000.00000000 - -0.000583105156907589 0.159950732554650 1099999.99999999 - -0.000105389484764256 0.394490274175622 1099999.99999993 - -0.000112652589753433 0.967843279865164 1099999.99999957 - -7.41704834577049e-05 2.37168731931396 1099999.99999744 - 2.56780462441890e-05 5.80985110617659 1099999.99998466 - -6.93519525273305e-05 14.2319135884731 1099999.99990793 - 4.66180753117821e-05 34.8619871202943 1099999.99944756 - -5.58524872515700e-05 85.3962242667264 1099999.99668522 - -4.24449058828936e-05 209.179857367631 1099999.98011081 - 1.95957094553000e-05 512.374920673218 1099999.88066906 - 4.61583961233155e-05 1254.93883182373 1099999.28414910 - 2.01324326640529e-05 3073.08624011322 1099995.70732842 - 1.23058680611000e-05 7521.83800469092 1099974.28240529 - 2.32968615251502e-05 18389.5301370847 1099846.27343158 - 2.28841430031708e-06 44828.5183189312 1099086.16766172 - 7.19047488629652e-06 108456.751014763 1094640.18433425 - -7.76867473348030e-05 256943.719883077 1069569.97191051 - -1.76952544415276e-05 570452.767880440 940523.067031077 - 1.47969007621262e-05 -570452.767703931 940523.067138135 - -2.61061696583342e-05 -256943.719870012 1069569.97191365 - -9.41859664498594e-05 -108456.750998065 1094640.18433590 - 3.06518331809389e-05 -44828.5182936841 1099086.16766275 - 8.47828648276898e-05 -18389.5301556784 1099846.27343127 - 4.06976335365724e-05 -7521.83806184930 1099974.28240490 - -8.06150994523594e-06 -3073.08624078323 1099995.70732842 - 4.24711326199478e-05 -1254.93872658070 1099999.28414922 - 4.17995430736089e-05 -512.375071924180 1099999.88066899 - -1.76772731193171e-06 -209.179825945518 1099999.98011082 - 4.95797737943137e-05 -85.3960942411687 1099999.99668523 - -7.63248298665890e-05 -34.8620090378783 1099999.99944756 - 1.19785938721014e-05 -14.2318461153856 1099999.99990793 - -3.31471249228530e-05 -5.80988125200400 1099999.99998466 - -7.14069107572605e-05 -2.37153302656268 1099999.99999744 - -3.78999994111679e-05 -0.967677433927223 1099999.99999957 - -0.000137173105604226 -0.394392391246761 1099999.99999993 - -0.000745169574281499 -0.159284093171274 1099999.99999999 - -0.00209075832693752 -0.0612447553634650 1100000.00000000 - -0.00476093017264328 -0.0167041427817163 1100000.00000000 - -0.0113448872316919 0.0121576943745543 1100000.00000000 - -0.0268127597113518 0.0472692491525895 1100000.00000000 - -0.0629248278190374 0.113015031217689 1099999.99999999 - -0.146013047088880 0.251062579974087 1099999.99999996 - -0.336024355829165 0.544802120729869 1099999.99999981 - -0.765572768227419 1.16284491250668 1099999.99999912 - -1.72338181873744 2.44004931117861 1099999.99999594 - -3.82455143521018 5.01909798461684 1099999.99998190 - -8.34656046484571 10.0870832520905 1099999.99992208 - -17.8576322966845 19.7230905984792 1099999.99967823 - -37.3201534882003 37.3201534882006 1099999.99873382 - -75.8329364668602 67.8795488700801 1099999.99529170 - -148.969050095317 117.655033212306 1099999.98362069 - -280.912552611207 192.153752223935 1099999.94734776 - -504.001148090844 291.263403044539 1099999.84597657 - -850.915817789897 401.261207326281 1099999.59769616 - -1333.78032857857 487.255329194343 1099999.08345974 - -1910.61817485871 496.033112581282 1099998.22885737 - -2459.44787009264 381.102281223832 1099997.18448604 - -2802.80157083266 144.265555239820 1099996.41976272 - -2802.80157083267 -144.265555239819 1099996.41976272 - -2459.44787009263 -381.102281223830 1099997.18448604 - -1910.61817485871 -496.033112581282 1099998.22885737 - -1333.78032857857 -487.255329194348 1099999.08345974 - -850.915817789894 -401.261207326278 1099999.59769616 - -504.001148090840 -291.263403044536 1099999.84597657 - -280.912552611212 -192.153752223939 1099999.94734776 - -148.969050095317 -117.655033212307 1099999.98362069 - -75.8329364668601 -67.8795488700808 1099999.99529170 - -37.3201534882003 -37.3201534881997 1099999.99873382 - -17.8576322966844 -19.7230905984797 1099999.99967823 - -8.34656046484586 -10.0870832520902 1099999.99992208 - -3.82455143521051 -5.01909798461687 1099999.99998190 - -1.72338181873730 -2.44004931117866 1099999.99999594 - -0.765572768227249 -1.16284491250656 1099999.99999912 - -0.336024355829226 -0.544802120729868 1099999.99999981 - -0.146013047088891 -0.251062579974119 1099999.99999996 - -0.0629248278190492 -0.113015031217716 1099999.99999999 - -0.0268127597113457 -0.0472692491525765 1100000.00000000 - -0.0113448872316859 -0.0121576943745496 1100000.00000000 - -0.00476093017265185 0.0167041427817045 1100000.00000000 - -0.00209075832693420 0.0612447553634698 1100000.00000000 - -0.000745169574279920 0.159284093171280 1099999.99999999 - -0.000137173105605973 0.394392391246754 1099999.99999993 - -3.78999994063229e-05 0.967677433927260 1099999.99999957 - -7.14069107768049e-05 2.37153302656272 1099999.99999744 - -3.31471249467631e-05 5.80988125200390 1099999.99998466 - 1.19785939650962e-05 14.2318461153854 1099999.99990793 - -7.63248296691714e-05 34.8620090378784 1099999.99944756 - 4.95797735223559e-05 85.3960942411690 1099999.99668523 - -1.76772713965208e-06 209.179825945519 1099999.98011082 - 4.17995443566925e-05 512.375071924179 1099999.88066899 - 4.24711311353157e-05 1254.93872658070 1099999.28414922 - -8.06150571795485e-06 3073.08624078322 1099995.70732842 - 4.06976265215979e-05 7521.83806184931 1099974.28240490 - 8.47829071205491e-05 18389.5301556784 1099846.27343127 - 3.06518361236257e-05 44828.5182936841 1099086.16766275 - -9.41860244927207e-05 108456.750998065 1094640.18433590 - -2.61061832510595e-05 256943.719870012 1069569.97191365 - 1.47969377215414e-05 570452.767703931 940523.067138135 - -7.39605076977400e-05 -570452.767583868 940523.067210956 - -0.000101560331729232 -256943.719794789 1069569.97193172 - 4.40315724889824e-05 -108456.751065431 1094640.18432923 - 3.04524486277803e-05 -44828.5183622822 1099086.16765995 - -4.15987565988814e-07 -18389.5301458927 1099846.27343143 - 6.51317659212768e-06 -7521.83802075618 1099974.28240518 - 6.45634593982122e-05 -3073.08623801591 1099995.70732843 - 9.72184765211208e-05 -1254.93883349073 1099999.28414910 - 3.89234412878051e-05 -512.374967742981 1099999.88066904 - 7.62013450763200e-07 -209.179798533311 1099999.98011082 - 3.88794836270247e-06 -85.3961285919278 1099999.99668523 - 5.18552747902732e-05 -34.8619192905735 1099999.99944757 - -4.95912562078022e-05 -14.2318710923339 1099999.99990793 - 7.16130753530113e-05 -5.80980133989409 1099999.99998466 - -4.26863414810533e-05 -2.37153538241656 1099999.99999744 - -8.58096919650959e-05 -0.967653214279389 1099999.99999957 - -0.000302180387346676 -0.393882358961340 1099999.99999993 - -0.00122247595542847 -0.158259198053962 1099999.99999999 - -0.00273178266528512 -0.0590135033516020 1100000.00000000 - -0.00650541275723646 -0.0112859428819516 1100000.00000000 - -0.0158324730969949 0.0249499810017910 1100000.00000000 - -0.0381326983819336 0.0775717008453558 1100000.00000000 - -0.0909725644996982 0.183822356101413 1099999.99999998 - -0.215886894423017 0.415073684513819 1099999.99999990 - -0.508606405369732 0.921030811737439 1099999.99999950 - -1.18837247757815 2.01625292486777 1099999.99999751 - -2.74852422990456 4.34637788593400 1099999.99998798 - -6.28080600743663 9.20626636209756 1099999.99994354 - -14.1456126983181 19.0965061200789 1099999.99974328 - -31.3125682604436 38.6338667002475 1099999.99887589 - -67.8795488700798 75.8329364668599 1099999.99529170 - -143.456118430365 143.456118430365 1099999.98129122 - -293.880975075376 259.277038887662 1099999.93018608 - -579.312792403899 442.540977947165 1099999.75843369 - -1088.53309994076 702.131038195544 1099999.23732142 - -1926.03271727665 1012.71159396695 1099997.84764026 - -3159.52703745350 1284.83831162125 1099994.71206884 - -4714.17348254049 1359.04377459597 1099989.05884031 - -6261.55840681995 1074.31609898090 1099981.65381575 - -7259.13484749024 412.882815319631 1099975.96995982 - -7259.13484749021 -412.882815319633 1099975.96995982 - -6261.55840681995 -1074.31609898091 1099981.65381575 - -4714.17348254048 -1359.04377459595 1099989.05884031 - -3159.52703745350 -1284.83831162125 1099994.71206884 - -1926.03271727666 -1012.71159396696 1099997.84764026 - -1088.53309994075 -702.131038195540 1099999.23732142 - -579.312792403894 -442.540977947158 1099999.75843369 - -293.880975075381 -259.277038887666 1099999.93018608 - -143.456118430364 -143.456118430364 1099999.98129122 - -67.8795488700806 -75.8329364668618 1099999.99529170 - -31.3125682604432 -38.6338667002466 1099999.99887589 - -14.1456126983180 -19.0965061200790 1099999.99974328 - -6.28080600743688 -9.20626636209753 1099999.99994354 - -2.74852422990469 -4.34637788593407 1099999.99998798 - -1.18837247757805 -2.01625292486778 1099999.99999751 - -0.508606405369624 -0.921030811737330 1099999.99999950 - -0.215886894423069 -0.415073684513835 1099999.99999990 - -0.0909725644997043 -0.183822356101448 1099999.99999998 - -0.0381326983819360 -0.0775717008453720 1100000.00000000 - -0.0158324730969988 -0.0249499810017793 1100000.00000000 - -0.00650541275722861 0.0112859428819646 1100000.00000000 - -0.00273178266528761 0.0590135033515840 1100000.00000000 - -0.00122247595542990 0.158259198053951 1099999.99999999 - -0.000302180387344500 0.393882358961378 1099999.99999993 - -8.58096919713277e-05 0.967653214279416 1099999.99999957 - -4.26863414878006e-05 2.37153538241657 1099999.99999744 - 7.16130753873866e-05 5.80980133989402 1099999.99998466 - -4.95912561767478e-05 14.2318710923337 1099999.99990793 - 5.18552746409279e-05 34.8619192905734 1099999.99944757 - 3.88794861625450e-06 85.3961285919281 1099999.99668523 - 7.62013930800555e-07 209.179798533311 1099999.98011082 - 3.89234412533576e-05 512.374967742981 1099999.88066904 - 9.72184769975916e-05 1254.93883349072 1099999.28414910 - 6.45634533331636e-05 3073.08623801591 1099995.70732843 - 6.51317438252029e-06 7521.83802075613 1099974.28240518 - -4.15996160148897e-07 18389.5301458927 1099846.27343143 - 3.04524450427287e-05 44828.5183622822 1099086.16765995 - 4.40315851709155e-05 108456.751065431 1094640.18432923 - -0.000101560369741663 256943.719794789 1069569.97193172 - -7.39606319875056e-05 570452.767583869 940523.067210956 - -0.000128751066004696 -570452.767565427 940523.067222142 - -7.14688846809934e-05 -256943.719860222 1069569.97191600 - -0.000118310980274236 -108456.751106663 1094640.18432515 - 1.45935209554115e-05 -44828.5183735743 1099086.16765949 - 7.78374303083744e-05 -18389.5301877698 1099846.27343073 - 4.67670016177273e-05 -7521.83804017655 1099974.28240505 - 4.35127597424913e-05 -3073.08623908587 1099995.70732843 - 6.49449491410679e-05 -1254.93881751468 1099999.28414911 - 4.90789934068376e-05 -512.375052976122 1099999.88066900 - 6.03802535992350e-05 -209.179744752524 1099999.98011083 - 7.46950504689739e-05 -85.3960661916750 1099999.99668523 - -8.15941081212231e-05 -34.8619388107475 1099999.99944757 - 7.99819252075401e-05 -14.2317667441394 1099999.99990793 - -2.03820431251186e-05 -5.80986044782641 1099999.99998466 - -0.000132099948538115 -2.37144663541324 1099999.99999744 - -0.000103302939063425 -0.967321977333128 1099999.99999957 - -0.000451352597424981 -0.393455271845172 1099999.99999993 - -0.00140389951943822 -0.157066081184367 1099999.99999999 - -0.00353568714103873 -0.0559459207279186 1100000.00000000 - -0.00854222007825087 -0.00386507242495065 1100000.00000000 - -0.0210824881329046 0.0429679210084491 1100000.00000000 - -0.0513632590636979 0.120718722974723 1099999.99999999 - -0.125005329845507 0.286947074712240 1099999.99999996 - -0.302997294173884 0.660170892183258 1099999.99999976 - -0.730555621250592 1.49882328939093 1099999.99999874 - -1.75024242130603 3.36332238307474 1099999.99999347 - -4.16000926014149 7.45138708125943 1099999.99996690 - -9.79136963073324 16.2596825449724 1099999.99983625 - -22.7768835237279 34.8399222239589 1099999.99921245 - -52.2275071630872 73.0227925096002 1099999.99633635 - -117.655033212307 148.969050095317 1099999.98362069 - -259.277038887662 293.880975075377 1099999.93018608 - -555.825817421191 555.825817421193 1099999.71914329 - -1150.63988702578 996.098971283562 1099998.94718799 - -2277.70437189318 1663.99932039611 1099996.38325272 - -4254.56756138949 2530.69871433362 1099988.86095218 - -7366.57104569068 3381.48924396510 1099970.13557711 - -11550.5014486688 3745.70434025274 1099932.97778332 - -15950.8398811979 3065.10593837897 1099880.07338649 - -18893.2570721847 1199.81978248545 1099837.08123962 - -18893.2570721847 -1199.81978248547 1099837.08123962 - -15950.8398811979 -3065.10593837896 1099880.07338649 - -11550.5014486688 -3745.70434025275 1099932.97778332 - -7366.57104569068 -3381.48924396508 1099970.13557711 - -4254.56756138949 -2530.69871433362 1099988.86095218 - -2277.70437189319 -1663.99932039613 1099996.38325272 - -1150.63988702577 -996.098971283559 1099998.94718799 - -555.825817421187 -555.825817421188 1099999.71914329 - -259.277038887665 -293.880975075379 1099999.93018608 - -117.655033212306 -148.969050095316 1099999.98362069 - -52.2275071630880 -73.0227925096028 1099999.99633635 - -22.7768835237274 -34.8399222239579 1099999.99921245 - -9.79136963073343 -16.2596825449724 1099999.99983625 - -4.16000926014172 -7.45138708125959 1099999.99996690 - -1.75024242130595 -3.36332238307471 1099999.99999347 - -0.730555621250547 -1.49882328939090 1099999.99999874 - -0.302997294173844 -0.660170892183212 1099999.99999976 - -0.125005329845541 -0.286947074712265 1099999.99999996 - -0.0513632590636983 -0.120718722974737 1099999.99999999 - -0.0210824881329006 -0.0429679210084563 1100000.00000000 - -0.00854222007825823 0.00386507242494266 1100000.00000000 - -0.00353568714103290 0.0559459207279337 1100000.00000000 - -0.00140389951944044 0.157066081184372 1099999.99999999 - -0.000451352597430730 0.393455271845154 1099999.99999993 - -0.000103302939049583 0.967321977333186 1099999.99999957 - -0.000132099948524640 2.37144663541324 1099999.99999744 - -2.03820431585676e-05 5.80986044782625 1099999.99998466 - 7.99819251673085e-05 14.2317667441394 1099999.99990793 - -8.15941080627352e-05 34.8619388107474 1099999.99944757 - 7.46950504207771e-05 85.3960661916749 1099999.99668523 - 6.03802540232745e-05 209.179744752524 1099999.98011083 - 4.90789942726646e-05 512.375052976121 1099999.88066900 - 6.49449483644633e-05 1254.93881751469 1099999.28414911 - 4.35127533182408e-05 3073.08623908586 1099995.70732843 - 4.67669962344033e-05 7521.83804017656 1099974.28240505 - 7.78373753113014e-05 18389.5301877698 1099846.27343073 - 1.45934769531747e-05 44828.5183735743 1099086.16765949 - -0.000118310930867060 108456.751106663 1094640.18432515 - -7.14689560337017e-05 256943.719860223 1069569.97191600 - -0.000128751194266641 570452.767565427 940523.067222142 - -0.000147233825540897 -570452.767615753 940523.067191618 - -0.000159797777121652 -256943.719936966 1069569.97189756 - 4.05579371163930e-05 -108456.751224946 1094640.18431343 - 3.44391701221225e-05 -44828.5184348011 1099086.16765700 - -2.01740857468523e-05 -18389.5301668691 1099846.27343108 - 1.48869995219317e-05 -7521.83805896200 1099974.28240492 - 9.00091983748791e-05 -3073.08628469483 1099995.70732830 - 0.000107187542455658 -1254.93885714476 1099999.28414907 - 3.99362417813428e-05 -512.374983799951 1099999.88066903 - 2.15608274556023e-05 -209.179750588261 1099999.98011083 - 7.23564565741037e-06 -85.3960601023798 1099999.99668523 - 5.27419581086585e-05 -34.8618512442707 1099999.99944757 - -4.94663912324434e-05 -14.2318462720123 1099999.99990793 - 3.65808292631211e-06 -5.80977373419124 1099999.99998466 - -7.89307883225040e-05 -2.37132182354869 1099999.99999744 - -0.000133450817848557 -0.967238713385054 1099999.99999957 - -0.000620204577929668 -0.392784246892449 1099999.99999993 - -0.00191723607691337 -0.155377563836311 1099999.99999999 - -0.00422949547428879 -0.0520621629011725 1100000.00000000 - -0.0105348707942625 0.00580397223900004 1100000.00000000 - -0.0262662019264434 0.0666324192484163 1100000.00000000 - -0.0652368545863911 0.178886579999585 1099999.99999998 - -0.161842037823068 0.429341710259816 1099999.99999990 - -0.400366199222586 1.00646387200690 1099999.99999947 - -0.987180808502619 2.33569070280253 1099999.99999708 - -2.42386737391198 5.37218406824350 1099999.99998421 - -5.91763282539513 12.2278631944853 1099999.99991612 - -14.3470546068424 27.4886537815565 1099999.99956297 - -34.4810202399898 60.8662959375467 1099999.99777562 - -81.9658056889061 132.285292024452 1099999.98899191 - -192.153752223935 280.912552611208 1099999.94734776 - -442.540977947163 579.312792403900 1099999.75843369 - -996.098971283564 1150.63988702578 1099998.94718799 - -2175.84373442847 2175.84373442846 1099995.69608617 - -4567.17284830742 3852.61628200424 1099983.77182573 - -9083.75406832871 6231.09554750010 1099944.84355367 - -16776.8648370099 8857.49932602487 1099836.38851964 - -27963.8881448792 10380.5642785481 1099595.50055695 - -40550.3139723951 8862.94514098249 1099216.59387046 - -49342.6818445477 3548.25094091222 1098887.03225748 - -49342.6818445477 -3548.25094091221 1098887.03225748 - -40550.3139723951 -8862.94514098251 1099216.59387046 - -27963.8881448791 -10380.5642785482 1099595.50055695 - -16776.8648370099 -8857.49932602486 1099836.38851964 - -9083.75406832870 -6231.09554750008 1099944.84355367 - -4567.17284830741 -3852.61628200422 1099983.77182573 - -2175.84373442848 -2175.84373442848 1099995.69608617 - -996.098971283557 -1150.63988702578 1099998.94718799 - -442.540977947160 -579.312792403898 1099999.75843369 - -192.153752223936 -280.912552611209 1099999.94734776 - -81.9658056889057 -132.285292024451 1099999.98899191 - -34.4810202399903 -60.8662959375487 1099999.99777562 - -14.3470546068420 -27.4886537815556 1099999.99956297 - -5.91763282539542 -12.2278631944854 1099999.99991612 - -2.42386737391213 -5.37218406824372 1099999.99998421 - -0.987180808502458 -2.33569070280237 1099999.99999708 - -0.400366199222584 -1.00646387200687 1099999.99999947 - -0.161842037823068 -0.429341710259833 1099999.99999990 - -0.0652368545864050 -0.178886579999608 1099999.99999998 - -0.0262662019264438 -0.0666324192484151 1100000.00000000 - -0.0105348707942565 -0.00580397223899418 1100000.00000000 - -0.00422949547429754 0.0520621629011571 1100000.00000000 - -0.00191723607691178 0.155377563836310 1099999.99999999 - -0.000620204577924227 0.392784246892479 1099999.99999993 - -0.000133450817847646 0.967238713385050 1099999.99999957 - -7.89307883057477e-05 2.37132182354872 1099999.99999744 - 3.65808292025497e-06 5.80977373419123 1099999.99998466 - -4.94663912992808e-05 14.2318462720120 1099999.99990793 - 5.27419580964943e-05 34.8618512442706 1099999.99944757 - 7.23564547050536e-06 85.3960601023793 1099999.99668523 - 2.15608274747502e-05 209.179750588261 1099999.98011083 - 3.99362437427923e-05 512.374983799953 1099999.88066903 - 0.000107187541526060 1254.93885714475 1099999.28414907 - 9.00091968300081e-05 3073.08628469485 1099995.70732830 - 1.48869901492797e-05 7521.83805896201 1099974.28240492 - -2.01740855554786e-05 18389.5301668692 1099846.27343108 - 3.44391579374209e-05 44828.5184348011 1099086.16765700 - 4.05579583329513e-05 108456.751224946 1094640.18431343 - -0.000159797743213434 256943.719936965 1069569.97189756 - -0.000147233970068144 570452.767615753 940523.067191618 - -9.21872435910112e-05 -570452.767655811 940523.067167322 - -3.62049101366219e-06 -256943.720006852 1069569.97188077 - -9.14461321900712e-05 -108456.751271442 1094640.18430882 - 4.88066929644541e-06 -44828.5184596521 1099086.16765598 - 6.52251631477460e-05 -18389.5302193152 1099846.27343021 - 4.12784159752118e-05 -7521.83805699803 1099974.28240493 - 4.37188005557015e-05 -3073.08628223999 1099995.70732831 - 2.98445444563105e-05 -1254.93889635634 1099999.28414902 - 2.98689024759563e-05 -512.375025310192 1099999.88066901 - 5.99640193281813e-05 -209.179686502855 1099999.98011084 - 2.53215179328969e-05 -85.3960415519351 1099999.99668523 - -0.000123998474002171 -34.8618837021388 1099999.99944757 - 6.10360237827981e-05 -14.2317363502090 1099999.99990794 - -5.65122414930265e-05 -5.80979331428783 1099999.99998466 - -0.000171426863775016 -2.37126795402720 1099999.99999744 - -0.000239561441621683 -0.966836135726519 1099999.99999958 - -0.000778066115703949 -0.392030297138108 1099999.99999993 - -0.00190524118508376 -0.153578614959961 1099999.99999999 - -0.00480133795180842 -0.0473778723809055 1100000.00000000 - -0.0121238835484169 0.0175160712613594 1100000.00000000 - -0.0307491510616191 0.0960754292438664 1100000.00000000 - -0.0774090306907773 0.252545945341609 1099999.99999997 - -0.195293432822657 0.612928287321368 1099999.99999981 - -0.492654883359242 1.46346203875326 1099999.99999892 - -1.24104649415626 3.46951288488420 1099999.99999383 - -3.11936493141220 8.16965355229433 1099999.99996524 - -7.81625445680233 19.0885669790202 1099999.99980661 - -19.5048501521256 44.1799693874785 1099999.99893986 - -48.4121472696107 101.061060274644 1099999.99429224 - -119.308749723436 227.803959832357 1099999.96994126 - -291.263403044539 504.001148090845 1099999.84597657 - -702.131038195546 1088.53309994075 1099999.23732142 - -1663.99932039612 2277.70437189318 1099996.38325272 - -3852.61628200424 4567.17284830742 1099983.77182573 - -8633.60566482910 8633.60566482911 1099932.23505198 - -18462.8288695869 14999.2543621468 1099742.76370373 - -36844.5379367166 22972.1281455670 1099142.73929854 - -66250.7119016385 28868.9655442318 1097623.53564459 - -102129.723343038 25982.6135524763 1094940.37435965 - -128453.555723596 10694.4287535637 1092421.76526084 - -128453.555723596 -10694.4287535637 1092421.76526084 - -102129.723343038 -25982.6135524763 1094940.37435965 - -66250.7119016384 -28868.9655442318 1097623.53564459 - -36844.5379367166 -22972.1281455669 1099142.73929854 - -18462.8288695869 -14999.2543621468 1099742.76370373 - -8633.60566482910 -8633.60566482910 1099932.23505198 - -3852.61628200423 -4567.17284830741 1099983.77182573 - -1663.99932039612 -2277.70437189318 1099996.38325272 - -702.131038195540 -1088.53309994075 1099999.23732142 - -291.263403044536 -504.001148090843 1099999.84597657 - -119.308749723437 -227.803959832358 1099999.96994126 - -48.4121472696106 -101.061060274644 1099999.99429224 - -19.5048501521259 -44.1799693874794 1099999.99893986 - -7.81625445680215 -19.0885669790197 1099999.99980661 - -3.11936493141236 -8.16965355229456 1099999.99996524 - -1.24104649415634 -3.46951288488436 1099999.99999383 - -0.492654883359121 -1.46346203875309 1099999.99999892 - -0.195293432822675 -0.612928287321357 1099999.99999981 - -0.0774090306907840 -0.252545945341644 1099999.99999997 - -0.0307491510616186 -0.0960754292438792 1100000.00000000 - -0.0121238835484215 -0.0175160712613591 1100000.00000000 - -0.00480133795180369 0.0473778723809129 1100000.00000000 - -0.00190524118508853 0.153578614959957 1099999.99999999 - -0.000778066115706152 0.392030297138103 1099999.99999993 - -0.000239561441612440 0.966836135726556 1099999.99999958 - -0.000171426863759373 2.37126795402717 1099999.99999744 - -5.65122414629428e-05 5.80979331428777 1099999.99998466 - 6.10360237458826e-05 14.2317363502091 1099999.99990794 - -0.000123998474213420 34.8618837021385 1099999.99944757 - 2.53215178749937e-05 85.3960415519350 1099999.99668523 - 5.99640192402818e-05 209.179686502854 1099999.98011084 - 2.98689030967811e-05 512.375025310190 1099999.88066901 - 2.98445463404007e-05 1254.93889635634 1099999.28414902 - 4.37187941611782e-05 3073.08628223999 1099995.70732831 - 4.12784244829179e-05 7521.83805699803 1099974.28240493 - 6.52251848431875e-05 18389.5302193153 1099846.27343021 - 4.88069372704047e-06 44828.5184596521 1099086.16765598 - -9.14461954180927e-05 108456.751271442 1094640.18430882 - -3.62044717551239e-06 256943.720006852 1069569.97188077 - -9.21873237474472e-05 570452.767655811 940523.067167321 - 1.61831942152304e-05 -570452.767608032 940523.067196300 - -9.32059705942696e-05 -256943.720016387 1069569.97187848 - 7.51427450489011e-05 -108456.751320530 1094640.18430396 - 4.07695047441420e-05 -44828.5184712462 1099086.16765551 - -4.09670724480754e-05 -18389.5301777872 1099846.27343090 - -6.14212302486739e-06 -7521.83809132217 1099974.28240470 - 4.81561219113486e-05 -3073.08633863067 1099995.70732815 - 5.25959631524175e-05 -1254.93888757766 1099999.28414903 - -2.08280269612569e-05 -512.374979494198 1099999.88066903 - -4.54719129113984e-05 -209.179713898757 1099999.98011084 - -6.11713586097346e-05 -85.3960174100091 1099999.99668524 - 9.00295702093814e-06 -34.8618018224390 1099999.99944757 - -9.55322408469640e-05 -14.2318144001581 1099999.99990793 - -9.94222623912898e-05 -5.80972073598887 1099999.99998466 - -0.000140827243219209 -2.37108226676498 1099999.99999744 - -0.000191542115452895 -0.966647464586276 1099999.99999958 - -0.000776711676560699 -0.391238914697194 1099999.99999993 - -0.00218177835716444 -0.151430850839932 1099999.99999999 - -0.00500527786155029 -0.0421780577045374 1100000.00000000 - -0.0129413889870186 0.0308247649979440 1100000.00000000 - -0.0329954820552417 0.129890871311960 1099999.99999999 - -0.0844033508620293 0.338546784162390 1099999.99999994 - -0.216809189072392 0.832096708520270 1099999.99999966 - -0.556688263018006 2.02096645676904 1099999.99999800 - -1.42975413328673 4.88481073736367 1099999.99998822 - -3.67241156492802 11.7566249789385 1099999.99993104 - -9.42735471329749 28.1507443601706 1099999.99959939 - -24.1755446651161 66.9783303750519 1099999.99769520 - -61.8812981604573 158.079302147883 1099999.98690075 - -157.930466578727 369.245654704600 1099999.92668891 - -401.261207326282 850.915817789896 1099999.59769616 - -1012.71159396696 1926.03271727666 1099997.84764026 - -2530.69871433362 4254.56756138949 1099988.86095218 - -6231.09554750009 9083.75406832871 1099944.84355367 - -14999.2543621469 18462.8288695869 1099742.76370373 - -34835.4072396348 34835.4072396347 1098896.25934612 - -76225.7055049975 58367.6699155736 1095802.38041761 - -150435.261885618 79989.3809573445 1086724.86440472 - -249505.093717287 76797.2888017158 1068573.52795296 - -325348.130046100 32673.4759076165 1050276.64843489 - -325348.130046100 -32673.4759076165 1050276.64843489 - -249505.093717287 -76797.2888017158 1068573.52795296 - -150435.261885617 -79989.3809573445 1086724.86440472 - -76225.7055049974 -58367.6699155736 1095802.38041761 - -34835.4072396347 -34835.4072396347 1098896.25934612 - -14999.2543621469 -18462.8288695869 1099742.76370373 - -6231.09554750008 -9083.75406832872 1099944.84355367 - -2530.69871433363 -4254.56756138948 1099988.86095218 - -1012.71159396696 -1926.03271727665 1099997.84764026 - -401.261207326278 -850.915817789895 1099999.59769616 - -157.930466578725 -369.245654704597 1099999.92668891 - -61.8812981604581 -158.079302147886 1099999.98690075 - -24.1755446651158 -66.9783303750512 1099999.99769520 - -9.42735471329769 -28.1507443601709 1099999.99959939 - -3.67241156492801 -11.7566249789384 1099999.99993104 - -1.42975413328670 -4.88481073736369 1099999.99998822 - -0.556688263018043 -2.02096645676911 1099999.99999800 - -0.216809189072344 -0.832096708520194 1099999.99999966 - -0.0844033508620424 -0.338546784162396 1099999.99999994 - -0.0329954820552468 -0.129890871311981 1099999.99999999 - -0.0129413889870120 -0.0308247649979443 1100000.00000000 - -0.00500527786155665 0.0421780577045384 1100000.00000000 - -0.00218177835716684 0.151430850839928 1099999.99999999 - -0.000776711676561046 0.391238914697196 1099999.99999993 - -0.000191542115443408 0.966647464586260 1099999.99999958 - -0.000140827243187271 2.37108226676498 1099999.99999744 - -9.94222623937747e-05 5.80972073598894 1099999.99998466 - -9.55322409321201e-05 14.2318144001580 1099999.99990793 - 9.00295700968563e-06 34.8618018224391 1099999.99944757 - -6.11713585624608e-05 85.3960174100088 1099999.99668524 - -4.54719127259231e-05 209.179713898756 1099999.98011084 - -2.08280276403314e-05 512.374979494199 1099999.88066903 - 5.25959607206997e-05 1254.93888757767 1099999.28414903 - 4.81561224813173e-05 3073.08633863067 1099995.70732815 - -6.14211655672417e-06 7521.83809132215 1099974.28240470 - -4.09670620166394e-05 18389.5301777872 1099846.27343090 - 4.07694964446244e-05 44828.5184712463 1099086.16765551 - 7.51427556068805e-05 108456.751320530 1094640.18430396 - -9.32060148714838e-05 256943.720016387 1069569.97187848 - 1.61833201503814e-05 570452.767608032 940523.067196300 - -2.90202258110482e-06 -570452.767524369 940523.067247044 - 8.46792185434306e-05 -256943.719969604 1069569.97188972 - -6.11576313866037e-05 -108456.751298315 1094640.18430616 - -1.52134262534934e-05 -44828.5184626700 1099086.16765586 - 3.20370333419591e-05 -18389.5302080027 1099846.27343040 - -2.11787581067547e-06 -7521.83807277772 1099974.28240482 - -1.52378501924101e-05 -3073.08632455820 1099995.70732819 - -5.83024901744509e-05 -1254.93893351311 1099999.28414898 - -3.67694492134093e-05 -512.374994758458 1099999.88066902 - -4.57102401274181e-06 -209.179651520061 1099999.98011085 - -6.12048018518952e-05 -85.3960093291299 1099999.99668524 - -0.000187995549034472 -34.8618304395157 1099999.99944757 - -1.67588395330626e-05 -14.2317233329543 1099999.99990794 - -9.60524020694209e-05 -5.80969770173779 1099999.99998466 - -0.000163357122710823 -2.37103083224868 1099999.99999744 - -0.000303025627229435 -0.966268698635854 1099999.99999958 - -0.000811776052765086 -0.390376819469256 1099999.99999993 - -0.00180756610338917 -0.149418368423083 1099999.99999999 - -0.00477372925769284 -0.0368689586636486 1100000.00000000 - -0.0123661416600069 0.0445385268679702 1100000.00000000 - -0.0321121170527338 0.165346268034414 1099999.99999999 - -0.0833301060470062 0.430337686208153 1099999.99999991 - -0.216686523120185 1.06955966373820 1099999.99999946 - -0.564781116428165 2.63658743503199 1099999.99999669 - -1.47558193696042 6.48287830640933 1099999.99997991 - -3.86297926270558 15.9058379677090 1099999.99987822 - -10.1323811799516 38.9271481262941 1099999.99926455 - -26.6262676843028 94.9551380155276 1099999.99557935 - -70.0877467215690 230.616750614912 1099999.97359256 - -184.732910669413 556.828422814878 1099999.84355265 - -487.255329194350 1333.78032857858 1099999.08345974 - -1284.83831162125 3159.52703745349 1099994.71206884 - -3381.48924396508 7366.57104569069 1099970.13557711 - -8857.49932602489 16776.8648370100 1099836.38851964 - -22972.1281455670 36844.5379367166 1099142.73929854 - -58367.6699155737 76225.7055049974 1095802.38041761 - -141824.816435596 141824.816435596 1081559.72691573 - -311216.560353483 215128.460438415 1032891.08722611 - -552565.443154550 220879.672581252 925139.773910848 - -733667.208906257 96566.8782568274 813884.060907592 - -733667.208906257 -96566.8782568276 813884.060907592 - -552565.443154550 -220879.672581252 925139.773910848 - -311216.560353483 -215128.460438415 1032891.08722611 - -141824.816435596 -141824.816435596 1081559.72691573 - -58367.6699155737 -76225.7055049974 1095802.38041761 - -22972.1281455669 -36844.5379367165 1099142.73929854 - -8857.49932602488 -16776.8648370099 1099836.38851964 - -3381.48924396508 -7366.57104569069 1099970.13557711 - -1284.83831162125 -3159.52703745349 1099994.71206884 - -487.255329194345 -1333.78032857857 1099999.08345974 - -184.732910669411 -556.828422814876 1099999.84355265 - -70.0877467215691 -230.616750614910 1099999.97359256 - -26.6262676843033 -94.9551380155293 1099999.99557935 - -10.1323811799513 -38.9271481262935 1099999.99926455 - -3.86297926270571 -15.9058379677094 1099999.99987822 - -1.47558193696048 -6.48287830640945 1099999.99997991 - -0.564781116428087 -2.63658743503182 1099999.99999669 - -0.216686523120211 -1.06955966373821 1099999.99999946 - -0.0833301060469958 -0.430337686208165 1099999.99999991 - -0.0321121170527326 -0.165346268034422 1099999.99999999 - -0.0123661416600136 -0.0445385268679706 1100000.00000000 - -0.00477372925768914 0.0368689586636537 1100000.00000000 - -0.00180756610339195 0.149418368423074 1099999.99999999 - -0.000811776052770405 0.390376819469243 1099999.99999993 - -0.000303025627222280 0.966268698635870 1099999.99999958 - -0.000163357122689130 2.37103083224864 1099999.99999744 - -9.60524020412463e-05 5.80969770173772 1099999.99998466 - -1.67588395582042e-05 14.2317233329546 1099999.99990794 - -0.000187995549281748 34.8618304395157 1099999.99944757 - -6.12048016399284e-05 85.3960093291291 1099999.99668524 - -4.57102314486286e-06 209.179651520061 1099999.98011085 - -3.67694506444868e-05 512.374994758460 1099999.88066902 - -5.83024936213452e-05 1254.93893351311 1099999.28414898 - -1.52378483316938e-05 3073.08632455820 1099995.70732819 - -2.11787580783677e-06 7521.83807277772 1099974.28240482 - 3.20370364742155e-05 18389.5302080027 1099846.27343040 - -1.52134127029959e-05 44828.5184626699 1099086.16765586 - -6.11576078213233e-05 108456.751298315 1094640.18430616 - 8.46792167473922e-05 256943.719969604 1069569.97188972 - -2.90188270882370e-06 570452.767524369 940523.067247044 - 2.91244872417479e-05 -570452.767457596 940523.067287544 - -0.000106871652198342 -256943.719950937 1069569.97189421 - 5.65840544351905e-05 -108456.751307773 1094640.18430522 - 1.57301673946820e-05 -44828.5184531703 1099086.16765625 - -7.01274885236237e-05 -18389.5301687517 1099846.27343105 - -4.22513194025053e-05 -7521.83809766502 1099974.28240465 - -1.39168553342177e-05 -3073.08636523999 1099995.70732807 - -4.97333576629265e-06 -1254.93890754579 1099999.28414901 - -7.96342255871526e-05 -512.374962637531 1099999.88066904 - -0.000115962465459583 -209.179673929981 1099999.98011085 - -0.000112374331006825 -85.3959832382913 1099999.99668524 - -1.77247962437551e-05 -34.8617675242507 1099999.99944757 - -0.000121121077002924 -14.2317672342098 1099999.99990793 - -0.000135772460227936 -5.80964500108631 1099999.99998466 - -0.000146632132580065 -2.37087009712485 1099999.99999744 - -0.000146288235035571 -0.966057337483417 1099999.99999958 - -0.000584086006817438 -0.389688624085760 1099999.99999993 - -0.00168803442742570 -0.147503282479210 1099999.99999999 - -0.00392736841834715 -0.0320363792721879 1100000.00000000 - -0.0104516453249018 0.0571823863533026 1100000.00000000 - -0.0272048290580671 0.198349241074971 1099999.99999998 - -0.0711864937586443 0.516657509679644 1099999.99999988 - -0.187513815807227 1.29667208930915 1099999.99999922 - -0.494951293538126 3.23526726762747 1099999.99999513 - -1.31093931212877 8.06483529365451 1099999.99996965 - -3.48535066232228 20.1010669111290 1099999.99981082 - -9.30419554595024 50.0878872535362 1099999.99882029 - -24.9499880449843 124.745308315047 1099999.99264368 - -67.2302843316292 310.391436023112 1099999.95415329 - -182.107710180278 771.091449385342 1099999.71466122 - -496.033112581283 1910.61817485870 1099998.22885737 - -1359.04377459595 4714.17348254049 1099989.05884031 - -3745.70434025275 11550.5014486689 1099932.97778332 - -10380.5642785482 27963.8881448792 1099595.50055695 - -28868.9655442318 66250.7119016385 1097623.53564459 - -79989.3809573445 150435.261885618 1086724.86440472 - -215128.460438415 311216.560353483 1032891.08722611 - -513353.025453389 513353.025453389 826400.231434929 - -888533.274160355 525061.957333286 380550.340521748 - -1078245.49946157 217542.868071535 -7857.69954158687 - -1078245.49946157 -217542.868071536 -7857.69954158666 - -888533.274160355 -525061.957333286 380550.340521748 - -513353.025453388 -513353.025453389 826400.231434930 - -215128.460438415 -311216.560353483 1032891.08722611 - -79989.3809573445 -150435.261885617 1086724.86440472 - -28868.9655442317 -66250.7119016385 1097623.53564459 - -10380.5642785481 -27963.8881448792 1099595.50055695 - -3745.70434025275 -11550.5014486688 1099932.97778332 - -1359.04377459596 -4714.17348254048 1099989.05884031 - -496.033112581283 -1910.61817485871 1099998.22885737 - -182.107710180274 -771.091449385334 1099999.71466122 - -67.2302843316289 -310.391436023112 1099999.95415329 - -24.9499880449847 -124.745308315046 1099999.99264368 - -9.30419554595044 -50.0878872535371 1099999.99882029 - -3.48535066232217 -20.1010669111287 1099999.99981082 - -1.31093931212878 -8.06483529365461 1099999.99996965 - -0.494951293538168 -3.23526726762758 1099999.99999513 - -0.187513815807181 -1.29667208930901 1099999.99999922 - -0.0711864937586605 -0.516657509679653 1099999.99999988 - -0.0272048290580686 -0.198349241074996 1099999.99999998 - -0.0104516453248949 -0.0571823863533036 1100000.00000000 - -0.00392736841835205 0.0320363792721929 1100000.00000000 - -0.00168803442742554 0.147503282479213 1099999.99999999 - -0.000584086006816794 0.389688624085738 1099999.99999993 - -0.000146288235044267 0.966057337483383 1099999.99999958 - -0.000146632132561081 2.37087009712484 1099999.99999744 - -0.000135772460189137 5.80964500108637 1099999.99998466 - -0.000121121077112637 14.2317672342100 1099999.99990793 - -1.77247962019587e-05 34.8617675242506 1099999.99944757 - -0.000112374330733306 85.3959832382897 1099999.99668524 - -0.000115962465588269 209.179673929981 1099999.98011085 - -7.96342261467732e-05 512.374962637537 1099999.88066904 - -4.97333596467941e-06 1254.93890754579 1099999.28414901 - -1.39168561580665e-05 3073.08636523998 1099995.70732807 - -4.22513279995167e-05 7521.83809766500 1099974.28240465 - -7.01274937108439e-05 18389.5301687517 1099846.27343105 - 1.57301854539989e-05 44828.5184531703 1099086.16765625 - 5.65840159459736e-05 108456.751307773 1094640.18430522 - -0.000106871602212655 256943.719950937 1069569.97189421 - 2.91245811002950e-05 570452.767457596 940523.067287544 - -7.44532180412816e-05 -570452.767463756 940523.067283807 - 6.93893912025495e-05 -256943.719955658 1069569.97189307 - -7.77533673324430e-05 -108456.751311180 1094640.18430488 - -4.08681440177242e-05 -44828.5184558616 1099086.16765614 - 1.44130113191796e-05 -18389.5301896842 1099846.27343070 - -2.17569754115581e-05 -7521.83808581420 1099974.28240473 - -4.21226737331684e-05 -3073.08635312251 1099995.70732811 - -8.99198265764611e-05 -1254.93893443563 1099999.28414898 - -4.67063352674387e-05 -512.374965339525 1099999.88066904 - -1.17124492441377e-05 -209.179633490945 1099999.98011085 - -6.21674735921618e-05 -85.3959757850375 1099999.99668524 - -0.000173406774892268 -34.8617805177220 1099999.99944757 - -2.97549670067730e-05 -14.2317139356503 1099999.99990794 - -5.98488095619672e-05 -5.80961624994740 1099999.99998466 - -8.05757678496444e-05 -2.37083090047582 1099999.99999744 - -0.000216438837259169 -0.965821296615171 1099999.99999958 - -0.000473294021296160 -0.389101859116738 1099999.99999993 - -0.000910910135947781 -0.146116933702090 1099999.99999999 - -0.00265082352016645 -0.0283377305560055 1100000.00000000 - -0.00691894361214598 0.0669313113912235 1100000.00000000 - -0.0182818838556610 0.224046980456027 1099999.99999998 - -0.0484019254014276 0.584784101672573 1099999.99999984 - -0.128227291407377 1.47752424475237 1099999.99999900 - -0.341217508755046 3.71769087302006 1099999.99999366 - -0.912449445627843 9.35868667028142 1099999.99995981 - -2.45271891187508 23.5882899015124 1099999.99974435 - -6.63064593958193 59.5421174067747 1099999.99836853 - -18.0407995442281 150.543586974361 1099999.98955053 - -49.4451217170800 381.295484139523 1099999.93280406 - -136.633275954166 967.512676444281 1099999.56602290 - -381.102281223827 2459.44787009264 1099997.18448604 - -1074.31609898091 6261.55840681996 1099981.65381575 - -3065.10593837897 15950.8398811979 1099880.07338649 - -8862.94514098249 40550.3139723952 1099216.59387046 - -25982.6135524763 102129.723343038 1094940.37435965 - -76797.2888017159 249505.093717287 1068573.52795296 - -220879.672581252 552565.443154550 925139.773910848 - -525061.957333286 888533.274160355 380550.340521747 - -714809.156884212 714809.156884212 -433700.055878443 - -698385.654212178 238065.587118882 -815832.246371992 - -698385.654212178 -238065.587118883 -815832.246371991 - -714809.156884212 -714809.156884212 -433700.055878442 - -525061.957333286 -888533.274160355 380550.340521748 - -220879.672581252 -552565.443154550 925139.773910848 - -76797.2888017157 -249505.093717287 1068573.52795296 - -25982.6135524762 -102129.723343038 1094940.37435965 - -8862.94514098246 -40550.3139723951 1099216.59387046 - -3065.10593837898 -15950.8398811979 1099880.07338649 - -1074.31609898091 -6261.55840681995 1099981.65381575 - -381.102281223828 -2459.44787009264 1099997.18448604 - -136.633275954167 -967.512676444281 1099999.56602290 - -49.4451217170783 -381.295484139517 1099999.93280406 - -18.0407995442283 -150.543586974363 1099999.98955053 - -6.63064593958203 -59.5421174067743 1099999.99836853 - -2.45271891187509 -23.5882899015130 1099999.99974435 - -0.912449445627850 -9.35868667028143 1099999.99995981 - -0.341217508755021 -3.71769087301988 1099999.99999366 - -0.128227291407405 -1.47752424475242 1099999.99999900 - -0.0484019254014101 -0.584784101672559 1099999.99999984 - -0.0182818838556599 -0.224046980456032 1099999.99999998 - -0.00691894361215328 -0.0669313113912312 1100000.00000000 - -0.00265082352016339 0.0283377305560103 1100000.00000000 - -0.000910910135947200 0.146116933702090 1099999.99999999 - -0.000473294021299942 0.389101859116733 1099999.99999993 - -0.000216438837246438 0.965821296615114 1099999.99999958 - -8.05757678611389e-05 2.37083090047576 1099999.99999744 - -5.98488096494272e-05 5.80961624994761 1099999.99998466 - -2.97549668648437e-05 14.2317139356504 1099999.99990794 - -0.000173406774639425 34.8617805177213 1099999.99944757 - -6.21674737298451e-05 85.3959757850371 1099999.99668524 - -1.17124496703568e-05 209.179633490945 1099999.98011085 - -4.67063356903491e-05 512.374965339527 1099999.88066904 - -8.99198255759753e-05 1254.93893443564 1099999.28414898 - -4.21226715914619e-05 3073.08635312251 1099995.70732811 - -2.17569796961331e-05 7521.83808581420 1099974.28240473 - 1.44129948705192e-05 18389.5301896842 1099846.27343070 - -4.08681388995739e-05 44828.5184558616 1099086.16765614 - -7.77533856271851e-05 108456.751311180 1094640.18430488 - 6.93895038886100e-05 256943.719955658 1069569.97189307 - -7.44531560601501e-05 570452.767463756 940523.067283807 - 2.07650146903824e-05 -570452.767490176 940523.067267783 - -0.000114558657236921 -256943.719984330 1069569.97188618 - 5.05384872610018e-05 -108456.751332471 1094640.18430277 - 1.69442751377096e-05 -44828.5184610903 1099086.16765592 - -5.36744811722963e-05 -18389.5301794665 1099846.27343087 - -2.29160350456388e-05 -7521.83809696304 1099974.28240466 - -3.53868469523994e-06 -3073.08636863015 1099995.70732807 - 2.59139812651667e-05 -1254.93892210727 1099999.28414900 - -3.78016682098003e-05 -512.374952927452 1099999.88066904 - -7.71839283621083e-05 -209.179640897625 1099999.98011085 - -4.80885786567963e-05 -85.3959641338581 1099999.99668524 - 5.70648398751636e-05 -34.8617558962104 1099999.99944757 - -5.91031428311812e-05 -14.2317258401679 1099999.99990794 - -5.94770921146414e-05 -5.80959562526254 1099999.99998466 - -5.75253651971078e-05 -2.37076721113937 1099999.99999745 - 1.95867547905245e-05 -0.965727672518251 1099999.99999958 - -9.00322107057411e-05 -0.388822758482090 1099999.99999993 - -0.000481648378068510 -0.145334338069833 1099999.99999999 - -0.000889742140158459 -0.0263207633762471 1100000.00000000 - -0.00248968832405121 0.0722736931260569 1100000.00000000 - -0.00649352844016868 0.238204716796015 1099999.99999997 - -0.0170734009622857 0.622405199001567 1099999.99999982 - -0.0456034502092788 1.57827751785785 1099999.99999887 - -0.121987361341019 3.98876242675905 1099999.99999276 - -0.327955753951094 10.0918437734641 1099999.99995366 - -0.886564201705285 25.5851482736738 1099999.99970210 - -2.41227910785792 65.0219784601473 1099999.99807560 - -6.61389101010492 165.712154476188 1099999.98749806 - -18.2891138768317 423.699510704689 1099999.91824738 - -51.0755321474975 1087.40126805936 1099999.46134067 - -144.265555239824 2802.80157083266 1099996.41976272 - -412.882815319622 7259.13484749023 1099975.96995982 - -1199.81978248546 18893.2570721847 1099837.08123962 - -3548.25094091223 49342.6818445478 1098887.03225748 - -10694.4287535637 128453.555723596 1092421.76526084 - -32673.4759076167 325348.130046100 1050276.64843489 - -96566.8782568277 733667.208906258 813884.060907592 - -217542.868071536 1078245.49946157 -7857.69954158763 - -238065.587118883 698385.654212177 -815832.246371992 - -208944.178917673 208944.178917673 -1059568.14797012 - -208944.178917673 -208944.178917673 -1059568.14797012 - -238065.587118883 -698385.654212178 -815832.246371991 - -217542.868071536 -1078245.49946157 -7857.69954158619 - -96566.8782568274 -733667.208906257 813884.060907593 - -32673.4759076165 -325348.130046099 1050276.64843489 - -10694.4287535636 -128453.555723596 1092421.76526084 - -3548.25094091227 -49342.6818445477 1098887.03225748 - -1199.81978248546 -18893.2570721847 1099837.08123962 - -412.882815319632 -7259.13484749023 1099975.96995982 - -144.265555239819 -2802.80157083266 1099996.41976272 - -51.0755321474974 -1087.40126805936 1099999.46134067 - -18.2891138768329 -423.699510704690 1099999.91824738 - -6.61389101010435 -165.712154476185 1099999.98749806 - -2.41227910785789 -65.0219784601482 1099999.99807560 - -0.886564201705328 -25.5851482736737 1099999.99970210 - -0.327955753951067 -10.0918437734643 1099999.99995366 - -0.121987361341037 -3.98876242675914 1099999.99999276 - -0.0456034502092645 -1.57827751785769 1099999.99999887 - -0.0170734009623021 -0.622405199001588 1099999.99999982 - -0.00649352844016439 -0.238204716796037 1099999.99999997 - -0.00248968832404317 -0.0722736931260547 1100000.00000000 - -0.000889742140165305 0.0263207633762427 1100000.00000000 - -0.000481648378070403 0.145334338069840 1099999.99999999 - -9.00322106953872e-05 0.388822758482061 1099999.99999993 - 1.95867547780803e-05 0.965727672518229 1099999.99999958 - -5.75253652324786e-05 2.37076721113946 1099999.99999745 - -5.94770920532681e-05 5.80959562526242 1099999.99998466 - -5.91031427720614e-05 14.2317258401677 1099999.99990794 - 5.70648398536092e-05 34.8617558962108 1099999.99944757 - -4.80885786699349e-05 85.3959641338571 1099999.99668524 - -7.71839282728103e-05 209.179640897625 1099999.98011085 - -3.78016683256470e-05 512.374952927456 1099999.88066904 - 2.59139806293565e-05 1254.93892210727 1099999.28414900 - -3.53868224725546e-06 3073.08636863016 1099995.70732807 - -2.29160292469741e-05 7521.83809696305 1099974.28240466 - -5.36744792643141e-05 18389.5301794665 1099846.27343087 - 1.69442740817729e-05 44828.5184610903 1099086.16765592 - 5.05384513468254e-05 108456.751332471 1094640.18430277 - -0.000114558694387078 256943.719984330 1069569.97188618 - 2.07650743563997e-05 570452.767490176 940523.067267783 - -2.07649801306469e-05 -570452.767490176 940523.067267783 - 0.000114558759840796 -256943.719984330 1069569.97188618 - -5.05384681157955e-05 -108456.751332471 1094640.18430277 - -1.69442674542542e-05 -44828.5184610903 1099086.16765592 - 5.36744822061492e-05 -18389.5301794665 1099846.27343087 - 2.29160276421082e-05 -7521.83809696305 1099974.28240466 - 3.53869033614928e-06 -3073.08636863015 1099995.70732807 - -2.59139800865425e-05 -1254.93892210727 1099999.28414900 - 3.78016672221768e-05 -512.374952927455 1099999.88066904 - 7.71839280048764e-05 -209.179640897625 1099999.98011085 - 4.80885787389122e-05 -85.3959641338576 1099999.99668524 - -5.70648397894845e-05 -34.8617558962107 1099999.99944757 - 5.91031427871129e-05 -14.2317258401678 1099999.99990794 - 5.94770920630926e-05 -5.80959562526241 1099999.99998466 - 5.75253652008585e-05 -2.37076721113951 1099999.99999745 - -1.95867547758514e-05 -0.965727672518249 1099999.99999958 - 9.00322107053628e-05 -0.388822758482050 1099999.99999993 - 0.000481648378068571 -0.145334338069854 1099999.99999999 - 0.000889742140160988 -0.0263207633762340 1100000.00000000 - 0.00248968832404782 0.0722736931260379 1100000.00000000 - 0.00649352844016285 0.238204716796028 1099999.99999997 - 0.0170734009622888 0.622405199001627 1099999.99999982 - 0.0456034502092830 1.57827751785770 1099999.99999887 - 0.121987361341044 3.98876242675919 1099999.99999276 - 0.327955753951132 10.0918437734641 1099999.99995366 - 0.886564201705250 25.5851482736736 1099999.99970210 - 2.41227910785765 65.0219784601482 1099999.99807560 - 6.61389101010453 165.712154476186 1099999.98749806 - 18.2891138768322 423.699510704691 1099999.91824738 - 51.0755321474972 1087.40126805937 1099999.46134067 - 144.265555239826 2802.80157083266 1099996.41976272 - 412.882815319628 7259.13484749022 1099975.96995982 - 1199.81978248546 18893.2570721847 1099837.08123962 - 3548.25094091224 49342.6818445478 1098887.03225748 - 10694.4287535637 128453.555723596 1092421.76526084 - 32673.4759076166 325348.130046100 1050276.64843489 - 96566.8782568275 733667.208906258 813884.060907592 - 217542.868071536 1078245.49946157 -7857.69954158776 - 238065.587118883 698385.654212177 -815832.246371992 - 208944.178917673 208944.178917673 -1059568.14797012 - 208944.178917673 -208944.178917673 -1059568.14797012 - 238065.587118883 -698385.654212178 -815832.246371992 - 217542.868071536 -1078245.49946157 -7857.69954158625 - 96566.8782568274 -733667.208906257 813884.060907593 - 32673.4759076165 -325348.130046099 1050276.64843489 - 10694.4287535637 -128453.555723596 1092421.76526084 - 3548.25094091221 -49342.6818445477 1098887.03225748 - 1199.81978248546 -18893.2570721847 1099837.08123962 - 412.882815319638 -7259.13484749022 1099975.96995982 - 144.265555239821 -2802.80157083267 1099996.41976272 - 51.0755321474970 -1087.40126805936 1099999.46134067 - 18.2891138768322 -423.699510704686 1099999.91824738 - 6.61389101010402 -165.712154476188 1099999.98749806 - 2.41227910785783 -65.0219784601474 1099999.99807560 - 0.886564201705449 -25.5851482736742 1099999.99970210 - 0.327955753951096 -10.0918437734642 1099999.99995366 - 0.121987361341022 -3.98876242675900 1099999.99999276 - 0.0456034502092663 -1.57827751785775 1099999.99999887 - 0.0170734009623026 -0.622405199001605 1099999.99999982 - 0.00649352844016459 -0.238204716796035 1099999.99999997 - 0.00248968832404369 -0.0722736931260437 1100000.00000000 - 0.000889742140162783 0.0263207633762449 1100000.00000000 - 0.000481648378069898 0.145334338069833 1099999.99999999 - 9.00322107017155e-05 0.388822758482057 1099999.99999993 - -1.95867547892855e-05 0.965727672518262 1099999.99999958 - 5.75253652177273e-05 2.37076721113936 1099999.99999745 - 5.94770920837614e-05 5.80959562526249 1099999.99998466 - 5.91031427551902e-05 14.2317258401681 1099999.99990794 - -5.70648398426036e-05 34.8617558962100 1099999.99944757 - 4.80885788904610e-05 85.3959641338573 1099999.99668524 - 7.71839282703275e-05 209.179640897625 1099999.98011085 - 3.78016673146433e-05 512.374952927457 1099999.88066904 - -2.59139804675733e-05 1254.93892210727 1099999.28414900 - 3.53868890410612e-06 3073.08636863014 1099995.70732807 - 2.29160329054590e-05 7521.83809696305 1099974.28240466 - 5.36744866136153e-05 18389.5301794665 1099846.27343087 - -1.69442401598415e-05 44828.5184610904 1099086.16765592 - -5.05384503103714e-05 108456.751332471 1094640.18430277 - 0.000114558657640455 256943.719984330 1069569.97188618 - -2.07651110579158e-05 570452.767490176 940523.067267783 - 7.44533607296089e-05 -570452.767463757 940523.067283807 - -6.93894386499747e-05 -256943.719955658 1069569.97189307 - 7.77533339894444e-05 -108456.751311180 1094640.18430488 - 4.08681384410409e-05 -44828.5184558616 1099086.16765614 - -1.44129543020369e-05 -18389.5301896842 1099846.27343070 - 2.17569786823479e-05 -7521.83808581419 1099974.28240473 - 4.21226690463728e-05 -3073.08635312252 1099995.70732811 - 8.99198286459794e-05 -1254.93893443563 1099999.28414898 - 4.67063358270186e-05 -512.374965339523 1099999.88066904 - 1.17124490215539e-05 -209.179633490946 1099999.98011085 - 6.21674735225435e-05 -85.3959757850382 1099999.99668524 - 0.000173406774817754 -34.8617805177214 1099999.99944757 - 2.97549669718789e-05 -14.2317139356502 1099999.99990794 - 5.98488095885080e-05 -5.80961624994771 1099999.99998466 - 8.05757678601592e-05 -2.37083090047578 1099999.99999744 - 0.000216438837247780 -0.965821296615127 1099999.99999958 - 0.000473294021300535 -0.389101859116754 1099999.99999993 - 0.000910910135950842 -0.146116933702079 1099999.99999999 - 0.00265082352016436 -0.0283377305560162 1100000.00000000 - 0.00691894361214759 0.0669313113912465 1100000.00000000 - 0.0182818838556539 0.224046980456012 1099999.99999998 - 0.0484019254014137 0.584784101672513 1099999.99999984 - 0.128227291407421 1.47752424475252 1099999.99999900 - 0.341217508755061 3.71769087301992 1099999.99999366 - 0.912449445627775 9.35868667028137 1099999.99995981 - 2.45271891187508 23.5882899015127 1099999.99974435 - 6.63064593958213 59.5421174067742 1099999.99836853 - 18.0407995442280 150.543586974364 1099999.98955053 - 49.4451217170780 381.295484139522 1099999.93280406 - 136.633275954167 967.512676444277 1099999.56602290 - 381.102281223831 2459.44787009264 1099997.18448604 - 1074.31609898091 6261.55840681996 1099981.65381575 - 3065.10593837897 15950.8398811979 1099880.07338649 - 8862.94514098250 40550.3139723951 1099216.59387046 - 25982.6135524763 102129.723343038 1094940.37435965 - 76797.2888017159 249505.093717287 1068573.52795296 - 220879.672581252 552565.443154550 925139.773910847 - 525061.957333286 888533.274160355 380550.340521747 - 714809.156884212 714809.156884212 -433700.055878443 - 698385.654212178 238065.587118882 -815832.246371992 - 698385.654212178 -238065.587118883 -815832.246371992 - 714809.156884212 -714809.156884212 -433700.055878442 - 525061.957333285 -888533.274160355 380550.340521748 - 220879.672581252 -552565.443154550 925139.773910848 - 76797.2888017157 -249505.093717287 1068573.52795296 - 25982.6135524762 -102129.723343038 1094940.37435965 - 8862.94514098245 -40550.3139723951 1099216.59387046 - 3065.10593837898 -15950.8398811979 1099880.07338649 - 1074.31609898091 -6261.55840681996 1099981.65381575 - 381.102281223827 -2459.44787009263 1099997.18448604 - 136.633275954165 -967.512676444278 1099999.56602290 - 49.4451217170778 -381.295484139522 1099999.93280406 - 18.0407995442282 -150.543586974361 1099999.98955053 - 6.63064593958226 -59.5421174067752 1099999.99836853 - 2.45271891187507 -23.5882899015125 1099999.99974435 - 0.912449445627834 -9.35868667028145 1099999.99995981 - 0.341217508755057 -3.71769087302002 1099999.99999366 - 0.128227291407402 -1.47752424475236 1099999.99999900 - 0.0484019254014025 -0.584784101672542 1099999.99999984 - 0.0182818838556603 -0.224046980456034 1099999.99999998 - 0.00691894361215377 -0.0669313113912385 1100000.00000000 - 0.00265082352016400 0.0283377305560078 1100000.00000000 - 0.000910910135948160 0.146116933702087 1099999.99999999 - 0.000473294021295873 0.389101859116750 1099999.99999993 - 0.000216438837258939 0.965821296615080 1099999.99999958 - 8.05757678409296e-05 2.37083090047583 1099999.99999744 - 5.98488095771463e-05 5.80961624994764 1099999.99998466 - 2.97549669991022e-05 14.2317139356501 1099999.99990794 - 0.000173406774784407 34.8617805177215 1099999.99944757 - 6.21674735664580e-05 85.3959757850369 1099999.99668524 - 1.17124491681032e-05 209.179633490946 1099999.98011085 - 4.67063358719705e-05 512.374965339526 1099999.88066904 - 8.99198280273453e-05 1254.93893443563 1099999.28414898 - 4.21226725559364e-05 3073.08635312252 1099995.70732811 - 2.17569800170579e-05 7521.83808581418 1099974.28240473 - -1.44129442298758e-05 18389.5301896841 1099846.27343070 - 4.08681722557718e-05 44828.5184558616 1099086.16765614 - 7.77534457969630e-05 108456.751311180 1094640.18430488 - -6.93894709949611e-05 256943.719955658 1069569.97189307 - 7.44531326753095e-05 570452.767463757 940523.067283807 - -2.91244357964830e-05 -570452.767457596 940523.067287544 - 0.000106871702531506 -256943.719950937 1069569.97189421 - -5.65840168031150e-05 -108456.751307773 1094640.18430522 - -1.57301229707879e-05 -44828.5184531704 1099086.16765625 - 7.01274946913586e-05 -18389.5301687517 1099846.27343105 - 4.22513293965010e-05 -7521.83809766496 1099974.28240465 - 1.39168585451064e-05 -3073.08636523997 1099995.70732807 - 4.97333154391621e-06 -1254.93890754579 1099999.28414901 - 7.96342256872854e-05 -512.374962637531 1099999.88066904 - 0.000115962466115370 -209.179673929982 1099999.98011085 - 0.000112374330832970 -85.3959832382911 1099999.99668524 - 1.77247961548656e-05 -34.8617675242508 1099999.99944757 - 0.000121121077073205 -14.2317672342098 1099999.99990793 - 0.000135772460211965 -5.80964500108623 1099999.99998466 - 0.000146632132562911 -2.37087009712493 1099999.99999744 - 0.000146288235053915 -0.966057337483421 1099999.99999958 - 0.000584086006815139 -0.389688624085736 1099999.99999993 - 0.00168803442742189 -0.147503282479216 1099999.99999999 - 0.00392736841835048 -0.0320363792721781 1100000.00000000 - 0.0104516453248974 0.0571823863532814 1100000.00000000 - 0.0272048290580671 0.198349241074995 1099999.99999998 - 0.0711864937586548 0.516657509679682 1099999.99999988 - 0.187513815807188 1.29667208930900 1099999.99999922 - 0.494951293538184 3.23526726762763 1099999.99999513 - 1.31093931212887 8.06483529365448 1099999.99996965 - 3.48535066232206 20.1010669111287 1099999.99981082 - 9.30419554594996 50.0878872535373 1099999.99882029 - 24.9499880449848 124.745308315046 1099999.99264368 - 67.2302843316308 310.391436023112 1099999.95415329 - 182.107710180275 771.091449385343 1099999.71466122 - 496.033112581278 1910.61817485870 1099998.22885737 - 1359.04377459596 4714.17348254048 1099989.05884031 - 3745.70434025277 11550.5014486688 1099932.97778332 - 10380.5642785481 27963.8881448792 1099595.50055695 - 28868.9655442318 66250.7119016385 1097623.53564459 - 79989.3809573445 150435.261885618 1086724.86440472 - 215128.460438415 311216.560353483 1032891.08722611 - 513353.025453389 513353.025453389 826400.231434929 - 888533.274160355 525061.957333286 380550.340521747 - 1078245.49946157 217542.868071535 -7857.69954158717 - 1078245.49946157 -217542.868071536 -7857.69954158687 - 888533.274160355 -525061.957333286 380550.340521748 - 513353.025453388 -513353.025453389 826400.231434930 - 215128.460438415 -311216.560353483 1032891.08722611 - 79989.3809573445 -150435.261885617 1086724.86440472 - 28868.9655442317 -66250.7119016385 1097623.53564459 - 10380.5642785481 -27963.8881448791 1099595.50055695 - 3745.70434025275 -11550.5014486689 1099932.97778332 - 1359.04377459595 -4714.17348254049 1099989.05884031 - 496.033112581280 -1910.61817485871 1099998.22885737 - 182.107710180275 -771.091449385339 1099999.71466122 - 67.2302843316296 -310.391436023110 1099999.95415329 - 24.9499880449847 -124.745308315048 1099999.99264368 - 9.30419554595011 -50.0878872535362 1099999.99882029 - 3.48535066232235 -20.1010669111291 1099999.99981082 - 1.31093931212884 -8.06483529365461 1099999.99996965 - 0.494951293538110 -3.23526726762740 1099999.99999513 - 0.187513815807182 -1.29667208930905 1099999.99999922 - 0.0711864937586684 -0.516657509679676 1099999.99999988 - 0.0272048290580692 -0.198349241075000 1099999.99999998 - 0.0104516453248951 -0.0571823863532910 1100000.00000000 - 0.00392736841835103 0.0320363792721948 1100000.00000000 - 0.00168803442742578 0.147503282479206 1099999.99999999 - 0.000584086006818398 0.389688624085710 1099999.99999993 - 0.000146288235028248 0.966057337483455 1099999.99999958 - 0.000146632132573187 2.37087009712486 1099999.99999744 - 0.000135772460217832 5.80964500108624 1099999.99998466 - 0.000121121077027589 14.2317672342100 1099999.99990793 - 1.77247963207111e-05 34.8617675242503 1099999.99944757 - 0.000112374330658817 85.3959832382909 1099999.99668524 - 0.000115962465360296 209.179673929981 1099999.98011085 - 7.96342267171403e-05 512.374962637534 1099999.88066904 - 4.97333500117928e-06 1254.93890754579 1099999.28414901 - 1.39168563352439e-05 3073.08636523997 1099995.70732807 - 4.22513295580166e-05 7521.83809766495 1099974.28240465 - 7.01274881785944e-05 18389.5301687517 1099846.27343105 - -1.57301336389027e-05 44828.5184531704 1099086.16765625 - -5.65840756626186e-05 108456.751307773 1094640.18430522 - 0.000106871597108990 256943.719950937 1069569.97189421 - -2.91245806399398e-05 570452.767457596 940523.067287544 - 2.90191329941749e-06 -570452.767524369 940523.067247044 - -8.46792540181929e-05 -256943.719969604 1069569.97188972 - 6.11576897930227e-05 -108456.751298315 1094640.18430616 - 1.52134210661902e-05 -44828.5184626699 1099086.16765586 - -3.20370794585664e-05 -18389.5302080026 1099846.27343040 - 2.11787875048725e-06 -7521.83807277772 1099974.28240482 - 1.52378491071840e-05 -3073.08632455820 1099995.70732819 - 5.83024908974262e-05 -1254.93893351310 1099999.28414898 - 3.67694491632365e-05 -512.374994758461 1099999.88066902 - 4.57102359711795e-06 -209.179651520062 1099999.98011085 - 6.12048018963689e-05 -85.3960093291295 1099999.99668524 - 0.000187995549158321 -34.8618304395157 1099999.99944757 - 1.67588395127244e-05 -14.2317233329544 1099999.99990794 - 9.60524020585919e-05 -5.80969770173784 1099999.99998466 - 0.000163357122700497 -2.37103083224866 1099999.99999744 - 0.000303025627222518 -0.966268698635866 1099999.99999958 - 0.000811776052775164 -0.390376819469244 1099999.99999993 - 0.00180756610338896 -0.149418368423071 1099999.99999999 - 0.00477372925769046 -0.0368689586636645 1100000.00000000 - 0.0123661416600145 0.0445385268679884 1100000.00000000 - 0.0321121170527229 0.165346268034394 1099999.99999999 - 0.0833301060469848 0.430337686208124 1099999.99999991 - 0.216686523120247 1.06955966373831 1099999.99999946 - 0.564781116428143 2.63658743503185 1099999.99999669 - 1.47558193696036 6.48287830640936 1099999.99997991 - 3.86297926270571 15.9058379677092 1099999.99987822 - 10.1323811799515 38.9271481262935 1099999.99926455 - 26.6262676843027 94.9551380155293 1099999.99557935 - 70.0877467215686 230.616750614912 1099999.97359256 - 184.732910669416 556.828422814876 1099999.84355265 - 487.255329194349 1333.78032857858 1099999.08345974 - 1284.83831162124 3159.52703745349 1099994.71206884 - 3381.48924396509 7366.57104569069 1099970.13557711 - 8857.49932602489 16776.8648370099 1099836.38851964 - 22972.1281455670 36844.5379367166 1099142.73929854 - 58367.6699155737 76225.7055049975 1095802.38041761 - 141824.816435596 141824.816435596 1081559.72691573 - 311216.560353483 215128.460438415 1032891.08722611 - 552565.443154550 220879.672581252 925139.773910848 - 733667.208906257 96566.8782568275 813884.060907592 - 733667.208906257 -96566.8782568277 813884.060907592 - 552565.443154550 -220879.672581252 925139.773910848 - 311216.560353483 -215128.460438415 1032891.08722611 - 141824.816435596 -141824.816435596 1081559.72691573 - 58367.6699155737 -76225.7055049975 1095802.38041761 - 22972.1281455669 -36844.5379367165 1099142.73929854 - 8857.49932602491 -16776.8648370099 1099836.38851964 - 3381.48924396509 -7366.57104569070 1099970.13557711 - 1284.83831162125 -3159.52703745350 1099994.71206884 - 487.255329194347 -1333.78032857858 1099999.08345974 - 184.732910669413 -556.828422814875 1099999.84355265 - 70.0877467215686 -230.616750614913 1099999.97359256 - 26.6262676843028 -94.9551380155280 1099999.99557935 - 10.1323811799519 -38.9271481262942 1099999.99926455 - 3.86297926270565 -15.9058379677091 1099999.99987822 - 1.47558193696034 -6.48287830640930 1099999.99997991 - 0.564781116428159 -2.63658743503193 1099999.99999669 - 0.216686523120223 -1.06955966373820 1099999.99999946 - 0.0833301060469794 -0.430337686208151 1099999.99999991 - 0.0321121170527306 -0.165346268034419 1099999.99999999 - 0.0123661416600178 -0.0445385268679778 1100000.00000000 - 0.00477372925769217 0.0368689586636553 1100000.00000000 - 0.00180756610339029 0.149418368423074 1099999.99999999 - 0.000811776052761645 0.390376819469274 1099999.99999993 - 0.000303025627224436 0.966268698635802 1099999.99999958 - 0.000163357122700878 2.37103083224868 1099999.99999744 - 9.60524020535283e-05 5.80969770173787 1099999.99998466 - 1.67588395972393e-05 14.2317233329541 1099999.99990794 - 0.000187995549130655 34.8618304395159 1099999.99944757 - 6.12048015521348e-05 85.3960093291292 1099999.99668524 - 4.57102303763336e-06 209.179651520062 1099999.98011085 - 3.67694500683869e-05 512.374994758461 1099999.88066902 - 5.83024938862715e-05 1254.93893351310 1099999.28414898 - 1.52378498617359e-05 3073.08632455821 1099995.70732819 - 2.11786713668783e-06 7521.83807277772 1099974.28240482 - -3.20370895843036e-05 18389.5302080026 1099846.27343040 - 1.52133743928864e-05 44828.5184626700 1099086.16765586 - 6.11575904863077e-05 108456.751298315 1094640.18430616 - -8.46792577469284e-05 256943.719969604 1069569.97188972 - 2.90191507157064e-06 570452.767524369 940523.067247044 - -1.61833689545511e-05 -570452.767608032 940523.067196300 - 9.32059614940796e-05 -256943.720016387 1069569.97187848 - -7.51428158766288e-05 -108456.751320530 1094640.18430396 - -4.07695294025441e-05 -44828.5184712462 1099086.16765551 - 4.09670662892126e-05 -18389.5301777872 1099846.27343090 - 6.14212567322236e-06 -7521.83809132215 1099974.28240470 - -4.81561326093291e-05 -3073.08633863065 1099995.70732815 - -5.25959633821686e-05 -1254.93888757767 1099999.28414903 - 2.08280290122568e-05 -512.374979494197 1099999.88066903 - 4.54719128527261e-05 -209.179713898757 1099999.98011084 - 6.11713582568666e-05 -85.3960174100095 1099999.99668524 - -9.00295699701631e-06 -34.8618018224388 1099999.99944757 - 9.55322409993944e-05 -14.2318144001581 1099999.99990793 - 9.94222623617695e-05 -5.80972073598897 1099999.99998466 - 0.000140827243177521 -2.37108226676500 1099999.99999744 - 0.000191542115457079 -0.966647464586262 1099999.99999958 - 0.000776711676562471 -0.391238914697201 1099999.99999993 - 0.00218177835716901 -0.151430850839930 1099999.99999999 - 0.00500527786155261 -0.0421780577045297 1100000.00000000 - 0.0129413889870107 0.0308247649979283 1100000.00000000 - 0.0329954820552536 0.129890871312000 1099999.99999999 - 0.0844033508620338 0.338546784162390 1099999.99999994 - 0.216809189072317 0.832096708520140 1099999.99999966 - 0.556688263018099 2.02096645676919 1099999.99999800 - 1.42975413328683 4.88481073736364 1099999.99998822 - 3.67241156492777 11.7566249789384 1099999.99993104 - 9.42735471329751 28.1507443601713 1099999.99959939 - 24.1755446651162 66.9783303750509 1099999.99769520 - 61.8812981604577 158.079302147884 1099999.98690075 - 157.930466578725 369.245654704601 1099999.92668891 - 401.261207326284 850.915817789894 1099999.59769616 - 1012.71159396697 1926.03271727666 1099997.84764026 - 2530.69871433360 4254.56756138948 1099988.86095218 - 6231.09554750010 9083.75406832873 1099944.84355367 - 14999.2543621468 18462.8288695869 1099742.76370373 - 34835.4072396348 34835.4072396348 1098896.25934612 - 76225.7055049974 58367.6699155737 1095802.38041761 - 150435.261885618 79989.3809573445 1086724.86440472 - 249505.093717287 76797.2888017158 1068573.52795296 - 325348.130046100 32673.4759076165 1050276.64843489 - 325348.130046100 -32673.4759076166 1050276.64843489 - 249505.093717287 -76797.2888017157 1068573.52795296 - 150435.261885617 -79989.3809573445 1086724.86440472 - 76225.7055049975 -58367.6699155737 1095802.38041761 - 34835.4072396347 -34835.4072396347 1098896.25934612 - 14999.2543621469 -18462.8288695869 1099742.76370373 - 6231.09554750011 -9083.75406832872 1099944.84355367 - 2530.69871433362 -4254.56756138948 1099988.86095218 - 1012.71159396696 -1926.03271727666 1099997.84764026 - 401.261207326279 -850.915817789891 1099999.59769616 - 157.930466578725 -369.245654704600 1099999.92668891 - 61.8812981604583 -158.079302147885 1099999.98690075 - 24.1755446651168 -66.9783303750522 1099999.99769520 - 9.42735471329728 -28.1507443601703 1099999.99959939 - 3.67241156492790 -11.7566249789385 1099999.99993104 - 1.42975413328686 -4.88481073736377 1099999.99998822 - 0.556688263018007 -2.02096645676898 1099999.99999800 - 0.216809189072314 -0.832096708520183 1099999.99999966 - 0.0844033508620528 -0.338546784162413 1099999.99999994 - 0.0329954820552559 -0.129890871311998 1099999.99999999 - 0.0129413889870111 -0.0308247649979378 1100000.00000000 - 0.00500527786155389 0.0421780577045410 1100000.00000000 - 0.00218177835716479 0.151430850839941 1099999.99999999 - 0.000776711676561445 0.391238914697175 1099999.99999993 - 0.000191542115444336 0.966647464586302 1099999.99999958 - 0.000140827243190366 2.37108226676495 1099999.99999744 - 9.94222624276953e-05 5.80972073598877 1099999.99998466 - 9.55322409323612e-05 14.2318144001583 1099999.99990793 - -9.00295708223679e-06 34.8618018224388 1099999.99944757 - 6.11713582840955e-05 85.3960174100096 1099999.99668524 - 4.54719124220421e-05 209.179713898757 1099999.98011084 - 2.08280278669373e-05 512.374979494196 1099999.88066903 - -5.25959597310302e-05 1254.93888757767 1099999.28414903 - -4.81561307923355e-05 3073.08633863067 1099995.70732815 - 6.14211966753853e-06 7521.83809132215 1099974.28240470 - 4.09670595085565e-05 18389.5301777872 1099846.27343090 - -4.07695765268017e-05 44828.5184712462 1099086.16765551 - -7.51427515356597e-05 108456.751320530 1094640.18430396 - 9.32059896370420e-05 256943.720016387 1069569.97187848 - -1.61832556897079e-05 570452.767608032 940523.067196300 - 9.21872939796970e-05 -570452.767655811 940523.067167321 - 3.62049733713495e-06 -256943.720006852 1069569.97188077 - 9.14461318970152e-05 -108456.751271442 1094640.18430882 - -4.88066947658852e-06 -44828.5184596521 1099086.16765598 - -6.52251718251573e-05 -18389.5302193152 1099846.27343021 - -4.12784365913098e-05 -7521.83805699802 1099974.28240493 - -4.37187958908152e-05 -3073.08628223999 1099995.70732831 - -2.98445431097339e-05 -1254.93889635634 1099999.28414902 - -2.98689025239058e-05 -512.375025310194 1099999.88066901 - -5.99640192057216e-05 -209.179686502854 1099999.98011084 - -2.53215179765962e-05 -85.3960415519351 1099999.99668523 - 0.000123998473984984 -34.8618837021392 1099999.99944757 - -6.10360237993315e-05 -14.2317363502090 1099999.99990794 - 5.65122415442004e-05 -5.80979331428768 1099999.99998466 - 0.000171426863765553 -2.37126795402724 1099999.99999744 - 0.000239561441600545 -0.966836135726589 1099999.99999958 - 0.000778066115710034 -0.392030297138090 1099999.99999993 - 0.00190524118508574 -0.153578614959945 1099999.99999999 - 0.00480133795180677 -0.0473778723809133 1100000.00000000 - 0.0121238835484247 0.0175160712613629 1100000.00000000 - 0.0307491510616054 0.0960754292438434 1100000.00000000 - 0.0774090306907759 0.252545945341644 1099999.99999997 - 0.195293432822711 0.612928287321425 1099999.99999981 - 0.492654883359140 1.46346203875308 1099999.99999892 - 1.24104649415628 3.46951288488428 1099999.99999383 - 3.11936493141242 8.16965355229445 1099999.99996524 - 7.81625445680209 19.0885669790199 1099999.99980661 - 19.5048501521259 44.1799693874800 1099999.99893986 - 48.4121472696105 101.061060274643 1099999.99429224 - 119.308749723436 227.803959832355 1099999.96994126 - 291.263403044537 504.001148090848 1099999.84597657 - 702.131038195547 1088.53309994075 1099999.23732142 - 1663.99932039613 2277.70437189318 1099996.38325272 - 3852.61628200421 4567.17284830741 1099983.77182573 - 8633.60566482912 8633.60566482912 1099932.23505198 - 18462.8288695869 14999.2543621469 1099742.76370373 - 36844.5379367166 22972.1281455669 1099142.73929854 - 66250.7119016385 28868.9655442318 1097623.53564459 - 102129.723343038 25982.6135524763 1094940.37435965 - 128453.555723596 10694.4287535637 1092421.76526084 - 128453.555723596 -10694.4287535637 1092421.76526084 - 102129.723343038 -25982.6135524763 1094940.37435965 - 66250.7119016386 -28868.9655442318 1097623.53564459 - 36844.5379367166 -22972.1281455669 1099142.73929854 - 18462.8288695869 -14999.2543621469 1099742.76370373 - 8633.60566482911 -8633.60566482910 1099932.23505198 - 3852.61628200422 -4567.17284830739 1099983.77182573 - 1663.99932039613 -2277.70437189319 1099996.38325272 - 702.131038195540 -1088.53309994075 1099999.23732142 - 291.263403044536 -504.001148090845 1099999.84597657 - 119.308749723439 -227.803959832360 1099999.96994126 - 48.4121472696116 -101.061060274645 1099999.99429224 - 19.5048501521250 -44.1799693874780 1099999.99893986 - 7.81625445680223 -19.0885669790201 1099999.99980661 - 3.11936493141250 -8.16965355229457 1099999.99996524 - 1.24104649415619 -3.46951288488417 1099999.99999383 - 0.492654883359143 -1.46346203875311 1099999.99999892 - 0.195293432822711 -0.612928287321382 1099999.99999981 - 0.0774090306907793 -0.252545945341662 1099999.99999997 - 0.0307491510616096 -0.0960754292438653 1100000.00000000 - 0.0121238835484232 -0.0175160712613539 1100000.00000000 - 0.00480133795180735 0.0473778723809115 1100000.00000000 - 0.00190524118508668 0.153578614959945 1099999.99999999 - 0.000778066115701588 0.392030297138136 1099999.99999993 - 0.000239561441614233 0.966836135726536 1099999.99999958 - 0.000171426863777879 2.37126795402714 1099999.99999744 - 5.65122414647898e-05 5.80979331428775 1099999.99998466 - -6.10360237500269e-05 14.2317363502088 1099999.99990794 - 0.000123998474129292 34.8618837021393 1099999.99944757 - -2.53215180043051e-05 85.3960415519358 1099999.99668523 - -5.99640196841561e-05 209.179686502854 1099999.98011084 - -2.98689028819945e-05 512.375025310190 1099999.88066901 - -2.98445442034884e-05 1254.93889635634 1099999.28414902 - -4.37187959698260e-05 3073.08628223999 1099995.70732831 - -4.12784322725251e-05 7521.83805699804 1099974.28240493 - -6.52251810628100e-05 18389.5302193152 1099846.27343021 - -4.88070337580904e-06 44828.5184596521 1099086.16765598 - 9.14461468239990e-05 108456.751271442 1094640.18430882 - 3.62056851540714e-06 256943.720006852 1069569.97188077 - 9.21873475440094e-05 570452.767655811 940523.067167321 - 0.000147233922081452 -570452.767615753 940523.067191618 - 0.000159797732165404 -256943.719936965 1069569.97189756 - -4.05579227549886e-05 -108456.751224946 1094640.18431343 - -3.44391698101908e-05 -44828.5184348011 1099086.16765700 - 2.01740803493644e-05 -18389.5301668691 1099846.27343108 - -1.48870020888860e-05 -7521.83805896201 1099974.28240492 - -9.00091975463246e-05 -3073.08628469485 1099995.70732830 - -0.000107187539317505 -1254.93885714476 1099999.28414907 - -3.99362427460998e-05 -512.374983799948 1099999.88066903 - -2.15608277749335e-05 -209.179750588262 1099999.98011083 - -7.23564544831748e-06 -85.3960601023799 1099999.99668523 - -5.27419580811700e-05 -34.8618512442706 1099999.99944757 - 4.94663912484404e-05 -14.2318462720122 1099999.99990793 - -3.65808293821668e-06 -5.80977373419126 1099999.99998466 - 7.89307883258531e-05 -2.37132182354870 1099999.99999744 - 0.000133450817841891 -0.967238713385066 1099999.99999957 - 0.000620204577926328 -0.392784246892473 1099999.99999993 - 0.00191723607691721 -0.155377563836303 1099999.99999999 - 0.00422949547428971 -0.0520621629011632 1100000.00000000 - 0.0105348707942571 0.00580397223899349 1100000.00000000 - 0.0262662019264619 0.0666324192484432 1100000.00000000 - 0.0652368545863795 0.178886579999556 1099999.99999998 - 0.161842037823012 0.429341710259784 1099999.99999990 - 0.400366199222691 1.00646387200702 1099999.99999947 - 0.987180808502593 2.33569070280238 1099999.99999708 - 2.42386737391184 5.37218406824344 1099999.99998421 - 5.91763282539536 12.2278631944857 1099999.99991612 - 14.3470546068423 27.4886537815560 1099999.99956297 - 34.4810202399907 60.8662959375485 1099999.99777562 - 81.9658056889055 132.285292024451 1099999.98899191 - 192.153752223933 280.912552611205 1099999.94734776 - 442.540977947161 579.312792403904 1099999.75843369 - 996.098971283563 1150.63988702577 1099998.94718799 - 2175.84373442848 2175.84373442847 1099995.69608617 - 4567.17284830741 3852.61628200423 1099983.77182573 - 9083.75406832872 6231.09554750010 1099944.84355367 - 16776.8648370099 8857.49932602489 1099836.38851964 - 27963.8881448792 10380.5642785481 1099595.50055695 - 40550.3139723951 8862.94514098247 1099216.59387046 - 49342.6818445477 3548.25094091223 1098887.03225748 - 49342.6818445477 -3548.25094091221 1098887.03225748 - 40550.3139723951 -8862.94514098250 1099216.59387046 - 27963.8881448792 -10380.5642785481 1099595.50055695 - 16776.8648370099 -8857.49932602487 1099836.38851964 - 9083.75406832872 -6231.09554750009 1099944.84355367 - 4567.17284830740 -3852.61628200421 1099983.77182573 - 2175.84373442848 -2175.84373442848 1099995.69608617 - 996.098971283558 -1150.63988702578 1099998.94718799 - 442.540977947161 -579.312792403901 1099999.75843369 - 192.153752223938 -280.912552611211 1099999.94734776 - 81.9658056889066 -132.285292024451 1099999.98899191 - 34.4810202399892 -60.8662959375468 1099999.99777562 - 14.3470546068423 -27.4886537815562 1099999.99956297 - 5.91763282539544 -12.2278631944855 1099999.99991612 - 2.42386737391186 -5.37218406824358 1099999.99998421 - 0.987180808502602 -2.33569070280239 1099999.99999708 - 0.400366199222633 -1.00646387200686 1099999.99999947 - 0.161842037823018 -0.429341710259834 1099999.99999990 - 0.0652368545863957 -0.178886579999595 1099999.99999998 - 0.0262662019264608 -0.0666324192484316 1100000.00000000 - 0.0105348707942589 -0.00580397223899529 1100000.00000000 - 0.00422949547428894 0.0520621629011666 1100000.00000000 - 0.00191723607691122 0.155377563836321 1099999.99999999 - 0.000620204577932085 0.392784246892455 1099999.99999993 - 0.000133450817845639 0.967238713385065 1099999.99999957 - 7.89307882906736e-05 2.37132182354870 1099999.99999744 - -3.65808288534651e-06 5.80977373419110 1099999.99998466 - 4.94663913135564e-05 14.2318462720122 1099999.99990793 - -5.27419581764894e-05 34.8618512442707 1099999.99944757 - -7.23564565616124e-06 85.3960601023803 1099999.99668523 - -2.15608273320237e-05 209.179750588262 1099999.98011083 - -3.99362426935705e-05 512.374983799949 1099999.88066903 - -0.000107187543090090 1254.93885714475 1099999.28414907 - -9.00091967933816e-05 3073.08628469486 1099995.70732830 - -1.48869897254275e-05 7521.83805896201 1099974.28240492 - 2.01740905976054e-05 18389.5301668692 1099846.27343108 - -3.44391643837862e-05 44828.5184348011 1099086.16765700 - -4.05579094233485e-05 108456.751224946 1094640.18431343 - 0.000159797752665552 256943.719936966 1069569.97189756 - 0.000147233958805487 570452.767615753 940523.067191618 - 0.000128751068004045 -570452.767565427 940523.067222142 - 7.14689244613000e-05 -256943.719860223 1069569.97191600 - 0.000118310971891652 -108456.751106663 1094640.18432515 - -1.45935110278336e-05 -44828.5183735743 1099086.16765949 - -7.78374365667094e-05 -18389.5301877698 1099846.27343073 - -4.67669925836856e-05 -7521.83804017654 1099974.28240505 - -4.35127552661642e-05 -3073.08623908588 1099995.70732843 - -6.49449510334246e-05 -1254.93881751469 1099999.28414911 - -4.90789933862868e-05 -512.375052976121 1099999.88066900 - -6.03802536516582e-05 -209.179744752523 1099999.98011083 - -7.46950504351391e-05 -85.3960661916752 1099999.99668523 - 8.15941081239556e-05 -34.8619388107477 1099999.99944757 - -7.99819251987221e-05 -14.2317667441394 1099999.99990793 - 2.03820431611168e-05 -5.80986044782627 1099999.99998466 - 0.000132099948529244 -2.37144663541328 1099999.99999744 - 0.000103302939053724 -0.967321977333193 1099999.99999957 - 0.000451352597419784 -0.393455271845159 1099999.99999993 - 0.00140389951944161 -0.157066081184352 1099999.99999999 - 0.00353568714103975 -0.0559459207279239 1100000.00000000 - 0.00854222007825070 -0.00386507242496411 1100000.00000000 - 0.0210824881328949 0.0429679210084399 1100000.00000000 - 0.0513632590637298 0.120718722974793 1099999.99999999 - 0.125005329845522 0.286947074712230 1099999.99999996 - 0.302997294173751 0.660170892183138 1099999.99999976 - 0.730555621250677 1.49882328939104 1099999.99999874 - 1.75024242130611 3.36332238307461 1099999.99999347 - 4.16000926014131 7.45138708125933 1099999.99996690 - 9.79136963073362 16.2596825449733 1099999.99983625 - 22.7768835237276 34.8399222239579 1099999.99921245 - 52.2275071630886 73.0227925096022 1099999.99633635 - 117.655033212306 148.969050095317 1099999.98362069 - 259.277038887659 293.880975075374 1099999.93018608 - 555.825817421192 555.825817421197 1099999.71914329 - 1150.63988702577 996.098971283554 1099998.94718799 - 2277.70437189318 1663.99932039612 1099996.38325272 - 4254.56756138949 2530.69871433362 1099988.86095218 - 7366.57104569069 3381.48924396509 1099970.13557711 - 11550.5014486688 3745.70434025276 1099932.97778332 - 15950.8398811979 3065.10593837897 1099880.07338649 - 18893.2570721847 1199.81978248544 1099837.08123962 - 18893.2570721847 -1199.81978248546 1099837.08123962 - 15950.8398811979 -3065.10593837896 1099880.07338649 - 11550.5014486688 -3745.70434025276 1099932.97778332 - 7366.57104569069 -3381.48924396509 1099970.13557711 - 4254.56756138948 -2530.69871433361 1099988.86095218 - 2277.70437189319 -1663.99932039613 1099996.38325272 - 1150.63988702578 -996.098971283567 1099998.94718799 - 555.825817421193 -555.825817421192 1099999.71914329 - 259.277038887665 -293.880975075377 1099999.93018608 - 117.655033212306 -148.969050095315 1099999.98362069 - 52.2275071630873 -73.0227925096017 1099999.99633635 - 22.7768835237279 -34.8399222239585 1099999.99921245 - 9.79136963073338 -16.2596825449723 1099999.99983625 - 4.16000926014137 -7.45138708125961 1099999.99996690 - 1.75024242130616 -3.36332238307466 1099999.99999347 - 0.730555621250592 -1.49882328939084 1099999.99999874 - 0.302997294173746 -0.660170892183200 1099999.99999976 - 0.125005329845543 -0.286947074712260 1099999.99999996 - 0.0513632590637360 -0.120718722974784 1099999.99999999 - 0.0210824881328956 -0.0429679210084486 1100000.00000000 - 0.00854222007824763 0.00386507242496407 1100000.00000000 - 0.00353568714103713 0.0559459207279318 1100000.00000000 - 0.00140389951944117 0.157066081184355 1099999.99999999 - 0.000451352597423757 0.393455271845171 1099999.99999993 - 0.000103302939045202 0.967321977333189 1099999.99999957 - 0.000132099948548214 2.37144663541318 1099999.99999744 - 2.03820431754331e-05 5.80986044782622 1099999.99998466 - -7.99819251941514e-05 14.2317667441394 1099999.99990793 - 8.15941080276008e-05 34.8619388107480 1099999.99944757 - -7.46950504341196e-05 85.3960661916752 1099999.99668523 - -6.03802533084219e-05 209.179744752523 1099999.98011083 - -4.90789938642657e-05 512.375052976121 1099999.88066900 - -6.49449510834397e-05 1254.93881751469 1099999.28414911 - -4.35127565559713e-05 3073.08623908586 1099995.70732843 - -4.67669859738969e-05 7521.83804017654 1099974.28240505 - -7.78374078365274e-05 18389.5301877698 1099846.27343073 - -1.45934856157868e-05 44828.5183735743 1099086.16765949 - 0.000118310985101207 108456.751106663 1094640.18432515 - 7.14689035147502e-05 256943.719860223 1069569.97191600 - 0.000128751135266697 570452.767565427 940523.067222142 - 7.39605003035077e-05 -570452.767583868 940523.067210956 - 0.000101560289706916 -256943.719794789 1069569.97193172 - -4.40316540212596e-05 -108456.751065431 1094640.18432923 - -3.04524483154844e-05 -44828.5183622822 1099086.16765995 - 4.15995942112124e-07 -18389.5301458927 1099846.27343143 - -6.51318196501683e-06 -7521.83802075619 1099974.28240518 - -6.45634539512591e-05 -3073.08623801591 1099995.70732843 - -9.72184739812608e-05 -1254.93883349073 1099999.28414910 - -3.89234426879106e-05 -512.374967742978 1099999.88066904 - -7.62013565774243e-07 -209.179798533311 1099999.98011082 - -3.88794825458336e-06 -85.3961285919282 1099999.99668523 - -5.18552746996855e-05 -34.8619192905735 1099999.99944757 - 4.95912561755302e-05 -14.2318710923339 1099999.99990793 - -7.16130753701608e-05 -5.80980133989409 1099999.99998466 - 4.26863414920723e-05 -2.37153538241654 1099999.99999744 - 8.58096919591671e-05 -0.967653214279406 1099999.99999957 - 0.000302180387347943 -0.393882358961376 1099999.99999993 - 0.00122247595542591 -0.158259198053961 1099999.99999999 - 0.00273178266528837 -0.0590135033515789 1100000.00000000 - 0.00650541275723578 -0.0112859428819540 1100000.00000000 - 0.0158324730969943 0.0249499810017646 1100000.00000000 - 0.0381326983819159 0.0775717008453333 1100000.00000000 - 0.0909725644997288 0.183822356101508 1099999.99999998 - 0.215886894423090 0.415073684513859 1099999.99999990 - 0.508606405369579 0.921030811737288 1099999.99999950 - 1.18837247757811 2.01625292486780 1099999.99999751 - 2.74852422990463 4.34637788593380 1099999.99998798 - 6.28080600743657 9.20626636209753 1099999.99994354 - 14.1456126983188 19.0965061200801 1099999.99974328 - 31.3125682604429 38.6338667002463 1099999.99887589 - 67.8795488700817 75.8329364668623 1099999.99529170 - 143.456118430364 143.456118430364 1099999.98129122 - 293.880975075374 259.277038887661 1099999.93018608 - 579.312792403903 442.540977947166 1099999.75843369 - 1088.53309994075 702.131038195539 1099999.23732142 - 1926.03271727666 1012.71159396697 1099997.84764026 - 3159.52703745350 1284.83831162125 1099994.71206884 - 4714.17348254049 1359.04377459596 1099989.05884031 - 6261.55840681996 1074.31609898091 1099981.65381575 - 7259.13484749023 412.882815319622 1099975.96995982 - 7259.13484749022 -412.882815319635 1099975.96995982 - 6261.55840681996 -1074.31609898092 1099981.65381575 - 4714.17348254049 -1359.04377459595 1099989.05884031 - 3159.52703745349 -1284.83831162125 1099994.71206884 - 1926.03271727667 -1012.71159396696 1099997.84764026 - 1088.53309994075 -702.131038195548 1099999.23732142 - 579.312792403902 -442.540977947162 1099999.75843369 - 293.880975075378 -259.277038887661 1099999.93018608 - 143.456118430363 -143.456118430363 1099999.98129122 - 67.8795488700810 -75.8329364668622 1099999.99529170 - 31.3125682604438 -38.6338667002473 1099999.99887589 - 14.1456126983180 -19.0965061200786 1099999.99974328 - 6.28080600743650 -9.20626636209773 1099999.99994354 - 2.74852422990480 -4.34637788593395 1099999.99998798 - 1.18837247757809 -2.01625292486768 1099999.99999751 - 0.508606405369529 -0.921030811737320 1099999.99999950 - 0.215886894423087 -0.415073684513836 1099999.99999990 - 0.0909725644997577 -0.183822356101522 1099999.99999998 - 0.0381326983819172 -0.0775717008453574 1100000.00000000 - 0.0158324730969854 -0.0249499810017594 1100000.00000000 - 0.00650541275723949 0.0112859428819619 1100000.00000000 - 0.00273178266528823 0.0590135033515840 1100000.00000000 - 0.00122247595542183 0.158259198053963 1099999.99999999 - 0.000302180387339073 0.393882358961380 1099999.99999993 - 8.58096919889333e-05 0.967653214279369 1099999.99999957 - 4.26863414958766e-05 2.37153538241651 1099999.99999744 - -7.16130754227330e-05 5.80980133989400 1099999.99998466 - 4.95912562111647e-05 14.2318710923340 1099999.99990793 - -5.18552746177027e-05 34.8619192905737 1099999.99944757 - -3.88794834464464e-06 85.3961285919280 1099999.99668523 - -7.62013513851551e-07 209.179798533310 1099999.98011082 - -3.89234422648797e-05 512.374967742981 1099999.88066904 - -9.72184767914309e-05 1254.93883349073 1099999.28414910 - -6.45634538811392e-05 3073.08623801591 1099995.70732843 - -6.51317690043413e-06 7521.83802075617 1099974.28240518 - 4.16002695036509e-07 18389.5301458927 1099846.27343143 - -3.04524262328907e-05 44828.5183622822 1099086.16765995 - -4.40316084503010e-05 108456.751065431 1094640.18432923 - 0.000101560351796414 256943.719794789 1069569.97193172 - 7.39605977539152e-05 570452.767583868 940523.067210956 - -1.47969373948751e-05 -570452.767703931 940523.067138135 - 2.61061162447148e-05 -256943.719870012 1069569.97191365 - 9.41860695533372e-05 -108456.750998065 1094640.18433590 - -3.06518578136935e-05 -44828.5182936842 1099086.16766275 - -8.47828620553004e-05 -18389.5301556784 1099846.27343127 - -4.06976272839408e-05 -7521.83806184930 1099974.28240490 - 8.06150849527794e-06 -3073.08624078324 1099995.70732842 - -4.24711321473714e-05 -1254.93872658069 1099999.28414922 - -4.17995434204996e-05 -512.375071924178 1099999.88066899 - 1.76772706033317e-06 -209.179825945519 1099999.98011082 - -4.95797734982443e-05 -85.3960942411691 1099999.99668523 - 7.63248298895605e-05 -34.8620090378784 1099999.99944756 - -1.19785938737982e-05 -14.2318461153854 1099999.99990793 - 3.31471249097011e-05 -5.80988125200392 1099999.99998466 - 7.14069107568052e-05 -2.37153302656273 1099999.99999744 - 3.78999994102253e-05 -0.967677433927280 1099999.99999957 - 0.000137173105593089 -0.394392391246765 1099999.99999993 - 0.000745169574288883 -0.159284093171260 1099999.99999999 - 0.00209075832693914 -0.0612447553634715 1100000.00000000 - 0.00476093017264204 -0.0167041427817097 1100000.00000000 - 0.0113448872316898 0.0121576943745603 1100000.00000000 - 0.0268127597113567 0.0472692491525706 1100000.00000000 - 0.0629248278190133 0.113015031217648 1099999.99999999 - 0.146013047088880 0.251062579974169 1099999.99999996 - 0.336024355829300 0.544802120729970 1099999.99999981 - 0.765572768227340 1.16284491250657 1099999.99999912 - 1.72338181873724 2.44004931117854 1099999.99999594 - 3.82455143521013 5.01909798461657 1099999.99998190 - 8.34656046484573 10.0870832520903 1099999.99992208 - 17.8576322966855 19.7230905984803 1099999.99967823 - 37.3201534881998 37.3201534881996 1099999.99873382 - 75.8329364668625 67.8795488700822 1099999.99529170 - 148.969050095314 117.655033212305 1099999.98362069 - 280.912552611208 192.153752223936 1099999.94734776 - 504.001148090846 291.263403044539 1099999.84597657 - 850.915817789893 401.261207326280 1099999.59769616 - 1333.78032857858 487.255329194352 1099999.08345974 - 1910.61817485871 496.033112581284 1099998.22885737 - 2459.44787009265 381.102281223831 1099997.18448604 - 2802.80157083267 144.265555239821 1099996.41976272 - 2802.80157083267 -144.265555239829 1099996.41976272 - 2459.44787009264 -381.102281223828 1099997.18448604 - 1910.61817485870 -496.033112581283 1099998.22885737 - 1333.78032857858 -487.255329194348 1099999.08345974 - 850.915817789896 -401.261207326281 1099999.59769616 - 504.001148090846 -291.263403044539 1099999.84597657 - 280.912552611208 -192.153752223933 1099999.94734776 - 148.969050095314 -117.655033212305 1099999.98362069 - 75.8329364668617 -67.8795488700821 1099999.99529170 - 37.3201534882008 -37.3201534882003 1099999.99873382 - 17.8576322966842 -19.7230905984789 1099999.99967823 - 8.34656046484551 -10.0870832520905 1099999.99992208 - 3.82455143521041 -5.01909798461673 1099999.99998190 - 1.72338181873735 -2.44004931117856 1099999.99999594 - 0.765572768227233 -1.16284491250655 1099999.99999912 - 0.336024355829256 -0.544802120729867 1099999.99999981 - 0.146013047088939 -0.251062579974217 1099999.99999996 - 0.0629248278190190 -0.113015031217688 1099999.99999999 - 0.0268127597113380 -0.0472692491525545 1100000.00000000 - 0.0113448872316958 -0.0121576943745572 1100000.00000000 - 0.00476093017264497 0.0167041427817049 1100000.00000000 - 0.00209075832693458 0.0612447553634784 1100000.00000000 - 0.000745169574281579 0.159284093171286 1099999.99999999 - 0.000137173105607679 0.394392391246738 1099999.99999993 - 3.78999994076778e-05 0.967677433927245 1099999.99999957 - 7.14069107750251e-05 2.37153302656268 1099999.99999744 - 3.31471249588584e-05 5.80988125200389 1099999.99998466 - -1.19785940301115e-05 14.2318461153855 1099999.99990793 - 7.63248297846996e-05 34.8620090378785 1099999.99944756 - -4.95797731394497e-05 85.3960942411689 1099999.99668523 - 1.76772720954344e-06 209.179825945519 1099999.98011082 - -4.17995439768781e-05 512.375071924178 1099999.88066899 - -4.24711320775134e-05 1254.93872658070 1099999.28414922 - 8.06150561205323e-06 3073.08624078323 1099995.70732842 - -4.06976287832489e-05 7521.83806184929 1099974.28240490 - -8.47828642936060e-05 18389.5301556784 1099846.27343127 - -3.06518028155786e-05 44828.5182936841 1099086.16766275 - 9.41860779857719e-05 108456.750998065 1094640.18433590 - 2.61061979545909e-05 256943.719870012 1069569.97191365 - -1.47968895533970e-05 570452.767703931 940523.067138135 - 1.76953238362167e-05 -570452.767880440 940523.067031077 - 7.76868332586109e-05 -256943.719883077 1069569.97191051 - -7.19038271380513e-06 -108456.751014763 1094640.18433425 - -2.28840492764081e-06 -44828.5183189312 1099086.16766172 - -2.32968664958299e-05 -18389.5301370847 1099846.27343158 - -1.23058609138577e-05 -7521.83800469092 1099974.28240529 - -2.01324298241106e-05 -3073.08624011322 1099995.70732842 - -4.61583957179186e-05 -1254.93883182374 1099999.28414910 - -1.95957106225907e-05 -512.374920673215 1099999.88066906 - 4.24449061056227e-05 -209.179857367629 1099999.98011081 - 5.58524877797138e-05 -85.3962242667268 1099999.99668522 - -4.66180751828415e-05 -34.8619871202947 1099999.99944756 - 6.93519524778291e-05 -14.2319135884730 1099999.99990793 - -2.56780462598163e-05 -5.80985110617649 1099999.99998466 - 7.41704834758962e-05 -2.37168731931400 1099999.99999744 - 0.000112652589747822 -0.967843279865155 1099999.99999957 - 0.000105389484758864 -0.394490274175622 1099999.99999993 - 0.000583105156901210 -0.159950732554678 1099999.99999999 - 0.00146672736150577 -0.0628504522762684 1100000.00000000 - 0.00333239437313674 -0.0204886715185491 1100000.00000000 - 0.00775177097976049 0.00331909422394425 1100000.00000000 - 0.0180387770812015 0.0271363420367612 1100000.00000000 - 0.0414252557960424 0.0668520031342327 1100000.00000000 - 0.0944528098583411 0.146668071191033 1099999.99999999 - 0.212161304025471 0.311242933286747 1099999.99999994 - 0.471428164876101 0.648461382841203 1099999.99999971 - 1.03312810664543 1.32450768225960 1099999.99999872 - 2.22848586919768 2.64810458151177 1099999.99999456 - 4.71729116294091 5.16196688716956 1099999.99997777 - 9.76986982201750 9.76986982201737 1099999.99991323 - 19.7230905984803 17.8576322966849 1099999.99967823 - 38.6338667002471 31.3125682604431 1099999.99887589 - 73.0227925096030 52.2275071630886 1099999.99633635 - 132.285292024449 81.9658056889053 1099999.98899191 - 227.803959832359 119.308749723438 1099999.96994126 - 369.245654704598 157.930466578726 1099999.92668891 - 556.828422814879 184.732910669413 1099999.84355265 - 771.091449385339 182.107710180277 1099999.71466122 - 967.512676444287 136.633275954166 1099999.56602290 - 1087.40126805936 51.0755321474986 1099999.46134067 - 1087.40126805937 -51.0755321474976 1099999.46134067 - 967.512676444278 -136.633275954165 1099999.56602290 - 771.091449385341 -182.107710180277 1099999.71466122 - 556.828422814876 -184.732910669412 1099999.84355265 - 369.245654704600 -157.930466578728 1099999.92668891 - 227.803959832357 -119.308749723436 1099999.96994126 - 132.285292024450 -81.9658056889056 1099999.98899191 - 73.0227925096020 -52.2275071630887 1099999.99633635 - 38.6338667002479 -31.3125682604434 1099999.99887589 - 19.7230905984793 -17.8576322966842 1099999.99967823 - 9.76986982201728 -9.76986982201768 1099999.99991323 - 4.71729116294116 -5.16196688716954 1099999.99997777 - 2.22848586919787 -2.64810458151183 1099999.99999456 - 1.03312810664531 -1.32450768225958 1099999.99999872 - 0.471428164876048 -0.648461382841050 1099999.99999971 - 0.212161304025541 -0.311242933286825 1099999.99999994 - 0.0944528098583398 -0.146668071191084 1099999.99999999 - 0.0414252557960223 -0.0668520031342072 1100000.00000000 - 0.0180387770812096 -0.0271363420367588 1100000.00000000 - 0.00775177097976374 -0.00331909422395197 1100000.00000000 - 0.00333239437313318 0.0204886715185547 1100000.00000000 - 0.00146672736150004 0.0628504522762852 1100000.00000000 - 0.000583105156908602 0.159950732554661 1099999.99999999 - 0.000105389484762071 0.394490274175628 1099999.99999993 - 0.000112652589756630 0.967843279865091 1099999.99999957 - 7.41704834922511e-05 2.37168731931393 1099999.99999744 - -2.56780463037973e-05 5.80985110617669 1099999.99998466 - 6.93519524395134e-05 14.2319135884730 1099999.99990793 - -4.66180751912971e-05 34.8619871202942 1099999.99944756 - 5.58524877126277e-05 85.3962242667268 1099999.99668522 - 4.24449063504623e-05 209.179857367629 1099999.98011081 - -1.95957098169159e-05 512.374920673218 1099999.88066906 - -4.61583964587456e-05 1254.93883182373 1099999.28414910 - -2.01324321101927e-05 3073.08624011322 1099995.70732842 - -1.23058624891685e-05 7521.83800469091 1099974.28240529 - -2.32968469450174e-05 18389.5301370847 1099846.27343158 - -2.28839895157998e-06 44828.5183189312 1099086.16766172 - -7.19046571803526e-06 108456.751014763 1094640.18433425 - 7.76867993458792e-05 256943.719883077 1069569.97191051 - 1.76952598672170e-05 570452.767880441 940523.067031077 - 9.17833942968880e-05 -570452.767982027 940523.066969463 - 8.91981431093869e-05 -256943.719996882 1069569.97188317 - 0.000130779643523991 -108456.750941794 1094640.18434148 - 3.06718877955319e-06 -44828.5181958177 1099086.16766674 - -7.33058494299577e-05 -18389.5300878848 1099846.27343240 - -5.91364817810266e-05 -7521.83809688119 1099974.28240466 - 4.43242310227407e-05 -3073.08630413421 1099995.70732825 - -2.12790234495142e-06 -1254.93866223462 1099999.28414929 - -7.19679268099906e-05 -512.375041340045 1099999.88066900 - 4.22895945583597e-05 -209.179877531797 1099999.98011081 - 1.93220562618595e-05 -85.3961363255988 1099999.99668523 - 7.72898169925589e-05 -34.8620863095857 1099999.99944756 - 4.07292448848372e-05 -14.2319615104193 1099999.99990793 - 5.70238191144653e-05 -5.80986672873391 1099999.99998466 - 5.33369059893606e-05 -2.37158400528524 1099999.99999744 - 8.49942071758773e-05 -0.967960656702778 1099999.99999957 - 4.63413343832175e-05 -0.394866681154640 1099999.99999993 - 0.000271726975569287 -0.160421589595867 1099999.99999999 - 0.00107384276070707 -0.0638569249275328 1100000.00000000 - 0.00231182838432037 -0.0228920965817747 1100000.00000000 - 0.00514909396165753 -0.00241481668489872 1100000.00000000 - 0.0117196219514451 0.0141093513040104 1100000.00000000 - 0.0263006658640367 0.0379130454840553 1100000.00000000 - 0.0585266288367089 0.0828909896014922 1100000.00000000 - 0.128854953810845 0.172541633505047 1099999.99999998 - 0.279131166907938 0.350662475610197 1099999.99999991 - 0.595973697136052 0.698258736089632 1099999.99999962 - 1.25037183895586 1.35785074911339 1099999.99999845 - 2.57077729951319 2.57077729951331 1099999.99999399 - 5.16196688716944 4.71729116294121 1099999.99997777 - 10.0870832520901 8.34656046484545 1099999.99992208 - 19.0965061200794 14.1456126983182 1099999.99974328 - 34.8399222239585 22.7768835237273 1099999.99921245 - 60.8662959375485 34.4810202399902 1099999.99777562 - 101.061060274643 48.4121472696103 1099999.99429224 - 158.079302147886 61.8812981604579 1099999.98690075 - 230.616750614910 70.0877467215686 1099999.97359256 - 310.391436023113 67.2302843316288 1099999.95415329 - 381.295484139518 49.4451217170789 1099999.93280406 - 423.699510704692 18.2891138768320 1099999.91824738 - 423.699510704687 -18.2891138768309 1099999.91824738 - 381.295484139523 -49.4451217170795 1099999.93280406 - 310.391436023111 -67.2302843316284 1099999.95415329 - 230.616750614913 -70.0877467215699 1099999.97359256 - 158.079302147884 -61.8812981604571 1099999.98690075 - 101.061060274644 -48.4121472696105 1099999.99429224 - 60.8662959375478 -34.4810202399903 1099999.99777562 - 34.8399222239588 -22.7768835237275 1099999.99921245 - 19.0965061200790 -14.1456126983180 1099999.99974328 - 10.0870832520900 -8.34656046484582 1099999.99992208 - 5.16196688716949 -4.71729116294092 1099999.99997777 - 2.57077729951337 -2.57077729951326 1099999.99999399 - 1.25037183895581 -1.35785074911344 1099999.99999845 - 0.595973697136039 -0.698258736089512 1099999.99999962 - 0.279131166907978 -0.350662475610284 1099999.99999991 - 0.128854953810814 -0.172541633505088 1099999.99999998 - 0.0585266288367057 -0.0828909896014597 1100000.00000000 - 0.0263006658640496 -0.0379130454840528 1100000.00000000 - 0.0117196219514419 -0.0141093513040202 1100000.00000000 - 0.00514909396165739 0.00241481668489595 1100000.00000000 - 0.00231182838431792 0.0228920965817844 1100000.00000000 - 0.00107384276070921 0.0638569249275340 1100000.00000000 - 0.000271726975572077 0.160421589595878 1099999.99999999 - 4.63413343873118e-05 0.394866681154603 1099999.99999993 - 8.49942071828360e-05 0.967960656702761 1099999.99999957 - 5.33369059641275e-05 2.37158400528523 1099999.99999744 - 5.70238190999942e-05 5.80986672873381 1099999.99998466 - 4.07292448967268e-05 14.2319615104195 1099999.99990793 - 7.72898169925395e-05 34.8620863095860 1099999.99944756 - 1.93220563405419e-05 85.3961363255978 1099999.99668523 - 4.22895945426867e-05 209.179877531797 1099999.98011081 - -7.19679271879509e-05 512.375041340045 1099999.88066900 - -2.12790354851837e-06 1254.93866223463 1099999.28414929 - 4.43242365797836e-05 3073.08630413420 1099995.70732825 - -5.91364761740895e-05 7521.83809688115 1099974.28240466 - -7.33058533102954e-05 18389.5300878848 1099846.27343240 - 3.06719451979231e-06 44828.5181958177 1099086.16766674 - 0.000130779698638274 108456.750941794 1094640.18434148 - 8.91980423308859e-05 256943.719996882 1069569.97188317 - 9.17832777540387e-05 570452.767982027 940523.066969463 - 0.000132466424328115 -570452.768003082 940523.066956692 - 0.000182193545873246 -256943.719898121 1069569.97190690 - 9.87292011908165e-05 -108456.750920141 1094640.18434363 - 5.27267105413125e-05 -44828.5181797563 1099086.16766740 - -4.07727766139655e-05 -18389.5300518799 1099846.27343301 - -7.45412564750391e-05 -7521.83797664406 1099974.28240548 - -3.07992288233119e-05 -3073.08627862943 1099995.70732832 - 4.97740255601344e-06 -1254.93885281021 1099999.28414907 - -3.03340642503187e-05 -512.374842593702 1099999.88066909 - -1.76230725548954e-05 -209.179875630775 1099999.98011081 - 7.73532339317214e-05 -85.3962867239466 1099999.99668522 - -5.96125035730000e-05 -34.8620277632314 1099999.99944756 - 5.42916264355198e-06 -14.2319978586632 1099999.99990793 - 5.11766993615743e-05 -5.80995863394714 1099999.99998466 - 9.76962350182997e-05 -2.37173271679825 1099999.99999744 - 0.000143651580552045 -0.967874964525409 1099999.99999957 - 0.000105090380278296 -0.394821303529870 1099999.99999993 - 0.000196487847857673 -0.160871553912732 1099999.99999999 - 0.000640975233700373 -0.0646334248088793 1100000.00000000 - 0.00148394389144644 -0.0244276049261946 1100000.00000000 - 0.00324034445914185 -0.00594829057116400 1100000.00000000 - 0.00729316639373577 0.00622152078216174 1100000.00000000 - 0.0161066405457946 0.0205105408715240 1100000.00000000 - 0.0350914701930452 0.0453640760104224 1100000.00000000 - 0.0753921093630989 0.0929239129796478 1099999.99999999 - 0.159851959667043 0.184855037997845 1099999.99999997 - 0.332362219265257 0.358478623024946 1099999.99999989 - 0.679092684697151 0.679092684697144 1099999.99999958 - 1.35785074911348 1.25037183895571 1099999.99999845 - 2.64810458151183 2.22848586919793 1099999.99999456 - 5.01909798461663 3.82455143521041 1099999.99998190 - 9.20626636209734 6.28080600743653 1099999.99994354 - 16.2596825449726 9.79136963073345 1099999.99983625 - 27.4886537815560 14.3470546068419 1099999.99956297 - 44.1799693874790 19.5048501521257 1099999.99893986 - 66.9783303750513 24.1755446651158 1099999.99769520 - 94.9551380155284 26.6262676843030 1099999.99557935 - 124.745308315046 24.9499880449844 1099999.99264368 - 150.543586974362 18.0407995442279 1099999.98955053 - 165.712154476185 6.61389101010462 1099999.98749806 - 165.712154476187 -6.61389101010482 1099999.98749806 - 150.543586974362 -18.0407995442277 1099999.98955053 - 124.745308315047 -24.9499880449850 1099999.99264368 - 94.9551380155281 -26.6262676843026 1099999.99557935 - 66.9783303750514 -24.1755446651159 1099999.99769520 - 44.1799693874790 -19.5048501521256 1099999.99893986 - 27.4886537815559 -14.3470546068421 1099999.99956297 - 16.2596825449726 -9.79136963073335 1099999.99983625 - 9.20626636209724 -6.28080600743676 1099999.99994354 - 5.01909798461646 -3.82455143521003 1099999.99998190 - 2.64810458151201 -2.22848586919779 1099999.99999456 - 1.35785074911353 -1.25037183895588 1099999.99999845 - 0.679092684697184 -0.679092684697102 1099999.99999958 - 0.332362219265238 -0.358478623025011 1099999.99999989 - 0.159851959666971 -0.184855037997847 1099999.99999997 - 0.0753921093631245 -0.0929239129796107 1099999.99999999 - 0.0350914701930663 -0.0453640760104298 1100000.00000000 - 0.0161066405457795 -0.0205105408715390 1100000.00000000 - 0.00729316639373990 -0.00622152078216313 1100000.00000000 - 0.00324034445914572 0.00594829057117503 1100000.00000000 - 0.00148394389144389 0.0244276049261917 1100000.00000000 - 0.000640975233700328 0.0646334248088832 1100000.00000000 - 0.000196487847857493 0.160871553912723 1099999.99999999 - 0.000105090380276708 0.394821303529869 1099999.99999993 - 0.000143651580552254 0.967874964525374 1099999.99999957 - 9.76962350383945e-05 2.37173271679825 1099999.99999744 - 5.11766993307361e-05 5.80995863394721 1099999.99998466 - 5.42916255868121e-06 14.2319978586631 1099999.99990793 - -5.96125035052899e-05 34.8620277632312 1099999.99944756 - 7.73532341867299e-05 85.3962867239472 1099999.99668522 - -1.76230727476452e-05 209.179875630774 1099999.98011081 - -3.03340659141763e-05 512.374842593704 1099999.88066909 - 4.97740554153622e-06 1254.93885281020 1099999.28414907 - -3.07992271297201e-05 3073.08627862942 1099995.70732832 - -7.45412618239203e-05 7521.83797664406 1099974.28240548 - -4.07727718561025e-05 18389.5300518798 1099846.27343301 - 5.27267417037397e-05 44828.5181797562 1099086.16766740 - 9.87292711163811e-05 108456.750920141 1094640.18434363 - 0.000182193529778688 256943.719898121 1069569.97190689 - 0.000132466298929939 570452.768003082 940523.066956692 - 0.000156907072564658 -570452.767928161 940523.067002133 - 8.59063844933788e-05 -256943.719948721 1069569.97189474 - 0.000132732286093398 -108456.750819229 1094640.18435362 - 3.62778335900291e-05 -44828.5180112700 1099086.16767427 - -6.83884551269827e-05 -18389.5299072140 1099846.27343543 - -0.000117519855567183 -7521.83806878893 1099974.28240485 - -2.79547510640512e-05 -3073.08641178899 1099995.70732794 - -1.11786710445726e-05 -1254.93866710465 1099999.28414929 - -0.000119359267080643 -512.374943594692 1099999.88066905 - -4.31451171663149e-05 -209.179831692138 1099999.98011082 - 2.27712263874551e-05 -85.3961751234539 1099999.99668522 - 3.84587231444332e-05 -34.8621154447646 1099999.99944756 - -6.36304714302587e-05 -14.2320340348436 1099999.99990793 - -6.71612694060590e-05 -5.80989733492257 1099999.99998466 - 3.49931946560992e-06 -2.37171963902907 1099999.99999744 - 9.33188508785133e-05 -0.968192442170334 1099999.99999957 - 2.05831024863281e-05 -0.394911848272091 1099999.99999993 - 6.09290391671796e-05 -0.160901617443912 1099999.99999999 - 0.000474054442600560 -0.0651458601455801 1100000.00000000 - 0.00104805631524437 -0.0253882587908144 1100000.00000000 - 0.00195457293672315 -0.00810849172048321 1100000.00000000 - 0.00435661725922348 0.00146994623088115 1100000.00000000 - 0.00949809123330705 0.0103658891598675 1100000.00000000 - 0.0203052310544033 0.0240208091248400 1100000.00000000 - 0.0427944232624595 0.0487912911225859 1100000.00000000 - 0.0886408573299957 0.0950564544104873 1099999.99999999 - 0.180313152714687 0.180313152714666 1099999.99999997 - 0.358478623024959 0.332362219265273 1099999.99999989 - 0.698258736089543 0.595973697135961 1099999.99999962 - 1.32450768225966 1.03312810664527 1099999.99999872 - 2.44004931117864 1.72338181873743 1099999.99999594 - 4.34637788593394 2.74852422990473 1099999.99998798 - 7.45138708125943 4.16000926014151 1099999.99996690 - 12.2278631944853 5.91763282539537 1099999.99991612 - 19.0885669790198 7.81625445680200 1099999.99980661 - 28.1507443601705 9.42735471329766 1099999.99959939 - 38.9271481262937 10.1323811799512 1099999.99926455 - 50.0878872535362 9.30419554595039 1099999.99882029 - 59.5421174067745 6.63064593958192 1099999.99836853 - 65.0219784601473 2.41227910785784 1099999.99807560 - 65.0219784601475 -2.41227910785787 1099999.99807560 - 59.5421174067742 -6.63064593958204 1099999.99836853 - 50.0878872535365 -9.30419554595020 1099999.99882029 - 38.9271481262933 -10.1323811799513 1099999.99926455 - 28.1507443601708 -9.42735471329754 1099999.99959939 - 19.0885669790196 -7.81625445680213 1099999.99980661 - 12.2278631944854 -5.91763282539535 1099999.99991612 - 7.45138708125940 -4.16000926014154 1099999.99996690 - 4.34637788593368 -2.74852422990447 1099999.99998798 - 2.44004931117883 -1.72338181873729 1099999.99999594 - 1.32450768225978 -1.03312810664551 1099999.99999872 - 0.698258736089582 -0.595973697135968 1099999.99999962 - 0.358478623024882 -0.332362219265290 1099999.99999989 - 0.180313152714589 -0.180313152714630 1099999.99999997 - 0.0886408573300460 -0.0950564544104526 1099999.99999999 - 0.0427944232624888 -0.0487912911226106 1100000.00000000 - 0.0203052310543815 -0.0240208091248577 1100000.00000000 - 0.00949809123331368 -0.0103658891598662 1100000.00000000 - 0.00435661725923017 -0.00146994623087346 1100000.00000000 - 0.00195457293671651 0.00810849172047830 1100000.00000000 - 0.00104805631524219 0.0253882587908215 1100000.00000000 - 0.000474054442603957 0.0651458601455843 1100000.00000000 - 6.09290391718582e-05 0.160901617443912 1099999.99999999 - 2.05831024866328e-05 0.394911848272069 1099999.99999993 - 9.33188508672239e-05 0.968192442170311 1099999.99999957 - 3.49931943025068e-06 2.37171963902905 1099999.99999744 - -6.71612693845866e-05 5.80989733492261 1099999.99998466 - -6.36304713503641e-05 14.2320340348437 1099999.99990793 - 3.84587230988955e-05 34.8621154447646 1099999.99944756 - 2.27712261604631e-05 85.3961751234534 1099999.99668522 - -4.31451174514328e-05 209.179831692140 1099999.98011082 - -0.000119359265236566 512.374943594690 1099999.88066905 - -1.11786720537996e-05 1254.93866710465 1099999.28414929 - -2.79547544268886e-05 3073.08641178898 1099995.70732794 - -0.000117519853631848 7521.83806878889 1099974.28240485 - -6.83884711292467e-05 18389.5299072139 1099846.27343543 - 3.62778241040066e-05 44828.5180112699 1099086.16767427 - 0.000132732189265126 108456.750819229 1094640.18435362 - 8.59062845364391e-05 256943.719948721 1069569.97189474 - 0.000156907014379599 570452.767928161 940523.067002133 - -0.000102682538925383 -570452.767907618 940523.067014593 - 8.50751630269149e-05 -256943.719887713 1069569.97190940 - 7.45951456715228e-05 -108456.750862491 1094640.18434934 - 2.85896510113081e-05 -44828.5179645550 1099086.16767618 - -6.95317160798658e-05 -18389.5298752045 1099846.27343596 - -0.000184923710416635 -7521.83792818667 1099974.28240581 - -0.000172847107157194 -3073.08630859504 1099995.70732823 - -2.51126857560586e-05 -1254.93890929919 1099999.28414901 - -9.60724541315862e-05 -512.374800740058 1099999.88066911 - -0.000219144232114371 -209.179794777337 1099999.98011082 - -7.93448151627404e-05 -85.3962380399049 1099999.99668522 - -0.000120656715655992 -34.8620408987813 1099999.99944756 - -0.000134429931460622 -14.2321018129218 1099999.99990793 - -0.000115252906949364 -5.81001942388175 1099999.99998466 - -6.15662748964676e-05 -2.37165542880376 1099999.99999744 - 2.16014587431850e-05 -0.968045907606874 1099999.99999957 - 3.36579419834412e-05 -0.395138845869351 1099999.99999993 - -0.000175053600818410 -0.161092955347328 1099999.99999999 - 1.17810032340927e-05 -0.0653499778895861 1100000.00000000 - 0.000613161193185934 -0.0259772189442397 1100000.00000000 - 0.00120859837769547 -0.00930502552669959 1100000.00000000 - 0.00240925105527468 -0.00120847945792408 1100000.00000000 - 0.00533700168858045 0.00469204495468950 1100000.00000000 - 0.0113728824223976 0.0121524107815635 1100000.00000000 - 0.0234489420478760 0.0248427473330838 1100000.00000000 - 0.0477500184996558 0.0477500184996536 1100000.00000000 - 0.0950564544104319 0.0886408573300445 1099999.99999999 - 0.184855037997905 0.159851959667057 1099999.99999997 - 0.350662475610207 0.279131166907990 1099999.99999991 - 0.648461382841071 0.471428164875984 1099999.99999971 - 1.16284491250664 0.765572768227247 1099999.99999912 - 2.01625292486778 1.18837247757817 1099999.99999751 - 3.36332238307479 1.75024242130608 1099999.99999347 - 5.37218406824360 2.42386737391203 1099999.99998421 - 8.16965355229448 3.11936493141236 1099999.99996524 - 11.7566249789385 3.67241156492789 1099999.99993104 - 15.9058379677090 3.86297926270574 1099999.99987822 - 20.1010669111289 3.48535066232206 1099999.99981082 - 23.5882899015124 2.45271891187521 1099999.99974435 - 25.5851482736739 0.886564201705201 1099999.99970210 - 25.5851482736735 -0.886564201705183 1099999.99970210 - 23.5882899015127 -2.45271891187520 1099999.99974435 - 20.1010669111286 -3.48535066232204 1099999.99981082 - 15.9058379677092 -3.86297926270575 1099999.99987822 - 11.7566249789384 -3.67241156492787 1099999.99993104 - 8.16965355229444 -3.11936493141242 1099999.99996524 - 5.37218406824372 -2.42386737391195 1099999.99998421 - 3.36332238307453 -1.75024242130599 1099999.99999347 - 2.01625292486798 -1.18837247757806 1099999.99999751 - 1.16284491250674 -0.765572768227471 1099999.99999912 - 0.648461382841074 -0.471428164875994 1099999.99999971 - 0.350662475610105 -0.279131166907957 1099999.99999991 - 0.184855037997811 -0.159851959667015 1099999.99999997 - 0.0950564544104982 -0.0886408573300217 1099999.99999999 - 0.0477500184996866 -0.0477500184996925 1100000.00000000 - 0.0234489420478566 -0.0248427473331024 1100000.00000000 - 0.0113728824224050 -0.0121524107815590 1100000.00000000 - 0.00533700168858466 -0.00469204495468127 1100000.00000000 - 0.00240925105526744 0.00120847945792550 1100000.00000000 - 0.00120859837769151 0.00930502552670274 1100000.00000000 - 0.000613161193189337 0.0259772189442327 1100000.00000000 - 1.17810032403658e-05 0.0653499778895884 1100000.00000000 - -0.000175053600819121 0.161092955347330 1099999.99999999 - 3.36579419829480e-05 0.395138845869349 1099999.99999993 - 2.16014587332663e-05 0.968045907606877 1099999.99999957 - -6.15662749233103e-05 2.37165542880374 1099999.99999744 - -0.000115252906965490 5.81001942388163 1099999.99998466 - -0.000134429931449504 14.2321018129219 1099999.99990793 - -0.000120656715517918 34.8620408987816 1099999.99944756 - -7.93448150842231e-05 85.3962380399051 1099999.99668522 - -0.000219144232397439 209.179794777335 1099999.98011082 - -9.60724542582810e-05 512.374800740061 1099999.88066911 - -2.51126826721696e-05 1254.93890929919 1099999.28414901 - -0.000172847109710285 3073.08630859503 1099995.70732823 - -0.000184923720067021 7521.83792818667 1099974.28240581 - -6.95317293227534e-05 18389.5298752045 1099846.27343596 - 2.85895910061560e-05 44828.5179645550 1099086.16767618 - 7.45950823784103e-05 108456.750862491 1094640.18434934 - 8.50751980493032e-05 256943.719887713 1069569.97190940 - -0.000102682495502903 570452.767907618 940523.067014593 - -0.000322278266900253 -570452.767975874 940523.066973194 - -0.000244501589237853 -256943.720116263 1069569.97185449 - -3.78523650975232e-05 -108456.750941222 1094640.18434154 - -4.45651505079225e-05 -44828.5179218367 1099086.16767792 - -0.000120536289725788 -18389.5296773969 1099846.27343927 - -0.000231560333852022 -7521.83794400275 1099974.28240570 - -0.000283660895875360 -3073.08650059260 1099995.70732770 - -0.000234952156270676 -1254.93875110628 1099999.28414919 - -0.000238313156206994 -512.374838416436 1099999.88066910 - -0.000302313364593162 -209.179713121415 1099999.98011084 - -0.000313717121078912 -85.3961229518871 1099999.99668523 - -0.000209455384917808 -34.8620082643819 1099999.99944756 - -0.000390002572205391 -14.2320736107275 1099999.99990793 - -0.000479365133318744 -5.81011151292558 1099999.99998466 - -0.000390496382129114 -2.37179791312341 1099999.99999744 - -0.000193648902636129 -0.968145393398514 1099999.99999957 - -8.80809013001188e-05 -0.395041471530015 1099999.99999993 - -0.000214613738585863 -0.161211496104779 1099999.99999999 - -0.000292919786227880 -0.0656027800843267 1100000.00000000 - -9.96221816403419e-06 -0.0262653820599142 1100000.00000000 - 0.000539753282321234 -0.00999786528180443 1100000.00000000 - 0.00125175899008225 -0.00267726147589020 1100000.00000000 - 0.00266646015579185 0.00158500367487380 1100000.00000000 - 0.00596852438630032 0.00593767084896314 1100000.00000000 - 0.0124047654216919 0.0124047654216991 1100000.00000000 - 0.0248427473331121 0.0234489420478449 1100000.00000000 - 0.0487912911225772 0.0427944232624486 1100000.00000000 - 0.0929239129796012 0.0753921093631257 1099999.99999999 - 0.172541633505130 0.128854953810876 1099999.99999998 - 0.311242933286731 0.212161304025532 1099999.99999994 - 0.544802120729868 0.336024355829207 1099999.99999981 - 0.921030811737357 0.508606405369576 1099999.99999950 - 1.49882328939092 0.730555621250651 1099999.99999874 - 2.33569070280257 0.987180808502572 1099999.99999708 - 3.46951288488427 1.24104649415635 1099999.99999383 - 4.88481073736387 1.42975413328676 1099999.99998822 - 6.48287830640938 1.47558193696045 1099999.99997991 - 8.06483529365467 1.31093931212882 1099999.99996965 - 9.35868667028145 0.912449445627805 1099999.99995981 - 10.0918437734642 0.327955753951152 1099999.99995366 - 10.0918437734642 -0.327955753951143 1099999.99995366 - 9.35868667028147 -0.912449445627755 1099999.99995981 - 8.06483529365460 -1.31093931212887 1099999.99996965 - 6.48287830640951 -1.47558193696037 1099999.99997991 - 4.88481073736369 -1.42975413328683 1099999.99998822 - 3.46951288488448 -1.24104649415625 1099999.99999383 - 2.33569070280235 -0.987180808502578 1099999.99999708 - 1.49882328939105 -0.730555621250589 1099999.99999874 - 0.921030811737408 -0.508606405369712 1099999.99999950 - 0.544802120729832 -0.336024355829213 1099999.99999981 - 0.311242933286651 -0.212161304025475 1099999.99999994 - 0.172541633505061 -0.128854953810855 1099999.99999998 - 0.0929239129796753 -0.0753921093631211 1099999.99999999 - 0.0487912911226005 -0.0427944232624870 1100000.00000000 - 0.0248427473330987 -0.0234489420478603 1100000.00000000 - 0.0124047654217003 -0.0124047654216894 1100000.00000000 - 0.00596852438629725 -0.00593767084895423 1100000.00000000 - 0.00266646015578498 -0.00158500367487304 1100000.00000000 - 0.00125175899008047 0.00267726147589108 1100000.00000000 - 0.000539753282326464 0.00999786528179687 1100000.00000000 - -9.96221815955490e-06 0.0262653820599149 1100000.00000000 - -0.000292919786230999 0.0656027800843310 1100000.00000000 - -0.000214613738584586 0.161211496104782 1099999.99999999 - -8.80809013072466e-05 0.395041471530021 1099999.99999993 - -0.000193648902639942 0.968145393398505 1099999.99999957 - -0.000390496382112577 2.37179791312336 1099999.99999744 - -0.000479365133388231 5.81011151292567 1099999.99998466 - -0.000390002572211660 14.2320736107274 1099999.99990793 - -0.000209455384694334 34.8620082643816 1099999.99944756 - -0.000313717121022906 85.3961229518871 1099999.99668523 - -0.000302313364524854 209.179713121416 1099999.98011084 - -0.000238313156079285 512.374838416434 1099999.88066910 - -0.000234952156657328 1254.93875110628 1099999.28414919 - -0.000283660895941429 3073.08650059260 1099995.70732770 - -0.000231560338600132 7521.83794400274 1099974.28240570 - -0.000120536296967364 18389.5296773969 1099846.27343927 - -4.45651574507459e-05 44828.5179218367 1099086.16767792 - -3.78523323508091e-05 108456.750941222 1094640.18434154 - -0.000244501413375645 256943.720116263 1069569.97185449 - -0.000322278187494860 570452.767975874 940523.066973194 - -0.00100620734736633 -570452.768365276 940523.066737011 - -0.000439493682793811 -256943.720497019 1069569.97176302 - -0.000203149531368987 -108456.751258488 1094640.18431010 - -0.000129313575556263 -44828.5179379603 1099086.16767726 - -0.000210608469327750 -18389.5296977589 1099846.27343893 - -0.000417341705627442 -7521.83782178503 1099974.28240654 - -0.000596683597555932 -3073.08623827543 1099995.70732843 - -0.000543651611536408 -1254.93890239436 1099999.28414902 - -0.000534186622787712 -512.374840168636 1099999.88066909 - -0.000758085607507655 -209.179647604847 1099999.98011085 - -0.000771279716454689 -85.3960598183459 1099999.99668523 - -0.000720029752542764 -34.8619568419178 1099999.99944757 - -0.000646901883851309 -14.2319941912949 1099999.99990793 - -0.000792763814848639 -5.81009973933178 1099999.99998466 - -0.000981568732516518 -2.37178792120735 1099999.99999744 - -0.000852537850859036 -0.968163185899027 1099999.99999957 - -0.000615189447398012 -0.395217055652465 1099999.99999993 - -0.000646454386852915 -0.161200258755737 1099999.99999999 - -0.000762135572314294 -0.0657521851752478 1100000.00000000 - -0.000591891912559689 -0.0265420511635570 1100000.00000000 - -0.000343528795710317 -0.0103394968425272 1100000.00000000 - 0.000165646028202798 -0.00347636536722260 1100000.00000000 - 0.000998643807795651 -1.89381302485450e-05 1100000.00000000 - 0.00251927864160171 0.00251927864159959 1100000.00000000 - 0.00593767084896129 0.00596852438630498 1100000.00000000 - 0.0121524107815601 0.0113728824224081 1100000.00000000 - 0.0240208091248645 0.0203052310543763 1100000.00000000 - 0.0453640760104052 0.0350914701930325 1100000.00000000 - 0.0828909896014642 0.0585266288367101 1100000.00000000 - 0.146668071191112 0.0944528098583717 1099999.99999999 - 0.251062579974131 0.146013047088916 1099999.99999996 - 0.415073684513818 0.215886894423037 1099999.99999990 - 0.660170892183164 0.302997294173782 1099999.99999976 - 1.00646387200689 0.400366199222642 1099999.99999947 - 1.46346203875321 0.492654883359158 1099999.99999892 - 2.02096645676907 0.556688263018089 1099999.99999800 - 2.63658743503207 0.564781116428126 1099999.99999669 - 3.23526726762751 0.494951293538190 1099999.99999513 - 3.71769087302017 0.341217508755036 1099999.99999366 - 3.98876242675910 0.121987361341038 1099999.99999276 - 3.98876242675928 -0.121987361341035 1099999.99999276 - 3.71769087301998 -0.341217508755068 1099999.99999366 - 3.23526726762770 -0.494951293538156 1099999.99999513 - 2.63658743503187 -0.564781116428174 1099999.99999669 - 2.02096645676921 -0.556688263018043 1099999.99999800 - 1.46346203875307 -0.492654883359179 1099999.99999892 - 1.00646387200693 -0.400366199222623 1099999.99999947 - 0.660170892183195 -0.302997294173834 1099999.99999976 - 0.415073684513768 -0.215886894423051 1099999.99999990 - 0.251062579974101 -0.146013047088866 1099999.99999996 - 0.146668071191070 -0.0944528098583723 1099999.99999999 - 0.0828909896015323 -0.0585266288367208 1100000.00000000 - 0.0453640760104179 -0.0350914701930567 1100000.00000000 - 0.0240208091248517 -0.0203052310543847 1100000.00000000 - 0.0121524107815701 -0.0113728824223982 1100000.00000000 - 0.00593767084895290 -0.00596852438629675 1100000.00000000 - 0.00251927864159555 -0.00251927864160132 1100000.00000000 - 0.000998643807801010 1.89381302503630e-05 1100000.00000000 - 0.000165646028206071 0.00347636536721558 1100000.00000000 - -0.000343528795711049 0.0103394968425248 1100000.00000000 - -0.000591891912558816 0.0265420511635618 1100000.00000000 - -0.000762135572310236 0.0657521851752506 1100000.00000000 - -0.000646454386864056 0.161200258755743 1099999.99999999 - -0.000615189447392180 0.395217055652465 1099999.99999993 - -0.000852537850846327 0.968163185899007 1099999.99999957 - -0.000981568732569039 2.37178792120740 1099999.99999744 - -0.000792763814804088 5.81009973933173 1099999.99998466 - -0.000646901883727860 14.2319941912946 1099999.99990793 - -0.000720029752732328 34.8619568419178 1099999.99944757 - -0.000771279716433932 85.3960598183464 1099999.99668523 - -0.000758085607069221 209.179647604847 1099999.98011085 - -0.000534186623227036 512.374840168639 1099999.88066909 - -0.000543651612814661 1254.93890239436 1099999.28414902 - -0.000596683595477195 3073.08623827543 1099995.70732843 - -0.000417341704242187 7521.83782178504 1099974.28240654 - -0.000210608462150801 18389.5296977589 1099846.27343893 - -0.000129313582594023 44828.5179379603 1099086.16767726 - -0.000203149510229651 108456.751258488 1094640.18431010 - -0.000439493752792554 256943.720497019 1069569.97176302 - -0.00100620735718165 570452.768365276 940523.066737011 - -0.00191914936005865 -570452.769385412 940523.066118271 - -0.00108652461761341 -256943.721491919 1069569.97152402 - -0.000409843599467930 -108456.751868812 1094640.18424963 - -0.000321961384584695 -44828.5181770385 1099086.16766751 - -0.000499391107832602 -18389.5294366849 1099846.27344329 - -0.000750392060238534 -7521.83759116736 1099974.28240812 - -0.00119437171757464 -3073.08629608077 1099995.70732827 - -0.00141553000782880 -1254.93868736676 1099999.28414926 - -0.00140611300607151 -512.374689132977 1099999.88066917 - -0.00154613481566771 -209.179536701425 1099999.98011087 - -0.00178136275146757 -85.3959464521016 1099999.99668524 - -0.00185601895500977 -34.8617715387664 1099999.99944757 - -0.00188523543722450 -14.2319851255422 1099999.99990793 - -0.00183182462650684 -5.81021572334962 1099999.99998466 - -0.00188271894747761 -2.37193699636978 1099999.99999744 - -0.00200162977310010 -0.968113450374567 1099999.99999957 - -0.00179892812481290 -0.395092252012629 1099999.99999993 - -0.00166603937705344 -0.161286581286720 1099999.99999999 - -0.00188354867785081 -0.0657857900573386 1100000.00000000 - -0.00177999423562030 -0.0267784151990695 1100000.00000000 - -0.00158255712984154 -0.0106035049157051 1100000.00000000 - -0.00132411045203055 -0.00386893479922406 1100000.00000000 - -0.000847135914766458 -0.000847135914769389 1100000.00000000 - -1.89381302548944e-05 0.000998643807797115 1100000.00000000 - 0.00158500367487453 0.00266646015578819 1100000.00000000 - 0.00469204495468926 0.00533700168858690 1100000.00000000 - 0.0103658891598658 0.00949809123331791 1100000.00000000 - 0.0205105408715459 0.0161066405457779 1100000.00000000 - 0.0379130454840346 0.0263006658640284 1100000.00000000 - 0.0668520031342239 0.0414252557960309 1100000.00000000 - 0.113015031217708 0.0629248278190354 1099999.99999999 - 0.183822356101467 0.0909725644997346 1099999.99999998 - 0.286947074712239 0.125005329845502 1099999.99999996 - 0.429341710259762 0.161842037823027 1099999.99999990 - 0.612928287321360 0.195293432822679 1099999.99999981 - 0.832096708520175 0.216809189072330 1099999.99999966 - 1.06955966373820 0.216686523120228 1099999.99999946 - 1.29667208930909 0.187513815807179 1099999.99999922 - 1.47752424475238 0.128227291407414 1099999.99999900 - 1.57827751785781 0.0456034502092545 1099999.99999887 - 1.57827751785770 -0.0456034502092716 1099999.99999887 - 1.47752424475248 -0.128227291407419 1099999.99999900 - 1.29667208930900 -0.187513815807197 1099999.99999922 - 1.06955966373824 -0.216686523120227 1099999.99999946 - 0.832096708520142 -0.216809189072335 1099999.99999966 - 0.612928287321344 -0.195293432822690 1099999.99999981 - 0.429341710259806 -0.161842037823034 1099999.99999990 - 0.286947074712195 -0.125005329845521 1099999.99999996 - 0.183822356101481 -0.0909725644997064 1099999.99999998 - 0.113015031217682 -0.0629248278190418 1099999.99999999 - 0.0668520031342719 -0.0414252557960458 1100000.00000000 - 0.0379130454840418 -0.0263006658640378 1100000.00000000 - 0.0205105408715288 -0.0161066405457786 1100000.00000000 - 0.0103658891598784 -0.00949809123331386 1100000.00000000 - 0.00469204495468002 -0.00533700168858032 1100000.00000000 - 0.00158500367486879 -0.00266646015579122 1100000.00000000 - -1.89381302435756e-05 -0.000998643807796370 1100000.00000000 - -0.000847135914767746 0.000847135914766289 1100000.00000000 - -0.00132411045203107 0.00386893479922462 1100000.00000000 - -0.00158255712984271 0.0106035049157041 1100000.00000000 - -0.00177999423561812 0.0267784151990673 1100000.00000000 - -0.00188354867785349 0.0657857900573529 1100000.00000000 - -0.00166603937704978 0.161286581286717 1099999.99999999 - -0.00179892812482458 0.395092252012612 1099999.99999993 - -0.00200162977309496 0.968113450374614 1099999.99999957 - -0.00188271894741309 2.37193699636971 1099999.99999744 - -0.00183182462653759 5.81021572334948 1099999.99998466 - -0.00188523543737657 14.2319851255424 1099999.99990793 - -0.00185601895488560 34.8617715387662 1099999.99944757 - -0.00178136275112478 85.3959464521010 1099999.99668524 - -0.00154613481627666 209.179536701428 1099999.98011087 - -0.00140611300684944 512.374689132975 1099999.88066917 - -0.00141553000521960 1254.93868736676 1099999.28414926 - -0.00119437171591728 3073.08629608077 1099995.70732827 - -0.000750392055046088 7521.83759116734 1099974.28240812 - -0.000499391111890283 18389.5294366849 1099846.27344329 - -0.000321961394890727 44828.5181770385 1099086.16766751 - -0.000409843604674475 108456.751868812 1094640.18424963 - -0.00108652471539519 256943.721491919 1069569.97152402 - -0.00191914948098217 570452.769385412 940523.066118271 - -0.00370568910866763 -570452.772274352 940523.064366051 - -0.00167522058402431 -256943.723797008 1069569.97097026 - -0.000657961668588572 -108456.753057704 1094640.18413184 - -0.000536512896311212 -44828.5183157066 1099086.16766185 - -0.00106444305869061 -18389.5292727728 1099846.27344603 - -0.00190563025892251 -7521.83713691644 1099974.28241122 - -0.00269898399577207 -3073.08553123422 1099995.70733041 - -0.00333895264280615 -1254.93837658933 1099999.28414962 - -0.00368352600291491 -512.374585560717 1099999.88066921 - -0.00389573473030002 -209.179370149596 1099999.98011090 - -0.00415783321800382 -85.3957131703514 1099999.99668526 - -0.00428477802829732 -34.8616846286499 1099999.99944757 - -0.00438947778335639 -14.2316205191117 1099999.99990794 - -0.00457812601746418 -5.81000992738315 1099999.99998466 - -0.00458201200892438 -2.37213839199561 1099999.99999744 - -0.00463938768327479 -0.968389730320305 1099999.99999957 - -0.00452303512598728 -0.395165625004255 1099999.99999993 - -0.00432039560359957 -0.161144921699595 1099999.99999999 - -0.00439998121885270 -0.0657677205433499 1100000.00000000 - -0.00453032251003839 -0.0268188945244563 1100000.00000000 - -0.00436070481231288 -0.0108741091198911 1100000.00000000 - -0.00416682365638134 -0.00416682365638466 1100000.00000000 - -0.00386893479922451 -0.00132411045203005 1100000.00000000 - -0.00347636536721789 0.000165646028205235 1100000.00000000 - -0.00267726147589638 0.00125175899007878 1100000.00000000 - -0.00120847945792359 0.00240925105526908 1100000.00000000 - 0.00146994623087782 0.00435661725922874 1100000.00000000 - 0.00622152078216218 0.00729316639374390 1100000.00000000 - 0.0141093513040254 0.0117196219514394 1100000.00000000 - 0.0271363420367440 0.0180387770811986 1100000.00000000 - 0.0472692491525722 0.0268127597113474 1100000.00000000 - 0.0775717008453687 0.0381326983819290 1100000.00000000 - 0.120718722974764 0.0513632590637241 1099999.99999999 - 0.178886579999587 0.0652368545863782 1099999.99999998 - 0.252545945341607 0.0774090306907735 1099999.99999997 - 0.338546784162385 0.0844033508620274 1099999.99999994 - 0.430337686208101 0.0833301060469799 1099999.99999991 - 0.516657509679639 0.0711864937586561 1099999.99999988 - 0.584784101672508 0.0484019254013993 1099999.99999984 - 0.622405199001564 0.0170734009623028 1099999.99999982 - 0.622405199001562 -0.0170734009623074 1099999.99999982 - 0.584784101672515 -0.0484019254014004 1099999.99999984 - 0.516657509679621 -0.0711864937586648 1099999.99999988 - 0.430337686208132 -0.0833301060469737 1099999.99999991 - 0.338546784162350 -0.0844033508620412 1099999.99999994 - 0.252545945341655 -0.0774090306907671 1099999.99999997 - 0.178886579999554 -0.0652368545863916 1099999.99999998 - 0.120718722974789 -0.0513632590637138 1099999.99999999 - 0.0775717008453558 -0.0381326983819320 1100000.00000000 - 0.0472692491525963 -0.0268127597113577 1100000.00000000 - 0.0271363420367523 -0.0180387770812019 1100000.00000000 - 0.0141093513040087 -0.0117196219514342 1100000.00000000 - 0.00622152078217586 -0.00729316639374586 1100000.00000000 - 0.00146994623087217 -0.00435661725922410 1100000.00000000 - -0.00120847945792914 -0.00240925105527132 1100000.00000000 - -0.00267726147588776 -0.00125175899007950 1100000.00000000 - -0.00347636536722042 -0.000165646028203745 1100000.00000000 - -0.00386893479922517 0.00132411045203062 1100000.00000000 - -0.00416682365638496 0.00416682365638230 1100000.00000000 - -0.00436070481230948 0.0108741091198897 1100000.00000000 - -0.00453032251004104 0.0268188945244611 1100000.00000000 - -0.00439998121885225 0.0657677205433498 1100000.00000000 - -0.00432039560360337 0.161144921699608 1099999.99999999 - -0.00452303512598228 0.395165625004249 1099999.99999993 - -0.00463938768327184 0.968389730320215 1099999.99999957 - -0.00458201200891169 2.37213839199567 1099999.99999744 - -0.00457812601746531 5.81000992738334 1099999.99998466 - -0.00438947778335204 14.2316205191113 1099999.99990794 - -0.00428477802812571 34.8616846286494 1099999.99944757 - -0.00415783321866871 85.3957131703527 1099999.99668526 - -0.00389573473032041 209.179370149596 1099999.98011090 - -0.00368352599937725 512.374585560719 1099999.88066921 - -0.00333895264637873 1254.93837658933 1099999.28414962 - -0.00269898399544094 3073.08553123421 1099995.70733041 - -0.00190563025710726 7521.83713691646 1099974.28241122 - -0.00106444307819935 18389.5292727728 1099846.27344603 - -0.000536512890443987 44828.5183157066 1099086.16766185 - -0.000657961713530759 108456.753057704 1094640.18413184 - -0.00167522059221629 256943.723797009 1069569.97097026 - -0.00370568908899126 570452.772274352 940523.064366050 - -0.00584353848373737 -570452.779709082 940523.059856685 - -0.00196141562724551 -256943.729188222 1069569.96967513 - -0.000205391564787446 -108456.755351041 1094640.18390461 - -0.000832909152724614 -44828.5185413288 1099086.16765265 - -0.00264587834799652 -18389.5281418026 1099846.27346494 - -0.00460354709708553 -7521.83562478699 1099974.28242156 - -0.00658313040425051 -3073.08443040946 1099995.70733348 - -0.00818327419698648 -1254.93731063001 1099999.28415083 - -0.00909212255359285 -512.373756896710 1099999.88066960 - -0.00976499570446613 -209.178900960747 1099999.98011099 - -0.0102925879692442 -85.3954722825395 1099999.99668528 - -0.0105950328728631 -34.8614472829063 1099999.99944758 - -0.0107312274261476 -14.2316463206306 1099999.99990794 - -0.0107286593233476 -5.80974838515758 1099999.99998466 - -0.0109783507254763 -2.37185658749997 1099999.99999744 - -0.0111325995561160 -0.968483634633385 1099999.99999957 - -0.0111183470364219 -0.395358102809217 1099999.99999993 - -0.0108517230124613 -0.161258123864623 1099999.99999999 - -0.0107743250344901 -0.0656881120143705 1100000.00000000 - -0.0109534485180721 -0.0268089453768298 1100000.00000000 - -0.0109335187956217 -0.0109335187956281 1100000.00000000 - -0.0108741091198947 -0.00436070481230793 1100000.00000000 - -0.0106035049157038 -0.00158255712984016 1100000.00000000 - -0.0103394968425235 -0.000343528795710882 1100000.00000000 - -0.00999786528179956 0.000539753282324809 1100000.00000000 - -0.00930502552670846 0.00120859837769248 1100000.00000000 - -0.00810849172047848 0.00195457293671786 1100000.00000000 - -0.00594829057117617 0.00324034445914343 1100000.00000000 - -0.00241481668489335 0.00514909396166100 1100000.00000000 - 0.00331909422394791 0.00775177097976125 1100000.00000000 - 0.0121576943745510 0.0113448872316901 1100000.00000000 - 0.0249499810017673 0.0158324730969922 1100000.00000000 - 0.0429679210084577 0.0210824881329026 1100000.00000000 - 0.0666324192484310 0.0262662019264575 1100000.00000000 - 0.0960754292438705 0.0307491510616089 1100000.00000000 - 0.129890871311977 0.0329954820552503 1099999.99999999 - 0.165346268034415 0.0321121170527253 1099999.99999999 - 0.198349241074969 0.0272048290580645 1099999.99999998 - 0.224046980456027 0.0182818838556605 1099999.99999998 - 0.238204716796000 0.00649352844016078 1099999.99999997 - 0.238204716796033 -0.00649352844015786 1099999.99999997 - 0.224046980455997 -0.0182818838556613 1099999.99999998 - 0.198349241075005 -0.0272048290580585 1099999.99999998 - 0.165346268034385 -0.0321121170527314 1099999.99999999 - 0.129890871312010 -0.0329954820552451 1099999.99999999 - 0.0960754292438501 -0.0307491510616148 1100000.00000000 - 0.0666324192484472 -0.0262662019264554 1100000.00000000 - 0.0429679210084507 -0.0210824881329047 1100000.00000000 - 0.0249499810017740 -0.0158324730969958 1100000.00000000 - 0.0121576943745599 -0.0113448872316925 1100000.00000000 - 0.00331909422393751 -0.00775177097975388 1100000.00000000 - -0.00241481668488458 -0.00514909396166558 1100000.00000000 - -0.00594829057117364 -0.00324034445914101 1100000.00000000 - -0.00810849172048660 -0.00195457293671726 1100000.00000000 - -0.00930502552670247 -0.00120859837769211 1100000.00000000 - -0.00999786528180145 -0.000539753282322307 1100000.00000000 - -0.0103394968425312 0.000343528795708230 1100000.00000000 - -0.0106035049157022 0.00158255712984003 1100000.00000000 - -0.0108741091198929 0.00436070481231176 1100000.00000000 - -0.0109335187956208 0.0109335187956222 1100000.00000000 - -0.0109534485180757 0.0268089453768236 1100000.00000000 - -0.0107743250344938 0.0656881120143931 1100000.00000000 - -0.0108517230124513 0.161258123864622 1099999.99999999 - -0.0111183470364173 0.395358102809188 1099999.99999993 - -0.0111325995561351 0.968483634633407 1099999.99999957 - -0.0109783507254945 2.37185658749991 1099999.99999744 - -0.0107286593232892 5.80974838515744 1099999.99998466 - -0.0107312274260064 14.2316463206307 1099999.99990794 - -0.0105950328732056 34.8614472829068 1099999.99944758 - -0.0102925879690275 85.3954722825388 1099999.99668528 - -0.00976499570330160 209.178900960746 1099999.98011099 - -0.00909212255584867 512.373756896710 1099999.88066960 - -0.00818327419630614 1254.93731063001 1099999.28415083 - -0.00658313040927759 3073.08443040946 1099995.70733348 - -0.00460354710104073 7521.83562478698 1099974.28242156 - -0.00264587833565742 18389.5281418026 1099846.27346494 - -0.000832909168942400 44828.5185413288 1099086.16765265 - -0.000205391601095268 108456.755351041 1094640.18390461 - -0.00196141568272491 256943.729188222 1069569.96967513 - -0.00584353845003947 570452.779709082 940523.059856685 - -0.00544724769700811 -570452.797912932 940523.048815556 - 0.00119361041926446 -256943.741048133 1069569.96682601 - 0.00253776429855783 -108456.759136768 1094640.18352952 - -0.000753973379925260 -44828.5171470094 1099086.16770952 - -0.00631086694042004 -18389.5247623496 1099846.27352145 - -0.0119648702583984 -7521.83191686262 1099974.28244692 - -0.0165891457209417 -3073.08094620383 1099995.70734321 - -0.0202391909579670 -1254.93485348147 1099999.28415364 - -0.0227738060503960 -512.372178697859 1099999.88067033 - -0.0241963535937507 -209.177787864342 1099999.98011121 - -0.0252048276685894 -85.3946166376437 1099999.99668534 - -0.0259842575432408 -34.8609979489004 1099999.99944760 - -0.0263958338400133 -14.2312948943166 1099999.99990794 - -0.0266118101722484 -5.80969534709897 1099999.99998466 - -0.0265918327279476 -2.37175795167701 1099999.99999744 - -0.0268309419164273 -0.968343670447921 1099999.99999957 - -0.0270906644875241 -0.395447510514141 1099999.99999993 - -0.0269032695782697 -0.161362963993297 1099999.99999999 - -0.0266881404731083 -0.0657080491415326 1100000.00000000 - -0.0267081833543301 -0.0267081833543250 1100000.00000000 - -0.0268089453768259 -0.0109534485180709 1100000.00000000 - -0.0268188945244579 -0.00453032251004528 1100000.00000000 - -0.0267784151990665 -0.00177999423561845 1100000.00000000 - -0.0265420511635578 -0.000591891912558434 1100000.00000000 - -0.0262653820599121 -9.96221815906188e-06 1100000.00000000 - -0.0259772189442313 0.000613161193188740 1100000.00000000 - -0.0253882587908259 0.00104805631524276 1100000.00000000 - -0.0244276049261853 0.00148394389144460 1100000.00000000 - -0.0228920965817935 0.00231182838431805 1100000.00000000 - -0.0204886715185417 0.00333239437313727 1100000.00000000 - -0.0167041427817136 0.00476093017264363 1100000.00000000 - -0.0112859428819535 0.00650541275723580 1100000.00000000 - -0.00386507242496330 0.00854222007824939 1100000.00000000 - 0.00580397223900483 0.0105348707942620 1100000.00000000 - 0.0175160712613605 0.0121238835484228 1100000.00000000 - 0.0308247649979472 0.0129413889870123 1100000.00000000 - 0.0445385268679826 0.0123661416600160 1100000.00000000 - 0.0571823863533053 0.0104516453248966 1100000.00000000 - 0.0669313113912376 0.00691894361215191 1100000.00000000 - 0.0722736931260623 0.00248968832404588 1100000.00000000 - 0.0722736931260471 -0.00248968832404523 1100000.00000000 - 0.0669313113912501 -0.00691894361215022 1100000.00000000 - 0.0571823863532975 -0.0104516453248949 1100000.00000000 - 0.0445385268679897 -0.0123661416600143 1100000.00000000 - 0.0308247649979433 -0.0129413889870147 1100000.00000000 - 0.0175160712613648 -0.0121238835484227 1100000.00000000 - 0.00580397223900417 -0.0105348707942642 1100000.00000000 - -0.00386507242496250 -0.00854222007824865 1100000.00000000 - -0.0112859428819530 -0.00650541275724023 1100000.00000000 - -0.0167041427817201 -0.00476093017263696 1100000.00000000 - -0.0204886715185427 -0.00333239437313980 1100000.00000000 - -0.0228920965817857 -0.00231182838431873 1100000.00000000 - -0.0244276049261994 -0.00148394389144091 1100000.00000000 - -0.0253882587908187 -0.00104805631524248 1100000.00000000 - -0.0259772189442355 -0.000613161193188002 1100000.00000000 - -0.0262653820599181 9.96221815944000e-06 1100000.00000000 - -0.0265420511635548 0.000591891912558148 1100000.00000000 - -0.0267784151990744 0.00177999423561903 1100000.00000000 - -0.0268188945244520 0.00453032251003646 1100000.00000000 - -0.0268089453768302 0.0109534485180749 1100000.00000000 - -0.0267081833543289 0.0267081833543371 1100000.00000000 - -0.0266881404731052 0.0657080491415157 1100000.00000000 - -0.0269032695782660 0.161362963993308 1099999.99999999 - -0.0270906644875206 0.395447510514167 1099999.99999993 - -0.0268309419164286 0.968343670447851 1099999.99999957 - -0.0265918327279681 2.37175795167699 1099999.99999744 - -0.0266118101722115 5.80969534709900 1099999.99998466 - -0.0263958338400290 14.2312948943166 1099999.99990794 - -0.0259842575430335 34.8609979489000 1099999.99944760 - -0.0252048276684514 85.3946166376436 1099999.99668534 - -0.0241963535939173 209.177787864343 1099999.98011121 - -0.0227738060517612 512.372178697862 1099999.88067033 - -0.0202391909632922 1254.93485348146 1099999.28415364 - -0.0165891457155297 3073.08094620382 1099995.70734321 - -0.0119648702608493 7521.83191686262 1099974.28244692 - -0.00631086693780281 18389.5247623496 1099846.27352145 - -0.000753973388479433 44828.5171470094 1099086.16770952 - 0.00253776425794268 108456.759136769 1094640.18352952 - 0.00119361045510906 256943.741048133 1069569.96682601 - -0.00544724773162270 570452.797912931 940523.048815556 - 0.00968781518322582 -570452.838725872 940523.024061397 - 0.0174101550154840 -256943.764542599 1069569.96118191 - 0.0134874185155167 -108456.762970308 1094640.18314970 - 0.000248528929664563 -44828.5101687879 1099086.16799414 - -0.0159001552645978 -18389.5141975013 1099846.27369809 - -0.0306614335941988 -7521.82149127680 1099974.28251821 - -0.0423442638497301 -3073.07257293243 1099995.70736661 - -0.0507872284851738 -1254.92881726552 1099999.28416052 - -0.0565493276278832 -512.368138182793 1099999.88067222 - -0.0603100769064851 -209.175339630844 1099999.98011167 - -0.0624470584347065 -85.3932168395375 1099999.99668545 - -0.0637668152896223 -34.8599792682647 1099999.99944763 - -0.0646958003351642 -14.2307602622957 1099999.99990795 - -0.0651999180082595 -5.80923638053569 1099999.99998466 - -0.0654753349170708 -2.37154361694875 1099999.99999744 - -0.0655751282056022 -0.968223412255881 1099999.99999957 - -0.0658923618480987 -0.395369013098792 1099999.99999993 - -0.0660661717824386 -0.161534593319159 1099999.99999999 - -0.0658311046089111 -0.0658311046089002 1100000.00000000 - -0.0657080491415287 -0.0266881404731098 1100000.00000000 - -0.0656881120143804 -0.0107743250344958 1100000.00000000 - -0.0657677205433380 -0.00439998121885165 1100000.00000000 - -0.0657857900573458 -0.00188354867785505 1100000.00000000 - -0.0657521851752401 -0.000762135572310810 1100000.00000000 - -0.0656027800843305 -0.000292919786231132 1100000.00000000 - -0.0653499778895740 1.17810032419700e-05 1100000.00000000 - -0.0651458601455746 0.000474054442603526 1100000.00000000 - -0.0646334248088822 0.000640975233702002 1100000.00000000 - -0.0638569249275233 0.00107384276071030 1100000.00000000 - -0.0628504522762849 0.00146672736149906 1100000.00000000 - -0.0612447553634650 0.00209075832693828 1100000.00000000 - -0.0590135033515821 0.00273178266528554 1100000.00000000 - -0.0559459207279249 0.00353568714103742 1100000.00000000 - -0.0520621629011634 0.00422949547428899 1100000.00000000 - -0.0473778723809043 0.00480133795180872 1100000.00000000 - -0.0421780577045319 0.00500527786155163 1100000.00000000 - -0.0368689586636537 0.00477372925769098 1100000.00000000 - -0.0320363792721808 0.00392736841835118 1100000.00000000 - -0.0283377305560092 0.00265082352016271 1100000.00000000 - -0.0263207633762339 0.000889742140163531 1100000.00000000 - -0.0263207633762428 -0.000889742140163261 1100000.00000000 - -0.0283377305559987 -0.00265082352016318 1100000.00000000 - -0.0320363792721937 -0.00392736841835130 1100000.00000000 - -0.0368689586636317 -0.00477372925768951 1100000.00000000 - -0.0421780577045397 -0.00500527786155372 1100000.00000000 - -0.0473778723808916 -0.00480133795180846 1100000.00000000 - -0.0520621629011710 -0.00422949547428709 1100000.00000000 - -0.0559459207279177 -0.00353568714103735 1100000.00000000 - -0.0590135033515906 -0.00273178266528127 1100000.00000000 - -0.0612447553634694 -0.00209075832694131 1100000.00000000 - -0.0628504522762814 -0.00146672736150362 1100000.00000000 - -0.0638569249275366 -0.00107384276070227 1100000.00000000 - -0.0646334248088847 -0.000640975233700984 1100000.00000000 - -0.0651458601455757 -0.000474054442604660 1100000.00000000 - -0.0653499778895841 -1.17810032390681e-05 1100000.00000000 - -0.0656027800843275 0.000292919786228127 1100000.00000000 - -0.0657521851752455 0.000762135572312283 1100000.00000000 - -0.0657857900573486 0.00188354867785131 1100000.00000000 - -0.0657677205433532 0.00439998121885409 1100000.00000000 - -0.0656881120143840 0.0107743250344889 1100000.00000000 - -0.0657080491415343 0.0266881404731020 1100000.00000000 - -0.0658311046089106 0.0658311046089221 1100000.00000000 - -0.0660661717824335 0.161534593319145 1099999.99999999 - -0.0658923618481011 0.395369013098765 1099999.99999993 - -0.0655751282055906 0.968223412255945 1099999.99999957 - -0.0654753349170890 2.37154361694871 1099999.99999744 - -0.0651999180083007 5.80923638053550 1099999.99998466 - -0.0646958003349652 14.2307602622954 1099999.99990795 - -0.0637668152894588 34.8599792682652 1099999.99944763 - -0.0624470584349647 85.3932168395374 1099999.99668545 - -0.0603100769069850 209.175339630844 1099999.98011167 - -0.0565493276301200 512.368138182798 1099999.88067222 - -0.0507872284857179 1254.92881726552 1099999.28416052 - -0.0423442638464936 3073.07257293244 1099995.70736661 - -0.0306614335918743 7521.82149127679 1099974.28251821 - -0.0159001552782380 18389.5141975013 1099846.27369809 - 0.000248528936442094 44828.5101687880 1099086.16799414 - 0.0134874184760974 108456.762970308 1094640.18314970 - 0.0174101550862583 256943.764542599 1069569.96118191 - 0.00968781527551518 570452.838725871 940523.024061397 - 0.0800894918850227 -570452.921791802 940522.973679638 - 0.0751283250099137 -256943.803440492 1069569.95183743 - 0.0472310922343029 -108456.757792309 1094640.18366273 - 0.00341010140063175 -44828.4832533254 1099086.16909194 - -0.0416539093992993 -18389.4828139889 1099846.27422283 - -0.0795878529184552 -7521.79455632050 1099974.28270239 - -0.108004941695117 -3073.05222262519 1099995.70742345 - -0.127817158532675 -1254.91453055176 1099999.28417681 - -0.140969128647681 -512.358794347372 1099999.88067656 - -0.149197093005841 -209.169563626252 1099999.98011276 - -0.154334226172949 -85.3898316483610 1099999.99668571 - -0.157297208151596 -34.8581792072548 1099999.99944767 - -0.158971398569739 -14.2296747848056 1099999.99990795 - -0.160058300392780 -5.80869824475727 1099999.99998465 - -0.160567423044426 -2.37107838057928 1099999.99999743 - -0.160885348579822 -0.967921184966329 1099999.99999956 - -0.161114014775811 -0.395148592924903 1099999.99999992 - -0.161447538865135 -0.161447538865111 1099999.99999998 - -0.161534593319140 -0.0660661717824457 1099999.99999999 - -0.161362963993310 -0.0269032695782682 1099999.99999999 - -0.161258123864608 -0.0108517230124651 1099999.99999999 - -0.161144921699606 -0.00432039560360393 1099999.99999999 - -0.161286581286704 -0.00166603937705284 1099999.99999999 - -0.161200258755750 -0.000646454386855410 1099999.99999999 - -0.161211496104759 -0.000214613738585347 1099999.99999999 - -0.161092955347347 -0.000175053600823800 1099999.99999999 - -0.160901617443880 6.09290391810318e-05 1099999.99999999 - -0.160871553912738 0.000196487847856288 1099999.99999999 - -0.160421589595845 0.000271726975574425 1099999.99999999 - -0.159950732554672 0.000583105156907733 1099999.99999999 - -0.159284093171266 0.000745169574277555 1099999.99999999 - -0.158259198053975 0.00122247595542727 1099999.99999999 - -0.157066081184339 0.00140389951944136 1099999.99999999 - -0.155377563836325 0.00191723607691107 1099999.99999999 - -0.153578614959938 0.00190524118508729 1099999.99999999 - -0.151430850839943 0.00218177835717060 1099999.99999999 - -0.149418368423077 0.00180756610338648 1099999.99999999 - -0.147503282479229 0.00168803442742214 1099999.99999999 - -0.146116933702088 0.000910910135948895 1099999.99999999 - -0.145334338069859 0.000481648378068835 1099999.99999999 - -0.145334338069835 -0.000481648378070302 1099999.99999999 - -0.146116933702106 -0.000910910135947409 1099999.99999999 - -0.147503282479201 -0.00168803442742886 1099999.99999999 - -0.149418368423082 -0.00180756610339138 1099999.99999999 - -0.151430850839912 -0.00218177835716364 1099999.99999999 - -0.153578614959958 -0.00190524118508459 1099999.99999999 - -0.155377563836302 -0.00191723607690634 1099999.99999999 - -0.157066081184364 -0.00140389951943708 1099999.99999999 - -0.158259198053954 -0.00122247595542582 1099999.99999999 - -0.159284093171272 -0.000745169574287037 1099999.99999999 - -0.159950732554666 -0.000583105156899921 1099999.99999999 - -0.160421589595875 -0.000271726975571484 1099999.99999999 - -0.160871553912715 -0.000196487847860621 1099999.99999999 - -0.160901617443909 -6.09290391731002e-05 1099999.99999999 - -0.161092955347328 0.000175053600821261 1099999.99999999 - -0.161211496104770 0.000214613738588353 1099999.99999999 - -0.161200258755749 0.000646454386857718 1099999.99999999 - -0.161286581286715 0.00166603937705450 1099999.99999999 - -0.161144921699616 0.00432039560360068 1099999.99999999 - -0.161258123864636 0.0108517230124623 1099999.99999999 - -0.161362963993310 0.0269032695782686 1099999.99999999 - -0.161534593319172 0.0660661717824147 1099999.99999999 - -0.161447538865140 0.161447538865130 1099999.99999998 - -0.161114014775800 0.395148592924930 1099999.99999992 - -0.160885348579878 0.967921184966279 1099999.99999956 - -0.160567423044419 2.37107838057929 1099999.99999743 - -0.160058300392719 5.80869824475705 1099999.99998465 - -0.158971398569687 14.2296747848055 1099999.99990795 - -0.157297208151596 34.8581792072546 1099999.99944767 - -0.154334226173012 85.3898316483611 1099999.99668571 - -0.149197093006961 209.169563626256 1099999.98011276 - -0.140969128647777 512.358794347373 1099999.88067656 - -0.127817158527906 1254.91453055175 1099999.28417681 - -0.108004941695196 3073.05222262519 1099995.70742345 - -0.0795878529264512 7521.79455632051 1099974.28270239 - -0.0416539094093517 18389.4828139889 1099846.27422283 - 0.00341010138343689 44828.4832533254 1099086.16909194 - 0.0472310922537975 108456.757792309 1094640.18366273 - 0.0751283249921697 256943.803440492 1069569.95183743 - 0.0800894920083538 570452.921791802 940522.973679638 - 0.323033560174843 -570453.068534651 940522.884676017 - 0.251530963610422 -256943.844421398 1069569.94199252 - 0.139292731313076 -108456.706149029 1094640.18877953 - 0.00786448533930746 -44828.3954117150 1099086.17267474 - -0.112690211016548 -18389.3965182490 1099846.27566569 - -0.207846975235428 -7521.72505281549 1099974.28317765 - -0.275914882750733 -3073.00243637996 1099995.70756251 - -0.321764600796094 -1254.88168570015 1099999.28421424 - -0.351222065792906 -512.338188131433 1099999.88068611 - -0.369539971031823 -209.157020660499 1099999.98011509 - -0.380505544118783 -85.3825357817177 1099999.99668622 - -0.386902286413599 -34.8540178371022 1099999.99944775 - -0.390657205839905 -14.2274410317242 1099999.99990792 - -0.392722321693573 -5.80747678350358 1099999.99998460 - -0.393908349289192 -2.37050839249217 1099999.99999738 - -0.394497040750262 -0.967526328607127 1099999.99999950 - -0.394833891080298 -0.394833891080256 1099999.99999986 - -0.395148592924848 -0.161114014775834 1099999.99999992 - -0.395369013098824 -0.0658923618480843 1099999.99999993 - -0.395447510514119 -0.0270906644875319 1099999.99999993 - -0.395358102809238 -0.0111183470364268 1099999.99999993 - -0.395165625004269 -0.00452303512598345 1099999.99999993 - -0.395092252012631 -0.00179892812481619 1099999.99999993 - -0.395217055652484 -0.000615189447400093 1099999.99999993 - -0.395041471530021 -8.80809012913602e-05 1099999.99999993 - -0.395138845869354 3.36579419816506e-05 1099999.99999993 - -0.394911848272121 2.05831024753979e-05 1099999.99999993 - -0.394821303529815 0.000105090380291170 1099999.99999993 - -0.394866681154666 4.63413343727001e-05 1099999.99999993 - -0.394490274175566 0.000105389484771320 1099999.99999993 - -0.394392391246774 0.000137173105606050 1099999.99999993 - -0.393882358961353 0.000302180387338119 1099999.99999993 - -0.393455271845192 0.000451352597421858 1099999.99999993 - -0.392784246892432 0.000620204577932787 1099999.99999993 - -0.392030297138141 0.000778066115705132 1099999.99999993 - -0.391238914697174 0.000776711676569267 1099999.99999993 - -0.390376819469282 0.000811776052772840 1099999.99999993 - -0.389688624085728 0.000584086006814770 1099999.99999993 - -0.389101859116771 0.000473294021295754 1099999.99999993 - -0.388822758482057 9.00322106988559e-05 1099999.99999993 - -0.388822758482082 -9.00322107004046e-05 1099999.99999993 - -0.389101859116745 -0.000473294021303549 1099999.99999993 - -0.389688624085733 -0.000584086006822104 1099999.99999993 - -0.390376819469280 -0.000811776052773066 1099999.99999993 - -0.391238914697205 -0.000776711676558103 1099999.99999993 - -0.392030297138122 -0.000778066115698897 1099999.99999993 - -0.392784246892467 -0.000620204577928208 1099999.99999993 - -0.393455271845174 -0.000451352597422846 1099999.99999993 - -0.393882358961377 -0.000302180387349814 1099999.99999993 - -0.394392391246751 -0.000137173105592354 1099999.99999993 - -0.394490274175629 -0.000105389484759909 1099999.99999993 - -0.394866681154608 -4.63413343911806e-05 1099999.99999993 - -0.394821303529865 -0.000105090380286870 1099999.99999993 - -0.394911848272080 -2.05831024763323e-05 1099999.99999993 - -0.395138845869352 -3.36579419801061e-05 1099999.99999993 - -0.395041471530003 8.80809013010719e-05 1099999.99999993 - -0.395217055652473 0.000615189447407335 1099999.99999993 - -0.395092252012626 0.00179892812481963 1099999.99999993 - -0.395165625004250 0.00452303512599262 1099999.99999993 - -0.395358102809216 0.0111183470364201 1099999.99999993 - -0.395447510514138 0.0270906644875192 1099999.99999993 - -0.395369013098803 0.0658923618481218 1099999.99999993 - -0.395148592924912 0.161114014775784 1099999.99999992 - -0.394833891080300 0.394833891080256 1099999.99999986 - -0.394497040750237 0.967526328607202 1099999.99999950 - -0.393908349289268 2.37050839249204 1099999.99999738 - -0.392722321693651 5.80747678350344 1099999.99998460 - -0.390657205839793 14.2274410317237 1099999.99990792 - -0.386902286413472 34.8540178371029 1099999.99944775 - -0.380505544118954 85.3825357817190 1099999.99668622 - -0.369539971032116 209.157020660498 1099999.98011509 - -0.351222065791774 512.338188131434 1099999.88068611 - -0.321764600794713 1254.88168570015 1099999.28421424 - -0.275914882751372 3073.00243637996 1099995.70756251 - -0.207846975238717 7521.72505281550 1099974.28317765 - -0.112690211021950 18389.3965182490 1099846.27566569 - 0.00786448533476340 44828.3954117151 1099086.17267474 - 0.139292731344091 108456.706149029 1094640.18877953 - 0.251530963666825 256943.844421398 1069569.94199252 - 0.323033560152626 570453.068534651 940522.884676017 - 1.05395432610043 -570453.261672129 940522.767532248 - 0.739444714815015 -256943.799398595 1069569.95280817 - 0.368431315395298 -108456.486920500 1094640.21050057 - -0.00166972113321339 -44828.1325273356 1099086.18339697 - -0.312621098063467 -18389.1663407084 1099846.27951419 - -0.544592808287985 -7521.55283468679 1099974.28435517 - -0.704616306175881 -3072.88515921936 1099995.70788995 - -0.808902370271371 -1254.80645155924 1099999.28429982 - -0.874407757461017 -512.292212022459 1099999.88070723 - -0.914221273257108 -209.130178285146 1099999.98011988 - -0.937812461943248 -85.3672395420298 1099999.99668707 - -0.951374584789009 -34.8456185818569 1099999.99944767 - -0.958973161628439 -14.2229400288326 1099999.99990763 - -0.963278156159670 -5.80509655166466 1099999.99998426 - -0.965606898244580 -2.36915510390476 1099999.99999702 - -0.966888883141851 -0.966888883141795 1099999.99999915 - -0.967526328607102 -0.394497040750321 1099999.99999950 - -0.967921184966318 -0.160885348579829 1099999.99999956 - -0.968223412255886 -0.0655751282055822 1099999.99999957 - -0.968343670447925 -0.0268309419164254 1099999.99999957 - -0.968483634633415 -0.0111325995560910 1099999.99999957 - -0.968389730320288 -0.00463938768329437 1099999.99999957 - -0.968113450374687 -0.00200162977308191 1099999.99999957 - -0.968163185898996 -0.000852537850852456 1099999.99999957 - -0.968145393398616 -0.000193648902657836 1099999.99999957 - -0.968045907606825 2.16014587604889e-05 1099999.99999957 - -0.968192442170368 9.33188508401859e-05 1099999.99999957 - -0.967874964525417 0.000143651580543031 1099999.99999957 - -0.967960656702731 8.49942071887009e-05 1099999.99999957 - -0.967843279865186 0.000112652589719999 1099999.99999957 - -0.967677433927176 3.78999994348982e-05 1099999.99999957 - -0.967653214279388 8.58096919745706e-05 1099999.99999957 - -0.967321977333162 0.000103302939043265 1099999.99999957 - -0.967238713385080 0.000133450817850341 1099999.99999957 - -0.966836135726523 0.000239561441612999 1099999.99999958 - -0.966647464586296 0.000191542115447205 1099999.99999958 - -0.966268698635795 0.000303025627239627 1099999.99999958 - -0.966057337483436 0.000146288235051607 1099999.99999958 - -0.965821296615094 0.000216438837249763 1099999.99999958 - -0.965727672518258 -1.95867547857226e-05 1099999.99999958 - -0.965727672518246 1.95867547832208e-05 1099999.99999958 - -0.965821296615093 -0.000216438837259820 1099999.99999958 - -0.966057337483475 -0.000146288235034987 1099999.99999958 - -0.966268698635860 -0.000303025627217602 1099999.99999958 - -0.966647464586366 -0.000191542115455652 1099999.99999958 - -0.966836135726566 -0.000239561441611310 1099999.99999958 - -0.967238713385113 -0.000133450817854931 1099999.99999957 - -0.967321977333187 -0.000103302939058129 1099999.99999957 - -0.967653214279412 -8.58096919643955e-05 1099999.99999957 - -0.967677433927267 -3.78999994068279e-05 1099999.99999957 - -0.967843279865148 -0.000112652589759258 1099999.99999957 - -0.967960656702751 -8.49942071845951e-05 1099999.99999957 - -0.967874964525407 -0.000143651580536558 1099999.99999957 - -0.968192442170346 -9.33188508736827e-05 1099999.99999957 - -0.968045907606823 -2.16014587474722e-05 1099999.99999957 - -0.968145393398567 0.000193648902641789 1099999.99999957 - -0.968163185898974 0.000852537850865636 1099999.99999957 - -0.968113450374595 0.00200162977310347 1099999.99999957 - -0.968389730320247 0.00463938768327104 1099999.99999957 - -0.968483634633308 0.0111325995561151 1099999.99999957 - -0.968343670447893 0.0268309419164485 1099999.99999957 - -0.968223412255797 0.0655751282055791 1099999.99999957 - -0.967921184966266 0.160885348579863 1099999.99999956 - -0.967526328607105 0.394497040750265 1099999.99999950 - -0.966888883141814 0.966888883141799 1099999.99999915 - -0.965606898244610 2.36915510390490 1099999.99999702 - -0.963278156159690 5.80509655166429 1099999.99998426 - -0.958973161628597 14.2229400288325 1099999.99990763 - -0.951374584789082 34.8456185818566 1099999.99944767 - -0.937812461943292 85.3672395420305 1099999.99668707 - -0.914221273255780 209.130178285149 1099999.98011988 - -0.874407757460482 512.292212022457 1099999.88070723 - -0.808902370273889 1254.80645155923 1099999.28429982 - -0.704616306174323 3072.88515921936 1099995.70788995 - -0.544592808287393 7521.55283468683 1099974.28435517 - -0.312621098063905 18389.1663407084 1099846.27951419 - -0.00166972110293736 44828.1325273356 1099086.18339697 - 0.368431315435344 108456.486920500 1094640.21050057 - 0.739444714828463 256943.799398595 1069569.95280817 - 1.05395432606442 570453.261672129 940522.767532248 - 3.06389144004457 -570453.289974148 940522.750361884 - 1.99259428274522 -256943.328624854 1069570.06590088 - 0.887526174340739 -108455.739279648 1094640.28457595 - -0.100962191432218 -44827.3949016043 1099086.21348206 - -0.876726831780277 -18388.5772014527 1099846.28936399 - -1.42933924628913 -7521.13627868206 1099974.28720268 - -1.79715843077739 -3072.61329680702 1099995.70864813 - -2.03087347421085 -1254.63889224515 1099999.28448937 - -2.17409120346196 -512.193078943016 1099999.88075160 - -2.25952719697605 -209.073321762120 1099999.98012875 - -2.30937120737084 -85.3356732359935 1099999.99668750 - -2.33777778517581 -34.8283612745803 1099999.99944615 - -2.35354013136594 -14.2137440075176 1099999.99990565 - -2.36220105071627 -5.80047436712933 1099999.99998217 - -2.36679755612312 -2.36679755612314 1099999.99999491 - -2.36915510390482 -0.965606898244674 1099999.99999702 - -2.37050839249199 -0.393908349289205 1099999.99999738 - -2.37107838057941 -0.160567423044396 1099999.99999743 - -2.37154361694863 -0.0654753349170809 1099999.99999744 - -2.37175795167703 -0.0265918327279129 1099999.99999744 - -2.37185658749993 -0.0109783507254913 1099999.99999744 - -2.37213839199560 -0.00458201200884412 1099999.99999744 - -2.37193699636978 -0.00188271894747286 1099999.99999744 - -2.37178792120742 -0.000981568732540447 1099999.99999744 - -2.37179791312340 -0.000390496382156630 1099999.99999744 - -2.37165542880380 -6.15662749643140e-05 1099999.99999744 - -2.37171963902898 3.49931949485039e-06 1099999.99999744 - -2.37173271679836 9.76962349545388e-05 1099999.99999744 - -2.37158400528519 5.33369060016318e-05 1099999.99999744 - -2.37168731931400 7.41704834794507e-05 1099999.99999744 - -2.37153302656277 7.14069106991357e-05 1099999.99999744 - -2.37153538241647 4.26863415388883e-05 1099999.99999744 - -2.37144663541322 0.000132099948555721 1099999.99999744 - -2.37132182354872 7.89307882869063e-05 1099999.99999744 - -2.37126795402719 0.000171426863776180 1099999.99999744 - -2.37108226676497 0.000140827243182743 1099999.99999744 - -2.37103083224864 0.000163357122702958 1099999.99999744 - -2.37087009712488 0.000146632132592525 1099999.99999744 - -2.37083090047577 8.05757678728298e-05 1099999.99999744 - -2.37076721113946 5.75253652287019e-05 1099999.99999745 - -2.37076721113940 -5.75253652276945e-05 1099999.99999745 - -2.37083090047588 -8.05757678300350e-05 1099999.99999744 - -2.37087009712489 -0.000146632132544295 1099999.99999744 - -2.37103083224874 -0.000163357122690603 1099999.99999744 - -2.37108226676497 -0.000140827243202237 1099999.99999744 - -2.37126795402730 -0.000171426863792348 1099999.99999744 - -2.37132182354875 -7.89307883074786e-05 1099999.99999744 - -2.37144663541325 -0.000132099948563971 1099999.99999744 - -2.37153538241650 -4.26863414924453e-05 1099999.99999744 - -2.37153302656277 -7.14069107684744e-05 1099999.99999744 - -2.37168731931391 -7.41704834961513e-05 1099999.99999744 - -2.37158400528532 -5.33369059644905e-05 1099999.99999744 - -2.37173271679826 -9.76962349980193e-05 1099999.99999744 - -2.37171963902900 -3.49931948651123e-06 1099999.99999744 - -2.37165542880383 6.15662749188834e-05 1099999.99999744 - -2.37179791312335 0.000390496382157228 1099999.99999744 - -2.37178792120742 0.000981568732491265 1099999.99999744 - -2.37193699636962 0.00188271894746823 1099999.99999744 - -2.37213839199555 0.00458201200886339 1099999.99999744 - -2.37185658749988 0.0109783507254804 1099999.99999744 - -2.37175795167684 0.0265918327279235 1099999.99999744 - -2.37154361694862 0.0654753349170752 1099999.99999744 - -2.37107838057909 0.160567423044437 1099999.99999743 - -2.37050839249193 0.393908349289233 1099999.99999738 - -2.36915510390471 0.965606898244702 1099999.99999702 - -2.36679755612301 2.36679755612310 1099999.99999491 - -2.36220105071639 5.80047436712941 1099999.99998217 - -2.35354013136606 14.2137440075171 1099999.99990565 - -2.33777778517591 34.8283612745808 1099999.99944615 - -2.30937120737079 85.3356732359937 1099999.99668750 - -2.25952719697634 209.073321762118 1099999.98012875 - -2.17409120345960 512.193078943019 1099999.88075160 - -2.03087347420940 1254.63889224514 1099999.28448937 - -1.79715843077982 3072.61329680703 1099995.70864813 - -1.42933924628812 7521.13627868206 1099974.28720268 - -0.876726831778750 18388.5772014527 1099846.28936399 - -0.100962191420400 44827.3949016043 1099086.21348206 - 0.887526174367566 108455.739279648 1094640.28457595 - 1.99259428272221 256943.328624854 1069570.06590088 - 3.06389144011085 570453.289974148 940522.750361884 - 8.21517890263679 -570452.253234026 940523.379142025 - 5.00060429566189 -256941.339668686 1069570.54369698 - 1.94305220788066 -108453.470039913 1094640.50940595 - -0.586197366099970 -44825.4277947897 1099086.29371068 - -2.46220095016689 -18387.1187903352 1099846.31374412 - -3.74560421941236 -7520.15693892837 1099974.29389308 - -4.57511194804873 -3071.99907740516 1099995.71035561 - -5.08929982880562 -1254.27247274723 1099999.28489734 - -5.39849936753891 -511.982661665745 1099999.88083845 - -5.57967413250165 -208.955948864416 1099999.98013922 - -5.68342749936231 -85.2717632722982 1099999.99668019 - -5.74185532163144 -34.7943700604055 1099999.99943472 - -5.77385355598595 -14.1958527541373 1099999.99989325 - -5.79117591135845 -5.79117591135855 1099999.99996951 - -5.80047436712950 -2.36220105071627 1099999.99998217 - -5.80509655166435 -0.963278156159682 1099999.99998426 - -5.80747678350362 -0.392722321693554 1099999.99998460 - -5.80869824475714 -0.160058300392769 1099999.99998465 - -5.80923638053567 -0.0651999180083074 1099999.99998466 - -5.80969534709890 -0.0266118101721874 1099999.99998466 - -5.80974838515747 -0.0107286593233397 1099999.99998466 - -5.81000992738325 -0.00457812601743526 1099999.99998466 - -5.81021572334923 -0.00183182462650270 1099999.99998466 - -5.81009973933190 -0.000792763814875826 1099999.99998466 - -5.81011151292533 -0.000479365133335243 1099999.99998466 - -5.81001942388190 -0.000115252907033382 1099999.99998466 - -5.80989733492251 -6.71612693889593e-05 1099999.99998466 - -5.80995863394712 5.11766993939068e-05 1099999.99998466 - -5.80986672873398 5.70238190332875e-05 1099999.99998466 - -5.80985110617647 -2.56780461888125e-05 1099999.99998466 - -5.80988125200404 3.31471249167015e-05 1099999.99998466 - -5.80980133989413 -7.16130754553769e-05 1099999.99998466 - -5.80986044782630 2.03820432033040e-05 1099999.99998466 - -5.80977373419115 -3.65808290753228e-06 1099999.99998466 - -5.80979331428784 5.65122414693212e-05 1099999.99998466 - -5.80972073598882 9.94222624012168e-05 1099999.99998466 - -5.80969770173798 9.60524020422069e-05 1099999.99998466 - -5.80964500108615 0.000135772460213300 1099999.99998466 - -5.80961624994775 5.98488096414339e-05 1099999.99998466 - -5.80959562526236 5.94770920932067e-05 1099999.99998466 - -5.80959562526257 -5.94770920416953e-05 1099999.99998466 - -5.80961624994765 -5.98488095677458e-05 1099999.99998466 - -5.80964500108627 -0.000135772460204951 1099999.99998466 - -5.80969770173783 -9.60524020765514e-05 1099999.99998466 - -5.80972073598881 -9.94222623807932e-05 1099999.99998466 - -5.80979331428777 -5.65122414798051e-05 1099999.99998466 - -5.80977373419109 3.65808286290570e-06 1099999.99998466 - -5.80986044782628 -2.03820431841562e-05 1099999.99998466 - -5.80980133989408 7.16130753564687e-05 1099999.99998466 - -5.80988125200385 -3.31471249425322e-05 1099999.99998466 - -5.80985110617661 2.56780462917616e-05 1099999.99998466 - -5.80986672873392 -5.70238190873070e-05 1099999.99998466 - -5.80995863394706 -5.11766994681957e-05 1099999.99998466 - -5.80989733492264 6.71612694524099e-05 1099999.99998466 - -5.81001942388168 0.000115252906991678 1099999.99998466 - -5.81011151292560 0.000479365133314282 1099999.99998466 - -5.81009973933162 0.000792763814839697 1099999.99998466 - -5.81021572334952 0.00183182462635897 1099999.99998466 - -5.81000992738301 0.00457812601751482 1099999.99998466 - -5.80974838515750 0.0107286593232772 1099999.99998466 - -5.80969534709873 0.0266118101721944 1099999.99998466 - -5.80923638053562 0.0651999180082493 1099999.99998466 - -5.80869824475700 0.160058300392724 1099999.99998465 - -5.80747678350332 0.392722321693666 1099999.99998460 - -5.80509655166426 0.963278156159743 1099999.99998426 - -5.80047436712922 2.36220105071656 1099999.99998217 - -5.79117591135835 5.79117591135836 1099999.99996951 - -5.77385355598614 14.1958527541371 1099999.99989325 - -5.74185532163144 34.7943700604053 1099999.99943472 - -5.68342749936130 85.2717632722992 1099999.99668019 - -5.57967413250148 208.955948864416 1099999.98013922 - -5.39849936753975 511.982661665742 1099999.88083845 - -5.08929982880412 1254.27247274723 1099999.28489734 - -4.57511194805029 3071.99907740516 1099995.71035561 - -3.74560421940134 7520.15693892840 1099974.29389308 - -2.46220095016272 18387.1187903351 1099846.31374412 - -0.586197366091348 44825.4277947897 1099086.29371068 - 1.94305220787334 108453.470039913 1094640.50940595 - 5.00060429569581 256941.339668686 1069570.54369698 - 8.21517890264572 570452.253234026 940523.379142025 - 20.6056915515398 -570447.148291995 940526.475215310 - 11.7369821987627 -256934.674683846 1069572.14474169 - 3.75034838087158 -108447.095638244 1094641.14093778 - -2.46900180395141 -44820.4068029956 1099086.49847404 - -6.87230859107789 -18383.6233389771 1099846.37215645 - -9.78285835066643 -7517.91771627140 1099974.30916249 - -11.6150884671098 -3070.64645079339 1099995.71408050 - -12.7283641787935 -1253.49002743012 1099999.28572738 - -13.3858729044005 -511.545097613500 1099999.88097383 - -13.7650365509866 -208.717832177268 1099999.98011245 - -13.9791432801727 -85.1448592712736 1099999.99661588 - -14.0976028987886 -34.7280920484576 1099999.99936146 - -14.1618228502828 -14.1618228502828 1099999.99981768 - -14.1958527541375 -5.77385355598578 1099999.99989325 - -14.2137440075174 -2.35354013136609 1099999.99990565 - -14.2229400288324 -0.958973161628550 1099999.99990763 - -14.2274410317244 -0.390657205839775 1099999.99990792 - -14.2296747848052 -0.158971398569668 1099999.99990795 - -14.2307602622959 -0.0646958003350680 1099999.99990795 - -14.2312948943166 -0.0263958338401035 1099999.99990794 - -14.2316463206305 -0.0107312274260419 1099999.99990794 - -14.2316205191116 -0.00438947778364562 1099999.99990794 - -14.2319851255422 -0.00188523543721441 1099999.99990793 - -14.2319941912944 -0.000646901883745735 1099999.99990793 - -14.2320736107275 -0.000390002572205313 1099999.99990793 - -14.2321018129215 -0.000134429931332276 1099999.99990793 - -14.2320340348438 -6.36304715244966e-05 1099999.99990793 - -14.2319978586630 5.42916274581588e-06 1099999.99990793 - -14.2319615104193 4.07292448504884e-05 1099999.99990793 - -14.2319135884730 6.93519524182748e-05 1099999.99990793 - -14.2318461153851 -1.19785937277766e-05 1099999.99990793 - -14.2318710923341 4.95912561196348e-05 1099999.99990793 - -14.2317667441394 -7.99819252869356e-05 1099999.99990793 - -14.2318462720123 4.94663913596247e-05 1099999.99990793 - -14.2317363502088 -6.10360237949530e-05 1099999.99990794 - -14.2318144001583 9.55322409107786e-05 1099999.99990793 - -14.2317233329542 1.67588395392425e-05 1099999.99990794 - -14.2317672342100 0.000121121077046241 1099999.99990793 - -14.2317139356500 2.97549669446415e-05 1099999.99990794 - -14.2317258401680 5.91031428000508e-05 1099999.99990794 - -14.2317258401678 -5.91031427080536e-05 1099999.99990794 - -14.2317139356502 -2.97549669757861e-05 1099999.99990794 - -14.2317672342099 -0.000121121077107612 1099999.99990793 - -14.2317233329542 -1.67588395611030e-05 1099999.99990794 - -14.2318144001583 -9.55322408967622e-05 1099999.99990793 - -14.2317363502085 6.10360237474404e-05 1099999.99990794 - -14.2318462720122 -4.94663913249623e-05 1099999.99990793 - -14.2317667441393 7.99819252894517e-05 1099999.99990793 - -14.2318710923342 -4.95912562115169e-05 1099999.99990793 - -14.2318461153852 1.19785938658695e-05 1099999.99990793 - -14.2319135884733 -6.93519523674469e-05 1099999.99990793 - -14.2319615104188 -4.07292451025501e-05 1099999.99990793 - -14.2319978586635 -5.42916260206659e-06 1099999.99990793 - -14.2320340348435 6.36304713966406e-05 1099999.99990793 - -14.2321018129219 0.000134429931395317 1099999.99990793 - -14.2320736107272 0.000390002572166976 1099999.99990793 - -14.2319941912947 0.000646901883728736 1099999.99990793 - -14.2319851255423 0.00188523543728554 1099999.99990793 - -14.2316205191118 0.00438947778330687 1099999.99990794 - -14.2316463206302 0.0107312274261129 1099999.99990794 - -14.2312948943170 0.0263958338400621 1099999.99990794 - -14.2307602622954 0.0646958003351302 1099999.99990795 - -14.2296747848059 0.158971398569543 1099999.99990795 - -14.2274410317242 0.390657205839816 1099999.99990792 - -14.2229400288325 0.958973161628590 1099999.99990763 - -14.2137440075174 2.35354013136612 1099999.99990565 - -14.1958527541368 5.77385355598627 1099999.99989325 - -14.1618228502825 14.1618228502825 1099999.99981768 - -14.0976028987888 34.7280920484569 1099999.99936146 - -13.9791432801728 85.1448592712733 1099999.99661588 - -13.7650365509844 208.717832177269 1099999.98011245 - -13.3858729044010 511.545097613502 1099999.88097383 - -12.7283641787935 1253.49002743012 1099999.28572738 - -11.6150884671064 3070.64645079339 1099995.71408050 - -9.78285835067805 7517.91771627140 1099974.30916249 - -6.87230859106065 18383.6233389771 1099846.37215645 - -2.46900180398751 44820.4068029956 1099086.49847404 - 3.75034838084977 108447.095638244 1094641.14093778 - 11.7369821987812 256934.674683846 1069572.14474169 - 20.6056915515064 570447.148291995 940526.475215310 - 48.5427622714946 -570429.142008348 940537.395105171 - 25.6263539170856 -256914.861769172 1069576.90380141 - 5.78727848994338 -108430.226539643 1094642.81203462 - -8.94282210549860 -44808.0974825735 1099087.00034166 - -18.9788602294350 -18375.5133932775 1099846.50753973 - -25.4243065483782 -7512.93953589722 1099974.34292493 - -29.3946910864932 -3067.74324323106 1099995.72184956 - -31.7647494770653 -1251.86050718073 1099999.28719807 - -33.1436197090496 -510.656968115536 1099999.88096861 - -33.9275244898544 -208.245001218437 1099999.97976497 - -34.3634960400404 -84.8978572144917 1099999.99618705 - -34.6011159682790 -34.6011159682788 1099999.99891160 - -34.7280920484573 -14.0976028987884 1099999.99936146 - -34.7943700604051 -5.74185532163173 1099999.99943472 - -34.8283612745800 -2.33777778517599 1099999.99944615 - -34.8456185818573 -0.951374584788842 1099999.99944767 - -34.8540178371018 -0.386902286413679 1099999.99944775 - -34.8581792072549 -0.157297208151519 1099999.99944767 - -34.8599792682645 -0.0637668152893468 1099999.99944763 - -34.8609979489004 -0.0259842575433949 1099999.99944760 - -34.8614472829064 -0.0105950328730872 1099999.99944758 - -34.8616846286493 -0.00428477802819814 1099999.99944757 - -34.8617715387669 -0.00185601895523003 1099999.99944757 - -34.8619568419171 -0.000720029752452053 1099999.99944757 - -34.8620082643819 -0.000209455384722841 1099999.99944756 - -34.8620408987808 -0.000120656715541749 1099999.99944756 - -34.8621154447647 3.84587232035983e-05 1099999.99944756 - -34.8620277632311 -5.96125036433143e-05 1099999.99944756 - -34.8620863095860 7.72898171244536e-05 1099999.99944756 - -34.8619871202943 -4.66180752725591e-05 1099999.99944756 - -34.8620090378787 7.63248297003903e-05 1099999.99944756 - -34.8619192905731 -5.18552744560961e-05 1099999.99944757 - -34.8619388107478 8.15941080990718e-05 1099999.99944757 - -34.8618512442705 -5.27419581606907e-05 1099999.99944757 - -34.8618837021390 0.000123998474152982 1099999.99944757 - -34.8618018224387 -9.00295710632866e-06 1099999.99944757 - -34.8618304395157 0.000187995549157788 1099999.99944757 - -34.8617675242505 1.77247961881949e-05 1099999.99944757 - -34.8617805177215 0.000173406774719844 1099999.99944757 - -34.8617558962102 -5.70648398225989e-05 1099999.99944757 - -34.8617558962107 5.70648398127426e-05 1099999.99944757 - -34.8617805177213 -0.000173406774813665 1099999.99944757 - -34.8617675242506 -1.77247962250074e-05 1099999.99944757 - -34.8618304395158 -0.000187995548993357 1099999.99944757 - -34.8618018224386 9.00295679918335e-06 1099999.99944757 - -34.8618837021392 -0.000123998474188401 1099999.99944757 - -34.8618512442705 5.27419583300749e-05 1099999.99944757 - -34.8619388107481 -8.15941079328872e-05 1099999.99944757 - -34.8619192905727 5.18552747429386e-05 1099999.99944757 - -34.8620090378796 -7.63248298181016e-05 1099999.99944756 - -34.8619871202936 4.66180747857625e-05 1099999.99944756 - -34.8620863095866 -7.72898168066751e-05 1099999.99944756 - -34.8620277632307 5.96125037260299e-05 1099999.99944756 - -34.8621154447652 -3.84587233752526e-05 1099999.99944756 - -34.8620408987810 0.000120656715572418 1099999.99944756 - -34.8620082643821 0.000209455384725919 1099999.99944756 - -34.8619568419177 0.000720029752529824 1099999.99944757 - -34.8617715387667 0.00185601895520355 1099999.99944757 - -34.8616846286495 0.00428477802802280 1099999.99944757 - -34.8614472829075 0.0105950328730547 1099999.99944758 - -34.8609979489003 0.0259842575433666 1099999.99944760 - -34.8599792682651 0.0637668152894484 1099999.99944763 - -34.8581792072552 0.157297208151755 1099999.99944767 - -34.8540178371031 0.386902286413252 1099999.99944775 - -34.8456185818570 0.951374584788904 1099999.99944767 - -34.8283612745807 2.33777778517568 1099999.99944615 - -34.7943700604054 5.74185532163143 1099999.99943472 - -34.7280920484567 14.0976028987892 1099999.99936146 - -34.6011159682789 34.6011159682788 1099999.99891160 - -34.3634960400409 84.8978572144901 1099999.99618705 - -33.9275244898550 208.245001218437 1099999.97976497 - -33.1436197090484 510.656968115537 1099999.88096861 - -31.7647494770657 1251.86050718073 1099999.28719807 - -29.3946910864927 3067.74324323107 1099995.72184956 - -25.4243065483810 7512.93953589722 1099974.34292493 - -18.9788602294181 18375.5133932775 1099846.50753973 - -8.94282210549002 44808.0974825736 1099087.00034166 - 5.78727848995652 108430.226539643 1094642.81203462 - 25.6263539170449 256914.861769172 1069576.90380141 - 48.5427622714852 570429.142008348 940537.395105171 - 107.002763239264 -570374.377066122 940570.602632700 - 51.1178374457310 -256860.542415963 1069589.94906307 - 4.10119021009956 -108387.805300713 1094647.01326285 - -29.5213944465832 -44779.0664053628 1099088.18315017 - -51.7376885649507 -18357.3071756004 1099846.81051339 - -65.6846653005737 -7502.19913700918 1099974.41456319 - -74.1286461294701 -3061.68166096842 1099995.73663281 - -79.0978230567982 -1248.55148146854 1099999.28857374 - -81.9504518485293 -508.896305511010 1099999.87923121 - -83.5503621762100 -207.327151460813 1099999.97728854 - -84.4275618185993 -84.4275618185985 1099999.99351999 - -84.8978572144906 -34.3634960400409 1099999.99618705 - -85.1448592712722 -13.9791432801733 1099999.99661588 - -85.2717632722982 -5.68342749936201 1099999.99668019 - -85.3356732359933 -2.30937120737057 1099999.99668750 - -85.3672395420308 -0.937812461943226 1099999.99668707 - -85.3825357817169 -0.380505544119002 1099999.99668622 - -85.3898316483615 -0.154334226173143 1099999.99668571 - -85.3932168395363 -0.0624470584347372 1099999.99668545 - -85.3946166376435 -0.0252048276684012 1099999.99668534 - -85.3954722825393 -0.0102925879693903 1099999.99668528 - -85.3957131703519 -0.00415783321758320 1099999.99668526 - -85.3959464521008 -0.00178136275152446 1099999.99668524 - -85.3960598183468 -0.000771279716898520 1099999.99668523 - -85.3961229518861 -0.000313717120841233 1099999.99668523 - -85.3962380399053 -7.93448150713000e-05 1099999.99668522 - -85.3961751234532 2.27712264074954e-05 1099999.99668522 - -85.3962867239470 7.73532340140015e-05 1099999.99668522 - -85.3961363255983 1.93220564296056e-05 1099999.99668523 - -85.3962242667272 5.58524877498766e-05 1099999.99668522 - -85.3960942411695 -4.95797735482100e-05 1099999.99668523 - -85.3961285919282 -3.88794848851408e-06 1099999.99668523 - -85.3960661916751 -7.46950502209773e-05 1099999.99668523 - -85.3960601023797 -7.23564564414146e-06 1099999.99668523 - -85.3960415519354 -2.53215179283327e-05 1099999.99668523 - -85.3960174100092 6.11713586424438e-05 1099999.99668524 - -85.3960093291296 6.12048016378112e-05 1099999.99668524 - -85.3959832382904 0.000112374330685182 1099999.99668524 - -85.3959757850376 6.21674734364103e-05 1099999.99668524 - -85.3959641338575 4.80885788355860e-05 1099999.99668524 - -85.3959641338576 -4.80885788170001e-05 1099999.99668524 - -85.3959757850377 -6.21674736381804e-05 1099999.99668524 - -85.3959832382910 -0.000112374330493971 1099999.99668524 - -85.3960093291288 -6.12048020648158e-05 1099999.99668524 - -85.3960174100089 -6.11713584719158e-05 1099999.99668524 - -85.3960415519357 2.53215179388258e-05 1099999.99668523 - -85.3960601023801 7.23564580606278e-06 1099999.99668523 - -85.3960661916746 7.46950500093238e-05 1099999.99668523 - -85.3961285919285 3.88794893659939e-06 1099999.99668523 - -85.3960942411676 4.95797734776639e-05 1099999.99668523 - -85.3962242667289 -5.58524879224767e-05 1099999.99668522 - -85.3961363255983 -1.93220560132619e-05 1099999.99668523 - -85.3962867239474 -7.73532341868745e-05 1099999.99668522 - -85.3961751234529 -2.27712259405065e-05 1099999.99668522 - -85.3962380399058 7.93448148397833e-05 1099999.99668522 - -85.3961229518866 0.000313717120961723 1099999.99668523 - -85.3960598183465 0.000771279716720361 1099999.99668523 - -85.3959464521007 0.00178136275116355 1099999.99668524 - -85.3957131703531 0.00415783321869931 1099999.99668526 - -85.3954722825394 0.0102925879692451 1099999.99668528 - -85.3946166376436 0.0252048276678146 1099999.99668534 - -85.3932168395383 0.0624470584350642 1099999.99668545 - -85.3898316483605 0.154334226173330 1099999.99668571 - -85.3825357817185 0.380505544118653 1099999.99668622 - -85.3672395420305 0.937812461943083 1099999.99668707 - -85.3356732359939 2.30937120737068 1099999.99668750 - -85.2717632722997 5.68342749936136 1099999.99668019 - -85.1448592712738 13.9791432801729 1099999.99661588 - -84.8978572144903 34.3634960400414 1099999.99618705 - -84.4275618185993 84.4275618185987 1099999.99351999 - -83.5503621762118 207.327151460812 1099999.97728854 - -81.9504518485275 508.896305511012 1099999.87923121 - -79.0978230567960 1248.55148146854 1099999.28857374 - -74.1286461294764 3061.68166096842 1099995.73663281 - -65.6846653005649 7502.19913700917 1099974.41456319 - -51.7376885649581 18357.3071756004 1099846.81051339 - -29.5213944465602 44779.0664053628 1099088.18315017 - 4.10119021007014 108387.805300713 1094647.01326285 - 51.1178374457170 256860.542415963 1069589.94906307 - 107.002763239268 570374.377066122 940570.602632701 - 217.741985564815 -570222.732312852 940662.526170833 - 88.9307143681655 -256720.860500675 1069623.48135927 - -17.3905824857668 -108286.045381449 1094657.08423835 - -91.3273197147540 -44713.2167355994 1099090.86062458 - -139.102642976008 -18317.8248410918 1099847.46121612 - -168.617238872915 -7479.74809503945 1099974.55649513 - -186.266829635256 -3049.39293889751 1099995.75749517 - -196.536593854354 -1242.01282575483 1099999.28126227 - -202.362238800962 -505.492490817103 1099999.86523948 - -205.586222273590 -205.586222273591 1099999.96157664 - -207.327151460814 -83.5503621762111 1099999.97728854 - -208.245001218435 -33.9275244898554 1099999.97976497 - -208.717832177268 -13.7650365509859 1099999.98011245 - -208.955948864415 -5.57967413250135 1099999.98013922 - -209.073321762122 -2.25952719697519 1099999.98012875 - -209.130178285144 -0.914221273257155 1099999.98011988 - -209.157020660501 -0.369539971032295 1099999.98011509 - -209.169563626251 -0.149197093006467 1099999.98011276 - -209.175339630845 -0.0603100769072501 1099999.98011167 - -209.177787864340 -0.0241963535926184 1099999.98011121 - -209.178900960748 -0.00976499570365682 1099999.98011099 - -209.179370149596 -0.00389573473076377 1099999.98011090 - -209.179536701426 -0.00154613481554433 1099999.98011087 - -209.179647604847 -0.000758085607641955 1099999.98011085 - -209.179713121416 -0.000302313364959735 1099999.98011084 - -209.179794777336 -0.000219144231846262 1099999.98011082 - -209.179831692139 -4.31451172320814e-05 1099999.98011082 - -209.179875630776 -1.76230724292698e-05 1099999.98011081 - -209.179877531795 4.22895946727185e-05 1099999.98011081 - -209.179857367630 4.24449062605540e-05 1099999.98011081 - -209.179825945518 1.76772746789589e-06 1099999.98011082 - -209.179798533312 -7.62013715033538e-07 1099999.98011082 - -209.179744752523 -6.03802541596352e-05 1099999.98011083 - -209.179750588262 -2.15608275838819e-05 1099999.98011083 - -209.179686502854 -5.99640192395846e-05 1099999.98011084 - -209.179713898758 4.54719128660811e-05 1099999.98011084 - -209.179651520061 4.57102336292490e-06 1099999.98011085 - -209.179673929982 0.000115962465361215 1099999.98011085 - -209.179633490945 1.17124494101634e-05 1099999.98011085 - -209.179640897627 7.71839282231057e-05 1099999.98011085 - -209.179640897624 -7.71839281555116e-05 1099999.98011085 - -209.179633490947 -1.17124488037514e-05 1099999.98011085 - -209.179673929981 -0.000115962466575364 1099999.98011085 - -209.179651520061 -4.57102421852435e-06 1099999.98011085 - -209.179713898757 -4.54719119428651e-05 1099999.98011084 - -209.179686502854 5.99640198936496e-05 1099999.98011084 - -209.179750588262 2.15608265588411e-05 1099999.98011083 - -209.179744752524 6.03802542308974e-05 1099999.98011083 - -209.179798533313 7.62012683342282e-07 1099999.98011082 - -209.179825945518 -1.76772576127520e-06 1099999.98011082 - -209.179857367629 -4.24449045733206e-05 1099999.98011081 - -209.179877531797 -4.22895960070834e-05 1099999.98011081 - -209.179875630776 1.76230726621583e-05 1099999.98011081 - -209.179831692138 4.31451174743813e-05 1099999.98011082 - -209.179794777336 0.000219144231837207 1099999.98011082 - -209.179713121416 0.000302313364257315 1099999.98011084 - -209.179647604845 0.000758085607518873 1099999.98011085 - -209.179536701427 0.00154613481665818 1099999.98011087 - -209.179370149595 0.00389573473084940 1099999.98011090 - -209.178900960746 0.00976499570285891 1099999.98011099 - -209.177787864342 0.0241963535944441 1099999.98011121 - -209.175339630846 0.0603100769066541 1099999.98011167 - -209.169563626253 0.149197093005984 1099999.98011276 - -209.157020660499 0.369539971032865 1099999.98011509 - -209.130178285149 0.914221273256489 1099999.98011988 - -209.073321762120 2.25952719697642 1099999.98012875 - -208.955948864416 5.57967413250119 1099999.98013922 - -208.717832177269 13.7650365509845 1099999.98011245 - -208.245001218437 33.9275244898544 1099999.97976497 - -207.327151460813 83.5503621762119 1099999.97728854 - -205.586222273591 205.586222273590 1099999.96157664 - -202.362238800966 505.492490817098 1099999.86523948 - -196.536593854349 1242.01282575483 1099999.28126227 - -186.266829635253 3049.39293889751 1099995.75749517 - -168.617238872920 7479.74809503945 1099974.55649513 - -139.102642976007 18317.8248410918 1099847.46121612 - -91.3273197147432 44713.2167355994 1099090.86062458 - -17.3905824857415 108286.045381449 1094657.08423835 - 88.9307143681916 256720.860500675 1069623.48135927 - 217.741985564764 570222.732312852 940662.526170833 - 395.921001599463 -569832.132164313 940899.136145651 - 116.345960734581 -256381.555507232 1069704.85857516 - -112.528684697003 -108053.081875462 1094680.09885743 - -269.018938909730 -44569.8404238174 1099096.65496416 - -368.887740803559 -18235.3275489743 1099848.77903783 - -430.070831721998 -7434.39528870540 1099974.79280471 - -466.388198580889 -3025.24967884862 1099995.74105831 - -487.334800894270 -1229.45962989244 1099999.20496963 - -499.082829673216 -499.082829673218 1099999.77356028 - -505.492490817101 -202.362238800962 1099999.86523948 - -508.896305511006 -81.9504518485299 1099999.87923121 - -510.656968115538 -33.1436197090506 1099999.88096861 - -511.545097613501 -13.3858729044004 1099999.88097383 - -511.982661665745 -5.39849936753627 1099999.88083845 - -512.193078943015 -2.17409120346162 1099999.88075160 - -512.292212022457 -0.874407757461422 1099999.88070723 - -512.338188131433 -0.351222065792327 1099999.88068611 - -512.358794347374 -0.140969128648692 1099999.88067656 - -512.368138182794 -0.0565493276290290 1099999.88067222 - -512.372178697862 -0.0227738060504201 1099999.88067033 - -512.373756896706 -0.00909212255303895 1099999.88066960 - -512.374585560718 -0.00368352600284051 1099999.88066921 - -512.374689132976 -0.00140611300649903 1099999.88066917 - -512.374840168639 -0.000534186621539853 1099999.88066909 - -512.374838416436 -0.000238313156352368 1099999.88066910 - -512.374800740061 -9.60724549394203e-05 1099999.88066911 - -512.374943594691 -0.000119359265678484 1099999.88066905 - -512.374842593703 -3.03340660782271e-05 1099999.88066909 - -512.375041340044 -7.19679270420608e-05 1099999.88066900 - -512.374920673214 -1.95957096229903e-05 1099999.88066906 - -512.375071924177 -4.17995434141696e-05 1099999.88066899 - -512.374967742978 -3.89234415408782e-05 1099999.88066904 - -512.375052976123 -4.90789938832342e-05 1099999.88066900 - -512.374983799950 -3.99362427099599e-05 1099999.88066903 - -512.375025310193 -2.98689027947742e-05 1099999.88066901 - -512.374979494196 2.08280269378739e-05 1099999.88066903 - -512.374994758462 3.67694492249899e-05 1099999.88066902 - -512.374962637533 7.96342270751961e-05 1099999.88066904 - -512.374965339527 4.67063368648846e-05 1099999.88066904 - -512.374952927455 3.78016673789686e-05 1099999.88066904 - -512.374952927457 -3.78016673631949e-05 1099999.88066904 - -512.374965339524 -4.67063358357963e-05 1099999.88066904 - -512.374962637534 -7.96342273343680e-05 1099999.88066904 - -512.374994758463 -3.67694490475710e-05 1099999.88066902 - -512.374979494199 -2.08280280851824e-05 1099999.88066903 - -512.375025310192 2.98689026079410e-05 1099999.88066901 - -512.374983799951 3.99362434027465e-05 1099999.88066903 - -512.375052976123 4.90789940424008e-05 1099999.88066900 - -512.374967742979 3.89234413802334e-05 1099999.88066904 - -512.375071924183 4.17995420792689e-05 1099999.88066899 - -512.374920673211 1.95957114906377e-05 1099999.88066906 - -512.375041340045 7.19679289225806e-05 1099999.88066900 - -512.374842593702 3.03340640364369e-05 1099999.88066909 - -512.374943594694 0.000119359263824382 1099999.88066905 - -512.374800740058 9.60724555018436e-05 1099999.88066911 - -512.374838416436 0.000238313155667129 1099999.88066910 - -512.374840168640 0.000534186622364309 1099999.88066909 - -512.374689132977 0.00140611300729010 1099999.88066917 - -512.374585560715 0.00368352600044336 1099999.88066921 - -512.373756896712 0.00909212255638100 1099999.88066960 - -512.372178697866 0.0227738060531426 1099999.88067033 - -512.368138182792 0.0565493276292304 1099999.88067222 - -512.358794347378 0.140969128646324 1099999.88067656 - -512.338188131434 0.351222065793316 1099999.88068611 - -512.292212022460 0.874407757461116 1099999.88070723 - -512.193078943017 2.17409120345878 1099999.88075160 - -511.982661665743 5.39849936753909 1099999.88083845 - -511.545097613499 13.3858729044001 1099999.88097383 - -510.656968115540 33.1436197090488 1099999.88096861 - -508.896305511009 81.9504518485289 1099999.87923121 - -505.492490817102 202.362238800965 1099999.86523948 - -499.082829673220 499.082829673218 1099999.77356028 - -487.334800894277 1229.45962989243 1099999.20496963 - -466.388198580885 3025.24967884863 1099995.74105831 - -430.070831721988 7434.39528870539 1099974.79280471 - -368.887740803541 18235.3275489743 1099848.77903783 - -269.018938909683 44569.8404238173 1099096.65496416 - -112.528684696998 108053.081875461 1094680.09885743 - 116.345960734552 256381.555507232 1069704.85857516 - 395.921001599491 569832.132164313 940899.136145651 - 588.657343514823 -568888.587560200 941469.823428395 - 22.9064743700189 -255602.001129300 1069891.40406585 - -443.838727320590 -107545.321553494 1094730.01549201 - -762.325386479127 -44271.2963916638 1099108.48926564 - -965.599590628943 -18069.8786288911 1099851.14770307 - -1090.15583623455 -7346.14932022947 1099974.92955540 - -1163.87503059401 -2979.39420810521 1099995.34935611 - -1206.07639274124 -1206.07639274125 1099998.67761715 - -1229.45962989244 -487.334800894272 1099999.20496963 - -1242.01282575483 -196.536593854354 1099999.28126227 - -1248.55148146854 -79.0978230567960 1099999.28857374 - -1251.86050718073 -31.7647494770626 1099999.28719807 - -1253.49002743012 -12.7283641787928 1099999.28572738 - -1254.27247274723 -5.08929982880588 1099999.28489734 - -1254.63889224514 -2.03087347421160 1099999.28448937 - -1254.80645155924 -0.808902370269970 1099999.28429982 - -1254.88168570015 -0.321764600793653 1099999.28421424 - -1254.91453055175 -0.127817158530699 1099999.28417681 - -1254.92881726553 -0.0507872284852007 1099999.28416052 - -1254.93485348147 -0.0202391909635739 1099999.28415364 - -1254.93731063001 -0.00818327419774118 1099999.28415083 - -1254.93837658933 -0.00333895264187187 1099999.28414962 - -1254.93868736676 -0.00141553000357413 1099999.28414926 - -1254.93890239436 -0.000543651611702934 1099999.28414902 - -1254.93875110628 -0.000234952156222824 1099999.28414919 - -1254.93890929919 -2.51126854630323e-05 1099999.28414901 - -1254.93866710465 -1.11786732804217e-05 1099999.28414929 - -1254.93885281020 4.97740348039707e-06 1099999.28414907 - -1254.93866223464 -2.12790507116348e-06 1099999.28414929 - -1254.93883182373 -4.61583947567718e-05 1099999.28414910 - -1254.93872658070 -4.24711319194528e-05 1099999.28414922 - -1254.93883349073 -9.72184739356707e-05 1099999.28414910 - -1254.93881751469 -6.49449485469655e-05 1099999.28414911 - -1254.93885714476 -0.000107187542087848 1099999.28414907 - -1254.93889635634 -2.98445452711595e-05 1099999.28414902 - -1254.93888757767 -5.25959624905134e-05 1099999.28414903 - -1254.93893351311 5.83024936220221e-05 1099999.28414898 - -1254.93890754579 4.97333537826418e-06 1099999.28414901 - -1254.93893443564 8.99198272811583e-05 1099999.28414898 - -1254.93892210727 -2.59139794971729e-05 1099999.28414900 - -1254.93892210727 2.59139795694312e-05 1099999.28414900 - -1254.93893443563 -8.99198283428344e-05 1099999.28414898 - -1254.93890754579 -4.97333145030813e-06 1099999.28414901 - -1254.93893351311 -5.83024913119774e-05 1099999.28414898 - -1254.93888757767 5.25959591708055e-05 1099999.28414903 - -1254.93889635634 2.98445438800198e-05 1099999.28414902 - -1254.93885714475 0.000107187542936170 1099999.28414907 - -1254.93881751469 6.49449481397240e-05 1099999.28414911 - -1254.93883349072 9.72184782422006e-05 1099999.28414910 - -1254.93872658069 4.24711278003016e-05 1099999.28414922 - -1254.93883182373 4.61583917513068e-05 1099999.28414910 - -1254.93866223462 2.12790714762230e-06 1099999.28414929 - -1254.93885281020 -4.97740350035963e-06 1099999.28414907 - -1254.93866710465 1.11786727171270e-05 1099999.28414929 - -1254.93890929920 2.51126830958260e-05 1099999.28414901 - -1254.93875110627 0.000234952158447403 1099999.28414919 - -1254.93890239436 0.000543651612515975 1099999.28414902 - -1254.93868736675 0.00141553000162026 1099999.28414926 - -1254.93837658934 0.00333895264666395 1099999.28414962 - -1254.93731063001 0.00818327420278739 1099999.28415083 - -1254.93485348146 0.0202391909571652 1099999.28415364 - -1254.92881726552 0.0507872284844404 1099999.28416052 - -1254.91453055176 0.127817158534101 1099999.28417681 - -1254.88168570015 0.321764600792705 1099999.28421424 - -1254.80645155923 0.808902370269960 1099999.28429982 - -1254.63889224515 2.03087347420846 1099999.28448937 - -1254.27247274723 5.08929982880382 1099999.28489734 - -1253.49002743012 12.7283641787964 1099999.28572738 - -1251.86050718072 31.7647494770652 1099999.28719807 - -1248.55148146854 79.0978230567966 1099999.28857374 - -1242.01282575483 196.536593854354 1099999.28126227 - -1229.45962989244 487.334800894272 1099999.20496963 - -1206.07639274124 1206.07639274124 1099998.67761715 - -1163.87503059402 2979.39420810519 1099995.34935611 - -1090.15583623454 7346.14932022947 1099974.92955540 - -965.599590628958 18069.8786288911 1099851.14770307 - -762.325386479125 44271.2963916639 1099108.48926564 - -443.838727320607 107545.321553494 1094730.01549201 - 22.9064743700444 255602.001129300 1069891.40406585 - 588.657343514882 568888.587560200 941469.823428395 - 471.546013533176 -566750.382164375 942758.602167539 - -574.895803710443 -253914.206521398 1070293.06510947 - -1469.98000518296 -106497.758089553 1094831.52433636 - -2093.33964182292 -43680.4641211038 1099130.39944463 - -2497.62248956473 -17753.1341047373 1099853.89398381 - -2747.52292922445 -7181.43718923534 1099973.12607066 - -2895.41805100655 -2895.41805100656 1099992.37865933 - -2979.39420810520 -1163.87503059401 1099995.34935611 - -3025.24967884862 -466.388198580889 1099995.74105831 - -3049.39293889751 -186.266829635258 1099995.75749517 - -3061.68166096842 -74.1286461294710 1099995.73663281 - -3067.74324323106 -29.3946910864878 1099995.72184956 - -3070.64645079339 -11.6150884671059 1099995.71408050 - -3071.99907740516 -4.57511194805648 1099995.71035561 - -3072.61329680703 -1.79715843077699 1099995.70864813 - -3072.88515921936 -0.704616306173000 1099995.70788995 - -3073.00243637996 -0.275914882753524 1099995.70756251 - -3073.05222262518 -0.108004941689038 1099995.70742345 - -3073.07257293243 -0.0423442638450795 1099995.70736661 - -3073.08094620383 -0.0165891457223376 1099995.70734321 - -3073.08443040946 -0.00658313040935892 1099995.70733348 - -3073.08553123421 -0.00269898399151680 1099995.70733041 - -3073.08629608077 -0.00119437171273607 1099995.70732827 - -3073.08623827542 -0.000596683596979518 1099995.70732843 - -3073.08650059260 -0.000283660896828886 1099995.70732770 - -3073.08630859503 -0.000172847108811925 1099995.70732823 - -3073.08641178899 -2.79547569777770e-05 1099995.70732794 - -3073.08627862943 -3.07992229595720e-05 1099995.70732832 - -3073.08630413420 4.43242362968019e-05 1099995.70732825 - -3073.08624011323 -2.01324361323416e-05 1099995.70732842 - -3073.08624078323 8.06150925701523e-06 1099995.70732842 - -3073.08623801592 -6.45634554743127e-05 1099995.70732843 - -3073.08623908586 -4.35127556528643e-05 1099995.70732843 - -3073.08628469485 -9.00091969020141e-05 1099995.70732830 - -3073.08628223999 -4.37188004106840e-05 1099995.70732831 - -3073.08633863067 -4.81561209223023e-05 1099995.70732815 - -3073.08632455820 1.52378525760885e-05 1099995.70732819 - -3073.08636523999 1.39168523325566e-05 1099995.70732807 - -3073.08635312251 4.21226697790621e-05 1099995.70732811 - -3073.08636863015 3.53868607070960e-06 1099995.70732807 - -3073.08636863015 -3.53868419235839e-06 1099995.70732807 - -3073.08635312251 -4.21226751993949e-05 1099995.70732811 - -3073.08636523998 -1.39168561195888e-05 1099995.70732807 - -3073.08632455819 -1.52378488023147e-05 1099995.70732819 - -3073.08633863067 4.81561272586474e-05 1099995.70732815 - -3073.08628223999 4.37187959239136e-05 1099995.70732831 - -3073.08628469485 9.00091954498634e-05 1099995.70732830 - -3073.08623908586 4.35127561290343e-05 1099995.70732843 - -3073.08623801591 6.45634499658555e-05 1099995.70732843 - -3073.08624078322 -8.06150342406403e-06 1099995.70732842 - -3073.08624011321 2.01324297447859e-05 1099995.70732842 - -3073.08630413421 -4.43242388436638e-05 1099995.70732825 - -3073.08627862942 3.07992350096914e-05 1099995.70732832 - -3073.08641178898 2.79547594090096e-05 1099995.70732794 - -3073.08630859502 0.000172847102638682 1099995.70732823 - -3073.08650059259 0.000283660894725263 1099995.70732770 - -3073.08623827541 0.000596683599331778 1099995.70732843 - -3073.08629608077 0.00119437171938973 1099995.70732827 - -3073.08553123421 0.00269898399405669 1099995.70733041 - -3073.08443040946 0.00658313040009123 1099995.70733348 - -3073.08094620381 0.0165891457191332 1099995.70734321 - -3073.07257293245 0.0423442638496077 1099995.70736661 - -3073.05222262518 0.108004941697965 1099995.70742345 - -3073.00243637995 0.275914882745641 1099995.70756251 - -3072.88515921936 0.704616306171996 1099995.70788995 - -3072.61329680702 1.79715843078329 1099995.70864813 - -3071.99907740517 4.57511194805397 1099995.71035561 - -3070.64645079339 11.6150884671074 1099995.71408050 - -3067.74324323107 29.3946910864927 1099995.72184956 - -3061.68166096841 74.1286461294714 1099995.73663281 - -3049.39293889751 186.266829635255 1099995.75749517 - -3025.24967884861 466.388198580888 1099995.74105831 - -2979.39420810520 1163.87503059401 1099995.34935611 - -2895.41805100654 2895.41805100655 1099992.37865933 - -2747.52292922446 7181.43718923533 1099973.12607066 - -2497.62248956473 17753.1341047372 1099853.89398381 - -2093.33964182298 43680.4641211038 1099130.39944463 - -1469.98000518293 106497.758089553 1094831.52433636 - -574.895803710379 253914.206521399 1070293.06510947 - 471.546013533140 566750.382164375 942758.602167539 - -1126.59101024916 -562234.669096170 945458.041194328 - -2825.13615953082 -250503.081515335 1071093.00471854 - -4424.17130346562 -104473.437198664 1095018.59693257 - -5601.54225063802 -42579.9203490207 1099161.30440781 - -6391.96817318858 -17178.6942981202 1099847.27812778 - -6887.99975762096 -6887.99975762098 1099956.86775377 - -7181.43718923534 -2747.52292922445 1099973.12607066 - -7346.14932022947 -1090.15583623455 1099974.92955540 - -7434.39528870539 -430.070831722001 1099974.79280471 - -7479.74809503944 -168.617238872915 1099974.55649513 - -7502.19913700918 -65.6846653005675 1099974.41456319 - -7512.93953589722 -25.4243065483797 1099974.34292493 - -7517.91771627139 -9.78285835067389 1099974.30916249 - -7520.15693892838 -3.74560421940000 1099974.29389308 - -7521.13627868205 -1.42933924628811 1099974.28720268 - -7521.55283468681 -0.544592808294491 1099974.28435517 - -7521.72505281549 -0.207846975237442 1099974.28317765 - -7521.79455632052 -0.0795878529247381 1099974.28270239 - -7521.82149127678 -0.0306614335916187 1099974.28251821 - -7521.83191686263 -0.0119648702516790 1099974.28244692 - -7521.83562478699 -0.00460354709647526 1099974.28242156 - -7521.83713691646 -0.00190563025888923 1099974.28241122 - -7521.83759116734 -0.000750392065222572 1099974.28240812 - -7521.83782178503 -0.000417341702727320 1099974.28240654 - -7521.83794400273 -0.000231560336824167 1099974.28240570 - -7521.83792818668 -0.000184923713616437 1099974.28240581 - -7521.83806878889 -0.000117519845859367 1099974.28240485 - -7521.83797664408 -7.45412599325334e-05 1099974.28240548 - -7521.83809688116 -5.91364702442851e-05 1099974.28240466 - -7521.83800469092 -1.23058637886087e-05 1099974.28240529 - -7521.83806184931 -4.06976330628431e-05 1099974.28240490 - -7521.83802075618 -6.51318165543351e-06 1099974.28240518 - -7521.83804017656 -4.67669971031760e-05 1099974.28240505 - -7521.83805896200 -1.48869958595523e-05 1099974.28240492 - -7521.83805699803 -4.12784201320708e-05 1099974.28240493 - -7521.83809132215 6.14212128086484e-06 1099974.28240470 - -7521.83807277773 2.11787291538253e-06 1099974.28240482 - -7521.83809766501 4.22513237066149e-05 1099974.28240465 - -7521.83808581419 2.17569714931158e-05 1099974.28240473 - -7521.83809696304 2.29160335265243e-05 1099974.28240466 - -7521.83809696304 -2.29160324801595e-05 1099974.28240466 - -7521.83808581419 -2.17569773990289e-05 1099974.28240473 - -7521.83809766501 -4.22513322952147e-05 1099974.28240465 - -7521.83807277774 -2.11787121894216e-06 1099974.28240482 - -7521.83809132215 -6.14211896821709e-06 1099974.28240470 - -7521.83805699804 4.12784283722120e-05 1099974.28240493 - -7521.83805896200 1.48869982323538e-05 1099974.28240492 - -7521.83804017655 4.67669866844911e-05 1099974.28240505 - -7521.83802075618 6.51317518133492e-06 1099974.28240518 - -7521.83806184929 4.06976252402150e-05 1099974.28240490 - -7521.83800469092 1.23058682348265e-05 1099974.28240529 - -7521.83809688117 5.91364802967197e-05 1099974.28240466 - -7521.83797664406 7.45412576981985e-05 1099974.28240548 - -7521.83806878889 0.000117519844825874 1099974.28240485 - -7521.83792818665 0.000184923707606260 1099974.28240581 - -7521.83794400275 0.000231560335456639 1099974.28240570 - -7521.83782178503 0.000417341715884554 1099974.28240654 - -7521.83759116735 0.000750392068053158 1099974.28240812 - -7521.83713691646 0.00190563025694438 1099974.28241122 - -7521.83562478699 0.00460354709237718 1099974.28242156 - -7521.83191686264 0.0119648702643703 1099974.28244692 - -7521.82149127678 0.0306614336005614 1099974.28251821 - -7521.79455632050 0.0795878529096527 1099974.28270239 - -7521.72505281549 0.207846975241968 1099974.28317765 - -7521.55283468680 0.544592808291655 1099974.28435517 - -7521.13627868206 1.42933924629220 1099974.28720268 - -7520.15693892837 3.74560421940771 1099974.29389308 - -7517.91771627142 9.78285835067284 1099974.30916249 - -7512.93953589723 25.4243065483778 1099974.34292493 - -7502.19913700920 65.6846653005636 1099974.41456319 - -7479.74809503944 168.617238872909 1099974.55649513 - -7434.39528870540 430.070831721999 1099974.79280471 - -7346.14932022947 1090.15583623456 1099974.92955540 - -7181.43718923534 2747.52292922445 1099973.12607066 - -6887.99975762096 6887.99975762096 1099956.86775377 - -6391.96817318858 17178.6942981202 1099847.27812778 - -5601.54225063805 42579.9203490208 1099161.30440781 - -4424.17130346562 104473.437198664 1095018.59693257 - -2825.13615953087 250503.081515335 1071093.00471855 - -1126.59101024918 562234.669096170 945458.041194328 - -7679.48436393384 -553484.353991109 950576.717265339 - -9864.65797286756 -244186.948710263 1072508.93823905 - -12503.2699354470 -100877.045482482 1095293.33510966 - -14670.8263299042 -40680.3052457967 1099149.61657634 - -16202.3778895249 -16202.3778895249 1099761.32224290 - -17178.6942981202 -6391.96817318857 1099847.27812778 - -17753.1341047373 -2497.62248956474 1099853.89398381 - -18069.8786288911 -965.599590628962 1099851.14770307 - -18235.3275489743 -368.887740803550 1099848.77903783 - -18317.8248410918 -139.102642975994 1099847.46121612 - -18357.3071756004 -51.7376885649534 1099846.81051339 - -18375.5133932775 -18.9788602294402 1099846.50753973 - -18383.6233389771 -6.87230859106693 1099846.37215645 - -18387.1187903351 -2.46220095015970 1099846.31374412 - -18388.5772014527 -0.876726831768373 1099846.28936399 - -18389.1663407084 -0.312621098057492 1099846.27951419 - -18389.3965182490 -0.112690211010161 1099846.27566569 - -18389.4828139889 -0.0416539094132042 1099846.27422283 - -18389.5141975013 -0.0159001552776110 1099846.27369809 - -18389.5247623496 -0.00631086693251758 1099846.27352145 - -18389.5281418026 -0.00264587834899762 1099846.27346494 - -18389.5292727728 -0.00106444308280439 1099846.27344603 - -18389.5294366849 -0.000499391112758795 1099846.27344329 - -18389.5296977589 -0.000210608464230416 1099846.27343893 - -18389.5296773969 -0.000120536286201565 1099846.27343927 - -18389.5298752045 -6.95317247721225e-05 1099846.27343596 - -18389.5299072139 -6.83884530099563e-05 1099846.27343543 - -18389.5300518798 -4.07727640455750e-05 1099846.27343301 - -18389.5300878848 -7.33058648447535e-05 1099846.27343240 - -18389.5301370847 -2.32968381686285e-05 1099846.27343158 - -18389.5301556784 -8.47828657837264e-05 1099846.27343127 - -18389.5301458927 4.15993651449236e-07 1099846.27343143 - -18389.5301877698 -7.78374309825768e-05 1099846.27343073 - -18389.5301668692 2.01740809856786e-05 1099846.27343108 - -18389.5302193152 -6.52251695763189e-05 1099846.27343021 - -18389.5301777872 4.09670676104705e-05 1099846.27343090 - -18389.5302080027 -3.20370265171759e-05 1099846.27343040 - -18389.5301687517 7.01274890741788e-05 1099846.27343105 - -18389.5301896842 -1.44130110149437e-05 1099846.27343070 - -18389.5301794665 5.36744751943706e-05 1099846.27343087 - -18389.5301794665 -5.36744832564335e-05 1099846.27343087 - -18389.5301896842 1.44130047196386e-05 1099846.27343070 - -18389.5301687517 -7.01274673241782e-05 1099846.27343105 - -18389.5302080027 3.20370296203244e-05 1099846.27343040 - -18389.5301777872 -4.09670770598822e-05 1099846.27343090 - -18389.5302193153 6.52251792239703e-05 1099846.27343021 - -18389.5301668692 -2.01740950527476e-05 1099846.27343108 - -18389.5301877698 7.78374250181240e-05 1099846.27343073 - -18389.5301458927 -4.15995881686919e-07 1099846.27343143 - -18389.5301556784 8.47828703683741e-05 1099846.27343127 - -18389.5301370847 2.32968552559983e-05 1099846.27343158 - -18389.5300878848 7.33058428197828e-05 1099846.27343240 - -18389.5300518799 4.07727571187927e-05 1099846.27343301 - -18389.5299072140 6.83884423478595e-05 1099846.27343543 - -18389.5298752045 6.95317390112681e-05 1099846.27343596 - -18389.5296773969 0.000120536303789511 1099846.27343927 - -18389.5296977589 0.000210608465072291 1099846.27343893 - -18389.5294366849 0.000499391126690291 1099846.27344329 - -18389.5292727728 0.00106444306971038 1099846.27344603 - -18389.5281418026 0.00264587834409370 1099846.27346494 - -18389.5247623496 0.00631086692478080 1099846.27352145 - -18389.5141975013 0.0159001552622724 1099846.27369809 - -18389.4828139889 0.0416539094142243 1099846.27422283 - -18389.3965182490 0.112690211022522 1099846.27566569 - -18389.1663407084 0.312621098069064 1099846.27951419 - -18388.5772014527 0.876726831771427 1099846.28936399 - -18387.1187903351 2.46220095017163 1099846.31374412 - -18383.6233389771 6.87230859108205 1099846.37215645 - -18375.5133932775 18.9788602294329 1099846.50753973 - -18357.3071756004 51.7376885649418 1099846.81051339 - -18317.8248410919 139.102642975988 1099847.46121612 - -18235.3275489743 368.887740803550 1099848.77903783 - -18069.8786288911 965.599590628958 1099851.14770307 - -17753.1341047373 2497.62248956473 1099853.89398381 - -17178.6942981202 6391.96817318858 1099847.27812778 - -16202.3778895249 16202.3778895249 1099761.32224290 - -14670.8263299042 40680.3052457967 1099149.61657634 - -12503.2699354470 100877.045482482 1095293.33510966 - -9864.65797286763 244186.948710263 1072508.93823905 - -7679.48436393389 553484.353991109 950576.717265339 - -28309.9242985238 -538415.140513552 958805.342419401 - -29717.4414855357 -233869.415338371 1074440.30557348 - -33756.2468813961 -95205.3037104729 1095352.21090838 - -37720.4360593449 -37720.4360593449 1098705.75560838 - -40680.3052457967 -14670.8263299042 1099149.61657634 - -42579.9203490207 -5601.54225063804 1099161.30440781 - -43680.4641211038 -2093.33964182298 1099130.39944463 - -44271.2963916639 -762.325386479132 1099108.48926564 - -44569.8404238173 -269.018938909688 1099096.65496416 - -44713.2167355994 -91.3273197147522 1099090.86062458 - -44779.0664053628 -29.5213944465607 1099088.18315017 - -44808.0974825736 -8.94282210548864 1099087.00034166 - -44820.4068029956 -2.46900180398875 1099086.49847404 - -44825.4277947897 -0.586197366108541 1099086.29371068 - -44827.3949016043 -0.100962191417027 1099086.21348206 - -44828.1325273356 -0.00166972109319102 1099086.18339697 - -44828.3954117151 0.00786448533917980 1099086.17267474 - -44828.4832533254 0.00341010140964615 1099086.16909194 - -44828.5101687880 0.000248528971771836 1099086.16799414 - -44828.5171470094 -0.000753973399618939 1099086.16770952 - -44828.5185413288 -0.000832909199209245 1099086.16765265 - -44828.5183157066 -0.000536512886220324 1099086.16766185 - -44828.5181770385 -0.000321961391522516 1099086.16766751 - -44828.5179379603 -0.000129313594517727 1099086.16767726 - -44828.5179218368 -4.45651612476081e-05 1099086.16767792 - -44828.5179645549 2.85896103749237e-05 1099086.16767618 - -44828.5180112699 3.62778325411592e-05 1099086.16767427 - -44828.5181797562 5.27267647316884e-05 1099086.16766740 - -44828.5181958177 3.06721204718714e-06 1099086.16766674 - -44828.5183189313 -2.28841473410592e-06 1099086.16766172 - -44828.5182936841 -3.06518416350721e-05 1099086.16766275 - -44828.5183622822 -3.04524453856312e-05 1099086.16765995 - -44828.5183735744 -1.45935051870524e-05 1099086.16765949 - -44828.5184348011 -3.44391895371013e-05 1099086.16765700 - -44828.5184596521 -4.88071085275705e-06 1099086.16765598 - -44828.5184712462 -4.07695026951670e-05 1099086.16765551 - -44828.5184626699 1.52134510882360e-05 1099086.16765586 - -44828.5184531703 -1.57301484259149e-05 1099086.16765625 - -44828.5184558616 4.08681432369207e-05 1099086.16765614 - -44828.5184610903 -1.69442717476923e-05 1099086.16765592 - -44828.5184610904 1.69442588400309e-05 1099086.16765592 - -44828.5184558616 -4.08681390003797e-05 1099086.16765614 - -44828.5184531703 1.57301779326153e-05 1099086.16765625 - -44828.5184626699 -1.52133905716009e-05 1099086.16765586 - -44828.5184712462 4.07695128082681e-05 1099086.16765551 - -44828.5184596521 4.88067348284336e-06 1099086.16765598 - -44828.5184348012 3.44391617350401e-05 1099086.16765700 - -44828.5183735744 1.45934753346789e-05 1099086.16765949 - -44828.5183622821 3.04524362332935e-05 1099086.16765995 - -44828.5182936841 3.06518367603701e-05 1099086.16766275 - -44828.5183189312 2.28838762341542e-06 1099086.16766172 - -44828.5181958177 -3.06716737533565e-06 1099086.16766674 - -44828.5181797562 -5.27267011678127e-05 1099086.16766740 - -44828.5180112699 -3.62778797716170e-05 1099086.16767427 - -44828.5179645549 -2.85896452266298e-05 1099086.16767618 - -44828.5179218367 4.45651825930857e-05 1099086.16767792 - -44828.5179379603 0.000129313591929180 1099086.16767726 - -44828.5181770386 0.000321961405958422 1099086.16766751 - -44828.5183157066 0.000536512887607054 1099086.16766185 - -44828.5185413288 0.000832909142271078 1099086.16765265 - -44828.5171470094 0.000753973397835249 1099086.16770952 - -44828.5101687880 -0.000248528934779466 1099086.16799414 - -44828.4832533255 -0.00341010139004595 1099086.16909194 - -44828.3954117151 -0.00786448534061900 1099086.17267474 - -44828.1325273356 0.00166972110370799 1099086.18339697 - -44827.3949016043 0.100962191388997 1099086.21348206 - -44825.4277947897 0.586197366108018 1099086.29371068 - -44820.4068029956 2.46900180401265 1099086.49847404 - -44808.0974825736 8.94282210548163 1099087.00034166 - -44779.0664053628 29.5213944465932 1099088.18315017 - -44713.2167355994 91.3273197147422 1099090.86062458 - -44569.8404238173 269.018938909659 1099096.65496416 - -44271.2963916638 762.325386479111 1099108.48926564 - -43680.4641211038 2093.33964182301 1099130.39944463 - -42579.9203490207 5601.54225063805 1099161.30440781 - -40680.3052457967 14670.8263299042 1099149.61657634 - -37720.4360593449 37720.4360593449 1098705.75560838 - -33756.2468813960 95205.3037104730 1095352.21090838 - -29717.4414855357 233869.415338371 1074440.30557348 - -28309.9242985238 538415.140513552 958805.342419400 - -84686.4238610590 -516972.831146086 967247.280415110 - -81823.6791898418 -220293.145110201 1074604.95799214 - -87858.2023851795 -87858.2023851794 1092960.14225007 - -95205.3037104730 -33756.2468813961 1095352.21090838 - -100877.045482482 -12503.2699354471 1095293.33510966 - -104473.437198664 -4424.17130346562 1095018.59693257 - -106497.758089553 -1469.98000518291 1094831.52433636 - -107545.321553494 -443.838727320634 1094730.01549201 - -108053.081875462 -112.528684697025 1094680.09885743 - -108286.045381449 -17.3905824857187 1094657.08423835 - -108387.805300713 4.10119021008201 1094647.01326285 - -108430.226539643 5.78727848992395 1094642.81203462 - -108447.095638244 3.75034838084095 1094641.14093778 - -108453.470039913 1.94305220793759 1094640.50940595 - -108455.739279648 0.887526174368942 1094640.28457595 - -108456.486920500 0.368431315396080 1094640.21050057 - -108456.706149029 0.139292731343793 1094640.18877953 - -108456.757792309 0.0472310922635120 1094640.18366273 - -108456.762970308 0.0134874184886208 1094640.18314970 - -108456.759136768 0.00253776426259973 1094640.18352952 - -108456.755351041 -0.000205391607148134 1094640.18390461 - -108456.753057704 -0.000657961718134897 1094640.18413184 - -108456.751868812 -0.000409843596938008 1094640.18424963 - -108456.751258488 -0.000203149464533308 1094640.18431010 - -108456.750941222 -3.78523936838860e-05 1094640.18434154 - -108456.750862491 7.45950180698199e-05 1094640.18434934 - -108456.750819229 0.000132732313730951 1094640.18435362 - -108456.750920141 9.87292968854282e-05 1094640.18434363 - -108456.750941794 0.000130779756360325 1094640.18434148 - -108456.751014763 -7.19045683088447e-06 1094640.18433425 - -108456.750998065 9.41860087419445e-05 1094640.18433590 - -108456.751065431 -4.40315571046477e-05 1094640.18432923 - -108456.751106663 0.000118310899651198 1094640.18432514 - -108456.751224946 -4.05579955584141e-05 1094640.18431343 - -108456.751271442 9.14461655096941e-05 1094640.18430882 - -108456.751320530 -7.51427166731202e-05 1094640.18430396 - -108456.751298315 6.11576410740266e-05 1094640.18430616 - -108456.751307773 -5.65840804430736e-05 1094640.18430522 - -108456.751311180 7.77533837971170e-05 1094640.18430488 - -108456.751332471 -5.05384085657354e-05 1094640.18430277 - -108456.751332471 5.05384641509994e-05 1094640.18430277 - -108456.751311180 -7.77534300554250e-05 1094640.18430488 - -108456.751307773 5.65840946276868e-05 1094640.18430522 - -108456.751298315 -6.11576503027029e-05 1094640.18430616 - -108456.751320530 7.51427482014044e-05 1094640.18430396 - -108456.751271442 -9.14460893182550e-05 1094640.18430882 - -108456.751224946 4.05579364401753e-05 1094640.18431343 - -108456.751106663 -0.000118311041881446 1094640.18432514 - -108456.751065431 4.40315563513216e-05 1094640.18432923 - -108456.750998065 -9.41860043643045e-05 1094640.18433590 - -108456.751014763 7.19042541393148e-06 1094640.18433425 - -108456.750941794 -0.000130779712686133 1094640.18434148 - -108456.750920141 -9.87292324529149e-05 1094640.18434363 - -108456.750819229 -0.000132732266606763 1094640.18435362 - -108456.750862491 -7.45950963539855e-05 1094640.18434934 - -108456.750941222 3.78523552240388e-05 1094640.18434154 - -108456.751258488 0.000203149595398129 1094640.18431010 - -108456.751868812 0.000409843653215593 1094640.18424963 - -108456.753057704 0.000657961640118821 1094640.18413184 - -108456.755351041 0.000205391539206120 1094640.18390461 - -108456.759136769 -0.00253776425581646 1094640.18352952 - -108456.762970308 -0.0134874184188453 1094640.18314970 - -108456.757792309 -0.0472310922733659 1094640.18366273 - -108456.706149029 -0.139292731391098 1094640.18877953 - -108456.486920500 -0.368431315418369 1094640.21050057 - -108455.739279648 -0.887526174323976 1094640.28457595 - -108453.470039913 -1.94305220785442 1094640.50940595 - -108447.095638244 -3.75034838088639 1094641.14093778 - -108430.226539643 -5.78727848998368 1094642.81203462 - -108387.805300713 -4.10119021010638 1094647.01326285 - -108286.045381449 17.3905824857572 1094657.08423835 - -108053.081875462 112.528684696967 1094680.09885743 - -107545.321553494 443.838727320583 1094730.01549201 - -106497.758089553 1469.98000518295 1094831.52433636 - -104473.437198664 4424.17130346562 1095018.59693257 - -100877.045482482 12503.2699354471 1095293.33510966 - -95205.3037104729 33756.2468813961 1095352.21090838 - -87858.2023851794 87858.2023851794 1092960.14225007 - -81823.6791898417 220293.145110201 1074604.95799214 - -84686.4238610590 516972.831146086 967247.280415110 - -222091.369095226 -497208.517514553 955750.550030911 - -210241.427832465 -210241.427832465 1059054.80691319 - -220293.145110201 -81823.6791898418 1074604.95799214 - -233869.415338371 -29717.4414855357 1074440.30557348 - -244186.948710263 -9864.65797286762 1072508.93823905 - -250503.081515335 -2825.13615953087 1071093.00471855 - -253914.206521399 -574.895803710366 1070293.06510947 - -255602.001129300 22.9064743700556 1069891.40406585 - -256381.555507232 116.345960734636 1069704.85857516 - -256720.860500675 88.9307143682385 1069623.48135927 - -256860.542415963 51.1178374456154 1069589.94906307 - -256914.861769172 25.6263539170026 1069576.90380141 - -256934.674683846 11.7369821987874 1069572.14474169 - -256941.339668686 5.00060429566825 1069570.54369698 - -256943.328624854 1.99259428275092 1069570.06590088 - -256943.799398595 0.739444714803086 1069569.95280817 - -256943.844421398 0.251530963643523 1069569.94199252 - -256943.803440492 0.0751283250858101 1069569.95183743 - -256943.764542599 0.0174101550848660 1069569.96118191 - -256943.741048133 0.00119361042077872 1069569.96682601 - -256943.729188222 -0.00196141567726416 1069569.96967513 - -256943.723797009 -0.00167522063051018 1069569.97097026 - -256943.721491919 -0.00108652469460305 1069569.97152402 - -256943.720497019 -0.000439493665836543 1069569.97176302 - -256943.720116263 -0.000244501468085293 1069569.97185449 - -256943.719887713 8.50751705251900e-05 1069569.97190940 - -256943.719948721 8.59063469845788e-05 1069569.97189474 - -256943.719898121 0.000182193538128058 1069569.97190690 - -256943.719996882 8.91980592768033e-05 1069569.97188317 - -256943.719883077 7.76867496849365e-05 1069569.97191051 - -256943.719870012 2.61062165924236e-05 1069569.97191365 - -256943.719794789 0.000101560392510732 1069569.97193172 - -256943.719860223 7.14689145187526e-05 1069569.97191600 - -256943.719936966 0.000159797671208973 1069569.97189756 - -256943.720006852 3.62042654091838e-06 1069569.97188077 - -256943.720016387 9.32059829742800e-05 1069569.97187848 - -256943.719969604 -8.46791997047073e-05 1069569.97188972 - -256943.719950937 0.000106871665905821 1069569.97189421 - -256943.719955658 -6.93893703295249e-05 1069569.97189307 - -256943.719984330 0.000114558783470816 1069569.97188618 - -256943.719984330 -0.000114558748592395 1069569.97188618 - -256943.719955658 6.93893750225545e-05 1069569.97189307 - -256943.719950937 -0.000106871645645036 1069569.97189421 - -256943.719969604 8.46792532777207e-05 1069569.97188972 - -256943.720016387 -9.32060047171561e-05 1069569.97187848 - -256943.720006852 -3.62052136673380e-06 1069569.97188077 - -256943.719936965 -0.000159797787323940 1069569.97189756 - -256943.719860222 -7.14688904054843e-05 1069569.97191600 - -256943.719794789 -0.000101560276124279 1069569.97193172 - -256943.719870012 -2.61061633313291e-05 1069569.97191365 - -256943.719883077 -7.76868258069665e-05 1069569.97191051 - -256943.719996882 -8.91980962191960e-05 1069569.97188317 - -256943.719898121 -0.000182193510437255 1069569.97190690 - -256943.719948721 -8.59063518452471e-05 1069569.97189474 - -256943.719887713 -8.50751653400378e-05 1069569.97190940 - -256943.720116263 0.000244501467011533 1069569.97185449 - -256943.720497019 0.000439493671095054 1069569.97176302 - -256943.721491919 0.00108652476327888 1069569.97152402 - -256943.723797008 0.00167522064316247 1069569.97097026 - -256943.729188222 0.00196141562731634 1069569.96967513 - -256943.741048133 -0.00119361048450114 1069569.96682601 - -256943.764542599 -0.0174101551352738 1069569.96118191 - -256943.803440492 -0.0751283249962608 1069569.95183743 - -256943.844421398 -0.251530963609083 1069569.94199252 - -256943.799398595 -0.739444714822032 1069569.95280817 - -256943.328624854 -1.99259428275025 1069570.06590088 - -256941.339668686 -5.00060429571671 1069570.54369698 - -256934.674683846 -11.7369821987428 1069572.14474170 - -256914.861769172 -25.6263539170431 1069576.90380141 - -256860.542415963 -51.1178374457370 1069589.94906307 - -256720.860500675 -88.9307143681359 1069623.48135927 - -256381.555507232 -116.345960734596 1069704.85857516 - -255602.001129300 -22.9064743701242 1069891.40406585 - -253914.206521399 574.895803710433 1070293.06510947 - -250503.081515335 2825.13615953092 1071093.00471854 - -244186.948710263 9864.65797286761 1072508.93823905 - -233869.415338371 29717.4414855357 1074440.30557348 - -220293.145110201 81823.6791898418 1074604.95799214 - -210241.427832465 210241.427832465 1059054.80691319 - -222091.369095226 497208.517514553 955750.550030911 - -505613.032564973 -505613.032564973 835889.300446479 - -497208.517514553 -222091.369095226 955750.550030911 - -516972.831146086 -84686.4238610590 967247.280415110 - -538415.140513552 -28309.9242985237 958805.342419401 - -553484.353991109 -7679.48436393385 950576.717265339 - -562234.669096170 -1126.59101024917 945458.041194328 - -566750.382164375 471.546013533102 942758.602167539 - -568888.587560200 588.657343514829 941469.823428395 - -569832.132164313 395.921001599580 940899.136145651 - -570222.732312852 217.741985564821 940662.526170833 - -570374.377066122 107.002763239174 940570.602632701 - -570429.142008348 48.5427622713961 940537.395105171 - -570447.148291995 20.6056915515340 940526.475215311 - -570452.253234026 8.21517890262163 940523.379142025 - -570453.289974148 3.06389144006712 940522.750361884 - -570453.261672129 1.05395432618041 940522.767532248 - -570453.068534651 0.323033560195013 940522.884676017 - -570452.921791802 0.0800894918990325 940522.973679638 - -570452.838725871 0.00968781529783367 940523.024061397 - -570452.797912931 -0.00544724763891898 940523.048815556 - -570452.779709082 -0.00584353850980288 940523.059856685 - -570452.772274352 -0.00370568917116545 940523.064366051 - -570452.769385412 -0.00191914941094333 940523.066118271 - -570452.768365276 -0.00100620735046369 940523.066737011 - -570452.767975874 -0.000322278164535521 940523.066973194 - -570452.767907618 -0.000102682429986459 940523.067014593 - -570452.767928161 0.000156907080366927 940523.067002133 - -570452.768003082 0.000132466400451557 940523.066956692 - -570452.767982027 9.17832325925725e-05 940523.066969462 - -570452.767880441 1.76952579435487e-05 940523.067031077 - -570452.767703931 -1.47968905398399e-05 940523.067138135 - -570452.767583868 7.39605507238066e-05 940523.067210956 - -570452.767565427 0.000128751105835816 940523.067222142 - -570452.767615753 0.000147233813339521 940523.067191618 - -570452.767655811 9.21872432553443e-05 940523.067167322 - -570452.767608032 -1.61832356284123e-05 940523.067196300 - -570452.767524369 2.90195471111493e-06 940523.067247044 - -570452.767457596 -2.91244970663702e-05 940523.067287544 - -570452.767463757 7.44533230304384e-05 940523.067283807 - -570452.767490176 -2.07649880208657e-05 940523.067267783 - -570452.767490176 2.07649986580724e-05 940523.067267783 - -570452.767463757 -7.44532956578000e-05 940523.067283807 - -570452.767457596 2.91244929636725e-05 940523.067287544 - -570452.767524369 -2.90197378458438e-06 940523.067247044 - -570452.767608032 1.61832111091559e-05 940523.067196300 - -570452.767655811 -9.21872724487832e-05 940523.067167322 - -570452.767615753 -0.000147233934085830 940523.067191618 - -570452.767565427 -0.000128751123102545 940523.067222142 - -570452.767583868 -7.39605144803312e-05 940523.067210956 - -570452.767703931 1.47969008537746e-05 940523.067138135 - -570452.767880440 -1.76951922413307e-05 940523.067031077 - -570452.767982027 -9.17832581793743e-05 940523.066969462 - -570452.768003082 -0.000132466405083781 940523.066956692 - -570452.767928161 -0.000156907028432735 940523.067002133 - -570452.767907618 0.000102682485704415 940523.067014593 - -570452.767975874 0.000322278122308257 940523.066973194 - -570452.768365276 0.00100620739536462 940523.066737012 - -570452.769385412 0.00191914951407662 940523.066118271 - -570452.772274352 0.00370568907750419 940523.064366050 - -570452.779709082 0.00584353837551665 940523.059856685 - -570452.797912931 0.00544724766947914 940523.048815556 - -570452.838725872 -0.00968781524650377 940523.024061397 - -570452.921791802 -0.0800894919547850 940522.973679638 - -570453.068534651 -0.323033560198259 940522.884676017 - -570453.261672129 -1.05395432611811 940522.767532248 - -570453.289974148 -3.06389144008977 940522.750361884 - -570452.253234026 -8.21517890261862 940523.379142026 - -570447.148291995 -20.6056915514649 940526.475215310 - -570429.142008348 -48.5427622714826 940537.395105171 - -570374.377066123 -107.002763239208 940570.602632701 - -570222.732312852 -217.741985564742 940662.526170833 - -569832.132164313 -395.921001599528 940899.136145651 - -568888.587560200 -588.657343514883 941469.823428395 - -566750.382164375 -471.546013533145 942758.602167539 - -562234.669096170 1126.59101024920 945458.041194328 - -553484.353991109 7679.48436393397 950576.717265339 - -538415.140513552 28309.9242985238 958805.342419400 - -516972.831146086 84686.4238610589 967247.280415110 - -497208.517514553 222091.369095226 955750.550030911 - -505613.032564973 505613.032564973 835889.300446479 -# End: Data Text -# End: Segment diff --git a/test/sascalculator/utest_sas_gen.py b/test/sascalculator/utest_sas_gen.py index 1dd3c1745f..c35bffddfd 100644 --- a/test/sascalculator/utest_sas_gen.py +++ b/test/sascalculator/utest_sas_gen.py @@ -14,8 +14,6 @@ from sas.sascalc.calculator import sas_gen -MFACTOR_AM = 2.90636E-12 - def find(filename): return os.path.join(os.path.dirname(__file__), 'data', filename) @@ -68,33 +66,18 @@ def test_pdbreader(self): self.assertEqual(f.pos_y[0], -1.008) self.assertEqual(f.pos_z[0], 3.326) - def test_omfreader_V1(self): + def test_omfreader(self): """ Test .omf file loaded """ - f = self.omfloader.read(find("isolated_skyrmion_V1.omf")) - + f = self.omfloader.read(find("A_Raw_Example-1.omf")) - self.assertEqual(f.sld_mx[0], MFACTOR_AM * 505613.032564973) - self.assertEqual(f.sld_my[0], - MFACTOR_AM * 505613.032564973) - self.assertEqual(f.sld_mz[0], MFACTOR_AM * 835889.300446479) + self.assertEqual(f.sld_mx[0], 0) + self.assertEqual(f.sld_my[0], 0) + self.assertEqual(f.sld_mz[0], 0) self.assertEqual(f.pos_x[0], 0.0) self.assertEqual(f.pos_y[0], 0.0) self.assertEqual(f.pos_z[0], 0.0) - - def test_omfreader_V2(self): - """ - Test .omf file loaded - """ - f = self.omfloader.read(find("isolated_skyrmion_V2.omf")) - - - self.assertEqual(f.sld_mx[0], MFACTOR_AM * 505613.032564973) - self.assertEqual(f.sld_my[0], - MFACTOR_AM * 505613.032564973) - self.assertEqual(f.sld_mz[0], MFACTOR_AM * 835889.300446479) - self.assertEqual(f.pos_x[0], 0.0) - self.assertEqual(f.pos_y[0], 0.0) - self.assertEqual(f.pos_z[0], 0.0) def test_rotations(self): pos_x = np.array([1, 0, 0]) From d40458fac89e80e40087ef1ec4017e10dfab15db Mon Sep 17 00:00:00 2001 From: butlerpd Date: Mon, 13 Mar 2023 23:34:32 +0000 Subject: [PATCH 08/36] change initial slab shape make the default slab be an actual slab (instead of a square) whose direction depends on the slab type (Qx or Qy) and make the default extend the entire q range in the direction being scaned and about 10% of the width in the direction being averaged. Also changed the x axis legend on the resulting plot to Qx or Qy respectively, fixed the way the slab shape was being calculated to be more robust to different cases of 2D data and changed the now incorrect nomenclature of xmax/ymax to xwidth/ywidth --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 62 +++++++++++---------- 1 file changed, 34 insertions(+), 28 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index e9d2090b33..4f84ade8f0 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -20,7 +20,7 @@ class BoxInteractor(BaseInteractor, SlicerModel): -x to +x as a function of Q_y """ - def __init__(self, base, axes, item=None, color='black', zorder=3): + def __init__(self, base, axes, item=None, color='black', direction=None,zorder=3): BaseInteractor.__init__(self, base, axes, color=color) SlicerModel.__init__(self) # Class initialization @@ -30,23 +30,24 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): # connecting artist self.connect = self.base.connect # which direction is the preferred interaction direction - self.direction = None + self.direction = direction # determine x y values - self.xmin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - self.ymin = -1 * 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - self.xmax = 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - self.ymax = 0.5 * min(numpy.fabs(self.data.xmax), - numpy.fabs(self.data.xmin)) - - # when reach qmax reset the graph - self.qmax = max(self.data.xmax, self.data.xmin, - self.data.ymax, self.data.ymin) + if self.direction == "Y": + self.xwidth = 0.1 * (self.data.xmax - self.data.xmin) / 2 + self.ywidth = 1.0 * (self.data.ymax - self.data.ymin) / 2 + # when reach qmax reset the graph + self.qmax = max(numpy.fabs(self.data.ymax), numpy.fabs(self.data.ymin)) + else: + self.xwidth = 1.0 * (self.data.xmax - self.data.xmin) / 2 + self.ywidth = 0.1 * (self.data.ymax - self.data.ymin) / 2 + # when reach qmax reset the graph + self.qmax = max(numpy.fabs(self.data.xmax), numpy.fabs(self.data.xmin)) + + self.width_min = 0.005 * (self.data.xmax - self.data.xmin) + self.height_min = 0.005 * (self.data.ymax - self.data.ymin) # center of the box - # puts the center of box at the middle of the q-range (??) + # puts the center of box at the middle of the data q-range self.center_x = (self.data.xmin + self.data.xmax) /2 self.center_y = (self.data.ymin + self.data.ymax) /2 @@ -67,8 +68,8 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): self.axes, color='blue', zorder=zorder, - y=self.ymax, - x=self.xmax, + y=self.ywidth, + x=self.xwidth, center_x=self.center_x, center_y=self.center_y) self.horizontal_lines.qmax = self.qmax @@ -77,8 +78,8 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): self.axes, color='black', zorder=zorder, - y=self.ymax, - x=self.xmax, + y=self.ywidth, + x=self.xwidth, center_x=self.center_x, center_y=self.center_y) self.vertical_lines.qmax = self.qmax @@ -227,7 +228,12 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): new_plot.interactive = True new_plot.detector = self.data.detector # # If the data file does not tell us what the axes are, just assume... - new_plot.xaxis("\\rm{Q}", "A^{-1}") + if self.direction == "X": + new_plot.xaxis("\\rm{Q_x}", "A^{-1}") + elif self.direction == "Y": + new_plot.xaxis("\\rm{Q_y}", "A^{-1}") + else: + new_plot.xaxis("\\rm{Q}", "A^{-1}") new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") data = self.data @@ -282,8 +288,8 @@ def getParams(self): """ params = {} - params["x_max"] = numpy.fabs(self.vertical_lines.x1) - params["y_max"] = numpy.fabs(self.horizontal_lines.y1) + params["x_width"] = numpy.fabs(self.vertical_lines.x1) + params["y_width"] = numpy.fabs(self.horizontal_lines.y1) params["nbins"] = self.nbins params["center_x"] = self.center.x params["center_y"] = self.center.y @@ -298,8 +304,8 @@ def setParams(self, params): :param params: a dictionary containing name of slicer parameters and values the user assigned to the slicer. """ - x_max = float(numpy.fabs(params["x_max"])) - y_max = float(numpy.fabs(params["y_max"])) + x_width = float(numpy.fabs(params["x_width"])) + y_width = float(numpy.fabs(params["y_width"])) self.nbins = params["nbins"] self.fold = params["fold"] self.center_x = params["center_x"] @@ -307,9 +313,9 @@ def setParams(self, params): self.center.update(center_x=self.center_x, center_y=self.center_y) self.horizontal_lines.update(center=self.center, - width=x_max, height=y_max) + width=x_width, height=y_width) self.vertical_lines.update(center=self.center, - width=x_max, height=y_max) + width=x_width, height=y_width) # compute the new error and sum given values of params self._post_data() @@ -769,7 +775,7 @@ class BoxInteractorX(BoxInteractor): """ def __init__(self, base, axes, item=None, color='black', zorder=3): - BoxInteractor.__init__(self, base, axes, item=item, color=color) + BoxInteractor.__init__(self, base, axes, item=item, direction="X",color=color) self.base = base super()._post_data() @@ -803,7 +809,7 @@ class BoxInteractorY(BoxInteractor): """ def __init__(self, base, axes, item=None, color='black', zorder=3): - BoxInteractor.__init__(self, base, axes, item=item, color=color) + BoxInteractor.__init__(self, base, axes, item=item, direction="Y", color=color) self.base = base super()._post_data() From 658ff7bfc47b58a46c5f7d7e39b5831710dea06c Mon Sep 17 00:00:00 2001 From: butlerpd Date: Mon, 20 Mar 2023 16:58:56 +0000 Subject: [PATCH 09/36] Add fold option to sector slicer Added the self.fold boolean to the paremeter editor and to the call to manipulations.py (strictly speaking sectorQ class), in a similar way to how the box slicer works. --- src/sas/qtgui/Plotting/Slicers/SectorSlicer.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py index 41a3751cb8..9e3b106c5d 100644 --- a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py @@ -67,6 +67,7 @@ def __init__(self, base, axes, item=None, color='black', zorder=3): phi=self.phi, theta2=self.theta2) self.left_line.update(left=True) self.left_line.qmax = self.qmax + self.fold = True # draw the sector self.update() self._post_data() @@ -151,6 +152,7 @@ def _post_data(self, nbins=None): phi_min=phimin + numpy.pi, phi_max=phimax + numpy.pi, nbins=nbins) + sect.fold = self.fold sector = sect(self.data) # Create 1D data resulting from average @@ -250,6 +252,7 @@ def getParams(self): params["Phi [deg]"] = self.main_line.theta * 180 / numpy.pi params["Delta_Phi [deg]"] = numpy.fabs(self.left_line.phi * 180 / numpy.pi) params["nbins"] = self.nbins + params["fold"] = self.fold return params def setParams(self, params): @@ -269,6 +272,7 @@ def setParams(self, params): params["Delta_Phi [deg]"] = MIN_PHI self.nbins = int(params["nbins"]) + self.fold =params["fold"] self.main_line.theta = main # Reset the slicer parameters self.main_line.update() From fc18810c05578fc4476cc5d140b694eed4907de1 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Sun, 9 Apr 2023 21:14:31 +0000 Subject: [PATCH 10/36] normalize box x and y width nomenclature replaced x_width and y_width variables with xwidth and ywidth to be more consistent with rest of nomenclature in code --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 4f84ade8f0..ad4f0d63db 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -178,9 +178,11 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): x_min = self.horizontal_lines.x2 x_max = self.horizontal_lines.x1 + self.xwidth = numpy.fabs(x_max - x_min)/2 y_min = self.vertical_lines.y2 y_max = self.vertical_lines.y1 - + self.ywidth = numpy.fabs(y_max - y_min)/2 + if nbins is not None: self.nbins = nbins if self.averager is None: @@ -288,8 +290,8 @@ def getParams(self): """ params = {} - params["x_width"] = numpy.fabs(self.vertical_lines.x1) - params["y_width"] = numpy.fabs(self.horizontal_lines.y1) + params["x_width"] = self.xwidth + params["y_width"] = self.ywidth params["nbins"] = self.nbins params["center_x"] = self.center.x params["center_y"] = self.center.y @@ -304,8 +306,8 @@ def setParams(self, params): :param params: a dictionary containing name of slicer parameters and values the user assigned to the slicer. """ - x_width = float(numpy.fabs(params["x_width"])) - y_width = float(numpy.fabs(params["y_width"])) + self.xwidth = float(numpy.fabs(params["x_width"])) + self.ywidth = float(numpy.fabs(params["y_width"])) self.nbins = params["nbins"] self.fold = params["fold"] self.center_x = params["center_x"] @@ -313,9 +315,9 @@ def setParams(self, params): self.center.update(center_x=self.center_x, center_y=self.center_y) self.horizontal_lines.update(center=self.center, - width=x_width, height=y_width) + width=self.xwidth, height=self.ywidth) self.vertical_lines.update(center=self.center, - width=x_width, height=y_width) + width=self.xwidth, height=self.ywidth) # compute the new error and sum given values of params self._post_data() From 49256d9fd025aa47897f6b0831502cc08e78cea6 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Thu, 18 Jan 2024 21:37:39 +0000 Subject: [PATCH 11/36] move new "direction" argument to end of list in case someone uses old interface to make the call. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index ad4f0d63db..347ff813fc 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -20,7 +20,7 @@ class BoxInteractor(BaseInteractor, SlicerModel): -x to +x as a function of Q_y """ - def __init__(self, base, axes, item=None, color='black', direction=None,zorder=3): + def __init__(self, base, axes, item=None, color='black', zorder=3, direction=None): BaseInteractor.__init__(self, base, axes, color=color) SlicerModel.__init__(self) # Class initialization @@ -323,7 +323,7 @@ def setParams(self, params): #self.horizontal_lines.update(x=self.x, y=self.y) #self.vertical_lines.update(x=self.x, y=self.y) - #self._post_data() + #self.post_data(nbins=None) self.draw() def draw(self): @@ -777,7 +777,7 @@ class BoxInteractorX(BoxInteractor): """ def __init__(self, base, axes, item=None, color='black', zorder=3): - BoxInteractor.__init__(self, base, axes, item=item, direction="X",color=color) + BoxInteractor.__init__(self, base, axes, item=item, color=color, direction="X") self.base = base super()._post_data() @@ -811,7 +811,7 @@ class BoxInteractorY(BoxInteractor): """ def __init__(self, base, axes, item=None, color='black', zorder=3): - BoxInteractor.__init__(self, base, axes, item=item, direction="Y", color=color) + BoxInteractor.__init__(self, base, axes, item=item, color=color, direction="Y") self.base = base super()._post_data() @@ -824,7 +824,7 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): def validate(self, param_name, param_value): """ - Validate input from user + Validate input from user. Values get checked at apply time. """ isValid = True From 0add8a8b74d6be80a968a34136e26f7a34c14c21 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 19 Jan 2024 14:57:46 -0500 Subject: [PATCH 12/36] Fix group ID for sector slicer to avoid triggering updates to circular average when sector slicer is updated --- src/sas/qtgui/Plotting/Slicers/SectorSlicer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py index 9e3b106c5d..0e48366362 100644 --- a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py @@ -180,7 +180,7 @@ def _post_data(self, nbins=None): new_plot.ytransform = 'y' new_plot.yaxis("\\rm{Residuals} ", "/") - new_plot.group_id = "2daverage" + self.data.name + new_plot.group_id = "SectorQ" + self.data.name new_plot.id = "SectorQ" + self.data.name new_plot.is_data = True item = self._item From 6691678bd93464c7a532e7eb02bc4d60f4e92422 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 19 Jan 2024 15:56:30 -0500 Subject: [PATCH 13/36] Revert change to setting the angle with a center angle of alpha (which did not exist?) to theta --- src/sas/qtgui/Plotting/Slicers/SectorSlicer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py index 0e48366362..ac9dcbb4ed 100644 --- a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py @@ -385,13 +385,13 @@ def update(self, phi=None, delta=None, mline=None, else: self.phi = numpy.fabs(self.phi) if side: - self.theta = mline.alpha + self.phi + self.theta = mline.theta + self.phi if mline is not None: if delta != 0: self.theta2 = mline + delta else: - self.theta2 = mline.alpha + self.theta2 = mline.theta if delta == 0: theta3 = self.theta + delta else: From 3e79c32461414d1d1947bfc4bd36cd91b72214ad Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 19 Jan 2024 16:52:32 -0500 Subject: [PATCH 14/36] Remove the apparently duplicate plot.group_id and switch to using the plot.id in 2D plotting and slicers --- src/sas/qtgui/Plotting/Plotter2D.py | 13 +++++++++---- src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py | 1 - src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 1 - src/sas/qtgui/Plotting/Slicers/SectorSlicer.py | 1 - src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py | 1 - 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/sas/qtgui/Plotting/Plotter2D.py b/src/sas/qtgui/Plotting/Plotter2D.py index 818fa1d732..3cc90220c9 100644 --- a/src/sas/qtgui/Plotting/Plotter2D.py +++ b/src/sas/qtgui/Plotting/Plotter2D.py @@ -136,6 +136,7 @@ def plot(self, data=None, marker=None, show_colorbar=True, update=False): update=update) self.updateCircularAverage() + self.updateSlicer() def calculateDepth(self): """ @@ -338,8 +339,7 @@ def circularAverage(self): else: new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") - new_plot.group_id = "2daverage" + self.data0.name - new_plot.id = "Circ avg " + self.data0.name + new_plot.id = "2daverage" + self.data0.name new_plot.is_data = True return new_plot @@ -375,8 +375,8 @@ def updateCircularAverage(self): # See if current item plots contain 2D average plot has_plot = False for plot in plots: - if plot.group_id is None: continue - if ca_caption in plot.group_id: has_plot = True + if plot.id is None: continue + if ca_caption in plot.id: has_plot = True # return prematurely if no circular average plot found if not has_plot: return @@ -388,6 +388,11 @@ def updateCircularAverage(self): # Show the new plot, if already visible self.manager.communicator.plotUpdateSignal.emit([new_plot]) + def updateSlicer(self): + """ + Update slicer plot on Data2D change + """ + def setSlicer(self, slicer, reset=True): """ Clear the previous slicer and create a new one. diff --git a/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py b/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py index 2c7e07c077..72908659f5 100644 --- a/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py @@ -138,7 +138,6 @@ def _post_data(self, nbins=None): new_plot.ytransform = 'y' new_plot.yaxis("\\rm{Residuals} ", "/") - new_plot.group_id = "AnnulusPhi" + self.data.name new_plot.id = "AnnulusPhi" + self.data.name new_plot.is_data = True new_plot.xtransform = "x" diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 347ff813fc..ed049843b3 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -246,7 +246,6 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): #new_plot. = "2daverage" + self.data.name new_plot.id = (self.averager.__name__) + self.data.name - new_plot.group_id = new_plot.id new_plot.is_data = True item = self._item if self._item.parent() is not None: diff --git a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py index ac9dcbb4ed..42fb22033f 100644 --- a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py @@ -180,7 +180,6 @@ def _post_data(self, nbins=None): new_plot.ytransform = 'y' new_plot.yaxis("\\rm{Residuals} ", "/") - new_plot.group_id = "SectorQ" + self.data.name new_plot.id = "SectorQ" + self.data.name new_plot.is_data = True item = self._item diff --git a/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py b/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py index fe5e4c871f..1424519199 100644 --- a/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py @@ -212,7 +212,6 @@ def _post_data(self, new_sector=None, nbins=None): new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") new_plot.id = str(self.averager.__name__) + self.data.name - new_plot.group_id = new_plot.id new_plot.is_data = True item = self._item if self._item.parent() is not None: From ad4b50bf15780f77b6f400aac034e75af03a1a79 Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 21 Jan 2024 11:22:29 -0500 Subject: [PATCH 15/36] Prevent old slicer plots from reappearing when replotting the 2D data, adds a type_id to each plot item to do this. --- src/sas/qtgui/Plotting/Plotter2D.py | 41 +++++++++++++++++++ .../qtgui/Plotting/Slicers/AnnulusSlicer.py | 1 + src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 1 + .../qtgui/Plotting/Slicers/SectorSlicer.py | 1 + src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py | 1 + 5 files changed, 45 insertions(+) diff --git a/src/sas/qtgui/Plotting/Plotter2D.py b/src/sas/qtgui/Plotting/Plotter2D.py index 3cc90220c9..dee8034b6a 100644 --- a/src/sas/qtgui/Plotting/Plotter2D.py +++ b/src/sas/qtgui/Plotting/Plotter2D.py @@ -401,6 +401,47 @@ def setSlicer(self, slicer, reset=True): # Clear current slicer if self.slicer is not None: self.slicer.clear() + + # Clear the old slicer plots so they don't reappear later + if hasattr(self, '_item'): + item = self._item + if self._item.parent() is not None: + item = self._item.parent() + + # Go through all items and see if they are a plot. The checks done here are not as thorough + # as GuiUtils.deleteRedundantPlots (which this takes a lot from). Will this cause problems? + # Primary concern is the check (plot_data.plot_role == DataRole.ROLE_DELETABLE) as I don't + # know what it does. The other checks seem to be related to keeping the new plots for that function + tempPlotsToRemove = [] + slicer_type_id = 'Slicer' + self.data0.name + for itemIndex in range(item.rowCount()): + # GuiUtils.plotsFromModel tests if the data is of type Data1D or Data2D to determine + # if it is a plot, so let's try that + if isinstance(item.child(itemIndex).data(), (Data1D, Data2D)): + # First take care of this item, then we'll take care of its children + if hasattr(item.child(itemIndex).data(), 'type_id'): + if slicer_type_id in item.child(itemIndex).data().type_id: + # Store this plot to be removed later. Removing now + # will cause the next plot to be skipped + tempPlotsToRemove.append(item.child(itemIndex)) + # It looks like the slicers are children of items that do not have data of instance Data1D or Data2D. + # Now do the children (1 level deep as is done in GuiUtils.plotsFromModel). Note that the slicers always + # seem to be the first entry (index2 == 0) + for itemIndex2 in range(item.child(itemIndex).rowCount()): + # Repeat what we did above (these if statements could probably be combined + # into one, but I'm not confident enough with how these work to say it wouldn't + # have issues if combined) + if isinstance(item.child(itemIndex).child(itemIndex2).data(), (Data1D, Data2D)): + if hasattr(item.child(itemIndex).child(itemIndex2).data(), 'type_id'): + if slicer_type_id in item.child(itemIndex).child(itemIndex2).data().type_id: + # Remove the parent since each slicer seems to generate a new entry in item + tempPlotsToRemove.append(item.child(itemIndex)) + # Remove all the parent plots with matching criteria + for plot in tempPlotsToRemove: + item.removeRow(plot.row()) + # Delete the temporary list of plots to remove + del tempPlotsToRemove + # Create a new slicer self.slicer_z += 1 self.slicer = slicer(self, self.ax, item=self._item, zorder=self.slicer_z) diff --git a/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py b/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py index 72908659f5..6e2c1f07b0 100644 --- a/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py @@ -139,6 +139,7 @@ def _post_data(self, nbins=None): new_plot.yaxis("\\rm{Residuals} ", "/") new_plot.id = "AnnulusPhi" + self.data.name + new_plot.type_id = "Slicer" + self.data.name # Used to remove plots after changing slicer so they don't keep showing up after closed new_plot.is_data = True new_plot.xtransform = "x" new_plot.ytransform = "y" diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index ed049843b3..4fb593c1eb 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -246,6 +246,7 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): #new_plot. = "2daverage" + self.data.name new_plot.id = (self.averager.__name__) + self.data.name + new_plot.type_id = "Slicer" + self.data.name # Used to remove plots after changing slicer so they don't keep showing up after closed new_plot.is_data = True item = self._item if self._item.parent() is not None: diff --git a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py index 42fb22033f..2c653ba73a 100644 --- a/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/SectorSlicer.py @@ -181,6 +181,7 @@ def _post_data(self, nbins=None): new_plot.yaxis("\\rm{Residuals} ", "/") new_plot.id = "SectorQ" + self.data.name + new_plot.type_id = "Slicer" + self.data.name # Used to remove plots after changing slicer so they don't keep showing up after closed new_plot.is_data = True item = self._item if self._item.parent() is not None: diff --git a/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py b/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py index 1424519199..6f75c6f850 100644 --- a/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/WedgeSlicer.py @@ -212,6 +212,7 @@ def _post_data(self, new_sector=None, nbins=None): new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") new_plot.id = str(self.averager.__name__) + self.data.name + new_plot.type_id = "Slicer" + self.data.name # Used to remove plots after changing slicer so they don't keep showing up after closed new_plot.is_data = True item = self._item if self._item.parent() is not None: From ed46cfd0b710ee610b34d69d0d3cc77cfe2fa1c0 Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 21 Jan 2024 11:55:07 -0500 Subject: [PATCH 16/36] Update slicer 2D data when 2D data is changed (should only apply to theoretical 2D patterns) --- src/sas/qtgui/Plotting/Plotter2D.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/sas/qtgui/Plotting/Plotter2D.py b/src/sas/qtgui/Plotting/Plotter2D.py index dee8034b6a..f1e678d798 100644 --- a/src/sas/qtgui/Plotting/Plotter2D.py +++ b/src/sas/qtgui/Plotting/Plotter2D.py @@ -392,6 +392,27 @@ def updateSlicer(self): """ Update slicer plot on Data2D change """ + if not hasattr(self, '_item'): return + item = self._item + if self._item.parent() is not None: + item = self._item.parent() + + # Get all plots for current item + plots = GuiUtils.plotsFromModel("", item) + if plots is None: return + slicer_caption = 'Slicer' + self.data0.name + # See if current item plots contain slicer plot + has_plot = False + for plot in plots: + if not hasattr(plot, 'type_id') or plot.type_id is None: continue + if slicer_caption in plot.type_id: has_plot = True + # return prematurely if no slicer plot found + if not has_plot: return + + # Now that we've identified the right plot, update the 2D data the slicer uses + self.slicer.data = self.data0 + # Replot now that the 2D data is updated + self.slicer._post_data() def setSlicer(self, slicer, reset=True): """ From 0af0b0982c3a3679feea32066b1b87acedf11b2b Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 21 Jan 2024 13:25:53 -0500 Subject: [PATCH 17/36] Fix horizontal double lines not updating when dragged (problem referenced in SlicerExtension_1344 pull request) --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 4fb593c1eb..9d01b0cbe2 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -91,7 +91,7 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non center_x=self.center_x, center_y=self.center_y) - # draw the rectangle and plost the data 1D resulting + # draw the rectangle and plot the data 1D resulting # of averaging data2D self.update() self._post_data() @@ -449,7 +449,7 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, # Center coordinates self.center_x = center_x self.center_y = center_y - # defined end points vertical lignes and their saved values + # defined end points vertical lines and their saved values self.y1 = y + self.center_y self.save_y1 = self.y1 @@ -758,7 +758,7 @@ def move(self, x, y, ev): self.y2 = self.center_y - delta self.half_height = numpy.fabs(self.y1) - self.center_y self.has_move = True - self.base.base.update() + self.base.update() def setCursor(self, x, y): """ From e50bd5b4f4c3d1a38f2e4d81888b3503ea8cc8e3 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Mon, 22 Jan 2024 18:59:26 +0000 Subject: [PATCH 18/36] fix doc strings lost in the merge --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 9d01b0cbe2..51cface3bc 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -437,8 +437,8 @@ def setCursor(self, x, y): class VerticalDoubleLine(BaseInteractor): """ - Draw 2 vertical lines moving in opposite direction and centered on - a point (PointInteractor) + Draw 2 vertical lines that can move symmetrically in opposite directions in x and centered on + a point (PointInteractor). It also defines the left and right y positions of a box. """ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, center_x=0.0, center_y=0.0): @@ -607,7 +607,8 @@ def setCursor(self, x, y): class HorizontalDoubleLine(BaseInteractor): """ - Select an annulus through a 2D plot + Draw 2 vertical lines that can move symmetrically in opposite directions in y and centered on + a point (PointInteractor). It also defines the left and right x positions of a box. """ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, center_x=0.0, center_y=0.0): From 5f0cc3dffb559c65c767aae6a3a9ad6a83b2a8f6 Mon Sep 17 00:00:00 2001 From: Paul Butler Date: Thu, 22 Feb 2024 00:02:07 +0000 Subject: [PATCH 19/36] edit ci file to allow testing of installer which needs the sasdata counterpart --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1623212a35..3407f02e1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,7 +105,7 @@ jobs: - name: Fetch sources for sibling projects run: | - git clone --depth=50 --branch=release_0.9.0 https://github.com/SasView/sasdata.git ../sasdata + git clone --depth=50 --branch=SasData-Counterpart-to-Sasview-SlicerExtension_1344 https://github.com/SasView/sasdata.git ../sasdata git clone --depth=50 --branch=master https://github.com/SasView/sasmodels.git ../sasmodels git clone --depth=50 --branch=master https://github.com/bumps/bumps.git ../bumps From 6e237d1240fdb666314dbc72cf4fc06a759d6162 Mon Sep 17 00:00:00 2001 From: Paul Butler Date: Sun, 10 Mar 2024 03:46:26 +0000 Subject: [PATCH 20/36] Taking care of spurious file changes Changes were made to release 5.0.5 branch and attempted to be reverted 2 years ago. For reasons lost in the mists of time, 3 months later branch 5.0.5 was merged into this branch even though it was based on main and not being released? This led to 4 files from @Dehoni work in a completely different branch becoming part of the changes in this branch compared to main. By usind checkout main --file, I've now updated the offending files with what is currently in main (the base) so that they should no longer be part of the pull request. --- src/sas/sascalc/calculator/sas_gen.py | 78 +- .../data/isolated_skyrmion_V1.omf | 6436 ++++++++++++++++ .../data/isolated_skyrmion_V2.omf | 6440 +++++++++++++++++ test/sascalculator/utest_sas_gen.py | 27 +- 4 files changed, 12929 insertions(+), 52 deletions(-) create mode 100644 test/sascalculator/data/isolated_skyrmion_V1.omf create mode 100644 test/sascalculator/data/isolated_skyrmion_V2.omf diff --git a/src/sas/sascalc/calculator/sas_gen.py b/src/sas/sascalc/calculator/sas_gen.py index 4c7e64f79c..0007a2d63a 100644 --- a/src/sas/sascalc/calculator/sas_gen.py +++ b/src/sas/sascalc/calculator/sas_gen.py @@ -1062,66 +1062,67 @@ def read(self, path): # Reading Header; Segment count ignored s_line = line.split(":", 1) if s_line[0].lower().count("oommf") > 0: - oommf = s_line[1].lstrip() + if len(s_line) < 2: s_line = line.split(" ",1) + oommf = s_line[1].strip() + if s_line[0].lower().count("title") > 0: - title = s_line[1].lstrip() + title = s_line[1].strip() if s_line[0].lower().count("desc") > 0: - desc += s_line[1].lstrip() + desc += s_line[1].strip() desc += '\n' if s_line[0].lower().count("meshtype") > 0: - meshtype = s_line[1].lstrip() + meshtype = s_line[1].strip() if s_line[0].lower().count("meshunit") > 0: - meshunit = s_line[1].lstrip() + meshunit = s_line[1].strip() if meshunit.count("m") < 1: msg = "Error: \n" msg += "We accept only m as meshunit" logging.error(msg) return None if s_line[0].lower().count("xbase") > 0: - xbase = s_line[1].lstrip() + xbase = s_line[1].strip() if s_line[0].lower().count("ybase") > 0: - ybase = s_line[1].lstrip() + ybase = s_line[1].strip() if s_line[0].lower().count("zbase") > 0: - zbase = s_line[1].lstrip() + zbase = s_line[1].strip() if s_line[0].lower().count("xstepsize") > 0: - xstepsize = s_line[1].lstrip() + xstepsize = s_line[1].strip() if s_line[0].lower().count("ystepsize") > 0: - ystepsize = s_line[1].lstrip() + ystepsize = s_line[1].strip() if s_line[0].lower().count("zstepsize") > 0: - zstepsize = s_line[1].lstrip() + zstepsize = s_line[1].strip() if s_line[0].lower().count("xnodes") > 0: - xnodes = s_line[1].lstrip() - #print(s_line[0].lower().count("ynodes")) + xnodes = s_line[1].strip() if s_line[0].lower().count("ynodes") > 0: - ynodes = s_line[1].lstrip() - #print(ynodes) + ynodes = s_line[1].strip() if s_line[0].lower().count("znodes") > 0: - znodes = s_line[1].lstrip() + znodes = s_line[1].strip() if s_line[0].lower().count("xmin") > 0: - xmin = s_line[1].lstrip() + xmin = s_line[1].strip() if s_line[0].lower().count("ymin") > 0: - ymin = s_line[1].lstrip() + ymin = s_line[1].strip() if s_line[0].lower().count("zmin") > 0: - zmin = s_line[1].lstrip() + zmin = s_line[1].strip() if s_line[0].lower().count("xmax") > 0: - xmax = s_line[1].lstrip() + xmax = s_line[1].strip() if s_line[0].lower().count("ymax") > 0: - ymax = s_line[1].lstrip() + ymax = s_line[1].strip() if s_line[0].lower().count("zmax") > 0: - zmax = s_line[1].lstrip() + zmax = s_line[1].strip() if s_line[0].lower().count("valueunit") > 0: - valueunit = s_line[1].lstrip() + valueunit = s_line[1].strip() if valueunit.count("mT") < 1 and valueunit.count("A/m") < 1: msg = "Error: \n" msg += "We accept only mT or A/m as valueunit" logging.error(msg) return None + elif "mT" in valueunit or "A/m" in valueunit: + valueunit = valueunit.split(" ", 1) + valueunit = valueunit[0].strip() if s_line[0].lower().count("valuemultiplier") > 0: - valuemultiplier = s_line[1].lstrip() - if s_line[0].lower().count("valuerangeminmag") > 0: - valuerangeminmag = s_line[1].lstrip() - if s_line[0].lower().count("valuerangemaxmag") > 0: - valuerangemaxmag = s_line[1].lstrip() + valuemultiplier = s_line[1].strip() + else: + valuemultiplier = 1 if s_line[0].lower().count("end") > 0: output.filename = os.path.basename(path) output.oommf = oommf @@ -1144,10 +1145,6 @@ def read(self, path): output.ymax = float(ymax) * METER2ANG output.zmax = float(zmax) * METER2ANG output.valuemultiplier = valuemultiplier - output.valuerangeminmag \ - = mag2sld(float(valuerangeminmag), valueunit) - output.valuerangemaxmag \ - = mag2sld(float(valuerangemaxmag), valueunit) mx = np.reshape(mx, (len(mx),)) my = np.reshape(my, (len(my),)) mz = np.reshape(mz, (len(mz),)) @@ -1422,8 +1419,7 @@ def __init__(self): self.my = None self.mz = None self.valuemultiplier = 1. - self.valuerangeminmag = 0 - self.valuerangemaxmag = 0 + def __str__(self): """ @@ -1456,10 +1452,7 @@ def __str__(self): _str += "zmax: %s [%s]\n" % (str(self.zmax), self.meshunit) _str += "valueunit: %s\n" % self.valueunit _str += "valuemultiplier: %s\n" % str(self.valuemultiplier) - _str += "ValueRangeMinMag:%s [%s]\n" % (str(self.valuerangeminmag), - self.valueunit) - _str += "ValueRangeMaxMag:%s [%s]\n" % (str(self.valuerangemaxmag), - self.valueunit) + return _str def set_m(self, mx, my, mz): @@ -1520,10 +1513,6 @@ def __init__(self, pos_x, pos_y, pos_z, sld_n=None, self.sld_mz = sld_mz self.vol_pix = vol_pix self.data_length = len(pos_x) - #self.sld_m = None - #self.sld_phi = None - #self.sld_theta = None - #self.sld_phi = None self.pix_symbol = None if sld_mx is not None and sld_my is not None and sld_mz is not None: self.set_sldms(sld_mx, sld_my, sld_mz) @@ -1591,11 +1580,6 @@ def set_sldms(self, sld_mx, sld_my, sld_mz): else: self.sld_mz = sld_mz - #sld_m = np.sqrt(sld_mx**2 + sld_my**2 + sld_mz**2) - #if isinstance(sld_m, float): - # self.sld_m = np.full_like(self.pos_x, sld_m) - #else: - # self.sld_m = sld_m def set_pixel_symbols(self, symbol='pixel'): """ diff --git a/test/sascalculator/data/isolated_skyrmion_V1.omf b/test/sascalculator/data/isolated_skyrmion_V1.omf new file mode 100644 index 0000000000..ab6a085c58 --- /dev/null +++ b/test/sascalculator/data/isolated_skyrmion_V1.omf @@ -0,0 +1,6436 @@ +# OOMMF: rectangular mesh v1.0 +# Segment count: 1 +# Begin: Segment +# Begin: Header +# Title: Oxs_MinDriver::Magnetization +# Desc: Oxs vector field output +# Desc: MIF source file: /mnt/ceph/home/h1110371/Desktop/MagneticSasviewTestData/OOMMF_chiraltestcases/INPUT_isolated_sk_DMI_T.mif +# Desc: Iteration: 217, State id: 508 +# Desc: Stage: 0, Stage iteration: 217 +# Desc: Stage simulation time: -1 s +# Desc: Total simulation time: -2 s +# meshtype: rectangular +# meshunit: m +# xbase: 3.7499999999999995e-10 +# ybase: 3.7499999999999995e-10 +# zbase: 1.0000000000000001e-09 +# xstepsize: 7.4999999999999989e-10 +# ystepsize: 7.4999999999999989e-10 +# zstepsize: 2.0000000000000001e-09 +# xnodes: 80 +# ynodes: 80 +# znodes: 1 +# xmin: 0 +# ymin: 0 +# zmin: 0 +# xmax: 5.9999999999999995e-08 +# ymax: 5.9999999999999995e-08 +# zmax: 2.0000000000000001e-09 +# valueunit: A/m +# valuemultiplier: 1 +# ValueRangeMinMag: 1100000.0000000002 +# ValueRangeMaxMag: 1100000.0000000049 +# End: Header +# Begin: Data Text + 505613.03256497299 -505613.03256497299 835889.30044647900 + 497208.51751455298 -222091.36909522599 955750.55003091099 + 516972.83114608598 -84686.423861058996 967247.28041511006 + 538415.14051355200 -28309.924298523802 958805.34241940000 + 553484.35399110895 -7679.4843639339197 950576.71726533899 + 562234.66909616999 -1126.5910102491900 945458.04119432799 + 566750.38216437504 471.54601353310801 942758.60216753895 + 568888.58756020002 588.65734351480603 941469.82342839497 + 569832.13216431299 395.92100159949001 940899.13614565099 + 570222.73231285205 217.74198556480900 940662.52617083304 + 570374.37706612202 107.00276323919600 940570.60263270105 + 570429.14200834802 48.542762271428501 940537.39510517102 + 570447.14829199505 20.605691551528501 940526.47521531000 + 570452.25323402602 8.2151789026132995 940523.37914202502 + 570453.28997414804 3.0638914400968100 940522.75036188401 + 570453.26167212904 1.0539543261142901 940522.76753224805 + 570453.06853465096 0.32303356018825202 940522.88467601698 + 570452.92179180204 0.080089491998127704 940522.97367963800 + 570452.83872587106 0.0096878153007130194 940523.02406139695 + 570452.79791293200 -0.0054472475746066597 940523.04881555599 + 570452.77970908198 -0.0058435385309752799 940523.05985668499 + 570452.77227435203 -0.0037056891555907801 940523.06436605100 + 570452.76938541199 -0.0019191494091221101 940523.06611827097 + 570452.76836527605 -0.0010062074508062099 940523.06673701096 + 570452.76797587401 -0.00032227817295622899 940523.06697319401 + 570452.76790761796 -0.00010268247672870000 940523.06701459305 + 570452.76792816096 0.00015690702668043100 940523.06700213300 + 570452.76800308202 0.00013246648119156300 940523.06695669203 + 570452.76798202703 9.1783358464866201e-05 940523.06696946197 + 570452.76788044104 1.7695212866989602e-05 940523.06703107699 + 570452.76770393096 -1.4796940617085400e-05 940523.06713813497 + 570452.76758386800 7.3960538883075698e-05 940523.06721095601 + 570452.76756542700 0.00012875110165027899 940523.06722214201 + 570452.76761575299 0.00014723384625272900 940523.06719161803 + 570452.76765581104 9.2187255809757996e-05 940523.06716732099 + 570452.76760803198 -1.6183215299466200e-05 940523.06719630002 + 570452.76752436894 2.9019043092274499e-06 940523.06724704395 + 570452.76745759603 -2.9124629692206199e-05 940523.06728754402 + 570452.76746375696 7.4453250192682707e-05 940523.06728380802 + 570452.76749017602 -2.0764946897581401e-05 940523.06726778299 + 570452.76749017602 2.0765060471172901e-05 940523.06726778299 + 570452.76746375603 -7.4453323147286599e-05 940523.06728380697 + 570452.76745759603 2.9124409691777500e-05 940523.06728754402 + 570452.76752436894 -2.9018740874983398e-06 940523.06724704395 + 570452.76760803198 1.6183407364445999e-05 940523.06719630002 + 570452.76765581104 -9.2187218538009497e-05 940523.06716732099 + 570452.76761575299 -0.00014723386272654499 940523.06719161803 + 570452.76756542700 -0.00012875112642177800 940523.06722214201 + 570452.76758386800 -7.3960616923196397e-05 940523.06721095601 + 570452.76770393096 1.4796906071586200e-05 940523.06713813497 + 570452.76788044104 -1.7695182110059901e-05 940523.06703107699 + 570452.76798202703 -9.1783399099628100e-05 940523.06696946302 + 570452.76800308202 -0.00013246644118840900 940523.06695669203 + 570452.76792816096 -0.00015690701271163699 940523.06700213300 + 570452.76790761796 0.00010268247694842799 940523.06701459305 + 570452.76797587401 0.00032227828312794303 940523.06697319401 + 570452.76836527605 0.0010062074172747300 940523.06673701096 + 570452.76938541199 0.0019191494594074400 940523.06611827097 + 570452.77227435203 0.0037056890715523299 940523.06436605100 + 570452.77970908198 0.0058435383760564296 940523.05985668499 + 570452.79791293095 0.0054472477025430798 940523.04881555599 + 570452.83872587106 -0.0096878152481715708 940523.02406139695 + 570452.92179180204 -0.080089491972315505 940522.97367963800 + 570453.06853465096 -0.32303356017848300 940522.88467601698 + 570453.26167212904 -1.0539543262164000 940522.76753224805 + 570453.28997414804 -3.0638914400439101 940522.75036188401 + 570452.25323402602 -8.2151789025776392 940523.37914202502 + 570447.14829199505 -20.605691551580701 940526.47521531105 + 570429.14200834802 -48.542762271445703 940537.39510517102 + 570374.37706612202 -107.00276323919000 940570.60263270000 + 570222.73231285205 -217.74198556476000 940662.52617083304 + 569832.13216431299 -395.92100159952298 940899.13614565099 + 568888.58756020002 -588.65734351488197 941469.82342839497 + 566750.38216437504 -471.54601353315297 942758.60216753895 + 562234.66909616999 1126.5910102491700 945458.04119432799 + 553484.35399110895 7679.4843639338696 950576.71726533899 + 538415.14051355200 28309.924298523802 958805.34241940104 + 516972.83114608598 84686.423861059098 967247.28041511006 + 497208.51751455298 222091.36909522701 955750.55003091099 + 505613.03256497299 505613.03256497299 835889.30044647900 + 222091.36909522701 -497208.51751455298 955750.55003091099 + 210241.42783246501 -210241.42783246501 1059054.8069131901 + 220293.14511020100 -81823.679189841700 1074604.9579921400 + 233869.41533837101 -29717.441485535801 1074440.3055734800 + 244186.94871026301 -9864.6579728676606 1072508.9382390501 + 250503.08151533501 -2825.1361595308399 1071093.0047185500 + 253914.20652139900 -574.89580371037698 1070293.0651094699 + 255602.00112930001 22.906474370043700 1069891.4040658500 + 256381.55550723200 116.34596073457099 1069704.8585751599 + 256720.86050067499 88.930714368216798 1069623.4813592699 + 256860.54241596299 51.117837445659902 1069589.9490630699 + 256914.86176917201 25.626353916999498 1069576.9038014100 + 256934.67468384601 11.736982198797000 1069572.1447416900 + 256941.33966868601 5.0006042956815699 1069570.5436969800 + 256943.32862485401 1.9925942827585399 1069570.0659008799 + 256943.79939859500 0.73944471480091700 1069569.9528081701 + 256943.84442139801 0.25153096363837502 1069569.9419925199 + 256943.80344049199 0.075128325128700796 1069569.9518374300 + 256943.76454259900 0.017410155082451900 1069569.9611819100 + 256943.74104813300 0.0011936104512466300 1069569.9668260100 + 256943.72918822200 -0.0019614156130353601 1069569.9696751300 + 256943.72379700901 -0.0016752206534132699 1069569.9709702600 + 256943.72149191899 -0.0010865247387291700 1069569.9715240200 + 256943.72049701901 -0.00043949369236302699 1069569.9717630199 + 256943.72011626299 -0.00024450148457419500 1069569.9718544900 + 256943.71988771300 8.5075128608172405e-05 1069569.9719094001 + 256943.71994872100 8.5906363839524996e-05 1069569.9718947399 + 256943.71989812099 0.00018219356873143801 1069569.9719068999 + 256943.71999688199 8.9198122046787196e-05 1069569.9718831701 + 256943.71988307699 7.7686769050395701e-05 1069569.9719105100 + 256943.71987001199 2.6106149822719600e-05 1069569.9719136499 + 256943.71979478901 0.00010156034591347600 1069569.9719317199 + 256943.71986022301 7.1468895126349400e-05 1069569.9719159999 + 256943.71993696599 0.00015979775467880099 1069569.9718975599 + 256943.72000685200 3.6204543352891999e-06 1069569.9718807701 + 256943.72001638700 9.3206003118297506e-05 1069569.9718784799 + 256943.71996960399 -8.4679266347002200e-05 1069569.9718897201 + 256943.71995093700 0.00010687156818589200 1069569.9718942100 + 256943.71995565799 -6.9389440748563700e-05 1069569.9718930700 + 256943.71998433000 0.00011455874677285500 1069569.9718861801 + 256943.71998433000 -0.00011455870404804200 1069569.9718861801 + 256943.71995565799 6.9389372052898793e-05 1069569.9718930700 + 256943.71995093700 -0.00010687160390152300 1069569.9718942100 + 256943.71996960399 8.4679241193109803e-05 1069569.9718897201 + 256943.72001638700 -9.3205935966817003e-05 1069569.9718784799 + 256943.72000685200 -3.6204165196995501e-06 1069569.9718807701 + 256943.71993696599 -0.00015979772137361000 1069569.9718975599 + 256943.71986022199 -7.1468898620623403e-05 1069569.9719159999 + 256943.71979478901 -0.00010156033760272800 1069569.9719317199 + 256943.71987001199 -2.6106237009280800e-05 1069569.9719136499 + 256943.71988307699 -7.7686828441328505e-05 1069569.9719105100 + 256943.71999688199 -8.9198064441241902e-05 1069569.9718831701 + 256943.71989812099 -0.00018219356828588600 1069569.9719068999 + 256943.71994872100 -8.5906375773392194e-05 1069569.9718947399 + 256943.71988771300 -8.5075121951411095e-05 1069569.9719094001 + 256943.72011626299 0.00024450156555725402 1069569.9718544900 + 256943.72049701901 0.00043949374286180798 1069569.9717630199 + 256943.72149191899 0.0010865247061261200 1069569.9715240200 + 256943.72379700901 0.0016752205275333500 1069569.9709702600 + 256943.72918822200 0.0019614155981456001 1069569.9696751300 + 256943.74104813300 -0.0011936104014081900 1069569.9668260100 + 256943.76454259900 -0.017410155101450699 1069569.9611819100 + 256943.80344049199 -0.075128325072534599 1069569.9518374300 + 256943.84442139801 -0.25153096362824701 1069569.9419925199 + 256943.79939859500 -0.73944471482767504 1069569.9528081701 + 256943.32862485401 -1.9925942827036800 1069570.0659008799 + 256941.33966868601 -5.0006042956568404 1069570.5436969800 + 256934.67468384601 -11.736982198828100 1069572.1447416900 + 256914.86176917201 -25.626353917077900 1069576.9038014100 + 256860.54241596299 -51.117837445692203 1069589.9490630699 + 256720.86050067499 -88.930714368186401 1069623.4813592699 + 256381.55550723200 -116.34596073458400 1069704.8585751599 + 255602.00112930001 -22.906474370060401 1069891.4040658500 + 253914.20652139900 574.89580371042098 1070293.0651094699 + 250503.08151533501 2825.1361595308899 1071093.0047185500 + 244186.94871026301 9864.6579728676406 1072508.9382390501 + 233869.41533837101 29717.441485535801 1074440.3055734800 + 220293.14511020100 81823.679189841801 1074604.9579921400 + 210241.42783246501 210241.42783246501 1059054.8069131901 + 222091.36909522599 497208.51751455298 955750.55003091099 + 84686.423861059098 -516972.83114608598 967247.28041511006 + 81823.679189841700 -220293.14511020100 1074604.9579921400 + 87858.202385179495 -87858.202385179495 1092960.1422500701 + 95205.303710473003 -33756.246881396000 1095352.2109083801 + 100877.04548248200 -12503.269935447101 1095293.3351096599 + 104473.43719866400 -4424.1713034656505 1095018.5969325700 + 106497.75808955300 -1469.9800051828499 1094831.5243363599 + 107545.32155349400 -443.83872732058899 1094730.0154920099 + 108053.08187546099 -112.52868469707801 1094680.0988574300 + 108286.04538144900 -17.390582485729301 1094657.0842383499 + 108387.80530071299 4.1011902100998201 1094647.0132628500 + 108430.22653964300 5.7872784899109604 1094642.8120346200 + 108447.09563824401 3.7503483809300100 1094641.1409377800 + 108453.47003991299 1.9430522079443999 1094640.5094059501 + 108455.73927964800 0.88752617430861103 1094640.2845759499 + 108456.48692050000 0.36843131533359302 1094640.2105005700 + 108456.70614902901 0.13929273133196901 1094640.1887795301 + 108456.75779230900 0.047231092312313899 1094640.1836627300 + 108456.76297030800 0.013487418491596801 1094640.1831497001 + 108456.75913676900 0.0025377642627772402 1094640.1835295199 + 108456.75535104101 -0.00020539157718373101 1094640.1839046101 + 108456.75305770400 -0.00065796167290384905 1094640.1841318400 + 108456.75186881200 -0.00040984362670278202 1094640.1842496300 + 108456.75125848800 -0.00020314951536830100 1094640.1843101000 + 108456.75094122200 -3.7852329940942402e-05 1094640.1843415401 + 108456.75086249100 7.4595051604945401e-05 1094640.1843493399 + 108456.75081922900 0.00013273222955262001 1094640.1843536200 + 108456.75092014100 9.8729243182443905e-05 1094640.1843436300 + 108456.75094179400 0.00013077971323459999 1094640.1843414800 + 108456.75101476299 -7.1904415560548600e-06 1094640.1843342499 + 108456.75099806501 9.4186006307523198e-05 1094640.1843359000 + 108456.75106543100 -4.4031637094526900e-05 1094640.1843292301 + 108456.75110666300 0.00011831100970977000 1094640.1843251500 + 108456.75122494600 -4.0557907387135900e-05 1094640.1843134300 + 108456.75127144200 9.1446117296984603e-05 1094640.1843088199 + 108456.75132053001 -7.5142761350856295e-05 1094640.1843039601 + 108456.75129831499 6.1157606070475799e-05 1094640.1843061601 + 108456.75130777300 -5.6584053476048397e-05 1094640.1843052199 + 108456.75131118001 7.7753441680833698e-05 1094640.1843048800 + 108456.75133247100 -5.0538418555948801e-05 1094640.1843027701 + 108456.75133247100 5.0538434459993599e-05 1094640.1843027701 + 108456.75131118001 -7.7753456765781799e-05 1094640.1843048800 + 108456.75130777300 5.6584068190565200e-05 1094640.1843052199 + 108456.75129831499 -6.1157599800784897e-05 1094640.1843061601 + 108456.75132053001 7.5142725955181202e-05 1094640.1843039601 + 108456.75127144200 -9.1446078385887304e-05 1094640.1843088199 + 108456.75122494600 4.0557996886443902e-05 1094640.1843134300 + 108456.75110666300 -0.00011831101114813299 1094640.1843251500 + 108456.75106543100 4.4031619082103797e-05 1094640.1843292301 + 108456.75099806501 -9.4186040634595998e-05 1094640.1843359000 + 108456.75101476299 7.1904064132635696e-06 1094640.1843342499 + 108456.75094179400 -0.00013077970241162499 1094640.1843414800 + 108456.75092014100 -9.8729286746224593e-05 1094640.1843436300 + 108456.75081922900 -0.00013273228024977401 1094640.1843536200 + 108456.75086249100 -7.4595144787263301e-05 1094640.1843493399 + 108456.75094122200 3.7852431139373900e-05 1094640.1843415401 + 108456.75125848800 0.00020314958856087299 1094640.1843101000 + 108456.75186881200 0.00040984354107293999 1094640.1842496300 + 108456.75305770400 0.00065796166287468297 1094640.1841318400 + 108456.75535104101 0.00020539155025095201 1094640.1839046101 + 108456.75913676900 -0.0025377642519091902 1094640.1835295199 + 108456.76297030800 -0.013487418471664001 1094640.1831497001 + 108456.75779230900 -0.047231092291464903 1094640.1836627300 + 108456.70614902901 -0.13929273133195899 1094640.1887795301 + 108456.48692050000 -0.36843131541044599 1094640.2105005700 + 108455.73927964800 -0.88752617435455805 1094640.2845759499 + 108453.47003991299 -1.9430522078639700 1094640.5094059501 + 108447.09563824401 -3.7503483808617499 1094641.1409377800 + 108430.22653964300 -5.7872784899190997 1094642.8120346200 + 108387.80530071299 -4.1011902100507100 1094647.0132628500 + 108286.04538144900 17.390582485752699 1094657.0842383499 + 108053.08187546099 112.52868469694100 1094680.0988574300 + 107545.32155349400 443.83872732057603 1094730.0154920099 + 106497.75808955300 1469.9800051829900 1094831.5243363599 + 104473.43719866400 4424.1713034656304 1095018.5969325700 + 100877.04548248200 12503.269935447001 1095293.3351096599 + 95205.303710473003 33756.246881396102 1095352.2109083801 + 87858.202385179495 87858.202385179495 1092960.1422500701 + 81823.679189841801 220293.14511020100 1074604.9579921400 + 84686.423861058996 516972.83114608598 967247.28041511006 + 28309.924298523900 -538415.14051355200 958805.34241940104 + 29717.441485535801 -233869.41533837101 1074440.3055734800 + 33756.246881396000 -95205.303710473003 1095352.2109083801 + 37720.436059344996 -37720.436059344902 1098705.7556083801 + 40680.305245796699 -14670.826329904199 1099149.6165763400 + 42579.920349020700 -5601.5422506380201 1099161.3044078101 + 43680.464121103803 -2093.3396418230200 1099130.3994446299 + 44271.296391663898 -762.32538647910098 1099108.4892656400 + 44569.840423817303 -269.01893890966602 1099096.6549641599 + 44713.216735599402 -91.327319714766503 1099090.8606245799 + 44779.066405362799 -29.521394446591501 1099088.1831501699 + 44808.097482573598 -8.9428221054962496 1099087.0003416601 + 44820.406802995603 -2.4690018039989199 1099086.4984740401 + 44825.427794789801 -0.58619736610509299 1099086.2937106800 + 44827.394901604297 -0.10096219139900500 1099086.2134820600 + 44828.132527335598 -0.0016697210957409600 1099086.1833969699 + 44828.395411714999 0.0078644853390248699 1099086.1726747400 + 44828.483253325401 0.0034101013875749301 1099086.1690919399 + 44828.510168788001 0.00024852893993079398 1099086.1679941399 + 44828.517147009399 -0.00075397337223224396 1099086.1677095201 + 44828.518541328798 -0.00083290910882206600 1099086.1676526500 + 44828.518315706599 -0.00053651289999056802 1099086.1676618501 + 44828.518177038597 -0.00032196142942048100 1099086.1676675100 + 44828.517937960300 -0.00012931359362561599 1099086.1676772600 + 44828.517921836799 -4.4565186896369499e-05 1099086.1676779201 + 44828.517964555002 2.8589595308558901e-05 1099086.1676761799 + 44828.518011269902 3.6277861223348297e-05 1099086.1676742700 + 44828.518179756204 5.2726748507322797e-05 1099086.1676674001 + 44828.518195817698 3.0671789347934700e-06 1099086.1676667400 + 44828.518318931201 -2.2883958773620199e-06 1099086.1676617200 + 44828.518293684101 -3.0651837120820202e-05 1099086.1676627500 + 44828.518362282201 -3.0452449395404501e-05 1099086.1676599500 + 44828.518373574298 -1.4593517713386900e-05 1099086.1676594899 + 44828.518434801197 -3.4439162155575202e-05 1099086.1676570000 + 44828.518459652099 -4.8806600593256704e-06 1099086.1676559800 + 44828.518471246200 -4.0769551069213999e-05 1099086.1676555099 + 44828.518462669897 1.5213402044720200e-05 1099086.1676558601 + 44828.518453170298 -1.5730131293035200e-05 1099086.1676562501 + 44828.518455861602 4.0868157461914298e-05 1099086.1676561399 + 44828.518461090403 -1.6944256298977198e-05 1099086.1676559199 + 44828.518461090403 1.6944246249445299e-05 1099086.1676559199 + 44828.518455861602 -4.0868142085719603e-05 1099086.1676561399 + 44828.518453170298 1.5730172486952002e-05 1099086.1676562501 + 44828.518462669897 -1.5213442704791600e-05 1099086.1676558601 + 44828.518471246301 4.0769515763354601e-05 1099086.1676555099 + 44828.518459652099 4.8807434966077503e-06 1099086.1676559800 + 44828.518434801197 3.4439186977632399e-05 1099086.1676570000 + 44828.518373574298 1.4593472148117501e-05 1099086.1676594899 + 44828.518362282201 3.0452421051572100e-05 1099086.1676599500 + 44828.518293684203 3.0651818477828097e-05 1099086.1676627500 + 44828.518318931201 2.2884184327093799e-06 1099086.1676617200 + 44828.518195817698 -3.0671969031755700e-06 1099086.1676667400 + 44828.518179756204 -5.2726757193648199e-05 1099086.1676674001 + 44828.518011269902 -3.6277852792836699e-05 1099086.1676742700 + 44828.517964554900 -2.8589616906490000e-05 1099086.1676761799 + 44828.517921836697 4.4565172281978300e-05 1099086.1676779201 + 44828.517937960300 0.00012931361113949699 1099086.1676772600 + 44828.518177038597 0.00032196141990725898 1099086.1676675100 + 44828.518315706599 0.00053651285462573796 1099086.1676618501 + 44828.518541328798 0.00083290913333386397 1099086.1676526500 + 44828.517147009399 0.00075397339072989496 1099086.1677095201 + 44828.510168788001 -0.00024852892834754898 1099086.1679941399 + 44828.483253325401 -0.0034101013999571499 1099086.1690919399 + 44828.395411714999 -0.0078644853412224592 1099086.1726747400 + 44828.132527335598 0.0016697211178603600 1099086.1833969699 + 44827.394901604202 0.10096219144662900 1099086.2134820600 + 44825.427794789699 0.58619736610981399 1099086.2937106800 + 44820.406802995603 2.4690018039553601 1099086.4984740401 + 44808.097482573503 8.9428221054879504 1099087.0003416601 + 44779.066405362799 29.521394446594801 1099088.1831501699 + 44713.216735599402 91.327319714740796 1099090.8606245799 + 44569.840423817397 269.01893890968398 1099096.6549641599 + 44271.296391663796 762.32538647912804 1099108.4892656400 + 43680.464121103803 2093.3396418230100 1099130.3994446299 + 42579.920349020700 5601.5422506380501 1099161.3044078101 + 40680.305245796699 14670.826329904199 1099149.6165763400 + 37720.436059344902 37720.436059344902 1098705.7556083801 + 33756.246881396102 95205.303710473003 1095352.2109083801 + 29717.441485535801 233869.41533837101 1074440.3055734800 + 28309.924298523802 538415.14051355200 958805.34241940000 + 7679.4843639338897 -553484.35399110895 950576.71726533899 + 9864.6579728676406 -244186.94871026301 1072508.9382390501 + 12503.269935447001 -100877.04548248200 1095293.3351096599 + 14670.826329904199 -40680.305245796699 1099149.6165763400 + 16202.377889524800 -16202.377889524900 1099761.3222429000 + 17178.694298120201 -6391.9681731885903 1099847.2781277800 + 17753.134104737299 -2497.6224895647201 1099853.8939838100 + 18069.878628891100 -965.59959062893699 1099851.1477030700 + 18235.327548974401 -368.88774080356302 1099848.7790378300 + 18317.824841091900 -139.10264297601901 1099847.4612161200 + 18357.307175600399 -51.737688564951497 1099846.8105133900 + 18375.513393277499 -18.978860229448699 1099846.5075397301 + 18383.623338977101 -6.8723085910574202 1099846.3721564501 + 18387.118790335098 -2.4622009501555602 1099846.3137441201 + 18388.577201452699 -0.87672683177422095 1099846.2893639901 + 18389.166340708402 -0.31262109806029897 1099846.2795141900 + 18389.396518248999 -0.11269021103017400 1099846.2756656900 + 18389.482813988900 -0.041653909399975202 1099846.2742228301 + 18389.514197501299 -0.015900155264444299 1099846.2736980901 + 18389.524762349600 -0.0063108669402125103 1099846.2735214501 + 18389.528141802599 -0.0026458783370197402 1099846.2734649400 + 18389.529272772801 -0.0010644430608714201 1099846.2734460300 + 18389.529436684901 -0.00049939112280013005 1099846.2734432900 + 18389.529697758899 -0.00021060848148097400 1099846.2734389300 + 18389.529677396898 -0.00012053629380489200 1099846.2734392700 + 18389.529875204498 -6.9531729444218795e-05 1099846.2734359601 + 18389.529907213899 -6.8388464654375004e-05 1099846.2734354299 + 18389.530051879901 -4.0772759932578503e-05 1099846.2734330101 + 18389.530087884701 -7.3305853097656797e-05 1099846.2734324001 + 18389.530137084701 -2.3296838791246599e-05 1099846.2734315800 + 18389.530155678400 -8.4782916555977100e-05 1099846.2734312699 + 18389.530145892699 4.1598326146824698e-07 1099846.2734314301 + 18389.530187769800 -7.7837378025879798e-05 1099846.2734307300 + 18389.530166869099 2.0174084529796002e-05 1099846.2734310799 + 18389.530219315198 -6.5225162467852499e-05 1099846.2734302101 + 18389.530177787201 4.0967063364557100e-05 1099846.2734308999 + 18389.530208002601 -3.2037039993433002e-05 1099846.2734304001 + 18389.530168751699 7.0127489124337605e-05 1099846.2734310499 + 18389.530189684199 -1.4412994743296100e-05 1099846.2734306999 + 18389.530179466499 5.3674485928822301e-05 1099846.2734308699 + 18389.530179466499 -5.3674480274664299e-05 1099846.2734308699 + 18389.530189684199 1.4412991736773701e-05 1099846.2734306999 + 18389.530168751699 -7.0127493759443801e-05 1099846.2734310499 + 18389.530208002700 3.2037021378735999e-05 1099846.2734304001 + 18389.530177787201 -4.0967064532646001e-05 1099846.2734308999 + 18389.530219315300 6.5225201730127597e-05 1099846.2734302101 + 18389.530166869201 -2.0174078005541300e-05 1099846.2734310799 + 18389.530187769800 7.7837420286080197e-05 1099846.2734307300 + 18389.530145892699 -4.1599905348654099e-07 1099846.2734314301 + 18389.530155678400 8.4782866356411594e-05 1099846.2734312699 + 18389.530137084701 2.3296842659948999e-05 1099846.2734315800 + 18389.530087884799 7.3305855602633506e-05 1099846.2734324001 + 18389.530051879799 4.0772764277380500e-05 1099846.2734330101 + 18389.529907213899 6.8388451757297894e-05 1099846.2734354299 + 18389.529875204498 6.9531722053299796e-05 1099846.2734359601 + 18389.529677396898 0.00012053630442900700 1099846.2734392700 + 18389.529697758899 0.00021060847317519899 1099846.2734389300 + 18389.529436684901 0.00049939110486704405 1099846.2734432900 + 18389.529272772801 0.0010644430700449000 1099846.2734460300 + 18389.528141802501 0.0026458783434937100 1099846.2734649400 + 18389.524762349600 0.0063108669302979203 1099846.2735214501 + 18389.514197501299 0.015900155275560199 1099846.2736980901 + 18389.482813988900 0.041653909417325399 1099846.2742228301 + 18389.396518248999 0.11269021099987100 1099846.2756656900 + 18389.166340708300 0.31262109807136101 1099846.2795141900 + 18388.577201452699 0.87672683177958499 1099846.2893639901 + 18387.118790335200 2.4622009501633699 1099846.3137441201 + 18383.623338977101 6.8723085910815902 1099846.3721564501 + 18375.513393277499 18.978860229441800 1099846.5075397301 + 18357.307175600399 51.737688564947298 1099846.8105133900 + 18317.824841091900 139.10264297599801 1099847.4612161200 + 18235.327548974299 368.88774080354500 1099848.7790378300 + 18069.878628891100 965.59959062893995 1099851.1477030700 + 17753.134104737201 2497.6224895647401 1099853.8939838100 + 17178.694298120299 6391.9681731885803 1099847.2781277800 + 16202.377889524900 16202.377889524800 1099761.3222429000 + 14670.826329904199 40680.305245796699 1099149.6165763400 + 12503.269935447001 100877.04548248200 1095293.3351096599 + 9864.6579728676406 244186.94871026301 1072508.9382390501 + 7679.4843639339297 553484.35399110895 950576.71726533899 + 1126.5910102491100 -562234.66909616999 945458.04119432799 + 2825.1361595308899 -250503.08151533501 1071093.0047185500 + 4424.1713034656304 -104473.43719866400 1095018.5969325700 + 5601.5422506380501 -42579.920349020802 1099161.3044078101 + 6391.9681731885903 -17178.694298120201 1099847.2781277800 + 6887.9997576209598 -6887.9997576209698 1099956.8677537700 + 7181.4371892353402 -2747.5229292244499 1099973.1260706601 + 7346.1493202294696 -1090.1558362345399 1099974.9295554000 + 7434.3952887054102 -430.07083172199998 1099974.7928047101 + 7479.7480950394402 -168.61723887291899 1099974.5564951301 + 7502.1991370091800 -65.684665300579695 1099974.4145631900 + 7512.9395358972197 -25.424306548374702 1099974.3429249299 + 7517.9177162713804 -9.7828583506733597 1099974.3091624901 + 7520.1569389283904 -3.7456042193985799 1099974.2938930800 + 7521.1362786820500 -1.4293392462866501 1099974.2872026800 + 7521.5528346868196 -0.54459280829382495 1099974.2843551701 + 7521.7250528154900 -0.20784697523701001 1099974.2831776501 + 7521.7945563205003 -0.079587852916761403 1099974.2827023901 + 7521.8214912767999 -0.030661433588744399 1099974.2825182099 + 7521.8319168626304 -0.011964870260622699 1099974.2824469199 + 7521.8356247869897 -0.0046035471026749097 1099974.2824215600 + 7521.8371369164697 -0.0019056302607076399 1099974.2824112200 + 7521.8375911673602 -0.00075039205435711105 1099974.2824081201 + 7521.8378217850304 -0.00041734170723203200 1099974.2824065399 + 7521.8379440027402 -0.00023156034102334800 1099974.2824057001 + 7521.8379281866701 -0.00018492371570308700 1099974.2824058100 + 7521.8380687889003 -0.00011751985694823799 1099974.2824048500 + 7521.8379766440603 -7.4541264068186605e-05 1099974.2824054800 + 7521.8380968811698 -5.9136473923780297e-05 1099974.2824046600 + 7521.8380046909097 -1.2305865863984800e-05 1099974.2824052901 + 7521.8380618493202 -4.0697622344236997e-05 1099974.2824049001 + 7521.8380207561204 -6.5131794779849500e-06 1099974.2824051799 + 7521.8380401765598 -4.6766997218200200e-05 1099974.2824050500 + 7521.8380589619901 -1.4886990335107401e-05 1099974.2824049201 + 7521.8380569980300 -4.1278427195074203e-05 1099974.2824049301 + 7521.8380913221499 6.1421234736647700e-06 1099974.2824047001 + 7521.8380727777203 2.1178764266517799e-06 1099974.2824048200 + 7521.8380976649996 4.2251328315024702e-05 1099974.2824046500 + 7521.8380858141800 2.1756978491315300e-05 1099974.2824047301 + 7521.8380969630498 2.2916030951375301e-05 1099974.2824046600 + 7521.8380969630398 -2.2916035277185401e-05 1099974.2824046600 + 7521.8380858142000 -2.1756974450385301e-05 1099974.2824047301 + 7521.8380976649996 -4.2251334593628302e-05 1099974.2824046500 + 7521.8380727777103 -2.1178721520188798e-06 1099974.2824048200 + 7521.8380913221299 -6.1421144580585899e-06 1099974.2824047001 + 7521.8380569980300 4.1278422518454902e-05 1099974.2824049301 + 7521.8380589620101 1.4886997191117099e-05 1099974.2824049201 + 7521.8380401765598 4.6766997938594403e-05 1099974.2824050500 + 7521.8380207561804 6.5131774001077696e-06 1099974.2824051799 + 7521.8380618493002 4.0697629666862101e-05 1099974.2824049001 + 7521.8380046909197 1.2305859265676400e-05 1099974.2824052901 + 7521.8380968811498 5.9136476905895401e-05 1099974.2824046600 + 7521.8379766440803 7.4541263422428405e-05 1099974.2824054800 + 7521.8380687888903 0.00011751984779231000 1099974.2824048500 + 7521.8379281866701 0.00018492371893794699 1099974.2824058100 + 7521.8379440027302 0.00023156033292661099 1099974.2824057001 + 7521.8378217850504 0.00041734170892595201 1099974.2824065399 + 7521.8375911673402 0.00075039206040880102 1099974.2824081201 + 7521.8371369164597 0.0019056302529140000 1099974.2824112200 + 7521.8356247869897 0.0046035470991605499 1099974.2824215600 + 7521.8319168626203 0.011964870261493100 1099974.2824469199 + 7521.8214912767698 0.030661433590713699 1099974.2825182099 + 7521.7945563205203 0.079587852912135507 1099974.2827023901 + 7521.7250528154900 0.20784697524528400 1099974.2831776501 + 7521.5528346867904 0.54459280829409695 1099974.2843551701 + 7521.1362786820700 1.4293392462902299 1099974.2872026800 + 7520.1569389283704 3.7456042194073600 1099974.2938930800 + 7517.9177162714104 9.7828583506717894 1099974.3091624901 + 7512.9395358972197 25.424306548380400 1099974.3429249299 + 7502.1991370092001 65.684665300573300 1099974.4145631900 + 7479.7480950394502 168.61723887291100 1099974.5564951301 + 7434.3952887054002 430.07083172199100 1099974.7928047101 + 7346.1493202294496 1090.1558362345500 1099974.9295554000 + 7181.4371892353502 2747.5229292244398 1099973.1260706601 + 6887.9997576209698 6887.9997576209598 1099956.8677537700 + 6391.9681731885803 17178.694298120201 1099847.2781277800 + 5601.5422506380100 42579.920349020700 1099161.3044078101 + 4424.1713034656004 104473.43719866400 1095018.5969325700 + 2825.1361595308299 250503.08151533501 1071093.0047185500 + 1126.5910102491700 562234.66909616999 945458.04119432799 +-471.54601353318600 -566750.38216437504 942758.60216753895 + 574.89580371040904 -253914.20652139900 1070293.0651094699 + 1469.9800051829700 -106497.75808955300 1094831.5243363599 + 2093.3396418229700 -43680.464121103803 1099130.3994446299 + 2497.6224895647401 -17753.134104737201 1099853.8939838100 + 2747.5229292244599 -7181.4371892353302 1099973.1260706601 + 2895.4180510065298 -2895.4180510065398 1099992.3786593301 + 2979.3942081052001 -1163.8750305940100 1099995.3493561100 + 3025.2496788486201 -466.38819858088499 1099995.7410583100 + 3049.3929388975198 -186.26682963526000 1099995.7574951700 + 3061.6816609684101 -74.128646129476707 1099995.7366328100 + 3067.7432432310602 -29.394691086486901 1099995.7218495600 + 3070.6464507933902 -11.615088467107000 1099995.7140805000 + 3071.9990774051598 -4.5751119480526796 1099995.7103556099 + 3072.6132968070301 -1.7971584307821900 1099995.7086481301 + 3072.8851592193500 -0.70461630618200299 1099995.7078899499 + 3073.0024363799498 -0.27591488274285297 1099995.7075625099 + 3073.0522226251801 -0.10800494169443600 1099995.7074234500 + 3073.0725729324399 -0.042344263849473401 1099995.7073666099 + 3073.0809462038201 -0.016589145718099399 1099995.7073432100 + 3073.0844304094599 -0.0065831304086627299 1099995.7073334800 + 3073.0855312342101 -0.0026989839931418798 1099995.7073304099 + 3073.0862960807699 -0.0011943717160451200 1099995.7073282700 + 3073.0862382754299 -0.00059668359615837796 1099995.7073284299 + 3073.0865005925998 -0.00028366089754275998 1099995.7073277000 + 3073.0863085950300 -0.00017284711246918100 1099995.7073282299 + 3073.0864117889901 -2.7954755810383199e-05 1099995.7073279400 + 3073.0862786294201 -3.0799230612686602e-05 1099995.7073283200 + 3073.0863041342000 4.4324235964441601e-05 1099995.7073282499 + 3073.0862401132199 -2.0132432341619899e-05 1099995.7073284199 + 3073.0862407832201 8.0615066482699598e-06 1099995.7073284199 + 3073.0862380159201 -6.4563450941360097e-05 1099995.7073284299 + 3073.0862390858601 -4.3512755240701900e-05 1099995.7073284299 + 3073.0862846948498 -9.0009195060658704e-05 1099995.7073283000 + 3073.0862822399799 -4.3718794319697803e-05 1099995.7073283100 + 3073.0863386306601 -4.8156123922700299e-05 1099995.7073281500 + 3073.0863245582000 1.5237850591072799e-05 1099995.7073281901 + 3073.0863652399798 1.3916858410354900e-05 1099995.7073280700 + 3073.0863531225200 4.2122667670905001e-05 1099995.7073281100 + 3073.0863686301500 3.5386816204158198e-06 1099995.7073280700 + 3073.0863686301500 -3.5386845580747199e-06 1099995.7073280700 + 3073.0863531225100 -4.2122671998575601e-05 1099995.7073281100 + 3073.0863652399798 -1.3916851344876000e-05 1099995.7073280700 + 3073.0863245581900 -1.5237849562963500e-05 1099995.7073281901 + 3073.0863386306701 4.8156122140882699e-05 1099995.7073281500 + 3073.0862822399899 4.3718797159278600e-05 1099995.7073283100 + 3073.0862846948498 9.0009196795502296e-05 1099995.7073283000 + 3073.0862390858701 4.3512757228486802e-05 1099995.7073284299 + 3073.0862380159201 6.4563454949831902e-05 1099995.7073284299 + 3073.0862407832301 -8.0615109068171507e-06 1099995.7073284199 + 3073.0862401132199 2.0132435439659600e-05 1099995.7073284199 + 3073.0863041342000 -4.4324234710447602e-05 1099995.7073282499 + 3073.0862786294301 3.0799224524254197e-05 1099995.7073283200 + 3073.0864117889801 2.7954757917289700e-05 1099995.7073279400 + 3073.0863085950300 0.00017284710917364000 1099995.7073282299 + 3073.0865005925998 0.00028366089619503401 1099995.7073277000 + 3073.0862382754199 0.00059668359287678703 1099995.7073284299 + 3073.0862960807799 0.0011943717176361301 1099995.7073282700 + 3073.0855312342101 0.0026989839948640499 1099995.7073304099 + 3073.0844304094599 0.0065831304027972899 1099995.7073334800 + 3073.0809462038301 0.016589145721185999 1099995.7073432100 + 3073.0725729324399 0.042344263850642702 1099995.7073666099 + 3073.0522226251801 0.10800494169416200 1099995.7074234500 + 3073.0024363799498 0.27591488275043702 1099995.7075625099 + 3072.8851592193600 0.70461630617342097 1099995.7078899499 + 3072.6132968070301 1.7971584307817501 1099995.7086481301 + 3071.9990774051598 4.5751119480569002 1099995.7103556099 + 3070.6464507933902 11.615088467107601 1099995.7140805000 + 3067.7432432310702 29.394691086488901 1099995.7218495600 + 3061.6816609684201 74.128646129467100 1099995.7366328100 + 3049.3929388975198 186.26682963526400 1099995.7574951700 + 3025.2496788486201 466.38819858089300 1099995.7410583100 + 2979.3942081052001 1163.8750305940000 1099995.3493561100 + 2895.4180510065398 2895.4180510065398 1099992.3786593301 + 2747.5229292244499 7181.4371892353402 1099973.1260706601 + 2497.6224895647301 17753.134104737201 1099853.8939838100 + 2093.3396418230200 43680.464121103803 1099130.3994446299 + 1469.9800051829500 106497.75808955300 1094831.5243363599 + 574.89580371038505 253914.20652139900 1070293.0651094699 +-471.54601353315797 566750.38216437504 942758.60216753895 +-588.65734351488300 -568888.58756020002 941469.82342839497 +-22.906474370070601 -255602.00112930001 1069891.4040658500 + 443.83872732058501 -107545.32155349400 1094730.0154920099 + 762.32538647912804 -44271.296391663796 1099108.4892656400 + 965.59959062894302 -18069.878628891100 1099851.1477030700 + 1090.1558362345600 -7346.1493202294496 1099974.9295554000 + 1163.8750305940100 -2979.3942081051900 1099995.3493561100 + 1206.0763927412399 -1206.0763927412499 1099998.6776171499 + 1229.4596298924500 -487.33480089428599 1099999.2049696301 + 1242.0128257548299 -196.53659385435401 1099999.2812622699 + 1248.5514814685500 -79.097823056792095 1099999.2885737401 + 1251.8605071807201 -31.764749477064100 1099999.2871980700 + 1253.4900274301301 -12.728364178795299 1099999.2857273801 + 1254.2724727472300 -5.0892998288032798 1099999.2848973400 + 1254.6388922451599 -2.0308734742087799 1099999.2844893700 + 1254.8064515592300 -0.80890237027092105 1099999.2842998200 + 1254.8816857001500 -0.32176460079597202 1099999.2842142400 + 1254.9145305517600 -0.12781715853190900 1099999.2841768099 + 1254.9288172655199 -0.050787228487492300 1099999.2841605200 + 1254.9348534814701 -0.020239190963766501 1099999.2841536400 + 1254.9373106300100 -0.0081832741965454196 1099999.2841508300 + 1254.9383765893299 -0.0033389526438552500 1099999.2841496200 + 1254.9386873667600 -0.0014155300054024501 1099999.2841492600 + 1254.9389023943600 -0.00054365161139341596 1099999.2841490200 + 1254.9387511062801 -0.00023495215873708600 1099999.2841491899 + 1254.9389092991901 -2.5112684041610301e-05 1099999.2841490100 + 1254.9386671046400 -1.1178673078524601e-05 1099999.2841492901 + 1254.9388528101999 4.9774045885301402e-06 1099999.2841490700 + 1254.9386622346201 -2.1279077814976498e-06 1099999.2841492901 + 1254.9388318237300 -4.6158395503955697e-05 1099999.2841491001 + 1254.9387265806899 -4.2471131191121199e-05 1099999.2841492200 + 1254.9388334907301 -9.7218475309683298e-05 1099999.2841491001 + 1254.9388175146901 -6.4944946099226503e-05 1099999.2841491101 + 1254.9388571447500 -0.00010718754194465800 1099999.2841490700 + 1254.9388963563399 -2.9844541818249799e-05 1099999.2841490200 + 1254.9388875776699 -5.2595960595332499e-05 1099999.2841490300 + 1254.9389335131100 5.8302492719288803e-05 1099999.2841489799 + 1254.9389075457900 4.9733327949299901e-06 1099999.2841490100 + 1254.9389344356300 8.9919825478700495e-05 1099999.2841489799 + 1254.9389221072699 -2.5913980963605699e-05 1099999.2841490000 + 1254.9389221072699 2.5913980532686100e-05 1099999.2841490000 + 1254.9389344356300 -8.9919826705074003e-05 1099999.2841489799 + 1254.9389075457900 -4.9733339934157698e-06 1099999.2841490100 + 1254.9389335131100 -5.8302492838763999e-05 1099999.2841489799 + 1254.9388875776699 5.2595960938160600e-05 1099999.2841490300 + 1254.9388963563399 2.9844545179178800e-05 1099999.2841490200 + 1254.9388571447600 0.00010718754097028300 1099999.2841490700 + 1254.9388175146901 6.4944948298748697e-05 1099999.2841491101 + 1254.9388334907301 9.7218476310304298e-05 1099999.2841491001 + 1254.9387265806999 4.2471132176753999e-05 1099999.2841492200 + 1254.9388318237300 4.6158395900039200e-05 1099999.2841491001 + 1254.9386622346301 2.1279037944101702e-06 1099999.2841492901 + 1254.9388528101999 -4.9774039078981699e-06 1099999.2841490700 + 1254.9386671046500 1.1178672620121500e-05 1099999.2841492901 + 1254.9389092991901 2.5112683097842400e-05 1099999.2841490100 + 1254.9387511062801 0.00023495215690590699 1099999.2841491899 + 1254.9389023943600 0.00054365161358474901 1099999.2841490200 + 1254.9386873667600 0.0014155300045916601 1099999.2841492600 + 1254.9383765893299 0.0033389526436055001 1099999.2841496200 + 1254.9373106300100 0.0081832741968331808 1099999.2841508300 + 1254.9348534814701 0.020239190960365399 1099999.2841536400 + 1254.9288172655199 0.050787228487058501 1099999.2841605200 + 1254.9145305517600 0.12781715853296299 1099999.2841768099 + 1254.8816857001500 0.32176460079210900 1099999.2842142400 + 1254.8064515592400 0.80890237026866796 1099999.2842998200 + 1254.6388922451399 2.0308734742119099 1099999.2844893700 + 1254.2724727472400 5.0892998288068698 1099999.2848973400 + 1253.4900274301301 12.728364178795800 1099999.2857273801 + 1251.8605071807301 31.764749477062900 1099999.2871980700 + 1248.5514814685400 79.097823056794297 1099999.2885737401 + 1242.0128257548299 196.53659385435299 1099999.2812622699 + 1229.4596298924500 487.33480089427900 1099999.2049696301 + 1206.0763927412499 1206.0763927412499 1099998.6776171499 + 1163.8750305940000 2979.3942081052001 1099995.3493561100 + 1090.1558362345500 7346.1493202294696 1099974.9295554000 + 965.59959062894995 18069.878628891001 1099851.1477030700 + 762.32538647912202 44271.296391663796 1099108.4892656400 + 443.83872732064901 107545.32155349400 1094730.0154920099 +-22.906474370007700 255602.00112930001 1069891.4040658500 +-588.65734351480205 568888.58756020002 941469.82342839497 +-395.92100159948802 -569832.13216431299 940899.13614565099 +-116.34596073465600 -256381.55550723200 1069704.8585751599 + 112.52868469700201 -108053.08187546200 1094680.0988574300 + 269.01893890967500 -44569.840423817303 1099096.6549641599 + 368.88774080353198 -18235.327548974299 1099848.7790378300 + 430.07083172199299 -7434.3952887054002 1099974.7928047101 + 466.38819858089499 -3025.2496788486101 1099995.7410583100 + 487.33480089428701 -1229.4596298924400 1099999.2049696301 + 499.08282967321901 -499.08282967322100 1099999.7735602800 + 505.49249081710099 -202.36223880096301 1099999.8652394800 + 508.89630551100902 -81.950451848528900 1099999.8792312101 + 510.65696811554301 -33.143619709048401 1099999.8809686101 + 511.54509761350101 -13.385872904399200 1099999.8809738299 + 511.98266166574598 -5.3984993675397099 1099999.8808384500 + 512.19307894301903 -2.1740912034591799 1099999.8807516000 + 512.29221202246401 -0.87440775745921095 1099999.8807072300 + 512.33818813143705 -0.35122206579389498 1099999.8806861099 + 512.35879434737706 -0.14096912864846400 1099999.8806765601 + 512.36813818279597 -0.056549327630295299 1099999.8806722199 + 512.37217869786298 -0.022773806051572101 1099999.8806703300 + 512.37375689670796 -0.0090921225541990801 1099999.8806696001 + 512.37458556071795 -0.0036835260012165198 1099999.8806692101 + 512.37468913297505 -0.0014061130065566899 1099999.8806691701 + 512.37484016864005 -0.00053418662268540505 1099999.8806690900 + 512.37483841643598 -0.00023831315532820899 1099999.8806691000 + 512.37480074005896 -9.6072454885087806e-05 1099999.8806691100 + 512.37494359469201 -0.00011935926554224400 1099999.8806690499 + 512.37484259370103 -3.0334065436657799e-05 1099999.8806690900 + 512.37504134004701 -7.1967926919170200e-05 1099999.8806690001 + 512.37492067321000 -1.9595712054481700e-05 1099999.8806690599 + 512.37507192418002 -4.1799543964834200e-05 1099999.8806689901 + 512.37496774297404 -3.8923441082349600e-05 1099999.8806690399 + 512.37505297612302 -4.9078993940464798e-05 1099999.8806690001 + 512.37498379994895 -3.9936242579052601e-05 1099999.8806690299 + 512.37502531019300 -2.9868902843536199e-05 1099999.8806690101 + 512.37497949419901 2.0828028729851398e-05 1099999.8806690299 + 512.37499475846096 3.6769449078193103e-05 1099999.8806690201 + 512.37496263753599 7.9634225792330894e-05 1099999.8806690399 + 512.37496533952503 4.6706336522176299e-05 1099999.8806690399 + 512.37495292745496 3.7801668413102800e-05 1099999.8806690399 + 512.37495292745496 -3.7801667514096900e-05 1099999.8806690399 + 512.37496533952606 -4.6706336313530000e-05 1099999.8806690399 + 512.37496263753303 -7.9634227125414007e-05 1099999.8806690399 + 512.37499475846096 -3.6769449395359501e-05 1099999.8806690201 + 512.37497949419696 -2.0828027047577199e-05 1099999.8806690299 + 512.37502531019095 2.9868902209065401e-05 1099999.8806690101 + 512.37498379995100 3.9936242157070300e-05 1099999.8806690299 + 512.37505297611995 4.9078993605835101e-05 1099999.8806690001 + 512.37496774297995 3.8923441558901002e-05 1099999.8806690399 + 512.37507192417797 4.1799544079204999e-05 1099999.8806689901 + 512.37492067321602 1.9595709220863899e-05 1099999.8806690599 + 512.37504134004496 7.1967927066884303e-05 1099999.8806690001 + 512.37484259370399 3.0334066756503101e-05 1099999.8806690900 + 512.37494359469099 0.00011935926530531200 1099999.8806690499 + 512.37480074006100 9.6072454794151094e-05 1099999.8806691100 + 512.37483841643302 0.00023831315626050500 1099999.8806691000 + 512.37484016863903 0.00053418662267958202 1099999.8806690900 + 512.37468913297505 0.0014061130069738300 1099999.8806691701 + 512.37458556071897 0.0036835260018776902 1099999.8806692101 + 512.37375689670796 0.0090921225540122903 1099999.8806696001 + 512.37217869786105 0.022773806050830500 1099999.8806703300 + 512.36813818279404 0.056549327628189497 1099999.8806722199 + 512.35879434737399 0.14096912864741901 1099999.8806765601 + 512.33818813143500 0.35122206579268300 1099999.8806861099 + 512.29221202245606 0.87440775746200805 1099999.8807072300 + 512.19307894301596 2.1740912034602302 1099999.8807516000 + 511.98266166574399 5.3984993675370703 1099999.8808384500 + 511.54509761350101 13.385872904400300 1099999.8809738299 + 510.65696811554199 33.143619709050100 1099999.8809686101 + 508.89630551100601 81.950451848528701 1099999.8792312101 + 505.49249081710099 202.36223880096199 1099999.8652394800 + 499.08282967321600 499.08282967321901 1099999.7735602800 + 487.33480089428099 1229.4596298924400 1099999.2049696301 + 466.38819858089300 3025.2496788486201 1099995.7410583100 + 430.07083172200100 7434.3952887054002 1099974.7928047101 + 368.88774080356097 18235.327548974299 1099848.7790378300 + 269.01893890965999 44569.840423817303 1099096.6549641599 + 112.52868469700000 108053.08187546099 1094680.0988574300 +-116.34596073462900 256381.55550723200 1069704.8585751599 +-395.92100159947302 569832.13216431299 940899.13614565204 +-217.74198556477199 -570222.73231285205 940662.52617083304 +-88.930714368151598 -256720.86050067499 1069623.4813592699 + 17.390582485762700 -108286.04538144900 1094657.0842383499 + 91.327319714755504 -44713.216735599402 1099090.8606245799 + 139.10264297601299 -18317.824841091900 1099847.4612161200 + 168.61723887290501 -7479.7480950394502 1099974.5564951301 + 186.26682963526301 -3049.3929388975198 1099995.7574951700 + 196.53659385435500 -1242.0128257548299 1099999.2812622699 + 202.36223880096099 -505.49249081710002 1099999.8652394800 + 205.58622227359101 -205.58622227359001 1099999.9615766399 + 207.32715146081301 -83.550362176210697 1099999.9772885400 + 208.24500121843599 -33.927524489855202 1099999.9797649700 + 208.71783217726900 -13.765036550985000 1099999.9801124500 + 208.95594886441700 -5.5796741325011299 1099999.9801392199 + 209.07332176211901 -2.2595271969764701 1099999.9801287500 + 209.13017828515001 -0.91422127325681601 1099999.9801198801 + 209.15702066050000 -0.36953997103210001 1099999.9801150900 + 209.16956362625399 -0.14919709300607500 1099999.9801127601 + 209.17533963084500 -0.060310076906570198 1099999.9801116700 + 209.17778786434101 -0.024196353593101998 1099999.9801112099 + 209.17890096074700 -0.0097649957037734703 1099999.9801109901 + 209.17937014959500 -0.0038957347308803299 1099999.9801109000 + 209.17953670142700 -0.0015461348164585199 1099999.9801108700 + 209.17964760484699 -0.00075808560769368002 1099999.9801108500 + 209.17971312141700 -0.00030231336363234702 1099999.9801108399 + 209.17979477733701 -0.00021914423195376999 1099999.9801108199 + 209.17983169213900 -4.3145117317963803e-05 1099999.9801108199 + 209.17987563077600 -1.7623072309261599e-05 1099999.9801108099 + 209.17987753179600 4.2289595017796700e-05 1099999.9801108099 + 209.17985736763001 4.2444906220718999e-05 1099999.9801108099 + 209.17982594551600 1.7677264931663800e-06 1099999.9801108199 + 209.17979853331201 -7.6201389478313296e-07 1099999.9801108199 + 209.17974475252299 -6.0380254732612202e-05 1099999.9801108299 + 209.17975058826099 -2.1560827079951300e-05 1099999.9801108299 + 209.17968650285400 -5.9964019628432903e-05 1099999.9801108399 + 209.17971389875700 4.5471912037797497e-05 1099999.9801108399 + 209.17965152006201 4.5710238565839099e-06 1099999.9801108500 + 209.17967392998099 0.00011596246590818700 1099999.9801108500 + 209.17963349094600 1.1712449655147100e-05 1099999.9801108500 + 209.17964089762600 7.7183928590857104e-05 1099999.9801108500 + 209.17964089762600 -7.7183928584522707e-05 1099999.9801108500 + 209.17963349094600 -1.1712449307654200e-05 1099999.9801108500 + 209.17967392998099 -0.00011596246528839899 1099999.9801108500 + 209.17965152006099 -4.5710236762103300e-06 1099999.9801108500 + 209.17971389875601 -4.5471912538481701e-05 1099999.9801108399 + 209.17968650285499 5.9964019246224200e-05 1099999.9801108399 + 209.17975058825999 2.1560827618370700e-05 1099999.9801108299 + 209.17974475252399 6.0380253563826099e-05 1099999.9801108299 + 209.17979853330999 7.6201330672400105e-07 1099999.9801108199 + 209.17982594551901 -1.7677275594800701e-06 1099999.9801108199 + 209.17985736762901 -4.2444905912603697e-05 1099999.9801108099 + 209.17987753179500 -4.2289594541053699e-05 1099999.9801108099 + 209.17987563077500 1.7623072099885900e-05 1099999.9801108099 + 209.17983169214000 4.3145117985917898e-05 1099999.9801108199 + 209.17979477733499 0.00021914423229690800 1099999.9801108199 + 209.17971312141700 0.00030231336524883797 1099999.9801108399 + 209.17964760484600 0.00075808560714784700 1099999.9801108500 + 209.17953670142700 0.0015461348153371799 1099999.9801108700 + 209.17937014959500 0.0038957347310141798 1099999.9801109000 + 209.17890096074800 0.0097649957038593894 1099999.9801109901 + 209.17778786433999 0.024196353593544901 1099999.9801112099 + 209.17533963084500 0.060310076906487202 1099999.9801116700 + 209.16956362625100 0.14919709300593700 1099999.9801127601 + 209.15702066049900 0.36953997103283098 1099999.9801150900 + 209.13017828514600 0.91422127325645997 1099999.9801198801 + 209.07332176212100 2.2595271969755499 1099999.9801287500 + 208.95594886441401 5.5796741325013404 1099999.9801392199 + 208.71783217726900 13.765036550985100 1099999.9801124500 + 208.24500121843400 33.927524489854598 1099999.9797649700 + 207.32715146081401 83.550362176212701 1099999.9772885400 + 205.58622227358799 205.58622227359001 1099999.9615766399 + 202.36223880096199 505.49249081709701 1099999.8652394800 + 196.53659385435401 1242.0128257548299 1099999.2812622699 + 186.26682963525801 3049.3929388975198 1099995.7574951700 + 168.61723887291299 7479.7480950394402 1099974.5564951301 + 139.10264297599699 18317.824841091900 1099847.4612161200 + 91.327319714782305 44713.216735599402 1099090.8606245799 + 17.390582485753601 108286.04538144900 1094657.0842383499 +-88.930714368149907 256720.86050067499 1069623.4813592699 +-217.74198556476500 570222.73231285205 940662.52617083304 +-107.00276323921300 -570374.37706612202 940570.60263270105 +-51.117837445642500 -256860.54241596299 1069589.9490630699 +-4.1011902100961599 -108387.80530071299 1094647.0132628500 + 29.521394446563299 -44779.066405362799 1099088.1831501699 + 51.737688564956898 -18357.307175600399 1099846.8105133900 + 65.684665300568099 -7502.1991370091901 1099974.4145631900 + 74.128646129469004 -3061.6816609684101 1099995.7366328100 + 79.097823056793203 -1248.5514814685400 1099999.2885737401 + 81.950451848530406 -508.89630551100998 1099999.8792312101 + 83.550362176210896 -207.32715146081500 1099999.9772885400 + 84.427561818598704 -84.427561818598804 1099999.9935199900 + 84.897857214490600 -34.363496040040800 1099999.9961870499 + 85.144859271273305 -13.979143280173000 1099999.9966158799 + 85.271763272299197 -5.6834274993615796 1099999.9966801901 + 85.335673235993497 -2.3093712073705999 1099999.9966875000 + 85.367239542030006 -0.93781246194308099 1099999.9966870700 + 85.382535781717493 -0.38050554411887599 1099999.9966862199 + 85.389831648360897 -0.15433422617272599 1099999.9966857100 + 85.393216839537303 -0.062447058434422401 1099999.9966854500 + 85.394616637643594 -0.025204827668664501 1099999.9966853401 + 85.395472282539799 -0.010292587969325299 1099999.9966852800 + 85.395713170352707 -0.0041578332184925900 1099999.9966852600 + 85.395946452101398 -0.0017813627515563201 1099999.9966852400 + 85.396059818346004 -0.00077127971641370000 1099999.9966852299 + 85.396122951886497 -0.00031371712120446701 1099999.9966852299 + 85.396238039906095 -7.9344814684716001e-05 1099999.9966852199 + 85.396175123453204 2.2771226598868900e-05 1099999.9966852199 + 85.396286723947895 7.7353234183947099e-05 1099999.9966852199 + 85.396136325597993 1.9322056254902401e-05 1099999.9966852299 + 85.396224266728098 5.5852487901603803e-05 1099999.9966852199 + 85.396094241169195 -4.9579773240020997e-05 1099999.9966852299 + 85.396128591928701 -3.8879491073936798e-06 1099999.9966852299 + 85.396066191674905 -7.4695050302679098e-05 1099999.9966852299 + 85.396060102379394 -7.2356456714264701e-06 1099999.9966852299 + 85.396041551935397 -2.5321518158725600e-05 1099999.9966852299 + 85.396017410008398 6.1171358225528194e-05 1099999.9966852400 + 85.396009329129100 6.1204802001278396e-05 1099999.9966852400 + 85.395983238290498 0.00011237433083099800 1099999.9966852400 + 85.395975785037095 6.2167473632933806e-05 1099999.9966852400 + 85.395964133857703 4.8088578543328598e-05 1099999.9966852400 + 85.395964133857703 -4.8088578979887597e-05 1099999.9966852400 + 85.395975785037095 -6.2167473128195899e-05 1099999.9966852400 + 85.395983238291194 -0.00011237433075417601 1099999.9966852400 + 85.396009329129299 -6.1204801800981301e-05 1099999.9966852400 + 85.396017410009605 -6.1171358504458204e-05 1099999.9966852400 + 85.396041551935298 2.5321518171928200e-05 1099999.9966852299 + 85.396060102379906 7.2356455334869098e-06 1099999.9966852299 + 85.396066191675601 7.4695050537565698e-05 1099999.9966852299 + 85.396128591927905 3.8879482918119002e-06 1099999.9966852299 + 85.396094241168797 4.9579773359822200e-05 1099999.9966852299 + 85.396224266726506 -5.5852487668463100e-05 1099999.9966852199 + 85.396136325598107 -1.9322056258894999e-05 1099999.9966852299 + 85.396286723946602 -7.7353234069602801e-05 1099999.9966852199 + 85.396175123453006 -2.2771226637617001e-05 1099999.9966852199 + 85.396238039905498 7.9344815226187600e-05 1099999.9966852199 + 85.396122951886994 0.00031371712094818097 1099999.9966852299 + 85.396059818347197 0.00077127971697932404 1099999.9966852299 + 85.395946452101100 0.0017813627513065401 1099999.9966852400 + 85.395713170352195 0.0041578332178887796 1099999.9966852600 + 85.395472282539302 0.010292587969450200 1099999.9966852800 + 85.394616637644006 0.025204827668291001 1099999.9966853401 + 85.393216839537303 0.062447058434643703 1099999.9966854500 + 85.389831648361394 0.15433422617324599 1099999.9966857100 + 85.382535781717394 0.38050554411885801 1099999.9966862199 + 85.367239542031200 0.93781246194288703 1099999.9966870700 + 85.335673235992900 2.3093712073705701 1099999.9966875000 + 85.271763272298799 5.6834274993617502 1099999.9966801901 + 85.144859271272693 13.979143280173099 1099999.9966158799 + 84.897857214490401 34.363496040041198 1099999.9961870499 + 84.427561818598505 84.427561818598704 1099999.9935199900 + 83.550362176210797 207.32715146081199 1099999.9772885400 + 81.950451848528601 508.89630551100697 1099999.8792312101 + 79.097823056792393 1248.5514814685400 1099999.2885737401 + 74.128646129473196 3061.6816609684201 1099995.7366328100 + 65.684665300563097 7502.1991370091901 1099974.4145631900 + 51.737688564935802 18357.307175600399 1099846.8105133900 + 29.521394446585600 44779.066405362697 1099088.1831501699 +-4.1011902100659698 108387.80530071299 1094647.0132628500 +-51.117837445655198 256860.54241596299 1069589.9490630699 +-107.00276323921899 570374.37706612295 940570.60263270105 +-48.542762271441397 -570429.14200834802 940537.39510517102 +-25.626353917061000 -256914.86176917201 1069576.9038014100 +-5.7872784899784300 -108430.22653964300 1094642.8120346200 + 8.9428221054785695 -44808.097482573503 1099087.0003416601 + 18.978860229416298 -18375.513393277499 1099846.5075397301 + 25.424306548379398 -7512.9395358972197 1099974.3429249299 + 29.394691086489701 -3067.7432432310602 1099995.7218495600 + 31.764749477066999 -1251.8605071807301 1099999.2871980700 + 33.143619709048401 -510.65696811554000 1099999.8809686101 + 33.927524489854697 -208.24500121843400 1099999.9797649700 + 34.363496040041099 -84.897857214490401 1099999.9961870499 + 34.601115968278798 -34.601115968279203 1099999.9989116001 + 34.728092048456801 -14.097602898788800 1099999.9993614601 + 34.794370060404901 -5.7418553216313697 1099999.9994347200 + 34.828361274580402 -2.3377777851756898 1099999.9994461499 + 34.845618581856698 -0.95137458478879700 1099999.9994476701 + 34.854017837102397 -0.38690228641330598 1099999.9994477499 + 34.858179207254601 -0.15729720815174100 1099999.9994476701 + 34.859979268265299 -0.063766815289503703 1099999.9994476300 + 34.860997948900497 -0.025984257543167098 1099999.9994476000 + 34.861447282906802 -0.010595032873264200 1099999.9994475800 + 34.861684628649698 -0.0042847780281705600 1099999.9994475699 + 34.861771538766497 -0.0018560189549427599 1099999.9994475699 + 34.861956841917397 -0.00072002975258489204 1099999.9994475699 + 34.862008264381799 -0.00020945538478902499 1099999.9994475599 + 34.862040898780698 -0.00012065671546542600 1099999.9994475599 + 34.862115444765003 3.8458723302866403e-05 1099999.9994475599 + 34.862027763231097 -5.9612503627310900e-05 1099999.9994475599 + 34.862086309586701 7.7289817036293207e-05 1099999.9994475599 + 34.861987120294103 -4.6618075241385401e-05 1099999.9994475599 + 34.862009037879602 7.6324829756187096e-05 1099999.9994475599 + 34.861919290573397 -5.1855274514935100e-05 1099999.9994475699 + 34.861938810747702 8.1594108102914605e-05 1099999.9994475699 + 34.861851244270802 -5.2741958284137103e-05 1099999.9994475699 + 34.861883702138996 0.00012399847405956201 1099999.9994475699 + 34.861801822438800 -9.0029567830662605e-06 1099999.9994475699 + 34.861830439515302 0.00018799554887376501 1099999.9994475699 + 34.861767524250801 1.7724796340731599e-05 1099999.9994475699 + 34.861780517721201 0.00017340677464463500 1099999.9994475699 + 34.861755896210497 -5.7064839975042397e-05 1099999.9994475699 + 34.861755896209999 5.7064840172565798e-05 1099999.9994475699 + 34.861780517721400 -0.00017340677490536099 1099999.9994475699 + 34.861767524250801 -1.7724796213213401e-05 1099999.9994475699 + 34.861830439515600 -0.00018799554913254699 1099999.9994475699 + 34.861801822439197 9.0029569641582793e-06 1099999.9994475699 + 34.861883702138798 -0.00012399847404223201 1099999.9994475699 + 34.861851244271200 5.2741958210183598e-05 1099999.9994475699 + 34.861938810747297 -8.1594108117733996e-05 1099999.9994475699 + 34.861919290574100 5.1855274804617197e-05 1099999.9994475699 + 34.862009037878202 -7.6324829779122295e-05 1099999.9994475599 + 34.861987120294600 4.6618075036152103e-05 1099999.9994475599 + 34.862086309585898 -7.7289817035476003e-05 1099999.9994475599 + 34.862027763231502 5.9612503720635798e-05 1099999.9994475599 + 34.862115444764399 -3.8458723270648902e-05 1099999.9994475599 + 34.862040898781302 0.00012065671534091400 1099999.9994475599 + 34.862008264381700 0.00020945538473785100 1099999.9994475599 + 34.861956841917802 0.00072002975250428497 1099999.9994475699 + 34.861771538767101 0.0018560189554138900 1099999.9994475699 + 34.861684628649698 0.0042847780280266196 1099999.9994475699 + 34.861447282906802 0.010595032872998700 1099999.9994475800 + 34.860997948900597 0.025984257543074801 1099999.9994476000 + 34.859979268265000 0.063766815289535803 1099999.9994476300 + 34.858179207254800 0.15729720815160300 1099999.9994476701 + 34.854017837102703 0.38690228641327701 1099999.9994477499 + 34.845618581856797 0.95137458478919001 1099999.9994476701 + 34.828361274580303 2.3377777851757799 1099999.9994461499 + 34.794370060405200 5.7418553216315296 1099999.9994347200 + 34.728092048456702 14.097602898788599 1099999.9993614601 + 34.601115968279103 34.601115968278997 1099999.9989116001 + 34.363496040040800 84.897857214491907 1099999.9961870499 + 33.927524489854498 208.24500121843599 1099999.9797649700 + 33.143619709046099 510.65696811553698 1099999.8809686101 + 31.764749477065202 1251.8605071807201 1099999.2871980700 + 29.394691086490901 3067.7432432310702 1099995.7218495600 + 25.424306548368701 7512.9395358972297 1099974.3429249299 + 18.978860229404301 18375.513393277499 1099846.5075397301 + 8.9428221054614703 44808.097482573503 1099087.0003416601 +-5.7872784899899399 108430.22653964300 1094642.8120346200 +-25.626353917084600 256914.86176917201 1069576.9038014100 +-48.542762271461598 570429.14200834802 940537.39510517102 +-20.605691551515100 -570447.14829199505 940526.47521531000 +-11.736982198779600 -256934.67468384601 1069572.1447417000 +-3.7503483808542102 -108447.09563824401 1094641.1409377800 + 2.4690018039893800 -44820.406802995603 1099086.4984740401 + 6.8723085910799604 -18383.623338977101 1099846.3721564501 + 9.7828583506765501 -7517.9177162714204 1099974.3091624901 + 11.615088467109000 -3070.6464507933902 1099995.7140805000 + 12.728364178794800 -1253.4900274301201 1099999.2857273801 + 13.385872904401101 -511.54509761350101 1099999.8809738299 + 13.765036550984201 -208.71783217727000 1099999.9801124500 + 13.979143280172799 -85.144859271272793 1099999.9966158799 + 14.097602898788701 -34.728092048456602 1099999.9993614601 + 14.161822850282300 -14.161822850282499 1099999.9998176801 + 14.195852754136901 -5.7738535559862001 1099999.9998932499 + 14.213744007517199 -2.3535401313660800 1099999.9999056500 + 14.222940028832401 -0.95897316162852297 1099999.9999076300 + 14.227441031724201 -0.39065720583972102 1099999.9999079199 + 14.229674784805599 -0.15897139856971201 1099999.9999079499 + 14.230760262295600 -0.064695800335117001 1099999.9999079499 + 14.231294894316701 -0.026395833840013101 1099999.9999079399 + 14.231646320630400 -0.010731227426005701 1099999.9999079399 + 14.231620519111400 -0.0043894777834630697 1099999.9999079399 + 14.231985125542099 -0.0018852354372718000 1099999.9999079299 + 14.231994191294699 -0.00064690188372422202 1099999.9999079299 + 14.232073610727401 -0.00039000257214598800 1099999.9999079299 + 14.232101812921600 -0.00013442993143729200 1099999.9999079299 + 14.232034034843700 -6.3630471556451004e-05 1099999.9999079299 + 14.231997858663201 5.4291626473103996e-06 1099999.9999079299 + 14.231961510419300 4.0729244892129303e-05 1099999.9999079299 + 14.231913588473200 6.9351952451133906e-05 1099999.9999079299 + 14.231846115385199 -1.1978593949081999e-05 1099999.9999079299 + 14.231871092334099 4.9591256288742900e-05 1099999.9999079299 + 14.231766744139501 -7.9981925159042005e-05 1099999.9999079299 + 14.231846272012300 4.9466391254375202e-05 1099999.9999079299 + 14.231736350208900 -6.1036023667545303e-05 1099999.9999079399 + 14.231814400158299 9.5532240873059501e-05 1099999.9999079299 + 14.231723332954500 1.6758839557764900e-05 1099999.9999079399 + 14.231767234209601 0.00012112107696763300 1099999.9999079299 + 14.231713935650600 2.9754966952420101e-05 1099999.9999079399 + 14.231725840167501 5.9103142877752903e-05 1099999.9999079399 + 14.231725840168000 -5.9103142748988499e-05 1099999.9999079399 + 14.231713935650300 -2.9754966980679899e-05 1099999.9999079399 + 14.231767234209700 -0.00012112107711837300 1099999.9999079299 + 14.231723332954600 -1.6758839515671699e-05 1099999.9999079399 + 14.231814400157900 -9.5532240958242704e-05 1099999.9999079299 + 14.231736350209200 6.1036023756697798e-05 1099999.9999079399 + 14.231846272012000 -4.9466391272153502e-05 1099999.9999079299 + 14.231766744139700 7.9981925194148905e-05 1099999.9999079299 + 14.231871092333799 -4.9591256194889901e-05 1099999.9999079299 + 14.231846115385700 1.1978593925279000e-05 1099999.9999079299 + 14.231913588473001 -6.9351952490560905e-05 1099999.9999079299 + 14.231961510419501 -4.0729244907471198e-05 1099999.9999079299 + 14.231997858663201 -5.4291626725311902e-06 1099999.9999079299 + 14.232034034843901 6.3630471532911294e-05 1099999.9999079299 + 14.232101812921600 0.00013442993141859401 1099999.9999079299 + 14.232073610727401 0.00039000257205315297 1099999.9999079299 + 14.231994191294500 0.00064690188376539395 1099999.9999079299 + 14.231985125542201 0.0018852354371869100 1099999.9999079299 + 14.231620519111800 0.0043894777835032503 1099999.9999079399 + 14.231646320630400 0.010731227425950601 1099999.9999079399 + 14.231294894316800 0.026395833840104400 1099999.9999079399 + 14.230760262295201 0.064695800335087997 1099999.9999079499 + 14.229674784805800 0.15897139856959500 1099999.9999079499 + 14.227441031723700 0.39065720583982400 1099999.9999079199 + 14.222940028832500 0.95897316162854496 1099999.9999076300 + 14.213744007517301 2.3535401313661901 1099999.9999056500 + 14.195852754137000 5.7738535559860997 1099999.9998932499 + 14.161822850282499 14.161822850282800 1099999.9998176801 + 14.097602898788500 34.728092048457199 1099999.9993614601 + 13.979143280173099 85.144859271273603 1099999.9966158799 + 13.765036550984400 208.71783217727000 1099999.9801124500 + 13.385872904400200 511.54509761349902 1099999.8809738299 + 12.728364178794800 1253.4900274301201 1099999.2857273801 + 11.615088467105700 3070.6464507934002 1099995.7140805000 + 9.7828583506745801 7517.9177162714404 1099974.3091624901 + 6.8723085910780402 18383.623338977101 1099846.3721564501 + 2.4690018039690602 44820.406802995603 1099086.4984740401 +-3.7503483808911802 108447.09563824401 1094641.1409377800 +-11.736982198740600 256934.67468384601 1069572.1447416900 +-20.605691551517300 570447.14829199505 940526.47521531105 +-8.2151789026182698 -570452.25323402602 940523.37914202502 +-5.0006042957165899 -256941.33966868601 1069570.5436969800 +-1.9430522078746399 -108453.47003991299 1094640.5094059501 + 0.58619736610195206 -44825.427794789699 1099086.2937106800 + 2.4622009501708599 -18387.118790335200 1099846.3137441201 + 3.7456042194058399 -7520.1569389283704 1099974.2938930800 + 4.5751119480532898 -3071.9990774051598 1099995.7103556099 + 5.0892998288056202 -1254.2724727472300 1099999.2848973400 + 5.3984993675389701 -511.98266166574200 1099999.8808384500 + 5.5796741325015100 -208.95594886441401 1099999.9801392199 + 5.6834274993610396 -85.271763272299495 1099999.9966801901 + 5.7418553216312800 -34.794370060405399 1099999.9994347200 + 5.7738535559861903 -14.195852754137199 1099999.9998932499 + 5.7911759113584100 -5.7911759113583496 1099999.9999695099 + 5.8004743671293300 -2.3622010507164100 1099999.9999821701 + 5.8050965516643096 -0.96327815615976298 1099999.9999842599 + 5.8074767835034198 -0.39272232169366400 1099999.9999846001 + 5.8086982447572204 -0.16005830039268601 1099999.9999846499 + 5.8092363805355101 -0.065199918008275196 1099999.9999846600 + 5.8096953470989297 -0.026611810172191400 1099999.9999846600 + 5.8097483851574498 -0.010728659323278300 1099999.9999846600 + 5.8100099273832404 -0.0045781260174412499 1099999.9999846600 + 5.8102157233493497 -0.0018318246265066199 1099999.9999846600 + 5.8100997393317897 -0.00079276381485150001 1099999.9999846600 + 5.8101115129255003 -0.00047936513333744600 1099999.9999846600 + 5.8100194238818403 -0.00011525290707742299 1099999.9999846600 + 5.8098973349225602 -6.7161269413078994e-05 1099999.9999846600 + 5.8099586339470903 5.1176699334983802e-05 1099999.9999846600 + 5.8098667287338301 5.7023819110768897e-05 1099999.9999846600 + 5.8098511061764899 -2.5678046252270701e-05 1099999.9999846600 + 5.8098812520038603 3.3147124964887199e-05 1099999.9999846600 + 5.8098013398939399 -7.1613075373907006e-05 1099999.9999846600 + 5.8098604478263800 2.0382043148455501e-05 1099999.9999846600 + 5.8097737341911699 -3.6580828383866099e-06 1099999.9999846600 + 5.8097933142877602 5.6512241473368499e-05 1099999.9999846600 + 5.8097207359889902 9.9422262364451804e-05 1099999.9999846600 + 5.8096977017377904 9.6052402086954994e-05 1099999.9999846600 + 5.8096450010864400 0.00013577246018691401 1099999.9999846600 + 5.8096162499474699 5.9848809629412300e-05 1099999.9999846600 + 5.8095956252626504 5.9477092114604098e-05 1099999.9999846600 + 5.8095956252624399 -5.9477092154329903e-05 1099999.9999846600 + 5.8096162499477204 -5.9848809584543698e-05 1099999.9999846600 + 5.8096450010862402 -0.00013577246020148200 1099999.9999846600 + 5.8096977017377904 -9.6052402063073205e-05 1099999.9999846600 + 5.8097207359888898 -9.9422262353065106e-05 1099999.9999846600 + 5.8097933142876599 -5.6512241527617598e-05 1099999.9999846600 + 5.8097737341912001 3.6580829015234798e-06 1099999.9999846600 + 5.8098604478262601 -2.0382043159163200e-05 1099999.9999846600 + 5.8098013398939896 7.1613075337575093e-05 1099999.9999846600 + 5.8098812520038798 -3.3147124953234703e-05 1099999.9999846600 + 5.8098511061765903 2.5678046317322499e-05 1099999.9999846600 + 5.8098667287337804 -5.7023819116285697e-05 1099999.9999846600 + 5.8099586339471703 -5.1176699380201097e-05 1099999.9999846600 + 5.8098973349225398 6.7161269422395705e-05 1099999.9999846600 + 5.8100194238818101 0.00011525290703364200 1099999.9999846600 + 5.8101115129254799 0.00047936513335217602 1099999.9999846600 + 5.8100997393316502 0.00079276381480368203 1099999.9999846600 + 5.8102157233493203 0.0018318246264080701 1099999.9999846600 + 5.8100099273830299 0.0045781260174552899 1099999.9999846600 + 5.8097483851574800 0.010728659323335899 1099999.9999846600 + 5.8096953470986303 0.026611810172230500 1099999.9999846600 + 5.8092363805356397 0.065199918008251798 1099999.9999846600 + 5.8086982447568696 0.16005830039273400 1099999.9999846499 + 5.8074767835034500 0.39272232169369298 1099999.9999846001 + 5.8050965516642101 0.96327815615965395 1099999.9999842599 + 5.8004743671292696 2.3622010507164002 1099999.9999821701 + 5.7911759113583203 5.7911759113586196 1099999.9999695099 + 5.7738535559861797 14.195852754137100 1099999.9998932499 + 5.7418553216315198 34.794370060405001 1099999.9994347200 + 5.6834274993610503 85.271763272300802 1099999.9966801901 + 5.5796741325008297 208.95594886441700 1099999.9801392199 + 5.3984993675402704 511.98266166574001 1099999.8808384500 + 5.0892998288054700 1254.2724727472300 1099999.2848973400 + 4.5751119480528901 3071.9990774051698 1099995.7103556099 + 3.7456042194191301 7520.1569389283804 1099974.2938930800 + 2.4622009501982900 18387.118790335200 1099846.3137441201 + 0.58619736609423601 44825.427794789699 1099086.2937106800 +-1.9430522078844901 108453.47003991299 1094640.5094059501 +-5.0006042957128498 256941.33966868601 1069570.5436969800 +-8.2151789026594404 570452.25323402602 940523.37914202502 +-3.0638914401307198 -570453.28997414804 940522.75036188401 +-1.9925942827803700 -256943.32862485401 1069570.0659008799 +-0.88752617436942405 -108455.73927964800 1094640.2845759499 + 0.10096219141639000 -44827.394901604297 1099086.2134820600 + 0.87672683177287403 -18388.577201452699 1099846.2893639901 + 1.4293392462906900 -7521.1362786820700 1099974.2872026800 + 1.7971584307817701 -3072.6132968070201 1099995.7086481301 + 2.0308734742088901 -1254.6388922451399 1099999.2844893700 + 2.1740912034590001 -512.19307894301699 1099999.8807516000 + 2.2595271969763502 -209.07332176212000 1099999.9801287500 + 2.3093712073709400 -85.335673235992900 1099999.9966875000 + 2.3377777851757799 -34.828361274580899 1099999.9994461499 + 2.3535401313660000 -14.213744007517400 1099999.9999056500 + 2.3622010507163900 -5.8004743671293797 1099999.9999821701 + 2.3667975561231702 -2.3667975561230401 1099999.9999949101 + 2.3691551039048000 -0.96560689824465096 1099999.9999970200 + 2.3705083924919998 -0.39390834928927199 1099999.9999973800 + 2.3710783805792000 -0.16056742304439800 1099999.9999974300 + 2.3715436169487201 -0.065475334917074093 1099999.9999974400 + 2.3717579516769001 -0.026591832727939000 1099999.9999974400 + 2.3718565875000102 -0.010978350725482301 1099999.9999974400 + 2.3721383919955801 -0.0045820120088686904 1099999.9999974400 + 2.3719369963698100 -0.0018827189474488601 1099999.9999974400 + 2.3717879212073298 -0.00098156873255333303 1099999.9999974400 + 2.3717979131234301 -0.00039049638217884098 1099999.9999974400 + 2.3716554288037699 -6.1566274925567798e-05 1099999.9999974400 + 2.3717196390289801 3.4993194591169402e-06 1099999.9999974400 + 2.3717327167982600 9.7696235017230606e-05 1099999.9999974400 + 2.3715840052851300 5.3336905977478699e-05 1099999.9999974400 + 2.3716873193139700 7.4170483488273102e-05 1099999.9999974400 + 2.3715330265626600 7.1406910780226994e-05 1099999.9999974400 + 2.3715353824165302 4.2686341483438698e-05 1099999.9999974400 + 2.3714466354131800 0.00013209994854545499 1099999.9999974400 + 2.3713218235486901 7.8930788310775698e-05 1099999.9999974400 + 2.3712679540272399 0.00017142686377389301 1099999.9999974400 + 2.3710822667648901 0.00014082724320794499 1099999.9999974400 + 2.3710308322486902 0.00016335712268871199 1099999.9999974400 + 2.3708700971248500 0.00014663213259081699 1099999.9999974400 + 2.3708309004757999 8.0575767848877804e-05 1099999.9999974400 + 2.3707672111394400 5.7525365200447800e-05 1099999.9999974500 + 2.3707672111394502 -5.7525365216365900e-05 1099999.9999974500 + 2.3708309004757302 -8.0575767872888003e-05 1099999.9999974400 + 2.3708700971249401 -0.00014663213255689401 1099999.9999974400 + 2.3710308322485698 -0.00016335712268672801 1099999.9999974400 + 2.3710822667650402 -0.00014082724318438501 1099999.9999974400 + 2.3712679540271200 -0.00017142686376999400 1099999.9999974400 + 2.3713218235487399 -7.8930788306417801e-05 1099999.9999974400 + 2.3714466354131498 -0.00013209994854800400 1099999.9999974400 + 2.3715353824165399 -4.2686341494545699e-05 1099999.9999974400 + 2.3715330265626098 -7.1406910761583596e-05 1099999.9999974400 + 2.3716873193139398 -7.4170483480933297e-05 1099999.9999974400 + 2.3715840052851802 -5.3336905980531900e-05 1099999.9999974400 + 2.3717327167982001 -9.7696235000948301e-05 1099999.9999974400 + 2.3717196390290098 -3.4993194766338602e-06 1099999.9999974400 + 2.3716554288037202 6.1566274907961602e-05 1099999.9999974400 + 2.3717979131234399 0.00039049638218898098 1099999.9999974400 + 2.3717879212073401 0.00098156873250122107 1099999.9999974400 + 2.3719369963697199 0.0018827189474698400 1099999.9999974400 + 2.3721383919954802 0.0045820120088709100 1099999.9999974400 + 2.3718565874999098 0.010978350725510700 1099999.9999974400 + 2.3717579516768699 0.026591832727904802 1099999.9999974400 + 2.3715436169487001 0.065475334917089206 1099999.9999974400 + 2.3710783805791702 0.16056742304444299 1099999.9999974300 + 2.3705083924920700 0.39390834928917901 1099999.9999973800 + 2.3691551039047298 0.96560689824472101 1099999.9999970200 + 2.3667975561230898 2.3667975561231298 1099999.9999949101 + 2.3622010507163900 5.8004743671291701 1099999.9999821701 + 2.3535401313661199 14.213744007517301 1099999.9999056500 + 2.3377777851758599 34.828361274581503 1099999.9994461499 + 2.3093712073705301 85.335673235994307 1099999.9966875000 + 2.2595271969767898 209.07332176211901 1099999.9801287500 + 2.1740912034591502 512.19307894301596 1099999.8807516000 + 2.0308734742077501 1254.6388922451499 1099999.2844893700 + 1.7971584307821400 3072.6132968070201 1099995.7086481301 + 1.4293392462939900 7521.1362786820600 1099974.2872026800 + 0.87672683178016297 18388.577201452699 1099846.2893639901 + 0.10096219143569200 44827.394901604297 1099086.2134820600 +-0.88752617436905701 108455.73927964800 1094640.2845759499 +-1.9925942827248999 256943.32862485401 1069570.0659008799 +-3.0638914401321098 570453.28997414804 940522.75036188401 +-1.0539543262224400 -570453.26167212904 940522.76753224805 +-0.73944471486445196 -256943.79939859500 1069569.9528081701 +-0.36843131543399399 -108456.48692050000 1094640.2105005700 + 0.0016697210887173300 -44828.132527335598 1099086.1833969699 + 0.31262109805711502 -18389.166340708402 1099846.2795141900 + 0.54459280828580103 -7521.5528346868005 1099974.2843551701 + 0.70461630617454596 -3072.8851592193600 1099995.7078899499 + 0.80890237027116196 -1254.8064515592400 1099999.2842998200 + 0.87440775746125898 -512.29221202245697 1099999.8807072300 + 0.91422127325588898 -209.13017828514700 1099999.9801198801 + 0.93781246194312096 -85.367239542030902 1099999.9966870700 + 0.95137458478912995 -34.845618581856698 1099999.9994476701 + 0.95897316162851898 -14.222940028832500 1099999.9999076300 + 0.96327815615975398 -5.8050965516643496 1099999.9999842599 + 0.96560689824461299 -2.3691551039048999 1099999.9999970200 + 0.96688888314184795 -0.96688888314178500 1099999.9999991499 + 0.96752632860713705 -0.39449704075022002 1099999.9999995001 + 0.96792118496628299 -0.16088534857989500 1099999.9999995600 + 0.96822341225586905 -0.065575128205573194 1099999.9999995700 + 0.96834367044790104 -0.026830941916443099 1099999.9999995700 + 0.96848363463337706 -0.011132599556120500 1099999.9999995700 + 0.96838973032027298 -0.0046393876832808000 1099999.9999995700 + 0.96811345037462604 -0.0020016297730942800 1099999.9999995700 + 0.96816318589903505 -0.00085253785085854497 1099999.9999995700 + 0.96814539339853900 -0.00019364890264979300 1099999.9999995700 + 0.96804590760683296 2.1601458758670499e-05 1099999.9999995700 + 0.96819244217031397 9.3318850864292506e-05 1099999.9999995700 + 0.96787496452538302 0.00014365158055797001 1099999.9999995700 + 0.96796065670275000 8.4994207171594502e-05 1099999.9999995700 + 0.96784327986513297 0.00011265258974619600 1099999.9999995700 + 0.96767743392723604 3.7899999409535602e-05 1099999.9999995700 + 0.96765321427940598 8.5809691966060099e-05 1099999.9999995700 + 0.96732197733313396 0.00010330293906252500 1099999.9999995700 + 0.96723871338507805 0.00013345081784395699 1099999.9999995700 + 0.96683613572652805 0.00023956144161525601 1099999.9999995800 + 0.96664746458628603 0.00019154211545546401 1099999.9999995800 + 0.96626869863583598 0.00030302562722815798 1099999.9999995800 + 0.96605733748339095 0.00014628823503938499 1099999.9999995800 + 0.96582129661514005 0.00021643883724959900 1099999.9999995800 + 0.96572767251821201 -1.9586754792669500e-05 1099999.9999995800 + 0.96572767251824698 1.9586754795740499e-05 1099999.9999995800 + 0.96582129661511196 -0.00021643883724773200 1099999.9999995800 + 0.96605733748338096 -0.00014628823505149000 1099999.9999995800 + 0.96626869863588205 -0.00030302562722674402 1099999.9999995800 + 0.96664746458624595 -0.00019154211545774000 1099999.9999995800 + 0.96683613572660898 -0.00023956144159701799 1099999.9999995800 + 0.96723871338503198 -0.00013345081785414001 1099999.9999995700 + 0.96732197733321201 -0.00010330293904449000 1099999.9999995700 + 0.96765321427937800 -8.5809691960300099e-05 1099999.9999995700 + 0.96767743392728300 -3.7899999412833101e-05 1099999.9999995700 + 0.96784327986511598 -0.00011265258975282900 1099999.9999995700 + 0.96796065670279097 -8.4994207165168707e-05 1099999.9999995700 + 0.96787496452537902 -0.00014365158055647999 1099999.9999995700 + 0.96819244217033296 -9.3318850872546401e-05 1099999.9999995700 + 0.96804590760684395 -2.1601458743182102e-05 1099999.9999995700 + 0.96814539339852801 0.00019364890262282499 1099999.9999995700 + 0.96816318589905004 0.00085253785087623004 1099999.9999995700 + 0.96811345037458196 0.0020016297730951799 1099999.9999995700 + 0.96838973032032505 0.0046393876832826197 1099999.9999995700 + 0.96848363463331599 0.011132599556097701 1099999.9999995700 + 0.96834367044800296 0.026830941916450201 1099999.9999995700 + 0.96822341225579700 0.065575128205579494 1099999.9999995700 + 0.96792118496639901 0.16088534857984299 1099999.9999995600 + 0.96752632860708099 0.39449704075029401 1099999.9999995001 + 0.96688888314188903 0.96688888314178900 1099999.9999991499 + 0.96560689824463097 2.3691551039047800 1099999.9999970200 + 0.96327815615977197 5.8050965516644499 1099999.9999842599 + 0.95897316162844404 14.222940028832500 1099999.9999076300 + 0.95137458478886805 34.845618581856698 1099999.9994476701 + 0.93781246194403600 85.367239542031598 1099999.9966870700 + 0.91422127325705704 209.13017828514899 1099999.9801198801 + 0.87440775745792299 512.29221202245799 1099999.8807072300 + 0.80890237026864598 1254.8064515592300 1099999.2842998200 + 0.70461630618122595 3072.8851592193600 1099995.7078899499 + 0.54459280828093204 7521.5528346868005 1099974.2843551701 + 0.31262109806580302 18389.166340708402 1099846.2795141900 + 0.0016697211145152899 44828.132527335598 1099086.1833969699 +-0.36843131542854501 108456.48692050000 1094640.2105005700 +-0.73944471483068397 256943.79939859500 1069569.9528081701 +-1.0539543262181601 570453.26167212904 940522.76753224700 +-0.32303356018327600 -570453.06853465096 940522.88467601698 +-0.25153096362968802 -256943.84442139801 1069569.9419925199 +-0.13929273142059201 -108456.70614902901 1094640.1887795301 +-0.0078644853473940797 -44828.395411715101 1099086.1726747400 + 0.11269021101284100 -18389.396518248999 1099846.2756656900 + 0.20784697523919499 -7521.7250528155000 1099974.2831776501 + 0.27591488274789899 -3073.0024363799598 1099995.7075625099 + 0.32176460079440999 -1254.8816857001400 1099999.2842142400 + 0.35122206579168103 -512.33818813143296 1099999.8806861099 + 0.36953997103265701 -209.15702066049900 1099999.9801150900 + 0.38050554411876297 -85.382535781718303 1099999.9966862199 + 0.38690228641336200 -34.854017837102901 1099999.9994477499 + 0.39065720583995200 -14.227441031724000 1099999.9999079199 + 0.39272232169361498 -5.8074767835035503 1099999.9999846001 + 0.39390834928923202 -2.3705083924919399 1099999.9999973800 + 0.39449704075026198 -0.96752632860714205 1099999.9999995001 + 0.39483389108028699 -0.39483389108029399 1099999.9999998601 + 0.39514859292492999 -0.16111401477578699 1099999.9999999199 + 0.39536901309877598 -0.065892361848123707 1099999.9999999299 + 0.39544751051417298 -0.027090664487518200 1099999.9999999299 + 0.39535810280918399 -0.011118347036422199 1099999.9999999299 + 0.39516562500428798 -0.0045230351259909598 1099999.9999999299 + 0.39509225201260600 -0.0017989281248243700 1099999.9999999299 + 0.39521705565249599 -0.00061518944739726803 1099999.9999999299 + 0.39504147153000302 -8.8080901288809695e-05 1099999.9999999299 + 0.39513884586935799 3.3657941977904498e-05 1099999.9999999299 + 0.39491184827209702 2.0583102491021000e-05 1099999.9999999299 + 0.39482130352984302 0.00010509038027360500 1099999.9999999299 + 0.39486668115466400 4.6341334386053700e-05 1099999.9999999299 + 0.39449027417557597 0.00010538948476140600 1099999.9999999299 + 0.39439239124678399 0.00013717310559576700 1099999.9999999299 + 0.39388235896133900 0.00030218038734888998 1099999.9999999299 + 0.39345527184518098 0.00045135259742042799 1099999.9999999299 + 0.39278424689245800 0.00062020457792919198 1099999.9999999299 + 0.39203029713810800 0.00077806611570063798 1099999.9999999299 + 0.39123891469721800 0.00077671167655964405 1099999.9999999299 + 0.39037681946925201 0.00081177605277284604 1099999.9999999299 + 0.38968862408576299 0.00058408600681820100 1099999.9999999299 + 0.38910185911672801 0.00047329402129781299 1099999.9999999299 + 0.38882275848208497 9.0032210700908701e-05 1099999.9999999299 + 0.38882275848205100 -9.0032210700313799e-05 1099999.9999999299 + 0.38910185911677297 -0.00047329402129409298 1099999.9999999299 + 0.38968862408573801 -0.00058408600681518995 1099999.9999999299 + 0.39037681946926900 -0.00081177605278101497 1099999.9999999299 + 0.39123891469720301 -0.00077671167656240497 1099999.9999999299 + 0.39203029713811099 -0.00077806611570871095 1099999.9999999299 + 0.39278424689248198 -0.00062020457792709405 1099999.9999999299 + 0.39345527184516299 -0.00045135259742299798 1099999.9999999299 + 0.39388235896139701 -0.00030218038734148201 1099999.9999999299 + 0.39439239124676401 -0.00013717310559676799 1099999.9999999299 + 0.39449027417563298 -0.00010538948476258300 1099999.9999999299 + 0.39486668115463802 -4.6341334382068701e-05 1099999.9999999299 + 0.39482130352989397 -0.00010509038028090700 1099999.9999999299 + 0.39491184827207998 -2.0583102479719700e-05 1099999.9999999299 + 0.39513884586938303 -3.3657941976545397e-05 1099999.9999999299 + 0.39504147153000602 8.8080901292539107e-05 1099999.9999999299 + 0.39521705565247600 0.00061518944739937995 1099999.9999999299 + 0.39509225201264397 0.0017989281248162300 1099999.9999999299 + 0.39516562500426100 0.0045230351259885598 1099999.9999999299 + 0.39535810280924899 0.011118347036417300 1099999.9999999299 + 0.39544751051412502 0.027090664487512999 1099999.9999999299 + 0.39536901309883898 0.065892361848119196 1099999.9999999299 + 0.39514859292487597 0.16111401477580800 1099999.9999999199 + 0.39483389108031097 0.39483389108025202 1099999.9999998601 + 0.39449704075025699 0.96752632860716803 1099999.9999995001 + 0.39390834928924601 2.3705083924920198 1099999.9999973800 + 0.39272232169360599 5.8074767835034198 1099999.9999846001 + 0.39065720583997798 14.227441031724300 1099999.9999079199 + 0.38690228641328800 34.854017837102603 1099999.9994477499 + 0.38050554411814602 85.382535781718204 1099999.9966862199 + 0.36953997103363001 209.15702066050201 1099999.9801150900 + 0.35122206579442600 512.33818813143398 1099999.8806861099 + 0.32176460079306202 1254.8816857001400 1099999.2842142400 + 0.27591488274263198 3073.0024363799698 1099995.7075625099 + 0.20784697523518800 7521.7250528154900 1099974.2831776501 + 0.11269021101987900 18389.396518248999 1099846.2756656900 +-0.0078644853425021508 44828.395411715101 1099086.1726747400 +-0.13929273134240000 108456.70614902901 1094640.1887795301 +-0.25153096361161298 256943.84442139801 1069569.9419925199 +-0.32303356010354300 570453.06853465096 940522.88467601698 +-0.080089491901538606 -570452.92179180204 940522.97367963905 +-0.075128325001354801 -256943.80344049199 1069569.9518374300 +-0.047231092267531603 -108456.75779230900 1094640.1836627300 +-0.0034101013922060901 -44828.483253325503 1099086.1690919399 + 0.041653909417202498 -18389.482813989001 1099846.2742228301 + 0.079587852912560000 -7521.7945563205103 1099974.2827023901 + 0.10800494169358400 -3073.0522226251801 1099995.7074234500 + 0.12781715853338399 -1254.9145305517600 1099999.2841768099 + 0.14096912864825101 -512.35879434737501 1099999.8806765601 + 0.14919709300548301 -209.16956362625399 1099999.9801127601 + 0.15433422617325501 -85.389831648360897 1099999.9966857100 + 0.15729720815176701 -34.858179207254899 1099999.9994476701 + 0.15897139856954401 -14.229674784805701 1099999.9999079499 + 0.16005830039277000 -5.8086982447569904 1099999.9999846499 + 0.16056742304445401 -2.3710783805793301 1099999.9999974300 + 0.16088534857984499 -0.96792118496626700 1099999.9999995600 + 0.16111401477580700 -0.39514859292489302 1099999.9999999199 + 0.16144753886512700 -0.16144753886514501 1099999.9999999800 + 0.16153459331917999 -0.066066171782419900 1099999.9999999900 + 0.16136296399329500 -0.026903269578270501 1099999.9999999900 + 0.16125812386464000 -0.010851723012462801 1099999.9999999900 + 0.16114492169959499 -0.0043203956036029596 1099999.9999999900 + 0.16128658128673201 -0.0016660393770507301 1099999.9999999900 + 0.16120025875572500 -0.00064645438685834102 1099999.9999999900 + 0.16121149610478500 -0.00021461373858666801 1099999.9999999900 + 0.16109295534733500 -0.00017505360081928001 1099999.9999999900 + 0.16090161744390499 6.0929039170735800e-05 1099999.9999999900 + 0.16087155391274299 0.00019648784786027100 1099999.9999999900 + 0.16042158959585501 0.00027172697557227202 1099999.9999999900 + 0.15995073255468401 0.00058310515690852295 1099999.9999999900 + 0.15928409317126099 0.00074516957428106005 1099999.9999999900 + 0.15825919805396799 0.0012224759554265701 1099999.9999999900 + 0.15706608118436699 0.0014038995194354600 1099999.9999999900 + 0.15537756383630000 0.0019172360769083899 1099999.9999999900 + 0.15357861495996600 0.0019052411850854500 1099999.9999999900 + 0.15143085083991500 0.0021817783571636399 1099999.9999999900 + 0.14941836842310000 0.0018075661033896200 1099999.9999999900 + 0.14750328247920499 0.0016880344274255500 1099999.9999999900 + 0.14611693370210899 0.00091091013594939499 1099999.9999999900 + 0.14533433806983601 0.00048164837807021201 1099999.9999999900 + 0.14533433806986101 -0.00048164837807241701 1099999.9999999900 + 0.14611693370208600 -0.00091091013595031504 1099999.9999999900 + 0.14750328247923500 -0.0016880344274234000 1099999.9999999900 + 0.14941836842307599 -0.0018075661033881501 1099999.9999999900 + 0.15143085083993599 -0.0021817783571679902 1099999.9999999900 + 0.15357861495995101 -0.0019052411850892300 1099999.9999999900 + 0.15537756383630799 -0.0019172360769089999 1099999.9999999900 + 0.15706608118436099 -0.0014038995194424701 1099999.9999999900 + 0.15825919805395700 -0.0012224759554264200 1099999.9999999900 + 0.15928409317127201 -0.00074516957427749303 1099999.9999999900 + 0.15995073255466999 -0.00058310515690688700 1099999.9999999900 + 0.16042158959586700 -0.00027172697557682800 1099999.9999999900 + 0.16087155391272900 -0.00019648784785291401 1099999.9999999900 + 0.16090161744391601 -6.0929039171230901e-05 1099999.9999999900 + 0.16109295534733400 0.00017505360081901701 1099999.9999999900 + 0.16121149610479099 0.00021461373859215299 1099999.9999999900 + 0.16120025875574101 0.00064645438685224802 1099999.9999999900 + 0.16128658128673001 0.0016660393770573101 1099999.9999999900 + 0.16114492169959899 0.0043203956035973998 1099999.9999999900 + 0.16125812386464300 0.010851723012460100 1099999.9999999900 + 0.16136296399328501 0.026903269578271199 1099999.9999999900 + 0.16153459331917500 0.066066171782422994 1099999.9999999900 + 0.16144753886511801 0.16144753886513299 1099999.9999999800 + 0.16111401477581899 0.39514859292491800 1099999.9999999199 + 0.16088534857983100 0.96792118496625801 1099999.9999995600 + 0.16056742304445301 2.3710783805792599 1099999.9999974300 + 0.16005830039275401 5.8086982447570596 1099999.9999846499 + 0.15897139856956399 14.229674784805701 1099999.9999079499 + 0.15729720815182099 34.858179207255603 1099999.9994476701 + 0.15433422617298601 85.389831648360797 1099999.9966857100 + 0.14919709300530001 209.16956362625200 1099999.9801127601 + 0.14096912864968300 512.35879434737797 1099999.8806765601 + 0.12781715853223799 1254.9145305517600 1099999.2841768099 + 0.10800494169092800 3073.0522226251801 1099995.7074234500 + 0.079587852921722102 7521.7945563205003 1099974.2827023901 + 0.041653909403413097 18389.482813988900 1099846.2742228301 +-0.0034101013884765101 44828.483253325401 1099086.1690919399 +-0.047231092206337200 108456.75779230900 1094640.1836627300 +-0.075128324996749499 256943.80344049199 1069569.9518374300 +-0.080089491845700203 570452.92179180204 940522.97367963800 +-0.0096878153155225792 -570452.83872587106 940523.02406139695 +-0.017410155105138301 -256943.76454259900 1069569.9611819100 +-0.013487418404928600 -108456.76297030800 1094640.1831497001 +-0.00024852891228346901 -44828.510168788103 1099086.1679941399 + 0.015900155267820199 -18389.514197501299 1099846.2736980901 + 0.030661433593757701 -7521.8214912767899 1099974.2825182099 + 0.042344263854055403 -3073.0725729324499 1099995.7073666099 + 0.050787228484891700 -1254.9288172655199 1099999.2841605200 + 0.056549327628309297 -512.36813818278995 1099999.8806722199 + 0.060310076907392297 -209.17533963084500 1099999.9801116700 + 0.062447058434708901 -85.393216839538596 1099999.9966854500 + 0.063766815289376499 -34.859979268264802 1099999.9994476300 + 0.064695800335176204 -14.230760262295400 1099999.9999079499 + 0.065199918008285201 -5.8092363805358200 1099999.9999846600 + 0.065475334917070194 -2.3715436169485602 1099999.9999974400 + 0.065575128205587099 -0.96822341225585395 1099999.9999995700 + 0.065892361848103001 -0.39536901309880901 1099999.9999999299 + 0.066066171782423605 -0.16153459331915701 1099999.9999999900 + 0.065831104608920096 -0.065831104608921900 1100000.0000000000 + 0.065708049141528294 -0.026688140473099600 1100000.0000000000 + 0.065688112014387304 -0.010774325034489000 1100000.0000000000 + 0.065767720543344496 -0.0043999812188551700 1100000.0000000000 + 0.065785790057341698 -0.0018835486778523199 1100000.0000000000 + 0.065752185175248001 -0.00076213557230969003 1100000.0000000000 + 0.065602780084326295 -0.00029291978623291801 1100000.0000000000 + 0.065349977889582703 1.1781003239236700e-05 1100000.0000000000 + 0.065145860145577494 0.00047405444260344598 1100000.0000000000 + 0.064633424808886106 0.00064097523370160701 1100000.0000000000 + 0.063856924927527606 0.0010738427607111199 1100000.0000000000 + 0.062850452276289007 0.0014667273614985201 1100000.0000000000 + 0.061244755363470800 0.0020907583269405201 1100000.0000000000 + 0.059013503351595102 0.0027317826652816699 1100000.0000000000 + 0.055945920727920401 0.0035356871410393499 1100000.0000000000 + 0.052062162901170203 0.0042294954742896004 1100000.0000000000 + 0.047377872380897697 0.0048013379518058903 1100000.0000000000 + 0.042178057704537503 0.0050052778615558699 1100000.0000000000 + 0.036868958663643800 0.0047737292576868302 1100000.0000000000 + 0.032036379272187401 0.0039273684183526300 1100000.0000000000 + 0.028337730556008300 0.0026508235201630000 1100000.0000000000 + 0.026320763376238201 0.00088974214016481401 1100000.0000000000 + 0.026320763376242000 -0.00088974214016414603 1100000.0000000000 + 0.028337730556001400 -0.0026508235201630902 1100000.0000000000 + 0.032036379272183502 -0.0039273684183529197 1100000.0000000000 + 0.036868958663647797 -0.0047737292576865500 1100000.0000000000 + 0.042178057704531903 -0.0050052778615547701 1100000.0000000000 + 0.047377872380904601 -0.0048013379518040203 1100000.0000000000 + 0.052062162901157803 -0.0042294954742926501 1100000.0000000000 + 0.055945920727929199 -0.0035356871410353700 1100000.0000000000 + 0.059013503351576797 -0.0027317826652850301 1100000.0000000000 + 0.061244755363473798 -0.0020907583269404299 1100000.0000000000 + 0.062850452276278196 -0.0014667273614982900 1100000.0000000000 + 0.063856924927528105 -0.0010738427607095799 1100000.0000000000 + 0.064633424808876502 -0.00064097523370268503 1100000.0000000000 + 0.065145860145582393 -0.00047405444260400500 1100000.0000000000 + 0.065349977889580205 -1.1781003241722299e-05 1100000.0000000000 + 0.065602780084329404 0.00029291978622981199 1100000.0000000000 + 0.065752185175253705 0.00076213557231468896 1100000.0000000000 + 0.065785790057339796 0.0018835486778527200 1100000.0000000000 + 0.065767720543357500 0.0043999812188552498 1100000.0000000000 + 0.065688112014365002 0.010774325034494100 1100000.0000000000 + 0.065708049141546196 0.026688140473098500 1100000.0000000000 + 0.065831104608892105 0.065831104608917099 1100000.0000000000 + 0.066066171782446295 0.16153459331915701 1099999.9999999900 + 0.065892361848082795 0.39536901309877798 1099999.9999999299 + 0.065575128205609207 0.96822341225588804 1099999.9999995700 + 0.065475334917062797 2.3715436169486401 1099999.9999974400 + 0.065199918008305602 5.8092363805356797 1099999.9999846600 + 0.064695800335077297 14.230760262295600 1099999.9999079499 + 0.063766815289382300 34.859979268264901 1099999.9994476300 + 0.062447058435216099 85.393216839538596 1099999.9966854500 + 0.060310076906945599 209.17533963084600 1099999.9801116700 + 0.056549327627594001 512.36813818279302 1099999.8806722199 + 0.050787228485341299 1254.9288172655199 1099999.2841605200 + 0.042344263852107100 3073.0725729324499 1099995.7073666099 + 0.030661433599011099 7521.8214912767899 1099974.2825182099 + 0.015900155273932199 18389.514197501299 1099846.2736980901 +-0.00024852894672412903 44828.510168787900 1099086.1679941399 +-0.013487418465909800 108456.76297030800 1094640.1831497001 +-0.017410155141212798 256943.76454259900 1069569.9611819100 +-0.0096878153045200401 570452.83872587106 940523.02406139695 + 0.0054472476484558200 -570452.79791293095 940523.04881555506 +-0.0011936104102783301 -256943.74104813300 1069569.9668260100 +-0.0025377641987750200 -108456.75913676900 1094640.1835295199 + 0.00075397341722360095 -44828.517147009399 1099086.1677095201 + 0.0063108669311908302 -18389.524762349600 1099846.2735214501 + 0.011964870269201100 -7521.8319168626304 1099974.2824469199 + 0.016589145715871299 -3073.0809462038101 1099995.7073432100 + 0.020239190956405698 -1254.9348534814601 1099999.2841536400 + 0.022773806052621699 -512.37217869786400 1099999.8806703300 + 0.024196353594765501 -209.17778786434201 1099999.9801112099 + 0.025204827668328600 -85.394616637643395 1099999.9966853401 + 0.025984257543035998 -34.860997948900597 1099999.9994476000 + 0.026395833840053600 -14.231294894316800 1099999.9999079399 + 0.026611810172252101 -5.8096953470987103 1099999.9999846600 + 0.026591832727930101 -2.3717579516770200 1099999.9999974400 + 0.026830941916421699 -0.96834367044786396 1099999.9999995700 + 0.027090664487518099 -0.39544751051413601 1099999.9999999299 + 0.026903269578277201 -0.16136296399332900 1099999.9999999900 + 0.026688140473092700 -0.065708049141524894 1100000.0000000000 + 0.026708183354336300 -0.026708183354331502 1100000.0000000000 + 0.026808945376822799 -0.010953448518072600 1100000.0000000000 + 0.026818894524457400 -0.0045303225100358996 1100000.0000000000 + 0.026778415199064001 -0.0017799942356201599 1100000.0000000000 + 0.026542051163560201 -0.00059189191256001398 1100000.0000000000 + 0.026265382059914400 -9.9622181600647903e-06 1100000.0000000000 + 0.025977218944228001 0.00061316119318962096 1100000.0000000000 + 0.025388258790825600 0.0010480563152423000 1100000.0000000000 + 0.024427604926184902 0.0014839438914448400 1100000.0000000000 + 0.022892096581790498 0.0023118283843173298 1100000.0000000000 + 0.020488671518546501 0.0033323943731355899 1100000.0000000000 + 0.016704142781717599 0.0047609301726432704 1100000.0000000000 + 0.011285942881948801 0.0065054127572382898 1100000.0000000000 + 0.0038650724249613198 0.0085422200782529593 1100000.0000000000 +-0.0058039722389924900 0.010534870794257200 1100000.0000000000 +-0.017516071261367901 0.012123883548426900 1100000.0000000000 +-0.030824764997928501 0.012941388987009399 1100000.0000000000 +-0.044538526868001700 0.012366141660020201 1100000.0000000000 +-0.057182386353284098 0.010451645324893300 1100000.0000000000 +-0.066931311391265097 0.0069189436121548801 1100000.0000000000 +-0.072273693126036598 0.0024896883240447098 1100000.0000000000 +-0.072273693126080493 -0.0024896883240425999 1100000.0000000000 +-0.066931311391227599 -0.0069189436121506803 1100000.0000000000 +-0.057182386353324399 -0.010451645324894900 1100000.0000000000 +-0.044538526867977497 -0.012366141660015000 1100000.0000000000 +-0.030824764997956600 -0.012941388987010600 1100000.0000000000 +-0.017516071261365000 -0.012123883548423900 1100000.0000000000 +-0.0058039722389989501 -0.010534870794257601 1100000.0000000000 + 0.0038650724249483402 -0.0085422200782541598 1100000.0000000000 + 0.011285942881964901 -0.0065054127572352202 1100000.0000000000 + 0.016704142781710701 -0.0047609301726438897 1100000.0000000000 + 0.020488671518552801 -0.0033323943731360800 1100000.0000000000 + 0.022892096581783601 -0.0023118283843152000 1100000.0000000000 + 0.024427604926194300 -0.0014839438914462199 1100000.0000000000 + 0.025388258790816701 -0.0010480563152449401 1100000.0000000000 + 0.025977218944232501 -0.00061316119318797298 1100000.0000000000 + 0.026265382059913200 9.9622181589118294e-06 1100000.0000000000 + 0.026542051163550701 0.00059189191255844102 1100000.0000000000 + 0.026778415199070899 0.0017799942356205201 1100000.0000000000 + 0.026818894524451999 0.0045303225100433997 1100000.0000000000 + 0.026808945376827500 0.010953448518068299 1100000.0000000000 + 0.026708183354326499 0.026708183354334100 1100000.0000000000 + 0.026688140473101099 0.065708049141531097 1100000.0000000000 + 0.026903269578267199 0.16136296399330699 1099999.9999999900 + 0.027090664487519699 0.39544751051413801 1099999.9999999299 + 0.026830941916427799 0.96834367044786895 1099999.9999995700 + 0.026591832727956101 2.3717579516769800 1099999.9999974400 + 0.026611810172196500 5.8096953470988204 1099999.9999846600 + 0.026395833840089301 14.231294894316800 1099999.9999079399 + 0.025984257543223001 34.860997948900703 1099999.9994476000 + 0.025204827668057400 85.394616637643495 1099999.9966853401 + 0.024196353594387199 209.17778786434201 1099999.9801112099 + 0.022773806052757799 512.37217869786502 1099999.8806703300 + 0.020239190959211700 1254.9348534814701 1099999.2841536400 + 0.016589145717517101 3073.0809462038201 1099995.7073432100 + 0.011964870260231001 7521.8319168626103 1099974.2824469199 + 0.0063108669425309804 18389.524762349600 1099846.2735214501 + 0.00075397339905372703 44828.517147009399 1099086.1677095201 +-0.0025377643292086101 108456.75913676800 1094640.1835295199 +-0.0011936104182577400 256943.74104813300 1069569.9668260100 + 0.0054472476091318601 570452.79791293095 940523.04881555599 + 0.0058435385378374097 -570452.77970908198 940523.05985668499 + 0.0019614156550721100 -256943.72918822200 1069569.9696751300 + 0.00020539158988947499 -108456.75535104101 1094640.1839046101 + 0.00083290913235654896 -44828.518541328798 1099086.1676526500 + 0.0026458783485878400 -18389.528141802501 1099846.2734649400 + 0.0046035470966218003 -7521.8356247869897 1099974.2824215600 + 0.0065831303976143602 -3073.0844304094599 1099995.7073334800 + 0.0081832741999388701 -1254.9373106300100 1099999.2841508300 + 0.0090921225562792599 -512.37375689671001 1099999.8806696001 + 0.0097649957027986997 -209.17890096074601 1099999.9801109901 + 0.010292587969415699 -85.395472282538904 1099999.9966852800 + 0.010595032873276400 -34.861447282906902 1099999.9994475800 + 0.010731227425971400 -14.231646320630700 1099999.9999079399 + 0.010728659323285501 -5.8097483851575697 1099999.9999846600 + 0.010978350725475899 -2.3718565874997601 1099999.9999974400 + 0.011132599556119900 -0.96848363463338005 1099999.9999995700 + 0.011118347036423400 -0.39535810280924100 1099999.9999999299 + 0.010851723012456399 -0.16125812386461999 1099999.9999999900 + 0.010774325034491000 -0.065688112014391606 1100000.0000000000 + 0.010953448518069901 -0.026808945376827001 1100000.0000000000 + 0.010933518795621400 -0.010933518795618600 1100000.0000000000 + 0.010874109119890400 -0.0043607048123114802 1100000.0000000000 + 0.010603504915706099 -0.0015825571298409200 1100000.0000000000 + 0.010339496842526700 -0.00034352879571244597 1100000.0000000000 + 0.0099978652817960308 0.00053975328232744996 1100000.0000000000 + 0.0093050255267079600 0.0012085983776921900 1100000.0000000000 + 0.0081084917204801103 0.0019545729367192702 1100000.0000000000 + 0.0059482905711715902 0.0032403444591432898 1100000.0000000000 + 0.0024148166848962098 0.0051490939616561796 1100000.0000000000 +-0.0033190942239448400 0.0077517709797653303 1100000.0000000000 +-0.012157694374569501 0.011344887231690999 1100000.0000000000 +-0.024949981001765102 0.015832473096997500 1100000.0000000000 +-0.042967921008436799 0.021082488132889800 1100000.0000000000 +-0.066632419248448399 0.026266201926463100 1100000.0000000000 +-0.096075429243837399 0.030749151061609001 1100000.0000000000 +-0.12989087131202501 0.032995482055256299 1099999.9999999900 +-0.16534626803438099 0.032112117052729199 1099999.9999999900 +-0.19834924107503199 0.027204829058068800 1099999.9999999800 +-0.22404698045599500 0.018281883855658401 1099999.9999999800 +-0.23820471679606400 0.0064935284401628802 1099999.9999999700 +-0.23820471679599900 -0.0064935284401634501 1099999.9999999700 +-0.22404698045605900 -0.018281883855661599 1099999.9999999800 +-0.19834924107496499 -0.027204829058064900 1099999.9999999800 +-0.16534626803444399 -0.032112117052733501 1099999.9999999900 +-0.12989087131197199 -0.032995482055248201 1099999.9999999900 +-0.096075429243892799 -0.030749151061616301 1100000.0000000000 +-0.066632419248427804 -0.026266201926456401 1100000.0000000000 +-0.042967921008463202 -0.021082488132896701 1100000.0000000000 +-0.024949981001783202 -0.015832473097004401 1100000.0000000000 +-0.012157694374551100 -0.011344887231685500 1100000.0000000000 +-0.0033190942239449900 -0.0077517709797640102 1100000.0000000000 + 0.0024148166848995400 -0.0051490939616589603 1100000.0000000000 + 0.0059482905711707003 -0.0032403444591387900 1100000.0000000000 + 0.0081084917204824105 -0.0019545729367183699 1100000.0000000000 + 0.0093050255267002595 -0.0012085983776935099 1100000.0000000000 + 0.0099978652817973197 -0.00053975328232381799 1100000.0000000000 + 0.010339496842527400 0.00034352879571065601 1100000.0000000000 + 0.010603504915698799 0.0015825571298393000 1100000.0000000000 + 0.010874109119891701 0.0043607048123086700 1100000.0000000000 + 0.010933518795625201 0.010933518795628500 1100000.0000000000 + 0.010953448518067500 0.026808945376827001 1100000.0000000000 + 0.010774325034495999 0.065688112014379907 1100000.0000000000 + 0.010851723012447601 0.16125812386462701 1099999.9999999900 + 0.011118347036427400 0.39535810280920802 1099999.9999999299 + 0.011132599556119000 0.96848363463337295 1099999.9999995700 + 0.010978350725491800 2.3718565874998698 1099999.9999974400 + 0.010728659323321101 5.8097483851574898 1099999.9999846600 + 0.010731227426019100 14.231646320630601 1099999.9999079399 + 0.010595032873006401 34.861447282907299 1099999.9994475800 + 0.010292587969346000 85.395472282539501 1099999.9966852800 + 0.0097649957036854904 209.17890096074601 1099999.9801109901 + 0.0090921225556383194 512.37375689671001 1099999.8806696001 + 0.0081832741993363000 1254.9373106300100 1099999.2841508300 + 0.0065831304052450697 3073.0844304094599 1099995.7073334800 + 0.0046035470949091399 7521.8356247869897 1099974.2824215600 + 0.0026458783394711599 18389.528141802501 1099846.2734649400 + 0.00083290915924192103 44828.518541328798 1099086.1676526500 + 0.00020539157728914300 108456.75535104101 1094640.1839046101 + 0.0019614156269276602 256943.72918822200 1069569.9696751300 + 0.0058435384149321500 570452.77970908198 940523.05985668499 + 0.0037056891603465801 -570452.77227435203 940523.06436605100 + 0.0016752205578388700 -256943.72379700901 1069569.9709702600 + 0.00065796161923300101 -108456.75305770400 1094640.1841318400 + 0.00053651286671506902 -44828.518315706599 1099086.1676618501 + 0.0010644430504582500 -18389.529272772801 1099846.2734460300 + 0.0019056302489072500 -7521.8371369164497 1099974.2824112200 + 0.0026989839975301499 -3073.0855312342101 1099995.7073304099 + 0.0033389526446333901 -1254.9383765893399 1099999.2841496200 + 0.0036835259992308899 -512.37458556071499 1099999.8806692101 + 0.0038957347308197199 -209.17937014959500 1099999.9801109000 + 0.0041578332184356304 -85.395713170353005 1099999.9966852600 + 0.0042847780281446701 -34.861684628649598 1099999.9994475699 + 0.0043894777835037100 -14.231620519111400 1099999.9999079399 + 0.0045781260173939301 -5.8100099273830796 1099999.9999846600 + 0.0045820120088666903 -2.3721383919957000 1099999.9999974400 + 0.0046393876832845496 -0.96838973032025299 1099999.9999995700 + 0.0045230351259927196 -0.39516562500423202 1099999.9999999299 + 0.0043203956035988804 -0.16114492169962399 1099999.9999999900 + 0.0043999812188551804 -0.065767720543353198 1100000.0000000000 + 0.0045303225100373698 -0.026818894524455201 1100000.0000000000 + 0.0043607048123103197 -0.010874109119892301 1100000.0000000000 + 0.0041668236563838102 -0.0041668236563822203 1100000.0000000000 + 0.0038689347992266901 -0.0013241104520324400 1100000.0000000000 + 0.0034763653672150799 0.00016564602820774100 1100000.0000000000 + 0.0026772614758922299 0.0012517589900792900 1100000.0000000000 + 0.0012084794579301000 0.0024092510552707401 1100000.0000000000 +-0.0014699462308791300 0.0043566172592283898 1100000.0000000000 +-0.0062215207821598902 0.0072931663937353900 1100000.0000000000 +-0.014109351304015900 0.011719621951447200 1100000.0000000000 +-0.027136342036772901 0.018038777081203199 1100000.0000000000 +-0.047269249152568200 0.026812759711351900 1100000.0000000000 +-0.077571700845326899 0.038132698381910003 1100000.0000000000 +-0.12071872297480400 0.051363259063730099 1099999.9999999900 +-0.17888657999955501 0.065236854586395707 1099999.9999999800 +-0.25254594534168900 0.077409030690781699 1099999.9999999700 +-0.33854678416235801 0.084403350862041607 1099999.9999999399 +-0.43033768620817597 0.083330106046981406 1099999.9999999099 +-0.51665750967961499 0.071186493758658306 1099999.9999998801 +-0.58478410167255601 0.048401925401400002 1099999.9999998400 +-0.62240519900154501 0.017073400962298899 1099999.9999998200 +-0.62240519900159497 -0.017073400962308201 1099999.9999998200 +-0.58478410167249095 -0.048401925401405699 1099999.9999998400 +-0.51665750967966195 -0.071186493758668201 1099999.9999998801 +-0.43033768620808899 -0.083330106046980698 1099999.9999999099 +-0.33854678416241502 -0.084403350862049600 1099999.9999999399 +-0.25254594534159502 -0.077409030690770694 1099999.9999999700 +-0.17888657999962901 -0.065236854586405393 1099999.9999999800 +-0.12071872297474499 -0.051363259063716797 1099999.9999999900 +-0.077571700845391098 -0.038132698381924797 1100000.0000000000 +-0.047269249152599897 -0.026812759711369701 1100000.0000000000 +-0.027136342036748501 -0.018038777081191400 1100000.0000000000 +-0.014109351304017800 -0.011719621951448499 1100000.0000000000 +-0.0062215207821603100 -0.0072931663937387302 1100000.0000000000 +-0.0014699462308771401 -0.0043566172592205696 1100000.0000000000 + 0.0012084794579297000 -0.0024092510552704499 1100000.0000000000 + 0.0026772614758856900 -0.0012517589900818799 1100000.0000000000 + 0.0034763653672199800 -0.00016564602820530301 1100000.0000000000 + 0.0038689347992268801 0.0013241104520328401 1100000.0000000000 + 0.0041668236563819601 0.0041668236563832100 1100000.0000000000 + 0.0043607048123102598 0.010874109119887700 1100000.0000000000 + 0.0045303225100433000 0.026818894524459801 1100000.0000000000 + 0.0043999812188513102 0.065767720543358693 1100000.0000000000 + 0.0043203956036048296 0.16114492169960301 1099999.9999999900 + 0.0045230351259814301 0.39516562500423302 1099999.9999999299 + 0.0046393876832705903 0.96838973032023401 1099999.9999995700 + 0.0045820120088923503 2.3721383919956400 1099999.9999974400 + 0.0045781260175149297 5.8100099273831596 1099999.9999846600 + 0.0043894777833552402 14.231620519111701 1099999.9999079399 + 0.0042847780280537697 34.861684628649897 1099999.9994475699 + 0.0041578332185834201 85.395713170352195 1099999.9966852600 + 0.0038957347305602899 209.17937014959500 1099999.9801109000 + 0.0036835260013864100 512.37458556071897 1099999.8806692101 + 0.0033389526458847099 1254.9383765893299 1099999.2841496200 + 0.0026989839930361900 3073.0855312342101 1099995.7073304099 + 0.0019056302592113301 7521.8371369164597 1099974.2824112200 + 0.0010644430579023101 18389.529272772801 1099846.2734460300 + 0.00053651288469188404 44828.518315706599 1099086.1676618501 + 0.00065796169401036901 108456.75305770400 1094640.1841318400 + 0.0016752205467819900 256943.72379700901 1069569.9709702600 + 0.0037056891491127398 570452.77227435203 940523.06436605100 + 0.0019191494253026000 -570452.76938541199 940523.06611827097 + 0.0010865246555828800 -256943.72149191899 1069569.9715240200 + 0.00040984353388779098 -108456.75186881200 1094640.1842496300 + 0.00032196138805834598 -44828.518177038597 1099086.1676675100 + 0.00049939107584509102 -18389.529436684901 1099846.2734432900 + 0.00075039204299531901 -7521.8375911673702 1099974.2824081201 + 0.0011943717145667500 -3073.0862960807799 1099995.7073282700 + 0.0014155300046807401 -1254.9386873667499 1099999.2841492600 + 0.0014061130063932400 -512.37468913297698 1099999.8806691701 + 0.0015461348160129200 -209.17953670142799 1099999.9801108700 + 0.0017813627511856700 -85.395946452100802 1099999.9966852400 + 0.0018560189550265299 -34.861771538766398 1099999.9994475699 + 0.0018852354372695700 -14.231985125542399 1099999.9999079299 + 0.0018318246265062101 -5.8102157233494998 1099999.9999846600 + 0.0018827189474195599 -2.3719369963696399 1099999.9999974400 + 0.0020016297730987100 -0.96811345037462304 1099999.9999995700 + 0.0017989281248312701 -0.39509225201265302 1099999.9999999299 + 0.0016660393770528399 -0.16128658128671100 1099999.9999999900 + 0.0018835486778496500 -0.065785790057346305 1100000.0000000000 + 0.0017799942356208499 -0.026778415199072800 1100000.0000000000 + 0.0015825571298410700 -0.010603504915702401 1100000.0000000000 + 0.0013241104520326299 -0.0038689347992245100 1100000.0000000000 + 0.00084713591476442605 -0.00084713591476515398 1100000.0000000000 + 1.8938130249372401e-05 0.00099864380779715102 1100000.0000000000 +-0.0015850036748671101 0.0026664601557886401 1100000.0000000000 +-0.0046920449546871898 0.0053370016885854197 1100000.0000000000 +-0.010365889159865801 0.0094980912333035798 1100000.0000000000 +-0.020510540871533499 0.016106640545790599 1100000.0000000000 +-0.037913045484069798 0.026300665864043699 1100000.0000000000 +-0.066852003134227803 0.041425255796030597 1100000.0000000000 +-0.11301503121763400 0.062924827819013998 1099999.9999999900 +-0.18382235610153999 0.090972564499738395 1099999.9999999800 +-0.28694707471221897 0.12500532984554999 1099999.9999999600 +-0.42934171025985901 0.16184203782303400 1099999.9999999001 +-0.61292828732133597 0.19529343282268399 1099999.9999998100 +-0.83209670852019302 0.21680918907232100 1099999.9999996601 +-1.0695596637381799 0.21668652312021100 1099999.9999994601 +-1.2966720893090300 0.18751381580717399 1099999.9999992200 +-1.4775242447523900 0.12822729140740799 1099999.9999990000 +-1.5782775178577200 0.045603450209252702 1099999.9999988701 +-1.5782775178577200 -0.045603450209257101 1099999.9999988701 +-1.4775242447523800 -0.12822729140742400 1099999.9999990000 +-1.2966720893090100 -0.18751381580717300 1099999.9999992200 +-1.0695596637381799 -0.21668652312023501 1099999.9999994601 +-0.83209670852011697 -0.21680918907231300 1099999.9999996601 +-0.61292828732135296 -0.19529343282270001 1099999.9999998100 +-0.42934171025973500 -0.16184203782301301 1099999.9999999001 +-0.28694707471227798 -0.12500532984555501 1099999.9999999600 +-0.18382235610141701 -0.090972564499706504 1099999.9999999800 +-0.11301503121774900 -0.062924827819043599 1099999.9999999900 +-0.066852003134264995 -0.041425255796059900 1100000.0000000000 +-0.037913045484041397 -0.026300665864022101 1100000.0000000000 +-0.020510540871540198 -0.016106640545797399 1100000.0000000000 +-0.010365889159862300 -0.0094980912333087909 1100000.0000000000 +-0.0046920449546838097 -0.0053370016885769204 1100000.0000000000 +-0.0015850036748654200 -0.0026664601557883599 1100000.0000000000 + 1.8938130241997699e-05 -0.00099864380780043897 1100000.0000000000 + 0.00084713591476799405 0.00084713591476579995 1100000.0000000000 + 0.0013241104520335301 0.0038689347992266602 1100000.0000000000 + 0.0015825571298410199 0.010603504915706901 1100000.0000000000 + 0.0017799942356207701 0.026778415199068799 1100000.0000000000 + 0.0018835486778515001 0.065785790057343904 1100000.0000000000 + 0.0016660393770521499 0.16128658128671899 1099999.9999999900 + 0.0017989281248187701 0.39509225201262899 1099999.9999999299 + 0.0020016297731008802 0.96811345037459595 1099999.9999995700 + 0.0018827189474615899 2.3719369963696200 1099999.9999974400 + 0.0018318246264155300 5.8102157233495602 1099999.9999846600 + 0.0018852354372604100 14.231985125542399 1099999.9999079299 + 0.0018560189553252599 34.861771538766497 1099999.9994475699 + 0.0017813627514957099 85.395946452101597 1099999.9966852400 + 0.0015461348154853999 209.17953670142700 1099999.9801108700 + 0.0014061130057540501 512.37468913297505 1099999.8806691701 + 0.0014155300069953500 1254.9386873667600 1099999.2841492600 + 0.0011943717163632600 3073.0862960807699 1099995.7073282700 + 0.00075039205390676101 7521.8375911673502 1099974.2824081201 + 0.00049939110417377395 18389.529436684901 1099846.2734432900 + 0.00032196139236114802 44828.518177038597 1099086.1676675100 + 0.00040984356782814698 108456.75186881200 1094640.1842496300 + 0.0010865246970715500 256943.72149191899 1069569.9715240200 + 0.0019191494867596801 570452.76938541199 940523.06611827202 + 0.0010062074100973799 -570452.76836527605 940523.06673701096 + 0.00043949369139862200 -256943.72049701901 1069569.9717630199 + 0.00020314950529916700 -108456.75125848800 1094640.1843101000 + 0.00012931357934628800 -44828.517937960300 1099086.1676772600 + 0.00021060847415313601 -18389.529697758899 1099846.2734389300 + 0.00041734170584665402 -7521.8378217850604 1099974.2824065399 + 0.00059668359272899499 -3073.0862382754399 1099995.7073284299 + 0.00054365161332389398 -1254.9389023943700 1099999.2841490200 + 0.00053418662366938802 -512.37484016863800 1099999.8806690900 + 0.00075808560701644896 -209.17964760484500 1099999.9801108500 + 0.00077127971637324896 -85.396059818346501 1099999.9966852299 + 0.00072002975262787600 -34.861956841918101 1099999.9994475699 + 0.00064690188371729505 -14.231994191294600 1099999.9999079299 + 0.00079276381475808602 -5.8100997393315801 1099999.9999846600 + 0.00098156873257594104 -2.3717879212074799 1099999.9999974400 + 0.00085253785087398498 -0.96816318589904904 1099999.9999995700 + 0.00061518944738859702 -0.39521705565243598 1099999.9999999299 + 0.00064645438686004701 -0.16120025875574401 1099999.9999999900 + 0.00076213557231335203 -0.065752185175260394 1100000.0000000000 + 0.00059189191255802599 -0.026542051163555999 1100000.0000000000 + 0.00034352879571118402 -0.010339496842524200 1100000.0000000000 +-0.00016564602820600500 -0.0034763653672180502 1100000.0000000000 +-0.00099864380779722604 -1.8938130249449901e-05 1100000.0000000000 +-0.0025192786415955200 0.0025192786415997501 1100000.0000000000 +-0.0059376708489570600 0.0059685243863026403 1100000.0000000000 +-0.012152410781563301 0.011372882422388200 1100000.0000000000 +-0.024020809124852799 0.020305231054394801 1100000.0000000000 +-0.045364076010445099 0.035091470193065702 1100000.0000000000 +-0.082890989601483500 0.058526628836700102 1100000.0000000000 +-0.14666807119100800 0.094452809858344103 1099999.9999999900 +-0.25106257997422698 0.14601304708891499 1099999.9999999600 +-0.41507368451381399 0.21588689442310399 1099999.9999999001 +-0.66017089218322800 0.30299729417379101 1099999.9999997600 +-1.0064638720068499 0.40036619922258099 1099999.9999994701 +-1.4634620387531101 0.49265488335914098 1099999.9999989199 +-2.0209664567690799 0.55668826301802099 1099999.9999980000 +-2.6365874350318701 0.56478111642813000 1099999.9999966901 +-3.2352672676276000 0.49495129353815998 1099999.9999951301 +-3.7176908730199600 0.34121750875503698 1099999.9999936600 +-3.9887624267592101 0.12198736134104800 1099999.9999927599 +-3.9887624267591102 -0.12198736134104700 1099999.9999927599 +-3.7176908730200799 -0.34121750875502699 1099999.9999936600 +-3.2352672676275298 -0.49495129353817702 1099999.9999951301 +-2.6365874350319700 -0.56478111642811701 1099999.9999966901 +-2.0209664567690502 -0.55668826301806895 1099999.9999980000 +-1.4634620387531101 -0.49265488335911800 1099999.9999989199 +-1.0064638720068300 -0.40036619922262801 1099999.9999994701 +-0.66017089218312597 -0.30299729417375099 1099999.9999997600 +-0.41507368451380500 -0.21588689442309700 1099999.9999999001 +-0.25106257997403603 -0.14601304708885199 1099999.9999999600 +-0.14666807119116801 -0.094452809858394896 1099999.9999999900 +-0.082890989601509493 -0.058526628836734700 1100000.0000000000 +-0.045364076010420203 -0.035091470193034498 1100000.0000000000 +-0.024020809124864199 -0.020305231054407100 1100000.0000000000 +-0.012152410781555600 -0.011372882422396100 1100000.0000000000 +-0.0059376708489554900 -0.0059685243862942303 1100000.0000000000 +-0.0025192786415915601 -0.0025192786415965500 1100000.0000000000 +-0.00099864380780430501 1.8938130246124501e-05 1100000.0000000000 +-0.00016564602820636699 0.0034763653672164399 1100000.0000000000 + 0.00034352879571231500 0.010339496842526099 1100000.0000000000 + 0.00059189191255914597 0.026542051163563399 1100000.0000000000 + 0.00076213557231623200 0.065752185175255606 1100000.0000000000 + 0.00064645438685403099 0.16120025875574201 1099999.9999999900 + 0.00061518944739445496 0.39521705565244702 1099999.9999999299 + 0.00085253785086064301 0.96816318589896899 1099999.9999995700 + 0.00098156873251357404 2.3717879212074600 1099999.9999974400 + 0.00079276381482934802 5.8100997393317098 1099999.9999846600 + 0.00064690188384983400 14.231994191294699 1099999.9999079299 + 0.00072002975259291004 34.861956841917802 1099999.9994475699 + 0.00077127971639128802 85.396059818346600 1099999.9966852299 + 0.00075808560776271497 209.17964760484699 1099999.9801108500 + 0.00053418662190562603 512.37484016863903 1099999.8806690900 + 0.00054365160936717296 1254.9389023943600 1099999.2841490200 + 0.00059668359986684704 3073.0862382754299 1099995.7073284299 + 0.00041734170273322898 7521.8378217850404 1099974.2824065399 + 0.00021060846942611201 18389.529697758899 1099846.2734389300 + 0.00012931357765705599 44828.517937960300 1099086.1676772600 + 0.00020314949164276300 108456.75125848800 1094640.1843101000 + 0.00043949363537885500 256943.72049701901 1069569.9717630199 + 0.0010062073315246899 570452.76836527605 940523.06673701096 + 0.00032227826608712500 -570452.76797587401 940523.06697319401 + 0.00024450154792258198 -256943.72011626299 1069569.9718544900 + 3.7852391945229903e-05 -108456.75094122200 1094640.1843415401 + 4.4565181077582302e-05 -44828.517921836799 1099086.1676779201 + 0.00012053632101391700 -18389.529677396898 1099846.2734392700 + 0.00023156035076101099 -7521.8379440027602 1099974.2824057001 + 0.00028366090208093700 -3073.0865005926098 1099995.7073277000 + 0.00023495215639122299 -1254.9387511062801 1099999.2841491899 + 0.00023831315606715199 -512.37483841643598 1099999.8806691000 + 0.00030231336470533198 -209.17971312141600 1099999.9801108399 + 0.00031371712110780302 -85.396122951886696 1099999.9966852299 + 0.00020945538453540199 -34.862008264381799 1099999.9994475599 + 0.00039000257205192999 -14.232073610727500 1099999.9999079299 + 0.00047936513344202700 -5.8101115129256602 1099999.9999846600 + 0.00039049638215984500 -2.3717979131233702 1099999.9999974400 + 0.00019364890262982100 -0.96814539339849803 1099999.9999995700 + 8.8080901302231996e-05 -0.39504147153002700 1099999.9999999299 + 0.00021461373858579501 -0.16121149610478899 1099999.9999999900 + 0.00029291978623164201 -0.065602780084325699 1100000.0000000000 + 9.9622181598992394e-06 -0.026265382059915101 1100000.0000000000 +-0.00053975328232521997 -0.0099978652817994604 1100000.0000000000 +-0.0012517589900791200 -0.0026772614758898499 1100000.0000000000 +-0.0026664601557870901 0.0015850036748728900 1100000.0000000000 +-0.0059685243862981898 0.0059376708489596100 1100000.0000000000 +-0.012404765421697101 0.012404765421678600 1100000.0000000000 +-0.024842747333099099 0.023448942047868099 1100000.0000000000 +-0.048791291122618499 0.042794423262499999 1100000.0000000000 +-0.092923912979635107 0.075392109363102602 1099999.9999999900 +-0.17254163350500101 0.12885495381082901 1099999.9999999800 +-0.31124293328682501 0.21216130402553099 1099999.9999999399 +-0.54480212072987899 0.33602435582926898 1099999.9999998100 +-0.92103081173736001 0.50860640536959800 1099999.9999995001 +-1.4988232893908700 0.73055562125049101 1099999.9999987399 +-2.3356907028023701 0.98718080850256296 1099999.9999970801 +-3.4695128848843799 1.2410464941562600 1099999.9999938300 +-4.8848107373636500 1.4297541332868000 1099999.9999882199 +-6.4828783064096296 1.4755819369604299 1099999.9999799100 +-8.0648352936545606 1.3109393121288500 1099999.9999696501 +-9.3586866702817098 0.91244944562781405 1099999.9999598099 +-10.091843773464200 0.32795575395113002 1099999.9999536599 +-10.091843773464500 -0.32795575395114301 1099999.9999536599 +-9.3586866702814895 -0.91244944562779395 1099999.9999598099 +-8.0648352936547596 -1.3109393121288500 1099999.9999696501 +-6.4828783064094502 -1.4755819369604000 1099999.9999799100 +-4.8848107373638996 -1.4297541332868200 1099999.9999882199 +-3.4695128848843400 -1.2410464941563100 1099999.9999938300 +-2.3356907028024798 -0.98718080850254897 1099999.9999970801 +-1.4988232893908799 -0.73055562125060203 1099999.9999987399 +-0.92103081173734602 -0.50860640536954604 1099999.9999995001 +-0.54480212072977496 -0.33602435582925100 1099999.9999998100 +-0.31124293328660602 -0.21216130402543401 1099999.9999999399 +-0.17254163350517701 -0.12885495381090201 1099999.9999999800 +-0.092923912979638201 -0.075392109363134299 1099999.9999999900 +-0.048791291122604601 -0.042794423262459698 1100000.0000000000 +-0.024842747333113101 -0.023448942047882601 1100000.0000000000 +-0.012404765421688300 -0.012404765421690500 1100000.0000000000 +-0.0059685243862990303 -0.0059376708489532999 1100000.0000000000 +-0.0026664601557808000 -0.0015850036748666200 1100000.0000000000 +-0.0012517589900847800 0.0026772614758891599 1100000.0000000000 +-0.00053975328232727898 0.0099978652817979893 1100000.0000000000 + 9.9622181621074797e-06 0.026265382059909199 1100000.0000000000 + 0.00029291978623006802 0.065602780084333401 1100000.0000000000 + 0.00021461373859309199 0.16121149610479499 1099999.9999999900 + 8.8080901305518294e-05 0.39504147153001701 1099999.9999999299 + 0.00019364890261806399 0.96814539339851102 1099999.9999995700 + 0.00039049638211535601 2.3717979131232800 1099999.9999974400 + 0.00047936513336636801 5.8101115129255900 1099999.9999846600 + 0.00039000257220097700 14.232073610727600 1099999.9999079299 + 0.00020945538486442301 34.862008264382197 1099999.9994475599 + 0.00031371712111789602 85.396122951886994 1099999.9966852299 + 0.00030231336364948099 209.17971312141600 1099999.9801108399 + 0.00023831315554852001 512.37483841643700 1099999.8806691000 + 0.00023495215827114299 1254.9387511062700 1099999.2841491899 + 0.00028366089499922098 3073.0865005925998 1099995.7073277000 + 0.00023156034182611601 7521.8379440027502 1099974.2824057001 + 0.00012053629015933200 18389.529677396898 1099846.2734392700 + 4.4565159113042299e-05 44828.517921836799 1099086.1676779201 + 3.7852361772500801e-05 108456.75094122200 1094640.1843415401 + 0.00024450150347096598 256943.72011626299 1069569.9718544900 + 0.00032227814555785202 570452.76797587401 940523.06697319401 + 0.00010268245171038400 -570452.76790761796 940523.06701459305 +-8.5075144858684097e-05 -256943.71988771300 1069569.9719094001 +-7.4595031145848595e-05 -108456.75086249100 1094640.1843493399 +-2.8589584697074201e-05 -44828.517964555002 1099086.1676761799 + 6.9531746479154798e-05 -18389.529875204498 1099846.2734359601 + 0.00018492372337914999 -7521.8379281866801 1099974.2824058100 + 0.00017284710996417999 -3073.0863085950300 1099995.7073282299 + 2.5112684288378900e-05 -1254.9389092991901 1099999.2841490100 + 9.6072453722960405e-05 -512.37480074005805 1099999.8806691100 + 0.00021914423211267300 -209.17979477733601 1099999.9801108199 + 7.9344815152398494e-05 -85.396238039905398 1099999.9966852199 + 0.00012065671551152800 -34.862040898781302 1099999.9994475599 + 0.00013442993146201701 -14.232101812921901 1099999.9999079299 + 0.00011525290696667901 -5.8100194238817897 1099999.9999846600 + 6.1566274924874600e-05 -2.3716554288037202 1099999.9999974400 +-2.1601458735895799e-05 -0.96804590760685005 1099999.9999995700 +-3.3657941982762802e-05 -0.39513884586935499 1099999.9999999299 + 0.00017505360082215699 -0.16109295534733400 1099999.9999999900 +-1.1781003240787300e-05 -0.065349977889591307 1100000.0000000000 +-0.00061316119318860203 -0.025977218944231099 1100000.0000000000 +-0.0012085983776908601 -0.0093050255267008598 1100000.0000000000 +-0.0024092510552705801 -0.0012084794579259701 1100000.0000000000 +-0.0053370016885820604 0.0046920449546848601 1100000.0000000000 +-0.011372882422404600 0.012152410781547700 1100000.0000000000 +-0.023448942047860501 0.024842747333110499 1100000.0000000000 +-0.047750018499691703 0.047750018499710001 1100000.0000000000 +-0.095056454410473307 0.088640857330010994 1099999.9999999900 +-0.18485503799776801 0.15985195966698901 1099999.9999999700 +-0.35066247561028202 0.27913116690799400 1099999.9999999099 +-0.64846138284109200 0.47142816487603201 1099999.9999997099 +-1.1628449125066000 0.76557276822729303 1099999.9999991199 +-2.0162529248677501 1.1883724775779401 1099999.9999975101 +-3.3633223830745900 1.7502424213060901 1099999.9999934700 +-5.3721840682438504 2.4238673739120302 1099999.9999842099 +-8.1696535522943794 3.1193649314124201 1099999.9999652400 +-11.756624978938801 3.6724115649279900 1099999.9999310400 +-15.905837967709200 3.8629792627057098 1099999.9998782200 +-20.101066911129202 3.4853506623222001 1099999.9998108200 +-23.588289901512699 2.4527189118751700 1099999.9997443501 +-25.585148273674100 0.88656420170521599 1099999.9997020999 +-25.585148273673799 -0.88656420170523298 1099999.9997020999 +-23.588289901512901 -2.4527189118752801 1099999.9997443501 +-20.101066911128800 -3.4853506623220798 1099999.9998108200 +-15.905837967709299 -3.8629792627057600 1099999.9998782200 +-11.756624978938500 -3.6724115649278102 1099999.9999310400 +-8.1696535522947098 -3.1193649314125000 1099999.9999652400 +-5.3721840682437101 -2.4238673739119898 1099999.9999842099 +-3.3633223830747401 -1.7502424213061101 1099999.9999934700 +-2.0162529248678700 -1.1883724775781299 1099999.9999975101 +-1.1628449125066700 -0.76557276822725095 1099999.9999991199 +-0.64846138284093402 -0.47142816487601302 1099999.9999997099 +-0.35066247561009600 -0.27913116690788098 1099999.9999999099 +-0.18485503799792199 -0.15985195966707899 1099999.9999999700 +-0.095056454410455599 -0.088640857330034906 1099999.9999999900 +-0.047750018499688997 -0.047750018499662900 1100000.0000000000 +-0.023448942047872800 -0.024842747333122101 1100000.0000000000 +-0.011372882422395600 -0.012152410781562199 1100000.0000000000 +-0.0053370016885858603 -0.0046920449546817298 1100000.0000000000 +-0.0024092510552634699 0.0012084794579326700 1100000.0000000000 +-0.0012085983776934999 0.0093050255266993800 1100000.0000000000 +-0.00061316119319194799 0.025977218944235901 1100000.0000000000 +-1.1781003239176899e-05 0.065349977889583202 1100000.0000000000 + 0.00017505360082081499 0.16109295534732301 1099999.9999999900 +-3.3657941974353303e-05 0.39513884586936798 1099999.9999999299 +-2.1601458722845999e-05 0.96804590760687004 1099999.9999995700 + 6.1566274885340604e-05 2.3716554288037699 1099999.9999974400 + 0.00011525290690268700 5.8100194238816201 1099999.9999846600 + 0.00013442993148928499 14.232101812921700 1099999.9999079299 + 0.00012065671561772700 34.862040898781402 1099999.9994475599 + 7.9344814960760095e-05 85.396238039906507 1099999.9966852199 + 0.00021914423201583699 209.17979477733701 1099999.9801108199 + 9.6072454287182306e-05 512.37480074005703 1099999.8806691100 + 2.5112683818585601e-05 1254.9389092991901 1099999.2841490100 + 0.00017284711135713600 3073.0863085950300 1099995.7073282299 + 0.00018492371809392401 7521.8379281866801 1099974.2824058100 + 6.9531729055798393e-05 18389.529875204498 1099846.2734359601 +-2.8589610166839699e-05 44828.517964555002 1099086.1676761799 +-7.4595104987400406e-05 108456.75086249100 1094640.1843493399 +-8.5075121995952004e-05 256943.71988771300 1069569.9719094001 + 0.00010268244779364800 570452.76790761796 940523.06701459305 +-0.00015690711528457900 -570452.76792816096 940523.06700213300 +-8.5906307916084503e-05 -256943.71994872100 1069569.9718947399 +-0.00013273220411314901 -108456.75081922900 1094640.1843536200 +-3.6277828723811598e-05 -44828.518011269902 1099086.1676742700 + 6.8388472487324205e-05 -18389.529907213899 1099846.2734354299 + 0.00011751985314474800 -7521.8380687889003 1099974.2824048500 + 2.7954756596611900e-05 -3073.0864117889901 1099995.7073279400 + 1.1178670548596800e-05 -1254.9386671046400 1099999.2841492901 + 0.00011935926547084300 -512.37494359469201 1099999.8806690499 + 4.3145117745557100e-05 -209.17983169213900 1099999.9801108199 +-2.2771226369002701e-05 -85.396175123453304 1099999.9966852199 +-3.8458723048826002e-05 -34.862115444764797 1099999.9994475599 + 6.3630471402188496e-05 -14.232034034843799 1099999.9999079299 + 6.7161269365091202e-05 -5.8098973349224696 1099999.9999846600 +-3.4993194470714600e-06 -2.3717196390290698 1099999.9999974400 +-9.3318850858255505e-05 -0.96819244217033795 1099999.9999995700 +-2.0583102483462102e-05 -0.39491184827207199 1099999.9999999299 +-6.0929039175401698e-05 -0.16090161744391501 1099999.9999999900 +-0.00047405444260247698 -0.065145860145579396 1100000.0000000000 +-0.0010480563152408800 -0.025388258790819501 1100000.0000000000 +-0.0019545729367194298 -0.0081084917204798206 1100000.0000000000 +-0.0043566172592258597 0.0014699462308735700 1100000.0000000000 +-0.0094980912333159900 0.010365889159857301 1100000.0000000000 +-0.020305231054388299 0.024020809124870899 1100000.0000000000 +-0.042794423262482797 0.048791291122627700 1100000.0000000000 +-0.088640857330033102 0.095056454410448105 1099999.9999999900 +-0.18031315271457099 0.18031315271459800 1099999.9999999700 +-0.35847862302501798 0.33236221926528198 1099999.9999998901 +-0.69825873608955402 0.59597369713599302 1099999.9999996200 +-1.3245076822596100 1.0331281066453299 1099999.9999987199 +-2.4400493111786501 1.7233818187372001 1099999.9999959399 +-4.3463778859338102 2.7485242299047501 1099999.9999879799 +-7.4513870812598597 4.1600092601416803 1099999.9999669001 +-12.227863194485300 5.9176328253953399 1099999.9999161200 +-19.088566979020200 7.8162544568023602 1099999.9998066099 +-28.150744360170702 9.4273547132974205 1099999.9995993900 +-38.927148126294099 10.132381179951700 1099999.9992645499 +-50.087887253536600 9.3041955459502503 1099999.9988202900 +-59.542117406774800 6.6306459395821404 1099999.9983685301 +-65.021978460147594 2.4122791078579100 1099999.9980756000 +-65.021978460147807 -2.4122791078579802 1099999.9980756000 +-59.542117406774601 -6.6306459395820001 1099999.9983685301 +-50.087887253536898 -9.3041955459505807 1099999.9988202900 +-38.927148126293702 -10.132381179951400 1099999.9992645499 +-28.150744360170599 -9.4273547132975501 1099999.9995993900 +-19.088566979019699 -7.8162544568019001 1099999.9998066099 +-12.227863194485700 -5.9176328253955202 1099999.9999161200 +-7.4513870812594698 -4.1600092601414103 1099999.9999669001 +-4.3463778859339302 -2.7485242299047701 1099999.9999879799 +-2.4400493111788402 -1.7233818187373999 1099999.9999959399 +-1.3245076822596800 -1.0331281066453100 1099999.9999987199 +-0.69825873608942601 -0.59597369713598303 1099999.9999996200 +-0.35847862302490002 -0.33236221926517800 1099999.9999998901 +-0.18031315271468201 -0.18031315271470000 1099999.9999999700 +-0.088640857330005998 -0.095056454410466104 1099999.9999999900 +-0.042794423262487502 -0.048791291122581501 1100000.0000000000 +-0.020305231054398298 -0.024020809124873602 1100000.0000000000 +-0.0094980912333047299 -0.010365889159870301 1100000.0000000000 +-0.0043566172592311402 -0.0014699462308767600 1100000.0000000000 +-0.0019545729367156702 0.0081084917204883502 1100000.0000000000 +-0.0010480563152420899 0.025388258790817599 1100000.0000000000 +-0.00047405444260349000 0.065145860145580603 1100000.0000000000 +-6.0929039170463103e-05 0.16090161744390899 1099999.9999999900 +-2.0583102485218600e-05 0.39491184827206199 1099999.9999999299 +-9.3318850878413101e-05 0.96819244217036804 1099999.9999995700 +-3.4993194301465601e-06 2.3717196390290800 1099999.9999974400 + 6.7161269432756206e-05 5.8098973349224803 1099999.9999846600 + 6.3630471311997106e-05 14.232034034843601 1099999.9999079299 +-3.8458723322209200e-05 34.862115444765102 1099999.9994475599 +-2.2771226401541899e-05 85.396175123453801 1099999.9966852199 + 4.3145117912966603e-05 209.17983169214000 1099999.9801108199 + 0.00011935926595504300 512.37494359469304 1099999.8806690499 + 1.1178672038109300e-05 1254.9386671046400 1099999.2841492901 + 2.7954757238636599e-05 3073.0864117889801 1099995.7073279400 + 0.00011751985493087300 7521.8380687889103 1099974.2824048500 + 6.8388463339774707e-05 18389.529907213899 1099846.2734354299 +-3.6277869114981100e-05 44828.518011270004 1099086.1676742700 +-0.00013273227634126301 108456.75081922900 1094640.1843536200 +-8.5906373699728701e-05 256943.71994872100 1069569.9718947399 +-0.00015690703104900001 570452.76792816096 940523.06700213300 +-0.00013246643755768499 -570452.76800308202 940523.06695669203 +-0.00018219355631341700 -256943.71989812099 1069569.9719068999 +-9.8729256672093000e-05 -108456.75092014100 1094640.1843436300 +-5.2726767724241699e-05 -44828.518179756204 1099086.1676674001 + 4.0772762103969099e-05 -18389.530051879901 1099846.2734330101 + 7.4541263807517203e-05 -7521.8379766440603 1099974.2824054800 + 3.0799223867395698e-05 -3073.0862786294201 1099995.7073283200 +-4.9774036611104603e-06 -1254.9388528101999 1099999.2841490700 + 3.0334065601052600e-05 -512.37484259370297 1099999.8806690900 + 1.7623072423001699e-05 -209.17987563077500 1099999.9801108099 +-7.7353233651572594e-05 -85.396286723946901 1099999.9966852199 + 5.9612503482710003e-05 -34.862027763231303 1099999.9994475599 +-5.4291627002427997e-06 -14.231997858663100 1099999.9999079299 +-5.1176699321798298e-05 -5.8099586339472502 1099999.9999846600 +-9.7696235018412196e-05 -2.3717327167982400 1099999.9999974400 +-0.00014365158055732301 -0.96787496452537203 1099999.9999995700 +-0.00010509038027445800 -0.39482130352986300 1099999.9999999299 +-0.00019648784785503899 -0.16087155391272501 1099999.9999999900 +-0.00064097523370271604 -0.064633424808889603 1100000.0000000000 +-0.0014839438914450399 -0.024427604926190300 1100000.0000000000 +-0.0032403444591410798 -0.0059482905711762202 1100000.0000000000 +-0.0072931663937443004 0.0062215207821588103 1100000.0000000000 +-0.016106640545784898 0.020510540871557102 1100000.0000000000 +-0.035091470193055002 0.045364076010438500 1100000.0000000000 +-0.075392109363119894 0.092923912979609100 1099999.9999999900 +-0.15985195966697499 0.18485503799781500 1099999.9999999700 +-0.33236221926531800 0.35847862302495298 1099999.9999998901 +-0.67909268469711603 0.67909268469713602 1099999.9999995800 +-1.3578507491134300 1.2503718389557701 1099999.9999984500 +-2.6481045815119302 2.2284858691977401 1099999.9999945599 +-5.0190979846165797 3.8245514352104601 1099999.9999819000 +-9.2062663620979102 6.2808060074369196 1099999.9999435400 +-16.259682544972399 9.7913696307332199 1099999.9998362500 +-27.488653781556199 14.347054606842500 1099999.9995629699 +-44.179969387478700 19.504850152125300 1099999.9989398599 +-66.978330375051897 24.175544665116700 1099999.9976951999 +-94.955138015528107 26.626267684302899 1099999.9955793500 +-124.74530831504700 24.949988044984799 1099999.9926436800 +-150.54358697436200 18.040799544228200 1099999.9895505300 +-165.71215447618599 6.6138910101043100 1099999.9874980601 +-165.71215447618701 -6.6138910101041102 1099999.9874980601 +-150.54358697436101 -18.040799544228101 1099999.9895505300 +-124.74530831504801 -24.949988044984600 1099999.9926436800 +-94.955138015528803 -26.626267684303599 1099999.9955793500 +-66.978330375051897 -24.175544665116199 1099999.9976951999 +-44.179969387478302 -19.504850152125499 1099999.9989398599 +-27.488653781555801 -14.347054606841800 1099999.9995629699 +-16.259682544973000 -9.7913696307336195 1099999.9998362500 +-9.2062663620973098 -6.2808060074364098 1099999.9999435400 +-5.0190979846167201 -3.8245514352104100 1099999.9999819000 +-2.6481045815120599 -2.2284858691978999 1099999.9999945599 +-1.3578507491133900 -1.2503718389557701 1099999.9999984500 +-0.67909268469706796 -0.67909268469712603 1099999.9999995800 +-0.33236221926526199 -0.35847862302487798 1099999.9999998901 +-0.15985195966704599 -0.18485503799791300 1099999.9999999700 +-0.075392109363093901 -0.092923912979623796 1099999.9999999900 +-0.035091470193062399 -0.045364076010404999 1100000.0000000000 +-0.016106640545794498 -0.020510540871552099 1100000.0000000000 +-0.0072931663937308199 -0.0062215207821629502 1100000.0000000000 +-0.0032403444591462402 0.0059482905711690497 1100000.0000000000 +-0.0014839438914454499 0.024427604926195199 1100000.0000000000 +-0.00064097523370016795 0.064633424808882706 1100000.0000000000 +-0.00019648784785204599 0.16087155391272301 1099999.9999999900 +-0.00010509038028231901 0.39482130352987499 1099999.9999999299 +-0.00014365158056028399 0.96787496452537902 1099999.9999995700 +-9.7696235012840698e-05 2.3717327167982698 1099999.9999974400 +-5.1176699329989499e-05 5.8099586339472102 1099999.9999846600 +-5.4291626260507798e-06 14.231997858663201 1099999.9999079299 + 5.9612503398125598e-05 34.862027763231197 1099999.9994475599 +-7.7353234067369304e-05 85.396286723947696 1099999.9966852199 + 1.7623072501967900e-05 209.17987563077600 1099999.9801108099 + 3.0334066984313198e-05 512.37484259370103 1099999.8806690900 +-4.9774021829807300e-06 1254.9388528101999 1099999.2841490700 + 3.0799223377409202e-05 3073.0862786294201 1099995.7073283200 + 7.4541263180919905e-05 7521.8379766440703 1099974.2824054800 + 4.0772758188847102e-05 18389.530051879901 1099846.2734330101 +-5.2726756915597097e-05 44828.518179756298 1099086.1676674001 +-9.8729217103797704e-05 108456.75092014100 1094640.1843436300 +-0.00018219351299674500 256943.71989812099 1069569.9719068899 +-0.00013246626213568599 570452.76800308202 940523.06695669203 +-9.1783333144428004e-05 -570452.76798202703 940523.06696946197 +-8.9198139861789504e-05 -256943.71999688199 1069569.9718831701 +-0.00013077981649444600 -108456.75094179400 1094640.1843414800 +-3.0672005389604601e-06 -44828.518195817698 1099086.1676667400 + 7.3305847033004504e-05 -18389.530087884799 1099846.2734324001 + 5.9136472260863497e-05 -7521.8380968811698 1099974.2824046600 +-4.4324237585908098e-05 -3073.0863041342000 1099995.7073282499 + 2.1279031588255300e-06 -1254.9386622346301 1099999.2841492901 + 7.1967927889230306e-05 -512.37504134004496 1099999.8806690001 +-4.2289594302124000e-05 -209.17987753179600 1099999.9801108099 +-1.9322056528788499e-05 -85.396136325598903 1099999.9966852299 +-7.7289816909601201e-05 -34.862086309585500 1099999.9994475599 +-4.0729244850402102e-05 -14.231961510419399 1099999.9999079299 +-5.7023819159583799e-05 -5.8098667287339101 1099999.9999846600 +-5.3336905981475597e-05 -2.3715840052852202 1099999.9999974400 +-8.4994207164662100e-05 -0.96796065670274600 1099999.9999995700 +-4.6341334383734903e-05 -0.39486668115462298 1099999.9999999299 +-0.00027172697557392201 -0.16042158959587399 1099999.9999999900 +-0.0010738427607073699 -0.063856924927527203 1100000.0000000000 +-0.0023118283843172101 -0.022892096581794301 1100000.0000000000 +-0.0051490939616630699 -0.0024148166848956300 1100000.0000000000 +-0.011719621951441999 0.014109351304038901 1100000.0000000000 +-0.026300665864039102 0.037913045484051097 1100000.0000000000 +-0.058526628836710802 0.082890989601464904 1100000.0000000000 +-0.12885495381082901 0.17254163350506799 1099999.9999999800 +-0.27913116690800099 0.35066247561018898 1099999.9999999099 +-0.59597369713594595 0.69825873608955602 1099999.9999996200 +-1.2503718389558001 1.3578507491134300 1099999.9999984500 +-2.5707772995133902 2.5707772995132299 1099999.9999939899 +-5.1619668871694797 4.7172911629413399 1099999.9999777700 +-10.087083252090601 8.3465604648459699 1099999.9999220800 +-19.096506120078999 14.145612698317800 1099999.9997432800 +-34.839922223958403 22.776883523728099 1099999.9992124501 +-60.866295937547100 34.481020239989498 1099999.9977756201 +-101.06106027464500 48.412147269611097 1099999.9942922399 +-158.07930214788399 61.881298160457902 1099999.9869007501 +-230.61675061491101 70.087746721568294 1099999.9735925600 +-310.39143602311100 67.230284331629605 1099999.9541532900 +-381.29548413951801 49.445121717077299 1099999.9328040599 +-423.69951070469102 18.289113876833099 1099999.9182473801 +-423.69951070468699 -18.289113876832602 1099999.9182473801 +-381.29548413952199 -49.445121717077797 1099999.9328040599 +-310.39143602310997 -67.230284331628695 1099999.9541532900 +-230.61675061491300 -70.087746721568806 1099999.9735925600 +-158.07930214788499 -61.881298160459203 1099999.9869007501 +-101.06106027464500 -48.412147269610998 1099999.9942922399 +-60.866295937546298 -34.481020239989697 1099999.9977756201 +-34.839922223958403 -22.776883523727300 1099999.9992124501 +-19.096506120079599 -14.145612698318500 1099999.9997432800 +-10.087083252090100 -8.3465604648453908 1099999.9999220800 +-5.1619668871697497 -4.7172911629412200 1099999.9999777700 +-2.5707772995133702 -2.5707772995133298 1099999.9999939899 +-1.2503718389556600 -1.3578507491134100 1099999.9999984500 +-0.59597369713596804 -0.69825873608953803 1099999.9999996200 +-0.27913116690798601 -0.35066247561015201 1099999.9999999099 +-0.12885495381087100 -0.17254163350514501 1099999.9999999800 +-0.058526628836689500 -0.082890989601473605 1100000.0000000000 +-0.026300665864044500 -0.037913045484035297 1100000.0000000000 +-0.011719621951453100 -0.014109351304033400 1100000.0000000000 +-0.0051490939616498999 0.0024148166849015502 1100000.0000000000 +-0.0023118283843189600 0.022892096581784000 1100000.0000000000 +-0.0010738427607102901 0.063856924927523803 1100000.0000000000 +-0.00027172697557622101 0.16042158959587099 1099999.9999999900 +-4.6341334376256300e-05 0.39486668115462298 1099999.9999999299 +-8.4994207167454205e-05 0.96796065670280496 1099999.9999995700 +-5.3336906004493697e-05 2.3715840052852402 1099999.9999974400 +-5.7023819116349103e-05 5.8098667287337298 1099999.9999846600 +-4.0729244877256103e-05 14.231961510419399 1099999.9999079299 +-7.7289816978192303e-05 34.862086309586502 1099999.9994475599 +-1.9322056321063199e-05 85.396136325598505 1099999.9966852299 +-4.2289593634635800e-05 209.17987753179500 1099999.9801108099 + 7.1967927343807996e-05 512.37504134004598 1099999.8806690001 + 2.1279010318756301e-06 1254.9386622346301 1099999.2841492901 +-4.4324231707294700e-05 3073.0863041342000 1099995.7073282499 + 5.9136476385700003e-05 7521.8380968811798 1099974.2824046600 + 7.3305855352425299e-05 18389.530087884799 1099846.2734324001 +-3.0671525412150398e-06 44828.518195817698 1099086.1676667400 +-0.00013077967387615800 108456.75094179400 1094640.1843414800 +-8.9198016446973593e-05 256943.71999688199 1069569.9718831701 +-9.1783230779106395e-05 570452.76798202703 940523.06696946302 +-1.7695265996964702e-05 -570452.76788043999 940523.06703107699 +-7.7686755626546998e-05 -256943.71988307699 1069569.9719105100 + 7.1904533609191902e-06 -108456.75101476299 1094640.1843342499 + 2.2884067787159298e-06 -44828.518318931303 1099086.1676617200 + 2.3296845656883100e-05 -18389.530137084701 1099846.2734315800 + 1.2305859621301201e-05 -7521.8380046909097 1099974.2824052901 + 2.0132431254195199e-05 -3073.0862401132199 1099995.7073284199 + 4.6158393233354801e-05 -1254.9388318237400 1099999.2841491001 + 1.9595711002151799e-05 -512.37492067321705 1099999.8806690599 +-4.2444905542821401e-05 -209.17985736762901 1099999.9801108099 +-5.5852487857484797e-05 -85.396224266726406 1099999.9966852199 + 4.6618075149600403e-05 -34.861987120294899 1099999.9994475599 +-6.9351952478612604e-05 -14.231913588472899 1099999.9999079299 + 2.5678046283604899e-05 -5.8098511061765601 1099999.9999846600 +-7.4170483477266702e-05 -2.3716873193140202 1099999.9999974400 +-0.00011265258975371301 -0.96784327986513896 1099999.9999995700 +-0.00010538948476043601 -0.39449027417558402 1099999.9999999299 +-0.00058310515690480999 -0.15995073255466299 1099999.9999999900 +-0.0014667273615017701 -0.062850452276300997 1100000.0000000000 +-0.0033323943731377202 -0.020488671518544100 1100000.0000000000 +-0.0077517709797609996 0.0033190942239607799 1100000.0000000000 +-0.018038777081203099 0.027136342036750499 1100000.0000000000 +-0.041425255796035301 0.066852003134227900 1100000.0000000000 +-0.094452809858358105 0.14666807119107900 1099999.9999999900 +-0.21216130402551300 0.31124293328670499 1099999.9999999399 +-0.47142816487594902 0.64846138284108101 1099999.9999997099 +-1.0331281066454101 1.3245076822596600 1099999.9999987199 +-2.2284858691979501 2.6481045815118200 1099999.9999945599 +-4.7172911629410104 5.1619668871697897 1099999.9999777700 +-9.7698698220176805 9.7698698220177604 1099999.9999132301 +-19.723090598479398 17.857632296684098 1099999.9996782299 +-38.633866700247097 31.312568260443800 1099999.9988758899 +-73.022792509600805 52.227507163087303 1099999.9963363500 +-132.28529202445199 81.965805688905903 1099999.9889919099 +-227.80395983235601 119.30874972343700 1099999.9699412601 +-369.24565470459902 157.93046657872500 1099999.9266889100 +-556.82842281487694 184.73291066941300 1099999.8435526500 +-771.09144938533495 182.10771018027299 1099999.7146612201 +-967.51267644428196 136.63327595416800 1099999.5660228999 +-1087.4012680593601 51.075532147497000 1099999.4613406700 +-1087.4012680593601 -51.075532147497299 1099999.4613406700 +-967.51267644427901 -136.63327595416700 1099999.5660228999 +-771.09144938533905 -182.10771018027600 1099999.7146612201 +-556.82842281487501 -184.73291066941101 1099999.8435526500 +-369.24565470459902 -157.93046657872500 1099999.9266889100 +-227.80395983235999 -119.30874972343901 1099999.9699412601 +-132.28529202445301 -81.965805688906499 1099999.9889919099 +-73.022792509599896 -52.227507163087502 1099999.9963363500 +-38.633866700247303 -31.312568260443001 1099999.9988758899 +-19.723090598479700 -17.857632296684901 1099999.9996782299 +-9.7698698220175206 -9.7698698220173004 1099999.9999132301 +-4.7172911629414100 -5.1619668871697098 1099999.9999777700 +-2.2284858691978200 -2.6481045815119000 1099999.9999945599 +-1.0331281066452200 -1.3245076822595800 1099999.9999987199 +-0.47142816487600497 -0.64846138284106403 1099999.9999997099 +-0.21216130402551900 -0.31124293328670799 1099999.9999999399 +-0.094452809858381601 -0.14666807119112801 1099999.9999999900 +-0.041425255796019800 -0.066852003134225499 1100000.0000000000 +-0.018038777081203099 -0.027136342036745701 1100000.0000000000 +-0.0077517709797725199 -0.0033190942239611299 1100000.0000000000 +-0.0033323943731280998 0.020488671518553901 1100000.0000000000 +-0.0014667273615013999 0.062850452276287896 1100000.0000000000 +-0.00058310515690758902 0.15995073255465000 1099999.9999999900 +-0.00010538948476425600 0.39449027417562199 1099999.9999999299 +-0.00011265258975343300 0.96784327986516405 1099999.9999995700 +-7.4170483457704903e-05 2.3716873193139598 1099999.9999974400 + 2.5678046244189000e-05 5.8098511061765903 1099999.9999846600 +-6.9351952527330497e-05 14.231913588473100 1099999.9999079299 + 4.6618075311782099e-05 34.861987120294302 1099999.9994475599 +-5.5852487251569997e-05 85.396224266726406 1099999.9966852199 +-4.2444905882893603e-05 209.17985736763100 1099999.9801108099 + 1.9595709455300000e-05 512.37492067321796 1099999.8806690599 + 4.6158396123315499e-05 1254.9388318237300 1099999.2841491001 + 2.0132432664052900e-05 3073.0862401132199 1099995.7073284199 + 1.2305868061099999e-05 7521.8380046909197 1099974.2824052901 + 2.3296861525150199e-05 18389.530137084701 1099846.2734315800 + 2.2884143003170802e-06 44828.518318931201 1099086.1676617200 + 7.1904748862965197e-06 108456.75101476299 1094640.1843342499 +-7.7686747334802998e-05 256943.71988307699 1069569.9719105100 +-1.7695254441527600e-05 570452.76788043999 940523.06703107699 + 1.4796900762126199e-05 -570452.76770393096 940523.06713813497 +-2.6106169658334199e-05 -256943.71987001199 1069569.9719136499 +-9.4185966449859398e-05 -108456.75099806501 1094640.1843359000 + 3.0651833180938903e-05 -44828.518293684101 1099086.1676627500 + 8.4782864827689797e-05 -18389.530155678400 1099846.2734312699 + 4.0697633536572399e-05 -7521.8380618493002 1099974.2824049001 +-8.0615099452359400e-06 -3073.0862407832301 1099995.7073284199 + 4.2471132619947800e-05 -1254.9387265806999 1099999.2841492200 + 4.1799543073608901e-05 -512.37507192418002 1099999.8806689901 +-1.7677273119317101e-06 -209.17982594551799 1099999.9801108199 + 4.9579773794313700e-05 -85.396094241168697 1099999.9966852299 +-7.6324829866589004e-05 -34.862009037878302 1099999.9994475599 + 1.1978593872101401e-05 -14.231846115385601 1099999.9999079299 +-3.3147124922853000e-05 -5.8098812520039997 1099999.9999846600 +-7.1406910757260502e-05 -2.3715330265626799 1099999.9999974400 +-3.7899999411167902e-05 -0.96767743392722305 1099999.9999995700 +-0.00013717310560422600 -0.39439239124676101 1099999.9999999299 +-0.00074516957428149904 -0.15928409317127401 1099999.9999999900 +-0.0020907583269375199 -0.061244755363464999 1100000.0000000000 +-0.0047609301726432799 -0.016704142781716301 1100000.0000000000 +-0.011344887231691900 0.012157694374554299 1100000.0000000000 +-0.026812759711351799 0.047269249152589503 1100000.0000000000 +-0.062924827819037396 0.11301503121768899 1099999.9999999900 +-0.14601304708887999 0.25106257997408699 1099999.9999999600 +-0.33602435582916501 0.54480212072986900 1099999.9999998100 +-0.76557276822741904 1.1628449125066800 1099999.9999991199 +-1.7233818187374399 2.4400493111786101 1099999.9999959399 +-3.8245514352101799 5.0190979846168400 1099999.9999819000 +-8.3465604648457106 10.087083252090499 1099999.9999220800 +-17.857632296684500 19.723090598479200 1099999.9996782299 +-37.320153488200297 37.320153488200603 1099999.9987338199 +-75.832936466860204 67.879548870080100 1099999.9952916999 +-148.96905009531699 117.65503321230599 1099999.9836206899 +-280.91255261120699 192.15375222393499 1099999.9473477600 +-504.00114809084403 291.26340304453902 1099999.8459765699 +-850.91581778989701 401.26120732628101 1099999.5976961600 +-1333.7803285785701 487.25532919434301 1099999.0834597400 +-1910.6181748587101 496.03311258128201 1099998.2288573701 +-2459.4478700926402 381.10228122383199 1099997.1844860399 +-2802.8015708326602 144.26555523982000 1099996.4197627199 +-2802.8015708326702 -144.26555523981901 1099996.4197627199 +-2459.4478700926302 -381.10228122383000 1099997.1844860399 +-1910.6181748587101 -496.03311258128201 1099998.2288573701 +-1333.7803285785701 -487.25532919434801 1099999.0834597400 +-850.91581778989405 -401.26120732627800 1099999.5976961600 +-504.00114809083999 -291.26340304453601 1099999.8459765699 +-280.91255261121199 -192.15375222393899 1099999.9473477600 +-148.96905009531699 -117.65503321230700 1099999.9836206899 +-75.832936466860104 -67.879548870080797 1099999.9952916999 +-37.320153488200297 -37.320153488199701 1099999.9987338199 +-17.857632296684400 -19.723090598479700 1099999.9996782299 +-8.3465604648458598 -10.087083252090199 1099999.9999220800 +-3.8245514352105099 -5.0190979846168702 1099999.9999819000 +-1.7233818187373000 -2.4400493111786599 1099999.9999959399 +-0.76557276822724896 -1.1628449125065601 1099999.9999991199 +-0.33602435582922602 -0.54480212072986800 1099999.9999998100 +-0.14601304708889101 -0.25106257997411902 1099999.9999999600 +-0.062924827819049206 -0.11301503121771600 1099999.9999999900 +-0.026812759711345700 -0.047269249152576499 1100000.0000000000 +-0.011344887231685899 -0.012157694374549600 1100000.0000000000 +-0.0047609301726518503 0.016704142781704501 1100000.0000000000 +-0.0020907583269342001 0.061244755363469801 1100000.0000000000 +-0.00074516957427992001 0.15928409317128001 1099999.9999999900 +-0.00013717310560597300 0.39439239124675401 1099999.9999999299 +-3.7899999406322901e-05 0.96767743392726002 1099999.9999995700 +-7.1406910776804900e-05 2.3715330265627199 1099999.9999974400 +-3.3147124946763100e-05 5.8098812520039003 1099999.9999846600 + 1.1978593965096199e-05 14.231846115385400 1099999.9999079299 +-7.6324829669171401e-05 34.862009037878401 1099999.9994475599 + 4.9579773522355903e-05 85.396094241168996 1099999.9966852299 +-1.7677271396520800e-06 209.17982594551901 1099999.9801108199 + 4.1799544356692498e-05 512.37507192417900 1099999.8806689901 + 4.2471131135315701e-05 1254.9387265806999 1099999.2841492200 +-8.0615057179548493e-06 3073.0862407832201 1099995.7073284199 + 4.0697626521597901e-05 7521.8380618493102 1099974.2824049001 + 8.4782907120549102e-05 18389.530155678400 1099846.2734312699 + 3.0651836123625701e-05 44828.518293684101 1099086.1676627500 +-9.4186024492720700e-05 108456.75099806501 1094640.1843359000 +-2.6106183251059499e-05 256943.71987001199 1069569.9719136499 + 1.4796937721541399e-05 570452.76770393096 940523.06713813497 +-7.3960507697739999e-05 -570452.76758386800 940523.06721095601 +-0.00010156033172923200 -256943.71979478901 1069569.9719317199 + 4.4031572488982400e-05 -108456.75106543100 1094640.1843292301 + 3.0452448627780300e-05 -44828.518362282201 1099086.1676599500 +-4.1598756598881400e-07 -18389.530145892699 1099846.2734314301 + 6.5131765921276796e-06 -7521.8380207561804 1099974.2824051799 + 6.4563459398212205e-05 -3073.0862380159101 1099995.7073284299 + 9.7218476521120797e-05 -1254.9388334907301 1099999.2841491001 + 3.8923441287805098e-05 -512.37496774298097 1099999.8806690399 + 7.6201345076320003e-07 -209.17979853331099 1099999.9801108199 + 3.8879483627024702e-06 -85.396128591927805 1099999.9966852299 + 5.1855274790273202e-05 -34.861919290573503 1099999.9994475699 +-4.9591256207802200e-05 -14.231871092333900 1099999.9999079299 + 7.1613075353011300e-05 -5.8098013398940900 1099999.9999846600 +-4.2686341481053298e-05 -2.3715353824165599 1099999.9999974400 +-8.5809691965095904e-05 -0.96765321427938900 1099999.9999995700 +-0.00030218038734667598 -0.39388235896134000 1099999.9999999299 +-0.0012224759554284701 -0.15825919805396199 1099999.9999999900 +-0.0027317826652851198 -0.059013503351601999 1100000.0000000000 +-0.0065054127572364596 -0.011285942881951600 1100000.0000000000 +-0.015832473096994901 0.024949981001791001 1100000.0000000000 +-0.038132698381933602 0.077571700845355807 1100000.0000000000 +-0.090972564499698205 0.18382235610141301 1099999.9999999800 +-0.21588689442301701 0.41507368451381899 1099999.9999999001 +-0.50860640536973201 0.92103081173743895 1099999.9999995001 +-1.1883724775781499 2.0162529248677701 1099999.9999975101 +-2.7485242299045600 4.3463778859340003 1099999.9999879799 +-6.2808060074366301 9.2062663620975602 1099999.9999435400 +-14.145612698318100 19.096506120078899 1099999.9997432800 +-31.312568260443602 38.633866700247502 1099999.9988758899 +-67.879548870079802 75.832936466859906 1099999.9952916999 +-143.45611843036500 143.45611843036500 1099999.9812912201 +-293.88097507537600 259.27703888766200 1099999.9301860800 +-579.31279240389904 442.54097794716500 1099999.7584336901 +-1088.5330999407599 702.13103819554397 1099999.2373214201 +-1926.0327172766499 1012.7115939669500 1099997.8476402599 +-3159.5270374534998 1284.8383116212501 1099994.7120688399 +-4714.1734825404901 1359.0437745959700 1099989.0588403100 +-6261.5584068199496 1074.3160989809001 1099981.6538157500 +-7259.1348474902397 412.88281531963099 1099975.9699598199 +-7259.1348474902097 -412.88281531963298 1099975.9699598199 +-6261.5584068199496 -1074.3160989809101 1099981.6538157500 +-4714.1734825404801 -1359.0437745959500 1099989.0588403100 +-3159.5270374534998 -1284.8383116212501 1099994.7120688399 +-1926.0327172766599 -1012.7115939669600 1099997.8476402599 +-1088.5330999407499 -702.13103819553999 1099999.2373214201 +-579.31279240389404 -442.54097794715801 1099999.7584336901 +-293.88097507538100 -259.27703888766598 1099999.9301860800 +-143.45611843036400 -143.45611843036400 1099999.9812912201 +-67.879548870080598 -75.832936466861796 1099999.9952916999 +-31.312568260443200 -38.633866700246600 1099999.9988758899 +-14.145612698318001 -19.096506120078999 1099999.9997432800 +-6.2808060074368797 -9.2062663620975300 1099999.9999435400 +-2.7485242299046901 -4.3463778859340696 1099999.9999879799 +-1.1883724775780500 -2.0162529248677798 1099999.9999975101 +-0.50860640536962398 -0.92103081173733004 1099999.9999995001 +-0.21588689442306899 -0.41507368451383497 1099999.9999999001 +-0.090972564499704298 -0.18382235610144801 1099999.9999999800 +-0.038132698381936003 -0.077571700845372002 1100000.0000000000 +-0.015832473096998801 -0.024949981001779298 1100000.0000000000 +-0.0065054127572286100 0.011285942881964601 1100000.0000000000 +-0.0027317826652876100 0.059013503351584000 1100000.0000000000 +-0.0012224759554298999 0.15825919805395100 1099999.9999999900 +-0.00030218038734449999 0.39388235896137802 1099999.9999999299 +-8.5809691971327695e-05 0.96765321427941597 1099999.9999995700 +-4.2686341487800600e-05 2.3715353824165701 1099999.9999974400 + 7.1613075387386594e-05 5.8098013398940198 1099999.9999846600 +-4.9591256176747797e-05 14.231871092333700 1099999.9999079299 + 5.1855274640927897e-05 34.861919290573397 1099999.9994475699 + 3.8879486162545002e-06 85.396128591928104 1099999.9966852299 + 7.6201393080055497e-07 209.17979853331099 1099999.9801108199 + 3.8923441253357603e-05 512.37496774298097 1099999.8806690399 + 9.7218476997591602e-05 1254.9388334907201 1099999.2841491001 + 6.4563453333163595e-05 3073.0862380159101 1099995.7073284299 + 6.5131743825202902e-06 7521.8380207561304 1099974.2824051799 +-4.1599616014889702e-07 18389.530145892699 1099846.2734314301 + 3.0452445042728699e-05 44828.518362282201 1099086.1676599500 + 4.4031585170915500e-05 108456.75106543100 1094640.1843292301 +-0.00010156036974166300 256943.71979478901 1069569.9719317199 +-7.3960631987505599e-05 570452.76758386905 940523.06721095601 +-0.00012875106600469601 -570452.76756542700 940523.06722214201 +-7.1468884680993394e-05 -256943.71986022199 1069569.9719159999 +-0.00011831098027423599 -108456.75110666300 1094640.1843251500 + 1.4593520955411500e-05 -44828.518373574298 1099086.1676594899 + 7.7837430308374403e-05 -18389.530187769800 1099846.2734307300 + 4.6767001617727302e-05 -7521.8380401765498 1099974.2824050500 + 4.3512759742491303e-05 -3073.0862390858701 1099995.7073284299 + 6.4944949141067899e-05 -1254.9388175146801 1099999.2841491101 + 4.9078993406837598e-05 -512.37505297612199 1099999.8806690001 + 6.0380253599234997e-05 -209.17974475252399 1099999.9801108299 + 7.4695050468973905e-05 -85.396066191675004 1099999.9966852299 +-8.1594108121223094e-05 -34.861938810747503 1099999.9994475699 + 7.9981925207540103e-05 -14.231766744139399 1099999.9999079299 +-2.0382043125118601e-05 -5.8098604478264102 1099999.9999846600 +-0.00013209994853811499 -2.3714466354132400 1099999.9999974400 +-0.00010330293906342500 -0.96732197733312797 1099999.9999995700 +-0.00045135259742498098 -0.39345527184517198 1099999.9999999299 +-0.0014038995194382200 -0.15706608118436699 1099999.9999999900 +-0.0035356871410387302 -0.055945920727918597 1100000.0000000000 +-0.0085422200782508707 -0.0038650724249506500 1100000.0000000000 +-0.021082488132904600 0.042967921008449102 1100000.0000000000 +-0.051363259063697903 0.12071872297472300 1099999.9999999900 +-0.12500532984550700 0.28694707471224001 1099999.9999999600 +-0.30299729417388399 0.66017089218325797 1099999.9999997600 +-0.73055562125059204 1.4988232893909299 1099999.9999987399 +-1.7502424213060299 3.3633223830747401 1099999.9999934700 +-4.1600092601414902 7.4513870812594298 1099999.9999669001 +-9.7913696307332394 16.259682544972399 1099999.9998362500 +-22.776883523727900 34.839922223958901 1099999.9992124501 +-52.227507163087203 73.022792509600194 1099999.9963363500 +-117.65503321230700 148.96905009531699 1099999.9836206899 +-259.27703888766200 293.88097507537702 1099999.9301860800 +-555.82581742119100 555.82581742119305 1099999.7191432901 +-1150.6398870257799 996.09897128356204 1099998.9471879900 +-2277.7043718931800 1663.9993203961101 1099996.3832527201 +-4254.5675613894900 2530.6987143336200 1099988.8609521801 +-7366.5710456906800 3381.4892439650998 1099970.1355771101 +-11550.501448668800 3745.7043402527402 1099932.9777833200 +-15950.839881197900 3065.1059383789702 1099880.0733864901 +-18893.257072184701 1199.8197824854501 1099837.0812396200 +-18893.257072184701 -1199.8197824854699 1099837.0812396200 +-15950.839881197900 -3065.1059383789602 1099880.0733864901 +-11550.501448668800 -3745.7043402527502 1099932.9777833200 +-7366.5710456906800 -3381.4892439650798 1099970.1355771101 +-4254.5675613894900 -2530.6987143336200 1099988.8609521801 +-2277.7043718931900 -1663.9993203961301 1099996.3832527201 +-1150.6398870257699 -996.09897128355897 1099998.9471879900 +-555.82581742118703 -555.82581742118805 1099999.7191432901 +-259.27703888766501 -293.88097507537901 1099999.9301860800 +-117.65503321230599 -148.96905009531599 1099999.9836206899 +-52.227507163087999 -73.022792509602795 1099999.9963363500 +-22.776883523727399 -34.839922223957899 1099999.9992124501 +-9.7913696307334295 -16.259682544972399 1099999.9998362500 +-4.1600092601417202 -7.4513870812595897 1099999.9999669001 +-1.7502424213059500 -3.3633223830747099 1099999.9999934700 +-0.73055562125054696 -1.4988232893908999 1099999.9999987399 +-0.30299729417384402 -0.66017089218321201 1099999.9999997600 +-0.12500532984554100 -0.28694707471226499 1099999.9999999600 +-0.051363259063698298 -0.12071872297473700 1099999.9999999900 +-0.021082488132900600 -0.042967921008456297 1100000.0000000000 +-0.0085422200782582294 0.0038650724249426598 1100000.0000000000 +-0.0035356871410328998 0.055945920727933703 1100000.0000000000 +-0.0014038995194404400 0.15706608118437199 1099999.9999999900 +-0.00045135259743073002 0.39345527184515400 1099999.9999999299 +-0.00010330293904958300 0.96732197733318603 1099999.9999995700 +-0.00013209994852463999 2.3714466354132400 1099999.9999974400 +-2.0382043158567600e-05 5.8098604478262503 1099999.9999846600 + 7.9981925167308505e-05 14.231766744139399 1099999.9999079299 +-8.1594108062735198e-05 34.861938810747397 1099999.9994475699 + 7.4695050420777094e-05 85.396066191674905 1099999.9966852299 + 6.0380254023274503e-05 209.17974475252399 1099999.9801108299 + 4.9078994272664601e-05 512.37505297612097 1099999.8806690001 + 6.4944948364463302e-05 1254.9388175146901 1099999.2841491101 + 4.3512753318240801e-05 3073.0862390858601 1099995.7073284299 + 4.6766996234403301e-05 7521.8380401765598 1099974.2824050500 + 7.7837375311301399e-05 18389.530187769800 1099846.2734307300 + 1.4593476953174700e-05 44828.518373574298 1099086.1676594899 +-0.00011831093086706000 108456.75110666300 1094640.1843251500 +-7.1468956033701695e-05 256943.71986022301 1069569.9719159999 +-0.00012875119426664100 570452.76756542700 940523.06722214201 +-0.00014723382554089701 -570452.76761575299 940523.06719161803 +-0.00015979777712165201 -256943.71993696599 1069569.9718975599 + 4.0557937116393001e-05 -108456.75122494600 1094640.1843134300 + 3.4439170122122498e-05 -44828.518434801103 1099086.1676570000 +-2.0174085746852300e-05 -18389.530166869099 1099846.2734310799 + 1.4886999521931699e-05 -7521.8380589620001 1099974.2824049201 + 9.0009198374879103e-05 -3073.0862846948298 1099995.7073283000 + 0.00010718754245565800 -1254.9388571447600 1099999.2841490700 + 3.9936241781342802e-05 -512.37498379995100 1099999.8806690299 + 2.1560827455602301e-05 -209.17975058826099 1099999.9801108299 + 7.2356456574103702e-06 -85.396060102379806 1099999.9966852299 + 5.2741958108658500e-05 -34.861851244270703 1099999.9994475699 +-4.9466391232443398e-05 -14.231846272012300 1099999.9999079299 + 3.6580829263121099e-06 -5.8097737341912401 1099999.9999846600 +-7.8930788322504000e-05 -2.3713218235486901 1099999.9999974400 +-0.00013345081784855699 -0.96723871338505396 1099999.9999995700 +-0.00062020457792966795 -0.39278424689244901 1099999.9999999299 +-0.0019172360769133701 -0.15537756383631099 1099999.9999999900 +-0.0042294954742887903 -0.052062162901172500 1100000.0000000000 +-0.010534870794262500 0.0058039722390000404 1100000.0000000000 +-0.026266201926443401 0.066632419248416300 1100000.0000000000 +-0.065236854586391099 0.17888657999958499 1099999.9999999800 +-0.16184203782306800 0.42934171025981599 1099999.9999999001 +-0.40036619922258598 1.0064638720068999 1099999.9999994701 +-0.98718080850261902 2.3356907028025300 1099999.9999970801 +-2.4238673739119800 5.3721840682434996 1099999.9999842099 +-5.9176328253951302 12.227863194485300 1099999.9999161200 +-14.347054606842400 27.488653781556501 1099999.9995629699 +-34.481020239989803 60.866295937546703 1099999.9977756201 +-81.965805688906102 132.28529202445199 1099999.9889919099 +-192.15375222393499 280.91255261120801 1099999.9473477600 +-442.54097794716301 579.31279240389995 1099999.7584336901 +-996.09897128356397 1150.6398870257799 1099998.9471879900 +-2175.8437344284698 2175.8437344284598 1099995.6960861699 +-4567.1728483074203 3852.6162820042400 1099983.7718257301 +-9083.7540683287098 6231.0955475001001 1099944.8435536700 +-16776.864837009900 8857.4993260248702 1099836.3885196401 +-27963.888144879202 10380.564278548100 1099595.5005569500 +-40550.313972395103 8862.9451409824906 1099216.5938704601 +-49342.681844547697 3548.2509409122199 1098887.0322574801 +-49342.681844547697 -3548.2509409122099 1098887.0322574801 +-40550.313972395103 -8862.9451409825106 1099216.5938704601 +-27963.888144879100 -10380.564278548200 1099595.5005569500 +-16776.864837009900 -8857.4993260248593 1099836.3885196401 +-9083.7540683287007 -6231.0955475000801 1099944.8435536700 +-4567.1728483074103 -3852.6162820042200 1099983.7718257301 +-2175.8437344284798 -2175.8437344284798 1099995.6960861699 +-996.09897128355703 -1150.6398870257799 1099998.9471879900 +-442.54097794716000 -579.31279240389802 1099999.7584336901 +-192.15375222393601 -280.91255261120898 1099999.9473477600 +-81.965805688905704 -132.28529202445100 1099999.9889919099 +-34.481020239990301 -60.866295937548699 1099999.9977756201 +-14.347054606842001 -27.488653781555598 1099999.9995629699 +-5.9176328253954198 -12.227863194485399 1099999.9999161200 +-2.4238673739121301 -5.3721840682437199 1099999.9999842099 +-0.98718080850245804 -2.3356907028023701 1099999.9999970801 +-0.40036619922258398 -1.0064638720068699 1099999.9999994701 +-0.16184203782306800 -0.42934171025983298 1099999.9999999001 +-0.065236854586405005 -0.17888657999960800 1099999.9999999800 +-0.026266201926443800 -0.066632419248415106 1100000.0000000000 +-0.010534870794256501 -0.0058039722389941796 1100000.0000000000 +-0.0042294954742975403 0.052062162901157102 1100000.0000000000 +-0.0019172360769117800 0.15537756383630999 1099999.9999999900 +-0.00062020457792422699 0.39278424689247898 1099999.9999999299 +-0.00013345081784764599 0.96723871338504996 1099999.9999995700 +-7.8930788305747696e-05 2.3713218235487199 1099999.9999974400 + 3.6580829202549701e-06 5.8097737341912303 1099999.9999846600 +-4.9466391299280803e-05 14.231846272012000 1099999.9999079299 + 5.2741958096494301e-05 34.861851244270603 1099999.9994475699 + 7.2356454705053600e-06 85.396060102379295 1099999.9966852299 + 2.1560827474750199e-05 209.17975058826099 1099999.9801108299 + 3.9936243742792299e-05 512.37498379995304 1099999.8806690299 + 0.00010718754152606000 1254.9388571447500 1099999.2841490700 + 9.0009196830008101e-05 3073.0862846948498 1099995.7073283000 + 1.4886990149279700e-05 7521.8380589620101 1099974.2824049201 +-2.0174085555478599e-05 18389.530166869201 1099846.2734310799 + 3.4439157937420900e-05 44828.518434801103 1099086.1676570000 + 4.0557958332951303e-05 108456.75122494600 1094640.1843134300 +-0.00015979774321343401 256943.71993696500 1069569.9718975599 +-0.00014723397006814401 570452.76761575299 940523.06719161803 +-9.2187243591011203e-05 -570452.76765581104 940523.06716732203 +-3.6204910136621898e-06 -256943.72000685200 1069569.9718807701 +-9.1446132190071204e-05 -108456.75127144200 1094640.1843088199 + 4.8806692964454099e-06 -44828.518459652099 1099086.1676559800 + 6.5225163147746004e-05 -18389.530219315198 1099846.2734302101 + 4.1278415975211803e-05 -7521.8380569980300 1099974.2824049301 + 4.3718800555701500e-05 -3073.0862822399899 1099995.7073283100 + 2.9844544456310498e-05 -1254.9388963563399 1099999.2841490200 + 2.9868902475956300e-05 -512.37502531019197 1099999.8806690101 + 5.9964019328181298e-05 -209.17968650285499 1099999.9801108399 + 2.5321517932896899e-05 -85.396041551935099 1099999.9966852299 +-0.00012399847400217101 -34.861883702138798 1099999.9994475699 + 6.1036023782798095e-05 -14.231736350208999 1099999.9999079399 +-5.6512241493026501e-05 -5.8097933142878304 1099999.9999846600 +-0.00017142686377501600 -2.3712679540271999 1099999.9999974400 +-0.00023956144162168299 -0.96683613572651905 1099999.9999995800 +-0.00077806611570394903 -0.39203029713810800 1099999.9999999299 +-0.0019052411850837600 -0.15357861495996100 1099999.9999999900 +-0.0048013379518084204 -0.047377872380905503 1100000.0000000000 +-0.012123883548416901 0.017516071261359401 1100000.0000000000 +-0.030749151061619101 0.096075429243866403 1100000.0000000000 +-0.077409030690777300 0.25254594534160901 1099999.9999999700 +-0.19529343282265699 0.61292828732136795 1099999.9999998100 +-0.49265488335924201 1.4634620387532600 1099999.9999989199 +-1.2410464941562600 3.4695128848842001 1099999.9999938300 +-3.1193649314121998 8.1696535522943297 1099999.9999652400 +-7.8162544568023300 19.088566979020200 1099999.9998066099 +-19.504850152125599 44.179969387478501 1099999.9989398599 +-48.412147269610699 101.06106027464401 1099999.9942922399 +-119.30874972343599 227.80395983235701 1099999.9699412601 +-291.26340304453902 504.00114809084499 1099999.8459765699 +-702.13103819554601 1088.5330999407499 1099999.2373214201 +-1663.9993203961201 2277.7043718931800 1099996.3832527201 +-3852.6162820042400 4567.1728483074203 1099983.7718257301 +-8633.6056648290996 8633.6056648291105 1099932.2350519800 +-18462.828869586901 14999.254362146799 1099742.7637037300 +-36844.537936716602 22972.128145567000 1099142.7392985399 +-66250.711901638497 28868.965544231800 1097623.5356445899 +-102129.72334303800 25982.613552476301 1094940.3743596501 +-128453.55572359600 10694.428753563700 1092421.7652608401 +-128453.55572359600 -10694.428753563700 1092421.7652608401 +-102129.72334303800 -25982.613552476301 1094940.3743596501 +-66250.711901638395 -28868.965544231800 1097623.5356445899 +-36844.537936716602 -22972.128145566901 1099142.7392985399 +-18462.828869586901 -14999.254362146799 1099742.7637037300 +-8633.6056648290996 -8633.6056648290996 1099932.2350519800 +-3852.6162820042300 -4567.1728483074103 1099983.7718257301 +-1663.9993203961201 -2277.7043718931800 1099996.3832527201 +-702.13103819553999 -1088.5330999407499 1099999.2373214201 +-291.26340304453601 -504.00114809084300 1099999.8459765699 +-119.30874972343700 -227.80395983235800 1099999.9699412601 +-48.412147269610600 -101.06106027464401 1099999.9942922399 +-19.504850152125901 -44.179969387479403 1099999.9989398599 +-7.8162544568021497 -19.088566979019699 1099999.9998066099 +-3.1193649314123602 -8.1696535522945606 1099999.9999652400 +-1.2410464941563399 -3.4695128848843599 1099999.9999938300 +-0.49265488335912100 -1.4634620387530901 1099999.9999989199 +-0.19529343282267500 -0.61292828732135696 1099999.9999998100 +-0.077409030690784003 -0.25254594534164398 1099999.9999999700 +-0.030749151061618601 -0.096075429243879198 1100000.0000000000 +-0.012123883548421499 -0.017516071261359099 1100000.0000000000 +-0.0048013379518036898 0.047377872380912900 1100000.0000000000 +-0.0019052411850885300 0.15357861495995700 1099999.9999999900 +-0.00077806611570615202 0.39203029713810300 1099999.9999999299 +-0.00023956144161244001 0.96683613572655602 1099999.9999995800 +-0.00017142686375937299 2.3712679540271702 1099999.9999974400 +-5.6512241462942797e-05 5.8097933142877700 1099999.9999846600 + 6.1036023745882596e-05 14.231736350209101 1099999.9999079399 +-0.00012399847421342000 34.861883702138499 1099999.9994475699 + 2.5321517874993699e-05 85.396041551934999 1099999.9966852299 + 5.9964019240281803e-05 209.17968650285400 1099999.9801108399 + 2.9868903096781100e-05 512.37502531019004 1099999.8806690101 + 2.9844546340400699e-05 1254.9388963563399 1099999.2841490200 + 4.3718794161178202e-05 3073.0862822399899 1099995.7073283100 + 4.1278424482917898e-05 7521.8380569980300 1099974.2824049301 + 6.5225184843187495e-05 18389.530219315300 1099846.2734302101 + 4.8806937270404699e-06 44828.518459652099 1099086.1676559800 +-9.1446195418092696e-05 108456.75127144200 1094640.1843088199 +-3.6204471755123899e-06 256943.72000685200 1069569.9718807701 +-9.2187323747447203e-05 570452.76765581104 940523.06716732099 + 1.6183194215230399e-05 -570452.76760803198 940523.06719630002 +-9.3205970594269601e-05 -256943.72001638700 1069569.9718784799 + 7.5142745048901094e-05 -108456.75132053001 1094640.1843039601 + 4.0769504744141999e-05 -44828.518471246200 1099086.1676555099 +-4.0967072448075401e-05 -18389.530177787201 1099846.2734308999 +-6.1421230248673902e-06 -7521.8380913221699 1099974.2824047001 + 4.8156121911348601e-05 -3073.0863386306701 1099995.7073281500 + 5.2595963152417502e-05 -1254.9388875776599 1099999.2841490300 +-2.0828026961256901e-05 -512.37497949419799 1099999.8806690299 +-4.5471912911398398e-05 -209.17971389875700 1099999.9801108399 +-6.1171358609734601e-05 -85.396017410009094 1099999.9966852400 + 9.0029570209381402e-06 -34.861801822438998 1099999.9994475699 +-9.5532240846964001e-05 -14.231814400158100 1099999.9999079299 +-9.9422262391289805e-05 -5.8097207359888703 1099999.9999846600 +-0.00014082724321920901 -2.3710822667649798 1099999.9999974400 +-0.00019154211545289500 -0.96664746458627604 1099999.9999995800 +-0.00077671167656069898 -0.39123891469719402 1099999.9999999299 +-0.0021817783571644401 -0.15143085083993199 1099999.9999999900 +-0.0050052778615502901 -0.042178057704537399 1100000.0000000000 +-0.012941388987018600 0.030824764997943999 1100000.0000000000 +-0.032995482055241700 0.12989087131196000 1099999.9999999900 +-0.084403350862029297 0.33854678416238998 1099999.9999999399 +-0.21680918907239199 0.83209670852026996 1099999.9999996601 +-0.55668826301800600 2.0209664567690400 1099999.9999980000 +-1.4297541332867301 4.8848107373636704 1099999.9999882199 +-3.6724115649280198 11.756624978938500 1099999.9999310400 +-9.4273547132974898 28.150744360170599 1099999.9995993900 +-24.175544665116099 66.978330375051897 1099999.9976951999 +-61.881298160457298 158.07930214788300 1099999.9869007501 +-157.93046657872699 369.24565470459999 1099999.9266889100 +-401.26120732628198 850.91581778989598 1099999.5976961600 +-1012.7115939669600 1926.0327172766599 1099997.8476402599 +-2530.6987143336200 4254.5675613894900 1099988.8609521801 +-6231.0955475000901 9083.7540683287098 1099944.8435536700 +-14999.254362146899 18462.828869586901 1099742.7637037300 +-34835.407239634798 34835.407239634696 1098896.2593461201 +-76225.705504997502 58367.669915573599 1095802.3804176101 +-150435.26188561801 79989.380957344503 1086724.8644047200 +-249505.09371728700 76797.288801715797 1068573.5279529600 +-325348.13004610001 32673.475907616499 1050276.6484348900 +-325348.13004610001 -32673.475907616499 1050276.6484348900 +-249505.09371728700 -76797.288801715797 1068573.5279529600 +-150435.26188561699 -79989.380957344503 1086724.8644047200 +-76225.705504997401 -58367.669915573599 1095802.3804176101 +-34835.407239634696 -34835.407239634696 1098896.2593461201 +-14999.254362146899 -18462.828869586901 1099742.7637037300 +-6231.0955475000801 -9083.7540683287207 1099944.8435536700 +-2530.6987143336301 -4254.5675613894800 1099988.8609521801 +-1012.7115939669600 -1926.0327172766499 1099997.8476402599 +-401.26120732627800 -850.91581778989496 1099999.5976961600 +-157.93046657872500 -369.24565470459697 1099999.9266889100 +-61.881298160458101 -158.07930214788601 1099999.9869007501 +-24.175544665115801 -66.978330375051200 1099999.9976951999 +-9.4273547132976905 -28.150744360170901 1099999.9995993900 +-3.6724115649280100 -11.756624978938399 1099999.9999310400 +-1.4297541332867001 -4.8848107373636900 1099999.9999882199 +-0.55668826301804297 -2.0209664567691101 1099999.9999980000 +-0.21680918907234401 -0.83209670852019402 1099999.9999996601 +-0.084403350862042398 -0.33854678416239598 1099999.9999999399 +-0.032995482055246800 -0.12989087131198099 1099999.9999999900 +-0.012941388987012000 -0.030824764997944301 1100000.0000000000 +-0.0050052778615566496 0.042178057704538398 1100000.0000000000 +-0.0021817783571668400 0.15143085083992799 1099999.9999999900 +-0.00077671167656104604 0.39123891469719602 1099999.9999999299 +-0.00019154211544340801 0.96664746458626005 1099999.9999995800 +-0.00014082724318727099 2.3710822667649798 1099999.9999974400 +-9.9422262393774702e-05 5.8097207359889396 1099999.9999846600 +-9.5532240932120100e-05 14.231814400157999 1099999.9999079299 + 9.0029570096856294e-06 34.861801822439098 1099999.9994475699 +-6.1171358562460797e-05 85.396017410008795 1099999.9966852400 +-4.5471912725923099e-05 209.17971389875601 1099999.9801108399 +-2.0828027640331401e-05 512.37497949419901 1099999.8806690299 + 5.2595960720699697e-05 1254.9388875776699 1099999.2841490300 + 4.8156122481317302e-05 3073.0863386306701 1099995.7073281500 +-6.1421165567241703e-06 7521.8380913221499 1099974.2824047001 +-4.0967062016639399e-05 18389.530177787201 1099846.2734308999 + 4.0769496444624398e-05 44828.518471246301 1099086.1676555099 + 7.5142755606880498e-05 108456.75132053001 1094640.1843039601 +-9.3206014871483793e-05 256943.72001638700 1069569.9718784799 + 1.6183320150381399e-05 570452.76760803198 940523.06719630002 +-2.9020225811048199e-06 -570452.76752436894 940523.06724704395 + 8.4679218543430606e-05 -256943.71996960399 1069569.9718897201 +-6.1157631386603696e-05 -108456.75129831499 1094640.1843061601 +-1.5213426253493400e-05 -44828.518462669999 1099086.1676558601 + 3.2037033341959102e-05 -18389.530208002700 1099846.2734304001 +-2.1178758106754700e-06 -7521.8380727777203 1099974.2824048200 +-1.5237850192410100e-05 -3073.0863245582000 1099995.7073281901 +-5.8302490174450900e-05 -1254.9389335131100 1099999.2841489799 +-3.6769449213409302e-05 -512.37499475845800 1099999.8806690201 +-4.5710240127418097e-06 -209.17965152006099 1099999.9801108500 +-6.1204801851895204e-05 -85.396009329129896 1099999.9966852400 +-0.00018799554903447201 -34.861830439515700 1099999.9994475699 +-1.6758839533062601e-05 -14.231723332954299 1099999.9999079399 +-9.6052402069420897e-05 -5.8096977017377904 1099999.9999846600 +-0.00016335712271082299 -2.3710308322486799 1099999.9999974400 +-0.00030302562722943501 -0.96626869863585396 1099999.9999995800 +-0.00081177605276508598 -0.39037681946925601 1099999.9999999299 +-0.0018075661033891701 -0.14941836842308301 1099999.9999999900 +-0.0047737292576928401 -0.036868958663648602 1100000.0000000000 +-0.012366141660006900 0.044538526867970198 1100000.0000000000 +-0.032112117052733799 0.16534626803441399 1099999.9999999900 +-0.083330106047006205 0.43033768620815299 1099999.9999999099 +-0.21668652312018499 1.0695596637382001 1099999.9999994601 +-0.56478111642816498 2.6365874350319900 1099999.9999966901 +-1.4755819369604199 6.4828783064093303 1099999.9999799100 +-3.8629792627055801 15.905837967708999 1099999.9998782200 +-10.132381179951601 38.927148126294099 1099999.9992645499 +-26.626267684302800 94.955138015527595 1099999.9955793500 +-70.087746721569005 230.61675061491201 1099999.9735925600 +-184.73291066941300 556.82842281487797 1099999.8435526500 +-487.25532919435000 1333.7803285785801 1099999.0834597400 +-1284.8383116212501 3159.5270374534898 1099994.7120688399 +-3381.4892439650798 7366.5710456906900 1099970.1355771101 +-8857.4993260248903 16776.864837010002 1099836.3885196401 +-22972.128145567000 36844.537936716602 1099142.7392985399 +-58367.669915573701 76225.705504997401 1095802.3804176101 +-141824.81643559600 141824.81643559600 1081559.7269157299 +-311216.56035348302 215128.46043841500 1032891.0872261100 +-552565.44315455004 220879.67258125200 925139.77391084796 +-733667.20890625694 96566.878256827404 813884.06090759195 +-733667.20890625694 -96566.878256827593 813884.06090759195 +-552565.44315455004 -220879.67258125200 925139.77391084796 +-311216.56035348302 -215128.46043841500 1032891.0872261100 +-141824.81643559600 -141824.81643559600 1081559.7269157299 +-58367.669915573701 -76225.705504997401 1095802.3804176101 +-22972.128145566901 -36844.537936716501 1099142.7392985399 +-8857.4993260248793 -16776.864837009900 1099836.3885196401 +-3381.4892439650798 -7366.5710456906900 1099970.1355771101 +-1284.8383116212501 -3159.5270374534898 1099994.7120688399 +-487.25532919434499 -1333.7803285785701 1099999.0834597400 +-184.73291066941101 -556.82842281487603 1099999.8435526500 +-70.087746721569104 -230.61675061490999 1099999.9735925600 +-26.626267684303301 -94.955138015529300 1099999.9955793500 +-10.132381179951301 -38.927148126293503 1099999.9992645499 +-3.8629792627057098 -15.905837967709401 1099999.9998782200 +-1.4755819369604799 -6.4828783064094502 1099999.9999799100 +-0.56478111642808704 -2.6365874350318199 1099999.9999966901 +-0.21668652312021100 -1.0695596637382101 1099999.9999994601 +-0.083330106046995797 -0.43033768620816498 1099999.9999999099 +-0.032112117052732599 -0.16534626803442201 1099999.9999999900 +-0.012366141660013600 -0.044538526867970600 1100000.0000000000 +-0.0047737292576891400 0.036868958663653702 1100000.0000000000 +-0.0018075661033919500 0.14941836842307399 1099999.9999999900 +-0.00081177605277040496 0.39037681946924302 1099999.9999999299 +-0.00030302562722227998 0.96626869863586995 1099999.9999995800 +-0.00016335712268913000 2.3710308322486400 1099999.9999974400 +-9.6052402041246304e-05 5.8096977017377203 1099999.9999846600 +-1.6758839558204199e-05 14.231723332954600 1099999.9999079399 +-0.00018799554928174801 34.861830439515700 1099999.9994475699 +-6.1204801639928394e-05 85.396009329129100 1099999.9966852400 +-4.5710231448628598e-06 209.17965152006099 1099999.9801108500 +-3.6769450644486801e-05 512.37499475846005 1099999.8806690201 +-5.8302493621345200e-05 1254.9389335131100 1099999.2841489799 +-1.5237848331693801e-05 3073.0863245582000 1099995.7073281901 +-2.1178758078367700e-06 7521.8380727777203 1099974.2824048200 + 3.2037036474215499e-05 18389.530208002700 1099846.2734304001 +-1.5213412702995899e-05 44828.518462669897 1099086.1676558601 +-6.1157607821323300e-05 108456.75129831499 1094640.1843061601 + 8.4679216747392204e-05 256943.71996960399 1069569.9718897201 +-2.9018827088236998e-06 570452.76752436894 940523.06724704395 + 2.9124487241747899e-05 -570452.76745759603 940523.06728754402 +-0.00010687165219834200 -256943.71995093700 1069569.9718942100 + 5.6584054435190499e-05 -108456.75130777300 1094640.1843052199 + 1.5730167394681999e-05 -44828.518453170298 1099086.1676562501 +-7.0127488523623696e-05 -18389.530168751699 1099846.2734310499 +-4.2251319402505298e-05 -7521.8380976650196 1099974.2824046500 +-1.3916855334217701e-05 -3073.0863652399898 1099995.7073280700 +-4.9733357662926497e-06 -1254.9389075457900 1099999.2841490100 +-7.9634225587152599e-05 -512.37496263753098 1099999.8806690399 +-0.00011596246545958300 -209.17967392998099 1099999.9801108500 +-0.00011237433100682500 -85.395983238291294 1099999.9966852400 +-1.7724796243755099e-05 -34.861767524250702 1099999.9994475699 +-0.00012112107700292400 -14.231767234209800 1099999.9999079299 +-0.00013577246022793599 -5.8096450010863103 1099999.9999846600 +-0.00014663213258006501 -2.3708700971248500 1099999.9999974400 +-0.00014628823503557101 -0.96605733748341704 1099999.9999995800 +-0.00058408600681743804 -0.38968862408575999 1099999.9999999299 +-0.0016880344274257000 -0.14750328247920999 1099999.9999999900 +-0.0039273684183471500 -0.032036379272187901 1100000.0000000000 +-0.010451645324901801 0.057182386353302597 1100000.0000000000 +-0.027204829058067100 0.19834924107497101 1099999.9999999800 +-0.071186493758644304 0.51665750967964397 1099999.9999998801 +-0.18751381580722701 1.2966720893091499 1099999.9999992200 +-0.49495129353812600 3.2352672676274699 1099999.9999951301 +-1.3109393121287700 8.0648352936545091 1099999.9999696501 +-3.4853506623222801 20.101066911128999 1099999.9998108200 +-9.3041955459502397 50.087887253536202 1099999.9988202900 +-24.949988044984298 124.74530831504700 1099999.9926436800 +-67.230284331629207 310.39143602311202 1099999.9541532900 +-182.10771018027799 771.09144938534200 1099999.7146612201 +-496.03311258128298 1910.6181748587001 1099998.2288573701 +-1359.0437745959500 4714.1734825404901 1099989.0588403100 +-3745.7043402527502 11550.501448668900 1099932.9777833200 +-10380.564278548200 27963.888144879202 1099595.5005569500 +-28868.965544231800 66250.711901638497 1097623.5356445899 +-79989.380957344503 150435.26188561801 1086724.8644047200 +-215128.46043841500 311216.56035348302 1032891.0872261100 +-513353.02545338898 513353.02545338898 826400.23143492895 +-888533.27416035498 525061.95733328594 380550.34052174800 +-1078245.4994615701 217542.86807153499 -7857.6995415868696 +-1078245.4994615701 -217542.86807153601 -7857.6995415866604 +-888533.27416035498 -525061.95733328594 380550.34052174800 +-513353.02545338799 -513353.02545338898 826400.23143493000 +-215128.46043841500 -311216.56035348302 1032891.0872261100 +-79989.380957344503 -150435.26188561699 1086724.8644047200 +-28868.965544231702 -66250.711901638497 1097623.5356445899 +-10380.564278548100 -27963.888144879202 1099595.5005569500 +-3745.7043402527502 -11550.501448668800 1099932.9777833200 +-1359.0437745959600 -4714.1734825404801 1099989.0588403100 +-496.03311258128298 -1910.6181748587101 1099998.2288573701 +-182.10771018027401 -771.09144938533404 1099999.7146612201 +-67.230284331628894 -310.39143602311202 1099999.9541532900 +-24.949988044984700 -124.74530831504600 1099999.9926436800 +-9.3041955459504404 -50.087887253537097 1099999.9988202900 +-3.4853506623221699 -20.101066911128701 1099999.9998108200 +-1.3109393121287800 -8.0648352936546104 1099999.9999696501 +-0.49495129353816802 -3.2352672676275800 1099999.9999951301 +-0.18751381580718099 -1.2966720893090100 1099999.9999992200 +-0.071186493758660499 -0.51665750967965296 1099999.9999998801 +-0.027204829058068598 -0.19834924107499599 1099999.9999999800 +-0.010451645324894900 -0.057182386353303603 1100000.0000000000 +-0.0039273684183520497 0.032036379272192897 1100000.0000000000 +-0.0016880344274255400 0.14750328247921299 1099999.9999999900 +-0.00058408600681679403 0.38968862408573801 1099999.9999999299 +-0.00014628823504426699 0.96605733748338296 1099999.9999995800 +-0.00014663213256108101 2.3708700971248402 1099999.9999974400 +-0.00013577246018913700 5.8096450010863698 1099999.9999846600 +-0.00012112107711263700 14.231767234210000 1099999.9999079299 +-1.7724796201958698e-05 34.861767524250602 1099999.9994475699 +-0.00011237433073330600 85.395983238289702 1099999.9966852400 +-0.00011596246558826900 209.17967392998099 1099999.9801108500 +-7.9634226146773200e-05 512.37496263753701 1099999.8806690399 +-4.9733359646794101e-06 1254.9389075457900 1099999.2841490100 +-1.3916856158066501e-05 3073.0863652399798 1099995.7073280700 +-4.2251327999516700e-05 7521.8380976649996 1099974.2824046500 +-7.0127493710843896e-05 18389.530168751699 1099846.2734310499 + 1.5730185453998899e-05 44828.518453170298 1099086.1676562501 + 5.6584015945973599e-05 108456.75130777300 1094640.1843052199 +-0.00010687160221265500 256943.71995093700 1069569.9718942100 + 2.9124581100295000e-05 570452.76745759603 940523.06728754402 +-7.4453218041281604e-05 -570452.76746375603 940523.06728380697 + 6.9389391202549503e-05 -256943.71995565799 1069569.9718930700 +-7.7753367332443000e-05 -108456.75131118001 1094640.1843048800 +-4.0868144017724201e-05 -44828.518455861602 1099086.1676561399 + 1.4413011319179600e-05 -18389.530189684199 1099846.2734306999 +-2.1756975411558100e-05 -7521.8380858142000 1099974.2824047301 +-4.2122673733168397e-05 -3073.0863531225100 1099995.7073281100 +-8.9919826576461103e-05 -1254.9389344356300 1099999.2841489799 +-4.6706335267438699e-05 -512.37496533952503 1099999.8806690399 +-1.1712449244137700e-05 -209.17963349094501 1099999.9801108500 +-6.2167473592161801e-05 -85.395975785037507 1099999.9966852400 +-0.00017340677489226800 -34.861780517722003 1099999.9994475699 +-2.9754967006772999e-05 -14.231713935650300 1099999.9999079399 +-5.9848809561967200e-05 -5.8096162499473998 1099999.9999846600 +-8.0575767849644402e-05 -2.3708309004758199 1099999.9999974400 +-0.00021643883725916901 -0.96582129661517102 1099999.9999995800 +-0.00047329402129616001 -0.38910185911673800 1099999.9999999299 +-0.00091091013594778105 -0.14611693370209000 1099999.9999999900 +-0.0026508235201664499 -0.028337730556005501 1100000.0000000000 +-0.0069189436121459801 0.066931311391223505 1100000.0000000000 +-0.018281883855660999 0.22404698045602700 1099999.9999999800 +-0.048401925401427598 0.58478410167257300 1099999.9999998400 +-0.12822729140737699 1.4775242447523700 1099999.9999990000 +-0.34121750875504597 3.7176908730200600 1099999.9999936600 +-0.91244944562784303 9.3586866702814202 1099999.9999598099 +-2.4527189118750798 23.588289901512400 1099999.9997443501 +-6.6306459395819299 59.542117406774700 1099999.9983685301 +-18.040799544228101 150.54358697436101 1099999.9895505300 +-49.445121717079999 381.29548413952301 1099999.9328040599 +-136.63327595416601 967.51267644428106 1099999.5660228999 +-381.10228122382699 2459.4478700926402 1099997.1844860399 +-1074.3160989809101 6261.5584068199596 1099981.6538157500 +-3065.1059383789702 15950.839881197900 1099880.0733864901 +-8862.9451409824906 40550.313972395197 1099216.5938704601 +-25982.613552476301 102129.72334303800 1094940.3743596501 +-76797.288801715898 249505.09371728700 1068573.5279529600 +-220879.67258125200 552565.44315455004 925139.77391084796 +-525061.95733328594 888533.27416035498 380550.34052174701 +-714809.15688421205 714809.15688421205 -433700.05587844300 +-698385.65421217796 238065.58711888199 -815832.24637199205 +-698385.65421217796 -238065.58711888301 -815832.24637199100 +-714809.15688421205 -714809.15688421205 -433700.05587844201 +-525061.95733328594 -888533.27416035498 380550.34052174800 +-220879.67258125200 -552565.44315455004 925139.77391084796 +-76797.288801715695 -249505.09371728700 1068573.5279529600 +-25982.613552476199 -102129.72334303800 1094940.3743596501 +-8862.9451409824596 -40550.313972395103 1099216.5938704601 +-3065.1059383789802 -15950.839881197900 1099880.0733864901 +-1074.3160989809101 -6261.5584068199496 1099981.6538157500 +-381.10228122382802 -2459.4478700926402 1099997.1844860399 +-136.63327595416700 -967.51267644428106 1099999.5660228999 +-49.445121717078301 -381.29548413951699 1099999.9328040599 +-18.040799544228300 -150.54358697436300 1099999.9895505300 +-6.6306459395820303 -59.542117406774302 1099999.9983685301 +-2.4527189118750901 -23.588289901513001 1099999.9997443501 +-0.91244944562785002 -9.3586866702814309 1099999.9999598099 +-0.34121750875502099 -3.7176908730198801 1099999.9999936600 +-0.12822729140740499 -1.4775242447524199 1099999.9999990000 +-0.048401925401410098 -0.58478410167255901 1099999.9999998400 +-0.018281883855659899 -0.22404698045603200 1099999.9999999800 +-0.0069189436121532798 -0.066931311391231194 1100000.0000000000 +-0.0026508235201633899 0.028337730556010299 1100000.0000000000 +-0.00091091013594720002 0.14611693370209000 1099999.9999999900 +-0.00047329402129994198 0.38910185911673301 1099999.9999999299 +-0.00021643883724643801 0.96582129661511396 1099999.9999995800 +-8.0575767861138897e-05 2.3708309004757600 1099999.9999974400 +-5.9848809649427201e-05 5.8096162499476103 1099999.9999846600 +-2.9754966864843701e-05 14.231713935650401 1099999.9999079399 +-0.00017340677463942501 34.861780517721300 1099999.9994475699 +-6.2167473729845095e-05 85.395975785037095 1099999.9966852400 +-1.1712449670356800e-05 209.17963349094501 1099999.9801108500 +-4.6706335690349097e-05 512.37496533952697 1099999.8806690399 +-8.9919825575975304e-05 1254.9389344356400 1099999.2841489799 +-4.2122671591461900e-05 3073.0863531225100 1099995.7073281100 +-2.1756979696133100e-05 7521.8380858142000 1099974.2824047301 + 1.4412994870519200e-05 18389.530189684199 1099846.2734306999 +-4.0868138899573899e-05 44828.518455861602 1099086.1676561399 +-7.7753385627185104e-05 108456.75131118001 1094640.1843048800 + 6.9389503888610005e-05 256943.71995565799 1069569.9718930700 +-7.4453156060150100e-05 570452.76746375603 940523.06728380697 + 2.0765014690382400e-05 -570452.76749017602 940523.06726778299 +-0.00011455865723692100 -256943.71998433000 1069569.9718861801 + 5.0538487261001800e-05 -108456.75133247100 1094640.1843027701 + 1.6944275137709601e-05 -44828.518461090302 1099086.1676559199 +-5.3674481172296297e-05 -18389.530179466499 1099846.2734308699 +-2.2916035045638801e-05 -7521.8380969630398 1099974.2824046600 +-3.5386846952399400e-06 -3073.0863686301500 1099995.7073280700 + 2.5913981265166701e-05 -1254.9389221072699 1099999.2841490000 +-3.7801668209800303e-05 -512.37495292745200 1099999.8806690399 +-7.7183928362108294e-05 -209.17964089762501 1099999.9801108500 +-4.8088578656796299e-05 -85.395964133858101 1099999.9966852400 + 5.7064839875163599e-05 -34.861755896210397 1099999.9994475699 +-5.9103142831181202e-05 -14.231725840167901 1099999.9999079399 +-5.9477092114641401e-05 -5.8095956252625403 1099999.9999846600 +-5.7525365197107800e-05 -2.3707672111393698 1099999.9999974500 + 1.9586754790524501e-05 -0.96572767251825098 1099999.9999995800 +-9.0032210705741098e-05 -0.38882275848209003 1099999.9999999299 +-0.00048164837806850998 -0.14533433806983301 1099999.9999999900 +-0.00088974214015845896 -0.026320763376247100 1100000.0000000000 +-0.0024896883240512098 0.072273693126056901 1100000.0000000000 +-0.0064935284401686803 0.23820471679601499 1099999.9999999700 +-0.017073400962285702 0.62240519900156699 1099999.9999998200 +-0.045603450209278799 1.5782775178578501 1099999.9999988701 +-0.12198736134101899 3.9887624267590498 1099999.9999927599 +-0.32795575395109400 10.091843773464101 1099999.9999536599 +-0.88656420170528505 25.585148273673799 1099999.9997020999 +-2.4122791078579202 65.021978460147295 1099999.9980756000 +-6.6138910101049202 165.71215447618800 1099999.9874980601 +-18.289113876831699 423.69951070468898 1099999.9182473801 +-51.075532147497498 1087.4012680593601 1099999.4613406700 +-144.26555523982401 2802.8015708326602 1099996.4197627199 +-412.88281531962201 7259.1348474902297 1099975.9699598199 +-1199.8197824854601 18893.257072184701 1099837.0812396200 +-3548.2509409122299 49342.681844547798 1098887.0322574801 +-10694.428753563700 128453.55572359600 1092421.7652608401 +-32673.475907616699 325348.13004610001 1050276.6484348900 +-96566.878256827695 733667.20890625799 813884.06090759195 +-217542.86807153601 1078245.4994615701 -7857.6995415876299 +-238065.58711888301 698385.65421217703 -815832.24637199205 +-208944.17891767301 208944.17891767301 -1059568.1479701200 +-208944.17891767301 -208944.17891767301 -1059568.1479701200 +-238065.58711888301 -698385.65421217796 -815832.24637199100 +-217542.86807153601 -1078245.4994615701 -7857.6995415861902 +-96566.878256827404 -733667.20890625694 813884.06090759300 +-32673.475907616499 -325348.13004609902 1050276.6484348900 +-10694.428753563599 -128453.55572359600 1092421.7652608401 +-3548.2509409122699 -49342.681844547697 1098887.0322574801 +-1199.8197824854601 -18893.257072184701 1099837.0812396200 +-412.88281531963202 -7259.1348474902297 1099975.9699598199 +-144.26555523981901 -2802.8015708326602 1099996.4197627199 +-51.075532147497398 -1087.4012680593601 1099999.4613406700 +-18.289113876832900 -423.69951070469000 1099999.9182473801 +-6.6138910101043500 -165.71215447618499 1099999.9874980601 +-2.4122791078578900 -65.021978460148205 1099999.9980756000 +-0.88656420170532801 -25.585148273673699 1099999.9997020999 +-0.32795575395106702 -10.091843773464300 1099999.9999536599 +-0.12198736134103701 -3.9887624267591399 1099999.9999927599 +-0.045603450209264498 -1.5782775178576900 1099999.9999988701 +-0.017073400962302102 -0.62240519900158797 1099999.9999998200 +-0.0064935284401643903 -0.23820471679603700 1099999.9999999700 +-0.0024896883240431698 -0.072273693126054694 1100000.0000000000 +-0.00088974214016530504 0.026320763376242701 1100000.0000000000 +-0.00048164837807040299 0.14533433806984000 1099999.9999999900 +-9.0032210695387198e-05 0.38882275848206099 1099999.9999999299 + 1.9586754778080299e-05 0.96572767251822900 1099999.9999995800 +-5.7525365232478601e-05 2.3707672111394600 1099999.9999974500 +-5.9477092053268098e-05 5.8095956252624203 1099999.9999846600 +-5.9103142772061399e-05 14.231725840167700 1099999.9999079399 + 5.7064839853609199e-05 34.861755896210802 1099999.9994475699 +-4.8088578669934898e-05 85.395964133857106 1099999.9966852400 +-7.7183928272810299e-05 209.17964089762501 1099999.9801108500 +-3.7801668325647000e-05 512.37495292745598 1099999.8806690399 + 2.5913980629356500e-05 1254.9389221072699 1099999.2841490000 +-3.5386822472554598e-06 3073.0863686301600 1099995.7073280700 +-2.2916029246974101e-05 7521.8380969630498 1099974.2824046600 +-5.3674479264314102e-05 18389.530179466499 1099846.2734308699 + 1.6944274081772901e-05 44828.518461090302 1099086.1676559199 + 5.0538451346825402e-05 108456.75133247100 1094640.1843027701 +-0.00011455869438707800 256943.71998433000 1069569.9718861801 + 2.0765074356399701e-05 570452.76749017602 940523.06726778299 +-2.0764980130646901e-05 -570452.76749017602 940523.06726778299 + 0.00011455875984079601 -256943.71998433000 1069569.9718861801 +-5.0538468115795499e-05 -108456.75133247100 1094640.1843027701 +-1.6944267454254201e-05 -44828.518461090302 1099086.1676559199 + 5.3674482206149198e-05 -18389.530179466499 1099846.2734308699 + 2.2916027642108199e-05 -7521.8380969630498 1099974.2824046600 + 3.5386903361492800e-06 -3073.0863686301500 1099995.7073280700 +-2.5913980086542500e-05 -1254.9389221072699 1099999.2841490000 + 3.7801667222176800e-05 -512.37495292745496 1099999.8806690399 + 7.7183928004876404e-05 -209.17964089762501 1099999.9801108500 + 4.8088578738912199e-05 -85.395964133857603 1099999.9966852400 +-5.7064839789484502e-05 -34.861755896210703 1099999.9994475699 + 5.9103142787112903e-05 -14.231725840167799 1099999.9999079399 + 5.9477092063092603e-05 -5.8095956252624097 1099999.9999846600 + 5.7525365200858502e-05 -2.3707672111395102 1099999.9999974500 +-1.9586754775851400e-05 -0.96572767251824898 1099999.9999995800 + 9.0032210705362806e-05 -0.38882275848205000 1099999.9999999299 + 0.00048164837806857102 -0.14533433806985399 1099999.9999999900 + 0.00088974214016098797 -0.026320763376233999 1100000.0000000000 + 0.0024896883240478201 0.072273693126037902 1100000.0000000000 + 0.0064935284401628499 0.23820471679602800 1099999.9999999700 + 0.017073400962288800 0.62240519900162705 1099999.9999998200 + 0.045603450209282997 1.5782775178577000 1099999.9999988701 + 0.12198736134104400 3.9887624267591901 1099999.9999927599 + 0.32795575395113202 10.091843773464101 1099999.9999536599 + 0.88656420170524997 25.585148273673600 1099999.9997020999 + 2.4122791078576502 65.021978460148205 1099999.9980756000 + 6.6138910101045303 165.71215447618599 1099999.9874980601 + 18.289113876832200 423.69951070469102 1099999.9182473801 + 51.075532147497199 1087.4012680593701 1099999.4613406700 + 144.26555523982600 2802.8015708326602 1099996.4197627199 + 412.88281531962798 7259.1348474902197 1099975.9699598199 + 1199.8197824854601 18893.257072184701 1099837.0812396200 + 3548.2509409122399 49342.681844547798 1098887.0322574801 + 10694.428753563700 128453.55572359600 1092421.7652608401 + 32673.475907616601 325348.13004610001 1050276.6484348900 + 96566.878256827506 733667.20890625799 813884.06090759195 + 217542.86807153601 1078245.4994615701 -7857.6995415877600 + 238065.58711888301 698385.65421217703 -815832.24637199205 + 208944.17891767301 208944.17891767301 -1059568.1479701200 + 208944.17891767301 -208944.17891767301 -1059568.1479701200 + 238065.58711888301 -698385.65421217796 -815832.24637199205 + 217542.86807153601 -1078245.4994615701 -7857.6995415862502 + 96566.878256827404 -733667.20890625694 813884.06090759300 + 32673.475907616499 -325348.13004609902 1050276.6484348900 + 10694.428753563700 -128453.55572359600 1092421.7652608401 + 3548.2509409122099 -49342.681844547697 1098887.0322574801 + 1199.8197824854601 -18893.257072184701 1099837.0812396200 + 412.88281531963798 -7259.1348474902197 1099975.9699598199 + 144.26555523982100 -2802.8015708326702 1099996.4197627199 + 51.075532147497000 -1087.4012680593601 1099999.4613406700 + 18.289113876832200 -423.69951070468602 1099999.9182473801 + 6.6138910101040196 -165.71215447618800 1099999.9874980601 + 2.4122791078578301 -65.021978460147395 1099999.9980756000 + 0.88656420170544903 -25.585148273674200 1099999.9997020999 + 0.32795575395109600 -10.091843773464200 1099999.9999536599 + 0.12198736134102200 -3.9887624267590001 1099999.9999927599 + 0.045603450209266302 -1.5782775178577499 1099999.9999988701 + 0.017073400962302601 -0.62240519900160496 1099999.9999998200 + 0.0064935284401645898 -0.23820471679603500 1099999.9999999700 + 0.0024896883240436902 -0.072273693126043703 1100000.0000000000 + 0.00088974214016278297 0.026320763376244900 1100000.0000000000 + 0.00048164837806989797 0.14533433806983301 1099999.9999999900 + 9.0032210701715496e-05 0.38882275848205700 1099999.9999999299 +-1.9586754789285501e-05 0.96572767251826197 1099999.9999995800 + 5.7525365217727299e-05 2.3707672111393601 1099999.9999974500 + 5.9477092083761399e-05 5.8095956252624896 1099999.9999846600 + 5.9103142755190203e-05 14.231725840168099 1099999.9999079399 +-5.7064839842603598e-05 34.861755896209999 1099999.9994475699 + 4.8088578890461003e-05 85.395964133857305 1099999.9966852400 + 7.7183928270327504e-05 209.17964089762501 1099999.9801108500 + 3.7801667314643301e-05 512.37495292745700 1099999.8806690399 +-2.5913980467573302e-05 1254.9389221072699 1099999.2841490000 + 3.5386889041061202e-06 3073.0863686301400 1099995.7073280700 + 2.2916032905458999e-05 7521.8380969630498 1099974.2824046600 + 5.3674486613615303e-05 18389.530179466499 1099846.2734308699 +-1.6944240159841499e-05 44828.518461090403 1099086.1676559199 +-5.0538450310371399e-05 108456.75133247100 1094640.1843027701 + 0.00011455865764045500 256943.71998433000 1069569.9718861801 +-2.0765111057915799e-05 570452.76749017602 940523.06726778299 + 7.4453360729608904e-05 -570452.76746375696 940523.06728380697 +-6.9389438649974697e-05 -256943.71995565799 1069569.9718930700 + 7.7753333989444404e-05 -108456.75131118001 1094640.1843048800 + 4.0868138441040901e-05 -44828.518455861602 1099086.1676561399 +-1.4412954302036901e-05 -18389.530189684199 1099846.2734306999 + 2.1756978682347901e-05 -7521.8380858141900 1099974.2824047301 + 4.2122669046372802e-05 -3073.0863531225200 1099995.7073281100 + 8.9919828645979393e-05 -1254.9389344356300 1099999.2841489799 + 4.6706335827018602e-05 -512.37496533952299 1099999.8806690399 + 1.1712449021553901e-05 -209.17963349094600 1099999.9801108500 + 6.2167473522543499e-05 -85.395975785038203 1099999.9966852400 + 0.00017340677481775401 -34.861780517721400 1099999.9994475699 + 2.9754966971878901e-05 -14.231713935650200 1099999.9999079399 + 5.9848809588508002e-05 -5.8096162499477098 1099999.9999846600 + 8.0575767860159198e-05 -2.3708309004757799 1099999.9999974400 + 0.00021643883724778001 -0.96582129661512695 1099999.9999995800 + 0.00047329402130053498 -0.38910185911675399 1099999.9999999299 + 0.00091091013595084197 -0.14611693370207901 1099999.9999999900 + 0.0026508235201643600 -0.028337730556016200 1100000.0000000000 + 0.0069189436121475899 0.066931311391246501 1100000.0000000000 + 0.018281883855653901 0.22404698045601201 1099999.9999999800 + 0.048401925401413699 0.58478410167251305 1099999.9999998400 + 0.12822729140742101 1.4775242447525201 1099999.9999990000 + 0.34121750875506102 3.7176908730199201 1099999.9999936600 + 0.91244944562777497 9.3586866702813705 1099999.9999598099 + 2.4527189118750798 23.588289901512699 1099999.9997443501 + 6.6306459395821298 59.542117406774203 1099999.9983685301 + 18.040799544228001 150.54358697436399 1099999.9895505300 + 49.445121717078003 381.29548413952199 1099999.9328040599 + 136.63327595416700 967.51267644427696 1099999.5660228999 + 381.10228122383103 2459.4478700926402 1099997.1844860399 + 1074.3160989809101 6261.5584068199596 1099981.6538157500 + 3065.1059383789702 15950.839881197900 1099880.0733864901 + 8862.9451409824997 40550.313972395103 1099216.5938704601 + 25982.613552476301 102129.72334303800 1094940.3743596501 + 76797.288801715898 249505.09371728700 1068573.5279529600 + 220879.67258125200 552565.44315455004 925139.77391084703 + 525061.95733328594 888533.27416035498 380550.34052174701 + 714809.15688421205 714809.15688421205 -433700.05587844300 + 698385.65421217796 238065.58711888199 -815832.24637199205 + 698385.65421217796 -238065.58711888301 -815832.24637199205 + 714809.15688421205 -714809.15688421205 -433700.05587844201 + 525061.95733328501 -888533.27416035498 380550.34052174800 + 220879.67258125200 -552565.44315455004 925139.77391084796 + 76797.288801715695 -249505.09371728700 1068573.5279529600 + 25982.613552476199 -102129.72334303800 1094940.3743596501 + 8862.9451409824505 -40550.313972395103 1099216.5938704601 + 3065.1059383789802 -15950.839881197900 1099880.0733864901 + 1074.3160989809101 -6261.5584068199596 1099981.6538157500 + 381.10228122382699 -2459.4478700926302 1099997.1844860399 + 136.63327595416499 -967.51267644427799 1099999.5660228999 + 49.445121717077797 -381.29548413952199 1099999.9328040599 + 18.040799544228200 -150.54358697436101 1099999.9895505300 + 6.6306459395822603 -59.542117406775198 1099999.9983685301 + 2.4527189118750701 -23.588289901512500 1099999.9997443501 + 0.91244944562783403 -9.3586866702814504 1099999.9999598099 + 0.34121750875505702 -3.7176908730200200 1099999.9999936600 + 0.12822729140740199 -1.4775242447523600 1099999.9999990000 + 0.048401925401402500 -0.58478410167254202 1099999.9999998400 + 0.018281883855660298 -0.22404698045603400 1099999.9999999800 + 0.0069189436121537698 -0.066931311391238493 1100000.0000000000 + 0.0026508235201640000 0.028337730556007801 1100000.0000000000 + 0.00091091013594815997 0.14611693370208700 1099999.9999999900 + 0.00047329402129587302 0.38910185911674999 1099999.9999999299 + 0.00021643883725893900 0.96582129661507998 1099999.9999995800 + 8.0575767840929599e-05 2.3708309004758301 1099999.9999974400 + 5.9848809577146302e-05 5.8096162499476396 1099999.9999846600 + 2.9754966999102201e-05 14.231713935650101 1099999.9999079399 + 0.00017340677478440699 34.861780517721499 1099999.9994475699 + 6.2167473566457997e-05 85.395975785036896 1099999.9966852400 + 1.1712449168103199e-05 209.17963349094600 1099999.9801108500 + 4.6706335871970498e-05 512.37496533952606 1099999.8806690399 + 8.9919828027345302e-05 1254.9389344356300 1099999.2841489799 + 4.2122672555936400e-05 3073.0863531225200 1099995.7073281100 + 2.1756980017057899e-05 7521.8380858141800 1099974.2824047301 +-1.4412944229875800e-05 18389.530189684101 1099846.2734306999 + 4.0868172255771803e-05 44828.518455861602 1099086.1676561399 + 7.7753445796962996e-05 108456.75131118001 1094640.1843048800 +-6.9389470994961100e-05 256943.71995565799 1069569.9718930700 + 7.4453132675309500e-05 570452.76746375696 940523.06728380697 +-2.9124435796483001e-05 -570452.76745759603 940523.06728754402 + 0.00010687170253150601 -256943.71995093700 1069569.9718942100 +-5.6584016803115003e-05 -108456.75130777300 1094640.1843052199 +-1.5730122970787900e-05 -44828.518453170400 1099086.1676562501 + 7.0127494691358598e-05 -18389.530168751699 1099846.2734310499 + 4.2251329396501001e-05 -7521.8380976649596 1099974.2824046500 + 1.3916858545106400e-05 -3073.0863652399698 1099995.7073280700 + 4.9733315439162102e-06 -1254.9389075457900 1099999.2841490100 + 7.9634225687285406e-05 -512.37496263753098 1099999.8806690399 + 0.00011596246611537000 -209.17967392998199 1099999.9801108500 + 0.00011237433083297001 -85.395983238291095 1099999.9966852400 + 1.7724796154865601e-05 -34.861767524250801 1099999.9994475699 + 0.00012112107707320500 -14.231767234209800 1099999.9999079299 + 0.00013577246021196501 -5.8096450010862304 1099999.9999846600 + 0.00014663213256291101 -2.3708700971249299 1099999.9999974400 + 0.00014628823505391500 -0.96605733748342104 1099999.9999995800 + 0.00058408600681513899 -0.38968862408573601 1099999.9999999299 + 0.0016880344274218899 -0.14750328247921601 1099999.9999999900 + 0.0039273684183504798 -0.032036379272178103 1100000.0000000000 + 0.010451645324897400 0.057182386353281399 1100000.0000000000 + 0.027204829058067100 0.19834924107499499 1099999.9999999800 + 0.071186493758654795 0.51665750967968205 1099999.9999998801 + 0.18751381580718801 1.2966720893090000 1099999.9999992200 + 0.49495129353818401 3.2352672676276302 1099999.9999951301 + 1.3109393121288699 8.0648352936544807 1099999.9999696501 + 3.4853506623220598 20.101066911128701 1099999.9998108200 + 9.3041955459499608 50.087887253537303 1099999.9988202900 + 24.949988044984799 124.74530831504600 1099999.9926436800 + 67.230284331630799 310.39143602311202 1099999.9541532900 + 182.10771018027501 771.09144938534303 1099999.7146612201 + 496.03311258127798 1910.6181748587001 1099998.2288573701 + 1359.0437745959600 4714.1734825404801 1099989.0588403100 + 3745.7043402527702 11550.501448668800 1099932.9777833200 + 10380.564278548100 27963.888144879202 1099595.5005569500 + 28868.965544231800 66250.711901638497 1097623.5356445899 + 79989.380957344503 150435.26188561801 1086724.8644047200 + 215128.46043841500 311216.56035348302 1032891.0872261100 + 513353.02545338898 513353.02545338898 826400.23143492895 + 888533.27416035498 525061.95733328594 380550.34052174701 + 1078245.4994615701 217542.86807153499 -7857.6995415871697 + 1078245.4994615701 -217542.86807153601 -7857.6995415868696 + 888533.27416035498 -525061.95733328594 380550.34052174800 + 513353.02545338799 -513353.02545338898 826400.23143493000 + 215128.46043841500 -311216.56035348302 1032891.0872261100 + 79989.380957344503 -150435.26188561699 1086724.8644047200 + 28868.965544231702 -66250.711901638497 1097623.5356445899 + 10380.564278548100 -27963.888144879100 1099595.5005569500 + 3745.7043402527502 -11550.501448668900 1099932.9777833200 + 1359.0437745959500 -4714.1734825404901 1099989.0588403100 + 496.03311258128002 -1910.6181748587101 1099998.2288573701 + 182.10771018027501 -771.09144938533905 1099999.7146612201 + 67.230284331629605 -310.39143602310997 1099999.9541532900 + 24.949988044984700 -124.74530831504801 1099999.9926436800 + 9.3041955459501100 -50.087887253536202 1099999.9988202900 + 3.4853506623223498 -20.101066911129099 1099999.9998108200 + 1.3109393121288400 -8.0648352936546104 1099999.9999696501 + 0.49495129353811002 -3.2352672676274001 1099999.9999951301 + 0.18751381580718199 -1.2966720893090500 1099999.9999992200 + 0.071186493758668395 -0.51665750967967605 1099999.9999998801 + 0.027204829058069199 -0.19834924107499999 1099999.9999999800 + 0.010451645324895099 -0.057182386353291002 1100000.0000000000 + 0.0039273684183510297 0.032036379272194798 1100000.0000000000 + 0.0016880344274257800 0.14750328247920599 1099999.9999999900 + 0.00058408600681839800 0.38968862408570998 1099999.9999999299 + 0.00014628823502824801 0.96605733748345501 1099999.9999995800 + 0.00014663213257318699 2.3708700971248602 1099999.9999974400 + 0.00013577246021783201 5.8096450010862402 1099999.9999846600 + 0.00012112107702758900 14.231767234210000 1099999.9999079299 + 1.7724796320711101e-05 34.861767524250297 1099999.9994475699 + 0.00011237433065881700 85.395983238290896 1099999.9966852400 + 0.00011596246536029601 209.17967392998099 1099999.9801108500 + 7.9634226717140304e-05 512.37496263753405 1099999.8806690399 + 4.9733350011792801e-06 1254.9389075457900 1099999.2841490100 + 1.3916856335243901e-05 3073.0863652399698 1099995.7073280700 + 4.2251329558016597e-05 7521.8380976649496 1099974.2824046500 + 7.0127488178594406e-05 18389.530168751699 1099846.2734310499 +-1.5730133638902699e-05 44828.518453170400 1099086.1676562501 +-5.6584075662618598e-05 108456.75130777300 1094640.1843052199 + 0.00010687159710899001 256943.71995093700 1069569.9718942100 +-2.9124580639939800e-05 570452.76745759603 940523.06728754402 + 2.9019132994174900e-06 -570452.76752436894 940523.06724704395 +-8.4679254018192894e-05 -256943.71996960399 1069569.9718897201 + 6.1157689793022707e-05 -108456.75129831499 1094640.1843061601 + 1.5213421066190200e-05 -44828.518462669897 1099086.1676558601 +-3.2037079458566400e-05 -18389.530208002601 1099846.2734304001 + 2.1178787504872501e-06 -7521.8380727777203 1099974.2824048200 + 1.5237849107184001e-05 -3073.0863245582000 1099995.7073281901 + 5.8302490897426202e-05 -1254.9389335131000 1099999.2841489799 + 3.6769449163236498e-05 -512.37499475846096 1099999.8806690201 + 4.5710235971179501e-06 -209.17965152006201 1099999.9801108500 + 6.1204801896368906e-05 -85.396009329129498 1099999.9966852400 + 0.00018799554915832100 -34.861830439515700 1099999.9994475699 + 1.6758839512724401e-05 -14.231723332954401 1099999.9999079399 + 9.6052402058591899e-05 -5.8096977017378402 1099999.9999846600 + 0.00016335712270049699 -2.3710308322486600 1099999.9999974400 + 0.00030302562722251802 -0.96626869863586595 1099999.9999995800 + 0.00081177605277516396 -0.39037681946924402 1099999.9999999299 + 0.0018075661033889600 -0.14941836842307099 1099999.9999999900 + 0.0047737292576904601 -0.036868958663664499 1100000.0000000000 + 0.012366141660014500 0.044538526867988398 1100000.0000000000 + 0.032112117052722898 0.16534626803439401 1099999.9999999900 + 0.083330106046984806 0.43033768620812402 1099999.9999999099 + 0.21668652312024700 1.0695596637383100 1099999.9999994601 + 0.56478111642814299 2.6365874350318501 1099999.9999966901 + 1.4755819369603600 6.4828783064093596 1099999.9999799100 + 3.8629792627057098 15.905837967709200 1099999.9998782200 + 10.132381179951500 38.927148126293503 1099999.9992645499 + 26.626267684302700 94.955138015529300 1099999.9955793500 + 70.087746721568607 230.61675061491201 1099999.9735925600 + 184.73291066941599 556.82842281487603 1099999.8435526500 + 487.25532919434897 1333.7803285785801 1099999.0834597400 + 1284.8383116212401 3159.5270374534898 1099994.7120688399 + 3381.4892439650898 7366.5710456906900 1099970.1355771101 + 8857.4993260248903 16776.864837009900 1099836.3885196401 + 22972.128145567000 36844.537936716602 1099142.7392985399 + 58367.669915573701 76225.705504997502 1095802.3804176101 + 141824.81643559600 141824.81643559600 1081559.7269157299 + 311216.56035348302 215128.46043841500 1032891.0872261100 + 552565.44315455004 220879.67258125200 925139.77391084796 + 733667.20890625694 96566.878256827506 813884.06090759195 + 733667.20890625694 -96566.878256827695 813884.06090759195 + 552565.44315455004 -220879.67258125200 925139.77391084796 + 311216.56035348302 -215128.46043841500 1032891.0872261100 + 141824.81643559600 -141824.81643559600 1081559.7269157299 + 58367.669915573701 -76225.705504997502 1095802.3804176101 + 22972.128145566901 -36844.537936716501 1099142.7392985399 + 8857.4993260249103 -16776.864837009900 1099836.3885196401 + 3381.4892439650898 -7366.5710456907000 1099970.1355771101 + 1284.8383116212501 -3159.5270374534998 1099994.7120688399 + 487.25532919434698 -1333.7803285785801 1099999.0834597400 + 184.73291066941300 -556.82842281487501 1099999.8435526500 + 70.087746721568607 -230.61675061491300 1099999.9735925600 + 26.626267684302800 -94.955138015527993 1099999.9955793500 + 10.132381179951899 -38.927148126294199 1099999.9992645499 + 3.8629792627056498 -15.905837967709100 1099999.9998782200 + 1.4755819369603400 -6.4828783064093001 1099999.9999799100 + 0.56478111642815898 -2.6365874350319300 1099999.9999966901 + 0.21668652312022299 -1.0695596637382001 1099999.9999994601 + 0.083330106046979394 -0.43033768620815099 1099999.9999999099 + 0.032112117052730600 -0.16534626803441899 1099999.9999999900 + 0.012366141660017800 -0.044538526867977803 1100000.0000000000 + 0.0047737292576921697 0.036868958663655298 1100000.0000000000 + 0.0018075661033902901 0.14941836842307399 1099999.9999999900 + 0.00081177605276164504 0.39037681946927399 1099999.9999999299 + 0.00030302562722443602 0.96626869863580200 1099999.9999995800 + 0.00016335712270087801 2.3710308322486799 1099999.9999974400 + 9.6052402053528295e-05 5.8096977017378704 1099999.9999846600 + 1.6758839597239299e-05 14.231723332954100 1099999.9999079399 + 0.00018799554913065500 34.861830439515899 1099999.9994475699 + 6.1204801552134798e-05 85.396009329129200 1099999.9966852400 + 4.5710230376333600e-06 209.17965152006201 1099999.9801108500 + 3.6769450068386903e-05 512.37499475846096 1099999.8806690201 + 5.8302493886271498e-05 1254.9389335131000 1099999.2841489799 + 1.5237849861735900e-05 3073.0863245582100 1099995.7073281901 + 2.1178671366878300e-06 7521.8380727777203 1099974.2824048200 +-3.2037089584303597e-05 18389.530208002601 1099846.2734304001 + 1.5213374392886400e-05 44828.518462669999 1099086.1676558601 + 6.1157590486307702e-05 108456.75129831499 1094640.1843061601 +-8.4679257746928395e-05 256943.71996960399 1069569.9718897201 + 2.9019150715706400e-06 570452.76752436894 940523.06724704395 +-1.6183368954551099e-05 -570452.76760803198 940523.06719630002 + 9.3205961494079599e-05 -256943.72001638700 1069569.9718784799 +-7.5142815876628796e-05 -108456.75132053001 1094640.1843039601 +-4.0769529402544103e-05 -44828.518471246200 1099086.1676555099 + 4.0967066289212600e-05 -18389.530177787201 1099846.2734308999 + 6.1421256732223600e-06 -7521.8380913221499 1099974.2824047001 +-4.8156132609329101e-05 -3073.0863386306501 1099995.7073281500 +-5.2595963382168602e-05 -1254.9388875776699 1099999.2841490300 + 2.0828029012256801e-05 -512.37497949419696 1099999.8806690299 + 4.5471912852726100e-05 -209.17971389875700 1099999.9801108399 + 6.1171358256866597e-05 -85.396017410009506 1099999.9966852400 +-9.0029569970163103e-06 -34.861801822438800 1099999.9994475699 + 9.5532240999394397e-05 -14.231814400158100 1099999.9999079299 + 9.9422262361769501e-05 -5.8097207359889698 1099999.9999846600 + 0.00014082724317752101 -2.3710822667649998 1099999.9999974400 + 0.00019154211545707899 -0.96664746458626205 1099999.9999995800 + 0.00077671167656247100 -0.39123891469720101 1099999.9999999299 + 0.0021817783571690102 -0.15143085083992999 1099999.9999999900 + 0.0050052778615526103 -0.042178057704529703 1100000.0000000000 + 0.012941388987010700 0.030824764997928300 1100000.0000000000 + 0.032995482055253600 0.12989087131200000 1099999.9999999900 + 0.084403350862033794 0.33854678416238998 1099999.9999999399 + 0.21680918907231700 0.83209670852013995 1099999.9999996601 + 0.55668826301809904 2.0209664567691901 1099999.9999980000 + 1.4297541332868300 4.8848107373636402 1099999.9999882199 + 3.6724115649277702 11.756624978938399 1099999.9999310400 + 9.4273547132975093 28.150744360171299 1099999.9995993900 + 24.175544665116199 66.978330375050902 1099999.9976951999 + 61.881298160457703 158.07930214788399 1099999.9869007501 + 157.93046657872500 369.24565470460101 1099999.9266889100 + 401.26120732628402 850.91581778989405 1099999.5976961600 + 1012.7115939669700 1926.0327172766599 1099997.8476402599 + 2530.6987143336000 4254.5675613894800 1099988.8609521801 + 6231.0955475001001 9083.7540683287298 1099944.8435536700 + 14999.254362146799 18462.828869586901 1099742.7637037300 + 34835.407239634798 34835.407239634798 1098896.2593461201 + 76225.705504997401 58367.669915573701 1095802.3804176101 + 150435.26188561801 79989.380957344503 1086724.8644047200 + 249505.09371728700 76797.288801715797 1068573.5279529600 + 325348.13004610001 32673.475907616499 1050276.6484348900 + 325348.13004610001 -32673.475907616601 1050276.6484348900 + 249505.09371728700 -76797.288801715695 1068573.5279529600 + 150435.26188561699 -79989.380957344503 1086724.8644047200 + 76225.705504997502 -58367.669915573701 1095802.3804176101 + 34835.407239634696 -34835.407239634696 1098896.2593461201 + 14999.254362146899 -18462.828869586901 1099742.7637037300 + 6231.0955475001101 -9083.7540683287207 1099944.8435536700 + 2530.6987143336200 -4254.5675613894800 1099988.8609521801 + 1012.7115939669600 -1926.0327172766599 1099997.8476402599 + 401.26120732627902 -850.91581778989098 1099999.5976961600 + 157.93046657872500 -369.24565470459999 1099999.9266889100 + 61.881298160458300 -158.07930214788499 1099999.9869007501 + 24.175544665116799 -66.978330375052195 1099999.9976951999 + 9.4273547132972801 -28.150744360170300 1099999.9995993900 + 3.6724115649278999 -11.756624978938500 1099999.9999310400 + 1.4297541332868600 -4.8848107373637699 1099999.9999882199 + 0.55668826301800700 -2.0209664567689800 1099999.9999980000 + 0.21680918907231400 -0.83209670852018303 1099999.9999996601 + 0.084403350862052806 -0.33854678416241302 1099999.9999999399 + 0.032995482055255897 -0.12989087131199800 1099999.9999999900 + 0.012941388987011099 -0.030824764997937799 1100000.0000000000 + 0.0050052778615538897 0.042178057704541000 1100000.0000000000 + 0.0021817783571647900 0.15143085083994101 1099999.9999999900 + 0.00077671167656144502 0.39123891469717498 1099999.9999999299 + 0.00019154211544433601 0.96664746458630202 1099999.9999995800 + 0.00014082724319036601 2.3710822667649500 1099999.9999974400 + 9.9422262427695295e-05 5.8097207359887699 1099999.9999846600 + 9.5532240932361199e-05 14.231814400158299 1099999.9999079299 +-9.0029570822367897e-06 34.861801822438800 1099999.9994475699 + 6.1171358284095495e-05 85.396017410009605 1099999.9966852400 + 4.5471912422042101e-05 209.17971389875700 1099999.9801108399 + 2.0828027866937302e-05 512.37497949419605 1099999.8806690299 +-5.2595959731030203e-05 1254.9388875776699 1099999.2841490300 +-4.8156130792335503e-05 3073.0863386306701 1099995.7073281500 + 6.1421196675385303e-06 7521.8380913221499 1099974.2824047001 + 4.0967059508556499e-05 18389.530177787201 1099846.2734308999 +-4.0769576526801697e-05 44828.518471246200 1099086.1676555099 +-7.5142751535659707e-05 108456.75132053001 1094640.1843039601 + 9.3205989637042006e-05 256943.72001638700 1069569.9718784799 +-1.6183255689707899e-05 570452.76760803198 940523.06719630002 + 9.2187293979696994e-05 -570452.76765581104 940523.06716732099 + 3.6204973371349500e-06 -256943.72000685200 1069569.9718807701 + 9.1446131897015206e-05 -108456.75127144200 1094640.1843088199 +-4.8806694765885197e-06 -44828.518459652099 1099086.1676559800 +-6.5225171825157306e-05 -18389.530219315198 1099846.2734302101 +-4.1278436591309797e-05 -7521.8380569980200 1099974.2824049301 +-4.3718795890815198e-05 -3073.0862822399899 1099995.7073283100 +-2.9844543109733901e-05 -1254.9388963563399 1099999.2841490200 +-2.9868902523905799e-05 -512.37502531019402 1099999.8806690101 +-5.9964019205721598e-05 -209.17968650285400 1099999.9801108399 +-2.5321517976596199e-05 -85.396041551935099 1099999.9966852299 + 0.00012399847398498399 -34.861883702139203 1099999.9994475699 +-6.1036023799331500e-05 -14.231736350208999 1099999.9999079399 + 5.6512241544200403e-05 -5.8097933142876803 1099999.9999846600 + 0.00017142686376555300 -2.3712679540272399 1099999.9999974400 + 0.00023956144160054501 -0.96683613572658900 1099999.9999995800 + 0.00077806611571003400 -0.39203029713809001 1099999.9999999299 + 0.0019052411850857399 -0.15357861495994499 1099999.9999999900 + 0.0048013379518067698 -0.047377872380913302 1100000.0000000000 + 0.012123883548424700 0.017516071261362901 1100000.0000000000 + 0.030749151061605400 0.096075429243843394 1100000.0000000000 + 0.077409030690775898 0.25254594534164398 1099999.9999999700 + 0.19529343282271100 0.61292828732142501 1099999.9999998100 + 0.49265488335913998 1.4634620387530799 1099999.9999989199 + 1.2410464941562800 3.4695128848842800 1099999.9999938300 + 3.1193649314124201 8.1696535522944504 1099999.9999652400 + 7.8162544568020902 19.088566979019902 1099999.9998066099 + 19.504850152125901 44.179969387480000 1099999.9989398599 + 48.412147269610500 101.06106027464300 1099999.9942922399 + 119.30874972343599 227.80395983235499 1099999.9699412601 + 291.26340304453697 504.00114809084801 1099999.8459765699 + 702.13103819554703 1088.5330999407499 1099999.2373214201 + 1663.9993203961301 2277.7043718931800 1099996.3832527201 + 3852.6162820042100 4567.1728483074103 1099983.7718257301 + 8633.6056648291196 8633.6056648291196 1099932.2350519800 + 18462.828869586901 14999.254362146899 1099742.7637037300 + 36844.537936716602 22972.128145566901 1099142.7392985399 + 66250.711901638497 28868.965544231800 1097623.5356445899 + 102129.72334303800 25982.613552476301 1094940.3743596501 + 128453.55572359600 10694.428753563700 1092421.7652608401 + 128453.55572359600 -10694.428753563700 1092421.7652608401 + 102129.72334303800 -25982.613552476301 1094940.3743596501 + 66250.711901638599 -28868.965544231800 1097623.5356445899 + 36844.537936716602 -22972.128145566901 1099142.7392985399 + 18462.828869586901 -14999.254362146899 1099742.7637037300 + 8633.6056648291105 -8633.6056648290996 1099932.2350519800 + 3852.6162820042200 -4567.1728483073903 1099983.7718257301 + 1663.9993203961301 -2277.7043718931900 1099996.3832527201 + 702.13103819553999 -1088.5330999407499 1099999.2373214201 + 291.26340304453601 -504.00114809084499 1099999.8459765699 + 119.30874972343901 -227.80395983235999 1099999.9699412601 + 48.412147269611602 -101.06106027464500 1099999.9942922399 + 19.504850152125002 -44.179969387478003 1099999.9989398599 + 7.8162544568022296 -19.088566979020101 1099999.9998066099 + 3.1193649314125000 -8.1696535522945695 1099999.9999652400 + 1.2410464941561901 -3.4695128848841699 1099999.9999938300 + 0.49265488335914298 -1.4634620387531101 1099999.9999989199 + 0.19529343282271100 -0.61292828732138205 1099999.9999998100 + 0.077409030690779299 -0.25254594534166203 1099999.9999999700 + 0.030749151061609602 -0.096075429243865307 1100000.0000000000 + 0.012123883548423199 -0.017516071261353901 1100000.0000000000 + 0.0048013379518073501 0.047377872380911498 1100000.0000000000 + 0.0019052411850866799 0.15357861495994499 1099999.9999999900 + 0.00077806611570158796 0.39203029713813597 1099999.9999999299 + 0.00023956144161423301 0.96683613572653604 1099999.9999995800 + 0.00017142686377787900 2.3712679540271400 1099999.9999974400 + 5.6512241464789797e-05 5.8097933142877496 1099999.9999846600 +-6.1036023750026905e-05 14.231736350208800 1099999.9999079399 + 0.00012399847412929201 34.861883702139302 1099999.9994475699 +-2.5321518004305100e-05 85.396041551935795 1099999.9966852299 +-5.9964019684156097e-05 209.17968650285400 1099999.9801108399 +-2.9868902881994500e-05 512.37502531019004 1099999.8806690101 +-2.9844544203488399e-05 1254.9388963563399 1099999.2841490200 +-4.3718795969825998e-05 3073.0862822399899 1099995.7073283100 +-4.1278432272525101e-05 7521.8380569980400 1099974.2824049301 +-6.5225181062809995e-05 18389.530219315198 1099846.2734302101 +-4.8807033758090399e-06 44828.518459652099 1099086.1676559800 + 9.1446146823998995e-05 108456.75127144200 1094640.1843088199 + 3.6205685154071399e-06 256943.72000685200 1069569.9718807701 + 9.2187347544009403e-05 570452.76765581104 940523.06716732099 + 0.00014723392208145200 -570452.76761575299 940523.06719161803 + 0.00015979773216540400 -256943.71993696500 1069569.9718975599 +-4.0557922754988601e-05 -108456.75122494600 1094640.1843134300 +-3.4439169810190798e-05 -44828.518434801103 1099086.1676570000 + 2.0174080349364400e-05 -18389.530166869099 1099846.2734310799 +-1.4887002088886000e-05 -7521.8380589620101 1099974.2824049201 +-9.0009197546324607e-05 -3073.0862846948498 1099995.7073283000 +-0.00010718753931750500 -1254.9388571447600 1099999.2841490700 +-3.9936242746099797e-05 -512.37498379994804 1099999.8806690299 +-2.1560827774933499e-05 -209.17975058826201 1099999.9801108299 +-7.2356454483174802e-06 -85.396060102379906 1099999.9966852299 +-5.2741958081169998e-05 -34.861851244270603 1099999.9994475699 + 4.9466391248440401e-05 -14.231846272012200 1099999.9999079299 +-3.6580829382166798e-06 -5.8097737341912596 1099999.9999846600 + 7.8930788325853101e-05 -2.3713218235486999 1099999.9999974400 + 0.00013345081784189099 -0.96723871338506595 1099999.9999995700 + 0.00062020457792632796 -0.39278424689247299 1099999.9999999299 + 0.0019172360769172099 -0.15537756383630300 1099999.9999999900 + 0.0042294954742897097 -0.052062162901163202 1100000.0000000000 + 0.010534870794257099 0.0058039722389934901 1100000.0000000000 + 0.026266201926461900 0.066632419248443195 1100000.0000000000 + 0.065236854586379497 0.17888657999955601 1099999.9999999800 + 0.16184203782301201 0.42934171025978402 1099999.9999999001 + 0.40036619922269101 1.0064638720070200 1099999.9999994701 + 0.98718080850259304 2.3356907028023799 1099999.9999970801 + 2.4238673739118402 5.3721840682434401 1099999.9999842099 + 5.9176328253953603 12.227863194485700 1099999.9999161200 + 14.347054606842301 27.488653781556000 1099999.9995629699 + 34.481020239990698 60.866295937548500 1099999.9977756201 + 81.965805688905505 132.28529202445100 1099999.9889919099 + 192.15375222393300 280.91255261120500 1099999.9473477600 + 442.54097794716102 579.31279240390404 1099999.7584336901 + 996.09897128356295 1150.6398870257699 1099998.9471879900 + 2175.8437344284798 2175.8437344284698 1099995.6960861699 + 4567.1728483074103 3852.6162820042300 1099983.7718257301 + 9083.7540683287207 6231.0955475001001 1099944.8435536700 + 16776.864837009900 8857.4993260248903 1099836.3885196401 + 27963.888144879202 10380.564278548100 1099595.5005569500 + 40550.313972395103 8862.9451409824705 1099216.5938704601 + 49342.681844547697 3548.2509409122299 1098887.0322574801 + 49342.681844547697 -3548.2509409122099 1098887.0322574801 + 40550.313972395103 -8862.9451409824997 1099216.5938704601 + 27963.888144879202 -10380.564278548100 1099595.5005569500 + 16776.864837009900 -8857.4993260248702 1099836.3885196401 + 9083.7540683287207 -6231.0955475000901 1099944.8435536700 + 4567.1728483074003 -3852.6162820042100 1099983.7718257301 + 2175.8437344284798 -2175.8437344284798 1099995.6960861699 + 996.09897128355794 -1150.6398870257799 1099998.9471879900 + 442.54097794716102 -579.31279240390097 1099999.7584336901 + 192.15375222393800 -280.91255261121103 1099999.9473477600 + 81.965805688906599 -132.28529202445100 1099999.9889919099 + 34.481020239989199 -60.866295937546802 1099999.9977756201 + 14.347054606842301 -27.488653781556199 1099999.9995629699 + 5.9176328253954402 -12.227863194485501 1099999.9999161200 + 2.4238673739118601 -5.3721840682435804 1099999.9999842099 + 0.98718080850260204 -2.3356907028023901 1099999.9999970801 + 0.40036619922263300 -1.0064638720068599 1099999.9999994701 + 0.16184203782301801 -0.42934171025983398 1099999.9999999001 + 0.065236854586395707 -0.17888657999959501 1099999.9999999800 + 0.026266201926460800 -0.066632419248431607 1100000.0000000000 + 0.010534870794258900 -0.0058039722389952898 1100000.0000000000 + 0.0042294954742889404 0.052062162901166602 1100000.0000000000 + 0.0019172360769112199 0.15537756383632101 1099999.9999999900 + 0.00062020457793208496 0.39278424689245500 1099999.9999999299 + 0.00013345081784563899 0.96723871338506495 1099999.9999995700 + 7.8930788290673600e-05 2.3713218235486999 1099999.9999974400 +-3.6580828853465100e-06 5.8097737341910998 1099999.9999846600 + 4.9466391313556398e-05 14.231846272012200 1099999.9999079299 +-5.2741958176489400e-05 34.861851244270703 1099999.9994475699 +-7.2356456561612398e-06 85.396060102380304 1099999.9966852299 +-2.1560827332023701e-05 209.17975058826201 1099999.9801108299 +-3.9936242693570500e-05 512.37498379994895 1099999.8806690299 +-0.00010718754309009001 1254.9388571447500 1099999.2841490700 +-9.0009196793381597e-05 3073.0862846948598 1099995.7073283000 +-1.4886989725427500e-05 7521.8380589620101 1099974.2824049201 + 2.0174090597605400e-05 18389.530166869201 1099846.2734310799 +-3.4439164383786199e-05 44828.518434801103 1099086.1676570000 +-4.0557909423348502e-05 108456.75122494600 1094640.1843134300 + 0.00015979775266555200 256943.71993696599 1069569.9718975599 + 0.00014723395880548700 570452.76761575299 940523.06719161803 + 0.00012875106800404500 -570452.76756542700 940523.06722214201 + 7.1468924461300006e-05 -256943.71986022301 1069569.9719159999 + 0.00011831097189165199 -108456.75110666300 1094640.1843251500 +-1.4593511027833599e-05 -44828.518373574298 1099086.1676594899 +-7.7837436566709399e-05 -18389.530187769800 1099846.2734307300 +-4.6766992583685599e-05 -7521.8380401765398 1099974.2824050500 +-4.3512755266164198e-05 -3073.0862390858802 1099995.7073284299 +-6.4944951033424599e-05 -1254.9388175146901 1099999.2841491101 +-4.9078993386286797e-05 -512.37505297612097 1099999.8806690001 +-6.0380253651658198e-05 -209.17974475252299 1099999.9801108299 +-7.4695050435139100e-05 -85.396066191675203 1099999.9966852299 + 8.1594108123955595e-05 -34.861938810747702 1099999.9994475699 +-7.9981925198722097e-05 -14.231766744139399 1099999.9999079299 + 2.0382043161116800e-05 -5.8098604478262699 1099999.9999846600 + 0.00013209994852924400 -2.3714466354132799 1099999.9999974400 + 0.00010330293905372400 -0.96732197733319303 1099999.9999995700 + 0.00045135259741978402 -0.39345527184515899 1099999.9999999299 + 0.0014038995194416101 -0.15706608118435200 1099999.9999999900 + 0.0035356871410397498 -0.055945920727923898 1100000.0000000000 + 0.0085422200782507007 -0.0038650724249641101 1100000.0000000000 + 0.021082488132894900 0.042967921008439901 1100000.0000000000 + 0.051363259063729801 0.12071872297479300 1099999.9999999900 + 0.12500532984552201 0.28694707471223002 1099999.9999999600 + 0.30299729417375099 0.66017089218313796 1099999.9999997600 + 0.73055562125067697 1.4988232893910400 1099999.9999987399 + 1.7502424213061101 3.3633223830746100 1099999.9999934700 + 4.1600092601413099 7.4513870812593304 1099999.9999669001 + 9.7913696307336195 16.259682544973298 1099999.9998362500 + 22.776883523727601 34.839922223957899 1099999.9992124501 + 52.227507163088603 73.022792509602198 1099999.9963363500 + 117.65503321230599 148.96905009531699 1099999.9836206899 + 259.27703888765899 293.88097507537401 1099999.9301860800 + 555.82581742119203 555.82581742119703 1099999.7191432901 + 1150.6398870257699 996.09897128355396 1099998.9471879900 + 2277.7043718931800 1663.9993203961201 1099996.3832527201 + 4254.5675613894900 2530.6987143336200 1099988.8609521801 + 7366.5710456906900 3381.4892439650898 1099970.1355771101 + 11550.501448668800 3745.7043402527602 1099932.9777833200 + 15950.839881197900 3065.1059383789702 1099880.0733864901 + 18893.257072184701 1199.8197824854401 1099837.0812396200 + 18893.257072184701 -1199.8197824854601 1099837.0812396200 + 15950.839881197900 -3065.1059383789602 1099880.0733864901 + 11550.501448668800 -3745.7043402527602 1099932.9777833200 + 7366.5710456906900 -3381.4892439650898 1099970.1355771101 + 4254.5675613894800 -2530.6987143336100 1099988.8609521801 + 2277.7043718931900 -1663.9993203961301 1099996.3832527201 + 1150.6398870257799 -996.09897128356704 1099998.9471879900 + 555.82581742119305 -555.82581742119203 1099999.7191432901 + 259.27703888766501 -293.88097507537702 1099999.9301860800 + 117.65503321230599 -148.96905009531500 1099999.9836206899 + 52.227507163087303 -73.022792509601700 1099999.9963363500 + 22.776883523727900 -34.839922223958503 1099999.9992124501 + 9.7913696307333797 -16.259682544972300 1099999.9998362500 + 4.1600092601413703 -7.4513870812596101 1099999.9999669001 + 1.7502424213061600 -3.3633223830746601 1099999.9999934700 + 0.73055562125059204 -1.4988232893908400 1099999.9999987399 + 0.30299729417374599 -0.66017089218320002 1099999.9999997600 + 0.12500532984554300 -0.28694707471226000 1099999.9999999600 + 0.051363259063735997 -0.12071872297478400 1099999.9999999900 + 0.021082488132895601 -0.042967921008448602 1100000.0000000000 + 0.0085422200782476303 0.0038650724249640698 1100000.0000000000 + 0.0035356871410371299 0.055945920727931801 1100000.0000000000 + 0.0014038995194411701 0.15706608118435500 1099999.9999999900 + 0.00045135259742375697 0.39345527184517098 1099999.9999999299 + 0.00010330293904520200 0.96732197733318903 1099999.9999995700 + 0.00013209994854821401 2.3714466354131800 1099999.9999974400 + 2.0382043175433100e-05 5.8098604478262201 1099999.9999846600 +-7.9981925194151399e-05 14.231766744139399 1099999.9999079299 + 8.1594108027600800e-05 34.861938810748001 1099999.9994475699 +-7.4695050434119597e-05 85.396066191675203 1099999.9966852299 +-6.0380253308421901e-05 209.17974475252299 1099999.9801108299 +-4.9078993864265700e-05 512.37505297612097 1099999.8806690001 +-6.4944951083439699e-05 1254.9388175146901 1099999.2841491101 +-4.3512756555971299e-05 3073.0862390858601 1099995.7073284299 +-4.6766985973896901e-05 7521.8380401765398 1099974.2824050500 +-7.7837407836527401e-05 18389.530187769800 1099846.2734307300 +-1.4593485615786801e-05 44828.518373574298 1099086.1676594899 + 0.00011831098510120700 108456.75110666300 1094640.1843251500 + 7.1468903514750200e-05 256943.71986022301 1069569.9719159999 + 0.00012875113526669699 570452.76756542700 940523.06722214201 + 7.3960500303507705e-05 -570452.76758386800 940523.06721095601 + 0.00010156028970691601 -256943.71979478901 1069569.9719317199 +-4.4031654021259600e-05 -108456.75106543100 1094640.1843292301 +-3.0452448315484399e-05 -44828.518362282201 1099086.1676599500 + 4.1599594211212399e-07 -18389.530145892699 1099846.2734314301 +-6.5131819650168300e-06 -7521.8380207561904 1099974.2824051799 +-6.4563453951259095e-05 -3073.0862380159101 1099995.7073284299 +-9.7218473981260805e-05 -1254.9388334907301 1099999.2841491001 +-3.8923442687910600e-05 -512.37496774297801 1099999.8806690399 +-7.6201356577424301e-07 -209.17979853331099 1099999.9801108199 +-3.8879482545833596e-06 -85.396128591928203 1099999.9966852299 +-5.1855274699685502e-05 -34.861919290573503 1099999.9994475699 + 4.9591256175530198e-05 -14.231871092333900 1099999.9999079299 +-7.1613075370160803e-05 -5.8098013398940900 1099999.9999846600 + 4.2686341492072302e-05 -2.3715353824165399 1099999.9999974400 + 8.5809691959167094e-05 -0.96765321427940598 1099999.9999995700 + 0.00030218038734794298 -0.39388235896137602 1099999.9999999299 + 0.0012224759554259100 -0.15825919805396099 1099999.9999999900 + 0.0027317826652883698 -0.059013503351578900 1100000.0000000000 + 0.0065054127572357796 -0.011285942881954000 1100000.0000000000 + 0.015832473096994301 0.024949981001764598 1100000.0000000000 + 0.038132698381915901 0.077571700845333297 1100000.0000000000 + 0.090972564499728806 0.18382235610150799 1099999.9999999800 + 0.21588689442309000 0.41507368451385901 1099999.9999999001 + 0.50860640536957902 0.92103081173728796 1099999.9999995001 + 1.1883724775781099 2.0162529248677998 1099999.9999975101 + 2.7485242299046302 4.3463778859337996 1099999.9999879799 + 6.2808060074365697 9.2062663620975300 1099999.9999435400 + 14.145612698318800 19.096506120080100 1099999.9997432800 + 31.312568260442902 38.633866700246301 1099999.9988758899 + 67.879548870081706 75.832936466862293 1099999.9952916999 + 143.45611843036400 143.45611843036400 1099999.9812912201 + 293.88097507537401 259.27703888766098 1099999.9301860800 + 579.31279240390302 442.54097794716603 1099999.7584336901 + 1088.5330999407499 702.13103819553896 1099999.2373214201 + 1926.0327172766599 1012.7115939669700 1099997.8476402599 + 3159.5270374534998 1284.8383116212501 1099994.7120688399 + 4714.1734825404901 1359.0437745959600 1099989.0588403100 + 6261.5584068199596 1074.3160989809101 1099981.6538157500 + 7259.1348474902297 412.88281531962201 1099975.9699598199 + 7259.1348474902197 -412.88281531963497 1099975.9699598199 + 6261.5584068199596 -1074.3160989809201 1099981.6538157500 + 4714.1734825404901 -1359.0437745959500 1099989.0588403100 + 3159.5270374534898 -1284.8383116212501 1099994.7120688399 + 1926.0327172766699 -1012.7115939669600 1099997.8476402599 + 1088.5330999407499 -702.13103819554794 1099999.2373214201 + 579.31279240390199 -442.54097794716199 1099999.7584336901 + 293.88097507537799 -259.27703888766098 1099999.9301860800 + 143.45611843036301 -143.45611843036301 1099999.9812912201 + 67.879548870080995 -75.832936466862193 1099999.9952916999 + 31.312568260443800 -38.633866700247303 1099999.9988758899 + 14.145612698318001 -19.096506120078601 1099999.9997432800 + 6.2808060074365004 -9.2062663620977307 1099999.9999435400 + 2.7485242299047998 -4.3463778859339497 1099999.9999879799 + 1.1883724775780899 -2.0162529248676799 1099999.9999975101 + 0.50860640536952895 -0.92103081173732004 1099999.9999995001 + 0.21588689442308701 -0.41507368451383603 1099999.9999999001 + 0.090972564499757699 -0.18382235610152201 1099999.9999999800 + 0.038132698381917199 -0.077571700845357403 1100000.0000000000 + 0.015832473096985399 -0.024949981001759401 1100000.0000000000 + 0.0065054127572394902 0.011285942881961900 1100000.0000000000 + 0.0027317826652882302 0.059013503351584000 1100000.0000000000 + 0.0012224759554218300 0.15825919805396299 1099999.9999999900 + 0.00030218038733907302 0.39388235896138002 1099999.9999999299 + 8.5809691988933295e-05 0.96765321427936901 1099999.9999995700 + 4.2686341495876598e-05 2.3715353824165102 1099999.9999974400 +-7.1613075422732994e-05 5.8098013398940003 1099999.9999846600 + 4.9591256211164697e-05 14.231871092334000 1099999.9999079299 +-5.1855274617702700e-05 34.861919290573702 1099999.9994475699 +-3.8879483446446400e-06 85.396128591928004 1099999.9966852299 +-7.6201351385155098e-07 209.17979853330999 1099999.9801108199 +-3.8923442264879700e-05 512.37496774298097 1099999.8806690399 +-9.7218476791430898e-05 1254.9388334907301 1099999.2841491001 +-6.4563453881139201e-05 3073.0862380159101 1099995.7073284299 +-6.5131769004341300e-06 7521.8380207561704 1099974.2824051799 + 4.1600269503650897e-07 18389.530145892699 1099846.2734314301 +-3.0452426232890700e-05 44828.518362282201 1099086.1676599500 +-4.4031608450300999e-05 108456.75106543100 1094640.1843292301 + 0.00010156035179641400 256943.71979478901 1069569.9719317199 + 7.3960597753915203e-05 570452.76758386800 940523.06721095601 +-1.4796937394875100e-05 -570452.76770393096 940523.06713813497 + 2.6106116244714799e-05 -256943.71987001199 1069569.9719136499 + 9.4186069553337207e-05 -108456.75099806501 1094640.1843359000 +-3.0651857813693499e-05 -44828.518293684203 1099086.1676627500 +-8.4782862055300396e-05 -18389.530155678400 1099846.2734312699 +-4.0697627283940801e-05 -7521.8380618493002 1099974.2824049001 + 8.0615084952779393e-06 -3073.0862407832401 1099995.7073284199 +-4.2471132147371402e-05 -1254.9387265806899 1099999.2841492200 +-4.1799543420499603e-05 -512.37507192417797 1099999.8806689901 + 1.7677270603331700e-06 -209.17982594551901 1099999.9801108199 +-4.9579773498244297e-05 -85.396094241169095 1099999.9966852299 + 7.6324829889560497e-05 -34.862009037878401 1099999.9994475599 +-1.1978593873798201e-05 -14.231846115385400 1099999.9999079299 + 3.3147124909701099e-05 -5.8098812520039198 1099999.9999846600 + 7.1406910756805205e-05 -2.3715330265627301 1099999.9999974400 + 3.7899999410225297e-05 -0.96767743392728001 1099999.9999995700 + 0.00013717310559308900 -0.39439239124676501 1099999.9999999299 + 0.00074516957428888300 -0.15928409317125999 1099999.9999999900 + 0.0020907583269391401 -0.061244755363471501 1100000.0000000000 + 0.0047609301726420396 -0.016704142781709699 1100000.0000000000 + 0.011344887231689801 0.012157694374560300 1100000.0000000000 + 0.026812759711356701 0.047269249152570601 1100000.0000000000 + 0.062924827819013304 0.11301503121764800 1099999.9999999900 + 0.14601304708887999 0.25106257997416898 1099999.9999999600 + 0.33602435582930001 0.54480212072997003 1099999.9999998100 + 0.76557276822733999 1.1628449125065701 1099999.9999991199 + 1.7233818187372401 2.4400493111785400 1099999.9999959399 + 3.8245514352101302 5.0190979846165700 1099999.9999819000 + 8.3465604648457301 10.087083252090300 1099999.9999220800 + 17.857632296685502 19.723090598480301 1099999.9996782299 + 37.320153488199800 37.320153488199601 1099999.9987338199 + 75.832936466862506 67.879548870082203 1099999.9952916999 + 148.96905009531400 117.65503321230500 1099999.9836206899 + 280.91255261120801 192.15375222393601 1099999.9473477600 + 504.00114809084602 291.26340304453902 1099999.8459765699 + 850.91581778989303 401.26120732627999 1099999.5976961600 + 1333.7803285785801 487.25532919435199 1099999.0834597400 + 1910.6181748587101 496.03311258128400 1099998.2288573701 + 2459.4478700926502 381.10228122383103 1099997.1844860399 + 2802.8015708326702 144.26555523982100 1099996.4197627199 + 2802.8015708326702 -144.26555523982901 1099996.4197627199 + 2459.4478700926402 -381.10228122382802 1099997.1844860399 + 1910.6181748587001 -496.03311258128298 1099998.2288573701 + 1333.7803285785801 -487.25532919434801 1099999.0834597400 + 850.91581778989598 -401.26120732628101 1099999.5976961600 + 504.00114809084602 -291.26340304453902 1099999.8459765699 + 280.91255261120801 -192.15375222393300 1099999.9473477600 + 148.96905009531400 -117.65503321230500 1099999.9836206899 + 75.832936466861696 -67.879548870082104 1099999.9952916999 + 37.320153488200802 -37.320153488200297 1099999.9987338199 + 17.857632296684201 -19.723090598478901 1099999.9996782299 + 8.3465604648455098 -10.087083252090499 1099999.9999220800 + 3.8245514352104100 -5.0190979846167298 1099999.9999819000 + 1.7233818187373500 -2.4400493111785599 1099999.9999959399 + 0.76557276822723297 -1.1628449125065501 1099999.9999991199 + 0.33602435582925599 -0.54480212072986700 1099999.9999998100 + 0.14601304708893900 -0.25106257997421699 1099999.9999999600 + 0.062924827819018994 -0.11301503121768799 1099999.9999999900 + 0.026812759711338001 -0.047269249152554503 1100000.0000000000 + 0.011344887231695799 -0.012157694374557200 1100000.0000000000 + 0.0047609301726449704 0.016704142781704900 1100000.0000000000 + 0.0020907583269345800 0.061244755363478398 1100000.0000000000 + 0.00074516957428157895 0.15928409317128600 1099999.9999999900 + 0.00013717310560767900 0.39439239124673803 1099999.9999999299 + 3.7899999407677801e-05 0.96767743392724503 1099999.9999995700 + 7.1406910775025101e-05 2.3715330265626799 1099999.9999974400 + 3.3147124958858398e-05 5.8098812520038896 1099999.9999846600 +-1.1978594030111501e-05 14.231846115385499 1099999.9999079299 + 7.6324829784699594e-05 34.862009037878501 1099999.9994475599 +-4.9579773139449699e-05 85.396094241168896 1099999.9966852299 + 1.7677272095434400e-06 209.17982594551901 1099999.9801108199 +-4.1799543976878100e-05 512.37507192417797 1099999.8806689901 +-4.2471132077513403e-05 1254.9387265806999 1099999.2841492200 + 8.0615056120532304e-06 3073.0862407832301 1099995.7073284199 +-4.0697628783248898e-05 7521.8380618492902 1099974.2824049001 +-8.4782864293606006e-05 18389.530155678400 1099846.2734312699 +-3.0651802815578598e-05 44828.518293684101 1099086.1676627500 + 9.4186077985771902e-05 108456.75099806501 1094640.1843359000 + 2.6106197954590901e-05 256943.71987001199 1069569.9719136499 +-1.4796889553397000e-05 570452.76770393096 940523.06713813497 + 1.7695323836216698e-05 -570452.76788043999 940523.06703107699 + 7.7686833258610902e-05 -256943.71988307699 1069569.9719105100 +-7.1903827138051303e-06 -108456.75101476299 1094640.1843342499 +-2.2884049276408098e-06 -44828.518318931201 1099086.1676617200 +-2.3296866495829900e-05 -18389.530137084701 1099846.2734315800 +-1.2305860913857700e-05 -7521.8380046909197 1099974.2824052901 +-2.0132429824110599e-05 -3073.0862401132199 1099995.7073284199 +-4.6158395717918598e-05 -1254.9388318237400 1099999.2841491001 +-1.9595710622590701e-05 -512.37492067321500 1099999.8806690599 + 4.2444906105622698e-05 -209.17985736762901 1099999.9801108099 + 5.5852487779713803e-05 -85.396224266726804 1099999.9966852199 +-4.6618075182841499e-05 -34.861987120294700 1099999.9994475599 + 6.9351952477829105e-05 -14.231913588473001 1099999.9999079299 +-2.5678046259816301e-05 -5.8098511061764899 1099999.9999846600 + 7.4170483475896203e-05 -2.3716873193139998 1099999.9999974400 + 0.00011265258974782199 -0.96784327986515495 1099999.9999995700 + 0.00010538948475886399 -0.39449027417562199 1099999.9999999299 + 0.00058310515690121001 -0.15995073255467801 1099999.9999999900 + 0.0014667273615057699 -0.062850452276268398 1100000.0000000000 + 0.0033323943731367401 -0.020488671518549099 1100000.0000000000 + 0.0077517709797604896 0.0033190942239442502 1100000.0000000000 + 0.018038777081201499 0.027136342036761199 1100000.0000000000 + 0.041425255796042400 0.066852003134232701 1100000.0000000000 + 0.094452809858341105 0.14666807119103301 1099999.9999999900 + 0.21216130402547101 0.31124293328674701 1099999.9999999399 + 0.47142816487610101 0.64846138284120303 1099999.9999997099 + 1.0331281066454301 1.3245076822596000 1099999.9999987199 + 2.2284858691976801 2.6481045815117699 1099999.9999945599 + 4.7172911629409100 5.1619668871695596 1099999.9999777700 + 9.7698698220174993 9.7698698220173696 1099999.9999132301 + 19.723090598480301 17.857632296684901 1099999.9996782299 + 38.633866700247097 31.312568260443101 1099999.9988758899 + 73.022792509602994 52.227507163088603 1099999.9963363500 + 132.28529202444901 81.965805688905306 1099999.9889919099 + 227.80395983235900 119.30874972343800 1099999.9699412601 + 369.24565470459800 157.93046657872600 1099999.9266889100 + 556.82842281487899 184.73291066941300 1099999.8435526500 + 771.09144938533905 182.10771018027700 1099999.7146612201 + 967.51267644428697 136.63327595416601 1099999.5660228999 + 1087.4012680593601 51.075532147498599 1099999.4613406700 + 1087.4012680593701 -51.075532147497597 1099999.4613406700 + 967.51267644427799 -136.63327595416499 1099999.5660228999 + 771.09144938534098 -182.10771018027700 1099999.7146612201 + 556.82842281487603 -184.73291066941201 1099999.8435526500 + 369.24565470459999 -157.93046657872799 1099999.9266889100 + 227.80395983235701 -119.30874972343599 1099999.9699412601 + 132.28529202445000 -81.965805688905604 1099999.9889919099 + 73.022792509601999 -52.227507163088703 1099999.9963363500 + 38.633866700247900 -31.312568260443399 1099999.9988758899 + 19.723090598479299 -17.857632296684201 1099999.9996782299 + 9.7698698220172808 -9.7698698220176805 1099999.9999132301 + 4.7172911629411596 -5.1619668871695401 1099999.9999777700 + 2.2284858691978702 -2.6481045815118298 1099999.9999945599 + 1.0331281066453100 -1.3245076822595800 1099999.9999987199 + 0.47142816487604799 -0.64846138284105004 1099999.9999997099 + 0.21216130402554101 -0.31124293328682501 1099999.9999999399 + 0.094452809858339801 -0.14666807119108399 1099999.9999999900 + 0.041425255796022298 -0.066852003134207194 1100000.0000000000 + 0.018038777081209600 -0.027136342036758802 1100000.0000000000 + 0.0077517709797637396 -0.0033190942239519701 1100000.0000000000 + 0.0033323943731331800 0.020488671518554699 1100000.0000000000 + 0.0014667273615000401 0.062850452276285204 1100000.0000000000 + 0.00058310515690860199 0.15995073255466100 1099999.9999999900 + 0.00010538948476207100 0.39449027417562799 1099999.9999999299 + 0.00011265258975663000 0.96784327986509100 1099999.9999995700 + 7.4170483492251094e-05 2.3716873193139301 1099999.9999974400 +-2.5678046303797301e-05 5.8098511061766898 1099999.9999846600 + 6.9351952439513400e-05 14.231913588473001 1099999.9999079299 +-4.6618075191297097e-05 34.861987120294202 1099999.9994475599 + 5.5852487712627703e-05 85.396224266726804 1099999.9966852199 + 4.2444906350462302e-05 209.17985736762901 1099999.9801108099 +-1.9595709816915899e-05 512.37492067321796 1099999.8806690599 +-4.6158396458745601e-05 1254.9388318237300 1099999.2841491001 +-2.0132432110192700e-05 3073.0862401132199 1099995.7073284199 +-1.2305862489168499e-05 7521.8380046909097 1099974.2824052901 +-2.3296846945017400e-05 18389.530137084701 1099846.2734315800 +-2.2883989515799801e-06 44828.518318931201 1099086.1676617200 +-7.1904657180352598e-06 108456.75101476299 1094640.1843342499 + 7.7686799345879203e-05 256943.71988307699 1069569.9719105100 + 1.7695259867217001e-05 570452.76788044104 940523.06703107699 + 9.1783394296887999e-05 -570452.76798202703 940523.06696946302 + 8.9198143109386899e-05 -256943.71999688199 1069569.9718831701 + 0.00013077964352399099 -108456.75094179400 1094640.1843414800 + 3.0671887795531901e-06 -44828.518195817698 1099086.1676667400 +-7.3305849429957705e-05 -18389.530087884799 1099846.2734324001 +-5.9136481781026597e-05 -7521.8380968811898 1099974.2824046600 + 4.4324231022740703e-05 -3073.0863041342100 1099995.7073282499 +-2.1279023449514200e-06 -1254.9386622346201 1099999.2841492901 +-7.1967926809990594e-05 -512.37504134004496 1099999.8806690001 + 4.2289594558359700e-05 -209.17987753179699 1099999.9801108099 + 1.9322056261859499e-05 -85.396136325598803 1099999.9966852299 + 7.7289816992558903e-05 -34.862086309585699 1099999.9994475599 + 4.0729244884837203e-05 -14.231961510419300 1099999.9999079299 + 5.7023819114465301e-05 -5.8098667287339101 1099999.9999846600 + 5.3336905989360599e-05 -2.3715840052852402 1099999.9999974400 + 8.4994207175877304e-05 -0.96796065670277798 1099999.9999995700 + 4.6341334383217501e-05 -0.39486668115464002 1099999.9999999299 + 0.00027172697556928700 -0.16042158959586700 1099999.9999999900 + 0.0010738427607070700 -0.063856924927532796 1100000.0000000000 + 0.0023118283843203699 -0.022892096581774699 1100000.0000000000 + 0.0051490939616575301 -0.0024148166848987200 1100000.0000000000 + 0.011719621951445099 0.014109351304010399 1100000.0000000000 + 0.026300665864036701 0.037913045484055302 1100000.0000000000 + 0.058526628836708901 0.082890989601492202 1100000.0000000000 + 0.12885495381084500 0.17254163350504700 1099999.9999999800 + 0.27913116690793799 0.35066247561019698 1099999.9999999099 + 0.59597369713605197 0.69825873608963196 1099999.9999996200 + 1.2503718389558600 1.3578507491133900 1099999.9999984500 + 2.5707772995131899 2.5707772995133098 1099999.9999939899 + 5.1619668871694397 4.7172911629412102 1099999.9999777700 + 10.087083252090100 8.3465604648454494 1099999.9999220800 + 19.096506120079400 14.145612698318200 1099999.9997432800 + 34.839922223958503 22.776883523727300 1099999.9992124501 + 60.866295937548500 34.481020239990201 1099999.9977756201 + 101.06106027464300 48.412147269610301 1099999.9942922399 + 158.07930214788601 61.881298160457902 1099999.9869007501 + 230.61675061490999 70.087746721568607 1099999.9735925600 + 310.39143602311299 67.230284331628795 1099999.9541532900 + 381.29548413951801 49.445121717078898 1099999.9328040599 + 423.69951070469199 18.289113876832001 1099999.9182473801 + 423.69951070468699 -18.289113876830900 1099999.9182473801 + 381.29548413952301 -49.445121717079502 1099999.9328040599 + 310.39143602311100 -67.230284331628397 1099999.9541532900 + 230.61675061491300 -70.087746721569900 1099999.9735925600 + 158.07930214788399 -61.881298160457099 1099999.9869007501 + 101.06106027464401 -48.412147269610500 1099999.9942922399 + 60.866295937547797 -34.481020239990301 1099999.9977756201 + 34.839922223958801 -22.776883523727498 1099999.9992124501 + 19.096506120078999 -14.145612698318001 1099999.9997432800 + 10.087083252090000 -8.3465604648458207 1099999.9999220800 + 5.1619668871694904 -4.7172911629409198 1099999.9999777700 + 2.5707772995133702 -2.5707772995132601 1099999.9999939899 + 1.2503718389558101 -1.3578507491134399 1099999.9999984500 + 0.59597369713603898 -0.69825873608951206 1099999.9999996200 + 0.27913116690797801 -0.35066247561028402 1099999.9999999099 + 0.12885495381081399 -0.17254163350508800 1099999.9999999800 + 0.058526628836705702 -0.082890989601459700 1100000.0000000000 + 0.026300665864049600 -0.037913045484052797 1100000.0000000000 + 0.011719621951441900 -0.014109351304020201 1100000.0000000000 + 0.0051490939616573904 0.0024148166848959500 1100000.0000000000 + 0.0023118283843179201 0.022892096581784399 1100000.0000000000 + 0.0010738427607092100 0.063856924927534003 1100000.0000000000 + 0.00027172697557207697 0.16042158959587799 1099999.9999999900 + 4.6341334387311801e-05 0.39486668115460299 1099999.9999999299 + 8.4994207182835998e-05 0.96796065670276099 1099999.9999995700 + 5.3336905964127501e-05 2.3715840052852299 1099999.9999974400 + 5.7023819099994197e-05 5.8098667287338097 1099999.9999846600 + 4.0729244896726802e-05 14.231961510419501 1099999.9999079299 + 7.7289816992539496e-05 34.862086309585997 1099999.9994475599 + 1.9322056340541901e-05 85.396136325597794 1099999.9966852299 + 4.2289594542686697e-05 209.17987753179699 1099999.9801108099 +-7.1967927187950898e-05 512.37504134004496 1099999.8806690001 +-2.1279035485183699e-06 1254.9386622346301 1099999.2841492901 + 4.4324236579783600e-05 3073.0863041342000 1099995.7073282499 +-5.9136476174089502e-05 7521.8380968811498 1099974.2824046600 +-7.3305853310295406e-05 18389.530087884799 1099846.2734324001 + 3.0671945197923101e-06 44828.518195817698 1099086.1676667400 + 0.00013077969863827400 108456.75094179400 1094640.1843414800 + 8.9198042330885903e-05 256943.71999688199 1069569.9718831701 + 9.1783277754038694e-05 570452.76798202703 940523.06696946302 + 0.00013246642432811499 -570452.76800308202 940523.06695669203 + 0.00018219354587324600 -256943.71989812099 1069569.9719068999 + 9.8729201190816499e-05 -108456.75092014100 1094640.1843436300 + 5.2726710541312497e-05 -44828.518179756298 1099086.1676674001 +-4.0772776613965501e-05 -18389.530051879901 1099846.2734330101 +-7.4541256475039099e-05 -7521.8379766440603 1099974.2824054800 +-3.0799228823311903e-05 -3073.0862786294301 1099995.7073283200 + 4.9774025560134402e-06 -1254.9388528102099 1099999.2841490700 +-3.0334064250318700e-05 -512.37484259370206 1099999.8806690900 +-1.7623072554895401e-05 -209.17987563077500 1099999.9801108099 + 7.7353233931721395e-05 -85.396286723946602 1099999.9966852199 +-5.9612503573000002e-05 -34.862027763231403 1099999.9994475599 + 5.4291626435519798e-06 -14.231997858663201 1099999.9999079299 + 5.1176699361574301e-05 -5.8099586339471401 1099999.9999846600 + 9.7696235018299697e-05 -2.3717327167982498 1099999.9999974400 + 0.00014365158055204501 -0.96787496452540900 1099999.9999995700 + 0.00010509038027829601 -0.39482130352986999 1099999.9999999299 + 0.00019648784785767300 -0.16087155391273200 1099999.9999999900 + 0.00064097523370037297 -0.064633424808879306 1100000.0000000000 + 0.0014839438914464400 -0.024427604926194599 1100000.0000000000 + 0.0032403444591418500 -0.0059482905711640000 1100000.0000000000 + 0.0072931663937357699 0.0062215207821617402 1100000.0000000000 + 0.016106640545794599 0.020510540871524000 1100000.0000000000 + 0.035091470193045197 0.045364076010422402 1100000.0000000000 + 0.075392109363098897 0.092923912979647805 1099999.9999999900 + 0.15985195966704299 0.18485503799784500 1099999.9999999700 + 0.33236221926525700 0.35847862302494599 1099999.9999998901 + 0.67909268469715101 0.67909268469714401 1099999.9999995800 + 1.3578507491134799 1.2503718389557099 1099999.9999984500 + 2.6481045815118298 2.2284858691979301 1099999.9999945599 + 5.0190979846166304 3.8245514352104100 1099999.9999819000 + 9.2062663620973400 6.2808060074365297 1099999.9999435400 + 16.259682544972598 9.7913696307334508 1099999.9998362500 + 27.488653781556000 14.347054606841899 1099999.9995629699 + 44.179969387478998 19.504850152125702 1099999.9989398599 + 66.978330375051300 24.175544665115801 1099999.9976951999 + 94.955138015528405 26.626267684302999 1099999.9955793500 + 124.74530831504600 24.949988044984401 1099999.9926436800 + 150.54358697436200 18.040799544227902 1099999.9895505300 + 165.71215447618499 6.6138910101046200 1099999.9874980601 + 165.71215447618701 -6.6138910101048198 1099999.9874980601 + 150.54358697436200 -18.040799544227699 1099999.9895505300 + 124.74530831504700 -24.949988044984998 1099999.9926436800 + 94.955138015528107 -26.626267684302601 1099999.9955793500 + 66.978330375051399 -24.175544665115901 1099999.9976951999 + 44.179969387478998 -19.504850152125599 1099999.9989398599 + 27.488653781555900 -14.347054606842100 1099999.9995629699 + 16.259682544972598 -9.7913696307333495 1099999.9998362500 + 9.2062663620972405 -6.2808060074367598 1099999.9999435400 + 5.0190979846164598 -3.8245514352100298 1099999.9999819000 + 2.6481045815120101 -2.2284858691977898 1099999.9999945599 + 1.3578507491135301 -1.2503718389558800 1099999.9999984500 + 0.67909268469718398 -0.67909268469710204 1099999.9999995800 + 0.33236221926523801 -0.35847862302501099 1099999.9999998901 + 0.15985195966697099 -0.18485503799784700 1099999.9999999700 + 0.075392109363124502 -0.092923912979610696 1099999.9999999900 + 0.035091470193066299 -0.045364076010429799 1100000.0000000000 + 0.016106640545779500 -0.020510540871539001 1100000.0000000000 + 0.0072931663937399003 -0.0062215207821631298 1100000.0000000000 + 0.0032403444591457202 0.0059482905711750302 1100000.0000000000 + 0.0014839438914438900 0.024427604926191698 1100000.0000000000 + 0.00064097523370032798 0.064633424808883205 1100000.0000000000 + 0.00019648784785749300 0.16087155391272301 1099999.9999999900 + 0.00010509038027670800 0.39482130352986899 1099999.9999999299 + 0.00014365158055225401 0.96787496452537403 1099999.9999995700 + 9.7696235038394503e-05 2.3717327167982498 1099999.9999974400 + 5.1176699330736101e-05 5.8099586339472102 1099999.9999846600 + 5.4291625586812097e-06 14.231997858663100 1099999.9999079299 +-5.9612503505289902e-05 34.862027763231197 1099999.9994475599 + 7.7353234186729893e-05 85.396286723947199 1099999.9966852199 +-1.7623072747645199e-05 209.17987563077401 1099999.9801108099 +-3.0334065914176299e-05 512.37484259370399 1099999.8806690900 + 4.9774055415362198e-06 1254.9388528101999 1099999.2841490700 +-3.0799227129720103e-05 3073.0862786294201 1099995.7073283200 +-7.4541261823920295e-05 7521.8379766440603 1099974.2824054800 +-4.0772771856102499e-05 18389.530051879799 1099846.2734330101 + 5.2726741703739703e-05 44828.518179756204 1099086.1676674001 + 9.8729271116381105e-05 108456.75092014100 1094640.1843436300 + 0.00018219352977868800 256943.71989812099 1069569.9719068899 + 0.00013246629892993899 570452.76800308202 940523.06695669203 + 0.00015690707256465800 -570452.76792816096 940523.06700213300 + 8.5906384493378800e-05 -256943.71994872100 1069569.9718947399 + 0.00013273228609339801 -108456.75081922900 1094640.1843536200 + 3.6277833590029101e-05 -44828.518011270004 1099086.1676742700 +-6.8388455126982701e-05 -18389.529907214001 1099846.2734354299 +-0.00011751985556718300 -7521.8380687889303 1099974.2824048500 +-2.7954751064051200e-05 -3073.0864117889901 1099995.7073279400 +-1.1178671044572601e-05 -1254.9386671046500 1099999.2841492901 +-0.00011935926708064300 -512.37494359469201 1099999.8806690499 +-4.3145117166314900e-05 -209.17983169213801 1099999.9801108199 + 2.2771226387455101e-05 -85.396175123453901 1099999.9966852199 + 3.8458723144433200e-05 -34.862115444764598 1099999.9994475599 +-6.3630471430258694e-05 -14.232034034843601 1099999.9999079299 +-6.7161269406059001e-05 -5.8098973349225700 1099999.9999846600 + 3.4993194656099199e-06 -2.3717196390290698 1099999.9999974400 + 9.3318850878513295e-05 -0.96819244217033396 1099999.9999995700 + 2.0583102486328098e-05 -0.39491184827209103 1099999.9999999299 + 6.0929039167179603e-05 -0.16090161744391199 1099999.9999999900 + 0.00047405444260056000 -0.065145860145580103 1100000.0000000000 + 0.0010480563152443700 -0.025388258790814400 1100000.0000000000 + 0.0019545729367231499 -0.0081084917204832102 1100000.0000000000 + 0.0043566172592234796 0.0014699462308811501 1100000.0000000000 + 0.0094980912333070492 0.010365889159867501 1100000.0000000000 + 0.020305231054403301 0.024020809124840000 1100000.0000000000 + 0.042794423262459497 0.048791291122585900 1100000.0000000000 + 0.088640857329995701 0.095056454410487295 1099999.9999999900 + 0.18031315271468701 0.18031315271466600 1099999.9999999700 + 0.35847862302495898 0.33236221926527298 1099999.9999998901 + 0.69825873608954303 0.59597369713596104 1099999.9999996200 + 1.3245076822596600 1.0331281066452700 1099999.9999987199 + 2.4400493111786399 1.7233818187374299 1099999.9999959399 + 4.3463778859339399 2.7485242299047301 1099999.9999879799 + 7.4513870812594298 4.1600092601415097 1099999.9999669001 + 12.227863194485300 5.9176328253953701 1099999.9999161200 + 19.088566979019799 7.8162544568019996 1099999.9998066099 + 28.150744360170499 9.4273547132976603 1099999.9995993900 + 38.927148126293702 10.132381179951199 1099999.9992645499 + 50.087887253536202 9.3041955459503907 1099999.9988202900 + 59.542117406774501 6.6306459395819202 1099999.9983685301 + 65.021978460147295 2.4122791078578398 1099999.9980756000 + 65.021978460147494 -2.4122791078578700 1099999.9980756000 + 59.542117406774203 -6.6306459395820401 1099999.9983685301 + 50.087887253536501 -9.3041955459502006 1099999.9988202900 + 38.927148126293297 -10.132381179951301 1099999.9992645499 + 28.150744360170801 -9.4273547132975395 1099999.9995993900 + 19.088566979019600 -7.8162544568021302 1099999.9998066099 + 12.227863194485399 -5.9176328253953496 1099999.9999161200 + 7.4513870812593996 -4.1600092601415399 1099999.9999669001 + 4.3463778859336797 -2.7485242299044699 1099999.9999879799 + 2.4400493111788299 -1.7233818187372900 1099999.9999959399 + 1.3245076822597801 -1.0331281066455100 1099999.9999987199 + 0.69825873608958200 -0.59597369713596804 1099999.9999996200 + 0.35847862302488198 -0.33236221926529003 1099999.9999998901 + 0.18031315271458900 -0.18031315271463000 1099999.9999999700 + 0.088640857330045994 -0.095056454410452601 1099999.9999999900 + 0.042794423262488800 -0.048791291122610603 1100000.0000000000 + 0.020305231054381499 -0.024020809124857701 1100000.0000000000 + 0.0094980912333136793 -0.010365889159866200 1100000.0000000000 + 0.0043566172592301696 -0.0014699462308734601 1100000.0000000000 + 0.0019545729367165098 0.0081084917204782992 1100000.0000000000 + 0.0010480563152421899 0.025388258790821499 1100000.0000000000 + 0.00047405444260395702 0.065145860145584294 1100000.0000000000 + 6.0929039171858200e-05 0.16090161744391199 1099999.9999999900 + 2.0583102486632800e-05 0.39491184827206899 1099999.9999999299 + 9.3318850867223904e-05 0.96819244217031097 1099999.9999995700 + 3.4993194302506799e-06 2.3717196390290498 1099999.9999974400 +-6.7161269384586594e-05 5.8098973349226100 1099999.9999846600 +-6.3630471350364093e-05 14.232034034843700 1099999.9999079299 + 3.8458723098895502e-05 34.862115444764598 1099999.9994475599 + 2.2771226160463102e-05 85.396175123453403 1099999.9966852199 +-4.3145117451432797e-05 209.17983169214000 1099999.9801108199 +-0.00011935926523656599 512.37494359468997 1099999.8806690499 +-1.1178672053799599e-05 1254.9386671046500 1099999.2841492901 +-2.7954754426888599e-05 3073.0864117889801 1099995.7073279400 +-0.00011751985363184800 7521.8380687888903 1099974.2824048500 +-6.8388471129246696e-05 18389.529907213899 1099846.2734354299 + 3.6277824104006599e-05 44828.518011269902 1099086.1676742700 + 0.00013273218926512599 108456.75081922900 1094640.1843536200 + 8.5906284536439102e-05 256943.71994872100 1069569.9718947399 + 0.00015690701437959901 570452.76792816096 940523.06700213300 +-0.00010268253892538300 -570452.76790761796 940523.06701459305 + 8.5075163026914906e-05 -256943.71988771300 1069569.9719094001 + 7.4595145671522804e-05 -108456.75086249100 1094640.1843493399 + 2.8589651011308101e-05 -44828.517964555002 1099086.1676761799 +-6.9531716079865796e-05 -18389.529875204498 1099846.2734359601 +-0.00018492371041663500 -7521.8379281866701 1099974.2824058100 +-0.00017284710715719399 -3073.0863085950400 1099995.7073282299 +-2.5112685756058600e-05 -1254.9389092991901 1099999.2841490100 +-9.6072454131586202e-05 -512.37480074005805 1099999.8806691100 +-0.00021914423211437099 -209.17979477733701 1099999.9801108199 +-7.9344815162740400e-05 -85.396238039904901 1099999.9966852199 +-0.00012065671565599201 -34.862040898781302 1099999.9994475599 +-0.00013442993146062200 -14.232101812921799 1099999.9999079299 +-0.00011525290694936400 -5.8100194238817497 1099999.9999846600 +-6.1566274896467595e-05 -2.3716554288037601 1099999.9999974400 + 2.1601458743184998e-05 -0.96804590760687403 1099999.9999995700 + 3.3657941983441200e-05 -0.39513884586935100 1099999.9999999299 +-0.00017505360081840999 -0.16109295534732801 1099999.9999999900 + 1.1781003234092699e-05 -0.065349977889586103 1100000.0000000000 + 0.00061316119318593403 -0.025977218944239700 1100000.0000000000 + 0.0012085983776954699 -0.0093050255266995899 1100000.0000000000 + 0.0024092510552746801 -0.0012084794579240801 1100000.0000000000 + 0.0053370016885804497 0.0046920449546894996 1100000.0000000000 + 0.011372882422397600 0.012152410781563500 1100000.0000000000 + 0.023448942047875999 0.024842747333083798 1100000.0000000000 + 0.047750018499655801 0.047750018499653601 1100000.0000000000 + 0.095056454410431895 0.088640857330044495 1099999.9999999900 + 0.18485503799790501 0.15985195966705701 1099999.9999999700 + 0.35066247561020703 0.27913116690799000 1099999.9999999099 + 0.64846138284107102 0.47142816487598399 1099999.9999997099 + 1.1628449125066400 0.76557276822724696 1099999.9999991199 + 2.0162529248677798 1.1883724775781701 1099999.9999975101 + 3.3633223830747898 1.7502424213060801 1099999.9999934700 + 5.3721840682436000 2.4238673739120302 1099999.9999842099 + 8.1696535522944806 3.1193649314123602 1099999.9999652400 + 11.756624978938500 3.6724115649278901 1099999.9999310400 + 15.905837967708999 3.8629792627057400 1099999.9998782200 + 20.101066911128900 3.4853506623220598 1099999.9998108200 + 23.588289901512400 2.4527189118752100 1099999.9997443501 + 25.585148273673902 0.88656420170520100 1099999.9997020999 + 25.585148273673500 -0.88656420170518302 1099999.9997020999 + 23.588289901512699 -2.4527189118752002 1099999.9997443501 + 20.101066911128601 -3.4853506623220398 1099999.9998108200 + 15.905837967709200 -3.8629792627057502 1099999.9998782200 + 11.756624978938399 -3.6724115649278701 1099999.9999310400 + 8.1696535522944398 -3.1193649314124201 1099999.9999652400 + 5.3721840682437199 -2.4238673739119498 1099999.9999842099 + 3.3633223830745300 -1.7502424213059899 1099999.9999934700 + 2.0162529248679801 -1.1883724775780600 1099999.9999975101 + 1.1628449125067399 -0.76557276822747100 1099999.9999991199 + 0.64846138284107402 -0.47142816487599398 1099999.9999997099 + 0.35066247561010500 -0.27913116690795697 1099999.9999999099 + 0.18485503799781100 -0.15985195966701499 1099999.9999999700 + 0.095056454410498203 -0.088640857330021694 1099999.9999999900 + 0.047750018499686603 -0.047750018499692501 1100000.0000000000 + 0.023448942047856601 -0.024842747333102402 1100000.0000000000 + 0.011372882422405001 -0.012152410781559000 1100000.0000000000 + 0.0053370016885846598 -0.0046920449546812701 1100000.0000000000 + 0.0024092510552674402 0.0012084794579255000 1100000.0000000000 + 0.0012085983776915100 0.0093050255267027402 1100000.0000000000 + 0.00061316119318933701 0.025977218944232699 1100000.0000000000 + 1.1781003240365800e-05 0.065349977889588406 1100000.0000000000 +-0.00017505360081912101 0.16109295534733001 1099999.9999999900 + 3.3657941982947997e-05 0.39513884586934900 1099999.9999999299 + 2.1601458733266300e-05 0.96804590760687703 1099999.9999995700 +-6.1566274923310300e-05 2.3716554288037401 1099999.9999974400 +-0.00011525290696549000 5.8100194238816298 1099999.9999846600 +-0.00013442993144950399 14.232101812921901 1099999.9999079299 +-0.00012065671551791800 34.862040898781601 1099999.9994475599 +-7.9344815084223102e-05 85.396238039905100 1099999.9966852199 +-0.00021914423239743899 209.17979477733499 1099999.9801108199 +-9.6072454258280999e-05 512.37480074006100 1099999.8806691100 +-2.5112682672169601e-05 1254.9389092991901 1099999.2841490100 +-0.00017284710971028500 3073.0863085950300 1099995.7073282299 +-0.00018492372006702099 7521.8379281866701 1099974.2824058100 +-6.9531729322753403e-05 18389.529875204498 1099846.2734359601 + 2.8589591006155999e-05 44828.517964555002 1099086.1676761799 + 7.4595082378410300e-05 108456.75086249100 1094640.1843493399 + 8.5075198049303202e-05 256943.71988771300 1069569.9719094001 +-0.00010268249550290299 570452.76790761796 940523.06701459305 +-0.00032227826690025299 -570452.76797587401 940523.06697319401 +-0.00024450158923785300 -256943.72011626299 1069569.9718544900 +-3.7852365097523201e-05 -108456.75094122200 1094640.1843415401 +-4.4565150507922502e-05 -44828.517921836697 1099086.1676779201 +-0.00012053628972578800 -18389.529677396898 1099846.2734392700 +-0.00023156033385202199 -7521.8379440027502 1099974.2824057001 +-0.00028366089587535999 -3073.0865005925998 1099995.7073277000 +-0.00023495215627067600 -1254.9387511062801 1099999.2841491899 +-0.00023831315620699399 -512.37483841643598 1099999.8806691000 +-0.00030231336459316199 -209.17971312141501 1099999.9801108399 +-0.00031371712107891201 -85.396122951887094 1099999.9966852299 +-0.00020945538491780799 -34.862008264381899 1099999.9994475599 +-0.00039000257220539100 -14.232073610727500 1099999.9999079299 +-0.00047936513331874400 -5.8101115129255803 1099999.9999846600 +-0.00039049638212911399 -2.3717979131234102 1099999.9999974400 +-0.00019364890263612899 -0.96814539339851402 1099999.9999995700 +-8.8080901300118805e-05 -0.39504147153001501 1099999.9999999299 +-0.00021461373858586299 -0.16121149610477900 1099999.9999999900 +-0.00029291978622787999 -0.065602780084326698 1100000.0000000000 +-9.9622181640341900e-06 -0.026265382059914199 1100000.0000000000 + 0.00053975328232123401 -0.0099978652818044304 1100000.0000000000 + 0.0012517589900822501 -0.0026772614758901999 1100000.0000000000 + 0.0026664601557918502 0.0015850036748738000 1100000.0000000000 + 0.0059685243863003201 0.0059376708489631402 1100000.0000000000 + 0.012404765421691900 0.012404765421699099 1100000.0000000000 + 0.024842747333112099 0.023448942047844899 1100000.0000000000 + 0.048791291122577199 0.042794423262448603 1100000.0000000000 + 0.092923912979601203 0.075392109363125695 1099999.9999999900 + 0.17254163350512999 0.12885495381087600 1099999.9999999800 + 0.31124293328673103 0.21216130402553199 1099999.9999999399 + 0.54480212072986800 0.33602435582920698 1099999.9999998100 + 0.92103081173735701 0.50860640536957602 1099999.9999995001 + 1.4988232893909199 0.73055562125065099 1099999.9999987399 + 2.3356907028025700 0.98718080850257195 1099999.9999970801 + 3.4695128848842698 1.2410464941563499 1099999.9999938300 + 4.8848107373638703 1.4297541332867600 1099999.9999882199 + 6.4828783064093800 1.4755819369604499 1099999.9999799100 + 8.0648352936546708 1.3109393121288200 1099999.9999696501 + 9.3586866702814504 0.91244944562780494 1099999.9999598099 + 10.091843773464200 0.32795575395115201 1099999.9999536599 + 10.091843773464200 -0.32795575395114301 1099999.9999536599 + 9.3586866702814699 -0.91244944562775498 1099999.9999598099 + 8.0648352936545997 -1.3109393121288699 1099999.9999696501 + 6.4828783064095097 -1.4755819369603700 1099999.9999799100 + 4.8848107373636900 -1.4297541332868300 1099999.9999882199 + 3.4695128848844798 -1.2410464941562500 1099999.9999938300 + 2.3356907028023501 -0.98718080850257806 1099999.9999970801 + 1.4988232893910500 -0.73055562125058904 1099999.9999987399 + 0.92103081173740797 -0.50860640536971202 1099999.9999995001 + 0.54480212072983203 -0.33602435582921297 1099999.9999998100 + 0.31124293328665098 -0.21216130402547501 1099999.9999999399 + 0.17254163350506099 -0.12885495381085499 1099999.9999999800 + 0.092923912979675297 -0.075392109363121101 1099999.9999999900 + 0.048791291122600500 -0.042794423262487002 1100000.0000000000 + 0.024842747333098700 -0.023448942047860299 1100000.0000000000 + 0.012404765421700300 -0.012404765421689400 1100000.0000000000 + 0.0059685243862972496 -0.0059376708489542298 1100000.0000000000 + 0.0026664601557849798 -0.0015850036748730400 1100000.0000000000 + 0.0012517589900804700 0.0026772614758910798 1100000.0000000000 + 0.00053975328232646399 0.0099978652817968704 1100000.0000000000 +-9.9622181595549002e-06 0.026265382059914900 1100000.0000000000 +-0.00029291978623099903 0.065602780084331000 1100000.0000000000 +-0.00021461373858458599 0.16121149610478200 1099999.9999999900 +-8.8080901307246594e-05 0.39504147153002100 1099999.9999999299 +-0.00019364890263994200 0.96814539339850503 1099999.9999995700 +-0.00039049638211257698 2.3717979131233600 1099999.9999974400 +-0.00047936513338823100 5.8101115129256700 1099999.9999846600 +-0.00039000257221166002 14.232073610727401 1099999.9999079299 +-0.00020945538469433400 34.862008264381600 1099999.9994475599 +-0.00031371712102290598 85.396122951887094 1099999.9966852299 +-0.00030231336452485400 209.17971312141600 1099999.9801108399 +-0.00023831315607928500 512.37483841643405 1099999.8806691000 +-0.00023495215665732800 1254.9387511062801 1099999.2841491899 +-0.00028366089594142899 3073.0865005925998 1099995.7073277000 +-0.00023156033860013199 7521.8379440027402 1099974.2824057001 +-0.00012053629696736400 18389.529677396898 1099846.2734392700 +-4.4565157450745900e-05 44828.517921836697 1099086.1676779201 +-3.7852332350809101e-05 108456.75094122200 1094640.1843415401 +-0.00024450141337564502 256943.72011626299 1069569.9718544900 +-0.00032227818749485998 570452.76797587401 940523.06697319401 +-0.0010062073473663300 -570452.76836527605 940523.06673701096 +-0.00043949368279381102 -256943.72049701901 1069569.9717630199 +-0.00020314953136898699 -108456.75125848800 1094640.1843101000 +-0.00012931357555626301 -44828.517937960300 1099086.1676772600 +-0.00021060846932774999 -18389.529697758899 1099846.2734389300 +-0.00041734170562744200 -7521.8378217850304 1099974.2824065399 +-0.00059668359755593202 -3073.0862382754299 1099995.7073284299 +-0.00054365161153640802 -1254.9389023943600 1099999.2841490200 +-0.00053418662278771200 -512.37484016863596 1099999.8806690900 +-0.00075808560750765500 -209.17964760484699 1099999.9801108500 +-0.00077127971645468902 -85.396059818345904 1099999.9966852299 +-0.00072002975254276396 -34.861956841917802 1099999.9994475699 +-0.00064690188385130895 -14.231994191294900 1099999.9999079299 +-0.00079276381484863902 -5.8100997393317799 1099999.9999846600 +-0.00098156873251651808 -2.3717879212073498 1099999.9999974400 +-0.00085253785085903601 -0.96816318589902695 1099999.9999995700 +-0.00061518944739801201 -0.39521705565246501 1099999.9999999299 +-0.00064645438685291502 -0.16120025875573701 1099999.9999999900 +-0.00076213557231429399 -0.065752185175247793 1100000.0000000000 +-0.00059189191255968904 -0.026542051163556998 1100000.0000000000 +-0.00034352879571031698 -0.010339496842527199 1100000.0000000000 + 0.00016564602820279801 -0.0034763653672225999 1100000.0000000000 + 0.00099864380779565091 -1.8938130248544999e-05 1100000.0000000000 + 0.0025192786416017099 0.0025192786415995901 1100000.0000000000 + 0.0059376708489612901 0.0059685243863049804 1100000.0000000000 + 0.012152410781560100 0.011372882422408101 1100000.0000000000 + 0.024020809124864501 0.020305231054376299 1100000.0000000000 + 0.045364076010405201 0.035091470193032499 1100000.0000000000 + 0.082890989601464196 0.058526628836710101 1100000.0000000000 + 0.14666807119111200 0.094452809858371706 1099999.9999999900 + 0.25106257997413101 0.14601304708891599 1099999.9999999600 + 0.41507368451381799 0.21588689442303699 1099999.9999999001 + 0.66017089218316405 0.30299729417378202 1099999.9999997600 + 1.0064638720068899 0.40036619922264199 1099999.9999994701 + 1.4634620387532100 0.49265488335915802 1099999.9999989199 + 2.0209664567690702 0.55668826301808905 1099999.9999980000 + 2.6365874350320699 0.56478111642812601 1099999.9999966901 + 3.2352672676275098 0.49495129353819001 1099999.9999951301 + 3.7176908730201701 0.34121750875503598 1099999.9999936600 + 3.9887624267591000 0.12198736134103801 1099999.9999927599 + 3.9887624267592798 -0.12198736134103499 1099999.9999927599 + 3.7176908730199800 -0.34121750875506801 1099999.9999936600 + 3.2352672676276999 -0.49495129353815598 1099999.9999951301 + 2.6365874350318701 -0.56478111642817397 1099999.9999966901 + 2.0209664567692101 -0.55668826301804297 1099999.9999980000 + 1.4634620387530699 -0.49265488335917901 1099999.9999989199 + 1.0064638720069301 -0.40036619922262301 1099999.9999994701 + 0.66017089218319502 -0.30299729417383398 1099999.9999997600 + 0.41507368451376803 -0.21588689442305101 1099999.9999999001 + 0.25106257997410097 -0.14601304708886600 1099999.9999999600 + 0.14666807119107000 -0.094452809858372302 1099999.9999999900 + 0.082890989601532294 -0.058526628836720801 1100000.0000000000 + 0.045364076010417899 -0.035091470193056702 1100000.0000000000 + 0.024020809124851699 -0.020305231054384702 1100000.0000000000 + 0.012152410781570099 -0.011372882422398201 1100000.0000000000 + 0.0059376708489529001 -0.0059685243862967500 1100000.0000000000 + 0.0025192786415955499 -0.0025192786416013200 1100000.0000000000 + 0.00099864380780100991 1.8938130250363000e-05 1100000.0000000000 + 0.00016564602820607100 0.0034763653672155799 1100000.0000000000 +-0.00034352879571104898 0.010339496842524800 1100000.0000000000 +-0.00059189191255881604 0.026542051163561800 1100000.0000000000 +-0.00076213557231023603 0.065752185175250596 1100000.0000000000 +-0.00064645438686405596 0.16120025875574301 1099999.9999999900 +-0.00061518944739217998 0.39521705565246501 1099999.9999999299 +-0.00085253785084632699 0.96816318589900696 1099999.9999995700 +-0.00098156873256903900 2.3717879212074000 1099999.9999974400 +-0.00079276381480408796 5.8100997393317302 1099999.9999846600 +-0.00064690188372785995 14.231994191294600 1099999.9999079299 +-0.00072002975273232803 34.861956841917802 1099999.9994475699 +-0.00077127971643393197 85.396059818346401 1099999.9966852299 +-0.00075808560706922099 209.17964760484699 1099999.9801108500 +-0.00053418662322703603 512.37484016863903 1099999.8806690900 +-0.00054365161281466103 1254.9389023943600 1099999.2841490200 +-0.00059668359547719498 3073.0862382754299 1099995.7073284299 +-0.00041734170424218697 7521.8378217850404 1099974.2824065399 +-0.00021060846215080101 18389.529697758899 1099846.2734389300 +-0.00012931358259402301 44828.517937960300 1099086.1676772600 +-0.00020314951022965100 108456.75125848800 1094640.1843101000 +-0.00043949375279255399 256943.72049701901 1069569.9717630199 +-0.0010062073571816500 570452.76836527605 940523.06673701096 +-0.0019191493600586500 -570452.76938541199 940523.06611827097 +-0.0010865246176134100 -256943.72149191899 1069569.9715240200 +-0.00040984359946793001 -108456.75186881200 1094640.1842496300 +-0.00032196138458469498 -44828.518177038502 1099086.1676675100 +-0.00049939110783260197 -18389.529436684901 1099846.2734432900 +-0.00075039206023853400 -7521.8375911673602 1099974.2824081201 +-0.0011943717175746400 -3073.0862960807699 1099995.7073282700 +-0.0014155300078288000 -1254.9386873667600 1099999.2841492600 +-0.0014061130060715099 -512.37468913297698 1099999.8806691701 +-0.0015461348156677100 -209.17953670142501 1099999.9801108700 +-0.0017813627514675699 -85.395946452101597 1099999.9966852400 +-0.0018560189550097699 -34.861771538766398 1099999.9994475699 +-0.0018852354372245000 -14.231985125542201 1099999.9999079299 +-0.0018318246265068400 -5.8102157233496197 1099999.9999846600 +-0.0018827189474776101 -2.3719369963697798 1099999.9999974400 +-0.0020016297731001000 -0.96811345037456698 1099999.9999995700 +-0.0017989281248129000 -0.39509225201262899 1099999.9999999299 +-0.0016660393770534399 -0.16128658128671999 1099999.9999999900 +-0.0018835486778508101 -0.065785790057338603 1100000.0000000000 +-0.0017799942356203000 -0.026778415199069500 1100000.0000000000 +-0.0015825571298415399 -0.010603504915705100 1100000.0000000000 +-0.0013241104520305500 -0.0038689347992240599 1100000.0000000000 +-0.00084713591476645795 -0.00084713591476938898 1100000.0000000000 +-1.8938130254894399e-05 0.00099864380779711502 1100000.0000000000 + 0.0015850036748745299 0.0026664601557881899 1100000.0000000000 + 0.0046920449546892602 0.0053370016885869002 1100000.0000000000 + 0.010365889159865801 0.0094980912333179103 1100000.0000000000 + 0.020510540871545899 0.016106640545777900 1100000.0000000000 + 0.037913045484034603 0.026300665864028398 1100000.0000000000 + 0.066852003134223903 0.041425255796030902 1100000.0000000000 + 0.11301503121770801 0.062924827819035398 1099999.9999999900 + 0.18382235610146699 0.090972564499734607 1099999.9999999800 + 0.28694707471223901 0.12500532984550200 1099999.9999999600 + 0.42934171025976198 0.16184203782302700 1099999.9999999001 + 0.61292828732135995 0.19529343282267900 1099999.9999998100 + 0.83209670852017503 0.21680918907232999 1099999.9999996601 + 1.0695596637382001 0.21668652312022799 1099999.9999994601 + 1.2966720893090899 0.18751381580717899 1099999.9999992200 + 1.4775242447523800 0.12822729140741401 1099999.9999990000 + 1.5782775178578099 0.045603450209254499 1099999.9999988701 + 1.5782775178577000 -0.045603450209271597 1099999.9999988701 + 1.4775242447524799 -0.12822729140741901 1099999.9999990000 + 1.2966720893090000 -0.18751381580719700 1099999.9999992200 + 1.0695596637382401 -0.21668652312022699 1099999.9999994601 + 0.83209670852014195 -0.21680918907233501 1099999.9999996601 + 0.61292828732134397 -0.19529343282268999 1099999.9999998100 + 0.42934171025980600 -0.16184203782303400 1099999.9999999001 + 0.28694707471219499 -0.12500532984552101 1099999.9999999600 + 0.18382235610148101 -0.090972564499706393 1099999.9999999800 + 0.11301503121768200 -0.062924827819041795 1099999.9999999900 + 0.066852003134271906 -0.041425255796045800 1100000.0000000000 + 0.037913045484041799 -0.026300665864037800 1100000.0000000000 + 0.020510540871528801 -0.016106640545778601 1100000.0000000000 + 0.010365889159878400 -0.0094980912333138597 1100000.0000000000 + 0.0046920449546800202 -0.0053370016885803196 1100000.0000000000 + 0.0015850036748687900 -0.0026664601557912200 1100000.0000000000 +-1.8938130243575599e-05 -0.00099864380779636996 1100000.0000000000 +-0.00084713591476774598 0.00084713591476628903 1100000.0000000000 +-0.0013241104520310700 0.0038689347992246202 1100000.0000000000 +-0.0015825571298427100 0.010603504915704101 1100000.0000000000 +-0.0017799942356181201 0.026778415199067301 1100000.0000000000 +-0.0018835486778534900 0.065785790057352897 1100000.0000000000 +-0.0016660393770497801 0.16128658128671700 1099999.9999999900 +-0.0017989281248245799 0.39509225201261200 1099999.9999999299 +-0.0020016297730949600 0.96811345037461405 1099999.9999995700 +-0.0018827189474130901 2.3719369963697101 1099999.9999974400 +-0.0018318246265375899 5.8102157233494802 1099999.9999846600 +-0.0018852354373765699 14.231985125542399 1099999.9999079299 +-0.0018560189548855999 34.861771538766199 1099999.9994475699 +-0.0017813627511247801 85.395946452101001 1099999.9966852400 +-0.0015461348162766600 209.17953670142799 1099999.9801108700 +-0.0014061130068494399 512.37468913297505 1099999.8806691701 +-0.0014155300052196001 1254.9386873667600 1099999.2841492600 +-0.0011943717159172799 3073.0862960807699 1099995.7073282700 +-0.00075039205504608803 7521.8375911673402 1099974.2824081201 +-0.00049939111189028303 18389.529436684901 1099846.2734432900 +-0.00032196139489072700 44828.518177038502 1099086.1676675100 +-0.00040984360467447500 108456.75186881200 1094640.1842496300 +-0.0010865247153951901 256943.72149191899 1069569.9715240200 +-0.0019191494809821701 570452.76938541199 940523.06611827097 +-0.0037056891086676299 -570452.77227435203 940523.06436605100 +-0.0016752205840243101 -256943.72379700799 1069569.9709702600 +-0.00065796166858857197 -108456.75305770400 1094640.1841318400 +-0.00053651289631121205 -44828.518315706599 1099086.1676618501 +-0.0010644430586906101 -18389.529272772801 1099846.2734460300 +-0.0019056302589225099 -7521.8371369164397 1099974.2824112200 +-0.0026989839957720701 -3073.0855312342201 1099995.7073304099 +-0.0033389526428061500 -1254.9383765893299 1099999.2841496200 +-0.0036835260029149100 -512.37458556071704 1099999.8806692101 +-0.0038957347303000202 -209.17937014959600 1099999.9801109000 +-0.0041578332180038204 -85.395713170351399 1099999.9966852600 +-0.0042847780282973197 -34.861684628649897 1099999.9994475699 +-0.0043894777833563903 -14.231620519111701 1099999.9999079399 +-0.0045781260174641803 -5.8100099273831498 1099999.9999846600 +-0.0045820120089243802 -2.3721383919956098 1099999.9999974400 +-0.0046393876832747901 -0.96838973032030495 1099999.9999995700 +-0.0045230351259872804 -0.39516562500425501 1099999.9999999299 +-0.0043203956035995699 -0.16114492169959499 1099999.9999999900 +-0.0043999812188526997 -0.065767720543349895 1100000.0000000000 +-0.0045303225100383898 -0.026818894524456301 1100000.0000000000 +-0.0043607048123128801 -0.010874109119891100 1100000.0000000000 +-0.0041668236563813400 -0.0041668236563846602 1100000.0000000000 +-0.0038689347992245100 -0.0013241104520300500 1100000.0000000000 +-0.0034763653672178901 0.00016564602820523500 1100000.0000000000 +-0.0026772614758963798 0.0012517589900787800 1100000.0000000000 +-0.0012084794579235900 0.0024092510552690800 1100000.0000000000 + 0.0014699462308778201 0.0043566172592287402 1100000.0000000000 + 0.0062215207821621800 0.0072931663937438997 1100000.0000000000 + 0.014109351304025399 0.011719621951439401 1100000.0000000000 + 0.027136342036744001 0.018038777081198599 1100000.0000000000 + 0.047269249152572197 0.026812759711347400 1100000.0000000000 + 0.077571700845368699 0.038132698381929002 1100000.0000000000 + 0.12071872297476401 0.051363259063724097 1099999.9999999900 + 0.17888657999958699 0.065236854586378207 1099999.9999999800 + 0.25254594534160701 0.077409030690773498 1099999.9999999700 + 0.33854678416238498 0.084403350862027396 1099999.9999999399 + 0.43033768620810098 0.083330106046979893 1099999.9999999099 + 0.51665750967963897 0.071186493758656100 1099999.9999998801 + 0.58478410167250805 0.048401925401399301 1099999.9999998400 + 0.62240519900156399 0.017073400962302799 1099999.9999998200 + 0.62240519900156199 -0.017073400962307399 1099999.9999998200 + 0.58478410167251504 -0.048401925401400397 1099999.9999998400 + 0.51665750967962099 -0.071186493758664801 1099999.9999998801 + 0.43033768620813201 -0.083330106046973704 1099999.9999999099 + 0.33854678416235001 -0.084403350862041204 1099999.9999999399 + 0.25254594534165498 -0.077409030690767100 1099999.9999999700 + 0.17888657999955401 -0.065236854586391599 1099999.9999999800 + 0.12071872297478900 -0.051363259063713800 1099999.9999999900 + 0.077571700845355807 -0.038132698381932000 1100000.0000000000 + 0.047269249152596303 -0.026812759711357700 1100000.0000000000 + 0.027136342036752300 -0.018038777081201898 1100000.0000000000 + 0.014109351304008699 -0.011719621951434200 1100000.0000000000 + 0.0062215207821758600 -0.0072931663937458599 1100000.0000000000 + 0.0014699462308721701 -0.0043566172592240998 1100000.0000000000 +-0.0012084794579291401 -0.0024092510552713199 1100000.0000000000 +-0.0026772614758877600 -0.0012517589900795001 1100000.0000000000 +-0.0034763653672204198 -0.00016564602820374501 1100000.0000000000 +-0.0038689347992251701 0.0013241104520306201 1100000.0000000000 +-0.0041668236563849603 0.0041668236563823001 1100000.0000000000 +-0.0043607048123094801 0.010874109119889700 1100000.0000000000 +-0.0045303225100410396 0.026818894524461099 1100000.0000000000 +-0.0043999812188522504 0.065767720543349797 1100000.0000000000 +-0.0043203956036033699 0.16114492169960801 1099999.9999999900 +-0.0045230351259822801 0.39516562500424901 1099999.9999999299 +-0.0046393876832718402 0.96838973032021503 1099999.9999995700 +-0.0045820120089116899 2.3721383919956698 1099999.9999974400 +-0.0045781260174653097 5.8100099273833399 1099999.9999846600 +-0.0043894777833520396 14.231620519111299 1099999.9999079399 +-0.0042847780281257096 34.861684628649400 1099999.9994475699 +-0.0041578332186687104 85.395713170352707 1099999.9966852600 +-0.0038957347303204101 209.17937014959600 1099999.9801109000 +-0.0036835259993772498 512.37458556071897 1099999.8806692101 +-0.0033389526463787301 1254.9383765893299 1099999.2841496200 +-0.0026989839954409400 3073.0855312342101 1099995.7073304099 +-0.0019056302571072599 7521.8371369164597 1099974.2824112200 +-0.0010644430781993500 18389.529272772801 1099846.2734460300 +-0.00053651289044398705 44828.518315706599 1099086.1676618501 +-0.00065796171353075898 108456.75305770400 1094640.1841318400 +-0.0016752205922162899 256943.72379700901 1069569.9709702600 +-0.0037056890889912600 570452.77227435203 940523.06436604995 +-0.0058435384837373702 -570452.77970908198 940523.05985668499 +-0.0019614156272455101 -256943.72918822200 1069569.9696751300 +-0.00020539156478744600 -108456.75535104101 1094640.1839046101 +-0.00083290915272461405 -44828.518541328798 1099086.1676526500 +-0.0026458783479965200 -18389.528141802599 1099846.2734649400 +-0.0046035470970855301 -7521.8356247869897 1099974.2824215600 +-0.0065831304042505102 -3073.0844304094599 1099995.7073334800 +-0.0081832741969864800 -1254.9373106300100 1099999.2841508300 +-0.0090921225535928497 -512.37375689671001 1099999.8806696001 +-0.0097649957044661298 -209.17890096074700 1099999.9801109901 +-0.010292587969244199 -85.395472282539501 1099999.9966852800 +-0.010595032872863100 -34.861447282906298 1099999.9994475800 +-0.010731227426147599 -14.231646320630601 1099999.9999079399 +-0.010728659323347600 -5.8097483851575804 1099999.9999846600 +-0.010978350725476300 -2.3718565874999702 1099999.9999974400 +-0.011132599556116000 -0.96848363463338505 1099999.9999995700 +-0.011118347036421901 -0.39535810280921702 1099999.9999999299 +-0.010851723012461300 -0.16125812386462299 1099999.9999999900 +-0.010774325034490100 -0.065688112014370498 1100000.0000000000 +-0.010953448518072100 -0.026808945376829801 1100000.0000000000 +-0.010933518795621700 -0.010933518795628100 1100000.0000000000 +-0.010874109119894700 -0.0043607048123079301 1100000.0000000000 +-0.010603504915703801 -0.0015825571298401600 1100000.0000000000 +-0.010339496842523501 -0.00034352879571088201 1100000.0000000000 +-0.0099978652817995593 0.00053975328232480895 1100000.0000000000 +-0.0093050255267084596 0.0012085983776924799 1100000.0000000000 +-0.0081084917204784796 0.0019545729367178599 1100000.0000000000 +-0.0059482905711761699 0.0032403444591434299 1100000.0000000000 +-0.0024148166848933501 0.0051490939616610004 1100000.0000000000 + 0.0033190942239479100 0.0077517709797612503 1100000.0000000000 + 0.012157694374551000 0.011344887231690101 1100000.0000000000 + 0.024949981001767301 0.015832473096992199 1100000.0000000000 + 0.042967921008457699 0.021082488132902599 1100000.0000000000 + 0.066632419248430996 0.026266201926457500 1100000.0000000000 + 0.096075429243870497 0.030749151061608901 1100000.0000000000 + 0.12989087131197699 0.032995482055250297 1099999.9999999900 + 0.16534626803441499 0.032112117052725299 1099999.9999999900 + 0.19834924107496901 0.027204829058064501 1099999.9999999800 + 0.22404698045602700 0.018281883855660500 1099999.9999999800 + 0.23820471679600000 0.0064935284401607804 1099999.9999999700 + 0.23820471679603300 -0.0064935284401578600 1099999.9999999700 + 0.22404698045599700 -0.018281883855661301 1099999.9999999800 + 0.19834924107500501 -0.027204829058058499 1099999.9999999800 + 0.16534626803438501 -0.032112117052731398 1099999.9999999900 + 0.12989087131200999 -0.032995482055245100 1099999.9999999900 + 0.096075429243850097 -0.030749151061614799 1100000.0000000000 + 0.066632419248447206 -0.026266201926455401 1100000.0000000000 + 0.042967921008450698 -0.021082488132904701 1100000.0000000000 + 0.024949981001774001 -0.015832473096995800 1100000.0000000000 + 0.012157694374559901 -0.011344887231692500 1100000.0000000000 + 0.0033190942239375099 -0.0077517709797538803 1100000.0000000000 +-0.0024148166848845798 -0.0051490939616655801 1100000.0000000000 +-0.0059482905711736398 -0.0032403444591410100 1100000.0000000000 +-0.0081084917204865999 -0.0019545729367172601 1100000.0000000000 +-0.0093050255267024696 -0.0012085983776921100 1100000.0000000000 +-0.0099978652818014501 -0.00053975328232230705 1100000.0000000000 +-0.010339496842531199 0.00034352879570823000 1100000.0000000000 +-0.010603504915702200 0.0015825571298400301 1100000.0000000000 +-0.010874109119892899 0.0043607048123117604 1100000.0000000000 +-0.010933518795620800 0.010933518795622200 1100000.0000000000 +-0.010953448518075700 0.026808945376823601 1100000.0000000000 +-0.010774325034493800 0.065688112014393105 1100000.0000000000 +-0.010851723012451299 0.16125812386462199 1099999.9999999900 +-0.011118347036417300 0.39535810280918798 1099999.9999999299 +-0.011132599556135100 0.96848363463340703 1099999.9999995700 +-0.010978350725494501 2.3718565874999098 1099999.9999974400 +-0.010728659323289201 5.8097483851574401 1099999.9999846600 +-0.010731227426006400 14.231646320630700 1099999.9999079399 +-0.010595032873205601 34.861447282906802 1099999.9994475800 +-0.010292587969027499 85.395472282538805 1099999.9966852800 +-0.0097649957033015995 209.17890096074601 1099999.9801109901 +-0.0090921225558486703 512.37375689671001 1099999.8806696001 +-0.0081832741963061405 1254.9373106300100 1099999.2841508300 +-0.0065831304092775897 3073.0844304094599 1099995.7073334800 +-0.0046035471010407300 7521.8356247869797 1099974.2824215600 +-0.0026458783356574202 18389.528141802599 1099846.2734649400 +-0.00083290916894239995 44828.518541328798 1099086.1676526500 +-0.00020539160109526799 108456.75535104101 1094640.1839046101 +-0.0019614156827249098 256943.72918822200 1069569.9696751300 +-0.0058435384500394698 570452.77970908198 940523.05985668499 +-0.0054472476970081098 -570452.79791293200 940523.04881555599 + 0.0011936104192644601 -256943.74104813300 1069569.9668260100 + 0.0025377642985578300 -108456.75913676800 1094640.1835295199 +-0.00075397337992525999 -44828.517147009399 1099086.1677095201 +-0.0063108669404200396 -18389.524762349600 1099846.2735214501 +-0.011964870258398401 -7521.8319168626203 1099974.2824469199 +-0.016589145720941698 -3073.0809462038301 1099995.7073432100 +-0.020239190957967002 -1254.9348534814701 1099999.2841536400 +-0.022773806050396000 -512.37217869785900 1099999.8806703300 +-0.024196353593750702 -209.17778786434201 1099999.9801112099 +-0.025204827668589402 -85.394616637643693 1099999.9966853401 +-0.025984257543240800 -34.860997948900398 1099999.9994476000 +-0.026395833840013299 -14.231294894316600 1099999.9999079399 +-0.026611810172248399 -5.8096953470989696 1099999.9999846600 +-0.026591832727947601 -2.3717579516770102 1099999.9999974400 +-0.026830941916427299 -0.96834367044792102 1099999.9999995700 +-0.027090664487524101 -0.39544751051414101 1099999.9999999299 +-0.026903269578269700 -0.16136296399329700 1099999.9999999900 +-0.026688140473108302 -0.065708049141532596 1100000.0000000000 +-0.026708183354330100 -0.026708183354325000 1100000.0000000000 +-0.026808945376825901 -0.010953448518070900 1100000.0000000000 +-0.026818894524457900 -0.0045303225100452801 1100000.0000000000 +-0.026778415199066499 -0.0017799942356184499 1100000.0000000000 +-0.026542051163557800 -0.00059189191255843397 1100000.0000000000 +-0.026265382059912100 -9.9622181590618796e-06 1100000.0000000000 +-0.025977218944231301 0.00061316119318874005 1100000.0000000000 +-0.025388258790825902 0.0010480563152427600 1100000.0000000000 +-0.024427604926185301 0.0014839438914445999 1100000.0000000000 +-0.022892096581793499 0.0023118283843180502 1100000.0000000000 +-0.020488671518541699 0.0033323943731372700 1100000.0000000000 +-0.016704142781713598 0.0047609301726436303 1100000.0000000000 +-0.011285942881953500 0.0065054127572357996 1100000.0000000000 +-0.0038650724249633000 0.0085422200782493893 1100000.0000000000 + 0.0058039722390048299 0.010534870794262000 1100000.0000000000 + 0.017516071261360500 0.012123883548422800 1100000.0000000000 + 0.030824764997947202 0.012941388987012300 1100000.0000000000 + 0.044538526867982597 0.012366141660016001 1100000.0000000000 + 0.057182386353305303 0.010451645324896600 1100000.0000000000 + 0.066931311391237605 0.0069189436121519102 1100000.0000000000 + 0.072273693126062299 0.0024896883240458799 1100000.0000000000 + 0.072273693126047103 -0.0024896883240452302 1100000.0000000000 + 0.066931311391250095 -0.0069189436121502197 1100000.0000000000 + 0.057182386353297497 -0.010451645324894900 1100000.0000000000 + 0.044538526867989703 -0.012366141660014301 1100000.0000000000 + 0.030824764997943298 -0.012941388987014701 1100000.0000000000 + 0.017516071261364799 -0.012123883548422700 1100000.0000000000 + 0.0058039722390041699 -0.010534870794264200 1100000.0000000000 +-0.0038650724249624999 -0.0085422200782486503 1100000.0000000000 +-0.011285942881953000 -0.0065054127572402301 1100000.0000000000 +-0.016704142781720100 -0.0047609301726369603 1100000.0000000000 +-0.020488671518542698 -0.0033323943731398001 1100000.0000000000 +-0.022892096581785700 -0.0023118283843187302 1100000.0000000000 +-0.024427604926199400 -0.0014839438914409100 1100000.0000000000 +-0.025388258790818699 -0.0010480563152424800 1100000.0000000000 +-0.025977218944235499 -0.00061316119318800203 1100000.0000000000 +-0.026265382059918099 9.9622181594400002e-06 1100000.0000000000 +-0.026542051163554799 0.00059189191255814796 1100000.0000000000 +-0.026778415199074399 0.0017799942356190299 1100000.0000000000 +-0.026818894524451999 0.0045303225100364599 1100000.0000000000 +-0.026808945376830200 0.010953448518074900 1100000.0000000000 +-0.026708183354328899 0.026708183354337101 1100000.0000000000 +-0.026688140473105200 0.065708049141515706 1100000.0000000000 +-0.026903269578266002 0.16136296399330799 1099999.9999999900 +-0.027090664487520601 0.39544751051416699 1099999.9999999299 +-0.026830941916428600 0.96834367044785097 1099999.9999995700 +-0.026591832727968098 2.3717579516769902 1099999.9999974400 +-0.026611810172211502 5.8096953470989998 1099999.9999846600 +-0.026395833840029002 14.231294894316600 1099999.9999079399 +-0.025984257543033500 34.860997948900000 1099999.9994476000 +-0.025204827668451401 85.394616637643594 1099999.9966853401 +-0.024196353593917301 209.17778786434300 1099999.9801112099 +-0.022773806051761200 512.37217869786195 1099999.8806703300 +-0.020239190963292200 1254.9348534814601 1099999.2841536400 +-0.016589145715529701 3073.0809462038201 1099995.7073432100 +-0.011964870260849299 7521.8319168626203 1099974.2824469199 +-0.0063108669378028103 18389.524762349600 1099846.2735214501 +-0.00075397338847943299 44828.517147009399 1099086.1677095201 + 0.0025377642579426799 108456.75913676900 1094640.1835295199 + 0.0011936104551090599 256943.74104813300 1069569.9668260100 +-0.0054472477316226996 570452.79791293095 940523.04881555599 + 0.0096878151832258206 -570452.83872587199 940523.02406139695 + 0.017410155015484000 -256943.76454259900 1069569.9611819100 + 0.013487418515516700 -108456.76297030800 1094640.1831497001 + 0.00024852892966456303 -44828.510168787900 1099086.1679941399 +-0.015900155264597801 -18389.514197501299 1099846.2736980901 +-0.030661433594198800 -7521.8214912767999 1099974.2825182099 +-0.042344263849730099 -3073.0725729324299 1099995.7073666099 +-0.050787228485173801 -1254.9288172655199 1099999.2841605200 +-0.056549327627883200 -512.36813818279302 1099999.8806722199 +-0.060310076906485099 -209.17533963084401 1099999.9801116700 +-0.062447058434706500 -85.393216839537502 1099999.9966854500 +-0.063766815289622303 -34.859979268264702 1099999.9994476300 +-0.064695800335164200 -14.230760262295700 1099999.9999079499 +-0.065199918008259500 -5.8092363805356904 1099999.9999846600 +-0.065475334917070804 -2.3715436169487498 1099999.9999974400 +-0.065575128205602198 -0.96822341225588104 1099999.9999995700 +-0.065892361848098699 -0.39536901309879202 1099999.9999999299 +-0.066066171782438607 -0.16153459331915901 1099999.9999999900 +-0.065831104608911103 -0.065831104608900196 1100000.0000000000 +-0.065708049141528696 -0.026688140473109800 1100000.0000000000 +-0.065688112014380406 -0.010774325034495800 1100000.0000000000 +-0.065767720543338001 -0.0043999812188516502 1100000.0000000000 +-0.065785790057345805 -0.0018835486778550499 1100000.0000000000 +-0.065752185175240105 -0.00076213557231081001 1100000.0000000000 +-0.065602780084330500 -0.00029291978623113200 1100000.0000000000 +-0.065349977889574001 1.1781003241970001e-05 1100000.0000000000 +-0.065145860145574594 0.00047405444260352600 1100000.0000000000 +-0.064633424808882206 0.00064097523370200199 1100000.0000000000 +-0.063856924927523304 0.0010738427607103001 1100000.0000000000 +-0.062850452276284899 0.0014667273614990600 1100000.0000000000 +-0.061244755363464999 0.0020907583269382801 1100000.0000000000 +-0.059013503351582099 0.0027317826652855401 1100000.0000000000 +-0.055945920727924897 0.0035356871410374201 1100000.0000000000 +-0.052062162901163403 0.0042294954742889898 1100000.0000000000 +-0.047377872380904303 0.0048013379518087197 1100000.0000000000 +-0.042178057704531903 0.0050052778615516302 1100000.0000000000 +-0.036868958663653702 0.0047737292576909797 1100000.0000000000 +-0.032036379272180802 0.0039273684183511797 1100000.0000000000 +-0.028337730556009199 0.0026508235201627098 1100000.0000000000 +-0.026320763376233899 0.00088974214016353096 1100000.0000000000 +-0.026320763376242801 -0.00088974214016326100 1100000.0000000000 +-0.028337730555998700 -0.0026508235201631800 1100000.0000000000 +-0.032036379272193702 -0.0039273684183513003 1100000.0000000000 +-0.036868958663631698 -0.0047737292576895103 1100000.0000000000 +-0.042178057704539702 -0.0050052778615537197 1100000.0000000000 +-0.047377872380891597 -0.0048013379518084603 1100000.0000000000 +-0.052062162901171001 -0.0042294954742870903 1100000.0000000000 +-0.055945920727917701 -0.0035356871410373498 1100000.0000000000 +-0.059013503351590599 -0.0027317826652812701 1100000.0000000000 +-0.061244755363469398 -0.0020907583269413098 1100000.0000000000 +-0.062850452276281402 -0.0014667273615036199 1100000.0000000000 +-0.063856924927536599 -0.0010738427607022700 1100000.0000000000 +-0.064633424808884704 -0.00064097523370098403 1100000.0000000000 +-0.065145860145575704 -0.00047405444260466002 1100000.0000000000 +-0.065349977889584104 -1.1781003239068100e-05 1100000.0000000000 +-0.065602780084327503 0.00029291978622812697 1100000.0000000000 +-0.065752185175245503 0.00076213557231228301 1100000.0000000000 +-0.065785790057348595 0.0018835486778513101 1100000.0000000000 +-0.065767720543353198 0.0043999812188540901 1100000.0000000000 +-0.065688112014384001 0.010774325034488901 1100000.0000000000 +-0.065708049141534303 0.026688140473102001 1100000.0000000000 +-0.065831104608910604 0.065831104608922095 1100000.0000000000 +-0.066066171782433500 0.16153459331914499 1099999.9999999900 +-0.065892361848101100 0.39536901309876499 1099999.9999999299 +-0.065575128205590597 0.96822341225594499 1099999.9999995700 +-0.065475334917088998 2.3715436169487099 1099999.9999974400 +-0.065199918008300703 5.8092363805355003 1099999.9999846600 +-0.064695800334965206 14.230760262295400 1099999.9999079499 +-0.063766815289458795 34.859979268265199 1099999.9994476300 +-0.062447058434964703 85.393216839537402 1099999.9966854500 +-0.060310076906984998 209.17533963084401 1099999.9801116700 +-0.056549327630120001 512.36813818279802 1099999.8806722199 +-0.050787228485717900 1254.9288172655199 1099999.2841605200 +-0.042344263846493597 3073.0725729324399 1099995.7073666099 +-0.030661433591874301 7521.8214912767899 1099974.2825182099 +-0.015900155278238001 18389.514197501299 1099846.2736980901 + 0.00024852893644209398 44828.510168788001 1099086.1679941399 + 0.013487418476097400 108456.76297030800 1094640.1831497001 + 0.017410155086258299 256943.76454259900 1069569.9611819100 + 0.0096878152755151808 570452.83872587106 940523.02406139695 + 0.080089491885022707 -570452.92179180204 940522.97367963800 + 0.075128325009913705 -256943.80344049199 1069569.9518374300 + 0.047231092234302899 -108456.75779230900 1094640.1836627300 + 0.0034101014006317500 -44828.483253325401 1099086.1690919399 +-0.041653909399299298 -18389.482813988900 1099846.2742228301 +-0.079587852918455201 -7521.7945563205003 1099974.2827023901 +-0.10800494169511700 -3073.0522226251901 1099995.7074234500 +-0.12781715853267500 -1254.9145305517600 1099999.2841768099 +-0.14096912864768099 -512.35879434737205 1099999.8806765601 +-0.14919709300584100 -209.16956362625200 1099999.9801127601 +-0.15433422617294901 -85.389831648360996 1099999.9966857100 +-0.15729720815159601 -34.858179207254800 1099999.9994476701 +-0.15897139856973899 -14.229674784805599 1099999.9999079499 +-0.16005830039277999 -5.8086982447572701 1099999.9999846499 +-0.16056742304442601 -2.3710783805792799 1099999.9999974300 +-0.16088534857982201 -0.96792118496632895 1099999.9999995600 +-0.16111401477581100 -0.39514859292490301 1099999.9999999199 +-0.16144753886513499 -0.16144753886511101 1099999.9999999800 +-0.16153459331914000 -0.066066171782445698 1099999.9999999900 +-0.16136296399330999 -0.026903269578268201 1099999.9999999900 +-0.16125812386460800 -0.010851723012465101 1099999.9999999900 +-0.16114492169960601 -0.0043203956036039302 1099999.9999999900 +-0.16128658128670401 -0.0016660393770528399 1099999.9999999900 +-0.16120025875575000 -0.00064645438685540998 1099999.9999999900 +-0.16121149610475899 -0.00021461373858534699 1099999.9999999900 +-0.16109295534734699 -0.00017505360082379999 1099999.9999999900 +-0.16090161744388001 6.0929039181031797e-05 1099999.9999999900 +-0.16087155391273800 0.00019648784785628799 1099999.9999999900 +-0.16042158959584499 0.00027172697557442498 1099999.9999999900 +-0.15995073255467199 0.00058310515690773300 1099999.9999999900 +-0.15928409317126599 0.00074516957427755504 1099999.9999999900 +-0.15825919805397501 0.0012224759554272701 1099999.9999999900 +-0.15706608118433901 0.0014038995194413601 1099999.9999999900 +-0.15537756383632501 0.0019172360769110701 1099999.9999999900 +-0.15357861495993799 0.0019052411850872899 1099999.9999999900 +-0.15143085083994301 0.0021817783571706001 1099999.9999999900 +-0.14941836842307701 0.0018075661033864800 1099999.9999999900 +-0.14750328247922900 0.0016880344274221399 1099999.9999999900 +-0.14611693370208800 0.00091091013594889495 1099999.9999999900 +-0.14533433806985899 0.00048164837806883502 1099999.9999999900 +-0.14533433806983501 -0.00048164837807030200 1099999.9999999900 +-0.14611693370210599 -0.00091091013594740895 1099999.9999999900 +-0.14750328247920100 -0.0016880344274288600 1099999.9999999900 +-0.14941836842308201 -0.0018075661033913799 1099999.9999999900 +-0.15143085083991201 -0.0021817783571636399 1099999.9999999900 +-0.15357861495995800 -0.0019052411850845900 1099999.9999999900 +-0.15537756383630200 -0.0019172360769063399 1099999.9999999900 +-0.15706608118436399 -0.0014038995194370801 1099999.9999999900 +-0.15825919805395400 -0.0012224759554258201 1099999.9999999900 +-0.15928409317127201 -0.00074516957428703704 1099999.9999999900 +-0.15995073255466599 -0.00058310515689992100 1099999.9999999900 +-0.16042158959587499 -0.00027172697557148402 1099999.9999999900 +-0.16087155391271499 -0.00019648784786062100 1099999.9999999900 +-0.16090161744390899 -6.0929039173100201e-05 1099999.9999999900 +-0.16109295534732801 0.00017505360082126101 1099999.9999999900 +-0.16121149610477001 0.00021461373858835299 1099999.9999999900 +-0.16120025875574900 0.00064645438685771803 1099999.9999999900 +-0.16128658128671500 0.0016660393770545001 1099999.9999999900 +-0.16114492169961600 0.0043203956036006802 1099999.9999999900 +-0.16125812386463600 0.010851723012462299 1099999.9999999900 +-0.16136296399330999 0.026903269578268600 1099999.9999999900 +-0.16153459331917200 0.066066171782414695 1099999.9999999900 +-0.16144753886513999 0.16144753886513000 1099999.9999999800 +-0.16111401477580001 0.39514859292492999 1099999.9999999199 +-0.16088534857987799 0.96792118496627899 1099999.9999995600 +-0.16056742304441901 2.3710783805792901 1099999.9999974300 +-0.16005830039271901 5.8086982447570499 1099999.9999846499 +-0.15897139856968701 14.229674784805500 1099999.9999079499 +-0.15729720815159601 34.858179207254601 1099999.9994476701 +-0.15433422617301201 85.389831648361096 1099999.9966857100 +-0.14919709300696099 209.16956362625601 1099999.9801127601 +-0.14096912864777700 512.35879434737296 1099999.8806765601 +-0.12781715852790601 1254.9145305517500 1099999.2841768099 +-0.10800494169519601 3073.0522226251901 1099995.7074234500 +-0.079587852926451194 7521.7945563205103 1099974.2827023901 +-0.041653909409351701 18389.482813988900 1099846.2742228301 + 0.0034101013834368899 44828.483253325401 1099086.1690919399 + 0.047231092253797499 108456.75779230900 1094640.1836627300 + 0.075128324992169704 256943.80344049199 1069569.9518374300 + 0.080089492008353802 570452.92179180204 940522.97367963800 + 0.32303356017484303 -570453.06853465096 940522.88467601698 + 0.25153096361042199 -256943.84442139801 1069569.9419925199 + 0.13929273131307601 -108456.70614902901 1094640.1887795301 + 0.0078644853393074598 -44828.395411714999 1099086.1726747400 +-0.11269021101654800 -18389.396518248999 1099846.2756656900 +-0.20784697523542800 -7521.7250528154900 1099974.2831776501 +-0.27591488275073300 -3073.0024363799598 1099995.7075625099 +-0.32176460079609398 -1254.8816857001500 1099999.2842142400 +-0.35122206579290599 -512.33818813143296 1099999.8806861099 +-0.36953997103182301 -209.15702066049900 1099999.9801150900 +-0.38050554411878301 -85.382535781717706 1099999.9966862199 +-0.38690228641359897 -34.854017837102198 1099999.9994477499 +-0.39065720583990499 -14.227441031724201 1099999.9999079199 +-0.39272232169357302 -5.8074767835035797 1099999.9999846001 +-0.39390834928919199 -2.3705083924921699 1099999.9999973800 +-0.39449704075026198 -0.96752632860712695 1099999.9999995001 +-0.39483389108029798 -0.39483389108025602 1099999.9999998601 +-0.39514859292484800 -0.16111401477583401 1099999.9999999199 +-0.39536901309882400 -0.065892361848084294 1099999.9999999299 +-0.39544751051411903 -0.027090664487531901 1099999.9999999299 +-0.39535810280923800 -0.011118347036426800 1099999.9999999299 +-0.39516562500426899 -0.0045230351259834501 1099999.9999999299 +-0.39509225201263098 -0.0017989281248161899 1099999.9999999299 +-0.39521705565248400 -0.00061518944740009303 1099999.9999999299 +-0.39504147153002100 -8.8080901291360199e-05 1099999.9999999299 +-0.39513884586935399 3.3657941981650600e-05 1099999.9999999299 +-0.39491184827212100 2.0583102475397901e-05 1099999.9999999299 +-0.39482130352981498 0.00010509038029117000 1099999.9999999299 +-0.39486668115466600 4.6341334372700097e-05 1099999.9999999299 +-0.39449027417556598 0.00010538948477132000 1099999.9999999299 +-0.39439239124677400 0.00013717310560605001 1099999.9999999299 +-0.39388235896135299 0.00030218038733811897 1099999.9999999299 +-0.39345527184519202 0.00045135259742185799 1099999.9999999299 +-0.39278424689243202 0.00062020457793278698 1099999.9999999299 +-0.39203029713814103 0.00077806611570513200 1099999.9999999299 +-0.39123891469717398 0.00077671167656926700 1099999.9999999299 +-0.39037681946928199 0.00081177605277283997 1099999.9999999299 +-0.38968862408572802 0.00058408600681477004 1099999.9999999299 +-0.38910185911677098 0.00047329402129575398 1099999.9999999299 +-0.38882275848205700 9.0032210698855899e-05 1099999.9999999299 +-0.38882275848208198 -9.0032210700404601e-05 1099999.9999999299 +-0.38910185911674500 -0.00047329402130354901 1099999.9999999299 +-0.38968862408573302 -0.00058408600682210402 1099999.9999999299 +-0.39037681946927999 -0.00081177605277306603 1099999.9999999299 +-0.39123891469720501 -0.00077671167655810297 1099999.9999999299 +-0.39203029713812199 -0.00077806611569889697 1099999.9999999299 +-0.39278424689246699 -0.00062020457792820796 1099999.9999999299 +-0.39345527184517398 -0.00045135259742284597 1099999.9999999299 +-0.39388235896137702 -0.00030218038734981399 1099999.9999999299 +-0.39439239124675102 -0.00013717310559235399 1099999.9999999299 +-0.39449027417562899 -0.00010538948475990900 1099999.9999999299 +-0.39486668115460799 -4.6341334391180601e-05 1099999.9999999299 +-0.39482130352986500 -0.00010509038028687000 1099999.9999999299 +-0.39491184827207998 -2.0583102476332300e-05 1099999.9999999299 +-0.39513884586935200 -3.3657941980106100e-05 1099999.9999999299 +-0.39504147153000302 8.8080901301071900e-05 1099999.9999999299 +-0.39521705565247300 0.00061518944740733496 1099999.9999999299 +-0.39509225201262599 0.0017989281248196301 1099999.9999999299 +-0.39516562500425001 0.0045230351259926199 1099999.9999999299 +-0.39535810280921602 0.011118347036420100 1099999.9999999299 +-0.39544751051413801 0.027090664487519199 1099999.9999999299 +-0.39536901309880301 0.065892361848121805 1099999.9999999299 +-0.39514859292491200 0.16111401477578399 1099999.9999999199 +-0.39483389108029998 0.39483389108025602 1099999.9999998601 +-0.39449704075023700 0.96752632860720200 1099999.9999995001 +-0.39390834928926799 2.3705083924920398 1099999.9999973800 +-0.39272232169365101 5.8074767835034402 1099999.9999846001 +-0.39065720583979302 14.227441031723700 1099999.9999079199 +-0.38690228641347202 34.854017837102901 1099999.9994477499 +-0.38050554411895399 85.382535781719000 1099999.9966862199 +-0.36953997103211600 209.15702066049801 1099999.9801150900 +-0.35122206579177401 512.33818813143398 1099999.8806861099 +-0.32176460079471297 1254.8816857001500 1099999.2842142400 +-0.27591488275137199 3073.0024363799598 1099995.7075625099 +-0.20784697523871701 7521.7250528155000 1099974.2831776501 +-0.11269021102195000 18389.396518248999 1099846.2756656900 + 0.0078644853347634002 44828.395411715101 1099086.1726747400 + 0.13929273134409101 108456.70614902901 1094640.1887795301 + 0.25153096366682498 256943.84442139801 1069569.9419925199 + 0.32303356015262602 570453.06853465096 940522.88467601698 + 1.0539543261004301 -570453.26167212904 940522.76753224805 + 0.73944471481501495 -256943.79939859500 1069569.9528081701 + 0.36843131539529800 -108456.48692050000 1094640.2105005700 +-0.0016697211332133901 -44828.132527335598 1099086.1833969699 +-0.31262109806346700 -18389.166340708402 1099846.2795141900 +-0.54459280828798495 -7521.5528346867904 1099974.2843551701 +-0.70461630617588100 -3072.8851592193600 1099995.7078899499 +-0.80890237027137102 -1254.8064515592400 1099999.2842998200 +-0.87440775746101695 -512.29221202245901 1099999.8807072300 +-0.91422127325710800 -209.13017828514600 1099999.9801198801 +-0.93781246194324797 -85.367239542029793 1099999.9966870700 +-0.95137458478900905 -34.845618581856897 1099999.9994476701 +-0.95897316162843904 -14.222940028832600 1099999.9999076300 +-0.96327815615967005 -5.8050965516646604 1099999.9999842599 +-0.96560689824458001 -2.3691551039047600 1099999.9999970200 +-0.96688888314185095 -0.96688888314179500 1099999.9999991499 +-0.96752632860710197 -0.39449704075032099 1099999.9999995001 +-0.96792118496631796 -0.16088534857982900 1099999.9999995600 +-0.96822341225588604 -0.065575128205582200 1099999.9999995700 +-0.96834367044792502 -0.026830941916425401 1099999.9999995700 +-0.96848363463341502 -0.011132599556091000 1099999.9999995700 +-0.96838973032028797 -0.0046393876832943699 1099999.9999995700 +-0.96811345037468699 -0.0020016297730819101 1099999.9999995700 +-0.96816318589899597 -0.00085253785085245598 1099999.9999995700 +-0.96814539339861605 -0.00019364890265783600 1099999.9999995700 +-0.96804590760682496 2.1601458760488899e-05 1099999.9999995700 +-0.96819244217036804 9.3318850840185894e-05 1099999.9999995700 +-0.96787496452541699 0.00014365158054303100 1099999.9999995700 +-0.96796065670273101 8.4994207188700895e-05 1099999.9999995700 +-0.96784327986518603 0.00011265258971999899 1099999.9999995700 +-0.96767743392717598 3.7899999434898201e-05 1099999.9999995700 +-0.96765321427938800 8.5809691974570598e-05 1099999.9999995700 +-0.96732197733316205 0.00010330293904326500 1099999.9999995700 +-0.96723871338508005 0.00013345081785034099 1099999.9999995700 +-0.96683613572652305 0.00023956144161299900 1099999.9999995800 +-0.96664746458629602 0.00019154211544720499 1099999.9999995800 +-0.96626869863579501 0.00030302562723962700 1099999.9999995800 +-0.96605733748343603 0.00014628823505160701 1099999.9999995800 +-0.96582129661509397 0.00021643883724976301 1099999.9999995800 +-0.96572767251825797 -1.9586754785722600e-05 1099999.9999995800 +-0.96572767251824598 1.9586754783220800e-05 1099999.9999995800 +-0.96582129661509297 -0.00021643883725981999 1099999.9999995800 +-0.96605733748347500 -0.00014628823503498700 1099999.9999995800 +-0.96626869863585996 -0.00030302562721760197 1099999.9999995800 +-0.96664746458636597 -0.00019154211545565199 1099999.9999995800 +-0.96683613572656601 -0.00023956144161131000 1099999.9999995800 +-0.96723871338511302 -0.00013345081785493099 1099999.9999995700 +-0.96732197733318703 -0.00010330293905812899 1099999.9999995700 +-0.96765321427941198 -8.5809691964395496e-05 1099999.9999995700 +-0.96767743392726702 -3.7899999406827902e-05 1099999.9999995700 +-0.96784327986514795 -0.00011265258975925800 1099999.9999995700 +-0.96796065670275100 -8.4994207184595102e-05 1099999.9999995700 +-0.96787496452540700 -0.00014365158053655799 1099999.9999995700 +-0.96819244217034595 -9.3318850873682699e-05 1099999.9999995700 +-0.96804590760682296 -2.1601458747472202e-05 1099999.9999995700 +-0.96814539339856698 0.00019364890264178899 1099999.9999995700 +-0.96816318589897399 0.00085253785086563598 1099999.9999995700 +-0.96811345037459495 0.0020016297731034701 1099999.9999995700 +-0.96838973032024700 0.0046393876832710396 1099999.9999995700 +-0.96848363463330800 0.011132599556115100 1099999.9999995700 +-0.96834367044789305 0.026830941916448501 1099999.9999995700 +-0.96822341225579700 0.065575128205579106 1099999.9999995700 +-0.96792118496626600 0.16088534857986300 1099999.9999995600 +-0.96752632860710497 0.39449704075026498 1099999.9999995001 +-0.96688888314181398 0.96688888314179899 1099999.9999991499 +-0.96560689824460999 2.3691551039048999 1099999.9999970200 +-0.96327815615969004 5.8050965516642901 1099999.9999842599 +-0.95897316162859703 14.222940028832500 1099999.9999076300 +-0.95137458478908199 34.845618581856598 1099999.9994476701 +-0.93781246194329204 85.367239542030504 1099999.9966870700 +-0.91422127325577995 209.13017828514899 1099999.9801198801 +-0.87440775746048205 512.29221202245697 1099999.8807072300 +-0.80890237027388900 1254.8064515592300 1099999.2842998200 +-0.70461630617432303 3072.8851592193600 1099995.7078899499 +-0.54459280828739298 7521.5528346868296 1099974.2843551701 +-0.31262109806390498 18389.166340708402 1099846.2795141900 +-0.0016697211029373599 44828.132527335598 1099086.1833969699 + 0.36843131543534402 108456.48692050000 1094640.2105005700 + 0.73944471482846297 256943.79939859500 1069569.9528081701 + 1.0539543260644200 570453.26167212904 940522.76753224805 + 3.0638914400445700 -570453.28997414804 940522.75036188401 + 1.9925942827452201 -256943.32862485401 1069570.0659008799 + 0.88752617434073899 -108455.73927964800 1094640.2845759499 +-0.10096219143221800 -44827.394901604297 1099086.2134820600 +-0.87672683178027699 -18388.577201452699 1099846.2893639901 +-1.4293392462891299 -7521.1362786820600 1099974.2872026800 +-1.7971584307773900 -3072.6132968070201 1099995.7086481301 +-2.0308734742108498 -1254.6388922451499 1099999.2844893700 +-2.1740912034619599 -512.19307894301596 1099999.8807516000 +-2.2595271969760500 -209.07332176212000 1099999.9801287500 +-2.3093712073708401 -85.335673235993497 1099999.9966875000 +-2.3377777851758101 -34.828361274580303 1099999.9994461499 +-2.3535401313659401 -14.213744007517599 1099999.9999056500 +-2.3622010507162701 -5.8004743671293300 1099999.9999821701 +-2.3667975561231200 -2.3667975561231400 1099999.9999949101 +-2.3691551039048200 -0.96560689824467405 1099999.9999970200 +-2.3705083924919901 -0.39390834928920498 1099999.9999973800 +-2.3710783805794100 -0.16056742304439600 1099999.9999974300 +-2.3715436169486299 -0.065475334917080893 1099999.9999974400 +-2.3717579516770302 -0.026591832727912899 1099999.9999974400 +-2.3718565874999298 -0.010978350725491300 1099999.9999974400 +-2.3721383919956001 -0.0045820120088441198 1099999.9999974400 +-2.3719369963697798 -0.0018827189474728600 1099999.9999974400 +-2.3717879212074200 -0.00098156873254044708 1099999.9999974400 +-2.3717979131233999 -0.00039049638215663001 1099999.9999974400 +-2.3716554288038001 -6.1566274964313999e-05 1099999.9999974400 +-2.3717196390289801 3.4993194948503900e-06 1099999.9999974400 +-2.3717327167983600 9.7696234954538797e-05 1099999.9999974400 +-2.3715840052851900 5.3336906001631803e-05 1099999.9999974400 +-2.3716873193139998 7.4170483479450705e-05 1099999.9999974400 +-2.3715330265627701 7.1406910699135705e-05 1099999.9999974400 +-2.3715353824164702 4.2686341538888301e-05 1099999.9999974400 +-2.3714466354132200 0.00013209994855572100 1099999.9999974400 +-2.3713218235487199 7.8930788286906296e-05 1099999.9999974400 +-2.3712679540271902 0.00017142686377618000 1099999.9999974400 +-2.3710822667649700 0.00014082724318274301 1099999.9999974400 +-2.3710308322486400 0.00016335712270295800 1099999.9999974400 +-2.3708700971248802 0.00014663213259252499 1099999.9999974400 +-2.3708309004757702 8.0575767872829795e-05 1099999.9999974400 +-2.3707672111394600 5.7525365228701898e-05 1099999.9999974500 +-2.3707672111394000 -5.7525365227694498e-05 1099999.9999974500 +-2.3708309004758799 -8.0575767830034993e-05 1099999.9999974400 +-2.3708700971248899 -0.00014663213254429501 1099999.9999974400 +-2.3710308322487399 -0.00016335712269060300 1099999.9999974400 +-2.3710822667649700 -0.00014082724320223699 1099999.9999974400 +-2.3712679540272998 -0.00017142686379234800 1099999.9999974400 +-2.3713218235487501 -7.8930788307478598e-05 1099999.9999974400 +-2.3714466354132502 -0.00013209994856397099 1099999.9999974400 +-2.3715353824165000 -4.2686341492445301e-05 1099999.9999974400 +-2.3715330265627701 -7.1406910768474405e-05 1099999.9999974400 +-2.3716873193139101 -7.4170483496151295e-05 1099999.9999974400 +-2.3715840052853201 -5.3336905964490499e-05 1099999.9999974400 +-2.3717327167982600 -9.7696234998019302e-05 1099999.9999974400 +-2.3717196390290001 -3.4993194865112300e-06 1099999.9999974400 +-2.3716554288038298 6.1566274918883394e-05 1099999.9999974400 +-2.3717979131233502 0.00039049638215722801 1099999.9999974400 +-2.3717879212074200 0.00098156873249126506 1099999.9999974400 +-2.3719369963696200 0.0018827189474682300 1099999.9999974400 +-2.3721383919955499 0.0045820120088633899 1099999.9999974400 +-2.3718565874998800 0.010978350725480399 1099999.9999974400 +-2.3717579516768401 0.026591832727923499 1099999.9999974400 +-2.3715436169486201 0.065475334917075204 1099999.9999974400 +-2.3710783805790898 0.16056742304443700 1099999.9999974300 +-2.3705083924919301 0.39390834928923302 1099999.9999973800 +-2.3691551039047098 0.96560689824470203 1099999.9999970200 +-2.3667975561230099 2.3667975561231001 1099999.9999949101 +-2.3622010507163900 5.8004743671294099 1099999.9999821701 +-2.3535401313660600 14.213744007517100 1099999.9999056500 +-2.3377777851759101 34.828361274580800 1099999.9994461499 +-2.3093712073707899 85.335673235993696 1099999.9966875000 +-2.2595271969763400 209.07332176211801 1099999.9801287500 +-2.1740912034596001 512.19307894301903 1099999.8807516000 +-2.0308734742093999 1254.6388922451399 1099999.2844893700 +-1.7971584307798201 3072.6132968070301 1099995.7086481301 +-1.4293392462881200 7521.1362786820600 1099974.2872026800 +-0.87672683177874999 18388.577201452699 1099846.2893639901 +-0.10096219142040000 44827.394901604297 1099086.2134820600 + 0.88752617436756598 108455.73927964800 1094640.2845759499 + 1.9925942827222101 256943.32862485401 1069570.0659008799 + 3.0638914401108499 570453.28997414804 940522.75036188401 + 8.2151789026367901 -570452.25323402602 940523.37914202502 + 5.0006042956618897 -256941.33966868601 1069570.5436969800 + 1.9430522078806600 -108453.47003991299 1094640.5094059501 +-0.58619736609996997 -44825.427794789699 1099086.2937106800 +-2.4622009501668898 -18387.118790335200 1099846.3137441201 +-3.7456042194123600 -7520.1569389283704 1099974.2938930800 +-4.5751119480487299 -3071.9990774051598 1099995.7103556099 +-5.0892998288056202 -1254.2724727472300 1099999.2848973400 +-5.3984993675389097 -511.98266166574501 1099999.8808384500 +-5.5796741325016503 -208.95594886441600 1099999.9801392199 +-5.6834274993623097 -85.271763272298202 1099999.9966801901 +-5.7418553216314399 -34.794370060405498 1099999.9994347200 +-5.7738535559859496 -14.195852754137301 1099999.9998932499 +-5.7911759113584500 -5.7911759113585504 1099999.9999695099 +-5.8004743671294996 -2.3622010507162701 1099999.9999821701 +-5.8050965516643496 -0.96327815615968204 1099999.9999842599 +-5.8074767835036196 -0.39272232169355398 1099999.9999846001 +-5.8086982447571396 -0.16005830039276900 1099999.9999846499 +-5.8092363805356699 -0.065199918008307406 1099999.9999846600 +-5.8096953470989003 -0.026611810172187399 1099999.9999846600 +-5.8097483851574703 -0.010728659323339700 1099999.9999846600 +-5.8100099273832502 -0.0045781260174352599 1099999.9999846600 +-5.8102157233492298 -0.0018318246265027001 1099999.9999846600 +-5.8100997393318998 -0.00079276381487582604 1099999.9999846600 +-5.8101115129253298 -0.00047936513333524301 1099999.9999846600 +-5.8100194238818998 -0.00011525290703338200 1099999.9999846600 +-5.8098973349225096 -6.7161269388959303e-05 1099999.9999846600 +-5.8099586339471196 5.1176699393906802e-05 1099999.9999846600 +-5.8098667287339802 5.7023819033287500e-05 1099999.9999846600 +-5.8098511061764704 -2.5678046188812500e-05 1099999.9999846600 +-5.8098812520040397 3.3147124916701501e-05 1099999.9999846600 +-5.8098013398941299 -7.1613075455376898e-05 1099999.9999846600 +-5.8098604478263001 2.0382043203304001e-05 1099999.9999846600 +-5.8097737341911504 -3.6580829075322799e-06 1099999.9999846600 +-5.8097933142878402 5.6512241469321199e-05 1099999.9999846600 +-5.8097207359888197 9.9422262401216801e-05 1099999.9999846600 +-5.8096977017379796 9.6052402042206894e-05 1099999.9999846600 +-5.8096450010861496 0.00013577246021329999 1099999.9999846600 +-5.8096162499477497 5.9848809641433900e-05 1099999.9999846600 +-5.8095956252623600 5.9477092093206697e-05 1099999.9999846600 +-5.8095956252625696 -5.9477092041695297e-05 1099999.9999846600 +-5.8096162499476502 -5.9848809567745801e-05 1099999.9999846600 +-5.8096450010862704 -0.00013577246020495101 1099999.9999846600 +-5.8096977017378304 -9.6052402076551396e-05 1099999.9999846600 +-5.8097207359888099 -9.9422262380793197e-05 1099999.9999846600 +-5.8097933142877700 -5.6512241479805102e-05 1099999.9999846600 +-5.8097737341910900 3.6580828629057002e-06 1099999.9999846600 +-5.8098604478262796 -2.0382043184156201e-05 1099999.9999846600 +-5.8098013398940802 7.1613075356468699e-05 1099999.9999846600 +-5.8098812520038496 -3.3147124942532197e-05 1099999.9999846600 +-5.8098511061766098 2.5678046291761599e-05 1099999.9999846600 +-5.8098667287339198 -5.7023819087306999e-05 1099999.9999846600 +-5.8099586339470601 -5.1176699468195698e-05 1099999.9999846600 +-5.8098973349226402 6.7161269452409905e-05 1099999.9999846600 +-5.8100194238816796 0.00011525290699167800 1099999.9999846600 +-5.8101115129255998 0.00047936513331428202 1099999.9999846600 +-5.8100997393316201 0.00079276381483969695 1099999.9999846600 +-5.8102157233495202 0.0018318246263589700 1099999.9999846600 +-5.8100099273830104 0.0045781260175148204 1099999.9999846600 +-5.8097483851574996 0.010728659323277200 1099999.9999846600 +-5.8096953470987298 0.026611810172194401 1099999.9999846600 +-5.8092363805356202 0.065199918008249300 1099999.9999846600 +-5.8086982447570001 0.16005830039272401 1099999.9999846499 +-5.8074767835033203 0.39272232169366600 1099999.9999846001 +-5.8050965516642599 0.96327815615974299 1099999.9999842599 +-5.8004743671292198 2.3622010507165601 1099999.9999821701 +-5.7911759113583496 5.7911759113583603 1099999.9999695099 +-5.7738535559861397 14.195852754137100 1099999.9998932499 +-5.7418553216314399 34.794370060405299 1099999.9994347200 +-5.6834274993612999 85.271763272299197 1099999.9966801901 +-5.5796741325014798 208.95594886441600 1099999.9801392199 +-5.3984993675397499 511.98266166574200 1099999.8808384500 +-5.0892998288041200 1254.2724727472300 1099999.2848973400 +-4.5751119480502904 3071.9990774051598 1099995.7103556099 +-3.7456042194013399 7520.1569389284005 1099974.2938930800 +-2.4622009501627198 18387.118790335098 1099846.3137441201 +-0.58619736609134798 44825.427794789699 1099086.2937106800 + 1.9430522078733401 108453.47003991299 1094640.5094059501 + 5.0006042956958101 256941.33966868601 1069570.5436969800 + 8.2151789026457198 570452.25323402602 940523.37914202502 + 20.605691551539799 -570447.14829199505 940526.47521531000 + 11.736982198762700 -256934.67468384601 1069572.1447416900 + 3.7503483808715798 -108447.09563824401 1094641.1409377800 +-2.4690018039514099 -44820.406802995603 1099086.4984740401 +-6.8723085910778900 -18383.623338977101 1099846.3721564501 +-9.7828583506664302 -7517.9177162714004 1099974.3091624901 +-11.615088467109800 -3070.6464507933902 1099995.7140805000 +-12.728364178793500 -1253.4900274301201 1099999.2857273801 +-13.385872904400500 -511.54509761349999 1099999.8809738299 +-13.765036550986601 -208.71783217726801 1099999.9801124500 +-13.979143280172700 -85.144859271273603 1099999.9966158799 +-14.097602898788599 -34.728092048457597 1099999.9993614601 +-14.161822850282800 -14.161822850282800 1099999.9998176801 +-14.195852754137499 -5.7738535559857800 1099999.9998932499 +-14.213744007517400 -2.3535401313660902 1099999.9999056500 +-14.222940028832401 -0.95897316162854995 1099999.9999076300 +-14.227441031724400 -0.39065720583977498 1099999.9999079199 +-14.229674784805200 -0.15897139856966799 1099999.9999079499 +-14.230760262295901 -0.064695800335067999 1099999.9999079499 +-14.231294894316600 -0.026395833840103501 1099999.9999079399 +-14.231646320630500 -0.010731227426041901 1099999.9999079399 +-14.231620519111599 -0.0043894777836456199 1099999.9999079399 +-14.231985125542201 -0.0018852354372144099 1099999.9999079299 +-14.231994191294399 -0.00064690188374573498 1099999.9999079299 +-14.232073610727500 -0.00039000257220531300 1099999.9999079299 +-14.232101812921499 -0.00013442993133227601 1099999.9999079299 +-14.232034034843799 -6.3630471524496598e-05 1099999.9999079299 +-14.231997858663000 5.4291627458158802e-06 1099999.9999079299 +-14.231961510419300 4.0729244850488398e-05 1099999.9999079299 +-14.231913588473001 6.9351952418274801e-05 1099999.9999079299 +-14.231846115385100 -1.1978593727776600e-05 1099999.9999079299 +-14.231871092334099 4.9591256119634798e-05 1099999.9999079299 +-14.231766744139399 -7.9981925286935605e-05 1099999.9999079299 +-14.231846272012300 4.9466391359624697e-05 1099999.9999079299 +-14.231736350208800 -6.1036023794953004e-05 1099999.9999079399 +-14.231814400158299 9.5532240910778596e-05 1099999.9999079299 +-14.231723332954200 1.6758839539242499e-05 1099999.9999079399 +-14.231767234210000 0.00012112107704624100 1099999.9999079299 +-14.231713935649999 2.9754966944641500e-05 1099999.9999079399 +-14.231725840168000 5.9103142800050803e-05 1099999.9999079399 +-14.231725840167799 -5.9103142708053599e-05 1099999.9999079399 +-14.231713935650200 -2.9754966975786102e-05 1099999.9999079399 +-14.231767234209901 -0.00012112107710761200 1099999.9999079299 +-14.231723332954200 -1.6758839561102999e-05 1099999.9999079399 +-14.231814400158299 -9.5532240896762193e-05 1099999.9999079299 +-14.231736350208500 6.1036023747440405e-05 1099999.9999079399 +-14.231846272012200 -4.9466391324962300e-05 1099999.9999079299 +-14.231766744139300 7.9981925289451699e-05 1099999.9999079299 +-14.231871092334201 -4.9591256211516901e-05 1099999.9999079299 +-14.231846115385199 1.1978593865869500e-05 1099999.9999079299 +-14.231913588473301 -6.9351952367446902e-05 1099999.9999079299 +-14.231961510418801 -4.0729245102550102e-05 1099999.9999079299 +-14.231997858663499 -5.4291626020665896e-06 1099999.9999079299 +-14.232034034843499 6.3630471396640593e-05 1099999.9999079299 +-14.232101812921901 0.00013442993139531700 1099999.9999079299 +-14.232073610727200 0.00039000257216697599 1099999.9999079299 +-14.231994191294699 0.00064690188372873599 1099999.9999079299 +-14.231985125542300 0.0018852354372855401 1099999.9999079299 +-14.231620519111800 0.0043894777833068700 1099999.9999079399 +-14.231646320630199 0.010731227426112900 1099999.9999079399 +-14.231294894316999 0.026395833840062100 1099999.9999079399 +-14.230760262295400 0.064695800335130199 1099999.9999079499 +-14.229674784805900 0.15897139856954301 1099999.9999079499 +-14.227441031724201 0.39065720583981600 1099999.9999079199 +-14.222940028832500 0.95897316162859003 1099999.9999076300 +-14.213744007517400 2.3535401313661199 1099999.9999056500 +-14.195852754136800 5.7738535559862703 1099999.9998932499 +-14.161822850282499 14.161822850282499 1099999.9998176801 +-14.097602898788800 34.728092048456901 1099999.9993614601 +-13.979143280172799 85.144859271273305 1099999.9966158799 +-13.765036550984400 208.71783217726900 1099999.9801124500 +-13.385872904400999 511.54509761350198 1099999.8809738299 +-12.728364178793500 1253.4900274301201 1099999.2857273801 +-11.615088467106400 3070.6464507933902 1099995.7140805000 +-9.7828583506780493 7517.9177162714004 1099974.3091624901 +-6.8723085910606496 18383.623338977101 1099846.3721564501 +-2.4690018039875099 44820.406802995603 1099086.4984740401 + 3.7503483808497702 108447.09563824401 1094641.1409377800 + 11.736982198781201 256934.67468384601 1069572.1447416900 + 20.605691551506400 570447.14829199505 940526.47521531000 + 48.542762271494603 -570429.14200834802 940537.39510517102 + 25.626353917085599 -256914.86176917201 1069576.9038014100 + 5.7872784899433798 -108430.22653964300 1094642.8120346200 +-8.9428221054985997 -44808.097482573503 1099087.0003416601 +-18.978860229435000 -18375.513393277499 1099846.5075397301 +-25.424306548378201 -7512.9395358972197 1099974.3429249299 +-29.394691086493200 -3067.7432432310602 1099995.7218495600 +-31.764749477065301 -1251.8605071807301 1099999.2871980700 +-33.143619709049602 -510.65696811553602 1099999.8809686101 +-33.927524489854399 -208.24500121843701 1099999.9797649700 +-34.363496040040403 -84.897857214491694 1099999.9961870499 +-34.601115968278997 -34.601115968278798 1099999.9989116001 +-34.728092048457299 -14.097602898788400 1099999.9993614601 +-34.794370060405100 -5.7418553216317303 1099999.9994347200 +-34.828361274579997 -2.3377777851759900 1099999.9994461499 +-34.845618581857302 -0.95137458478884196 1099999.9994476701 +-34.854017837101800 -0.38690228641367902 1099999.9994477499 +-34.858179207254899 -0.15729720815151901 1099999.9994476701 +-34.859979268264503 -0.063766815289346801 1099999.9994476300 +-34.860997948900398 -0.025984257543394899 1099999.9994476000 +-34.861447282906397 -0.010595032873087201 1099999.9994475800 +-34.861684628649300 -0.0042847780281981404 1099999.9994475699 +-34.861771538766902 -0.0018560189552300299 1099999.9994475699 +-34.861956841917099 -0.00072002975245205299 1099999.9994475699 +-34.862008264381899 -0.00020945538472284101 1099999.9994475599 +-34.862040898780798 -0.00012065671554174900 1099999.9994475599 +-34.862115444764697 3.8458723203598302e-05 1099999.9994475599 +-34.862027763231097 -5.9612503643314300e-05 1099999.9994475599 +-34.862086309585997 7.7289817124453602e-05 1099999.9994475599 +-34.861987120294302 -4.6618075272559100e-05 1099999.9994475599 +-34.862009037878700 7.6324829700390298e-05 1099999.9994475599 +-34.861919290573098 -5.1855274456096099e-05 1099999.9994475699 +-34.861938810747802 8.1594108099071800e-05 1099999.9994475699 +-34.861851244270497 -5.2741958160690698e-05 1099999.9994475699 +-34.861883702138996 0.00012399847415298199 1099999.9994475699 +-34.861801822438700 -9.0029571063286599e-06 1099999.9994475699 +-34.861830439515700 0.00018799554915778800 1099999.9994475699 +-34.861767524250503 1.7724796188194901e-05 1099999.9994475699 +-34.861780517721499 0.00017340677471984399 1099999.9994475699 +-34.861755896210198 -5.7064839822598902e-05 1099999.9994475699 +-34.861755896210703 5.7064839812742597e-05 1099999.9994475699 +-34.861780517721300 -0.00017340677481366500 1099999.9994475699 +-34.861767524250602 -1.7724796225007400e-05 1099999.9994475699 +-34.861830439515799 -0.00018799554899335701 1099999.9994475699 +-34.861801822438601 9.0029567991833493e-06 1099999.9994475699 +-34.861883702139203 -0.00012399847418840100 1099999.9994475699 +-34.861851244270497 5.2741958330074898e-05 1099999.9994475699 +-34.861938810748100 -8.1594107932887202e-05 1099999.9994475699 +-34.861919290572700 5.1855274742938602e-05 1099999.9994475699 +-34.862009037879602 -7.6324829818101599e-05 1099999.9994475599 +-34.861987120293598 4.6618074785762503e-05 1099999.9994475599 +-34.862086309586601 -7.7289816806675097e-05 1099999.9994475599 +-34.862027763230699 5.9612503726029900e-05 1099999.9994475599 +-34.862115444765202 -3.8458723375252598e-05 1099999.9994475599 +-34.862040898780997 0.00012065671557241800 1099999.9994475599 +-34.862008264382098 0.00020945538472591900 1099999.9994475599 +-34.861956841917703 0.00072002975252982401 1099999.9994475699 +-34.861771538766703 0.0018560189552035500 1099999.9994475699 +-34.861684628649499 0.0042847780280227997 1099999.9994475699 +-34.861447282907498 0.010595032873054700 1099999.9994475800 +-34.860997948900298 0.025984257543366598 1099999.9994476000 +-34.859979268265100 0.063766815289448400 1099999.9994476300 +-34.858179207255198 0.15729720815175499 1099999.9994476701 +-34.854017837103100 0.38690228641325197 1099999.9994477499 +-34.845618581857003 0.95137458478890402 1099999.9994476701 +-34.828361274580701 2.3377777851756800 1099999.9994461499 +-34.794370060405399 5.7418553216314301 1099999.9994347200 +-34.728092048456702 14.097602898789200 1099999.9993614601 +-34.601115968278897 34.601115968278798 1099999.9989116001 +-34.363496040040900 84.897857214490102 1099999.9961870499 +-33.927524489855003 208.24500121843701 1099999.9797649700 +-33.143619709048401 510.65696811553698 1099999.8809686101 +-31.764749477065699 1251.8605071807301 1099999.2871980700 +-29.394691086492699 3067.7432432310702 1099995.7218495600 +-25.424306548381001 7512.9395358972197 1099974.3429249299 +-18.978860229418100 18375.513393277499 1099846.5075397301 +-8.9428221054900199 44808.097482573598 1099087.0003416601 + 5.7872784899565204 108430.22653964300 1094642.8120346200 + 25.626353917044899 256914.86176917201 1069576.9038014100 + 48.542762271485202 570429.14200834802 940537.39510517102 + 107.00276323926400 -570374.37706612202 940570.60263270000 + 51.117837445730999 -256860.54241596299 1069589.9490630699 + 4.1011902100995599 -108387.80530071299 1094647.0132628500 +-29.521394446583201 -44779.066405362799 1099088.1831501699 +-51.737688564950702 -18357.307175600399 1099846.8105133900 +-65.684665300573698 -7502.1991370091800 1099974.4145631900 +-74.128646129470098 -3061.6816609684201 1099995.7366328100 +-79.097823056798205 -1248.5514814685400 1099999.2885737401 +-81.950451848529298 -508.89630551100998 1099999.8792312101 +-83.550362176210001 -207.32715146081301 1099999.9772885400 +-84.427561818599301 -84.427561818598505 1099999.9935199900 +-84.897857214490600 -34.363496040040900 1099999.9961870499 +-85.144859271272196 -13.979143280173300 1099999.9966158799 +-85.271763272298202 -5.6834274993620104 1099999.9966801901 +-85.335673235993298 -2.3093712073705701 1099999.9966875000 +-85.367239542030802 -0.93781246194322598 1099999.9966870700 +-85.382535781716896 -0.38050554411900200 1099999.9966862199 +-85.389831648361493 -0.15433422617314299 1099999.9966857100 +-85.393216839536294 -0.062447058434737197 1099999.9966854500 +-85.394616637643495 -0.025204827668401202 1099999.9966853401 +-85.395472282539302 -0.010292587969390300 1099999.9966852800 +-85.395713170351897 -0.0041578332175832003 1099999.9966852600 +-85.395946452100802 -0.0017813627515244599 1099999.9966852400 +-85.396059818346799 -0.00077127971689851997 1099999.9966852299 +-85.396122951886099 -0.00031371712084123299 1099999.9966852299 +-85.396238039905299 -7.9344815071299995e-05 1099999.9966852199 +-85.396175123453204 2.2771226407495399e-05 1099999.9966852199 +-85.396286723947000 7.7353234014001498e-05 1099999.9966852199 +-85.396136325598306 1.9322056429605599e-05 1099999.9966852299 +-85.396224266727202 5.5852487749876600e-05 1099999.9966852199 +-85.396094241169493 -4.9579773548209998e-05 1099999.9966852299 +-85.396128591928203 -3.8879484885140798e-06 1099999.9966852299 +-85.396066191675104 -7.4695050220977295e-05 1099999.9966852299 +-85.396060102379707 -7.2356456441414602e-06 1099999.9966852299 +-85.396041551935397 -2.5321517928332699e-05 1099999.9966852299 +-85.396017410009193 6.1171358642443801e-05 1099999.9966852400 +-85.396009329129598 6.1204801637811205e-05 1099999.9966852400 +-85.395983238290398 0.00011237433068518200 1099999.9966852400 +-85.395975785037606 6.2167473436410304e-05 1099999.9966852400 +-85.395964133857504 4.8088578835586000e-05 1099999.9966852400 +-85.395964133857603 -4.8088578817000099e-05 1099999.9966852400 +-85.395975785037706 -6.2167473638180396e-05 1099999.9966852400 +-85.395983238290995 -0.00011237433049397099 1099999.9966852400 +-85.396009329128802 -6.1204802064815801e-05 1099999.9966852400 +-85.396017410008895 -6.1171358471915794e-05 1099999.9966852400 +-85.396041551935696 2.5321517938825801e-05 1099999.9966852299 +-85.396060102380105 7.2356458060627797e-06 1099999.9966852299 +-85.396066191674606 7.4695050009323806e-05 1099999.9966852299 +-85.396128591928502 3.8879489365993903e-06 1099999.9966852299 +-85.396094241167603 4.9579773477663897e-05 1099999.9966852299 +-85.396224266728893 -5.5852487922476700e-05 1099999.9966852199 +-85.396136325598306 -1.9322056013261899e-05 1099999.9966852299 +-85.396286723947398 -7.7353234186874499e-05 1099999.9966852199 +-85.396175123452906 -2.2771225940506501e-05 1099999.9966852199 +-85.396238039905796 7.9344814839783299e-05 1099999.9966852199 +-85.396122951886596 0.00031371712096172298 1099999.9966852299 +-85.396059818346501 0.00077127971672036105 1099999.9966852299 +-85.395946452100702 0.0017813627511635501 1099999.9966852400 +-85.395713170353105 0.0041578332186993101 1099999.9966852600 +-85.395472282539401 0.010292587969245100 1099999.9966852800 +-85.394616637643594 0.025204827667814601 1099999.9966853401 +-85.393216839538297 0.062447058435064200 1099999.9966854500 +-85.389831648360499 0.15433422617333001 1099999.9966857100 +-85.382535781718502 0.38050554411865301 1099999.9966862199 +-85.367239542030504 0.93781246194308299 1099999.9966870700 +-85.335673235993895 2.3093712073706798 1099999.9966875000 +-85.271763272299694 5.6834274993613603 1099999.9966801901 +-85.144859271273802 13.979143280172901 1099999.9966158799 +-84.897857214490301 34.363496040041397 1099999.9961870499 +-84.427561818599301 84.427561818598704 1099999.9935199900 +-83.550362176211806 207.32715146081199 1099999.9772885400 +-81.950451848527507 508.89630551101197 1099999.8792312101 +-79.097823056796003 1248.5514814685400 1099999.2885737401 +-74.128646129476394 3061.6816609684201 1099995.7366328100 +-65.684665300564902 7502.1991370091700 1099974.4145631900 +-51.737688564958098 18357.307175600399 1099846.8105133900 +-29.521394446560201 44779.066405362799 1099088.1831501699 + 4.1011902100701398 108387.80530071299 1094647.0132628500 + 51.117837445717001 256860.54241596299 1069589.9490630699 + 107.00276323926801 570374.37706612202 940570.60263270105 + 217.74198556481500 -570222.73231285205 940662.52617083304 + 88.930714368165496 -256720.86050067499 1069623.4813592699 +-17.390582485766799 -108286.04538144900 1094657.0842383499 +-91.327319714753997 -44713.216735599402 1099090.8606245799 +-139.10264297600801 -18317.824841091799 1099847.4612161200 +-168.61723887291501 -7479.7480950394502 1099974.5564951301 +-186.26682963525599 -3049.3929388975098 1099995.7574951700 +-196.53659385435401 -1242.0128257548299 1099999.2812622699 +-202.36223880096199 -505.49249081710298 1099999.8652394800 +-205.58622227359001 -205.58622227359101 1099999.9615766399 +-207.32715146081401 -83.550362176211095 1099999.9772885400 +-208.24500121843499 -33.927524489855401 1099999.9797649700 +-208.71783217726801 -13.765036550985901 1099999.9801124500 +-208.95594886441501 -5.5796741325013501 1099999.9801392199 +-209.07332176212199 -2.2595271969751902 1099999.9801287500 +-209.13017828514401 -0.91422127325715496 1099999.9801198801 +-209.15702066050099 -0.36953997103229502 1099999.9801150900 +-209.16956362625100 -0.14919709300646700 1099999.9801127601 +-209.17533963084500 -0.060310076907250099 1099999.9801116700 +-209.17778786433999 -0.024196353592618399 1099999.9801112099 +-209.17890096074800 -0.0097649957036568206 1099999.9801109901 +-209.17937014959600 -0.0038957347307637699 1099999.9801109000 +-209.17953670142600 -0.0015461348155443300 1099999.9801108700 +-209.17964760484699 -0.00075808560764195501 1099999.9801108500 +-209.17971312141600 -0.00030231336495973498 1099999.9801108399 +-209.17979477733601 -0.00021914423184626200 1099999.9801108199 +-209.17983169213900 -4.3145117232081398e-05 1099999.9801108199 +-209.17987563077600 -1.7623072429269800e-05 1099999.9801108099 +-209.17987753179500 4.2289594672718499e-05 1099999.9801108099 +-209.17985736763001 4.2444906260554003e-05 1099999.9801108099 +-209.17982594551799 1.7677274678958901e-06 1099999.9801108199 +-209.17979853331201 -7.6201371503353801e-07 1099999.9801108199 +-209.17974475252299 -6.0380254159635200e-05 1099999.9801108299 +-209.17975058826201 -2.1560827583881900e-05 1099999.9801108299 +-209.17968650285400 -5.9964019239584600e-05 1099999.9801108399 +-209.17971389875800 4.5471912866081099e-05 1099999.9801108399 +-209.17965152006099 4.5710233629248996e-06 1099999.9801108500 +-209.17967392998199 0.00011596246536121500 1099999.9801108500 +-209.17963349094501 1.1712449410163400e-05 1099999.9801108500 +-209.17964089762700 7.7183928223105701e-05 1099999.9801108500 +-209.17964089762401 -7.7183928155511605e-05 1099999.9801108500 +-209.17963349094700 -1.1712448803751400e-05 1099999.9801108500 +-209.17967392998099 -0.00011596246657536400 1099999.9801108500 +-209.17965152006099 -4.5710242185243502e-06 1099999.9801108500 +-209.17971389875700 -4.5471911942865100e-05 1099999.9801108399 +-209.17968650285400 5.9964019893649598e-05 1099999.9801108399 +-209.17975058826201 2.1560826558841100e-05 1099999.9801108299 +-209.17974475252399 6.0380254230897403e-05 1099999.9801108299 +-209.17979853331300 7.6201268334228201e-07 1099999.9801108199 +-209.17982594551799 -1.7677257612751999e-06 1099999.9801108199 +-209.17985736762901 -4.2444904573320601e-05 1099999.9801108099 +-209.17987753179699 -4.2289596007083403e-05 1099999.9801108099 +-209.17987563077600 1.7623072662158300e-05 1099999.9801108099 +-209.17983169213801 4.3145117474381298e-05 1099999.9801108199 +-209.17979477733601 0.00021914423183720701 1099999.9801108199 +-209.17971312141600 0.00030231336425731498 1099999.9801108399 +-209.17964760484500 0.00075808560751887302 1099999.9801108500 +-209.17953670142700 0.0015461348166581801 1099999.9801108700 +-209.17937014959500 0.0038957347308494002 1099999.9801109000 +-209.17890096074601 0.0097649957028589102 1099999.9801109901 +-209.17778786434201 0.024196353594444098 1099999.9801112099 +-209.17533963084600 0.060310076906654103 1099999.9801116700 +-209.16956362625299 0.14919709300598399 1099999.9801127601 +-209.15702066049900 0.36953997103286501 1099999.9801150900 +-209.13017828514899 0.91422127325648905 1099999.9801198801 +-209.07332176212000 2.2595271969764199 1099999.9801287500 +-208.95594886441600 5.5796741325011903 1099999.9801392199 +-208.71783217726900 13.765036550984499 1099999.9801124500 +-208.24500121843701 33.927524489854399 1099999.9797649700 +-207.32715146081301 83.550362176211905 1099999.9772885400 +-205.58622227359101 205.58622227359001 1099999.9615766399 +-202.36223880096600 505.49249081709797 1099999.8652394800 +-196.53659385434901 1242.0128257548299 1099999.2812622699 +-186.26682963525300 3049.3929388975098 1099995.7574951700 +-168.61723887292001 7479.7480950394502 1099974.5564951301 +-139.10264297600699 18317.824841091799 1099847.4612161200 +-91.327319714743197 44713.216735599402 1099090.8606245799 +-17.390582485741501 108286.04538144900 1094657.0842383499 + 88.930714368191602 256720.86050067499 1069623.4813592699 + 217.74198556476401 570222.73231285205 940662.52617083304 + 395.92100159946301 -569832.13216431299 940899.13614565099 + 116.34596073458100 -256381.55550723200 1069704.8585751599 +-112.52868469700300 -108053.08187546200 1094680.0988574300 +-269.01893890973002 -44569.840423817397 1099096.6549641599 +-368.88774080355898 -18235.327548974299 1099848.7790378300 +-430.07083172199799 -7434.3952887054002 1099974.7928047101 +-466.38819858088902 -3025.2496788486201 1099995.7410583100 +-487.33480089427002 -1229.4596298924400 1099999.2049696301 +-499.08282967321600 -499.08282967321799 1099999.7735602800 +-505.49249081710099 -202.36223880096199 1099999.8652394800 +-508.89630551100601 -81.950451848529895 1099999.8792312101 +-510.65696811553801 -33.143619709050597 1099999.8809686101 +-511.54509761350101 -13.385872904400401 1099999.8809738299 +-511.98266166574501 -5.3984993675362700 1099999.8808384500 +-512.19307894301505 -2.1740912034616202 1099999.8807516000 +-512.29221202245697 -0.87440775746142196 1099999.8807072300 +-512.33818813143296 -0.35122206579232701 1099999.8806861099 +-512.35879434737399 -0.14096912864869199 1099999.8806765601 +-512.36813818279404 -0.056549327629028999 1099999.8806722199 +-512.37217869786195 -0.022773806050420099 1099999.8806703300 +-512.37375689670603 -0.0090921225530389508 1099999.8806696001 +-512.37458556071795 -0.0036835260028405098 1099999.8806692101 +-512.37468913297596 -0.0014061130064990299 1099999.8806691701 +-512.37484016863903 -0.00053418662153985298 1099999.8806690900 +-512.37483841643598 -0.00023831315635236799 1099999.8806691000 +-512.37480074006100 -9.6072454939420294e-05 1099999.8806691100 +-512.37494359469099 -0.00011935926567848399 1099999.8806690499 +-512.37484259370297 -3.0334066078227099e-05 1099999.8806690900 +-512.37504134004405 -7.1967927042060803e-05 1099999.8806690001 +-512.37492067321398 -1.9595709622990301e-05 1099999.8806690599 +-512.37507192417695 -4.1799543414169597e-05 1099999.8806689901 +-512.37496774297801 -3.8923441540878201e-05 1099999.8806690399 +-512.37505297612302 -4.9078993883234197e-05 1099999.8806690001 +-512.37498379994997 -3.9936242709959903e-05 1099999.8806690299 +-512.37502531019300 -2.9868902794774199e-05 1099999.8806690101 +-512.37497949419605 2.0828026937873899e-05 1099999.8806690299 +-512.37499475846198 3.6769449224989903e-05 1099999.8806690201 +-512.37496263753303 7.9634227075196107e-05 1099999.8806690399 +-512.37496533952697 4.6706336864884603e-05 1099999.8806690399 +-512.37495292745496 3.7801667378968603e-05 1099999.8806690399 +-512.37495292745700 -3.7801667363194898e-05 1099999.8806690399 +-512.37496533952401 -4.6706335835796302e-05 1099999.8806690399 +-512.37496263753405 -7.9634227334367995e-05 1099999.8806690399 +-512.37499475846300 -3.6769449047570998e-05 1099999.8806690201 +-512.37497949419901 -2.0828028085182401e-05 1099999.8806690299 +-512.37502531019197 2.9868902607941001e-05 1099999.8806690101 +-512.37498379995100 3.9936243402746497e-05 1099999.8806690299 +-512.37505297612302 4.9078994042400801e-05 1099999.8806690001 +-512.37496774297904 3.8923441380233401e-05 1099999.8806690399 +-512.37507192418298 4.1799542079268901e-05 1099999.8806689901 +-512.37492067321102 1.9595711490637698e-05 1099999.8806690599 +-512.37504134004496 7.1967928922580604e-05 1099999.8806690001 +-512.37484259370206 3.0334064036436901e-05 1099999.8806690900 +-512.37494359469395 0.00011935926382438200 1099999.8806690499 +-512.37480074005805 9.6072455501843598e-05 1099999.8806691100 +-512.37483841643598 0.00023831315566712899 1099999.8806691000 +-512.37484016864005 0.00053418662236430904 1099999.8806690900 +-512.37468913297698 0.0014061130072901000 1099999.8806691701 +-512.37458556071499 0.0036835260004433601 1099999.8806692101 +-512.37375689671205 0.0090921225563809997 1099999.8806696001 +-512.37217869786605 0.022773806053142599 1099999.8806703300 +-512.36813818279199 0.056549327629230400 1099999.8806722199 +-512.35879434737797 0.14096912864632399 1099999.8806765601 +-512.33818813143398 0.35122206579331600 1099999.8806861099 +-512.29221202246003 0.87440775746111599 1099999.8807072300 +-512.19307894301699 2.1740912034587798 1099999.8807516000 +-511.98266166574302 5.3984993675390900 1099999.8808384500 +-511.54509761349902 13.385872904400101 1099999.8809738299 +-510.65696811554000 33.143619709048799 1099999.8809686101 +-508.89630551100902 81.950451848528900 1099999.8792312101 +-505.49249081710201 202.36223880096500 1099999.8652394800 +-499.08282967321998 499.08282967321799 1099999.7735602800 +-487.33480089427701 1229.4596298924300 1099999.2049696301 +-466.38819858088499 3025.2496788486301 1099995.7410583100 +-430.07083172198799 7434.3952887053902 1099974.7928047101 +-368.88774080354102 18235.327548974299 1099848.7790378300 +-269.01893890968302 44569.840423817303 1099096.6549641599 +-112.52868469699800 108053.08187546099 1094680.0988574300 + 116.34596073455199 256381.55550723200 1069704.8585751599 + 395.92100159949098 569832.13216431299 940899.13614565099 + 588.65734351482297 -568888.58756020002 941469.82342839497 + 22.906474370018898 -255602.00112930001 1069891.4040658500 +-443.83872732059001 -107545.32155349400 1094730.0154920099 +-762.32538647912702 -44271.296391663796 1099108.4892656400 +-965.59959062894302 -18069.878628891100 1099851.1477030700 +-1090.1558362345500 -7346.1493202294696 1099974.9295554000 +-1163.8750305940100 -2979.3942081052101 1099995.3493561100 +-1206.0763927412399 -1206.0763927412499 1099998.6776171499 +-1229.4596298924400 -487.33480089427201 1099999.2049696301 +-1242.0128257548299 -196.53659385435401 1099999.2812622699 +-1248.5514814685400 -79.097823056796003 1099999.2885737401 +-1251.8605071807301 -31.764749477062601 1099999.2871980700 +-1253.4900274301201 -12.728364178792800 1099999.2857273801 +-1254.2724727472300 -5.0892998288058804 1099999.2848973400 +-1254.6388922451399 -2.0308734742115999 1099999.2844893700 +-1254.8064515592400 -0.80890237026997003 1099999.2842998200 +-1254.8816857001500 -0.32176460079365299 1099999.2842142400 +-1254.9145305517500 -0.12781715853069900 1099999.2841768099 +-1254.9288172655299 -0.050787228485200703 1099999.2841605200 +-1254.9348534814701 -0.020239190963573898 1099999.2841536400 +-1254.9373106300100 -0.0081832741977411801 1099999.2841508300 +-1254.9383765893299 -0.0033389526418718700 1099999.2841496200 +-1254.9386873667600 -0.0014155300035741301 1099999.2841492600 +-1254.9389023943600 -0.00054365161170293400 1099999.2841490200 +-1254.9387511062801 -0.00023495215622282401 1099999.2841491899 +-1254.9389092991901 -2.5112685463032299e-05 1099999.2841490100 +-1254.9386671046500 -1.1178673280421700e-05 1099999.2841492901 +-1254.9388528101999 4.9774034803970703e-06 1099999.2841490700 +-1254.9386622346401 -2.1279050711634802e-06 1099999.2841492901 +-1254.9388318237300 -4.6158394756771800e-05 1099999.2841491001 +-1254.9387265806999 -4.2471131919452799e-05 1099999.2841492200 +-1254.9388334907301 -9.7218473935670700e-05 1099999.2841491001 +-1254.9388175146901 -6.4944948546965495e-05 1099999.2841491101 +-1254.9388571447600 -0.00010718754208784800 1099999.2841490700 +-1254.9388963563399 -2.9844545271159500e-05 1099999.2841490200 +-1254.9388875776699 -5.2595962490513397e-05 1099999.2841490300 +-1254.9389335131100 5.8302493622022101e-05 1099999.2841489799 +-1254.9389075457900 4.9733353782641799e-06 1099999.2841490100 +-1254.9389344356400 8.9919827281158295e-05 1099999.2841489799 +-1254.9389221072699 -2.5913979497172899e-05 1099999.2841490000 +-1254.9389221072699 2.5913979569431199e-05 1099999.2841490000 +-1254.9389344356300 -8.9919828342834406e-05 1099999.2841489799 +-1254.9389075457900 -4.9733314503081301e-06 1099999.2841490100 +-1254.9389335131100 -5.8302491311977401e-05 1099999.2841489799 +-1254.9388875776699 5.2595959170805499e-05 1099999.2841490300 +-1254.9388963563399 2.9844543880019801e-05 1099999.2841490200 +-1254.9388571447500 0.00010718754293617000 1099999.2841490700 +-1254.9388175146901 6.4944948139723994e-05 1099999.2841491101 +-1254.9388334907201 9.7218478242200605e-05 1099999.2841491001 +-1254.9387265806899 4.2471127800301599e-05 1099999.2841492200 +-1254.9388318237300 4.6158391751306803e-05 1099999.2841491001 +-1254.9386622346201 2.1279071476223000e-06 1099999.2841492901 +-1254.9388528101999 -4.9774035003596303e-06 1099999.2841490700 +-1254.9386671046500 1.1178672717126999e-05 1099999.2841492901 +-1254.9389092992001 2.5112683095826001e-05 1099999.2841490100 +-1254.9387511062700 0.00023495215844740301 1099999.2841491899 +-1254.9389023943600 0.00054365161251597504 1099999.2841490200 +-1254.9386873667499 0.0014155300016202600 1099999.2841492600 +-1254.9383765893399 0.0033389526466639499 1099999.2841496200 +-1254.9373106300100 0.0081832742027873901 1099999.2841508300 +-1254.9348534814601 0.020239190957165198 1099999.2841536400 +-1254.9288172655199 0.050787228484440401 1099999.2841605200 +-1254.9145305517600 0.12781715853410100 1099999.2841768099 +-1254.8816857001500 0.32176460079270502 1099999.2842142400 +-1254.8064515592300 0.80890237026996004 1099999.2842998200 +-1254.6388922451499 2.0308734742084602 1099999.2844893700 +-1254.2724727472300 5.0892998288038198 1099999.2848973400 +-1253.4900274301201 12.728364178796401 1099999.2857273801 +-1251.8605071807201 31.764749477065202 1099999.2871980700 +-1248.5514814685400 79.097823056796599 1099999.2885737401 +-1242.0128257548299 196.53659385435401 1099999.2812622699 +-1229.4596298924400 487.33480089427201 1099999.2049696301 +-1206.0763927412399 1206.0763927412399 1099998.6776171499 +-1163.8750305940200 2979.3942081051900 1099995.3493561100 +-1090.1558362345399 7346.1493202294696 1099974.9295554000 +-965.59959062895803 18069.878628891100 1099851.1477030700 +-762.32538647912497 44271.296391663898 1099108.4892656400 +-443.83872732060701 107545.32155349400 1094730.0154920099 + 22.906474370044400 255602.00112930001 1069891.4040658500 + 588.65734351488197 568888.58756020002 941469.82342839497 + 471.54601353317599 -566750.38216437504 942758.60216753895 +-574.89580371044303 -253914.20652139801 1070293.0651094699 +-1469.9800051829600 -106497.75808955300 1094831.5243363599 +-2093.3396418229199 -43680.464121103803 1099130.3994446299 +-2497.6224895647301 -17753.134104737299 1099853.8939838100 +-2747.5229292244499 -7181.4371892353402 1099973.1260706601 +-2895.4180510065498 -2895.4180510065598 1099992.3786593301 +-2979.3942081052001 -1163.8750305940100 1099995.3493561100 +-3025.2496788486201 -466.38819858088902 1099995.7410583100 +-3049.3929388975098 -186.26682963525801 1099995.7574951700 +-3061.6816609684201 -74.128646129470994 1099995.7366328100 +-3067.7432432310602 -29.394691086487800 1099995.7218495600 +-3070.6464507933902 -11.615088467105901 1099995.7140805000 +-3071.9990774051598 -4.5751119480564801 1099995.7103556099 +-3072.6132968070301 -1.7971584307769899 1099995.7086481301 +-3072.8851592193600 -0.70461630617299997 1099995.7078899499 +-3073.0024363799598 -0.27591488275352399 1099995.7075625099 +-3073.0522226251801 -0.10800494168903800 1099995.7074234500 +-3073.0725729324299 -0.042344263845079499 1099995.7073666099 +-3073.0809462038301 -0.016589145722337599 1099995.7073432100 +-3073.0844304094599 -0.0065831304093589204 1099995.7073334800 +-3073.0855312342101 -0.0026989839915167999 1099995.7073304099 +-3073.0862960807699 -0.0011943717127360701 1099995.7073282700 +-3073.0862382754199 -0.00059668359697951799 1099995.7073284299 +-3073.0865005925998 -0.00028366089682888598 1099995.7073277000 +-3073.0863085950300 -0.00017284710881192500 1099995.7073282299 +-3073.0864117889901 -2.7954756977777001e-05 1099995.7073279400 +-3073.0862786294301 -3.0799222959572003e-05 1099995.7073283200 +-3073.0863041342000 4.4324236296801900e-05 1099995.7073282499 +-3073.0862401132299 -2.0132436132341599e-05 1099995.7073284199 +-3073.0862407832301 8.0615092570152295e-06 1099995.7073284199 +-3073.0862380159201 -6.4563455474312697e-05 1099995.7073284299 +-3073.0862390858601 -4.3512755652864303e-05 1099995.7073284299 +-3073.0862846948498 -9.0009196902014101e-05 1099995.7073283000 +-3073.0862822399899 -4.3718800410683998e-05 1099995.7073283100 +-3073.0863386306701 -4.8156120922302300e-05 1099995.7073281500 +-3073.0863245582000 1.5237852576088501e-05 1099995.7073281901 +-3073.0863652399898 1.3916852332556600e-05 1099995.7073280700 +-3073.0863531225100 4.2122669779062102e-05 1099995.7073281100 +-3073.0863686301500 3.5386860707095999e-06 1099995.7073280700 +-3073.0863686301500 -3.5386841923583902e-06 1099995.7073280700 +-3073.0863531225100 -4.2122675199394897e-05 1099995.7073281100 +-3073.0863652399798 -1.3916856119588801e-05 1099995.7073280700 +-3073.0863245581900 -1.5237848802314700e-05 1099995.7073281901 +-3073.0863386306701 4.8156127258647397e-05 1099995.7073281500 +-3073.0862822399899 4.3718795923913600e-05 1099995.7073283100 +-3073.0862846948498 9.0009195449863405e-05 1099995.7073283000 +-3073.0862390858601 4.3512756129034303e-05 1099995.7073284299 +-3073.0862380159101 6.4563449965855495e-05 1099995.7073284299 +-3073.0862407832201 -8.0615034240640301e-06 1099995.7073284199 +-3073.0862401132099 2.0132429744785899e-05 1099995.7073284199 +-3073.0863041342100 -4.4324238843663798e-05 1099995.7073282499 +-3073.0862786294201 3.0799235009691403e-05 1099995.7073283200 +-3073.0864117889801 2.7954759409009601e-05 1099995.7073279400 +-3073.0863085950200 0.00017284710263868201 1099995.7073282299 +-3073.0865005925898 0.00028366089472526299 1099995.7073277000 +-3073.0862382754099 0.00059668359933177798 1099995.7073284299 +-3073.0862960807699 0.0011943717193897299 1099995.7073282700 +-3073.0855312342101 0.0026989839940566901 1099995.7073304099 +-3073.0844304094599 0.0065831304000912296 1099995.7073334800 +-3073.0809462038101 0.016589145719133200 1099995.7073432100 +-3073.0725729324499 0.042344263849607697 1099995.7073666099 +-3073.0522226251801 0.10800494169796500 1099995.7074234500 +-3073.0024363799498 0.27591488274564102 1099995.7075625099 +-3072.8851592193600 0.70461630617199600 1099995.7078899499 +-3072.6132968070201 1.7971584307832900 1099995.7086481301 +-3071.9990774051698 4.5751119480539701 1099995.7103556099 +-3070.6464507933902 11.615088467107400 1099995.7140805000 +-3067.7432432310702 29.394691086492699 1099995.7218495600 +-3061.6816609684101 74.128646129471406 1099995.7366328100 +-3049.3929388975098 186.26682963525499 1099995.7574951700 +-3025.2496788486101 466.38819858088800 1099995.7410583100 +-2979.3942081052001 1163.8750305940100 1099995.3493561100 +-2895.4180510065398 2895.4180510065498 1099992.3786593301 +-2747.5229292244599 7181.4371892353302 1099973.1260706601 +-2497.6224895647301 17753.134104737201 1099853.8939838100 +-2093.3396418229800 43680.464121103803 1099130.3994446299 +-1469.9800051829300 106497.75808955300 1094831.5243363599 +-574.89580371037903 253914.20652139900 1070293.0651094699 + 471.54601353314001 566750.38216437504 942758.60216753895 +-1126.5910102491600 -562234.66909616999 945458.04119432799 +-2825.1361595308199 -250503.08151533501 1071093.0047185400 +-4424.1713034656204 -104473.43719866400 1095018.5969325700 +-5601.5422506380201 -42579.920349020700 1099161.3044078101 +-6391.9681731885803 -17178.694298120201 1099847.2781277800 +-6887.9997576209598 -6887.9997576209798 1099956.8677537700 +-7181.4371892353402 -2747.5229292244499 1099973.1260706601 +-7346.1493202294696 -1090.1558362345500 1099974.9295554000 +-7434.3952887053902 -430.07083172200100 1099974.7928047101 +-7479.7480950394402 -168.61723887291501 1099974.5564951301 +-7502.1991370091800 -65.684665300567502 1099974.4145631900 +-7512.9395358972197 -25.424306548379700 1099974.3429249299 +-7517.9177162713904 -9.7828583506738909 1099974.3091624901 +-7520.1569389283804 -3.7456042194000001 1099974.2938930800 +-7521.1362786820500 -1.4293392462881100 1099974.2872026800 +-7521.5528346868095 -0.54459280829449097 1099974.2843551701 +-7521.7250528154900 -0.20784697523744200 1099974.2831776501 +-7521.7945563205203 -0.079587852924738106 1099974.2827023901 +-7521.8214912767799 -0.030661433591618700 1099974.2825182099 +-7521.8319168626304 -0.011964870251679000 1099974.2824469199 +-7521.8356247869897 -0.0046035470964752596 1099974.2824215600 +-7521.8371369164597 -0.0019056302588892301 1099974.2824112200 +-7521.8375911673402 -0.00075039206522257203 1099974.2824081201 +-7521.8378217850304 -0.00041734170272732002 1099974.2824065399 +-7521.8379440027302 -0.00023156033682416701 1099974.2824057001 +-7521.8379281866801 -0.00018492371361643700 1099974.2824058100 +-7521.8380687888903 -0.00011751984585936700 1099974.2824048500 +-7521.8379766440803 -7.4541259932533400e-05 1099974.2824054800 +-7521.8380968811598 -5.9136470244285098e-05 1099974.2824046600 +-7521.8380046909197 -1.2305863788608700e-05 1099974.2824052901 +-7521.8380618493102 -4.0697633062843101e-05 1099974.2824049001 +-7521.8380207561804 -6.5131816554335104e-06 1099974.2824051799 +-7521.8380401765598 -4.6766997103175999e-05 1099974.2824050500 +-7521.8380589620001 -1.4886995859552300e-05 1099974.2824049201 +-7521.8380569980300 -4.1278420132070803e-05 1099974.2824049301 +-7521.8380913221499 6.1421212808648403e-06 1099974.2824047001 +-7521.8380727777303 2.1178729153825300e-06 1099974.2824048200 +-7521.8380976650096 4.2251323706614898e-05 1099974.2824046500 +-7521.8380858141900 2.1756971493115801e-05 1099974.2824047301 +-7521.8380969630398 2.2916033526524298e-05 1099974.2824046600 +-7521.8380969630398 -2.2916032480159501e-05 1099974.2824046600 +-7521.8380858141900 -2.1756977399028899e-05 1099974.2824047301 +-7521.8380976650096 -4.2251332295214700e-05 1099974.2824046500 +-7521.8380727777403 -2.1178712189421599e-06 1099974.2824048200 +-7521.8380913221499 -6.1421189682170897e-06 1099974.2824047001 +-7521.8380569980400 4.1278428372211997e-05 1099974.2824049301 +-7521.8380589620001 1.4886998232353800e-05 1099974.2824049201 +-7521.8380401765498 4.6766986684491102e-05 1099974.2824050500 +-7521.8380207561804 6.5131751813349196e-06 1099974.2824051799 +-7521.8380618492902 4.0697625240215003e-05 1099974.2824049001 +-7521.8380046909197 1.2305868234826501e-05 1099974.2824052901 +-7521.8380968811698 5.9136480296719698e-05 1099974.2824046600 +-7521.8379766440603 7.4541257698198504e-05 1099974.2824054800 +-7521.8380687888903 0.00011751984482587400 1099974.2824048500 +-7521.8379281866501 0.00018492370760626000 1099974.2824058100 +-7521.8379440027502 0.00023156033545663899 1099974.2824057001 +-7521.8378217850304 0.00041734171588455400 1099974.2824065399 +-7521.8375911673502 0.00075039206805315795 1099974.2824081201 +-7521.8371369164597 0.0019056302569443800 1099974.2824112200 +-7521.8356247869897 0.0046035470923771801 1099974.2824215600 +-7521.8319168626404 0.011964870264370301 1099974.2824469199 +-7521.8214912767799 0.030661433600561401 1099974.2825182099 +-7521.7945563205003 0.079587852909652701 1099974.2827023901 +-7521.7250528154900 0.20784697524196799 1099974.2831776501 +-7521.5528346868005 0.54459280829165502 1099974.2843551701 +-7521.1362786820600 1.4293392462922001 1099974.2872026800 +-7520.1569389283704 3.7456042194077099 1099974.2938930800 +-7517.9177162714204 9.7828583506728393 1099974.3091624901 +-7512.9395358972297 25.424306548377800 1099974.3429249299 +-7502.1991370092001 65.684665300563594 1099974.4145631900 +-7479.7480950394402 168.61723887290901 1099974.5564951301 +-7434.3952887054002 430.07083172199901 1099974.7928047101 +-7346.1493202294696 1090.1558362345600 1099974.9295554000 +-7181.4371892353402 2747.5229292244499 1099973.1260706601 +-6887.9997576209598 6887.9997576209598 1099956.8677537700 +-6391.9681731885803 17178.694298120201 1099847.2781277800 +-5601.5422506380501 42579.920349020802 1099161.3044078101 +-4424.1713034656204 104473.43719866400 1095018.5969325700 +-2825.1361595308699 250503.08151533501 1071093.0047185500 +-1126.5910102491800 562234.66909616999 945458.04119432799 +-7679.4843639338396 -553484.35399110895 950576.71726533899 +-9864.6579728675606 -244186.94871026301 1072508.9382390501 +-12503.269935447001 -100877.04548248200 1095293.3351096599 +-14670.826329904199 -40680.305245796699 1099149.6165763400 +-16202.377889524900 -16202.377889524900 1099761.3222429000 +-17178.694298120201 -6391.9681731885703 1099847.2781277800 +-17753.134104737299 -2497.6224895647401 1099853.8939838100 +-18069.878628891100 -965.59959062896201 1099851.1477030700 +-18235.327548974299 -368.88774080355000 1099848.7790378300 +-18317.824841091799 -139.10264297599400 1099847.4612161200 +-18357.307175600399 -51.737688564953402 1099846.8105133900 +-18375.513393277499 -18.978860229440201 1099846.5075397301 +-18383.623338977101 -6.8723085910669299 1099846.3721564501 +-18387.118790335098 -2.4622009501597000 1099846.3137441201 +-18388.577201452699 -0.87672683176837296 1099846.2893639901 +-18389.166340708402 -0.31262109805749200 1099846.2795141900 +-18389.396518248999 -0.11269021101016100 1099846.2756656900 +-18389.482813988900 -0.041653909413204203 1099846.2742228301 +-18389.514197501299 -0.015900155277610999 1099846.2736980901 +-18389.524762349600 -0.0063108669325175797 1099846.2735214501 +-18389.528141802599 -0.0026458783489976198 1099846.2734649400 +-18389.529272772801 -0.0010644430828043901 1099846.2734460300 +-18389.529436684901 -0.00049939111275879499 1099846.2734432900 +-18389.529697758899 -0.00021060846423041600 1099846.2734389300 +-18389.529677396898 -0.00012053628620156500 1099846.2734392700 +-18389.529875204498 -6.9531724772122495e-05 1099846.2734359601 +-18389.529907213899 -6.8388453009956299e-05 1099846.2734354299 +-18389.530051879799 -4.0772764045574999e-05 1099846.2734330101 +-18389.530087884799 -7.3305864844753501e-05 1099846.2734324001 +-18389.530137084701 -2.3296838168628499e-05 1099846.2734315800 +-18389.530155678400 -8.4782865783726398e-05 1099846.2734312699 +-18389.530145892699 4.1599365144923601e-07 1099846.2734314301 +-18389.530187769800 -7.7837430982576796e-05 1099846.2734307300 +-18389.530166869201 2.0174080985678599e-05 1099846.2734310799 +-18389.530219315198 -6.5225169576318902e-05 1099846.2734302101 +-18389.530177787201 4.0967067610470502e-05 1099846.2734308999 +-18389.530208002700 -3.2037026517175898e-05 1099846.2734304001 +-18389.530168751699 7.0127489074178794e-05 1099846.2734310499 +-18389.530189684199 -1.4413011014943700e-05 1099846.2734306999 +-18389.530179466499 5.3674475194370603e-05 1099846.2734308699 +-18389.530179466499 -5.3674483256433502e-05 1099846.2734308699 +-18389.530189684199 1.4413004719638601e-05 1099846.2734306999 +-18389.530168751699 -7.0127467324178203e-05 1099846.2734310499 +-18389.530208002700 3.2037029620324400e-05 1099846.2734304001 +-18389.530177787201 -4.0967077059882200e-05 1099846.2734308999 +-18389.530219315300 6.5225179223970300e-05 1099846.2734302101 +-18389.530166869201 -2.0174095052747601e-05 1099846.2734310799 +-18389.530187769800 7.7837425018124001e-05 1099846.2734307300 +-18389.530145892699 -4.1599588168691900e-07 1099846.2734314301 +-18389.530155678400 8.4782870368374096e-05 1099846.2734312699 +-18389.530137084701 2.3296855255998301e-05 1099846.2734315800 +-18389.530087884799 7.3305842819782800e-05 1099846.2734324001 +-18389.530051879901 4.0772757118792697e-05 1099846.2734330101 +-18389.529907214001 6.8388442347859496e-05 1099846.2734354299 +-18389.529875204498 6.9531739011268097e-05 1099846.2734359601 +-18389.529677396898 0.00012053630378951100 1099846.2734392700 +-18389.529697758899 0.00021060846507229099 1099846.2734389300 +-18389.529436684901 0.00049939112669029103 1099846.2734432900 +-18389.529272772801 0.0010644430697103800 1099846.2734460300 +-18389.528141802599 0.0026458783440937001 1099846.2734649400 +-18389.524762349600 0.0063108669247807997 1099846.2735214501 +-18389.514197501299 0.015900155262272401 1099846.2736980901 +-18389.482813988900 0.041653909414224297 1099846.2742228301 +-18389.396518248999 0.11269021102252200 1099846.2756656900 +-18389.166340708402 0.31262109806906402 1099846.2795141900 +-18388.577201452699 0.87672683177142696 1099846.2893639901 +-18387.118790335098 2.4622009501716300 1099846.3137441201 +-18383.623338977101 6.8723085910820503 1099846.3721564501 +-18375.513393277499 18.978860229432900 1099846.5075397301 +-18357.307175600399 51.737688564941799 1099846.8105133900 +-18317.824841091900 139.10264297598800 1099847.4612161200 +-18235.327548974299 368.88774080355000 1099848.7790378300 +-18069.878628891100 965.59959062895803 1099851.1477030700 +-17753.134104737299 2497.6224895647301 1099853.8939838100 +-17178.694298120201 6391.9681731885803 1099847.2781277800 +-16202.377889524900 16202.377889524900 1099761.3222429000 +-14670.826329904199 40680.305245796699 1099149.6165763400 +-12503.269935447001 100877.04548248200 1095293.3351096599 +-9864.6579728676297 244186.94871026301 1072508.9382390501 +-7679.4843639338897 553484.35399110895 950576.71726533899 +-28309.924298523802 -538415.14051355200 958805.34241940104 +-29717.441485535699 -233869.41533837101 1074440.3055734800 +-33756.246881396102 -95205.303710472901 1095352.2109083801 +-37720.436059344902 -37720.436059344902 1098705.7556083801 +-40680.305245796699 -14670.826329904199 1099149.6165763400 +-42579.920349020700 -5601.5422506380401 1099161.3044078101 +-43680.464121103803 -2093.3396418229800 1099130.3994446299 +-44271.296391663898 -762.32538647913202 1099108.4892656400 +-44569.840423817303 -269.01893890968802 1099096.6549641599 +-44713.216735599402 -91.327319714752207 1099090.8606245799 +-44779.066405362799 -29.521394446560699 1099088.1831501699 +-44808.097482573598 -8.9428221054886397 1099087.0003416601 +-44820.406802995603 -2.4690018039887498 1099086.4984740401 +-44825.427794789699 -0.58619736610854101 1099086.2937106800 +-44827.394901604297 -0.10096219141702700 1099086.2134820600 +-44828.132527335598 -0.0016697210931910201 1099086.1833969699 +-44828.395411715101 0.0078644853391797997 1099086.1726747400 +-44828.483253325401 0.0034101014096461499 1099086.1690919399 +-44828.510168788001 0.00024852897177183599 1099086.1679941399 +-44828.517147009399 -0.00075397339961893897 1099086.1677095201 +-44828.518541328798 -0.00083290919920924497 1099086.1676526500 +-44828.518315706599 -0.00053651288622032396 1099086.1676618501 +-44828.518177038502 -0.00032196139152251602 1099086.1676675100 +-44828.517937960300 -0.00012931359451772700 1099086.1676772600 +-44828.517921836799 -4.4565161247608098e-05 1099086.1676779201 +-44828.517964554900 2.8589610374923700e-05 1099086.1676761799 +-44828.518011269902 3.6277832541159200e-05 1099086.1676742700 +-44828.518179756204 5.2726764731688398e-05 1099086.1676674001 +-44828.518195817698 3.0672120471871399e-06 1099086.1676667400 +-44828.518318931303 -2.2884147341059200e-06 1099086.1676617200 +-44828.518293684101 -3.0651841635072103e-05 1099086.1676627500 +-44828.518362282201 -3.0452445385631200e-05 1099086.1676599500 +-44828.518373574399 -1.4593505187052400e-05 1099086.1676594899 +-44828.518434801103 -3.4439189537101299e-05 1099086.1676570000 +-44828.518459652099 -4.8807108527570498e-06 1099086.1676559800 +-44828.518471246200 -4.0769502695167003e-05 1099086.1676555099 +-44828.518462669897 1.5213451088236000e-05 1099086.1676558601 +-44828.518453170298 -1.5730148425914900e-05 1099086.1676562501 +-44828.518455861602 4.0868143236920699e-05 1099086.1676561399 +-44828.518461090302 -1.6944271747692300e-05 1099086.1676559199 +-44828.518461090403 1.6944258840030900e-05 1099086.1676559199 +-44828.518455861602 -4.0868139000379697e-05 1099086.1676561399 +-44828.518453170298 1.5730177932615301e-05 1099086.1676562501 +-44828.518462669897 -1.5213390571600899e-05 1099086.1676558601 +-44828.518471246200 4.0769512808268101e-05 1099086.1676555099 +-44828.518459652099 4.8806734828433601e-06 1099086.1676559800 +-44828.518434801197 3.4439161735040101e-05 1099086.1676570000 +-44828.518373574399 1.4593475334678899e-05 1099086.1676594899 +-44828.518362282099 3.0452436233293499e-05 1099086.1676599500 +-44828.518293684101 3.0651836760370101e-05 1099086.1676627500 +-44828.518318931201 2.2883876234154202e-06 1099086.1676617200 +-44828.518195817698 -3.0671673753356499e-06 1099086.1676667400 +-44828.518179756204 -5.2726701167812698e-05 1099086.1676674001 +-44828.518011269902 -3.6277879771616999e-05 1099086.1676742700 +-44828.517964554900 -2.8589645226629799e-05 1099086.1676761799 +-44828.517921836697 4.4565182593085702e-05 1099086.1676779201 +-44828.517937960300 0.00012931359192918000 1099086.1676772600 +-44828.518177038597 0.00032196140595842199 1099086.1676675100 +-44828.518315706599 0.00053651288760705399 1099086.1676618501 +-44828.518541328798 0.00083290914227107801 1099086.1676526500 +-44828.517147009399 0.00075397339783524902 1099086.1677095201 +-44828.510168788001 -0.00024852893477946599 1099086.1679941399 +-44828.483253325503 -0.0034101013900459500 1099086.1690919399 +-44828.395411715101 -0.0078644853406189992 1099086.1726747400 +-44828.132527335598 0.0016697211037079900 1099086.1833969699 +-44827.394901604297 0.10096219138899699 1099086.2134820600 +-44825.427794789699 0.58619736610801798 1099086.2937106800 +-44820.406802995603 2.4690018040126498 1099086.4984740401 +-44808.097482573598 8.9428221054816301 1099087.0003416601 +-44779.066405362799 29.521394446593199 1099088.1831501699 +-44713.216735599402 91.327319714742202 1099090.8606245799 +-44569.840423817303 269.01893890965903 1099096.6549641599 +-44271.296391663796 762.32538647911099 1099108.4892656400 +-43680.464121103803 2093.3396418230100 1099130.3994446299 +-42579.920349020700 5601.5422506380501 1099161.3044078101 +-40680.305245796699 14670.826329904199 1099149.6165763400 +-37720.436059344902 37720.436059344902 1098705.7556083801 +-33756.246881396000 95205.303710473003 1095352.2109083801 +-29717.441485535699 233869.41533837101 1074440.3055734800 +-28309.924298523802 538415.14051355200 958805.34241940000 +-84686.423861058996 -516972.83114608598 967247.28041511006 +-81823.679189841801 -220293.14511020100 1074604.9579921400 +-87858.202385179495 -87858.202385179393 1092960.1422500701 +-95205.303710473003 -33756.246881396102 1095352.2109083801 +-100877.04548248200 -12503.269935447101 1095293.3351096599 +-104473.43719866400 -4424.1713034656204 1095018.5969325700 +-106497.75808955300 -1469.9800051829100 1094831.5243363599 +-107545.32155349400 -443.83872732063401 1094730.0154920099 +-108053.08187546200 -112.52868469702500 1094680.0988574300 +-108286.04538144900 -17.390582485718699 1094657.0842383499 +-108387.80530071299 4.1011902100820103 1094647.0132628500 +-108430.22653964300 5.7872784899239500 1094642.8120346200 +-108447.09563824401 3.7503483808409501 1094641.1409377800 +-108453.47003991299 1.9430522079375900 1094640.5094059501 +-108455.73927964800 0.88752617436894199 1094640.2845759499 +-108456.48692050000 0.36843131539607998 1094640.2105005700 +-108456.70614902901 0.13929273134379300 1094640.1887795301 +-108456.75779230900 0.047231092263511999 1094640.1836627300 +-108456.76297030800 0.013487418488620799 1094640.1831497001 +-108456.75913676800 0.0025377642625997298 1094640.1835295199 +-108456.75535104101 -0.00020539160714813399 1094640.1839046101 +-108456.75305770400 -0.00065796171813489702 1094640.1841318400 +-108456.75186881200 -0.00040984359693800799 1094640.1842496300 +-108456.75125848800 -0.00020314946453330800 1094640.1843101000 +-108456.75094122200 -3.7852393683885997e-05 1094640.1843415401 +-108456.75086249100 7.4595018069819905e-05 1094640.1843493399 +-108456.75081922900 0.00013273231373095101 1094640.1843536200 +-108456.75092014100 9.8729296885428198e-05 1094640.1843436300 +-108456.75094179400 0.00013077975636032499 1094640.1843414800 +-108456.75101476299 -7.1904568308844696e-06 1094640.1843342499 +-108456.75099806501 9.4186008741944501e-05 1094640.1843359000 +-108456.75106543100 -4.4031557104647698e-05 1094640.1843292301 +-108456.75110666300 0.00011831089965119800 1094640.1843251400 +-108456.75122494600 -4.0557995558414101e-05 1094640.1843134300 +-108456.75127144200 9.1446165509694103e-05 1094640.1843088199 +-108456.75132053001 -7.5142716673120202e-05 1094640.1843039601 +-108456.75129831499 6.1157641074026598e-05 1094640.1843061601 +-108456.75130777300 -5.6584080443073602e-05 1094640.1843052199 +-108456.75131118001 7.7753383797116998e-05 1094640.1843048800 +-108456.75133247100 -5.0538408565735398e-05 1094640.1843027701 +-108456.75133247100 5.0538464150999397e-05 1094640.1843027701 +-108456.75131118001 -7.7753430055425000e-05 1094640.1843048800 +-108456.75130777300 5.6584094627686802e-05 1094640.1843052199 +-108456.75129831499 -6.1157650302702906e-05 1094640.1843061601 +-108456.75132053001 7.5142748201404404e-05 1094640.1843039601 +-108456.75127144200 -9.1446089318255000e-05 1094640.1843088199 +-108456.75122494600 4.0557936440175300e-05 1094640.1843134300 +-108456.75110666300 -0.00011831104188144600 1094640.1843251400 +-108456.75106543100 4.4031556351321599e-05 1094640.1843292301 +-108456.75099806501 -9.4186004364304500e-05 1094640.1843359000 +-108456.75101476299 7.1904254139314800e-06 1094640.1843342499 +-108456.75094179400 -0.00013077971268613301 1094640.1843414800 +-108456.75092014100 -9.8729232452914904e-05 1094640.1843436300 +-108456.75081922900 -0.00013273226660676300 1094640.1843536200 +-108456.75086249100 -7.4595096353985500e-05 1094640.1843493399 +-108456.75094122200 3.7852355224038799e-05 1094640.1843415401 +-108456.75125848800 0.00020314959539812901 1094640.1843101000 +-108456.75186881200 0.00040984365321559301 1094640.1842496300 +-108456.75305770400 0.00065796164011882100 1094640.1841318400 +-108456.75535104101 0.00020539153920611999 1094640.1839046101 +-108456.75913676900 -0.0025377642558164601 1094640.1835295199 +-108456.76297030800 -0.013487418418845300 1094640.1831497001 +-108456.75779230900 -0.047231092273365902 1094640.1836627300 +-108456.70614902901 -0.13929273139109799 1094640.1887795301 +-108456.48692050000 -0.36843131541836899 1094640.2105005700 +-108455.73927964800 -0.88752617432397596 1094640.2845759499 +-108453.47003991299 -1.9430522078544199 1094640.5094059501 +-108447.09563824401 -3.7503483808863902 1094641.1409377800 +-108430.22653964300 -5.7872784899836800 1094642.8120346200 +-108387.80530071299 -4.1011902101063802 1094647.0132628500 +-108286.04538144900 17.390582485757200 1094657.0842383499 +-108053.08187546200 112.52868469696701 1094680.0988574300 +-107545.32155349400 443.83872732058302 1094730.0154920099 +-106497.75808955300 1469.9800051829500 1094831.5243363599 +-104473.43719866400 4424.1713034656204 1095018.5969325700 +-100877.04548248200 12503.269935447101 1095293.3351096599 +-95205.303710472901 33756.246881396102 1095352.2109083801 +-87858.202385179393 87858.202385179393 1092960.1422500701 +-81823.679189841700 220293.14511020100 1074604.9579921400 +-84686.423861058996 516972.83114608598 967247.28041511006 +-222091.36909522599 -497208.51751455298 955750.55003091099 +-210241.42783246501 -210241.42783246501 1059054.8069131901 +-220293.14511020100 -81823.679189841801 1074604.9579921400 +-233869.41533837101 -29717.441485535699 1074440.3055734800 +-244186.94871026301 -9864.6579728676206 1072508.9382390501 +-250503.08151533501 -2825.1361595308699 1071093.0047185500 +-253914.20652139900 -574.89580371036595 1070293.0651094699 +-255602.00112930001 22.906474370055601 1069891.4040658500 +-256381.55550723200 116.34596073463599 1069704.8585751599 +-256720.86050067499 88.930714368238498 1069623.4813592699 +-256860.54241596299 51.117837445615400 1069589.9490630699 +-256914.86176917201 25.626353917002600 1069576.9038014100 +-256934.67468384601 11.736982198787400 1069572.1447416900 +-256941.33966868601 5.0006042956682499 1069570.5436969800 +-256943.32862485401 1.9925942827509200 1069570.0659008799 +-256943.79939859500 0.73944471480308605 1069569.9528081701 +-256943.84442139801 0.25153096364352301 1069569.9419925199 +-256943.80344049199 0.075128325085810105 1069569.9518374300 +-256943.76454259900 0.017410155084866000 1069569.9611819100 +-256943.74104813300 0.0011936104207787199 1069569.9668260100 +-256943.72918822200 -0.0019614156772641599 1069569.9696751300 +-256943.72379700901 -0.0016752206305101799 1069569.9709702600 +-256943.72149191899 -0.0010865246946030499 1069569.9715240200 +-256943.72049701901 -0.00043949366583654302 1069569.9717630199 +-256943.72011626299 -0.00024450146808529302 1069569.9718544900 +-256943.71988771300 8.5075170525190005e-05 1069569.9719094001 +-256943.71994872100 8.5906346984578806e-05 1069569.9718947399 +-256943.71989812099 0.00018219353812805799 1069569.9719068999 +-256943.71999688199 8.9198059276803296e-05 1069569.9718831701 +-256943.71988307699 7.7686749684936500e-05 1069569.9719105100 +-256943.71987001199 2.6106216592423600e-05 1069569.9719136499 +-256943.71979478901 0.00010156039251073200 1069569.9719317199 +-256943.71986022301 7.1468914518752597e-05 1069569.9719159999 +-256943.71993696599 0.00015979767120897299 1069569.9718975599 +-256943.72000685200 3.6204265409183800e-06 1069569.9718807701 +-256943.72001638700 9.3205982974280002e-05 1069569.9718784799 +-256943.71996960399 -8.4679199704707300e-05 1069569.9718897201 +-256943.71995093700 0.00010687166590582100 1069569.9718942100 +-256943.71995565799 -6.9389370329524895e-05 1069569.9718930700 +-256943.71998433000 0.00011455878347081600 1069569.9718861801 +-256943.71998433000 -0.00011455874859239501 1069569.9718861801 +-256943.71995565799 6.9389375022554497e-05 1069569.9718930700 +-256943.71995093700 -0.00010687164564503600 1069569.9718942100 +-256943.71996960399 8.4679253277720703e-05 1069569.9718897201 +-256943.72001638700 -9.3206004717156097e-05 1069569.9718784799 +-256943.72000685200 -3.6205213667338000e-06 1069569.9718807701 +-256943.71993696500 -0.00015979778732394000 1069569.9718975599 +-256943.71986022199 -7.1468890405484303e-05 1069569.9719159999 +-256943.71979478901 -0.00010156027612427900 1069569.9719317199 +-256943.71987001199 -2.6106163331329100e-05 1069569.9719136499 +-256943.71988307699 -7.7686825806966498e-05 1069569.9719105100 +-256943.71999688199 -8.9198096219196004e-05 1069569.9718831701 +-256943.71989812099 -0.00018219351043725500 1069569.9719068999 +-256943.71994872100 -8.5906351845247098e-05 1069569.9718947399 +-256943.71988771300 -8.5075165340037798e-05 1069569.9719094001 +-256943.72011626299 0.00024450146701153301 1069569.9718544900 +-256943.72049701901 0.00043949367109505399 1069569.9717630199 +-256943.72149191899 0.0010865247632788799 1069569.9715240200 +-256943.72379700799 0.0016752206431624699 1069569.9709702600 +-256943.72918822200 0.0019614156273163401 1069569.9696751300 +-256943.74104813300 -0.0011936104845011401 1069569.9668260100 +-256943.76454259900 -0.017410155135273799 1069569.9611819100 +-256943.80344049199 -0.075128324996260806 1069569.9518374300 +-256943.84442139801 -0.25153096360908300 1069569.9419925199 +-256943.79939859500 -0.73944471482203200 1069569.9528081701 +-256943.32862485401 -1.9925942827502501 1069570.0659008799 +-256941.33966868601 -5.0006042957167098 1069570.5436969800 +-256934.67468384601 -11.736982198742799 1069572.1447417000 +-256914.86176917201 -25.626353917043101 1069576.9038014100 +-256860.54241596299 -51.117837445737003 1069589.9490630699 +-256720.86050067499 -88.930714368135895 1069623.4813592699 +-256381.55550723200 -116.34596073459601 1069704.8585751599 +-255602.00112930001 -22.906474370124201 1069891.4040658500 +-253914.20652139900 574.89580371043303 1070293.0651094699 +-250503.08151533501 2825.1361595309199 1071093.0047185400 +-244186.94871026301 9864.6579728676097 1072508.9382390501 +-233869.41533837101 29717.441485535699 1074440.3055734800 +-220293.14511020100 81823.679189841801 1074604.9579921400 +-210241.42783246501 210241.42783246501 1059054.8069131901 +-222091.36909522599 497208.51751455298 955750.55003091099 +-505613.03256497299 -505613.03256497299 835889.30044647900 +-497208.51751455298 -222091.36909522599 955750.55003091099 +-516972.83114608598 -84686.423861058996 967247.28041511006 +-538415.14051355200 -28309.924298523700 958805.34241940104 +-553484.35399110895 -7679.4843639338496 950576.71726533899 +-562234.66909616999 -1126.5910102491700 945458.04119432799 +-566750.38216437504 471.54601353310198 942758.60216753895 +-568888.58756020002 588.65734351482899 941469.82342839497 +-569832.13216431299 395.92100159957999 940899.13614565099 +-570222.73231285205 217.74198556482099 940662.52617083304 +-570374.37706612202 107.00276323917400 940570.60263270105 +-570429.14200834802 48.542762271396100 940537.39510517102 +-570447.14829199505 20.605691551534001 940526.47521531105 +-570452.25323402602 8.2151789026216306 940523.37914202502 +-570453.28997414804 3.0638914400671200 940522.75036188401 +-570453.26167212904 1.0539543261804101 940522.76753224805 +-570453.06853465096 0.32303356019501300 940522.88467601698 +-570452.92179180204 0.080089491899032500 940522.97367963800 +-570452.83872587106 0.0096878152978336698 940523.02406139695 +-570452.79791293095 -0.0054472476389189799 940523.04881555599 +-570452.77970908198 -0.0058435385098028802 940523.05985668499 +-570452.77227435203 -0.0037056891711654502 940523.06436605100 +-570452.76938541199 -0.0019191494109433299 940523.06611827097 +-570452.76836527605 -0.0010062073504636900 940523.06673701096 +-570452.76797587401 -0.00032227816453552101 940523.06697319401 +-570452.76790761796 -0.00010268242998645900 940523.06701459305 +-570452.76792816096 0.00015690708036692700 940523.06700213300 +-570452.76800308202 0.00013246640045155701 940523.06695669203 +-570452.76798202703 9.1783232592572507e-05 940523.06696946197 +-570452.76788044104 1.7695257943548701e-05 940523.06703107699 +-570452.76770393096 -1.4796890539839899e-05 940523.06713813497 +-570452.76758386800 7.3960550723806595e-05 940523.06721095601 +-570452.76756542700 0.00012875110583581600 940523.06722214201 +-570452.76761575299 0.00014723381333952101 940523.06719161803 +-570452.76765581104 9.2187243255344297e-05 940523.06716732203 +-570452.76760803198 -1.6183235628412300e-05 940523.06719630002 +-570452.76752436894 2.9019547111149301e-06 940523.06724704395 +-570452.76745759603 -2.9124497066370199e-05 940523.06728754402 +-570452.76746375696 7.4453323030438404e-05 940523.06728380697 +-570452.76749017602 -2.0764988020865700e-05 940523.06726778299 +-570452.76749017602 2.0764998658072399e-05 940523.06726778299 +-570452.76746375696 -7.4453295657800000e-05 940523.06728380697 +-570452.76745759603 2.9124492963672501e-05 940523.06728754402 +-570452.76752436894 -2.9019737845843800e-06 940523.06724704395 +-570452.76760803198 1.6183211109155901e-05 940523.06719630002 +-570452.76765581104 -9.2187272448783196e-05 940523.06716732203 +-570452.76761575299 -0.00014723393408583001 940523.06719161803 +-570452.76756542700 -0.00012875112310254500 940523.06722214201 +-570452.76758386800 -7.3960514480331198e-05 940523.06721095601 +-570452.76770393096 1.4796900853774600e-05 940523.06713813497 +-570452.76788043999 -1.7695192241330699e-05 940523.06703107699 +-570452.76798202703 -9.1783258179374295e-05 940523.06696946197 +-570452.76800308202 -0.00013246640508378100 940523.06695669203 +-570452.76792816096 -0.00015690702843273500 940523.06700213300 +-570452.76790761796 0.00010268248570441501 940523.06701459305 +-570452.76797587401 0.00032227812230825701 940523.06697319401 +-570452.76836527605 0.0010062073953646200 940523.06673701201 +-570452.76938541199 0.0019191495140766200 940523.06611827097 +-570452.77227435203 0.0037056890775041900 940523.06436604995 +-570452.77970908198 0.0058435383755166496 940523.05985668499 +-570452.79791293095 0.0054472476694791402 940523.04881555599 +-570452.83872587199 -0.0096878152465037694 940523.02406139695 +-570452.92179180204 -0.080089491954785000 940522.97367963800 +-570453.06853465096 -0.32303356019825902 940522.88467601698 +-570453.26167212904 -1.0539543261181099 940522.76753224805 +-570453.28997414804 -3.0638914400897699 940522.75036188401 +-570452.25323402602 -8.2151789026186197 940523.37914202595 +-570447.14829199505 -20.605691551464901 940526.47521531000 +-570429.14200834802 -48.542762271482601 940537.39510517102 +-570374.37706612295 -107.00276323920799 940570.60263270105 +-570222.73231285205 -217.74198556474201 940662.52617083304 +-569832.13216431299 -395.92100159952798 940899.13614565099 +-568888.58756020002 -588.65734351488300 941469.82342839497 +-566750.38216437504 -471.54601353314501 942758.60216753895 +-562234.66909616999 1126.5910102492001 945458.04119432799 +-553484.35399110895 7679.4843639339697 950576.71726533899 +-538415.14051355200 28309.924298523802 958805.34241940000 +-516972.83114608598 84686.423861058895 967247.28041511006 +-497208.51751455298 222091.36909522599 955750.55003091099 +-505613.03256497299 505613.03256497299 835889.30044647900 +# End: Data Text +# End: Segment diff --git a/test/sascalculator/data/isolated_skyrmion_V2.omf b/test/sascalculator/data/isolated_skyrmion_V2.omf new file mode 100644 index 0000000000..8afe5b2429 --- /dev/null +++ b/test/sascalculator/data/isolated_skyrmion_V2.omf @@ -0,0 +1,6440 @@ +# OOMMF OVF 2.0 +# +# Segment count: 1 +# +# Begin: Segment +# Begin: Header +# +# Title: Oxs_MinDriver::Magnetization +# Desc: Oxs vector field output +# Desc: MIF source file: /mnt/ceph/home/h1110371/Desktop/MagneticSasviewTestData/OOMMF_chiraltestcases/INPUT_isolated_sk_DMI_T.mif +# Desc: Iteration: 217, State id: 508 +# Desc: Stage: 0, Stage iteration: 217 +# Desc: Stage simulation time: -1 s +# Desc: Total simulation time: -2 s +# meshunit: m +# meshtype: rectangular +# xbase: 3.7499999999999995e-10 +# ybase: 3.7499999999999995e-10 +# zbase: 1.0000000000000001e-09 +# xnodes: 80 +# ynodes: 80 +# znodes: 1 +# xstepsize: 7.4999999999999989e-10 +# ystepsize: 7.4999999999999989e-10 +# zstepsize: 2.0000000000000001e-09 +# xmin: 0 +# ymin: 0 +# zmin: 0 +# xmax: 5.9999999999999995e-08 +# ymax: 5.9999999999999995e-08 +# zmax: 2.0000000000000001e-09 +# valuedim: 3 +# valuelabels: Magnetization_x Magnetization_y Magnetization_z +# valueunits: A/m A/m A/m +# +# End: Header +# +# Begin: Data Text + 505613.032564973 -505613.032564973 835889.300446479 + 497208.517514553 -222091.369095226 955750.550030911 + 516972.831146086 -84686.4238610590 967247.280415110 + 538415.140513552 -28309.9242985238 958805.342419400 + 553484.353991109 -7679.48436393392 950576.717265339 + 562234.669096170 -1126.59101024919 945458.041194328 + 566750.382164375 471.546013533108 942758.602167539 + 568888.587560200 588.657343514806 941469.823428395 + 569832.132164313 395.921001599490 940899.136145651 + 570222.732312852 217.741985564809 940662.526170833 + 570374.377066122 107.002763239196 940570.602632701 + 570429.142008348 48.5427622714285 940537.395105171 + 570447.148291995 20.6056915515285 940526.475215310 + 570452.253234026 8.21517890261330 940523.379142025 + 570453.289974148 3.06389144009681 940522.750361884 + 570453.261672129 1.05395432611429 940522.767532248 + 570453.068534651 0.323033560188252 940522.884676017 + 570452.921791802 0.0800894919981277 940522.973679638 + 570452.838725871 0.00968781530071302 940523.024061397 + 570452.797912932 -0.00544724757460666 940523.048815556 + 570452.779709082 -0.00584353853097528 940523.059856685 + 570452.772274352 -0.00370568915559078 940523.064366051 + 570452.769385412 -0.00191914940912211 940523.066118271 + 570452.768365276 -0.00100620745080621 940523.066737011 + 570452.767975874 -0.000322278172956229 940523.066973194 + 570452.767907618 -0.000102682476728700 940523.067014593 + 570452.767928161 0.000156907026680431 940523.067002133 + 570452.768003082 0.000132466481191563 940523.066956692 + 570452.767982027 9.17833584648662e-05 940523.066969462 + 570452.767880441 1.76952128669896e-05 940523.067031077 + 570452.767703931 -1.47969406170854e-05 940523.067138135 + 570452.767583868 7.39605388830757e-05 940523.067210956 + 570452.767565427 0.000128751101650279 940523.067222142 + 570452.767615753 0.000147233846252729 940523.067191618 + 570452.767655811 9.21872558097580e-05 940523.067167321 + 570452.767608032 -1.61832152994662e-05 940523.067196300 + 570452.767524369 2.90190430922745e-06 940523.067247044 + 570452.767457596 -2.91246296922062e-05 940523.067287544 + 570452.767463757 7.44532501926827e-05 940523.067283808 + 570452.767490176 -2.07649468975814e-05 940523.067267783 + 570452.767490176 2.07650604711729e-05 940523.067267783 + 570452.767463756 -7.44533231472866e-05 940523.067283807 + 570452.767457596 2.91244096917775e-05 940523.067287544 + 570452.767524369 -2.90187408749834e-06 940523.067247044 + 570452.767608032 1.61834073644460e-05 940523.067196300 + 570452.767655811 -9.21872185380095e-05 940523.067167321 + 570452.767615753 -0.000147233862726545 940523.067191618 + 570452.767565427 -0.000128751126421778 940523.067222142 + 570452.767583868 -7.39606169231964e-05 940523.067210956 + 570452.767703931 1.47969060715862e-05 940523.067138135 + 570452.767880441 -1.76951821100599e-05 940523.067031077 + 570452.767982027 -9.17833990996281e-05 940523.066969463 + 570452.768003082 -0.000132466441188409 940523.066956692 + 570452.767928161 -0.000156907012711637 940523.067002133 + 570452.767907618 0.000102682476948428 940523.067014593 + 570452.767975874 0.000322278283127943 940523.066973194 + 570452.768365276 0.00100620741727473 940523.066737011 + 570452.769385412 0.00191914945940744 940523.066118271 + 570452.772274352 0.00370568907155233 940523.064366051 + 570452.779709082 0.00584353837605643 940523.059856685 + 570452.797912931 0.00544724770254308 940523.048815556 + 570452.838725871 -0.00968781524817157 940523.024061397 + 570452.921791802 -0.0800894919723155 940522.973679638 + 570453.068534651 -0.323033560178483 940522.884676017 + 570453.261672129 -1.05395432621640 940522.767532248 + 570453.289974148 -3.06389144004391 940522.750361884 + 570452.253234026 -8.21517890257764 940523.379142025 + 570447.148291995 -20.6056915515807 940526.475215311 + 570429.142008348 -48.5427622714457 940537.395105171 + 570374.377066122 -107.002763239190 940570.602632700 + 570222.732312852 -217.741985564760 940662.526170833 + 569832.132164313 -395.921001599523 940899.136145651 + 568888.587560200 -588.657343514882 941469.823428395 + 566750.382164375 -471.546013533153 942758.602167539 + 562234.669096170 1126.59101024917 945458.041194328 + 553484.353991109 7679.48436393387 950576.717265339 + 538415.140513552 28309.9242985238 958805.342419401 + 516972.831146086 84686.4238610591 967247.280415110 + 497208.517514553 222091.369095227 955750.550030911 + 505613.032564973 505613.032564973 835889.300446479 + 222091.369095227 -497208.517514553 955750.550030911 + 210241.427832465 -210241.427832465 1059054.80691319 + 220293.145110201 -81823.6791898417 1074604.95799214 + 233869.415338371 -29717.4414855358 1074440.30557348 + 244186.948710263 -9864.65797286766 1072508.93823905 + 250503.081515335 -2825.13615953084 1071093.00471855 + 253914.206521399 -574.895803710377 1070293.06510947 + 255602.001129300 22.9064743700437 1069891.40406585 + 256381.555507232 116.345960734571 1069704.85857516 + 256720.860500675 88.9307143682168 1069623.48135927 + 256860.542415963 51.1178374456599 1069589.94906307 + 256914.861769172 25.6263539169995 1069576.90380141 + 256934.674683846 11.7369821987970 1069572.14474169 + 256941.339668686 5.00060429568157 1069570.54369698 + 256943.328624854 1.99259428275854 1069570.06590088 + 256943.799398595 0.739444714800917 1069569.95280817 + 256943.844421398 0.251530963638375 1069569.94199252 + 256943.803440492 0.0751283251287008 1069569.95183743 + 256943.764542599 0.0174101550824519 1069569.96118191 + 256943.741048133 0.00119361045124663 1069569.96682601 + 256943.729188222 -0.00196141561303536 1069569.96967513 + 256943.723797009 -0.00167522065341327 1069569.97097026 + 256943.721491919 -0.00108652473872917 1069569.97152402 + 256943.720497019 -0.000439493692363027 1069569.97176302 + 256943.720116263 -0.000244501484574195 1069569.97185449 + 256943.719887713 8.50751286081724e-05 1069569.97190940 + 256943.719948721 8.59063638395250e-05 1069569.97189474 + 256943.719898121 0.000182193568731438 1069569.97190690 + 256943.719996882 8.91981220467872e-05 1069569.97188317 + 256943.719883077 7.76867690503957e-05 1069569.97191051 + 256943.719870012 2.61061498227196e-05 1069569.97191365 + 256943.719794789 0.000101560345913476 1069569.97193172 + 256943.719860223 7.14688951263494e-05 1069569.97191600 + 256943.719936966 0.000159797754678801 1069569.97189756 + 256943.720006852 3.62045433528920e-06 1069569.97188077 + 256943.720016387 9.32060031182975e-05 1069569.97187848 + 256943.719969604 -8.46792663470022e-05 1069569.97188972 + 256943.719950937 0.000106871568185892 1069569.97189421 + 256943.719955658 -6.93894407485637e-05 1069569.97189307 + 256943.719984330 0.000114558746772855 1069569.97188618 + 256943.719984330 -0.000114558704048042 1069569.97188618 + 256943.719955658 6.93893720528988e-05 1069569.97189307 + 256943.719950937 -0.000106871603901523 1069569.97189421 + 256943.719969604 8.46792411931098e-05 1069569.97188972 + 256943.720016387 -9.32059359668170e-05 1069569.97187848 + 256943.720006852 -3.62041651969955e-06 1069569.97188077 + 256943.719936966 -0.000159797721373610 1069569.97189756 + 256943.719860222 -7.14688986206234e-05 1069569.97191600 + 256943.719794789 -0.000101560337602728 1069569.97193172 + 256943.719870012 -2.61062370092808e-05 1069569.97191365 + 256943.719883077 -7.76868284413285e-05 1069569.97191051 + 256943.719996882 -8.91980644412419e-05 1069569.97188317 + 256943.719898121 -0.000182193568285886 1069569.97190690 + 256943.719948721 -8.59063757733922e-05 1069569.97189474 + 256943.719887713 -8.50751219514111e-05 1069569.97190940 + 256943.720116263 0.000244501565557254 1069569.97185449 + 256943.720497019 0.000439493742861808 1069569.97176302 + 256943.721491919 0.00108652470612612 1069569.97152402 + 256943.723797009 0.00167522052753335 1069569.97097026 + 256943.729188222 0.00196141559814560 1069569.96967513 + 256943.741048133 -0.00119361040140819 1069569.96682601 + 256943.764542599 -0.0174101551014507 1069569.96118191 + 256943.803440492 -0.0751283250725346 1069569.95183743 + 256943.844421398 -0.251530963628247 1069569.94199252 + 256943.799398595 -0.739444714827675 1069569.95280817 + 256943.328624854 -1.99259428270368 1069570.06590088 + 256941.339668686 -5.00060429565684 1069570.54369698 + 256934.674683846 -11.7369821988281 1069572.14474169 + 256914.861769172 -25.6263539170779 1069576.90380141 + 256860.542415963 -51.1178374456922 1069589.94906307 + 256720.860500675 -88.9307143681864 1069623.48135927 + 256381.555507232 -116.345960734584 1069704.85857516 + 255602.001129300 -22.9064743700604 1069891.40406585 + 253914.206521399 574.895803710421 1070293.06510947 + 250503.081515335 2825.13615953089 1071093.00471855 + 244186.948710263 9864.65797286764 1072508.93823905 + 233869.415338371 29717.4414855358 1074440.30557348 + 220293.145110201 81823.6791898418 1074604.95799214 + 210241.427832465 210241.427832465 1059054.80691319 + 222091.369095226 497208.517514553 955750.550030911 + 84686.4238610591 -516972.831146086 967247.280415110 + 81823.6791898417 -220293.145110201 1074604.95799214 + 87858.2023851795 -87858.2023851795 1092960.14225007 + 95205.3037104730 -33756.2468813960 1095352.21090838 + 100877.045482482 -12503.2699354471 1095293.33510966 + 104473.437198664 -4424.17130346565 1095018.59693257 + 106497.758089553 -1469.98000518285 1094831.52433636 + 107545.321553494 -443.838727320589 1094730.01549201 + 108053.081875461 -112.528684697078 1094680.09885743 + 108286.045381449 -17.3905824857293 1094657.08423835 + 108387.805300713 4.10119021009982 1094647.01326285 + 108430.226539643 5.78727848991096 1094642.81203462 + 108447.095638244 3.75034838093001 1094641.14093778 + 108453.470039913 1.94305220794440 1094640.50940595 + 108455.739279648 0.887526174308611 1094640.28457595 + 108456.486920500 0.368431315333593 1094640.21050057 + 108456.706149029 0.139292731331969 1094640.18877953 + 108456.757792309 0.0472310923123139 1094640.18366273 + 108456.762970308 0.0134874184915968 1094640.18314970 + 108456.759136769 0.00253776426277724 1094640.18352952 + 108456.755351041 -0.000205391577183731 1094640.18390461 + 108456.753057704 -0.000657961672903849 1094640.18413184 + 108456.751868812 -0.000409843626702782 1094640.18424963 + 108456.751258488 -0.000203149515368301 1094640.18431010 + 108456.750941222 -3.78523299409424e-05 1094640.18434154 + 108456.750862491 7.45950516049454e-05 1094640.18434934 + 108456.750819229 0.000132732229552620 1094640.18435362 + 108456.750920141 9.87292431824439e-05 1094640.18434363 + 108456.750941794 0.000130779713234600 1094640.18434148 + 108456.751014763 -7.19044155605486e-06 1094640.18433425 + 108456.750998065 9.41860063075232e-05 1094640.18433590 + 108456.751065431 -4.40316370945269e-05 1094640.18432923 + 108456.751106663 0.000118311009709770 1094640.18432515 + 108456.751224946 -4.05579073871359e-05 1094640.18431343 + 108456.751271442 9.14461172969846e-05 1094640.18430882 + 108456.751320530 -7.51427613508563e-05 1094640.18430396 + 108456.751298315 6.11576060704758e-05 1094640.18430616 + 108456.751307773 -5.65840534760484e-05 1094640.18430522 + 108456.751311180 7.77534416808337e-05 1094640.18430488 + 108456.751332471 -5.05384185559488e-05 1094640.18430277 + 108456.751332471 5.05384344599936e-05 1094640.18430277 + 108456.751311180 -7.77534567657818e-05 1094640.18430488 + 108456.751307773 5.65840681905652e-05 1094640.18430522 + 108456.751298315 -6.11575998007849e-05 1094640.18430616 + 108456.751320530 7.51427259551812e-05 1094640.18430396 + 108456.751271442 -9.14460783858873e-05 1094640.18430882 + 108456.751224946 4.05579968864439e-05 1094640.18431343 + 108456.751106663 -0.000118311011148133 1094640.18432515 + 108456.751065431 4.40316190821038e-05 1094640.18432923 + 108456.750998065 -9.41860406345960e-05 1094640.18433590 + 108456.751014763 7.19040641326357e-06 1094640.18433425 + 108456.750941794 -0.000130779702411625 1094640.18434148 + 108456.750920141 -9.87292867462246e-05 1094640.18434363 + 108456.750819229 -0.000132732280249774 1094640.18435362 + 108456.750862491 -7.45951447872633e-05 1094640.18434934 + 108456.750941222 3.78524311393739e-05 1094640.18434154 + 108456.751258488 0.000203149588560873 1094640.18431010 + 108456.751868812 0.000409843541072940 1094640.18424963 + 108456.753057704 0.000657961662874683 1094640.18413184 + 108456.755351041 0.000205391550250952 1094640.18390461 + 108456.759136769 -0.00253776425190919 1094640.18352952 + 108456.762970308 -0.0134874184716640 1094640.18314970 + 108456.757792309 -0.0472310922914649 1094640.18366273 + 108456.706149029 -0.139292731331959 1094640.18877953 + 108456.486920500 -0.368431315410446 1094640.21050057 + 108455.739279648 -0.887526174354558 1094640.28457595 + 108453.470039913 -1.94305220786397 1094640.50940595 + 108447.095638244 -3.75034838086175 1094641.14093778 + 108430.226539643 -5.78727848991910 1094642.81203462 + 108387.805300713 -4.10119021005071 1094647.01326285 + 108286.045381449 17.3905824857527 1094657.08423835 + 108053.081875461 112.528684696941 1094680.09885743 + 107545.321553494 443.838727320576 1094730.01549201 + 106497.758089553 1469.98000518299 1094831.52433636 + 104473.437198664 4424.17130346563 1095018.59693257 + 100877.045482482 12503.2699354470 1095293.33510966 + 95205.3037104730 33756.2468813961 1095352.21090838 + 87858.2023851795 87858.2023851795 1092960.14225007 + 81823.6791898418 220293.145110201 1074604.95799214 + 84686.4238610590 516972.831146086 967247.280415110 + 28309.9242985239 -538415.140513552 958805.342419401 + 29717.4414855358 -233869.415338371 1074440.30557348 + 33756.2468813960 -95205.3037104730 1095352.21090838 + 37720.4360593450 -37720.4360593449 1098705.75560838 + 40680.3052457967 -14670.8263299042 1099149.61657634 + 42579.9203490207 -5601.54225063802 1099161.30440781 + 43680.4641211038 -2093.33964182302 1099130.39944463 + 44271.2963916639 -762.325386479101 1099108.48926564 + 44569.8404238173 -269.018938909666 1099096.65496416 + 44713.2167355994 -91.3273197147665 1099090.86062458 + 44779.0664053628 -29.5213944465915 1099088.18315017 + 44808.0974825736 -8.94282210549625 1099087.00034166 + 44820.4068029956 -2.46900180399892 1099086.49847404 + 44825.4277947898 -0.586197366105093 1099086.29371068 + 44827.3949016043 -0.100962191399005 1099086.21348206 + 44828.1325273356 -0.00166972109574096 1099086.18339697 + 44828.3954117150 0.00786448533902487 1099086.17267474 + 44828.4832533254 0.00341010138757493 1099086.16909194 + 44828.5101687880 0.000248528939930794 1099086.16799414 + 44828.5171470094 -0.000753973372232244 1099086.16770952 + 44828.5185413288 -0.000832909108822066 1099086.16765265 + 44828.5183157066 -0.000536512899990568 1099086.16766185 + 44828.5181770386 -0.000321961429420481 1099086.16766751 + 44828.5179379603 -0.000129313593625616 1099086.16767726 + 44828.5179218368 -4.45651868963695e-05 1099086.16767792 + 44828.5179645550 2.85895953085589e-05 1099086.16767618 + 44828.5180112699 3.62778612233483e-05 1099086.16767427 + 44828.5181797562 5.27267485073228e-05 1099086.16766740 + 44828.5181958177 3.06717893479347e-06 1099086.16766674 + 44828.5183189312 -2.28839587736202e-06 1099086.16766172 + 44828.5182936841 -3.06518371208202e-05 1099086.16766275 + 44828.5183622822 -3.04524493954045e-05 1099086.16765995 + 44828.5183735743 -1.45935177133869e-05 1099086.16765949 + 44828.5184348012 -3.44391621555752e-05 1099086.16765700 + 44828.5184596521 -4.88066005932567e-06 1099086.16765598 + 44828.5184712462 -4.07695510692140e-05 1099086.16765551 + 44828.5184626699 1.52134020447202e-05 1099086.16765586 + 44828.5184531703 -1.57301312930352e-05 1099086.16765625 + 44828.5184558616 4.08681574619143e-05 1099086.16765614 + 44828.5184610904 -1.69442562989772e-05 1099086.16765592 + 44828.5184610904 1.69442462494453e-05 1099086.16765592 + 44828.5184558616 -4.08681420857196e-05 1099086.16765614 + 44828.5184531703 1.57301724869520e-05 1099086.16765625 + 44828.5184626699 -1.52134427047916e-05 1099086.16765586 + 44828.5184712463 4.07695157633546e-05 1099086.16765551 + 44828.5184596521 4.88074349660775e-06 1099086.16765598 + 44828.5184348012 3.44391869776324e-05 1099086.16765700 + 44828.5183735743 1.45934721481175e-05 1099086.16765949 + 44828.5183622822 3.04524210515721e-05 1099086.16765995 + 44828.5182936842 3.06518184778281e-05 1099086.16766275 + 44828.5183189312 2.28841843270938e-06 1099086.16766172 + 44828.5181958177 -3.06719690317557e-06 1099086.16766674 + 44828.5181797562 -5.27267571936482e-05 1099086.16766740 + 44828.5180112699 -3.62778527928367e-05 1099086.16767427 + 44828.5179645549 -2.85896169064900e-05 1099086.16767618 + 44828.5179218367 4.45651722819783e-05 1099086.16767792 + 44828.5179379603 0.000129313611139497 1099086.16767726 + 44828.5181770386 0.000321961419907259 1099086.16766751 + 44828.5183157066 0.000536512854625738 1099086.16766185 + 44828.5185413288 0.000832909133333864 1099086.16765265 + 44828.5171470094 0.000753973390729895 1099086.16770952 + 44828.5101687880 -0.000248528928347549 1099086.16799414 + 44828.4832533254 -0.00341010139995715 1099086.16909194 + 44828.3954117150 -0.00786448534122246 1099086.17267474 + 44828.1325273356 0.00166972111786036 1099086.18339697 + 44827.3949016042 0.100962191446629 1099086.21348206 + 44825.4277947897 0.586197366109814 1099086.29371068 + 44820.4068029956 2.46900180395536 1099086.49847404 + 44808.0974825735 8.94282210548795 1099087.00034166 + 44779.0664053628 29.5213944465948 1099088.18315017 + 44713.2167355994 91.3273197147408 1099090.86062458 + 44569.8404238174 269.018938909684 1099096.65496416 + 44271.2963916638 762.325386479128 1099108.48926564 + 43680.4641211038 2093.33964182301 1099130.39944463 + 42579.9203490207 5601.54225063805 1099161.30440781 + 40680.3052457967 14670.8263299042 1099149.61657634 + 37720.4360593449 37720.4360593449 1098705.75560838 + 33756.2468813961 95205.3037104730 1095352.21090838 + 29717.4414855358 233869.415338371 1074440.30557348 + 28309.9242985238 538415.140513552 958805.342419400 + 7679.48436393389 -553484.353991109 950576.717265339 + 9864.65797286764 -244186.948710263 1072508.93823905 + 12503.2699354470 -100877.045482482 1095293.33510966 + 14670.8263299042 -40680.3052457967 1099149.61657634 + 16202.3778895248 -16202.3778895249 1099761.32224290 + 17178.6942981202 -6391.96817318859 1099847.27812778 + 17753.1341047373 -2497.62248956472 1099853.89398381 + 18069.8786288911 -965.599590628937 1099851.14770307 + 18235.3275489744 -368.887740803563 1099848.77903783 + 18317.8248410919 -139.102642976019 1099847.46121612 + 18357.3071756004 -51.7376885649515 1099846.81051339 + 18375.5133932775 -18.9788602294487 1099846.50753973 + 18383.6233389771 -6.87230859105742 1099846.37215645 + 18387.1187903351 -2.46220095015556 1099846.31374412 + 18388.5772014527 -0.876726831774221 1099846.28936399 + 18389.1663407084 -0.312621098060299 1099846.27951419 + 18389.3965182490 -0.112690211030174 1099846.27566569 + 18389.4828139889 -0.0416539093999752 1099846.27422283 + 18389.5141975013 -0.0159001552644443 1099846.27369809 + 18389.5247623496 -0.00631086694021251 1099846.27352145 + 18389.5281418026 -0.00264587833701974 1099846.27346494 + 18389.5292727728 -0.00106444306087142 1099846.27344603 + 18389.5294366849 -0.000499391122800130 1099846.27344329 + 18389.5296977589 -0.000210608481480974 1099846.27343893 + 18389.5296773969 -0.000120536293804892 1099846.27343927 + 18389.5298752045 -6.95317294442188e-05 1099846.27343596 + 18389.5299072139 -6.83884646543750e-05 1099846.27343543 + 18389.5300518799 -4.07727599325785e-05 1099846.27343301 + 18389.5300878847 -7.33058530976568e-05 1099846.27343240 + 18389.5301370847 -2.32968387912466e-05 1099846.27343158 + 18389.5301556784 -8.47829165559771e-05 1099846.27343127 + 18389.5301458927 4.15983261468247e-07 1099846.27343143 + 18389.5301877698 -7.78373780258798e-05 1099846.27343073 + 18389.5301668691 2.01740845297960e-05 1099846.27343108 + 18389.5302193152 -6.52251624678525e-05 1099846.27343021 + 18389.5301777872 4.09670633645571e-05 1099846.27343090 + 18389.5302080026 -3.20370399934330e-05 1099846.27343040 + 18389.5301687517 7.01274891243376e-05 1099846.27343105 + 18389.5301896842 -1.44129947432961e-05 1099846.27343070 + 18389.5301794665 5.36744859288223e-05 1099846.27343087 + 18389.5301794665 -5.36744802746643e-05 1099846.27343087 + 18389.5301896842 1.44129917367737e-05 1099846.27343070 + 18389.5301687517 -7.01274937594438e-05 1099846.27343105 + 18389.5302080027 3.20370213787360e-05 1099846.27343040 + 18389.5301777872 -4.09670645326460e-05 1099846.27343090 + 18389.5302193153 6.52252017301276e-05 1099846.27343021 + 18389.5301668692 -2.01740780055413e-05 1099846.27343108 + 18389.5301877698 7.78374202860802e-05 1099846.27343073 + 18389.5301458927 -4.15999053486541e-07 1099846.27343143 + 18389.5301556784 8.47828663564116e-05 1099846.27343127 + 18389.5301370847 2.32968426599490e-05 1099846.27343158 + 18389.5300878848 7.33058556026335e-05 1099846.27343240 + 18389.5300518798 4.07727642773805e-05 1099846.27343301 + 18389.5299072139 6.83884517572979e-05 1099846.27343543 + 18389.5298752045 6.95317220532998e-05 1099846.27343596 + 18389.5296773969 0.000120536304429007 1099846.27343927 + 18389.5296977589 0.000210608473175199 1099846.27343893 + 18389.5294366849 0.000499391104867044 1099846.27344329 + 18389.5292727728 0.00106444307004490 1099846.27344603 + 18389.5281418025 0.00264587834349371 1099846.27346494 + 18389.5247623496 0.00631086693029792 1099846.27352145 + 18389.5141975013 0.0159001552755602 1099846.27369809 + 18389.4828139889 0.0416539094173254 1099846.27422283 + 18389.3965182490 0.112690210999871 1099846.27566569 + 18389.1663407083 0.312621098071361 1099846.27951419 + 18388.5772014527 0.876726831779585 1099846.28936399 + 18387.1187903352 2.46220095016337 1099846.31374412 + 18383.6233389771 6.87230859108159 1099846.37215645 + 18375.5133932775 18.9788602294418 1099846.50753973 + 18357.3071756004 51.7376885649473 1099846.81051339 + 18317.8248410919 139.102642975998 1099847.46121612 + 18235.3275489743 368.887740803545 1099848.77903783 + 18069.8786288911 965.599590628940 1099851.14770307 + 17753.1341047372 2497.62248956474 1099853.89398381 + 17178.6942981203 6391.96817318858 1099847.27812778 + 16202.3778895249 16202.3778895248 1099761.32224290 + 14670.8263299042 40680.3052457967 1099149.61657634 + 12503.2699354470 100877.045482482 1095293.33510966 + 9864.65797286764 244186.948710263 1072508.93823905 + 7679.48436393393 553484.353991109 950576.717265339 + 1126.59101024911 -562234.669096170 945458.041194328 + 2825.13615953089 -250503.081515335 1071093.00471855 + 4424.17130346563 -104473.437198664 1095018.59693257 + 5601.54225063805 -42579.9203490208 1099161.30440781 + 6391.96817318859 -17178.6942981202 1099847.27812778 + 6887.99975762096 -6887.99975762097 1099956.86775377 + 7181.43718923534 -2747.52292922445 1099973.12607066 + 7346.14932022947 -1090.15583623454 1099974.92955540 + 7434.39528870541 -430.070831722000 1099974.79280471 + 7479.74809503944 -168.617238872919 1099974.55649513 + 7502.19913700918 -65.6846653005797 1099974.41456319 + 7512.93953589722 -25.4243065483747 1099974.34292493 + 7517.91771627138 -9.78285835067336 1099974.30916249 + 7520.15693892839 -3.74560421939858 1099974.29389308 + 7521.13627868205 -1.42933924628665 1099974.28720268 + 7521.55283468682 -0.544592808293825 1099974.28435517 + 7521.72505281549 -0.207846975237010 1099974.28317765 + 7521.79455632050 -0.0795878529167614 1099974.28270239 + 7521.82149127680 -0.0306614335887444 1099974.28251821 + 7521.83191686263 -0.0119648702606227 1099974.28244692 + 7521.83562478699 -0.00460354710267491 1099974.28242156 + 7521.83713691647 -0.00190563026070764 1099974.28241122 + 7521.83759116736 -0.000750392054357111 1099974.28240812 + 7521.83782178503 -0.000417341707232032 1099974.28240654 + 7521.83794400274 -0.000231560341023348 1099974.28240570 + 7521.83792818667 -0.000184923715703087 1099974.28240581 + 7521.83806878890 -0.000117519856948238 1099974.28240485 + 7521.83797664406 -7.45412640681866e-05 1099974.28240548 + 7521.83809688117 -5.91364739237803e-05 1099974.28240466 + 7521.83800469091 -1.23058658639848e-05 1099974.28240529 + 7521.83806184932 -4.06976223442370e-05 1099974.28240490 + 7521.83802075612 -6.51317947798495e-06 1099974.28240518 + 7521.83804017656 -4.67669972182002e-05 1099974.28240505 + 7521.83805896199 -1.48869903351074e-05 1099974.28240492 + 7521.83805699803 -4.12784271950742e-05 1099974.28240493 + 7521.83809132215 6.14212347366477e-06 1099974.28240470 + 7521.83807277772 2.11787642665178e-06 1099974.28240482 + 7521.83809766500 4.22513283150247e-05 1099974.28240465 + 7521.83808581418 2.17569784913153e-05 1099974.28240473 + 7521.83809696305 2.29160309513753e-05 1099974.28240466 + 7521.83809696304 -2.29160352771854e-05 1099974.28240466 + 7521.83808581420 -2.17569744503853e-05 1099974.28240473 + 7521.83809766500 -4.22513345936283e-05 1099974.28240465 + 7521.83807277771 -2.11787215201888e-06 1099974.28240482 + 7521.83809132213 -6.14211445805859e-06 1099974.28240470 + 7521.83805699803 4.12784225184549e-05 1099974.28240493 + 7521.83805896201 1.48869971911171e-05 1099974.28240492 + 7521.83804017656 4.67669979385944e-05 1099974.28240505 + 7521.83802075618 6.51317740010777e-06 1099974.28240518 + 7521.83806184930 4.06976296668621e-05 1099974.28240490 + 7521.83800469092 1.23058592656764e-05 1099974.28240529 + 7521.83809688115 5.91364769058954e-05 1099974.28240466 + 7521.83797664408 7.45412634224284e-05 1099974.28240548 + 7521.83806878889 0.000117519847792310 1099974.28240485 + 7521.83792818667 0.000184923718937947 1099974.28240581 + 7521.83794400273 0.000231560332926611 1099974.28240570 + 7521.83782178505 0.000417341708925952 1099974.28240654 + 7521.83759116734 0.000750392060408801 1099974.28240812 + 7521.83713691646 0.00190563025291400 1099974.28241122 + 7521.83562478699 0.00460354709916055 1099974.28242156 + 7521.83191686262 0.0119648702614931 1099974.28244692 + 7521.82149127677 0.0306614335907137 1099974.28251821 + 7521.79455632052 0.0795878529121355 1099974.28270239 + 7521.72505281549 0.207846975245284 1099974.28317765 + 7521.55283468679 0.544592808294097 1099974.28435517 + 7521.13627868207 1.42933924629023 1099974.28720268 + 7520.15693892837 3.74560421940736 1099974.29389308 + 7517.91771627141 9.78285835067179 1099974.30916249 + 7512.93953589722 25.4243065483804 1099974.34292493 + 7502.19913700920 65.6846653005733 1099974.41456319 + 7479.74809503945 168.617238872911 1099974.55649513 + 7434.39528870540 430.070831721991 1099974.79280471 + 7346.14932022945 1090.15583623455 1099974.92955540 + 7181.43718923535 2747.52292922444 1099973.12607066 + 6887.99975762097 6887.99975762096 1099956.86775377 + 6391.96817318858 17178.6942981202 1099847.27812778 + 5601.54225063801 42579.9203490207 1099161.30440781 + 4424.17130346560 104473.437198664 1095018.59693257 + 2825.13615953083 250503.081515335 1071093.00471855 + 1126.59101024917 562234.669096170 945458.041194328 + -471.546013533186 -566750.382164375 942758.602167539 + 574.895803710409 -253914.206521399 1070293.06510947 + 1469.98000518297 -106497.758089553 1094831.52433636 + 2093.33964182297 -43680.4641211038 1099130.39944463 + 2497.62248956474 -17753.1341047372 1099853.89398381 + 2747.52292922446 -7181.43718923533 1099973.12607066 + 2895.41805100653 -2895.41805100654 1099992.37865933 + 2979.39420810520 -1163.87503059401 1099995.34935611 + 3025.24967884862 -466.388198580885 1099995.74105831 + 3049.39293889752 -186.266829635260 1099995.75749517 + 3061.68166096841 -74.1286461294767 1099995.73663281 + 3067.74324323106 -29.3946910864869 1099995.72184956 + 3070.64645079339 -11.6150884671070 1099995.71408050 + 3071.99907740516 -4.57511194805268 1099995.71035561 + 3072.61329680703 -1.79715843078219 1099995.70864813 + 3072.88515921935 -0.704616306182003 1099995.70788995 + 3073.00243637995 -0.275914882742853 1099995.70756251 + 3073.05222262518 -0.108004941694436 1099995.70742345 + 3073.07257293244 -0.0423442638494734 1099995.70736661 + 3073.08094620382 -0.0165891457180994 1099995.70734321 + 3073.08443040946 -0.00658313040866273 1099995.70733348 + 3073.08553123421 -0.00269898399314188 1099995.70733041 + 3073.08629608077 -0.00119437171604512 1099995.70732827 + 3073.08623827543 -0.000596683596158378 1099995.70732843 + 3073.08650059260 -0.000283660897542760 1099995.70732770 + 3073.08630859503 -0.000172847112469181 1099995.70732823 + 3073.08641178899 -2.79547558103832e-05 1099995.70732794 + 3073.08627862942 -3.07992306126866e-05 1099995.70732832 + 3073.08630413420 4.43242359644416e-05 1099995.70732825 + 3073.08624011322 -2.01324323416199e-05 1099995.70732842 + 3073.08624078322 8.06150664826996e-06 1099995.70732842 + 3073.08623801592 -6.45634509413601e-05 1099995.70732843 + 3073.08623908586 -4.35127552407019e-05 1099995.70732843 + 3073.08628469485 -9.00091950606587e-05 1099995.70732830 + 3073.08628223998 -4.37187943196978e-05 1099995.70732831 + 3073.08633863066 -4.81561239227003e-05 1099995.70732815 + 3073.08632455820 1.52378505910728e-05 1099995.70732819 + 3073.08636523998 1.39168584103549e-05 1099995.70732807 + 3073.08635312252 4.21226676709050e-05 1099995.70732811 + 3073.08636863015 3.53868162041582e-06 1099995.70732807 + 3073.08636863015 -3.53868455807472e-06 1099995.70732807 + 3073.08635312251 -4.21226719985756e-05 1099995.70732811 + 3073.08636523998 -1.39168513448760e-05 1099995.70732807 + 3073.08632455819 -1.52378495629635e-05 1099995.70732819 + 3073.08633863067 4.81561221408827e-05 1099995.70732815 + 3073.08628223999 4.37187971592786e-05 1099995.70732831 + 3073.08628469485 9.00091967955023e-05 1099995.70732830 + 3073.08623908587 4.35127572284868e-05 1099995.70732843 + 3073.08623801592 6.45634549498319e-05 1099995.70732843 + 3073.08624078323 -8.06151090681715e-06 1099995.70732842 + 3073.08624011322 2.01324354396596e-05 1099995.70732842 + 3073.08630413420 -4.43242347104476e-05 1099995.70732825 + 3073.08627862943 3.07992245242542e-05 1099995.70732832 + 3073.08641178898 2.79547579172897e-05 1099995.70732794 + 3073.08630859503 0.000172847109173640 1099995.70732823 + 3073.08650059260 0.000283660896195034 1099995.70732770 + 3073.08623827542 0.000596683592876787 1099995.70732843 + 3073.08629608078 0.00119437171763613 1099995.70732827 + 3073.08553123421 0.00269898399486405 1099995.70733041 + 3073.08443040946 0.00658313040279729 1099995.70733348 + 3073.08094620383 0.0165891457211860 1099995.70734321 + 3073.07257293244 0.0423442638506427 1099995.70736661 + 3073.05222262518 0.108004941694162 1099995.70742345 + 3073.00243637995 0.275914882750437 1099995.70756251 + 3072.88515921936 0.704616306173421 1099995.70788995 + 3072.61329680703 1.79715843078175 1099995.70864813 + 3071.99907740516 4.57511194805690 1099995.71035561 + 3070.64645079339 11.6150884671076 1099995.71408050 + 3067.74324323107 29.3946910864889 1099995.72184956 + 3061.68166096842 74.1286461294671 1099995.73663281 + 3049.39293889752 186.266829635264 1099995.75749517 + 3025.24967884862 466.388198580893 1099995.74105831 + 2979.39420810520 1163.87503059400 1099995.34935611 + 2895.41805100654 2895.41805100654 1099992.37865933 + 2747.52292922445 7181.43718923534 1099973.12607066 + 2497.62248956473 17753.1341047372 1099853.89398381 + 2093.33964182302 43680.4641211038 1099130.39944463 + 1469.98000518295 106497.758089553 1094831.52433636 + 574.895803710385 253914.206521399 1070293.06510947 + -471.546013533158 566750.382164375 942758.602167539 + -588.657343514883 -568888.587560200 941469.823428395 + -22.9064743700706 -255602.001129300 1069891.40406585 + 443.838727320585 -107545.321553494 1094730.01549201 + 762.325386479128 -44271.2963916638 1099108.48926564 + 965.599590628943 -18069.8786288911 1099851.14770307 + 1090.15583623456 -7346.14932022945 1099974.92955540 + 1163.87503059401 -2979.39420810519 1099995.34935611 + 1206.07639274124 -1206.07639274125 1099998.67761715 + 1229.45962989245 -487.334800894286 1099999.20496963 + 1242.01282575483 -196.536593854354 1099999.28126227 + 1248.55148146855 -79.0978230567921 1099999.28857374 + 1251.86050718072 -31.7647494770641 1099999.28719807 + 1253.49002743013 -12.7283641787953 1099999.28572738 + 1254.27247274723 -5.08929982880328 1099999.28489734 + 1254.63889224516 -2.03087347420878 1099999.28448937 + 1254.80645155923 -0.808902370270921 1099999.28429982 + 1254.88168570015 -0.321764600795972 1099999.28421424 + 1254.91453055176 -0.127817158531909 1099999.28417681 + 1254.92881726552 -0.0507872284874923 1099999.28416052 + 1254.93485348147 -0.0202391909637665 1099999.28415364 + 1254.93731063001 -0.00818327419654542 1099999.28415083 + 1254.93837658933 -0.00333895264385525 1099999.28414962 + 1254.93868736676 -0.00141553000540245 1099999.28414926 + 1254.93890239436 -0.000543651611393416 1099999.28414902 + 1254.93875110628 -0.000234952158737086 1099999.28414919 + 1254.93890929919 -2.51126840416103e-05 1099999.28414901 + 1254.93866710464 -1.11786730785246e-05 1099999.28414929 + 1254.93885281020 4.97740458853014e-06 1099999.28414907 + 1254.93866223462 -2.12790778149765e-06 1099999.28414929 + 1254.93883182373 -4.61583955039557e-05 1099999.28414910 + 1254.93872658069 -4.24711311911212e-05 1099999.28414922 + 1254.93883349073 -9.72184753096833e-05 1099999.28414910 + 1254.93881751469 -6.49449460992265e-05 1099999.28414911 + 1254.93885714475 -0.000107187541944658 1099999.28414907 + 1254.93889635634 -2.98445418182498e-05 1099999.28414902 + 1254.93888757767 -5.25959605953325e-05 1099999.28414903 + 1254.93893351311 5.83024927192888e-05 1099999.28414898 + 1254.93890754579 4.97333279492999e-06 1099999.28414901 + 1254.93893443563 8.99198254787005e-05 1099999.28414898 + 1254.93892210727 -2.59139809636057e-05 1099999.28414900 + 1254.93892210727 2.59139805326861e-05 1099999.28414900 + 1254.93893443563 -8.99198267050740e-05 1099999.28414898 + 1254.93890754579 -4.97333399341577e-06 1099999.28414901 + 1254.93893351311 -5.83024928387640e-05 1099999.28414898 + 1254.93888757767 5.25959609381606e-05 1099999.28414903 + 1254.93889635634 2.98445451791788e-05 1099999.28414902 + 1254.93885714476 0.000107187540970283 1099999.28414907 + 1254.93881751469 6.49449482987487e-05 1099999.28414911 + 1254.93883349073 9.72184763103043e-05 1099999.28414910 + 1254.93872658070 4.24711321767540e-05 1099999.28414922 + 1254.93883182373 4.61583959000392e-05 1099999.28414910 + 1254.93866223463 2.12790379441017e-06 1099999.28414929 + 1254.93885281020 -4.97740390789817e-06 1099999.28414907 + 1254.93866710465 1.11786726201215e-05 1099999.28414929 + 1254.93890929919 2.51126830978424e-05 1099999.28414901 + 1254.93875110628 0.000234952156905907 1099999.28414919 + 1254.93890239436 0.000543651613584749 1099999.28414902 + 1254.93868736676 0.00141553000459166 1099999.28414926 + 1254.93837658933 0.00333895264360550 1099999.28414962 + 1254.93731063001 0.00818327419683318 1099999.28415083 + 1254.93485348147 0.0202391909603654 1099999.28415364 + 1254.92881726552 0.0507872284870585 1099999.28416052 + 1254.91453055176 0.127817158532963 1099999.28417681 + 1254.88168570015 0.321764600792109 1099999.28421424 + 1254.80645155924 0.808902370268668 1099999.28429982 + 1254.63889224514 2.03087347421191 1099999.28448937 + 1254.27247274724 5.08929982880687 1099999.28489734 + 1253.49002743013 12.7283641787958 1099999.28572738 + 1251.86050718073 31.7647494770629 1099999.28719807 + 1248.55148146854 79.0978230567943 1099999.28857374 + 1242.01282575483 196.536593854353 1099999.28126227 + 1229.45962989245 487.334800894279 1099999.20496963 + 1206.07639274125 1206.07639274125 1099998.67761715 + 1163.87503059400 2979.39420810520 1099995.34935611 + 1090.15583623455 7346.14932022947 1099974.92955540 + 965.599590628950 18069.8786288910 1099851.14770307 + 762.325386479122 44271.2963916638 1099108.48926564 + 443.838727320649 107545.321553494 1094730.01549201 + -22.9064743700077 255602.001129300 1069891.40406585 + -588.657343514802 568888.587560200 941469.823428395 + -395.921001599488 -569832.132164313 940899.136145651 + -116.345960734656 -256381.555507232 1069704.85857516 + 112.528684697002 -108053.081875462 1094680.09885743 + 269.018938909675 -44569.8404238173 1099096.65496416 + 368.887740803532 -18235.3275489743 1099848.77903783 + 430.070831721993 -7434.39528870540 1099974.79280471 + 466.388198580895 -3025.24967884861 1099995.74105831 + 487.334800894287 -1229.45962989244 1099999.20496963 + 499.082829673219 -499.082829673221 1099999.77356028 + 505.492490817101 -202.362238800963 1099999.86523948 + 508.896305511009 -81.9504518485289 1099999.87923121 + 510.656968115543 -33.1436197090484 1099999.88096861 + 511.545097613501 -13.3858729043992 1099999.88097383 + 511.982661665746 -5.39849936753971 1099999.88083845 + 512.193078943019 -2.17409120345918 1099999.88075160 + 512.292212022464 -0.874407757459211 1099999.88070723 + 512.338188131437 -0.351222065793895 1099999.88068611 + 512.358794347377 -0.140969128648464 1099999.88067656 + 512.368138182796 -0.0565493276302953 1099999.88067222 + 512.372178697863 -0.0227738060515721 1099999.88067033 + 512.373756896708 -0.00909212255419908 1099999.88066960 + 512.374585560718 -0.00368352600121652 1099999.88066921 + 512.374689132975 -0.00140611300655669 1099999.88066917 + 512.374840168640 -0.000534186622685405 1099999.88066909 + 512.374838416436 -0.000238313155328209 1099999.88066910 + 512.374800740059 -9.60724548850878e-05 1099999.88066911 + 512.374943594692 -0.000119359265542244 1099999.88066905 + 512.374842593701 -3.03340654366578e-05 1099999.88066909 + 512.375041340047 -7.19679269191702e-05 1099999.88066900 + 512.374920673210 -1.95957120544817e-05 1099999.88066906 + 512.375071924180 -4.17995439648342e-05 1099999.88066899 + 512.374967742974 -3.89234410823496e-05 1099999.88066904 + 512.375052976123 -4.90789939404648e-05 1099999.88066900 + 512.374983799949 -3.99362425790526e-05 1099999.88066903 + 512.375025310193 -2.98689028435362e-05 1099999.88066901 + 512.374979494199 2.08280287298514e-05 1099999.88066903 + 512.374994758461 3.67694490781931e-05 1099999.88066902 + 512.374962637536 7.96342257923309e-05 1099999.88066904 + 512.374965339525 4.67063365221763e-05 1099999.88066904 + 512.374952927455 3.78016684131028e-05 1099999.88066904 + 512.374952927455 -3.78016675140969e-05 1099999.88066904 + 512.374965339526 -4.67063363135300e-05 1099999.88066904 + 512.374962637533 -7.96342271254140e-05 1099999.88066904 + 512.374994758461 -3.67694493953595e-05 1099999.88066902 + 512.374979494197 -2.08280270475772e-05 1099999.88066903 + 512.375025310191 2.98689022090654e-05 1099999.88066901 + 512.374983799951 3.99362421570703e-05 1099999.88066903 + 512.375052976120 4.90789936058351e-05 1099999.88066900 + 512.374967742980 3.89234415589010e-05 1099999.88066904 + 512.375071924178 4.17995440792050e-05 1099999.88066899 + 512.374920673216 1.95957092208639e-05 1099999.88066906 + 512.375041340045 7.19679270668843e-05 1099999.88066900 + 512.374842593704 3.03340667565031e-05 1099999.88066909 + 512.374943594691 0.000119359265305312 1099999.88066905 + 512.374800740061 9.60724547941511e-05 1099999.88066911 + 512.374838416433 0.000238313156260505 1099999.88066910 + 512.374840168639 0.000534186622679582 1099999.88066909 + 512.374689132975 0.00140611300697383 1099999.88066917 + 512.374585560719 0.00368352600187769 1099999.88066921 + 512.373756896708 0.00909212255401229 1099999.88066960 + 512.372178697861 0.0227738060508305 1099999.88067033 + 512.368138182794 0.0565493276281895 1099999.88067222 + 512.358794347374 0.140969128647419 1099999.88067656 + 512.338188131435 0.351222065792683 1099999.88068611 + 512.292212022456 0.874407757462008 1099999.88070723 + 512.193078943016 2.17409120346023 1099999.88075160 + 511.982661665744 5.39849936753707 1099999.88083845 + 511.545097613501 13.3858729044003 1099999.88097383 + 510.656968115542 33.1436197090501 1099999.88096861 + 508.896305511006 81.9504518485287 1099999.87923121 + 505.492490817101 202.362238800962 1099999.86523948 + 499.082829673216 499.082829673219 1099999.77356028 + 487.334800894281 1229.45962989244 1099999.20496963 + 466.388198580893 3025.24967884862 1099995.74105831 + 430.070831722001 7434.39528870540 1099974.79280471 + 368.887740803561 18235.3275489743 1099848.77903783 + 269.018938909660 44569.8404238173 1099096.65496416 + 112.528684697000 108053.081875461 1094680.09885743 + -116.345960734629 256381.555507232 1069704.85857516 + -395.921001599473 569832.132164313 940899.136145652 + -217.741985564772 -570222.732312852 940662.526170833 + -88.9307143681516 -256720.860500675 1069623.48135927 + 17.3905824857627 -108286.045381449 1094657.08423835 + 91.3273197147555 -44713.2167355994 1099090.86062458 + 139.102642976013 -18317.8248410919 1099847.46121612 + 168.617238872905 -7479.74809503945 1099974.55649513 + 186.266829635263 -3049.39293889752 1099995.75749517 + 196.536593854355 -1242.01282575483 1099999.28126227 + 202.362238800961 -505.492490817100 1099999.86523948 + 205.586222273591 -205.586222273590 1099999.96157664 + 207.327151460813 -83.5503621762107 1099999.97728854 + 208.245001218436 -33.9275244898552 1099999.97976497 + 208.717832177269 -13.7650365509850 1099999.98011245 + 208.955948864417 -5.57967413250113 1099999.98013922 + 209.073321762119 -2.25952719697647 1099999.98012875 + 209.130178285150 -0.914221273256816 1099999.98011988 + 209.157020660500 -0.369539971032100 1099999.98011509 + 209.169563626254 -0.149197093006075 1099999.98011276 + 209.175339630845 -0.0603100769065702 1099999.98011167 + 209.177787864341 -0.0241963535931020 1099999.98011121 + 209.178900960747 -0.00976499570377347 1099999.98011099 + 209.179370149595 -0.00389573473088033 1099999.98011090 + 209.179536701427 -0.00154613481645852 1099999.98011087 + 209.179647604847 -0.000758085607693680 1099999.98011085 + 209.179713121417 -0.000302313363632347 1099999.98011084 + 209.179794777337 -0.000219144231953770 1099999.98011082 + 209.179831692139 -4.31451173179638e-05 1099999.98011082 + 209.179875630776 -1.76230723092616e-05 1099999.98011081 + 209.179877531796 4.22895950177967e-05 1099999.98011081 + 209.179857367630 4.24449062207190e-05 1099999.98011081 + 209.179825945516 1.76772649316638e-06 1099999.98011082 + 209.179798533312 -7.62013894783133e-07 1099999.98011082 + 209.179744752523 -6.03802547326122e-05 1099999.98011083 + 209.179750588261 -2.15608270799513e-05 1099999.98011083 + 209.179686502854 -5.99640196284329e-05 1099999.98011084 + 209.179713898757 4.54719120377975e-05 1099999.98011084 + 209.179651520062 4.57102385658391e-06 1099999.98011085 + 209.179673929981 0.000115962465908187 1099999.98011085 + 209.179633490946 1.17124496551471e-05 1099999.98011085 + 209.179640897626 7.71839285908571e-05 1099999.98011085 + 209.179640897626 -7.71839285845227e-05 1099999.98011085 + 209.179633490946 -1.17124493076542e-05 1099999.98011085 + 209.179673929981 -0.000115962465288399 1099999.98011085 + 209.179651520061 -4.57102367621033e-06 1099999.98011085 + 209.179713898756 -4.54719125384817e-05 1099999.98011084 + 209.179686502855 5.99640192462242e-05 1099999.98011084 + 209.179750588260 2.15608276183707e-05 1099999.98011083 + 209.179744752524 6.03802535638261e-05 1099999.98011083 + 209.179798533310 7.62013306724001e-07 1099999.98011082 + 209.179825945519 -1.76772755948007e-06 1099999.98011082 + 209.179857367629 -4.24449059126037e-05 1099999.98011081 + 209.179877531795 -4.22895945410537e-05 1099999.98011081 + 209.179875630775 1.76230720998859e-05 1099999.98011081 + 209.179831692140 4.31451179859179e-05 1099999.98011082 + 209.179794777335 0.000219144232296908 1099999.98011082 + 209.179713121417 0.000302313365248838 1099999.98011084 + 209.179647604846 0.000758085607147847 1099999.98011085 + 209.179536701427 0.00154613481533718 1099999.98011087 + 209.179370149595 0.00389573473101418 1099999.98011090 + 209.178900960748 0.00976499570385939 1099999.98011099 + 209.177787864340 0.0241963535935449 1099999.98011121 + 209.175339630845 0.0603100769064872 1099999.98011167 + 209.169563626251 0.149197093005937 1099999.98011276 + 209.157020660499 0.369539971032831 1099999.98011509 + 209.130178285146 0.914221273256460 1099999.98011988 + 209.073321762121 2.25952719697555 1099999.98012875 + 208.955948864414 5.57967413250134 1099999.98013922 + 208.717832177269 13.7650365509851 1099999.98011245 + 208.245001218434 33.9275244898546 1099999.97976497 + 207.327151460814 83.5503621762127 1099999.97728854 + 205.586222273588 205.586222273590 1099999.96157664 + 202.362238800962 505.492490817097 1099999.86523948 + 196.536593854354 1242.01282575483 1099999.28126227 + 186.266829635258 3049.39293889752 1099995.75749517 + 168.617238872913 7479.74809503944 1099974.55649513 + 139.102642975997 18317.8248410919 1099847.46121612 + 91.3273197147823 44713.2167355994 1099090.86062458 + 17.3905824857536 108286.045381449 1094657.08423835 + -88.9307143681499 256720.860500675 1069623.48135927 + -217.741985564765 570222.732312852 940662.526170833 + -107.002763239213 -570374.377066122 940570.602632701 + -51.1178374456425 -256860.542415963 1069589.94906307 + -4.10119021009616 -108387.805300713 1094647.01326285 + 29.5213944465633 -44779.0664053628 1099088.18315017 + 51.7376885649569 -18357.3071756004 1099846.81051339 + 65.6846653005681 -7502.19913700919 1099974.41456319 + 74.1286461294690 -3061.68166096841 1099995.73663281 + 79.0978230567932 -1248.55148146854 1099999.28857374 + 81.9504518485304 -508.896305511010 1099999.87923121 + 83.5503621762109 -207.327151460815 1099999.97728854 + 84.4275618185987 -84.4275618185988 1099999.99351999 + 84.8978572144906 -34.3634960400408 1099999.99618705 + 85.1448592712733 -13.9791432801730 1099999.99661588 + 85.2717632722992 -5.68342749936158 1099999.99668019 + 85.3356732359935 -2.30937120737060 1099999.99668750 + 85.3672395420300 -0.937812461943081 1099999.99668707 + 85.3825357817175 -0.380505544118876 1099999.99668622 + 85.3898316483609 -0.154334226172726 1099999.99668571 + 85.3932168395373 -0.0624470584344224 1099999.99668545 + 85.3946166376436 -0.0252048276686645 1099999.99668534 + 85.3954722825398 -0.0102925879693253 1099999.99668528 + 85.3957131703527 -0.00415783321849259 1099999.99668526 + 85.3959464521014 -0.00178136275155632 1099999.99668524 + 85.3960598183460 -0.000771279716413700 1099999.99668523 + 85.3961229518865 -0.000313717121204467 1099999.99668523 + 85.3962380399061 -7.93448146847160e-05 1099999.99668522 + 85.3961751234532 2.27712265988689e-05 1099999.99668522 + 85.3962867239479 7.73532341839471e-05 1099999.99668522 + 85.3961363255980 1.93220562549024e-05 1099999.99668523 + 85.3962242667281 5.58524879016038e-05 1099999.99668522 + 85.3960942411692 -4.95797732400210e-05 1099999.99668523 + 85.3961285919287 -3.88794910739368e-06 1099999.99668523 + 85.3960661916749 -7.46950503026791e-05 1099999.99668523 + 85.3960601023794 -7.23564567142647e-06 1099999.99668523 + 85.3960415519354 -2.53215181587256e-05 1099999.99668523 + 85.3960174100084 6.11713582255282e-05 1099999.99668524 + 85.3960093291291 6.12048020012784e-05 1099999.99668524 + 85.3959832382905 0.000112374330830998 1099999.99668524 + 85.3959757850371 6.21674736329338e-05 1099999.99668524 + 85.3959641338577 4.80885785433286e-05 1099999.99668524 + 85.3959641338577 -4.80885789798876e-05 1099999.99668524 + 85.3959757850371 -6.21674731281959e-05 1099999.99668524 + 85.3959832382912 -0.000112374330754176 1099999.99668524 + 85.3960093291293 -6.12048018009813e-05 1099999.99668524 + 85.3960174100096 -6.11713585044582e-05 1099999.99668524 + 85.3960415519353 2.53215181719282e-05 1099999.99668523 + 85.3960601023799 7.23564553348691e-06 1099999.99668523 + 85.3960661916756 7.46950505375657e-05 1099999.99668523 + 85.3961285919279 3.88794829181190e-06 1099999.99668523 + 85.3960942411688 4.95797733598222e-05 1099999.99668523 + 85.3962242667265 -5.58524876684631e-05 1099999.99668522 + 85.3961363255981 -1.93220562588950e-05 1099999.99668523 + 85.3962867239466 -7.73532340696028e-05 1099999.99668522 + 85.3961751234530 -2.27712266376170e-05 1099999.99668522 + 85.3962380399055 7.93448152261876e-05 1099999.99668522 + 85.3961229518870 0.000313717120948181 1099999.99668523 + 85.3960598183472 0.000771279716979324 1099999.99668523 + 85.3959464521011 0.00178136275130654 1099999.99668524 + 85.3957131703522 0.00415783321788878 1099999.99668526 + 85.3954722825393 0.0102925879694502 1099999.99668528 + 85.3946166376440 0.0252048276682910 1099999.99668534 + 85.3932168395373 0.0624470584346437 1099999.99668545 + 85.3898316483614 0.154334226173246 1099999.99668571 + 85.3825357817174 0.380505544118858 1099999.99668622 + 85.3672395420312 0.937812461942887 1099999.99668707 + 85.3356732359929 2.30937120737057 1099999.99668750 + 85.2717632722988 5.68342749936175 1099999.99668019 + 85.1448592712727 13.9791432801731 1099999.99661588 + 84.8978572144904 34.3634960400412 1099999.99618705 + 84.4275618185985 84.4275618185987 1099999.99351999 + 83.5503621762108 207.327151460812 1099999.97728854 + 81.9504518485286 508.896305511007 1099999.87923121 + 79.0978230567924 1248.55148146854 1099999.28857374 + 74.1286461294732 3061.68166096842 1099995.73663281 + 65.6846653005631 7502.19913700919 1099974.41456319 + 51.7376885649358 18357.3071756004 1099846.81051339 + 29.5213944465856 44779.0664053627 1099088.18315017 + -4.10119021006597 108387.805300713 1094647.01326285 + -51.1178374456552 256860.542415963 1069589.94906307 + -107.002763239219 570374.377066123 940570.602632701 + -48.5427622714414 -570429.142008348 940537.395105171 + -25.6263539170610 -256914.861769172 1069576.90380141 + -5.78727848997843 -108430.226539643 1094642.81203462 + 8.94282210547857 -44808.0974825735 1099087.00034166 + 18.9788602294163 -18375.5133932775 1099846.50753973 + 25.4243065483794 -7512.93953589722 1099974.34292493 + 29.3946910864897 -3067.74324323106 1099995.72184956 + 31.7647494770670 -1251.86050718073 1099999.28719807 + 33.1436197090484 -510.656968115540 1099999.88096861 + 33.9275244898547 -208.245001218434 1099999.97976497 + 34.3634960400411 -84.8978572144904 1099999.99618705 + 34.6011159682788 -34.6011159682792 1099999.99891160 + 34.7280920484568 -14.0976028987888 1099999.99936146 + 34.7943700604049 -5.74185532163137 1099999.99943472 + 34.8283612745804 -2.33777778517569 1099999.99944615 + 34.8456185818567 -0.951374584788797 1099999.99944767 + 34.8540178371024 -0.386902286413306 1099999.99944775 + 34.8581792072546 -0.157297208151741 1099999.99944767 + 34.8599792682653 -0.0637668152895037 1099999.99944763 + 34.8609979489005 -0.0259842575431671 1099999.99944760 + 34.8614472829068 -0.0105950328732642 1099999.99944758 + 34.8616846286497 -0.00428477802817056 1099999.99944757 + 34.8617715387665 -0.00185601895494276 1099999.99944757 + 34.8619568419174 -0.000720029752584892 1099999.99944757 + 34.8620082643818 -0.000209455384789025 1099999.99944756 + 34.8620408987807 -0.000120656715465426 1099999.99944756 + 34.8621154447650 3.84587233028664e-05 1099999.99944756 + 34.8620277632311 -5.96125036273109e-05 1099999.99944756 + 34.8620863095867 7.72898170362932e-05 1099999.99944756 + 34.8619871202941 -4.66180752413854e-05 1099999.99944756 + 34.8620090378796 7.63248297561871e-05 1099999.99944756 + 34.8619192905734 -5.18552745149351e-05 1099999.99944757 + 34.8619388107477 8.15941081029146e-05 1099999.99944757 + 34.8618512442708 -5.27419582841371e-05 1099999.99944757 + 34.8618837021390 0.000123998474059562 1099999.99944757 + 34.8618018224388 -9.00295678306626e-06 1099999.99944757 + 34.8618304395153 0.000187995548873765 1099999.99944757 + 34.8617675242508 1.77247963407316e-05 1099999.99944757 + 34.8617805177212 0.000173406774644635 1099999.99944757 + 34.8617558962105 -5.70648399750424e-05 1099999.99944757 + 34.8617558962100 5.70648401725658e-05 1099999.99944757 + 34.8617805177214 -0.000173406774905361 1099999.99944757 + 34.8617675242508 -1.77247962132134e-05 1099999.99944757 + 34.8618304395156 -0.000187995549132547 1099999.99944757 + 34.8618018224392 9.00295696415828e-06 1099999.99944757 + 34.8618837021388 -0.000123998474042232 1099999.99944757 + 34.8618512442712 5.27419582101836e-05 1099999.99944757 + 34.8619388107473 -8.15941081177340e-05 1099999.99944757 + 34.8619192905741 5.18552748046172e-05 1099999.99944757 + 34.8620090378782 -7.63248297791223e-05 1099999.99944756 + 34.8619871202946 4.66180750361521e-05 1099999.99944756 + 34.8620863095859 -7.72898170354760e-05 1099999.99944756 + 34.8620277632315 5.96125037206358e-05 1099999.99944756 + 34.8621154447644 -3.84587232706489e-05 1099999.99944756 + 34.8620408987813 0.000120656715340914 1099999.99944756 + 34.8620082643817 0.000209455384737851 1099999.99944756 + 34.8619568419178 0.000720029752504285 1099999.99944757 + 34.8617715387671 0.00185601895541389 1099999.99944757 + 34.8616846286497 0.00428477802802662 1099999.99944757 + 34.8614472829068 0.0105950328729987 1099999.99944758 + 34.8609979489006 0.0259842575430748 1099999.99944760 + 34.8599792682650 0.0637668152895358 1099999.99944763 + 34.8581792072548 0.157297208151603 1099999.99944767 + 34.8540178371027 0.386902286413277 1099999.99944775 + 34.8456185818568 0.951374584789190 1099999.99944767 + 34.8283612745803 2.33777778517578 1099999.99944615 + 34.7943700604052 5.74185532163153 1099999.99943472 + 34.7280920484567 14.0976028987886 1099999.99936146 + 34.6011159682791 34.6011159682790 1099999.99891160 + 34.3634960400408 84.8978572144919 1099999.99618705 + 33.9275244898545 208.245001218436 1099999.97976497 + 33.1436197090461 510.656968115537 1099999.88096861 + 31.7647494770652 1251.86050718072 1099999.28719807 + 29.3946910864909 3067.74324323107 1099995.72184956 + 25.4243065483687 7512.93953589723 1099974.34292493 + 18.9788602294043 18375.5133932775 1099846.50753973 + 8.94282210546147 44808.0974825735 1099087.00034166 + -5.78727848998994 108430.226539643 1094642.81203462 + -25.6263539170846 256914.861769172 1069576.90380141 + -48.5427622714616 570429.142008348 940537.395105171 + -20.6056915515151 -570447.148291995 940526.475215310 + -11.7369821987796 -256934.674683846 1069572.14474170 + -3.75034838085421 -108447.095638244 1094641.14093778 + 2.46900180398938 -44820.4068029956 1099086.49847404 + 6.87230859107996 -18383.6233389771 1099846.37215645 + 9.78285835067655 -7517.91771627142 1099974.30916249 + 11.6150884671090 -3070.64645079339 1099995.71408050 + 12.7283641787948 -1253.49002743012 1099999.28572738 + 13.3858729044011 -511.545097613501 1099999.88097383 + 13.7650365509842 -208.717832177270 1099999.98011245 + 13.9791432801728 -85.1448592712728 1099999.99661588 + 14.0976028987887 -34.7280920484566 1099999.99936146 + 14.1618228502823 -14.1618228502825 1099999.99981768 + 14.1958527541369 -5.77385355598620 1099999.99989325 + 14.2137440075172 -2.35354013136608 1099999.99990565 + 14.2229400288324 -0.958973161628523 1099999.99990763 + 14.2274410317242 -0.390657205839721 1099999.99990792 + 14.2296747848056 -0.158971398569712 1099999.99990795 + 14.2307602622956 -0.0646958003351170 1099999.99990795 + 14.2312948943167 -0.0263958338400131 1099999.99990794 + 14.2316463206304 -0.0107312274260057 1099999.99990794 + 14.2316205191114 -0.00438947778346307 1099999.99990794 + 14.2319851255421 -0.00188523543727180 1099999.99990793 + 14.2319941912947 -0.000646901883724222 1099999.99990793 + 14.2320736107274 -0.000390002572145988 1099999.99990793 + 14.2321018129216 -0.000134429931437292 1099999.99990793 + 14.2320340348437 -6.36304715564510e-05 1099999.99990793 + 14.2319978586632 5.42916264731040e-06 1099999.99990793 + 14.2319615104193 4.07292448921293e-05 1099999.99990793 + 14.2319135884732 6.93519524511339e-05 1099999.99990793 + 14.2318461153852 -1.19785939490820e-05 1099999.99990793 + 14.2318710923341 4.95912562887429e-05 1099999.99990793 + 14.2317667441395 -7.99819251590420e-05 1099999.99990793 + 14.2318462720123 4.94663912543752e-05 1099999.99990793 + 14.2317363502089 -6.10360236675453e-05 1099999.99990794 + 14.2318144001583 9.55322408730595e-05 1099999.99990793 + 14.2317233329545 1.67588395577649e-05 1099999.99990794 + 14.2317672342096 0.000121121076967633 1099999.99990793 + 14.2317139356506 2.97549669524201e-05 1099999.99990794 + 14.2317258401675 5.91031428777529e-05 1099999.99990794 + 14.2317258401680 -5.91031427489885e-05 1099999.99990794 + 14.2317139356503 -2.97549669806799e-05 1099999.99990794 + 14.2317672342097 -0.000121121077118373 1099999.99990793 + 14.2317233329546 -1.67588395156717e-05 1099999.99990794 + 14.2318144001579 -9.55322409582427e-05 1099999.99990793 + 14.2317363502092 6.10360237566978e-05 1099999.99990794 + 14.2318462720120 -4.94663912721535e-05 1099999.99990793 + 14.2317667441397 7.99819251941489e-05 1099999.99990793 + 14.2318710923338 -4.95912561948899e-05 1099999.99990793 + 14.2318461153857 1.19785939252790e-05 1099999.99990793 + 14.2319135884730 -6.93519524905609e-05 1099999.99990793 + 14.2319615104195 -4.07292449074712e-05 1099999.99990793 + 14.2319978586632 -5.42916267253119e-06 1099999.99990793 + 14.2320340348439 6.36304715329113e-05 1099999.99990793 + 14.2321018129216 0.000134429931418594 1099999.99990793 + 14.2320736107274 0.000390002572053153 1099999.99990793 + 14.2319941912945 0.000646901883765394 1099999.99990793 + 14.2319851255422 0.00188523543718691 1099999.99990793 + 14.2316205191118 0.00438947778350325 1099999.99990794 + 14.2316463206304 0.0107312274259506 1099999.99990794 + 14.2312948943168 0.0263958338401044 1099999.99990794 + 14.2307602622952 0.0646958003350880 1099999.99990795 + 14.2296747848058 0.158971398569595 1099999.99990795 + 14.2274410317237 0.390657205839824 1099999.99990792 + 14.2229400288325 0.958973161628545 1099999.99990763 + 14.2137440075173 2.35354013136619 1099999.99990565 + 14.1958527541370 5.77385355598610 1099999.99989325 + 14.1618228502825 14.1618228502828 1099999.99981768 + 14.0976028987885 34.7280920484572 1099999.99936146 + 13.9791432801731 85.1448592712736 1099999.99661588 + 13.7650365509844 208.717832177270 1099999.98011245 + 13.3858729044002 511.545097613499 1099999.88097383 + 12.7283641787948 1253.49002743012 1099999.28572738 + 11.6150884671057 3070.64645079340 1099995.71408050 + 9.78285835067458 7517.91771627144 1099974.30916249 + 6.87230859107804 18383.6233389771 1099846.37215645 + 2.46900180396906 44820.4068029956 1099086.49847404 + -3.75034838089118 108447.095638244 1094641.14093778 + -11.7369821987406 256934.674683846 1069572.14474169 + -20.6056915515173 570447.148291995 940526.475215311 + -8.21517890261827 -570452.253234026 940523.379142025 + -5.00060429571659 -256941.339668686 1069570.54369698 + -1.94305220787464 -108453.470039913 1094640.50940595 + 0.586197366101952 -44825.4277947897 1099086.29371068 + 2.46220095017086 -18387.1187903352 1099846.31374412 + 3.74560421940584 -7520.15693892837 1099974.29389308 + 4.57511194805329 -3071.99907740516 1099995.71035561 + 5.08929982880562 -1254.27247274723 1099999.28489734 + 5.39849936753897 -511.982661665742 1099999.88083845 + 5.57967413250151 -208.955948864414 1099999.98013922 + 5.68342749936104 -85.2717632722995 1099999.99668019 + 5.74185532163128 -34.7943700604054 1099999.99943472 + 5.77385355598619 -14.1958527541372 1099999.99989325 + 5.79117591135841 -5.79117591135835 1099999.99996951 + 5.80047436712933 -2.36220105071641 1099999.99998217 + 5.80509655166431 -0.963278156159763 1099999.99998426 + 5.80747678350342 -0.392722321693664 1099999.99998460 + 5.80869824475722 -0.160058300392686 1099999.99998465 + 5.80923638053551 -0.0651999180082752 1099999.99998466 + 5.80969534709893 -0.0266118101721914 1099999.99998466 + 5.80974838515745 -0.0107286593232783 1099999.99998466 + 5.81000992738324 -0.00457812601744125 1099999.99998466 + 5.81021572334935 -0.00183182462650662 1099999.99998466 + 5.81009973933179 -0.000792763814851500 1099999.99998466 + 5.81011151292550 -0.000479365133337446 1099999.99998466 + 5.81001942388184 -0.000115252907077423 1099999.99998466 + 5.80989733492256 -6.71612694130790e-05 1099999.99998466 + 5.80995863394709 5.11766993349838e-05 1099999.99998466 + 5.80986672873383 5.70238191107689e-05 1099999.99998466 + 5.80985110617649 -2.56780462522707e-05 1099999.99998466 + 5.80988125200386 3.31471249648872e-05 1099999.99998466 + 5.80980133989394 -7.16130753739070e-05 1099999.99998466 + 5.80986044782638 2.03820431484555e-05 1099999.99998466 + 5.80977373419117 -3.65808283838661e-06 1099999.99998466 + 5.80979331428776 5.65122414733685e-05 1099999.99998466 + 5.80972073598899 9.94222623644518e-05 1099999.99998466 + 5.80969770173779 9.60524020869550e-05 1099999.99998466 + 5.80964500108644 0.000135772460186914 1099999.99998466 + 5.80961624994747 5.98488096294123e-05 1099999.99998466 + 5.80959562526265 5.94770921146041e-05 1099999.99998466 + 5.80959562526244 -5.94770921543299e-05 1099999.99998466 + 5.80961624994772 -5.98488095845437e-05 1099999.99998466 + 5.80964500108624 -0.000135772460201482 1099999.99998466 + 5.80969770173779 -9.60524020630732e-05 1099999.99998466 + 5.80972073598889 -9.94222623530651e-05 1099999.99998466 + 5.80979331428766 -5.65122415276176e-05 1099999.99998466 + 5.80977373419120 3.65808290152348e-06 1099999.99998466 + 5.80986044782626 -2.03820431591632e-05 1099999.99998466 + 5.80980133989399 7.16130753375751e-05 1099999.99998466 + 5.80988125200388 -3.31471249532347e-05 1099999.99998466 + 5.80985110617659 2.56780463173225e-05 1099999.99998466 + 5.80986672873378 -5.70238191162857e-05 1099999.99998466 + 5.80995863394717 -5.11766993802011e-05 1099999.99998466 + 5.80989733492254 6.71612694223957e-05 1099999.99998466 + 5.81001942388181 0.000115252907033642 1099999.99998466 + 5.81011151292548 0.000479365133352176 1099999.99998466 + 5.81009973933165 0.000792763814803682 1099999.99998466 + 5.81021572334932 0.00183182462640807 1099999.99998466 + 5.81000992738303 0.00457812601745529 1099999.99998466 + 5.80974838515748 0.0107286593233359 1099999.99998466 + 5.80969534709863 0.0266118101722305 1099999.99998466 + 5.80923638053564 0.0651999180082518 1099999.99998466 + 5.80869824475687 0.160058300392734 1099999.99998465 + 5.80747678350345 0.392722321693693 1099999.99998460 + 5.80509655166421 0.963278156159654 1099999.99998426 + 5.80047436712927 2.36220105071640 1099999.99998217 + 5.79117591135832 5.79117591135862 1099999.99996951 + 5.77385355598618 14.1958527541371 1099999.99989325 + 5.74185532163152 34.7943700604050 1099999.99943472 + 5.68342749936105 85.2717632723008 1099999.99668019 + 5.57967413250083 208.955948864417 1099999.98013922 + 5.39849936754027 511.982661665740 1099999.88083845 + 5.08929982880547 1254.27247274723 1099999.28489734 + 4.57511194805289 3071.99907740517 1099995.71035561 + 3.74560421941913 7520.15693892838 1099974.29389308 + 2.46220095019829 18387.1187903352 1099846.31374412 + 0.586197366094236 44825.4277947897 1099086.29371068 + -1.94305220788449 108453.470039913 1094640.50940595 + -5.00060429571285 256941.339668686 1069570.54369698 + -8.21517890265944 570452.253234026 940523.379142025 + -3.06389144013072 -570453.289974148 940522.750361884 + -1.99259428278037 -256943.328624854 1069570.06590088 + -0.887526174369424 -108455.739279648 1094640.28457595 + 0.100962191416390 -44827.3949016043 1099086.21348206 + 0.876726831772874 -18388.5772014527 1099846.28936399 + 1.42933924629069 -7521.13627868207 1099974.28720268 + 1.79715843078177 -3072.61329680702 1099995.70864813 + 2.03087347420889 -1254.63889224514 1099999.28448937 + 2.17409120345900 -512.193078943017 1099999.88075160 + 2.25952719697635 -209.073321762120 1099999.98012875 + 2.30937120737094 -85.3356732359929 1099999.99668750 + 2.33777778517578 -34.8283612745809 1099999.99944615 + 2.35354013136600 -14.2137440075174 1099999.99990565 + 2.36220105071639 -5.80047436712938 1099999.99998217 + 2.36679755612317 -2.36679755612304 1099999.99999491 + 2.36915510390480 -0.965606898244651 1099999.99999702 + 2.37050839249200 -0.393908349289272 1099999.99999738 + 2.37107838057920 -0.160567423044398 1099999.99999743 + 2.37154361694872 -0.0654753349170741 1099999.99999744 + 2.37175795167690 -0.0265918327279390 1099999.99999744 + 2.37185658750001 -0.0109783507254823 1099999.99999744 + 2.37213839199558 -0.00458201200886869 1099999.99999744 + 2.37193699636981 -0.00188271894744886 1099999.99999744 + 2.37178792120733 -0.000981568732553333 1099999.99999744 + 2.37179791312343 -0.000390496382178841 1099999.99999744 + 2.37165542880377 -6.15662749255678e-05 1099999.99999744 + 2.37171963902898 3.49931945911694e-06 1099999.99999744 + 2.37173271679826 9.76962350172306e-05 1099999.99999744 + 2.37158400528513 5.33369059774787e-05 1099999.99999744 + 2.37168731931397 7.41704834882731e-05 1099999.99999744 + 2.37153302656266 7.14069107802270e-05 1099999.99999744 + 2.37153538241653 4.26863414834387e-05 1099999.99999744 + 2.37144663541318 0.000132099948545455 1099999.99999744 + 2.37132182354869 7.89307883107757e-05 1099999.99999744 + 2.37126795402724 0.000171426863773893 1099999.99999744 + 2.37108226676489 0.000140827243207945 1099999.99999744 + 2.37103083224869 0.000163357122688712 1099999.99999744 + 2.37087009712485 0.000146632132590817 1099999.99999744 + 2.37083090047580 8.05757678488778e-05 1099999.99999744 + 2.37076721113944 5.75253652004478e-05 1099999.99999745 + 2.37076721113945 -5.75253652163659e-05 1099999.99999745 + 2.37083090047573 -8.05757678728880e-05 1099999.99999744 + 2.37087009712494 -0.000146632132556894 1099999.99999744 + 2.37103083224857 -0.000163357122686728 1099999.99999744 + 2.37108226676504 -0.000140827243184385 1099999.99999744 + 2.37126795402712 -0.000171426863769994 1099999.99999744 + 2.37132182354874 -7.89307883064178e-05 1099999.99999744 + 2.37144663541315 -0.000132099948548004 1099999.99999744 + 2.37153538241654 -4.26863414945457e-05 1099999.99999744 + 2.37153302656261 -7.14069107615836e-05 1099999.99999744 + 2.37168731931394 -7.41704834809333e-05 1099999.99999744 + 2.37158400528518 -5.33369059805319e-05 1099999.99999744 + 2.37173271679820 -9.76962350009483e-05 1099999.99999744 + 2.37171963902901 -3.49931947663386e-06 1099999.99999744 + 2.37165542880372 6.15662749079616e-05 1099999.99999744 + 2.37179791312344 0.000390496382188981 1099999.99999744 + 2.37178792120734 0.000981568732501221 1099999.99999744 + 2.37193699636972 0.00188271894746984 1099999.99999744 + 2.37213839199548 0.00458201200887091 1099999.99999744 + 2.37185658749991 0.0109783507255107 1099999.99999744 + 2.37175795167687 0.0265918327279048 1099999.99999744 + 2.37154361694870 0.0654753349170892 1099999.99999744 + 2.37107838057917 0.160567423044443 1099999.99999743 + 2.37050839249207 0.393908349289179 1099999.99999738 + 2.36915510390473 0.965606898244721 1099999.99999702 + 2.36679755612309 2.36679755612313 1099999.99999491 + 2.36220105071639 5.80047436712917 1099999.99998217 + 2.35354013136612 14.2137440075173 1099999.99990565 + 2.33777778517586 34.8283612745815 1099999.99944615 + 2.30937120737053 85.3356732359943 1099999.99668750 + 2.25952719697679 209.073321762119 1099999.98012875 + 2.17409120345915 512.193078943016 1099999.88075160 + 2.03087347420775 1254.63889224515 1099999.28448937 + 1.79715843078214 3072.61329680702 1099995.70864813 + 1.42933924629399 7521.13627868206 1099974.28720268 + 0.876726831780163 18388.5772014527 1099846.28936399 + 0.100962191435692 44827.3949016043 1099086.21348206 + -0.887526174369057 108455.739279648 1094640.28457595 + -1.99259428272490 256943.328624854 1069570.06590088 + -3.06389144013211 570453.289974148 940522.750361884 + -1.05395432622244 -570453.261672129 940522.767532248 + -0.739444714864452 -256943.799398595 1069569.95280817 + -0.368431315433994 -108456.486920500 1094640.21050057 + 0.00166972108871733 -44828.1325273356 1099086.18339697 + 0.312621098057115 -18389.1663407084 1099846.27951419 + 0.544592808285801 -7521.55283468680 1099974.28435517 + 0.704616306174546 -3072.88515921936 1099995.70788995 + 0.808902370271162 -1254.80645155924 1099999.28429982 + 0.874407757461259 -512.292212022457 1099999.88070723 + 0.914221273255889 -209.130178285147 1099999.98011988 + 0.937812461943121 -85.3672395420309 1099999.99668707 + 0.951374584789130 -34.8456185818567 1099999.99944767 + 0.958973161628519 -14.2229400288325 1099999.99990763 + 0.963278156159754 -5.80509655166435 1099999.99998426 + 0.965606898244613 -2.36915510390490 1099999.99999702 + 0.966888883141848 -0.966888883141785 1099999.99999915 + 0.967526328607137 -0.394497040750220 1099999.99999950 + 0.967921184966283 -0.160885348579895 1099999.99999956 + 0.968223412255869 -0.0655751282055732 1099999.99999957 + 0.968343670447901 -0.0268309419164431 1099999.99999957 + 0.968483634633377 -0.0111325995561205 1099999.99999957 + 0.968389730320273 -0.00463938768328080 1099999.99999957 + 0.968113450374626 -0.00200162977309428 1099999.99999957 + 0.968163185899035 -0.000852537850858545 1099999.99999957 + 0.968145393398539 -0.000193648902649793 1099999.99999957 + 0.968045907606833 2.16014587586705e-05 1099999.99999957 + 0.968192442170314 9.33188508642925e-05 1099999.99999957 + 0.967874964525383 0.000143651580557970 1099999.99999957 + 0.967960656702750 8.49942071715945e-05 1099999.99999957 + 0.967843279865133 0.000112652589746196 1099999.99999957 + 0.967677433927236 3.78999994095356e-05 1099999.99999957 + 0.967653214279406 8.58096919660601e-05 1099999.99999957 + 0.967321977333134 0.000103302939062525 1099999.99999957 + 0.967238713385078 0.000133450817843957 1099999.99999957 + 0.966836135726528 0.000239561441615256 1099999.99999958 + 0.966647464586286 0.000191542115455464 1099999.99999958 + 0.966268698635836 0.000303025627228158 1099999.99999958 + 0.966057337483391 0.000146288235039385 1099999.99999958 + 0.965821296615140 0.000216438837249599 1099999.99999958 + 0.965727672518212 -1.95867547926695e-05 1099999.99999958 + 0.965727672518247 1.95867547957405e-05 1099999.99999958 + 0.965821296615112 -0.000216438837247732 1099999.99999958 + 0.966057337483381 -0.000146288235051490 1099999.99999958 + 0.966268698635882 -0.000303025627226744 1099999.99999958 + 0.966647464586246 -0.000191542115457740 1099999.99999958 + 0.966836135726609 -0.000239561441597018 1099999.99999958 + 0.967238713385032 -0.000133450817854140 1099999.99999957 + 0.967321977333212 -0.000103302939044490 1099999.99999957 + 0.967653214279378 -8.58096919603001e-05 1099999.99999957 + 0.967677433927283 -3.78999994128331e-05 1099999.99999957 + 0.967843279865116 -0.000112652589752829 1099999.99999957 + 0.967960656702791 -8.49942071651687e-05 1099999.99999957 + 0.967874964525379 -0.000143651580556480 1099999.99999957 + 0.968192442170333 -9.33188508725464e-05 1099999.99999957 + 0.968045907606844 -2.16014587431821e-05 1099999.99999957 + 0.968145393398528 0.000193648902622825 1099999.99999957 + 0.968163185899050 0.000852537850876230 1099999.99999957 + 0.968113450374582 0.00200162977309518 1099999.99999957 + 0.968389730320325 0.00463938768328262 1099999.99999957 + 0.968483634633316 0.0111325995560977 1099999.99999957 + 0.968343670448003 0.0268309419164502 1099999.99999957 + 0.968223412255797 0.0655751282055795 1099999.99999957 + 0.967921184966399 0.160885348579843 1099999.99999956 + 0.967526328607081 0.394497040750294 1099999.99999950 + 0.966888883141889 0.966888883141789 1099999.99999915 + 0.965606898244631 2.36915510390478 1099999.99999702 + 0.963278156159772 5.80509655166445 1099999.99998426 + 0.958973161628444 14.2229400288325 1099999.99990763 + 0.951374584788868 34.8456185818567 1099999.99944767 + 0.937812461944036 85.3672395420316 1099999.99668707 + 0.914221273257057 209.130178285149 1099999.98011988 + 0.874407757457923 512.292212022458 1099999.88070723 + 0.808902370268646 1254.80645155923 1099999.28429982 + 0.704616306181226 3072.88515921936 1099995.70788995 + 0.544592808280932 7521.55283468680 1099974.28435517 + 0.312621098065803 18389.1663407084 1099846.27951419 + 0.00166972111451529 44828.1325273356 1099086.18339697 + -0.368431315428545 108456.486920500 1094640.21050057 + -0.739444714830684 256943.799398595 1069569.95280817 + -1.05395432621816 570453.261672129 940522.767532247 + -0.323033560183276 -570453.068534651 940522.884676017 + -0.251530963629688 -256943.844421398 1069569.94199252 + -0.139292731420592 -108456.706149029 1094640.18877953 + -0.00786448534739408 -44828.3954117151 1099086.17267474 + 0.112690211012841 -18389.3965182490 1099846.27566569 + 0.207846975239195 -7521.72505281550 1099974.28317765 + 0.275914882747899 -3073.00243637996 1099995.70756251 + 0.321764600794410 -1254.88168570014 1099999.28421424 + 0.351222065791681 -512.338188131433 1099999.88068611 + 0.369539971032657 -209.157020660499 1099999.98011509 + 0.380505544118763 -85.3825357817183 1099999.99668622 + 0.386902286413362 -34.8540178371029 1099999.99944775 + 0.390657205839952 -14.2274410317240 1099999.99990792 + 0.392722321693615 -5.80747678350355 1099999.99998460 + 0.393908349289232 -2.37050839249194 1099999.99999738 + 0.394497040750262 -0.967526328607142 1099999.99999950 + 0.394833891080287 -0.394833891080294 1099999.99999986 + 0.395148592924930 -0.161114014775787 1099999.99999992 + 0.395369013098776 -0.0658923618481237 1099999.99999993 + 0.395447510514173 -0.0270906644875182 1099999.99999993 + 0.395358102809184 -0.0111183470364222 1099999.99999993 + 0.395165625004288 -0.00452303512599096 1099999.99999993 + 0.395092252012606 -0.00179892812482437 1099999.99999993 + 0.395217055652496 -0.000615189447397268 1099999.99999993 + 0.395041471530003 -8.80809012888097e-05 1099999.99999993 + 0.395138845869358 3.36579419779045e-05 1099999.99999993 + 0.394911848272097 2.05831024910210e-05 1099999.99999993 + 0.394821303529843 0.000105090380273605 1099999.99999993 + 0.394866681154664 4.63413343860537e-05 1099999.99999993 + 0.394490274175576 0.000105389484761406 1099999.99999993 + 0.394392391246784 0.000137173105595767 1099999.99999993 + 0.393882358961339 0.000302180387348890 1099999.99999993 + 0.393455271845181 0.000451352597420428 1099999.99999993 + 0.392784246892458 0.000620204577929192 1099999.99999993 + 0.392030297138108 0.000778066115700638 1099999.99999993 + 0.391238914697218 0.000776711676559644 1099999.99999993 + 0.390376819469252 0.000811776052772846 1099999.99999993 + 0.389688624085763 0.000584086006818201 1099999.99999993 + 0.389101859116728 0.000473294021297813 1099999.99999993 + 0.388822758482085 9.00322107009087e-05 1099999.99999993 + 0.388822758482051 -9.00322107003138e-05 1099999.99999993 + 0.389101859116773 -0.000473294021294093 1099999.99999993 + 0.389688624085738 -0.000584086006815190 1099999.99999993 + 0.390376819469269 -0.000811776052781015 1099999.99999993 + 0.391238914697203 -0.000776711676562405 1099999.99999993 + 0.392030297138111 -0.000778066115708711 1099999.99999993 + 0.392784246892482 -0.000620204577927094 1099999.99999993 + 0.393455271845163 -0.000451352597422998 1099999.99999993 + 0.393882358961397 -0.000302180387341482 1099999.99999993 + 0.394392391246764 -0.000137173105596768 1099999.99999993 + 0.394490274175633 -0.000105389484762583 1099999.99999993 + 0.394866681154638 -4.63413343820687e-05 1099999.99999993 + 0.394821303529894 -0.000105090380280907 1099999.99999993 + 0.394911848272080 -2.05831024797197e-05 1099999.99999993 + 0.395138845869383 -3.36579419765454e-05 1099999.99999993 + 0.395041471530006 8.80809012925391e-05 1099999.99999993 + 0.395217055652476 0.000615189447399380 1099999.99999993 + 0.395092252012644 0.00179892812481623 1099999.99999993 + 0.395165625004261 0.00452303512598856 1099999.99999993 + 0.395358102809249 0.0111183470364173 1099999.99999993 + 0.395447510514125 0.0270906644875130 1099999.99999993 + 0.395369013098839 0.0658923618481192 1099999.99999993 + 0.395148592924876 0.161114014775808 1099999.99999992 + 0.394833891080311 0.394833891080252 1099999.99999986 + 0.394497040750257 0.967526328607168 1099999.99999950 + 0.393908349289246 2.37050839249202 1099999.99999738 + 0.392722321693606 5.80747678350342 1099999.99998460 + 0.390657205839978 14.2274410317243 1099999.99990792 + 0.386902286413288 34.8540178371026 1099999.99944775 + 0.380505544118146 85.3825357817182 1099999.99668622 + 0.369539971033630 209.157020660502 1099999.98011509 + 0.351222065794426 512.338188131434 1099999.88068611 + 0.321764600793062 1254.88168570014 1099999.28421424 + 0.275914882742632 3073.00243637997 1099995.70756251 + 0.207846975235188 7521.72505281549 1099974.28317765 + 0.112690211019879 18389.3965182490 1099846.27566569 + -0.00786448534250215 44828.3954117151 1099086.17267474 + -0.139292731342400 108456.706149029 1094640.18877953 + -0.251530963611613 256943.844421398 1069569.94199252 + -0.323033560103543 570453.068534651 940522.884676017 + -0.0800894919015386 -570452.921791802 940522.973679639 + -0.0751283250013548 -256943.803440492 1069569.95183743 + -0.0472310922675316 -108456.757792309 1094640.18366273 + -0.00341010139220609 -44828.4832533255 1099086.16909194 + 0.0416539094172025 -18389.4828139890 1099846.27422283 + 0.0795878529125600 -7521.79455632051 1099974.28270239 + 0.108004941693584 -3073.05222262518 1099995.70742345 + 0.127817158533384 -1254.91453055176 1099999.28417681 + 0.140969128648251 -512.358794347375 1099999.88067656 + 0.149197093005483 -209.169563626254 1099999.98011276 + 0.154334226173255 -85.3898316483609 1099999.99668571 + 0.157297208151767 -34.8581792072549 1099999.99944767 + 0.158971398569544 -14.2296747848057 1099999.99990795 + 0.160058300392770 -5.80869824475699 1099999.99998465 + 0.160567423044454 -2.37107838057933 1099999.99999743 + 0.160885348579845 -0.967921184966267 1099999.99999956 + 0.161114014775807 -0.395148592924893 1099999.99999992 + 0.161447538865127 -0.161447538865145 1099999.99999998 + 0.161534593319180 -0.0660661717824199 1099999.99999999 + 0.161362963993295 -0.0269032695782705 1099999.99999999 + 0.161258123864640 -0.0108517230124628 1099999.99999999 + 0.161144921699595 -0.00432039560360296 1099999.99999999 + 0.161286581286732 -0.00166603937705073 1099999.99999999 + 0.161200258755725 -0.000646454386858341 1099999.99999999 + 0.161211496104785 -0.000214613738586668 1099999.99999999 + 0.161092955347335 -0.000175053600819280 1099999.99999999 + 0.160901617443905 6.09290391707358e-05 1099999.99999999 + 0.160871553912743 0.000196487847860271 1099999.99999999 + 0.160421589595855 0.000271726975572272 1099999.99999999 + 0.159950732554684 0.000583105156908523 1099999.99999999 + 0.159284093171261 0.000745169574281060 1099999.99999999 + 0.158259198053968 0.00122247595542657 1099999.99999999 + 0.157066081184367 0.00140389951943546 1099999.99999999 + 0.155377563836300 0.00191723607690839 1099999.99999999 + 0.153578614959966 0.00190524118508545 1099999.99999999 + 0.151430850839915 0.00218177835716364 1099999.99999999 + 0.149418368423100 0.00180756610338962 1099999.99999999 + 0.147503282479205 0.00168803442742555 1099999.99999999 + 0.146116933702109 0.000910910135949395 1099999.99999999 + 0.145334338069836 0.000481648378070212 1099999.99999999 + 0.145334338069861 -0.000481648378072417 1099999.99999999 + 0.146116933702086 -0.000910910135950315 1099999.99999999 + 0.147503282479235 -0.00168803442742340 1099999.99999999 + 0.149418368423076 -0.00180756610338815 1099999.99999999 + 0.151430850839936 -0.00218177835716799 1099999.99999999 + 0.153578614959951 -0.00190524118508923 1099999.99999999 + 0.155377563836308 -0.00191723607690900 1099999.99999999 + 0.157066081184361 -0.00140389951944247 1099999.99999999 + 0.158259198053957 -0.00122247595542642 1099999.99999999 + 0.159284093171272 -0.000745169574277493 1099999.99999999 + 0.159950732554670 -0.000583105156906887 1099999.99999999 + 0.160421589595867 -0.000271726975576828 1099999.99999999 + 0.160871553912729 -0.000196487847852914 1099999.99999999 + 0.160901617443916 -6.09290391712309e-05 1099999.99999999 + 0.161092955347334 0.000175053600819017 1099999.99999999 + 0.161211496104791 0.000214613738592153 1099999.99999999 + 0.161200258755741 0.000646454386852248 1099999.99999999 + 0.161286581286730 0.00166603937705731 1099999.99999999 + 0.161144921699599 0.00432039560359740 1099999.99999999 + 0.161258123864643 0.0108517230124601 1099999.99999999 + 0.161362963993285 0.0269032695782712 1099999.99999999 + 0.161534593319175 0.0660661717824230 1099999.99999999 + 0.161447538865118 0.161447538865133 1099999.99999998 + 0.161114014775819 0.395148592924918 1099999.99999992 + 0.160885348579831 0.967921184966258 1099999.99999956 + 0.160567423044453 2.37107838057926 1099999.99999743 + 0.160058300392754 5.80869824475706 1099999.99998465 + 0.158971398569564 14.2296747848057 1099999.99990795 + 0.157297208151821 34.8581792072556 1099999.99944767 + 0.154334226172986 85.3898316483608 1099999.99668571 + 0.149197093005300 209.169563626252 1099999.98011276 + 0.140969128649683 512.358794347378 1099999.88067656 + 0.127817158532238 1254.91453055176 1099999.28417681 + 0.108004941690928 3073.05222262518 1099995.70742345 + 0.0795878529217221 7521.79455632050 1099974.28270239 + 0.0416539094034131 18389.4828139889 1099846.27422283 + -0.00341010138847651 44828.4832533254 1099086.16909194 + -0.0472310922063372 108456.757792309 1094640.18366273 + -0.0751283249967495 256943.803440492 1069569.95183743 + -0.0800894918457002 570452.921791802 940522.973679638 + -0.00968781531552258 -570452.838725871 940523.024061397 + -0.0174101551051383 -256943.764542599 1069569.96118191 + -0.0134874184049286 -108456.762970308 1094640.18314970 + -0.000248528912283469 -44828.5101687881 1099086.16799414 + 0.0159001552678202 -18389.5141975013 1099846.27369809 + 0.0306614335937577 -7521.82149127679 1099974.28251821 + 0.0423442638540554 -3073.07257293245 1099995.70736661 + 0.0507872284848917 -1254.92881726552 1099999.28416052 + 0.0565493276283093 -512.368138182790 1099999.88067222 + 0.0603100769073923 -209.175339630845 1099999.98011167 + 0.0624470584347089 -85.3932168395386 1099999.99668545 + 0.0637668152893765 -34.8599792682648 1099999.99944763 + 0.0646958003351762 -14.2307602622954 1099999.99990795 + 0.0651999180082852 -5.80923638053582 1099999.99998466 + 0.0654753349170702 -2.37154361694856 1099999.99999744 + 0.0655751282055871 -0.968223412255854 1099999.99999957 + 0.0658923618481030 -0.395369013098809 1099999.99999993 + 0.0660661717824236 -0.161534593319157 1099999.99999999 + 0.0658311046089201 -0.0658311046089219 1100000.00000000 + 0.0657080491415283 -0.0266881404730996 1100000.00000000 + 0.0656881120143873 -0.0107743250344890 1100000.00000000 + 0.0657677205433445 -0.00439998121885517 1100000.00000000 + 0.0657857900573417 -0.00188354867785232 1100000.00000000 + 0.0657521851752480 -0.000762135572309690 1100000.00000000 + 0.0656027800843263 -0.000292919786232918 1100000.00000000 + 0.0653499778895827 1.17810032392367e-05 1100000.00000000 + 0.0651458601455775 0.000474054442603446 1100000.00000000 + 0.0646334248088861 0.000640975233701607 1100000.00000000 + 0.0638569249275276 0.00107384276071112 1100000.00000000 + 0.0628504522762890 0.00146672736149852 1100000.00000000 + 0.0612447553634708 0.00209075832694052 1100000.00000000 + 0.0590135033515951 0.00273178266528167 1100000.00000000 + 0.0559459207279204 0.00353568714103935 1100000.00000000 + 0.0520621629011702 0.00422949547428960 1100000.00000000 + 0.0473778723808977 0.00480133795180589 1100000.00000000 + 0.0421780577045375 0.00500527786155587 1100000.00000000 + 0.0368689586636438 0.00477372925768683 1100000.00000000 + 0.0320363792721874 0.00392736841835263 1100000.00000000 + 0.0283377305560083 0.00265082352016300 1100000.00000000 + 0.0263207633762382 0.000889742140164814 1100000.00000000 + 0.0263207633762420 -0.000889742140164146 1100000.00000000 + 0.0283377305560014 -0.00265082352016309 1100000.00000000 + 0.0320363792721835 -0.00392736841835292 1100000.00000000 + 0.0368689586636478 -0.00477372925768655 1100000.00000000 + 0.0421780577045319 -0.00500527786155477 1100000.00000000 + 0.0473778723809046 -0.00480133795180402 1100000.00000000 + 0.0520621629011578 -0.00422949547429265 1100000.00000000 + 0.0559459207279292 -0.00353568714103537 1100000.00000000 + 0.0590135033515768 -0.00273178266528503 1100000.00000000 + 0.0612447553634738 -0.00209075832694043 1100000.00000000 + 0.0628504522762782 -0.00146672736149829 1100000.00000000 + 0.0638569249275281 -0.00107384276070958 1100000.00000000 + 0.0646334248088765 -0.000640975233702685 1100000.00000000 + 0.0651458601455824 -0.000474054442604005 1100000.00000000 + 0.0653499778895802 -1.17810032417223e-05 1100000.00000000 + 0.0656027800843294 0.000292919786229812 1100000.00000000 + 0.0657521851752537 0.000762135572314689 1100000.00000000 + 0.0657857900573398 0.00188354867785272 1100000.00000000 + 0.0657677205433575 0.00439998121885525 1100000.00000000 + 0.0656881120143650 0.0107743250344941 1100000.00000000 + 0.0657080491415462 0.0266881404730985 1100000.00000000 + 0.0658311046088921 0.0658311046089171 1100000.00000000 + 0.0660661717824463 0.161534593319157 1099999.99999999 + 0.0658923618480828 0.395369013098778 1099999.99999993 + 0.0655751282056092 0.968223412255888 1099999.99999957 + 0.0654753349170628 2.37154361694864 1099999.99999744 + 0.0651999180083056 5.80923638053568 1099999.99998466 + 0.0646958003350773 14.2307602622956 1099999.99990795 + 0.0637668152893823 34.8599792682649 1099999.99944763 + 0.0624470584352161 85.3932168395386 1099999.99668545 + 0.0603100769069456 209.175339630846 1099999.98011167 + 0.0565493276275940 512.368138182793 1099999.88067222 + 0.0507872284853413 1254.92881726552 1099999.28416052 + 0.0423442638521071 3073.07257293245 1099995.70736661 + 0.0306614335990111 7521.82149127679 1099974.28251821 + 0.0159001552739322 18389.5141975013 1099846.27369809 + -0.000248528946724129 44828.5101687879 1099086.16799414 + -0.0134874184659098 108456.762970308 1094640.18314970 + -0.0174101551412128 256943.764542599 1069569.96118191 + -0.00968781530452004 570452.838725871 940523.024061397 + 0.00544724764845582 -570452.797912931 940523.048815555 + -0.00119361041027833 -256943.741048133 1069569.96682601 + -0.00253776419877502 -108456.759136769 1094640.18352952 + 0.000753973417223601 -44828.5171470094 1099086.16770952 + 0.00631086693119083 -18389.5247623496 1099846.27352145 + 0.0119648702692011 -7521.83191686263 1099974.28244692 + 0.0165891457158713 -3073.08094620381 1099995.70734321 + 0.0202391909564057 -1254.93485348146 1099999.28415364 + 0.0227738060526217 -512.372178697864 1099999.88067033 + 0.0241963535947655 -209.177787864342 1099999.98011121 + 0.0252048276683286 -85.3946166376434 1099999.99668534 + 0.0259842575430360 -34.8609979489006 1099999.99944760 + 0.0263958338400536 -14.2312948943168 1099999.99990794 + 0.0266118101722521 -5.80969534709871 1099999.99998466 + 0.0265918327279301 -2.37175795167702 1099999.99999744 + 0.0268309419164217 -0.968343670447864 1099999.99999957 + 0.0270906644875181 -0.395447510514136 1099999.99999993 + 0.0269032695782772 -0.161362963993329 1099999.99999999 + 0.0266881404730927 -0.0657080491415249 1100000.00000000 + 0.0267081833543363 -0.0267081833543315 1100000.00000000 + 0.0268089453768228 -0.0109534485180726 1100000.00000000 + 0.0268188945244574 -0.00453032251003590 1100000.00000000 + 0.0267784151990640 -0.00177999423562016 1100000.00000000 + 0.0265420511635602 -0.000591891912560014 1100000.00000000 + 0.0262653820599144 -9.96221816006479e-06 1100000.00000000 + 0.0259772189442280 0.000613161193189621 1100000.00000000 + 0.0253882587908256 0.00104805631524230 1100000.00000000 + 0.0244276049261849 0.00148394389144484 1100000.00000000 + 0.0228920965817905 0.00231182838431733 1100000.00000000 + 0.0204886715185465 0.00333239437313559 1100000.00000000 + 0.0167041427817176 0.00476093017264327 1100000.00000000 + 0.0112859428819488 0.00650541275723829 1100000.00000000 + 0.00386507242496132 0.00854222007825296 1100000.00000000 + -0.00580397223899249 0.0105348707942572 1100000.00000000 + -0.0175160712613679 0.0121238835484269 1100000.00000000 + -0.0308247649979285 0.0129413889870094 1100000.00000000 + -0.0445385268680017 0.0123661416600202 1100000.00000000 + -0.0571823863532841 0.0104516453248933 1100000.00000000 + -0.0669313113912651 0.00691894361215488 1100000.00000000 + -0.0722736931260366 0.00248968832404471 1100000.00000000 + -0.0722736931260805 -0.00248968832404260 1100000.00000000 + -0.0669313113912276 -0.00691894361215068 1100000.00000000 + -0.0571823863533244 -0.0104516453248949 1100000.00000000 + -0.0445385268679775 -0.0123661416600150 1100000.00000000 + -0.0308247649979566 -0.0129413889870106 1100000.00000000 + -0.0175160712613650 -0.0121238835484239 1100000.00000000 + -0.00580397223899895 -0.0105348707942576 1100000.00000000 + 0.00386507242494834 -0.00854222007825416 1100000.00000000 + 0.0112859428819649 -0.00650541275723522 1100000.00000000 + 0.0167041427817107 -0.00476093017264389 1100000.00000000 + 0.0204886715185528 -0.00333239437313608 1100000.00000000 + 0.0228920965817836 -0.00231182838431520 1100000.00000000 + 0.0244276049261943 -0.00148394389144622 1100000.00000000 + 0.0253882587908167 -0.00104805631524494 1100000.00000000 + 0.0259772189442325 -0.000613161193187973 1100000.00000000 + 0.0262653820599132 9.96221815891183e-06 1100000.00000000 + 0.0265420511635507 0.000591891912558441 1100000.00000000 + 0.0267784151990709 0.00177999423562052 1100000.00000000 + 0.0268188945244520 0.00453032251004340 1100000.00000000 + 0.0268089453768275 0.0109534485180683 1100000.00000000 + 0.0267081833543265 0.0267081833543341 1100000.00000000 + 0.0266881404731011 0.0657080491415311 1100000.00000000 + 0.0269032695782672 0.161362963993307 1099999.99999999 + 0.0270906644875197 0.395447510514138 1099999.99999993 + 0.0268309419164278 0.968343670447869 1099999.99999957 + 0.0265918327279561 2.37175795167698 1099999.99999744 + 0.0266118101721965 5.80969534709882 1099999.99998466 + 0.0263958338400893 14.2312948943168 1099999.99990794 + 0.0259842575432230 34.8609979489007 1099999.99944760 + 0.0252048276680574 85.3946166376435 1099999.99668534 + 0.0241963535943872 209.177787864342 1099999.98011121 + 0.0227738060527578 512.372178697865 1099999.88067033 + 0.0202391909592117 1254.93485348147 1099999.28415364 + 0.0165891457175171 3073.08094620382 1099995.70734321 + 0.0119648702602310 7521.83191686261 1099974.28244692 + 0.00631086694253098 18389.5247623496 1099846.27352145 + 0.000753973399053727 44828.5171470094 1099086.16770952 + -0.00253776432920861 108456.759136768 1094640.18352952 + -0.00119361041825774 256943.741048133 1069569.96682601 + 0.00544724760913186 570452.797912931 940523.048815556 + 0.00584353853783741 -570452.779709082 940523.059856685 + 0.00196141565507211 -256943.729188222 1069569.96967513 + 0.000205391589889475 -108456.755351041 1094640.18390461 + 0.000832909132356549 -44828.5185413288 1099086.16765265 + 0.00264587834858784 -18389.5281418025 1099846.27346494 + 0.00460354709662180 -7521.83562478699 1099974.28242156 + 0.00658313039761436 -3073.08443040946 1099995.70733348 + 0.00818327419993887 -1254.93731063001 1099999.28415083 + 0.00909212255627926 -512.373756896710 1099999.88066960 + 0.00976499570279870 -209.178900960746 1099999.98011099 + 0.0102925879694157 -85.3954722825389 1099999.99668528 + 0.0105950328732764 -34.8614472829069 1099999.99944758 + 0.0107312274259714 -14.2316463206307 1099999.99990794 + 0.0107286593232855 -5.80974838515757 1099999.99998466 + 0.0109783507254759 -2.37185658749976 1099999.99999744 + 0.0111325995561199 -0.968483634633380 1099999.99999957 + 0.0111183470364234 -0.395358102809241 1099999.99999993 + 0.0108517230124564 -0.161258123864620 1099999.99999999 + 0.0107743250344910 -0.0656881120143916 1100000.00000000 + 0.0109534485180699 -0.0268089453768270 1100000.00000000 + 0.0109335187956214 -0.0109335187956186 1100000.00000000 + 0.0108741091198904 -0.00436070481231148 1100000.00000000 + 0.0106035049157061 -0.00158255712984092 1100000.00000000 + 0.0103394968425267 -0.000343528795712446 1100000.00000000 + 0.00999786528179603 0.000539753282327450 1100000.00000000 + 0.00930502552670796 0.00120859837769219 1100000.00000000 + 0.00810849172048011 0.00195457293671927 1100000.00000000 + 0.00594829057117159 0.00324034445914329 1100000.00000000 + 0.00241481668489621 0.00514909396165618 1100000.00000000 + -0.00331909422394484 0.00775177097976533 1100000.00000000 + -0.0121576943745695 0.0113448872316910 1100000.00000000 + -0.0249499810017651 0.0158324730969975 1100000.00000000 + -0.0429679210084368 0.0210824881328898 1100000.00000000 + -0.0666324192484484 0.0262662019264631 1100000.00000000 + -0.0960754292438374 0.0307491510616090 1100000.00000000 + -0.129890871312025 0.0329954820552563 1099999.99999999 + -0.165346268034381 0.0321121170527292 1099999.99999999 + -0.198349241075032 0.0272048290580688 1099999.99999998 + -0.224046980455995 0.0182818838556584 1099999.99999998 + -0.238204716796064 0.00649352844016288 1099999.99999997 + -0.238204716795999 -0.00649352844016345 1099999.99999997 + -0.224046980456059 -0.0182818838556616 1099999.99999998 + -0.198349241074965 -0.0272048290580649 1099999.99999998 + -0.165346268034444 -0.0321121170527335 1099999.99999999 + -0.129890871311972 -0.0329954820552482 1099999.99999999 + -0.0960754292438928 -0.0307491510616163 1100000.00000000 + -0.0666324192484278 -0.0262662019264564 1100000.00000000 + -0.0429679210084632 -0.0210824881328967 1100000.00000000 + -0.0249499810017832 -0.0158324730970044 1100000.00000000 + -0.0121576943745511 -0.0113448872316855 1100000.00000000 + -0.00331909422394499 -0.00775177097976401 1100000.00000000 + 0.00241481668489954 -0.00514909396165896 1100000.00000000 + 0.00594829057117070 -0.00324034445913879 1100000.00000000 + 0.00810849172048241 -0.00195457293671837 1100000.00000000 + 0.00930502552670026 -0.00120859837769351 1100000.00000000 + 0.00999786528179732 -0.000539753282323818 1100000.00000000 + 0.0103394968425274 0.000343528795710656 1100000.00000000 + 0.0106035049156988 0.00158255712983930 1100000.00000000 + 0.0108741091198917 0.00436070481230867 1100000.00000000 + 0.0109335187956252 0.0109335187956285 1100000.00000000 + 0.0109534485180675 0.0268089453768270 1100000.00000000 + 0.0107743250344960 0.0656881120143799 1100000.00000000 + 0.0108517230124476 0.161258123864627 1099999.99999999 + 0.0111183470364274 0.395358102809208 1099999.99999993 + 0.0111325995561190 0.968483634633373 1099999.99999957 + 0.0109783507254918 2.37185658749987 1099999.99999744 + 0.0107286593233211 5.80974838515749 1099999.99998466 + 0.0107312274260191 14.2316463206306 1099999.99990794 + 0.0105950328730064 34.8614472829073 1099999.99944758 + 0.0102925879693460 85.3954722825395 1099999.99668528 + 0.00976499570368549 209.178900960746 1099999.98011099 + 0.00909212255563832 512.373756896710 1099999.88066960 + 0.00818327419933630 1254.93731063001 1099999.28415083 + 0.00658313040524507 3073.08443040946 1099995.70733348 + 0.00460354709490914 7521.83562478699 1099974.28242156 + 0.00264587833947116 18389.5281418025 1099846.27346494 + 0.000832909159241921 44828.5185413288 1099086.16765265 + 0.000205391577289143 108456.755351041 1094640.18390461 + 0.00196141562692766 256943.729188222 1069569.96967513 + 0.00584353841493215 570452.779709082 940523.059856685 + 0.00370568916034658 -570452.772274352 940523.064366051 + 0.00167522055783887 -256943.723797009 1069569.97097026 + 0.000657961619233001 -108456.753057704 1094640.18413184 + 0.000536512866715069 -44828.5183157066 1099086.16766185 + 0.00106444305045825 -18389.5292727728 1099846.27344603 + 0.00190563024890725 -7521.83713691645 1099974.28241122 + 0.00269898399753015 -3073.08553123421 1099995.70733041 + 0.00333895264463339 -1254.93837658934 1099999.28414962 + 0.00368352599923089 -512.374585560715 1099999.88066921 + 0.00389573473081972 -209.179370149595 1099999.98011090 + 0.00415783321843563 -85.3957131703530 1099999.99668526 + 0.00428477802814467 -34.8616846286496 1099999.99944757 + 0.00438947778350371 -14.2316205191114 1099999.99990794 + 0.00457812601739393 -5.81000992738308 1099999.99998466 + 0.00458201200886669 -2.37213839199570 1099999.99999744 + 0.00463938768328455 -0.968389730320253 1099999.99999957 + 0.00452303512599272 -0.395165625004232 1099999.99999993 + 0.00432039560359888 -0.161144921699624 1099999.99999999 + 0.00439998121885518 -0.0657677205433532 1100000.00000000 + 0.00453032251003737 -0.0268188945244552 1100000.00000000 + 0.00436070481231032 -0.0108741091198923 1100000.00000000 + 0.00416682365638381 -0.00416682365638222 1100000.00000000 + 0.00386893479922669 -0.00132411045203244 1100000.00000000 + 0.00347636536721508 0.000165646028207741 1100000.00000000 + 0.00267726147589223 0.00125175899007929 1100000.00000000 + 0.00120847945793010 0.00240925105527074 1100000.00000000 + -0.00146994623087913 0.00435661725922839 1100000.00000000 + -0.00622152078215989 0.00729316639373539 1100000.00000000 + -0.0141093513040159 0.0117196219514472 1100000.00000000 + -0.0271363420367729 0.0180387770812032 1100000.00000000 + -0.0472692491525682 0.0268127597113519 1100000.00000000 + -0.0775717008453269 0.0381326983819100 1100000.00000000 + -0.120718722974804 0.0513632590637301 1099999.99999999 + -0.178886579999555 0.0652368545863957 1099999.99999998 + -0.252545945341689 0.0774090306907817 1099999.99999997 + -0.338546784162358 0.0844033508620416 1099999.99999994 + -0.430337686208176 0.0833301060469814 1099999.99999991 + -0.516657509679615 0.0711864937586583 1099999.99999988 + -0.584784101672556 0.0484019254014000 1099999.99999984 + -0.622405199001545 0.0170734009622989 1099999.99999982 + -0.622405199001595 -0.0170734009623082 1099999.99999982 + -0.584784101672491 -0.0484019254014057 1099999.99999984 + -0.516657509679662 -0.0711864937586682 1099999.99999988 + -0.430337686208089 -0.0833301060469807 1099999.99999991 + -0.338546784162415 -0.0844033508620496 1099999.99999994 + -0.252545945341595 -0.0774090306907707 1099999.99999997 + -0.178886579999629 -0.0652368545864054 1099999.99999998 + -0.120718722974745 -0.0513632590637168 1099999.99999999 + -0.0775717008453911 -0.0381326983819248 1100000.00000000 + -0.0472692491525999 -0.0268127597113697 1100000.00000000 + -0.0271363420367485 -0.0180387770811914 1100000.00000000 + -0.0141093513040178 -0.0117196219514485 1100000.00000000 + -0.00622152078216031 -0.00729316639373873 1100000.00000000 + -0.00146994623087714 -0.00435661725922057 1100000.00000000 + 0.00120847945792970 -0.00240925105527045 1100000.00000000 + 0.00267726147588569 -0.00125175899008188 1100000.00000000 + 0.00347636536721998 -0.000165646028205303 1100000.00000000 + 0.00386893479922688 0.00132411045203284 1100000.00000000 + 0.00416682365638196 0.00416682365638321 1100000.00000000 + 0.00436070481231026 0.0108741091198877 1100000.00000000 + 0.00453032251004330 0.0268188945244598 1100000.00000000 + 0.00439998121885131 0.0657677205433587 1100000.00000000 + 0.00432039560360483 0.161144921699603 1099999.99999999 + 0.00452303512598143 0.395165625004233 1099999.99999993 + 0.00463938768327059 0.968389730320234 1099999.99999957 + 0.00458201200889235 2.37213839199564 1099999.99999744 + 0.00457812601751493 5.81000992738316 1099999.99998466 + 0.00438947778335524 14.2316205191117 1099999.99990794 + 0.00428477802805377 34.8616846286499 1099999.99944757 + 0.00415783321858342 85.3957131703522 1099999.99668526 + 0.00389573473056029 209.179370149595 1099999.98011090 + 0.00368352600138641 512.374585560719 1099999.88066921 + 0.00333895264588471 1254.93837658933 1099999.28414962 + 0.00269898399303619 3073.08553123421 1099995.70733041 + 0.00190563025921133 7521.83713691646 1099974.28241122 + 0.00106444305790231 18389.5292727728 1099846.27344603 + 0.000536512884691884 44828.5183157066 1099086.16766185 + 0.000657961694010369 108456.753057704 1094640.18413184 + 0.00167522054678199 256943.723797009 1069569.97097026 + 0.00370568914911274 570452.772274352 940523.064366051 + 0.00191914942530260 -570452.769385412 940523.066118271 + 0.00108652465558288 -256943.721491919 1069569.97152402 + 0.000409843533887791 -108456.751868812 1094640.18424963 + 0.000321961388058346 -44828.5181770386 1099086.16766751 + 0.000499391075845091 -18389.5294366849 1099846.27344329 + 0.000750392042995319 -7521.83759116737 1099974.28240812 + 0.00119437171456675 -3073.08629608078 1099995.70732827 + 0.00141553000468074 -1254.93868736675 1099999.28414926 + 0.00140611300639324 -512.374689132977 1099999.88066917 + 0.00154613481601292 -209.179536701428 1099999.98011087 + 0.00178136275118567 -85.3959464521008 1099999.99668524 + 0.00185601895502653 -34.8617715387664 1099999.99944757 + 0.00188523543726957 -14.2319851255424 1099999.99990793 + 0.00183182462650621 -5.81021572334950 1099999.99998466 + 0.00188271894741956 -2.37193699636964 1099999.99999744 + 0.00200162977309871 -0.968113450374623 1099999.99999957 + 0.00179892812483127 -0.395092252012653 1099999.99999993 + 0.00166603937705284 -0.161286581286711 1099999.99999999 + 0.00188354867784965 -0.0657857900573463 1100000.00000000 + 0.00177999423562085 -0.0267784151990728 1100000.00000000 + 0.00158255712984107 -0.0106035049157024 1100000.00000000 + 0.00132411045203263 -0.00386893479922451 1100000.00000000 + 0.000847135914764426 -0.000847135914765154 1100000.00000000 + 1.89381302493724e-05 0.000998643807797151 1100000.00000000 + -0.00158500367486711 0.00266646015578864 1100000.00000000 + -0.00469204495468719 0.00533700168858542 1100000.00000000 + -0.0103658891598658 0.00949809123330358 1100000.00000000 + -0.0205105408715335 0.0161066405457906 1100000.00000000 + -0.0379130454840698 0.0263006658640437 1100000.00000000 + -0.0668520031342278 0.0414252557960306 1100000.00000000 + -0.113015031217634 0.0629248278190140 1099999.99999999 + -0.183822356101540 0.0909725644997384 1099999.99999998 + -0.286947074712219 0.125005329845550 1099999.99999996 + -0.429341710259859 0.161842037823034 1099999.99999990 + -0.612928287321336 0.195293432822684 1099999.99999981 + -0.832096708520193 0.216809189072321 1099999.99999966 + -1.06955966373818 0.216686523120211 1099999.99999946 + -1.29667208930903 0.187513815807174 1099999.99999922 + -1.47752424475239 0.128227291407408 1099999.99999900 + -1.57827751785772 0.0456034502092527 1099999.99999887 + -1.57827751785772 -0.0456034502092571 1099999.99999887 + -1.47752424475238 -0.128227291407424 1099999.99999900 + -1.29667208930901 -0.187513815807173 1099999.99999922 + -1.06955966373818 -0.216686523120235 1099999.99999946 + -0.832096708520117 -0.216809189072313 1099999.99999966 + -0.612928287321353 -0.195293432822700 1099999.99999981 + -0.429341710259735 -0.161842037823013 1099999.99999990 + -0.286947074712278 -0.125005329845555 1099999.99999996 + -0.183822356101417 -0.0909725644997065 1099999.99999998 + -0.113015031217749 -0.0629248278190436 1099999.99999999 + -0.0668520031342650 -0.0414252557960599 1100000.00000000 + -0.0379130454840414 -0.0263006658640221 1100000.00000000 + -0.0205105408715402 -0.0161066405457974 1100000.00000000 + -0.0103658891598623 -0.00949809123330879 1100000.00000000 + -0.00469204495468381 -0.00533700168857692 1100000.00000000 + -0.00158500367486542 -0.00266646015578836 1100000.00000000 + 1.89381302419977e-05 -0.000998643807800439 1100000.00000000 + 0.000847135914767994 0.000847135914765800 1100000.00000000 + 0.00132411045203353 0.00386893479922666 1100000.00000000 + 0.00158255712984102 0.0106035049157069 1100000.00000000 + 0.00177999423562077 0.0267784151990688 1100000.00000000 + 0.00188354867785150 0.0657857900573439 1100000.00000000 + 0.00166603937705215 0.161286581286719 1099999.99999999 + 0.00179892812481877 0.395092252012629 1099999.99999993 + 0.00200162977310088 0.968113450374596 1099999.99999957 + 0.00188271894746159 2.37193699636962 1099999.99999744 + 0.00183182462641553 5.81021572334956 1099999.99998466 + 0.00188523543726041 14.2319851255424 1099999.99990793 + 0.00185601895532526 34.8617715387665 1099999.99944757 + 0.00178136275149571 85.3959464521016 1099999.99668524 + 0.00154613481548540 209.179536701427 1099999.98011087 + 0.00140611300575405 512.374689132975 1099999.88066917 + 0.00141553000699535 1254.93868736676 1099999.28414926 + 0.00119437171636326 3073.08629608077 1099995.70732827 + 0.000750392053906761 7521.83759116735 1099974.28240812 + 0.000499391104173774 18389.5294366849 1099846.27344329 + 0.000321961392361148 44828.5181770386 1099086.16766751 + 0.000409843567828147 108456.751868812 1094640.18424963 + 0.00108652469707155 256943.721491919 1069569.97152402 + 0.00191914948675968 570452.769385412 940523.066118272 + 0.00100620741009738 -570452.768365276 940523.066737011 + 0.000439493691398622 -256943.720497019 1069569.97176302 + 0.000203149505299167 -108456.751258488 1094640.18431010 + 0.000129313579346288 -44828.5179379603 1099086.16767726 + 0.000210608474153136 -18389.5296977589 1099846.27343893 + 0.000417341705846654 -7521.83782178506 1099974.28240654 + 0.000596683592728995 -3073.08623827544 1099995.70732843 + 0.000543651613323894 -1254.93890239437 1099999.28414902 + 0.000534186623669388 -512.374840168638 1099999.88066909 + 0.000758085607016449 -209.179647604845 1099999.98011085 + 0.000771279716373249 -85.3960598183465 1099999.99668523 + 0.000720029752627876 -34.8619568419181 1099999.99944757 + 0.000646901883717295 -14.2319941912946 1099999.99990793 + 0.000792763814758086 -5.81009973933158 1099999.99998466 + 0.000981568732575941 -2.37178792120748 1099999.99999744 + 0.000852537850873985 -0.968163185899049 1099999.99999957 + 0.000615189447388597 -0.395217055652436 1099999.99999993 + 0.000646454386860047 -0.161200258755744 1099999.99999999 + 0.000762135572313352 -0.0657521851752604 1100000.00000000 + 0.000591891912558026 -0.0265420511635560 1100000.00000000 + 0.000343528795711184 -0.0103394968425242 1100000.00000000 + -0.000165646028206005 -0.00347636536721805 1100000.00000000 + -0.000998643807797226 -1.89381302494499e-05 1100000.00000000 + -0.00251927864159552 0.00251927864159975 1100000.00000000 + -0.00593767084895706 0.00596852438630264 1100000.00000000 + -0.0121524107815633 0.0113728824223882 1100000.00000000 + -0.0240208091248528 0.0203052310543948 1100000.00000000 + -0.0453640760104451 0.0350914701930657 1100000.00000000 + -0.0828909896014835 0.0585266288367001 1100000.00000000 + -0.146668071191008 0.0944528098583441 1099999.99999999 + -0.251062579974227 0.146013047088915 1099999.99999996 + -0.415073684513814 0.215886894423104 1099999.99999990 + -0.660170892183228 0.302997294173791 1099999.99999976 + -1.00646387200685 0.400366199222581 1099999.99999947 + -1.46346203875311 0.492654883359141 1099999.99999892 + -2.02096645676908 0.556688263018021 1099999.99999800 + -2.63658743503187 0.564781116428130 1099999.99999669 + -3.23526726762760 0.494951293538160 1099999.99999513 + -3.71769087301996 0.341217508755037 1099999.99999366 + -3.98876242675921 0.121987361341048 1099999.99999276 + -3.98876242675911 -0.121987361341047 1099999.99999276 + -3.71769087302008 -0.341217508755027 1099999.99999366 + -3.23526726762753 -0.494951293538177 1099999.99999513 + -2.63658743503197 -0.564781116428117 1099999.99999669 + -2.02096645676905 -0.556688263018069 1099999.99999800 + -1.46346203875311 -0.492654883359118 1099999.99999892 + -1.00646387200683 -0.400366199222628 1099999.99999947 + -0.660170892183126 -0.302997294173751 1099999.99999976 + -0.415073684513805 -0.215886894423097 1099999.99999990 + -0.251062579974036 -0.146013047088852 1099999.99999996 + -0.146668071191168 -0.0944528098583949 1099999.99999999 + -0.0828909896015095 -0.0585266288367347 1100000.00000000 + -0.0453640760104202 -0.0350914701930345 1100000.00000000 + -0.0240208091248642 -0.0203052310544071 1100000.00000000 + -0.0121524107815556 -0.0113728824223961 1100000.00000000 + -0.00593767084895549 -0.00596852438629423 1100000.00000000 + -0.00251927864159156 -0.00251927864159655 1100000.00000000 + -0.000998643807804305 1.89381302461245e-05 1100000.00000000 + -0.000165646028206367 0.00347636536721644 1100000.00000000 + 0.000343528795712315 0.0103394968425261 1100000.00000000 + 0.000591891912559146 0.0265420511635634 1100000.00000000 + 0.000762135572316232 0.0657521851752556 1100000.00000000 + 0.000646454386854031 0.161200258755742 1099999.99999999 + 0.000615189447394455 0.395217055652447 1099999.99999993 + 0.000852537850860643 0.968163185898969 1099999.99999957 + 0.000981568732513574 2.37178792120746 1099999.99999744 + 0.000792763814829348 5.81009973933171 1099999.99998466 + 0.000646901883849834 14.2319941912947 1099999.99990793 + 0.000720029752592910 34.8619568419178 1099999.99944757 + 0.000771279716391288 85.3960598183466 1099999.99668523 + 0.000758085607762715 209.179647604847 1099999.98011085 + 0.000534186621905626 512.374840168639 1099999.88066909 + 0.000543651609367173 1254.93890239436 1099999.28414902 + 0.000596683599866847 3073.08623827543 1099995.70732843 + 0.000417341702733229 7521.83782178504 1099974.28240654 + 0.000210608469426112 18389.5296977589 1099846.27343893 + 0.000129313577657056 44828.5179379603 1099086.16767726 + 0.000203149491642763 108456.751258488 1094640.18431010 + 0.000439493635378855 256943.720497019 1069569.97176302 + 0.00100620733152469 570452.768365276 940523.066737011 + 0.000322278266087125 -570452.767975874 940523.066973194 + 0.000244501547922582 -256943.720116263 1069569.97185449 + 3.78523919452299e-05 -108456.750941222 1094640.18434154 + 4.45651810775823e-05 -44828.5179218368 1099086.16767792 + 0.000120536321013917 -18389.5296773969 1099846.27343927 + 0.000231560350761011 -7521.83794400276 1099974.28240570 + 0.000283660902080937 -3073.08650059261 1099995.70732770 + 0.000234952156391223 -1254.93875110628 1099999.28414919 + 0.000238313156067152 -512.374838416436 1099999.88066910 + 0.000302313364705332 -209.179713121416 1099999.98011084 + 0.000313717121107803 -85.3961229518867 1099999.99668523 + 0.000209455384535402 -34.8620082643818 1099999.99944756 + 0.000390002572051930 -14.2320736107275 1099999.99990793 + 0.000479365133442027 -5.81011151292566 1099999.99998466 + 0.000390496382159845 -2.37179791312337 1099999.99999744 + 0.000193648902629821 -0.968145393398498 1099999.99999957 + 8.80809013022320e-05 -0.395041471530027 1099999.99999993 + 0.000214613738585795 -0.161211496104789 1099999.99999999 + 0.000292919786231642 -0.0656027800843257 1100000.00000000 + 9.96221815989924e-06 -0.0262653820599151 1100000.00000000 + -0.000539753282325220 -0.00999786528179946 1100000.00000000 + -0.00125175899007912 -0.00267726147588985 1100000.00000000 + -0.00266646015578709 0.00158500367487289 1100000.00000000 + -0.00596852438629819 0.00593767084895961 1100000.00000000 + -0.0124047654216971 0.0124047654216786 1100000.00000000 + -0.0248427473330991 0.0234489420478681 1100000.00000000 + -0.0487912911226185 0.0427944232625000 1100000.00000000 + -0.0929239129796351 0.0753921093631026 1099999.99999999 + -0.172541633505001 0.128854953810829 1099999.99999998 + -0.311242933286825 0.212161304025531 1099999.99999994 + -0.544802120729879 0.336024355829269 1099999.99999981 + -0.921030811737360 0.508606405369598 1099999.99999950 + -1.49882328939087 0.730555621250491 1099999.99999874 + -2.33569070280237 0.987180808502563 1099999.99999708 + -3.46951288488438 1.24104649415626 1099999.99999383 + -4.88481073736365 1.42975413328680 1099999.99998822 + -6.48287830640963 1.47558193696043 1099999.99997991 + -8.06483529365456 1.31093931212885 1099999.99996965 + -9.35868667028171 0.912449445627814 1099999.99995981 + -10.0918437734642 0.327955753951130 1099999.99995366 + -10.0918437734645 -0.327955753951143 1099999.99995366 + -9.35868667028149 -0.912449445627794 1099999.99995981 + -8.06483529365476 -1.31093931212885 1099999.99996965 + -6.48287830640945 -1.47558193696040 1099999.99997991 + -4.88481073736390 -1.42975413328682 1099999.99998822 + -3.46951288488434 -1.24104649415631 1099999.99999383 + -2.33569070280248 -0.987180808502549 1099999.99999708 + -1.49882328939088 -0.730555621250602 1099999.99999874 + -0.921030811737346 -0.508606405369546 1099999.99999950 + -0.544802120729775 -0.336024355829251 1099999.99999981 + -0.311242933286606 -0.212161304025434 1099999.99999994 + -0.172541633505177 -0.128854953810902 1099999.99999998 + -0.0929239129796382 -0.0753921093631343 1099999.99999999 + -0.0487912911226046 -0.0427944232624597 1100000.00000000 + -0.0248427473331131 -0.0234489420478826 1100000.00000000 + -0.0124047654216883 -0.0124047654216905 1100000.00000000 + -0.00596852438629903 -0.00593767084895330 1100000.00000000 + -0.00266646015578080 -0.00158500367486662 1100000.00000000 + -0.00125175899008478 0.00267726147588916 1100000.00000000 + -0.000539753282327279 0.00999786528179799 1100000.00000000 + 9.96221816210748e-06 0.0262653820599092 1100000.00000000 + 0.000292919786230068 0.0656027800843334 1100000.00000000 + 0.000214613738593092 0.161211496104795 1099999.99999999 + 8.80809013055183e-05 0.395041471530017 1099999.99999993 + 0.000193648902618064 0.968145393398511 1099999.99999957 + 0.000390496382115356 2.37179791312328 1099999.99999744 + 0.000479365133366368 5.81011151292559 1099999.99998466 + 0.000390002572200977 14.2320736107276 1099999.99990793 + 0.000209455384864423 34.8620082643822 1099999.99944756 + 0.000313717121117896 85.3961229518870 1099999.99668523 + 0.000302313363649481 209.179713121416 1099999.98011084 + 0.000238313155548520 512.374838416437 1099999.88066910 + 0.000234952158271143 1254.93875110627 1099999.28414919 + 0.000283660894999221 3073.08650059260 1099995.70732770 + 0.000231560341826116 7521.83794400275 1099974.28240570 + 0.000120536290159332 18389.5296773969 1099846.27343927 + 4.45651591130423e-05 44828.5179218368 1099086.16767792 + 3.78523617725008e-05 108456.750941222 1094640.18434154 + 0.000244501503470966 256943.720116263 1069569.97185449 + 0.000322278145557852 570452.767975874 940523.066973194 + 0.000102682451710384 -570452.767907618 940523.067014593 + -8.50751448586841e-05 -256943.719887713 1069569.97190940 + -7.45950311458486e-05 -108456.750862491 1094640.18434934 + -2.85895846970742e-05 -44828.5179645550 1099086.16767618 + 6.95317464791548e-05 -18389.5298752045 1099846.27343596 + 0.000184923723379150 -7521.83792818668 1099974.28240581 + 0.000172847109964180 -3073.08630859503 1099995.70732823 + 2.51126842883789e-05 -1254.93890929919 1099999.28414901 + 9.60724537229604e-05 -512.374800740058 1099999.88066911 + 0.000219144232112673 -209.179794777336 1099999.98011082 + 7.93448151523985e-05 -85.3962380399054 1099999.99668522 + 0.000120656715511528 -34.8620408987813 1099999.99944756 + 0.000134429931462017 -14.2321018129219 1099999.99990793 + 0.000115252906966679 -5.81001942388179 1099999.99998466 + 6.15662749248746e-05 -2.37165542880372 1099999.99999744 + -2.16014587358958e-05 -0.968045907606850 1099999.99999957 + -3.36579419827628e-05 -0.395138845869355 1099999.99999993 + 0.000175053600822157 -0.161092955347334 1099999.99999999 + -1.17810032407873e-05 -0.0653499778895913 1100000.00000000 + -0.000613161193188602 -0.0259772189442311 1100000.00000000 + -0.00120859837769086 -0.00930502552670086 1100000.00000000 + -0.00240925105527058 -0.00120847945792597 1100000.00000000 + -0.00533700168858206 0.00469204495468486 1100000.00000000 + -0.0113728824224046 0.0121524107815477 1100000.00000000 + -0.0234489420478605 0.0248427473331105 1100000.00000000 + -0.0477500184996917 0.0477500184997100 1100000.00000000 + -0.0950564544104733 0.0886408573300110 1099999.99999999 + -0.184855037997768 0.159851959666989 1099999.99999997 + -0.350662475610282 0.279131166907994 1099999.99999991 + -0.648461382841092 0.471428164876032 1099999.99999971 + -1.16284491250660 0.765572768227293 1099999.99999912 + -2.01625292486775 1.18837247757794 1099999.99999751 + -3.36332238307459 1.75024242130609 1099999.99999347 + -5.37218406824385 2.42386737391203 1099999.99998421 + -8.16965355229438 3.11936493141242 1099999.99996524 + -11.7566249789388 3.67241156492799 1099999.99993104 + -15.9058379677092 3.86297926270571 1099999.99987822 + -20.1010669111292 3.48535066232220 1099999.99981082 + -23.5882899015127 2.45271891187517 1099999.99974435 + -25.5851482736741 0.886564201705216 1099999.99970210 + -25.5851482736738 -0.886564201705233 1099999.99970210 + -23.5882899015129 -2.45271891187528 1099999.99974435 + -20.1010669111288 -3.48535066232208 1099999.99981082 + -15.9058379677093 -3.86297926270576 1099999.99987822 + -11.7566249789385 -3.67241156492781 1099999.99993104 + -8.16965355229471 -3.11936493141250 1099999.99996524 + -5.37218406824371 -2.42386737391199 1099999.99998421 + -3.36332238307474 -1.75024242130611 1099999.99999347 + -2.01625292486787 -1.18837247757813 1099999.99999751 + -1.16284491250667 -0.765572768227251 1099999.99999912 + -0.648461382840934 -0.471428164876013 1099999.99999971 + -0.350662475610096 -0.279131166907881 1099999.99999991 + -0.184855037997922 -0.159851959667079 1099999.99999997 + -0.0950564544104556 -0.0886408573300349 1099999.99999999 + -0.0477500184996890 -0.0477500184996629 1100000.00000000 + -0.0234489420478728 -0.0248427473331221 1100000.00000000 + -0.0113728824223956 -0.0121524107815622 1100000.00000000 + -0.00533700168858586 -0.00469204495468173 1100000.00000000 + -0.00240925105526347 0.00120847945793267 1100000.00000000 + -0.00120859837769350 0.00930502552669938 1100000.00000000 + -0.000613161193191948 0.0259772189442359 1100000.00000000 + -1.17810032391769e-05 0.0653499778895832 1100000.00000000 + 0.000175053600820815 0.161092955347323 1099999.99999999 + -3.36579419743533e-05 0.395138845869368 1099999.99999993 + -2.16014587228460e-05 0.968045907606870 1099999.99999957 + 6.15662748853406e-05 2.37165542880377 1099999.99999744 + 0.000115252906902687 5.81001942388162 1099999.99998466 + 0.000134429931489285 14.2321018129217 1099999.99990793 + 0.000120656715617727 34.8620408987814 1099999.99944756 + 7.93448149607601e-05 85.3962380399065 1099999.99668522 + 0.000219144232015837 209.179794777337 1099999.98011082 + 9.60724542871823e-05 512.374800740057 1099999.88066911 + 2.51126838185856e-05 1254.93890929919 1099999.28414901 + 0.000172847111357136 3073.08630859503 1099995.70732823 + 0.000184923718093924 7521.83792818668 1099974.28240581 + 6.95317290557984e-05 18389.5298752045 1099846.27343596 + -2.85896101668397e-05 44828.5179645550 1099086.16767618 + -7.45951049874004e-05 108456.750862491 1094640.18434934 + -8.50751219959520e-05 256943.719887713 1069569.97190940 + 0.000102682447793648 570452.767907618 940523.067014593 + -0.000156907115284579 -570452.767928161 940523.067002133 + -8.59063079160845e-05 -256943.719948721 1069569.97189474 + -0.000132732204113149 -108456.750819229 1094640.18435362 + -3.62778287238116e-05 -44828.5180112699 1099086.16767427 + 6.83884724873242e-05 -18389.5299072139 1099846.27343543 + 0.000117519853144748 -7521.83806878890 1099974.28240485 + 2.79547565966119e-05 -3073.08641178899 1099995.70732794 + 1.11786705485968e-05 -1254.93866710464 1099999.28414929 + 0.000119359265470843 -512.374943594692 1099999.88066905 + 4.31451177455571e-05 -209.179831692139 1099999.98011082 + -2.27712263690027e-05 -85.3961751234533 1099999.99668522 + -3.84587230488260e-05 -34.8621154447648 1099999.99944756 + 6.36304714021885e-05 -14.2320340348438 1099999.99990793 + 6.71612693650912e-05 -5.80989733492247 1099999.99998466 + -3.49931944707146e-06 -2.37171963902907 1099999.99999744 + -9.33188508582555e-05 -0.968192442170338 1099999.99999957 + -2.05831024834621e-05 -0.394911848272072 1099999.99999993 + -6.09290391754017e-05 -0.160901617443915 1099999.99999999 + -0.000474054442602477 -0.0651458601455794 1100000.00000000 + -0.00104805631524088 -0.0253882587908195 1100000.00000000 + -0.00195457293671943 -0.00810849172047982 1100000.00000000 + -0.00435661725922586 0.00146994623087357 1100000.00000000 + -0.00949809123331599 0.0103658891598573 1100000.00000000 + -0.0203052310543883 0.0240208091248709 1100000.00000000 + -0.0427944232624828 0.0487912911226277 1100000.00000000 + -0.0886408573300331 0.0950564544104481 1099999.99999999 + -0.180313152714571 0.180313152714598 1099999.99999997 + -0.358478623025018 0.332362219265282 1099999.99999989 + -0.698258736089554 0.595973697135993 1099999.99999962 + -1.32450768225961 1.03312810664533 1099999.99999872 + -2.44004931117865 1.72338181873720 1099999.99999594 + -4.34637788593381 2.74852422990475 1099999.99998798 + -7.45138708125986 4.16000926014168 1099999.99996690 + -12.2278631944853 5.91763282539534 1099999.99991612 + -19.0885669790202 7.81625445680236 1099999.99980661 + -28.1507443601707 9.42735471329742 1099999.99959939 + -38.9271481262941 10.1323811799517 1099999.99926455 + -50.0878872535366 9.30419554595025 1099999.99882029 + -59.5421174067748 6.63064593958214 1099999.99836853 + -65.0219784601476 2.41227910785791 1099999.99807560 + -65.0219784601478 -2.41227910785798 1099999.99807560 + -59.5421174067746 -6.63064593958200 1099999.99836853 + -50.0878872535369 -9.30419554595058 1099999.99882029 + -38.9271481262937 -10.1323811799514 1099999.99926455 + -28.1507443601706 -9.42735471329755 1099999.99959939 + -19.0885669790197 -7.81625445680190 1099999.99980661 + -12.2278631944857 -5.91763282539552 1099999.99991612 + -7.45138708125947 -4.16000926014141 1099999.99996690 + -4.34637788593393 -2.74852422990477 1099999.99998798 + -2.44004931117884 -1.72338181873740 1099999.99999594 + -1.32450768225968 -1.03312810664531 1099999.99999872 + -0.698258736089426 -0.595973697135983 1099999.99999962 + -0.358478623024900 -0.332362219265178 1099999.99999989 + -0.180313152714682 -0.180313152714700 1099999.99999997 + -0.0886408573300060 -0.0950564544104661 1099999.99999999 + -0.0427944232624875 -0.0487912911225815 1100000.00000000 + -0.0203052310543983 -0.0240208091248736 1100000.00000000 + -0.00949809123330473 -0.0103658891598703 1100000.00000000 + -0.00435661725923114 -0.00146994623087676 1100000.00000000 + -0.00195457293671567 0.00810849172048835 1100000.00000000 + -0.00104805631524209 0.0253882587908176 1100000.00000000 + -0.000474054442603490 0.0651458601455806 1100000.00000000 + -6.09290391704631e-05 0.160901617443909 1099999.99999999 + -2.05831024852186e-05 0.394911848272062 1099999.99999993 + -9.33188508784131e-05 0.968192442170368 1099999.99999957 + -3.49931943014656e-06 2.37171963902908 1099999.99999744 + 6.71612694327562e-05 5.80989733492248 1099999.99998466 + 6.36304713119971e-05 14.2320340348436 1099999.99990793 + -3.84587233222092e-05 34.8621154447651 1099999.99944756 + -2.27712264015419e-05 85.3961751234538 1099999.99668522 + 4.31451179129666e-05 209.179831692140 1099999.98011082 + 0.000119359265955043 512.374943594693 1099999.88066905 + 1.11786720381093e-05 1254.93866710464 1099999.28414929 + 2.79547572386366e-05 3073.08641178898 1099995.70732794 + 0.000117519854930873 7521.83806878891 1099974.28240485 + 6.83884633397747e-05 18389.5299072139 1099846.27343543 + -3.62778691149811e-05 44828.5180112700 1099086.16767427 + -0.000132732276341263 108456.750819229 1094640.18435362 + -8.59063736997287e-05 256943.719948721 1069569.97189474 + -0.000156907031049000 570452.767928161 940523.067002133 + -0.000132466437557685 -570452.768003082 940523.066956692 + -0.000182193556313417 -256943.719898121 1069569.97190690 + -9.87292566720930e-05 -108456.750920141 1094640.18434363 + -5.27267677242417e-05 -44828.5181797562 1099086.16766740 + 4.07727621039691e-05 -18389.5300518799 1099846.27343301 + 7.45412638075172e-05 -7521.83797664406 1099974.28240548 + 3.07992238673957e-05 -3073.08627862942 1099995.70732832 + -4.97740366111046e-06 -1254.93885281020 1099999.28414907 + 3.03340656010526e-05 -512.374842593703 1099999.88066909 + 1.76230724230017e-05 -209.179875630775 1099999.98011081 + -7.73532336515726e-05 -85.3962867239469 1099999.99668522 + 5.96125034827100e-05 -34.8620277632313 1099999.99944756 + -5.42916270024280e-06 -14.2319978586631 1099999.99990793 + -5.11766993217983e-05 -5.80995863394725 1099999.99998466 + -9.76962350184122e-05 -2.37173271679824 1099999.99999744 + -0.000143651580557323 -0.967874964525372 1099999.99999957 + -0.000105090380274458 -0.394821303529863 1099999.99999993 + -0.000196487847855039 -0.160871553912725 1099999.99999999 + -0.000640975233702716 -0.0646334248088896 1100000.00000000 + -0.00148394389144504 -0.0244276049261903 1100000.00000000 + -0.00324034445914108 -0.00594829057117622 1100000.00000000 + -0.00729316639374430 0.00622152078215881 1100000.00000000 + -0.0161066405457849 0.0205105408715571 1100000.00000000 + -0.0350914701930550 0.0453640760104385 1100000.00000000 + -0.0753921093631199 0.0929239129796091 1099999.99999999 + -0.159851959666975 0.184855037997815 1099999.99999997 + -0.332362219265318 0.358478623024953 1099999.99999989 + -0.679092684697116 0.679092684697136 1099999.99999958 + -1.35785074911343 1.25037183895577 1099999.99999845 + -2.64810458151193 2.22848586919774 1099999.99999456 + -5.01909798461658 3.82455143521046 1099999.99998190 + -9.20626636209791 6.28080600743692 1099999.99994354 + -16.2596825449724 9.79136963073322 1099999.99983625 + -27.4886537815562 14.3470546068425 1099999.99956297 + -44.1799693874787 19.5048501521253 1099999.99893986 + -66.9783303750519 24.1755446651167 1099999.99769520 + -94.9551380155281 26.6262676843029 1099999.99557935 + -124.745308315047 24.9499880449848 1099999.99264368 + -150.543586974362 18.0407995442282 1099999.98955053 + -165.712154476186 6.61389101010431 1099999.98749806 + -165.712154476187 -6.61389101010411 1099999.98749806 + -150.543586974361 -18.0407995442281 1099999.98955053 + -124.745308315048 -24.9499880449846 1099999.99264368 + -94.9551380155288 -26.6262676843036 1099999.99557935 + -66.9783303750519 -24.1755446651162 1099999.99769520 + -44.1799693874783 -19.5048501521255 1099999.99893986 + -27.4886537815558 -14.3470546068418 1099999.99956297 + -16.2596825449730 -9.79136963073362 1099999.99983625 + -9.20626636209731 -6.28080600743641 1099999.99994354 + -5.01909798461672 -3.82455143521041 1099999.99998190 + -2.64810458151206 -2.22848586919790 1099999.99999456 + -1.35785074911339 -1.25037183895577 1099999.99999845 + -0.679092684697068 -0.679092684697126 1099999.99999958 + -0.332362219265262 -0.358478623024878 1099999.99999989 + -0.159851959667046 -0.184855037997913 1099999.99999997 + -0.0753921093630939 -0.0929239129796238 1099999.99999999 + -0.0350914701930624 -0.0453640760104050 1100000.00000000 + -0.0161066405457945 -0.0205105408715521 1100000.00000000 + -0.00729316639373082 -0.00622152078216295 1100000.00000000 + -0.00324034445914624 0.00594829057116905 1100000.00000000 + -0.00148394389144545 0.0244276049261952 1100000.00000000 + -0.000640975233700168 0.0646334248088827 1100000.00000000 + -0.000196487847852046 0.160871553912723 1099999.99999999 + -0.000105090380282319 0.394821303529875 1099999.99999993 + -0.000143651580560284 0.967874964525379 1099999.99999957 + -9.76962350128407e-05 2.37173271679827 1099999.99999744 + -5.11766993299895e-05 5.80995863394721 1099999.99998466 + -5.42916262605078e-06 14.2319978586632 1099999.99990793 + 5.96125033981256e-05 34.8620277632312 1099999.99944756 + -7.73532340673693e-05 85.3962867239477 1099999.99668522 + 1.76230725019679e-05 209.179875630776 1099999.98011081 + 3.03340669843132e-05 512.374842593701 1099999.88066909 + -4.97740218298073e-06 1254.93885281020 1099999.28414907 + 3.07992233774092e-05 3073.08627862942 1099995.70732832 + 7.45412631809199e-05 7521.83797664407 1099974.28240548 + 4.07727581888471e-05 18389.5300518799 1099846.27343301 + -5.27267569155971e-05 44828.5181797563 1099086.16766740 + -9.87292171037977e-05 108456.750920141 1094640.18434363 + -0.000182193512996745 256943.719898121 1069569.97190689 + -0.000132466262135686 570452.768003082 940523.066956692 + -9.17833331444280e-05 -570452.767982027 940523.066969462 + -8.91981398617895e-05 -256943.719996882 1069569.97188317 + -0.000130779816494446 -108456.750941794 1094640.18434148 + -3.06720053896046e-06 -44828.5181958177 1099086.16766674 + 7.33058470330045e-05 -18389.5300878848 1099846.27343240 + 5.91364722608635e-05 -7521.83809688117 1099974.28240466 + -4.43242375859081e-05 -3073.08630413420 1099995.70732825 + 2.12790315882553e-06 -1254.93866223463 1099999.28414929 + 7.19679278892303e-05 -512.375041340045 1099999.88066900 + -4.22895943021240e-05 -209.179877531796 1099999.98011081 + -1.93220565287885e-05 -85.3961363255989 1099999.99668523 + -7.72898169096012e-05 -34.8620863095855 1099999.99944756 + -4.07292448504021e-05 -14.2319615104194 1099999.99990793 + -5.70238191595838e-05 -5.80986672873391 1099999.99998466 + -5.33369059814756e-05 -2.37158400528522 1099999.99999744 + -8.49942071646621e-05 -0.967960656702746 1099999.99999957 + -4.63413343837349e-05 -0.394866681154623 1099999.99999993 + -0.000271726975573922 -0.160421589595874 1099999.99999999 + -0.00107384276070737 -0.0638569249275272 1100000.00000000 + -0.00231182838431721 -0.0228920965817943 1100000.00000000 + -0.00514909396166307 -0.00241481668489563 1100000.00000000 + -0.0117196219514420 0.0141093513040389 1100000.00000000 + -0.0263006658640391 0.0379130454840511 1100000.00000000 + -0.0585266288367108 0.0828909896014649 1100000.00000000 + -0.128854953810829 0.172541633505068 1099999.99999998 + -0.279131166908001 0.350662475610189 1099999.99999991 + -0.595973697135946 0.698258736089556 1099999.99999962 + -1.25037183895580 1.35785074911343 1099999.99999845 + -2.57077729951339 2.57077729951323 1099999.99999399 + -5.16196688716948 4.71729116294134 1099999.99997777 + -10.0870832520906 8.34656046484597 1099999.99992208 + -19.0965061200790 14.1456126983178 1099999.99974328 + -34.8399222239584 22.7768835237281 1099999.99921245 + -60.8662959375471 34.4810202399895 1099999.99777562 + -101.061060274645 48.4121472696111 1099999.99429224 + -158.079302147884 61.8812981604579 1099999.98690075 + -230.616750614911 70.0877467215683 1099999.97359256 + -310.391436023111 67.2302843316296 1099999.95415329 + -381.295484139518 49.4451217170773 1099999.93280406 + -423.699510704691 18.2891138768331 1099999.91824738 + -423.699510704687 -18.2891138768326 1099999.91824738 + -381.295484139522 -49.4451217170778 1099999.93280406 + -310.391436023110 -67.2302843316287 1099999.95415329 + -230.616750614913 -70.0877467215688 1099999.97359256 + -158.079302147885 -61.8812981604592 1099999.98690075 + -101.061060274645 -48.4121472696110 1099999.99429224 + -60.8662959375463 -34.4810202399897 1099999.99777562 + -34.8399222239584 -22.7768835237273 1099999.99921245 + -19.0965061200796 -14.1456126983185 1099999.99974328 + -10.0870832520901 -8.34656046484539 1099999.99992208 + -5.16196688716975 -4.71729116294122 1099999.99997777 + -2.57077729951337 -2.57077729951333 1099999.99999399 + -1.25037183895566 -1.35785074911341 1099999.99999845 + -0.595973697135968 -0.698258736089538 1099999.99999962 + -0.279131166907986 -0.350662475610152 1099999.99999991 + -0.128854953810871 -0.172541633505145 1099999.99999998 + -0.0585266288366895 -0.0828909896014736 1100000.00000000 + -0.0263006658640445 -0.0379130454840353 1100000.00000000 + -0.0117196219514531 -0.0141093513040334 1100000.00000000 + -0.00514909396164990 0.00241481668490155 1100000.00000000 + -0.00231182838431896 0.0228920965817840 1100000.00000000 + -0.00107384276071029 0.0638569249275238 1100000.00000000 + -0.000271726975576221 0.160421589595871 1099999.99999999 + -4.63413343762563e-05 0.394866681154623 1099999.99999993 + -8.49942071674542e-05 0.967960656702805 1099999.99999957 + -5.33369060044937e-05 2.37158400528524 1099999.99999744 + -5.70238191163491e-05 5.80986672873373 1099999.99998466 + -4.07292448772561e-05 14.2319615104194 1099999.99990793 + -7.72898169781923e-05 34.8620863095865 1099999.99944756 + -1.93220563210632e-05 85.3961363255985 1099999.99668523 + -4.22895936346358e-05 209.179877531795 1099999.98011081 + 7.19679273438080e-05 512.375041340046 1099999.88066900 + 2.12790103187563e-06 1254.93866223463 1099999.28414929 + -4.43242317072947e-05 3073.08630413420 1099995.70732825 + 5.91364763857000e-05 7521.83809688118 1099974.28240466 + 7.33058553524253e-05 18389.5300878848 1099846.27343240 + -3.06715254121504e-06 44828.5181958177 1099086.16766674 + -0.000130779673876158 108456.750941794 1094640.18434148 + -8.91980164469736e-05 256943.719996882 1069569.97188317 + -9.17832307791064e-05 570452.767982027 940523.066969463 + -1.76952659969647e-05 -570452.767880440 940523.067031077 + -7.76867556265470e-05 -256943.719883077 1069569.97191051 + 7.19045336091919e-06 -108456.751014763 1094640.18433425 + 2.28840677871593e-06 -44828.5183189313 1099086.16766172 + 2.32968456568831e-05 -18389.5301370847 1099846.27343158 + 1.23058596213012e-05 -7521.83800469091 1099974.28240529 + 2.01324312541952e-05 -3073.08624011322 1099995.70732842 + 4.61583932333548e-05 -1254.93883182374 1099999.28414910 + 1.95957110021518e-05 -512.374920673217 1099999.88066906 + -4.24449055428214e-05 -209.179857367629 1099999.98011081 + -5.58524878574848e-05 -85.3962242667264 1099999.99668522 + 4.66180751496004e-05 -34.8619871202949 1099999.99944756 + -6.93519524786126e-05 -14.2319135884729 1099999.99990793 + 2.56780462836049e-05 -5.80985110617656 1099999.99998466 + -7.41704834772667e-05 -2.37168731931402 1099999.99999744 + -0.000112652589753713 -0.967843279865139 1099999.99999957 + -0.000105389484760436 -0.394490274175584 1099999.99999993 + -0.000583105156904810 -0.159950732554663 1099999.99999999 + -0.00146672736150177 -0.0628504522763010 1100000.00000000 + -0.00333239437313772 -0.0204886715185441 1100000.00000000 + -0.00775177097976100 0.00331909422396078 1100000.00000000 + -0.0180387770812031 0.0271363420367505 1100000.00000000 + -0.0414252557960353 0.0668520031342279 1100000.00000000 + -0.0944528098583581 0.146668071191079 1099999.99999999 + -0.212161304025513 0.311242933286705 1099999.99999994 + -0.471428164875949 0.648461382841081 1099999.99999971 + -1.03312810664541 1.32450768225966 1099999.99999872 + -2.22848586919795 2.64810458151182 1099999.99999456 + -4.71729116294101 5.16196688716979 1099999.99997777 + -9.76986982201768 9.76986982201776 1099999.99991323 + -19.7230905984794 17.8576322966841 1099999.99967823 + -38.6338667002471 31.3125682604438 1099999.99887589 + -73.0227925096008 52.2275071630873 1099999.99633635 + -132.285292024452 81.9658056889059 1099999.98899191 + -227.803959832356 119.308749723437 1099999.96994126 + -369.245654704599 157.930466578725 1099999.92668891 + -556.828422814877 184.732910669413 1099999.84355265 + -771.091449385335 182.107710180273 1099999.71466122 + -967.512676444282 136.633275954168 1099999.56602290 + -1087.40126805936 51.0755321474970 1099999.46134067 + -1087.40126805936 -51.0755321474973 1099999.46134067 + -967.512676444279 -136.633275954167 1099999.56602290 + -771.091449385339 -182.107710180276 1099999.71466122 + -556.828422814875 -184.732910669411 1099999.84355265 + -369.245654704599 -157.930466578725 1099999.92668891 + -227.803959832360 -119.308749723439 1099999.96994126 + -132.285292024453 -81.9658056889065 1099999.98899191 + -73.0227925095999 -52.2275071630875 1099999.99633635 + -38.6338667002473 -31.3125682604430 1099999.99887589 + -19.7230905984797 -17.8576322966849 1099999.99967823 + -9.76986982201752 -9.76986982201730 1099999.99991323 + -4.71729116294141 -5.16196688716971 1099999.99997777 + -2.22848586919782 -2.64810458151190 1099999.99999456 + -1.03312810664522 -1.32450768225958 1099999.99999872 + -0.471428164876005 -0.648461382841064 1099999.99999971 + -0.212161304025519 -0.311242933286708 1099999.99999994 + -0.0944528098583816 -0.146668071191128 1099999.99999999 + -0.0414252557960198 -0.0668520031342255 1100000.00000000 + -0.0180387770812031 -0.0271363420367457 1100000.00000000 + -0.00775177097977252 -0.00331909422396113 1100000.00000000 + -0.00333239437312810 0.0204886715185539 1100000.00000000 + -0.00146672736150140 0.0628504522762879 1100000.00000000 + -0.000583105156907589 0.159950732554650 1099999.99999999 + -0.000105389484764256 0.394490274175622 1099999.99999993 + -0.000112652589753433 0.967843279865164 1099999.99999957 + -7.41704834577049e-05 2.37168731931396 1099999.99999744 + 2.56780462441890e-05 5.80985110617659 1099999.99998466 + -6.93519525273305e-05 14.2319135884731 1099999.99990793 + 4.66180753117821e-05 34.8619871202943 1099999.99944756 + -5.58524872515700e-05 85.3962242667264 1099999.99668522 + -4.24449058828936e-05 209.179857367631 1099999.98011081 + 1.95957094553000e-05 512.374920673218 1099999.88066906 + 4.61583961233155e-05 1254.93883182373 1099999.28414910 + 2.01324326640529e-05 3073.08624011322 1099995.70732842 + 1.23058680611000e-05 7521.83800469092 1099974.28240529 + 2.32968615251502e-05 18389.5301370847 1099846.27343158 + 2.28841430031708e-06 44828.5183189312 1099086.16766172 + 7.19047488629652e-06 108456.751014763 1094640.18433425 + -7.76867473348030e-05 256943.719883077 1069569.97191051 + -1.76952544415276e-05 570452.767880440 940523.067031077 + 1.47969007621262e-05 -570452.767703931 940523.067138135 + -2.61061696583342e-05 -256943.719870012 1069569.97191365 + -9.41859664498594e-05 -108456.750998065 1094640.18433590 + 3.06518331809389e-05 -44828.5182936841 1099086.16766275 + 8.47828648276898e-05 -18389.5301556784 1099846.27343127 + 4.06976335365724e-05 -7521.83806184930 1099974.28240490 + -8.06150994523594e-06 -3073.08624078323 1099995.70732842 + 4.24711326199478e-05 -1254.93872658070 1099999.28414922 + 4.17995430736089e-05 -512.375071924180 1099999.88066899 + -1.76772731193171e-06 -209.179825945518 1099999.98011082 + 4.95797737943137e-05 -85.3960942411687 1099999.99668523 + -7.63248298665890e-05 -34.8620090378783 1099999.99944756 + 1.19785938721014e-05 -14.2318461153856 1099999.99990793 + -3.31471249228530e-05 -5.80988125200400 1099999.99998466 + -7.14069107572605e-05 -2.37153302656268 1099999.99999744 + -3.78999994111679e-05 -0.967677433927223 1099999.99999957 + -0.000137173105604226 -0.394392391246761 1099999.99999993 + -0.000745169574281499 -0.159284093171274 1099999.99999999 + -0.00209075832693752 -0.0612447553634650 1100000.00000000 + -0.00476093017264328 -0.0167041427817163 1100000.00000000 + -0.0113448872316919 0.0121576943745543 1100000.00000000 + -0.0268127597113518 0.0472692491525895 1100000.00000000 + -0.0629248278190374 0.113015031217689 1099999.99999999 + -0.146013047088880 0.251062579974087 1099999.99999996 + -0.336024355829165 0.544802120729869 1099999.99999981 + -0.765572768227419 1.16284491250668 1099999.99999912 + -1.72338181873744 2.44004931117861 1099999.99999594 + -3.82455143521018 5.01909798461684 1099999.99998190 + -8.34656046484571 10.0870832520905 1099999.99992208 + -17.8576322966845 19.7230905984792 1099999.99967823 + -37.3201534882003 37.3201534882006 1099999.99873382 + -75.8329364668602 67.8795488700801 1099999.99529170 + -148.969050095317 117.655033212306 1099999.98362069 + -280.912552611207 192.153752223935 1099999.94734776 + -504.001148090844 291.263403044539 1099999.84597657 + -850.915817789897 401.261207326281 1099999.59769616 + -1333.78032857857 487.255329194343 1099999.08345974 + -1910.61817485871 496.033112581282 1099998.22885737 + -2459.44787009264 381.102281223832 1099997.18448604 + -2802.80157083266 144.265555239820 1099996.41976272 + -2802.80157083267 -144.265555239819 1099996.41976272 + -2459.44787009263 -381.102281223830 1099997.18448604 + -1910.61817485871 -496.033112581282 1099998.22885737 + -1333.78032857857 -487.255329194348 1099999.08345974 + -850.915817789894 -401.261207326278 1099999.59769616 + -504.001148090840 -291.263403044536 1099999.84597657 + -280.912552611212 -192.153752223939 1099999.94734776 + -148.969050095317 -117.655033212307 1099999.98362069 + -75.8329364668601 -67.8795488700808 1099999.99529170 + -37.3201534882003 -37.3201534881997 1099999.99873382 + -17.8576322966844 -19.7230905984797 1099999.99967823 + -8.34656046484586 -10.0870832520902 1099999.99992208 + -3.82455143521051 -5.01909798461687 1099999.99998190 + -1.72338181873730 -2.44004931117866 1099999.99999594 + -0.765572768227249 -1.16284491250656 1099999.99999912 + -0.336024355829226 -0.544802120729868 1099999.99999981 + -0.146013047088891 -0.251062579974119 1099999.99999996 + -0.0629248278190492 -0.113015031217716 1099999.99999999 + -0.0268127597113457 -0.0472692491525765 1100000.00000000 + -0.0113448872316859 -0.0121576943745496 1100000.00000000 + -0.00476093017265185 0.0167041427817045 1100000.00000000 + -0.00209075832693420 0.0612447553634698 1100000.00000000 + -0.000745169574279920 0.159284093171280 1099999.99999999 + -0.000137173105605973 0.394392391246754 1099999.99999993 + -3.78999994063229e-05 0.967677433927260 1099999.99999957 + -7.14069107768049e-05 2.37153302656272 1099999.99999744 + -3.31471249467631e-05 5.80988125200390 1099999.99998466 + 1.19785939650962e-05 14.2318461153854 1099999.99990793 + -7.63248296691714e-05 34.8620090378784 1099999.99944756 + 4.95797735223559e-05 85.3960942411690 1099999.99668523 + -1.76772713965208e-06 209.179825945519 1099999.98011082 + 4.17995443566925e-05 512.375071924179 1099999.88066899 + 4.24711311353157e-05 1254.93872658070 1099999.28414922 + -8.06150571795485e-06 3073.08624078322 1099995.70732842 + 4.06976265215979e-05 7521.83806184931 1099974.28240490 + 8.47829071205491e-05 18389.5301556784 1099846.27343127 + 3.06518361236257e-05 44828.5182936841 1099086.16766275 + -9.41860244927207e-05 108456.750998065 1094640.18433590 + -2.61061832510595e-05 256943.719870012 1069569.97191365 + 1.47969377215414e-05 570452.767703931 940523.067138135 + -7.39605076977400e-05 -570452.767583868 940523.067210956 + -0.000101560331729232 -256943.719794789 1069569.97193172 + 4.40315724889824e-05 -108456.751065431 1094640.18432923 + 3.04524486277803e-05 -44828.5183622822 1099086.16765995 + -4.15987565988814e-07 -18389.5301458927 1099846.27343143 + 6.51317659212768e-06 -7521.83802075618 1099974.28240518 + 6.45634593982122e-05 -3073.08623801591 1099995.70732843 + 9.72184765211208e-05 -1254.93883349073 1099999.28414910 + 3.89234412878051e-05 -512.374967742981 1099999.88066904 + 7.62013450763200e-07 -209.179798533311 1099999.98011082 + 3.88794836270247e-06 -85.3961285919278 1099999.99668523 + 5.18552747902732e-05 -34.8619192905735 1099999.99944757 + -4.95912562078022e-05 -14.2318710923339 1099999.99990793 + 7.16130753530113e-05 -5.80980133989409 1099999.99998466 + -4.26863414810533e-05 -2.37153538241656 1099999.99999744 + -8.58096919650959e-05 -0.967653214279389 1099999.99999957 + -0.000302180387346676 -0.393882358961340 1099999.99999993 + -0.00122247595542847 -0.158259198053962 1099999.99999999 + -0.00273178266528512 -0.0590135033516020 1100000.00000000 + -0.00650541275723646 -0.0112859428819516 1100000.00000000 + -0.0158324730969949 0.0249499810017910 1100000.00000000 + -0.0381326983819336 0.0775717008453558 1100000.00000000 + -0.0909725644996982 0.183822356101413 1099999.99999998 + -0.215886894423017 0.415073684513819 1099999.99999990 + -0.508606405369732 0.921030811737439 1099999.99999950 + -1.18837247757815 2.01625292486777 1099999.99999751 + -2.74852422990456 4.34637788593400 1099999.99998798 + -6.28080600743663 9.20626636209756 1099999.99994354 + -14.1456126983181 19.0965061200789 1099999.99974328 + -31.3125682604436 38.6338667002475 1099999.99887589 + -67.8795488700798 75.8329364668599 1099999.99529170 + -143.456118430365 143.456118430365 1099999.98129122 + -293.880975075376 259.277038887662 1099999.93018608 + -579.312792403899 442.540977947165 1099999.75843369 + -1088.53309994076 702.131038195544 1099999.23732142 + -1926.03271727665 1012.71159396695 1099997.84764026 + -3159.52703745350 1284.83831162125 1099994.71206884 + -4714.17348254049 1359.04377459597 1099989.05884031 + -6261.55840681995 1074.31609898090 1099981.65381575 + -7259.13484749024 412.882815319631 1099975.96995982 + -7259.13484749021 -412.882815319633 1099975.96995982 + -6261.55840681995 -1074.31609898091 1099981.65381575 + -4714.17348254048 -1359.04377459595 1099989.05884031 + -3159.52703745350 -1284.83831162125 1099994.71206884 + -1926.03271727666 -1012.71159396696 1099997.84764026 + -1088.53309994075 -702.131038195540 1099999.23732142 + -579.312792403894 -442.540977947158 1099999.75843369 + -293.880975075381 -259.277038887666 1099999.93018608 + -143.456118430364 -143.456118430364 1099999.98129122 + -67.8795488700806 -75.8329364668618 1099999.99529170 + -31.3125682604432 -38.6338667002466 1099999.99887589 + -14.1456126983180 -19.0965061200790 1099999.99974328 + -6.28080600743688 -9.20626636209753 1099999.99994354 + -2.74852422990469 -4.34637788593407 1099999.99998798 + -1.18837247757805 -2.01625292486778 1099999.99999751 + -0.508606405369624 -0.921030811737330 1099999.99999950 + -0.215886894423069 -0.415073684513835 1099999.99999990 + -0.0909725644997043 -0.183822356101448 1099999.99999998 + -0.0381326983819360 -0.0775717008453720 1100000.00000000 + -0.0158324730969988 -0.0249499810017793 1100000.00000000 + -0.00650541275722861 0.0112859428819646 1100000.00000000 + -0.00273178266528761 0.0590135033515840 1100000.00000000 + -0.00122247595542990 0.158259198053951 1099999.99999999 + -0.000302180387344500 0.393882358961378 1099999.99999993 + -8.58096919713277e-05 0.967653214279416 1099999.99999957 + -4.26863414878006e-05 2.37153538241657 1099999.99999744 + 7.16130753873866e-05 5.80980133989402 1099999.99998466 + -4.95912561767478e-05 14.2318710923337 1099999.99990793 + 5.18552746409279e-05 34.8619192905734 1099999.99944757 + 3.88794861625450e-06 85.3961285919281 1099999.99668523 + 7.62013930800555e-07 209.179798533311 1099999.98011082 + 3.89234412533576e-05 512.374967742981 1099999.88066904 + 9.72184769975916e-05 1254.93883349072 1099999.28414910 + 6.45634533331636e-05 3073.08623801591 1099995.70732843 + 6.51317438252029e-06 7521.83802075613 1099974.28240518 + -4.15996160148897e-07 18389.5301458927 1099846.27343143 + 3.04524450427287e-05 44828.5183622822 1099086.16765995 + 4.40315851709155e-05 108456.751065431 1094640.18432923 + -0.000101560369741663 256943.719794789 1069569.97193172 + -7.39606319875056e-05 570452.767583869 940523.067210956 + -0.000128751066004696 -570452.767565427 940523.067222142 + -7.14688846809934e-05 -256943.719860222 1069569.97191600 + -0.000118310980274236 -108456.751106663 1094640.18432515 + 1.45935209554115e-05 -44828.5183735743 1099086.16765949 + 7.78374303083744e-05 -18389.5301877698 1099846.27343073 + 4.67670016177273e-05 -7521.83804017655 1099974.28240505 + 4.35127597424913e-05 -3073.08623908587 1099995.70732843 + 6.49449491410679e-05 -1254.93881751468 1099999.28414911 + 4.90789934068376e-05 -512.375052976122 1099999.88066900 + 6.03802535992350e-05 -209.179744752524 1099999.98011083 + 7.46950504689739e-05 -85.3960661916750 1099999.99668523 + -8.15941081212231e-05 -34.8619388107475 1099999.99944757 + 7.99819252075401e-05 -14.2317667441394 1099999.99990793 + -2.03820431251186e-05 -5.80986044782641 1099999.99998466 + -0.000132099948538115 -2.37144663541324 1099999.99999744 + -0.000103302939063425 -0.967321977333128 1099999.99999957 + -0.000451352597424981 -0.393455271845172 1099999.99999993 + -0.00140389951943822 -0.157066081184367 1099999.99999999 + -0.00353568714103873 -0.0559459207279186 1100000.00000000 + -0.00854222007825087 -0.00386507242495065 1100000.00000000 + -0.0210824881329046 0.0429679210084491 1100000.00000000 + -0.0513632590636979 0.120718722974723 1099999.99999999 + -0.125005329845507 0.286947074712240 1099999.99999996 + -0.302997294173884 0.660170892183258 1099999.99999976 + -0.730555621250592 1.49882328939093 1099999.99999874 + -1.75024242130603 3.36332238307474 1099999.99999347 + -4.16000926014149 7.45138708125943 1099999.99996690 + -9.79136963073324 16.2596825449724 1099999.99983625 + -22.7768835237279 34.8399222239589 1099999.99921245 + -52.2275071630872 73.0227925096002 1099999.99633635 + -117.655033212307 148.969050095317 1099999.98362069 + -259.277038887662 293.880975075377 1099999.93018608 + -555.825817421191 555.825817421193 1099999.71914329 + -1150.63988702578 996.098971283562 1099998.94718799 + -2277.70437189318 1663.99932039611 1099996.38325272 + -4254.56756138949 2530.69871433362 1099988.86095218 + -7366.57104569068 3381.48924396510 1099970.13557711 + -11550.5014486688 3745.70434025274 1099932.97778332 + -15950.8398811979 3065.10593837897 1099880.07338649 + -18893.2570721847 1199.81978248545 1099837.08123962 + -18893.2570721847 -1199.81978248547 1099837.08123962 + -15950.8398811979 -3065.10593837896 1099880.07338649 + -11550.5014486688 -3745.70434025275 1099932.97778332 + -7366.57104569068 -3381.48924396508 1099970.13557711 + -4254.56756138949 -2530.69871433362 1099988.86095218 + -2277.70437189319 -1663.99932039613 1099996.38325272 + -1150.63988702577 -996.098971283559 1099998.94718799 + -555.825817421187 -555.825817421188 1099999.71914329 + -259.277038887665 -293.880975075379 1099999.93018608 + -117.655033212306 -148.969050095316 1099999.98362069 + -52.2275071630880 -73.0227925096028 1099999.99633635 + -22.7768835237274 -34.8399222239579 1099999.99921245 + -9.79136963073343 -16.2596825449724 1099999.99983625 + -4.16000926014172 -7.45138708125959 1099999.99996690 + -1.75024242130595 -3.36332238307471 1099999.99999347 + -0.730555621250547 -1.49882328939090 1099999.99999874 + -0.302997294173844 -0.660170892183212 1099999.99999976 + -0.125005329845541 -0.286947074712265 1099999.99999996 + -0.0513632590636983 -0.120718722974737 1099999.99999999 + -0.0210824881329006 -0.0429679210084563 1100000.00000000 + -0.00854222007825823 0.00386507242494266 1100000.00000000 + -0.00353568714103290 0.0559459207279337 1100000.00000000 + -0.00140389951944044 0.157066081184372 1099999.99999999 + -0.000451352597430730 0.393455271845154 1099999.99999993 + -0.000103302939049583 0.967321977333186 1099999.99999957 + -0.000132099948524640 2.37144663541324 1099999.99999744 + -2.03820431585676e-05 5.80986044782625 1099999.99998466 + 7.99819251673085e-05 14.2317667441394 1099999.99990793 + -8.15941080627352e-05 34.8619388107474 1099999.99944757 + 7.46950504207771e-05 85.3960661916749 1099999.99668523 + 6.03802540232745e-05 209.179744752524 1099999.98011083 + 4.90789942726646e-05 512.375052976121 1099999.88066900 + 6.49449483644633e-05 1254.93881751469 1099999.28414911 + 4.35127533182408e-05 3073.08623908586 1099995.70732843 + 4.67669962344033e-05 7521.83804017656 1099974.28240505 + 7.78373753113014e-05 18389.5301877698 1099846.27343073 + 1.45934769531747e-05 44828.5183735743 1099086.16765949 + -0.000118310930867060 108456.751106663 1094640.18432515 + -7.14689560337017e-05 256943.719860223 1069569.97191600 + -0.000128751194266641 570452.767565427 940523.067222142 + -0.000147233825540897 -570452.767615753 940523.067191618 + -0.000159797777121652 -256943.719936966 1069569.97189756 + 4.05579371163930e-05 -108456.751224946 1094640.18431343 + 3.44391701221225e-05 -44828.5184348011 1099086.16765700 + -2.01740857468523e-05 -18389.5301668691 1099846.27343108 + 1.48869995219317e-05 -7521.83805896200 1099974.28240492 + 9.00091983748791e-05 -3073.08628469483 1099995.70732830 + 0.000107187542455658 -1254.93885714476 1099999.28414907 + 3.99362417813428e-05 -512.374983799951 1099999.88066903 + 2.15608274556023e-05 -209.179750588261 1099999.98011083 + 7.23564565741037e-06 -85.3960601023798 1099999.99668523 + 5.27419581086585e-05 -34.8618512442707 1099999.99944757 + -4.94663912324434e-05 -14.2318462720123 1099999.99990793 + 3.65808292631211e-06 -5.80977373419124 1099999.99998466 + -7.89307883225040e-05 -2.37132182354869 1099999.99999744 + -0.000133450817848557 -0.967238713385054 1099999.99999957 + -0.000620204577929668 -0.392784246892449 1099999.99999993 + -0.00191723607691337 -0.155377563836311 1099999.99999999 + -0.00422949547428879 -0.0520621629011725 1100000.00000000 + -0.0105348707942625 0.00580397223900004 1100000.00000000 + -0.0262662019264434 0.0666324192484163 1100000.00000000 + -0.0652368545863911 0.178886579999585 1099999.99999998 + -0.161842037823068 0.429341710259816 1099999.99999990 + -0.400366199222586 1.00646387200690 1099999.99999947 + -0.987180808502619 2.33569070280253 1099999.99999708 + -2.42386737391198 5.37218406824350 1099999.99998421 + -5.91763282539513 12.2278631944853 1099999.99991612 + -14.3470546068424 27.4886537815565 1099999.99956297 + -34.4810202399898 60.8662959375467 1099999.99777562 + -81.9658056889061 132.285292024452 1099999.98899191 + -192.153752223935 280.912552611208 1099999.94734776 + -442.540977947163 579.312792403900 1099999.75843369 + -996.098971283564 1150.63988702578 1099998.94718799 + -2175.84373442847 2175.84373442846 1099995.69608617 + -4567.17284830742 3852.61628200424 1099983.77182573 + -9083.75406832871 6231.09554750010 1099944.84355367 + -16776.8648370099 8857.49932602487 1099836.38851964 + -27963.8881448792 10380.5642785481 1099595.50055695 + -40550.3139723951 8862.94514098249 1099216.59387046 + -49342.6818445477 3548.25094091222 1098887.03225748 + -49342.6818445477 -3548.25094091221 1098887.03225748 + -40550.3139723951 -8862.94514098251 1099216.59387046 + -27963.8881448791 -10380.5642785482 1099595.50055695 + -16776.8648370099 -8857.49932602486 1099836.38851964 + -9083.75406832870 -6231.09554750008 1099944.84355367 + -4567.17284830741 -3852.61628200422 1099983.77182573 + -2175.84373442848 -2175.84373442848 1099995.69608617 + -996.098971283557 -1150.63988702578 1099998.94718799 + -442.540977947160 -579.312792403898 1099999.75843369 + -192.153752223936 -280.912552611209 1099999.94734776 + -81.9658056889057 -132.285292024451 1099999.98899191 + -34.4810202399903 -60.8662959375487 1099999.99777562 + -14.3470546068420 -27.4886537815556 1099999.99956297 + -5.91763282539542 -12.2278631944854 1099999.99991612 + -2.42386737391213 -5.37218406824372 1099999.99998421 + -0.987180808502458 -2.33569070280237 1099999.99999708 + -0.400366199222584 -1.00646387200687 1099999.99999947 + -0.161842037823068 -0.429341710259833 1099999.99999990 + -0.0652368545864050 -0.178886579999608 1099999.99999998 + -0.0262662019264438 -0.0666324192484151 1100000.00000000 + -0.0105348707942565 -0.00580397223899418 1100000.00000000 + -0.00422949547429754 0.0520621629011571 1100000.00000000 + -0.00191723607691178 0.155377563836310 1099999.99999999 + -0.000620204577924227 0.392784246892479 1099999.99999993 + -0.000133450817847646 0.967238713385050 1099999.99999957 + -7.89307883057477e-05 2.37132182354872 1099999.99999744 + 3.65808292025497e-06 5.80977373419123 1099999.99998466 + -4.94663912992808e-05 14.2318462720120 1099999.99990793 + 5.27419580964943e-05 34.8618512442706 1099999.99944757 + 7.23564547050536e-06 85.3960601023793 1099999.99668523 + 2.15608274747502e-05 209.179750588261 1099999.98011083 + 3.99362437427923e-05 512.374983799953 1099999.88066903 + 0.000107187541526060 1254.93885714475 1099999.28414907 + 9.00091968300081e-05 3073.08628469485 1099995.70732830 + 1.48869901492797e-05 7521.83805896201 1099974.28240492 + -2.01740855554786e-05 18389.5301668692 1099846.27343108 + 3.44391579374209e-05 44828.5184348011 1099086.16765700 + 4.05579583329513e-05 108456.751224946 1094640.18431343 + -0.000159797743213434 256943.719936965 1069569.97189756 + -0.000147233970068144 570452.767615753 940523.067191618 + -9.21872435910112e-05 -570452.767655811 940523.067167322 + -3.62049101366219e-06 -256943.720006852 1069569.97188077 + -9.14461321900712e-05 -108456.751271442 1094640.18430882 + 4.88066929644541e-06 -44828.5184596521 1099086.16765598 + 6.52251631477460e-05 -18389.5302193152 1099846.27343021 + 4.12784159752118e-05 -7521.83805699803 1099974.28240493 + 4.37188005557015e-05 -3073.08628223999 1099995.70732831 + 2.98445444563105e-05 -1254.93889635634 1099999.28414902 + 2.98689024759563e-05 -512.375025310192 1099999.88066901 + 5.99640193281813e-05 -209.179686502855 1099999.98011084 + 2.53215179328969e-05 -85.3960415519351 1099999.99668523 + -0.000123998474002171 -34.8618837021388 1099999.99944757 + 6.10360237827981e-05 -14.2317363502090 1099999.99990794 + -5.65122414930265e-05 -5.80979331428783 1099999.99998466 + -0.000171426863775016 -2.37126795402720 1099999.99999744 + -0.000239561441621683 -0.966836135726519 1099999.99999958 + -0.000778066115703949 -0.392030297138108 1099999.99999993 + -0.00190524118508376 -0.153578614959961 1099999.99999999 + -0.00480133795180842 -0.0473778723809055 1100000.00000000 + -0.0121238835484169 0.0175160712613594 1100000.00000000 + -0.0307491510616191 0.0960754292438664 1100000.00000000 + -0.0774090306907773 0.252545945341609 1099999.99999997 + -0.195293432822657 0.612928287321368 1099999.99999981 + -0.492654883359242 1.46346203875326 1099999.99999892 + -1.24104649415626 3.46951288488420 1099999.99999383 + -3.11936493141220 8.16965355229433 1099999.99996524 + -7.81625445680233 19.0885669790202 1099999.99980661 + -19.5048501521256 44.1799693874785 1099999.99893986 + -48.4121472696107 101.061060274644 1099999.99429224 + -119.308749723436 227.803959832357 1099999.96994126 + -291.263403044539 504.001148090845 1099999.84597657 + -702.131038195546 1088.53309994075 1099999.23732142 + -1663.99932039612 2277.70437189318 1099996.38325272 + -3852.61628200424 4567.17284830742 1099983.77182573 + -8633.60566482910 8633.60566482911 1099932.23505198 + -18462.8288695869 14999.2543621468 1099742.76370373 + -36844.5379367166 22972.1281455670 1099142.73929854 + -66250.7119016385 28868.9655442318 1097623.53564459 + -102129.723343038 25982.6135524763 1094940.37435965 + -128453.555723596 10694.4287535637 1092421.76526084 + -128453.555723596 -10694.4287535637 1092421.76526084 + -102129.723343038 -25982.6135524763 1094940.37435965 + -66250.7119016384 -28868.9655442318 1097623.53564459 + -36844.5379367166 -22972.1281455669 1099142.73929854 + -18462.8288695869 -14999.2543621468 1099742.76370373 + -8633.60566482910 -8633.60566482910 1099932.23505198 + -3852.61628200423 -4567.17284830741 1099983.77182573 + -1663.99932039612 -2277.70437189318 1099996.38325272 + -702.131038195540 -1088.53309994075 1099999.23732142 + -291.263403044536 -504.001148090843 1099999.84597657 + -119.308749723437 -227.803959832358 1099999.96994126 + -48.4121472696106 -101.061060274644 1099999.99429224 + -19.5048501521259 -44.1799693874794 1099999.99893986 + -7.81625445680215 -19.0885669790197 1099999.99980661 + -3.11936493141236 -8.16965355229456 1099999.99996524 + -1.24104649415634 -3.46951288488436 1099999.99999383 + -0.492654883359121 -1.46346203875309 1099999.99999892 + -0.195293432822675 -0.612928287321357 1099999.99999981 + -0.0774090306907840 -0.252545945341644 1099999.99999997 + -0.0307491510616186 -0.0960754292438792 1100000.00000000 + -0.0121238835484215 -0.0175160712613591 1100000.00000000 + -0.00480133795180369 0.0473778723809129 1100000.00000000 + -0.00190524118508853 0.153578614959957 1099999.99999999 + -0.000778066115706152 0.392030297138103 1099999.99999993 + -0.000239561441612440 0.966836135726556 1099999.99999958 + -0.000171426863759373 2.37126795402717 1099999.99999744 + -5.65122414629428e-05 5.80979331428777 1099999.99998466 + 6.10360237458826e-05 14.2317363502091 1099999.99990794 + -0.000123998474213420 34.8618837021385 1099999.99944757 + 2.53215178749937e-05 85.3960415519350 1099999.99668523 + 5.99640192402818e-05 209.179686502854 1099999.98011084 + 2.98689030967811e-05 512.375025310190 1099999.88066901 + 2.98445463404007e-05 1254.93889635634 1099999.28414902 + 4.37187941611782e-05 3073.08628223999 1099995.70732831 + 4.12784244829179e-05 7521.83805699803 1099974.28240493 + 6.52251848431875e-05 18389.5302193153 1099846.27343021 + 4.88069372704047e-06 44828.5184596521 1099086.16765598 + -9.14461954180927e-05 108456.751271442 1094640.18430882 + -3.62044717551239e-06 256943.720006852 1069569.97188077 + -9.21873237474472e-05 570452.767655811 940523.067167321 + 1.61831942152304e-05 -570452.767608032 940523.067196300 + -9.32059705942696e-05 -256943.720016387 1069569.97187848 + 7.51427450489011e-05 -108456.751320530 1094640.18430396 + 4.07695047441420e-05 -44828.5184712462 1099086.16765551 + -4.09670724480754e-05 -18389.5301777872 1099846.27343090 + -6.14212302486739e-06 -7521.83809132217 1099974.28240470 + 4.81561219113486e-05 -3073.08633863067 1099995.70732815 + 5.25959631524175e-05 -1254.93888757766 1099999.28414903 + -2.08280269612569e-05 -512.374979494198 1099999.88066903 + -4.54719129113984e-05 -209.179713898757 1099999.98011084 + -6.11713586097346e-05 -85.3960174100091 1099999.99668524 + 9.00295702093814e-06 -34.8618018224390 1099999.99944757 + -9.55322408469640e-05 -14.2318144001581 1099999.99990793 + -9.94222623912898e-05 -5.80972073598887 1099999.99998466 + -0.000140827243219209 -2.37108226676498 1099999.99999744 + -0.000191542115452895 -0.966647464586276 1099999.99999958 + -0.000776711676560699 -0.391238914697194 1099999.99999993 + -0.00218177835716444 -0.151430850839932 1099999.99999999 + -0.00500527786155029 -0.0421780577045374 1100000.00000000 + -0.0129413889870186 0.0308247649979440 1100000.00000000 + -0.0329954820552417 0.129890871311960 1099999.99999999 + -0.0844033508620293 0.338546784162390 1099999.99999994 + -0.216809189072392 0.832096708520270 1099999.99999966 + -0.556688263018006 2.02096645676904 1099999.99999800 + -1.42975413328673 4.88481073736367 1099999.99998822 + -3.67241156492802 11.7566249789385 1099999.99993104 + -9.42735471329749 28.1507443601706 1099999.99959939 + -24.1755446651161 66.9783303750519 1099999.99769520 + -61.8812981604573 158.079302147883 1099999.98690075 + -157.930466578727 369.245654704600 1099999.92668891 + -401.261207326282 850.915817789896 1099999.59769616 + -1012.71159396696 1926.03271727666 1099997.84764026 + -2530.69871433362 4254.56756138949 1099988.86095218 + -6231.09554750009 9083.75406832871 1099944.84355367 + -14999.2543621469 18462.8288695869 1099742.76370373 + -34835.4072396348 34835.4072396347 1098896.25934612 + -76225.7055049975 58367.6699155736 1095802.38041761 + -150435.261885618 79989.3809573445 1086724.86440472 + -249505.093717287 76797.2888017158 1068573.52795296 + -325348.130046100 32673.4759076165 1050276.64843489 + -325348.130046100 -32673.4759076165 1050276.64843489 + -249505.093717287 -76797.2888017158 1068573.52795296 + -150435.261885617 -79989.3809573445 1086724.86440472 + -76225.7055049974 -58367.6699155736 1095802.38041761 + -34835.4072396347 -34835.4072396347 1098896.25934612 + -14999.2543621469 -18462.8288695869 1099742.76370373 + -6231.09554750008 -9083.75406832872 1099944.84355367 + -2530.69871433363 -4254.56756138948 1099988.86095218 + -1012.71159396696 -1926.03271727665 1099997.84764026 + -401.261207326278 -850.915817789895 1099999.59769616 + -157.930466578725 -369.245654704597 1099999.92668891 + -61.8812981604581 -158.079302147886 1099999.98690075 + -24.1755446651158 -66.9783303750512 1099999.99769520 + -9.42735471329769 -28.1507443601709 1099999.99959939 + -3.67241156492801 -11.7566249789384 1099999.99993104 + -1.42975413328670 -4.88481073736369 1099999.99998822 + -0.556688263018043 -2.02096645676911 1099999.99999800 + -0.216809189072344 -0.832096708520194 1099999.99999966 + -0.0844033508620424 -0.338546784162396 1099999.99999994 + -0.0329954820552468 -0.129890871311981 1099999.99999999 + -0.0129413889870120 -0.0308247649979443 1100000.00000000 + -0.00500527786155665 0.0421780577045384 1100000.00000000 + -0.00218177835716684 0.151430850839928 1099999.99999999 + -0.000776711676561046 0.391238914697196 1099999.99999993 + -0.000191542115443408 0.966647464586260 1099999.99999958 + -0.000140827243187271 2.37108226676498 1099999.99999744 + -9.94222623937747e-05 5.80972073598894 1099999.99998466 + -9.55322409321201e-05 14.2318144001580 1099999.99990793 + 9.00295700968563e-06 34.8618018224391 1099999.99944757 + -6.11713585624608e-05 85.3960174100088 1099999.99668524 + -4.54719127259231e-05 209.179713898756 1099999.98011084 + -2.08280276403314e-05 512.374979494199 1099999.88066903 + 5.25959607206997e-05 1254.93888757767 1099999.28414903 + 4.81561224813173e-05 3073.08633863067 1099995.70732815 + -6.14211655672417e-06 7521.83809132215 1099974.28240470 + -4.09670620166394e-05 18389.5301777872 1099846.27343090 + 4.07694964446244e-05 44828.5184712463 1099086.16765551 + 7.51427556068805e-05 108456.751320530 1094640.18430396 + -9.32060148714838e-05 256943.720016387 1069569.97187848 + 1.61833201503814e-05 570452.767608032 940523.067196300 + -2.90202258110482e-06 -570452.767524369 940523.067247044 + 8.46792185434306e-05 -256943.719969604 1069569.97188972 + -6.11576313866037e-05 -108456.751298315 1094640.18430616 + -1.52134262534934e-05 -44828.5184626700 1099086.16765586 + 3.20370333419591e-05 -18389.5302080027 1099846.27343040 + -2.11787581067547e-06 -7521.83807277772 1099974.28240482 + -1.52378501924101e-05 -3073.08632455820 1099995.70732819 + -5.83024901744509e-05 -1254.93893351311 1099999.28414898 + -3.67694492134093e-05 -512.374994758458 1099999.88066902 + -4.57102401274181e-06 -209.179651520061 1099999.98011085 + -6.12048018518952e-05 -85.3960093291299 1099999.99668524 + -0.000187995549034472 -34.8618304395157 1099999.99944757 + -1.67588395330626e-05 -14.2317233329543 1099999.99990794 + -9.60524020694209e-05 -5.80969770173779 1099999.99998466 + -0.000163357122710823 -2.37103083224868 1099999.99999744 + -0.000303025627229435 -0.966268698635854 1099999.99999958 + -0.000811776052765086 -0.390376819469256 1099999.99999993 + -0.00180756610338917 -0.149418368423083 1099999.99999999 + -0.00477372925769284 -0.0368689586636486 1100000.00000000 + -0.0123661416600069 0.0445385268679702 1100000.00000000 + -0.0321121170527338 0.165346268034414 1099999.99999999 + -0.0833301060470062 0.430337686208153 1099999.99999991 + -0.216686523120185 1.06955966373820 1099999.99999946 + -0.564781116428165 2.63658743503199 1099999.99999669 + -1.47558193696042 6.48287830640933 1099999.99997991 + -3.86297926270558 15.9058379677090 1099999.99987822 + -10.1323811799516 38.9271481262941 1099999.99926455 + -26.6262676843028 94.9551380155276 1099999.99557935 + -70.0877467215690 230.616750614912 1099999.97359256 + -184.732910669413 556.828422814878 1099999.84355265 + -487.255329194350 1333.78032857858 1099999.08345974 + -1284.83831162125 3159.52703745349 1099994.71206884 + -3381.48924396508 7366.57104569069 1099970.13557711 + -8857.49932602489 16776.8648370100 1099836.38851964 + -22972.1281455670 36844.5379367166 1099142.73929854 + -58367.6699155737 76225.7055049974 1095802.38041761 + -141824.816435596 141824.816435596 1081559.72691573 + -311216.560353483 215128.460438415 1032891.08722611 + -552565.443154550 220879.672581252 925139.773910848 + -733667.208906257 96566.8782568274 813884.060907592 + -733667.208906257 -96566.8782568276 813884.060907592 + -552565.443154550 -220879.672581252 925139.773910848 + -311216.560353483 -215128.460438415 1032891.08722611 + -141824.816435596 -141824.816435596 1081559.72691573 + -58367.6699155737 -76225.7055049974 1095802.38041761 + -22972.1281455669 -36844.5379367165 1099142.73929854 + -8857.49932602488 -16776.8648370099 1099836.38851964 + -3381.48924396508 -7366.57104569069 1099970.13557711 + -1284.83831162125 -3159.52703745349 1099994.71206884 + -487.255329194345 -1333.78032857857 1099999.08345974 + -184.732910669411 -556.828422814876 1099999.84355265 + -70.0877467215691 -230.616750614910 1099999.97359256 + -26.6262676843033 -94.9551380155293 1099999.99557935 + -10.1323811799513 -38.9271481262935 1099999.99926455 + -3.86297926270571 -15.9058379677094 1099999.99987822 + -1.47558193696048 -6.48287830640945 1099999.99997991 + -0.564781116428087 -2.63658743503182 1099999.99999669 + -0.216686523120211 -1.06955966373821 1099999.99999946 + -0.0833301060469958 -0.430337686208165 1099999.99999991 + -0.0321121170527326 -0.165346268034422 1099999.99999999 + -0.0123661416600136 -0.0445385268679706 1100000.00000000 + -0.00477372925768914 0.0368689586636537 1100000.00000000 + -0.00180756610339195 0.149418368423074 1099999.99999999 + -0.000811776052770405 0.390376819469243 1099999.99999993 + -0.000303025627222280 0.966268698635870 1099999.99999958 + -0.000163357122689130 2.37103083224864 1099999.99999744 + -9.60524020412463e-05 5.80969770173772 1099999.99998466 + -1.67588395582042e-05 14.2317233329546 1099999.99990794 + -0.000187995549281748 34.8618304395157 1099999.99944757 + -6.12048016399284e-05 85.3960093291291 1099999.99668524 + -4.57102314486286e-06 209.179651520061 1099999.98011085 + -3.67694506444868e-05 512.374994758460 1099999.88066902 + -5.83024936213452e-05 1254.93893351311 1099999.28414898 + -1.52378483316938e-05 3073.08632455820 1099995.70732819 + -2.11787580783677e-06 7521.83807277772 1099974.28240482 + 3.20370364742155e-05 18389.5302080027 1099846.27343040 + -1.52134127029959e-05 44828.5184626699 1099086.16765586 + -6.11576078213233e-05 108456.751298315 1094640.18430616 + 8.46792167473922e-05 256943.719969604 1069569.97188972 + -2.90188270882370e-06 570452.767524369 940523.067247044 + 2.91244872417479e-05 -570452.767457596 940523.067287544 + -0.000106871652198342 -256943.719950937 1069569.97189421 + 5.65840544351905e-05 -108456.751307773 1094640.18430522 + 1.57301673946820e-05 -44828.5184531703 1099086.16765625 + -7.01274885236237e-05 -18389.5301687517 1099846.27343105 + -4.22513194025053e-05 -7521.83809766502 1099974.28240465 + -1.39168553342177e-05 -3073.08636523999 1099995.70732807 + -4.97333576629265e-06 -1254.93890754579 1099999.28414901 + -7.96342255871526e-05 -512.374962637531 1099999.88066904 + -0.000115962465459583 -209.179673929981 1099999.98011085 + -0.000112374331006825 -85.3959832382913 1099999.99668524 + -1.77247962437551e-05 -34.8617675242507 1099999.99944757 + -0.000121121077002924 -14.2317672342098 1099999.99990793 + -0.000135772460227936 -5.80964500108631 1099999.99998466 + -0.000146632132580065 -2.37087009712485 1099999.99999744 + -0.000146288235035571 -0.966057337483417 1099999.99999958 + -0.000584086006817438 -0.389688624085760 1099999.99999993 + -0.00168803442742570 -0.147503282479210 1099999.99999999 + -0.00392736841834715 -0.0320363792721879 1100000.00000000 + -0.0104516453249018 0.0571823863533026 1100000.00000000 + -0.0272048290580671 0.198349241074971 1099999.99999998 + -0.0711864937586443 0.516657509679644 1099999.99999988 + -0.187513815807227 1.29667208930915 1099999.99999922 + -0.494951293538126 3.23526726762747 1099999.99999513 + -1.31093931212877 8.06483529365451 1099999.99996965 + -3.48535066232228 20.1010669111290 1099999.99981082 + -9.30419554595024 50.0878872535362 1099999.99882029 + -24.9499880449843 124.745308315047 1099999.99264368 + -67.2302843316292 310.391436023112 1099999.95415329 + -182.107710180278 771.091449385342 1099999.71466122 + -496.033112581283 1910.61817485870 1099998.22885737 + -1359.04377459595 4714.17348254049 1099989.05884031 + -3745.70434025275 11550.5014486689 1099932.97778332 + -10380.5642785482 27963.8881448792 1099595.50055695 + -28868.9655442318 66250.7119016385 1097623.53564459 + -79989.3809573445 150435.261885618 1086724.86440472 + -215128.460438415 311216.560353483 1032891.08722611 + -513353.025453389 513353.025453389 826400.231434929 + -888533.274160355 525061.957333286 380550.340521748 + -1078245.49946157 217542.868071535 -7857.69954158687 + -1078245.49946157 -217542.868071536 -7857.69954158666 + -888533.274160355 -525061.957333286 380550.340521748 + -513353.025453388 -513353.025453389 826400.231434930 + -215128.460438415 -311216.560353483 1032891.08722611 + -79989.3809573445 -150435.261885617 1086724.86440472 + -28868.9655442317 -66250.7119016385 1097623.53564459 + -10380.5642785481 -27963.8881448792 1099595.50055695 + -3745.70434025275 -11550.5014486688 1099932.97778332 + -1359.04377459596 -4714.17348254048 1099989.05884031 + -496.033112581283 -1910.61817485871 1099998.22885737 + -182.107710180274 -771.091449385334 1099999.71466122 + -67.2302843316289 -310.391436023112 1099999.95415329 + -24.9499880449847 -124.745308315046 1099999.99264368 + -9.30419554595044 -50.0878872535371 1099999.99882029 + -3.48535066232217 -20.1010669111287 1099999.99981082 + -1.31093931212878 -8.06483529365461 1099999.99996965 + -0.494951293538168 -3.23526726762758 1099999.99999513 + -0.187513815807181 -1.29667208930901 1099999.99999922 + -0.0711864937586605 -0.516657509679653 1099999.99999988 + -0.0272048290580686 -0.198349241074996 1099999.99999998 + -0.0104516453248949 -0.0571823863533036 1100000.00000000 + -0.00392736841835205 0.0320363792721929 1100000.00000000 + -0.00168803442742554 0.147503282479213 1099999.99999999 + -0.000584086006816794 0.389688624085738 1099999.99999993 + -0.000146288235044267 0.966057337483383 1099999.99999958 + -0.000146632132561081 2.37087009712484 1099999.99999744 + -0.000135772460189137 5.80964500108637 1099999.99998466 + -0.000121121077112637 14.2317672342100 1099999.99990793 + -1.77247962019587e-05 34.8617675242506 1099999.99944757 + -0.000112374330733306 85.3959832382897 1099999.99668524 + -0.000115962465588269 209.179673929981 1099999.98011085 + -7.96342261467732e-05 512.374962637537 1099999.88066904 + -4.97333596467941e-06 1254.93890754579 1099999.28414901 + -1.39168561580665e-05 3073.08636523998 1099995.70732807 + -4.22513279995167e-05 7521.83809766500 1099974.28240465 + -7.01274937108439e-05 18389.5301687517 1099846.27343105 + 1.57301854539989e-05 44828.5184531703 1099086.16765625 + 5.65840159459736e-05 108456.751307773 1094640.18430522 + -0.000106871602212655 256943.719950937 1069569.97189421 + 2.91245811002950e-05 570452.767457596 940523.067287544 + -7.44532180412816e-05 -570452.767463756 940523.067283807 + 6.93893912025495e-05 -256943.719955658 1069569.97189307 + -7.77533673324430e-05 -108456.751311180 1094640.18430488 + -4.08681440177242e-05 -44828.5184558616 1099086.16765614 + 1.44130113191796e-05 -18389.5301896842 1099846.27343070 + -2.17569754115581e-05 -7521.83808581420 1099974.28240473 + -4.21226737331684e-05 -3073.08635312251 1099995.70732811 + -8.99198265764611e-05 -1254.93893443563 1099999.28414898 + -4.67063352674387e-05 -512.374965339525 1099999.88066904 + -1.17124492441377e-05 -209.179633490945 1099999.98011085 + -6.21674735921618e-05 -85.3959757850375 1099999.99668524 + -0.000173406774892268 -34.8617805177220 1099999.99944757 + -2.97549670067730e-05 -14.2317139356503 1099999.99990794 + -5.98488095619672e-05 -5.80961624994740 1099999.99998466 + -8.05757678496444e-05 -2.37083090047582 1099999.99999744 + -0.000216438837259169 -0.965821296615171 1099999.99999958 + -0.000473294021296160 -0.389101859116738 1099999.99999993 + -0.000910910135947781 -0.146116933702090 1099999.99999999 + -0.00265082352016645 -0.0283377305560055 1100000.00000000 + -0.00691894361214598 0.0669313113912235 1100000.00000000 + -0.0182818838556610 0.224046980456027 1099999.99999998 + -0.0484019254014276 0.584784101672573 1099999.99999984 + -0.128227291407377 1.47752424475237 1099999.99999900 + -0.341217508755046 3.71769087302006 1099999.99999366 + -0.912449445627843 9.35868667028142 1099999.99995981 + -2.45271891187508 23.5882899015124 1099999.99974435 + -6.63064593958193 59.5421174067747 1099999.99836853 + -18.0407995442281 150.543586974361 1099999.98955053 + -49.4451217170800 381.295484139523 1099999.93280406 + -136.633275954166 967.512676444281 1099999.56602290 + -381.102281223827 2459.44787009264 1099997.18448604 + -1074.31609898091 6261.55840681996 1099981.65381575 + -3065.10593837897 15950.8398811979 1099880.07338649 + -8862.94514098249 40550.3139723952 1099216.59387046 + -25982.6135524763 102129.723343038 1094940.37435965 + -76797.2888017159 249505.093717287 1068573.52795296 + -220879.672581252 552565.443154550 925139.773910848 + -525061.957333286 888533.274160355 380550.340521747 + -714809.156884212 714809.156884212 -433700.055878443 + -698385.654212178 238065.587118882 -815832.246371992 + -698385.654212178 -238065.587118883 -815832.246371991 + -714809.156884212 -714809.156884212 -433700.055878442 + -525061.957333286 -888533.274160355 380550.340521748 + -220879.672581252 -552565.443154550 925139.773910848 + -76797.2888017157 -249505.093717287 1068573.52795296 + -25982.6135524762 -102129.723343038 1094940.37435965 + -8862.94514098246 -40550.3139723951 1099216.59387046 + -3065.10593837898 -15950.8398811979 1099880.07338649 + -1074.31609898091 -6261.55840681995 1099981.65381575 + -381.102281223828 -2459.44787009264 1099997.18448604 + -136.633275954167 -967.512676444281 1099999.56602290 + -49.4451217170783 -381.295484139517 1099999.93280406 + -18.0407995442283 -150.543586974363 1099999.98955053 + -6.63064593958203 -59.5421174067743 1099999.99836853 + -2.45271891187509 -23.5882899015130 1099999.99974435 + -0.912449445627850 -9.35868667028143 1099999.99995981 + -0.341217508755021 -3.71769087301988 1099999.99999366 + -0.128227291407405 -1.47752424475242 1099999.99999900 + -0.0484019254014101 -0.584784101672559 1099999.99999984 + -0.0182818838556599 -0.224046980456032 1099999.99999998 + -0.00691894361215328 -0.0669313113912312 1100000.00000000 + -0.00265082352016339 0.0283377305560103 1100000.00000000 + -0.000910910135947200 0.146116933702090 1099999.99999999 + -0.000473294021299942 0.389101859116733 1099999.99999993 + -0.000216438837246438 0.965821296615114 1099999.99999958 + -8.05757678611389e-05 2.37083090047576 1099999.99999744 + -5.98488096494272e-05 5.80961624994761 1099999.99998466 + -2.97549668648437e-05 14.2317139356504 1099999.99990794 + -0.000173406774639425 34.8617805177213 1099999.99944757 + -6.21674737298451e-05 85.3959757850371 1099999.99668524 + -1.17124496703568e-05 209.179633490945 1099999.98011085 + -4.67063356903491e-05 512.374965339527 1099999.88066904 + -8.99198255759753e-05 1254.93893443564 1099999.28414898 + -4.21226715914619e-05 3073.08635312251 1099995.70732811 + -2.17569796961331e-05 7521.83808581420 1099974.28240473 + 1.44129948705192e-05 18389.5301896842 1099846.27343070 + -4.08681388995739e-05 44828.5184558616 1099086.16765614 + -7.77533856271851e-05 108456.751311180 1094640.18430488 + 6.93895038886100e-05 256943.719955658 1069569.97189307 + -7.44531560601501e-05 570452.767463756 940523.067283807 + 2.07650146903824e-05 -570452.767490176 940523.067267783 + -0.000114558657236921 -256943.719984330 1069569.97188618 + 5.05384872610018e-05 -108456.751332471 1094640.18430277 + 1.69442751377096e-05 -44828.5184610903 1099086.16765592 + -5.36744811722963e-05 -18389.5301794665 1099846.27343087 + -2.29160350456388e-05 -7521.83809696304 1099974.28240466 + -3.53868469523994e-06 -3073.08636863015 1099995.70732807 + 2.59139812651667e-05 -1254.93892210727 1099999.28414900 + -3.78016682098003e-05 -512.374952927452 1099999.88066904 + -7.71839283621083e-05 -209.179640897625 1099999.98011085 + -4.80885786567963e-05 -85.3959641338581 1099999.99668524 + 5.70648398751636e-05 -34.8617558962104 1099999.99944757 + -5.91031428311812e-05 -14.2317258401679 1099999.99990794 + -5.94770921146414e-05 -5.80959562526254 1099999.99998466 + -5.75253651971078e-05 -2.37076721113937 1099999.99999745 + 1.95867547905245e-05 -0.965727672518251 1099999.99999958 + -9.00322107057411e-05 -0.388822758482090 1099999.99999993 + -0.000481648378068510 -0.145334338069833 1099999.99999999 + -0.000889742140158459 -0.0263207633762471 1100000.00000000 + -0.00248968832405121 0.0722736931260569 1100000.00000000 + -0.00649352844016868 0.238204716796015 1099999.99999997 + -0.0170734009622857 0.622405199001567 1099999.99999982 + -0.0456034502092788 1.57827751785785 1099999.99999887 + -0.121987361341019 3.98876242675905 1099999.99999276 + -0.327955753951094 10.0918437734641 1099999.99995366 + -0.886564201705285 25.5851482736738 1099999.99970210 + -2.41227910785792 65.0219784601473 1099999.99807560 + -6.61389101010492 165.712154476188 1099999.98749806 + -18.2891138768317 423.699510704689 1099999.91824738 + -51.0755321474975 1087.40126805936 1099999.46134067 + -144.265555239824 2802.80157083266 1099996.41976272 + -412.882815319622 7259.13484749023 1099975.96995982 + -1199.81978248546 18893.2570721847 1099837.08123962 + -3548.25094091223 49342.6818445478 1098887.03225748 + -10694.4287535637 128453.555723596 1092421.76526084 + -32673.4759076167 325348.130046100 1050276.64843489 + -96566.8782568277 733667.208906258 813884.060907592 + -217542.868071536 1078245.49946157 -7857.69954158763 + -238065.587118883 698385.654212177 -815832.246371992 + -208944.178917673 208944.178917673 -1059568.14797012 + -208944.178917673 -208944.178917673 -1059568.14797012 + -238065.587118883 -698385.654212178 -815832.246371991 + -217542.868071536 -1078245.49946157 -7857.69954158619 + -96566.8782568274 -733667.208906257 813884.060907593 + -32673.4759076165 -325348.130046099 1050276.64843489 + -10694.4287535636 -128453.555723596 1092421.76526084 + -3548.25094091227 -49342.6818445477 1098887.03225748 + -1199.81978248546 -18893.2570721847 1099837.08123962 + -412.882815319632 -7259.13484749023 1099975.96995982 + -144.265555239819 -2802.80157083266 1099996.41976272 + -51.0755321474974 -1087.40126805936 1099999.46134067 + -18.2891138768329 -423.699510704690 1099999.91824738 + -6.61389101010435 -165.712154476185 1099999.98749806 + -2.41227910785789 -65.0219784601482 1099999.99807560 + -0.886564201705328 -25.5851482736737 1099999.99970210 + -0.327955753951067 -10.0918437734643 1099999.99995366 + -0.121987361341037 -3.98876242675914 1099999.99999276 + -0.0456034502092645 -1.57827751785769 1099999.99999887 + -0.0170734009623021 -0.622405199001588 1099999.99999982 + -0.00649352844016439 -0.238204716796037 1099999.99999997 + -0.00248968832404317 -0.0722736931260547 1100000.00000000 + -0.000889742140165305 0.0263207633762427 1100000.00000000 + -0.000481648378070403 0.145334338069840 1099999.99999999 + -9.00322106953872e-05 0.388822758482061 1099999.99999993 + 1.95867547780803e-05 0.965727672518229 1099999.99999958 + -5.75253652324786e-05 2.37076721113946 1099999.99999745 + -5.94770920532681e-05 5.80959562526242 1099999.99998466 + -5.91031427720614e-05 14.2317258401677 1099999.99990794 + 5.70648398536092e-05 34.8617558962108 1099999.99944757 + -4.80885786699349e-05 85.3959641338571 1099999.99668524 + -7.71839282728103e-05 209.179640897625 1099999.98011085 + -3.78016683256470e-05 512.374952927456 1099999.88066904 + 2.59139806293565e-05 1254.93892210727 1099999.28414900 + -3.53868224725546e-06 3073.08636863016 1099995.70732807 + -2.29160292469741e-05 7521.83809696305 1099974.28240466 + -5.36744792643141e-05 18389.5301794665 1099846.27343087 + 1.69442740817729e-05 44828.5184610903 1099086.16765592 + 5.05384513468254e-05 108456.751332471 1094640.18430277 + -0.000114558694387078 256943.719984330 1069569.97188618 + 2.07650743563997e-05 570452.767490176 940523.067267783 + -2.07649801306469e-05 -570452.767490176 940523.067267783 + 0.000114558759840796 -256943.719984330 1069569.97188618 + -5.05384681157955e-05 -108456.751332471 1094640.18430277 + -1.69442674542542e-05 -44828.5184610903 1099086.16765592 + 5.36744822061492e-05 -18389.5301794665 1099846.27343087 + 2.29160276421082e-05 -7521.83809696305 1099974.28240466 + 3.53869033614928e-06 -3073.08636863015 1099995.70732807 + -2.59139800865425e-05 -1254.93892210727 1099999.28414900 + 3.78016672221768e-05 -512.374952927455 1099999.88066904 + 7.71839280048764e-05 -209.179640897625 1099999.98011085 + 4.80885787389122e-05 -85.3959641338576 1099999.99668524 + -5.70648397894845e-05 -34.8617558962107 1099999.99944757 + 5.91031427871129e-05 -14.2317258401678 1099999.99990794 + 5.94770920630926e-05 -5.80959562526241 1099999.99998466 + 5.75253652008585e-05 -2.37076721113951 1099999.99999745 + -1.95867547758514e-05 -0.965727672518249 1099999.99999958 + 9.00322107053628e-05 -0.388822758482050 1099999.99999993 + 0.000481648378068571 -0.145334338069854 1099999.99999999 + 0.000889742140160988 -0.0263207633762340 1100000.00000000 + 0.00248968832404782 0.0722736931260379 1100000.00000000 + 0.00649352844016285 0.238204716796028 1099999.99999997 + 0.0170734009622888 0.622405199001627 1099999.99999982 + 0.0456034502092830 1.57827751785770 1099999.99999887 + 0.121987361341044 3.98876242675919 1099999.99999276 + 0.327955753951132 10.0918437734641 1099999.99995366 + 0.886564201705250 25.5851482736736 1099999.99970210 + 2.41227910785765 65.0219784601482 1099999.99807560 + 6.61389101010453 165.712154476186 1099999.98749806 + 18.2891138768322 423.699510704691 1099999.91824738 + 51.0755321474972 1087.40126805937 1099999.46134067 + 144.265555239826 2802.80157083266 1099996.41976272 + 412.882815319628 7259.13484749022 1099975.96995982 + 1199.81978248546 18893.2570721847 1099837.08123962 + 3548.25094091224 49342.6818445478 1098887.03225748 + 10694.4287535637 128453.555723596 1092421.76526084 + 32673.4759076166 325348.130046100 1050276.64843489 + 96566.8782568275 733667.208906258 813884.060907592 + 217542.868071536 1078245.49946157 -7857.69954158776 + 238065.587118883 698385.654212177 -815832.246371992 + 208944.178917673 208944.178917673 -1059568.14797012 + 208944.178917673 -208944.178917673 -1059568.14797012 + 238065.587118883 -698385.654212178 -815832.246371992 + 217542.868071536 -1078245.49946157 -7857.69954158625 + 96566.8782568274 -733667.208906257 813884.060907593 + 32673.4759076165 -325348.130046099 1050276.64843489 + 10694.4287535637 -128453.555723596 1092421.76526084 + 3548.25094091221 -49342.6818445477 1098887.03225748 + 1199.81978248546 -18893.2570721847 1099837.08123962 + 412.882815319638 -7259.13484749022 1099975.96995982 + 144.265555239821 -2802.80157083267 1099996.41976272 + 51.0755321474970 -1087.40126805936 1099999.46134067 + 18.2891138768322 -423.699510704686 1099999.91824738 + 6.61389101010402 -165.712154476188 1099999.98749806 + 2.41227910785783 -65.0219784601474 1099999.99807560 + 0.886564201705449 -25.5851482736742 1099999.99970210 + 0.327955753951096 -10.0918437734642 1099999.99995366 + 0.121987361341022 -3.98876242675900 1099999.99999276 + 0.0456034502092663 -1.57827751785775 1099999.99999887 + 0.0170734009623026 -0.622405199001605 1099999.99999982 + 0.00649352844016459 -0.238204716796035 1099999.99999997 + 0.00248968832404369 -0.0722736931260437 1100000.00000000 + 0.000889742140162783 0.0263207633762449 1100000.00000000 + 0.000481648378069898 0.145334338069833 1099999.99999999 + 9.00322107017155e-05 0.388822758482057 1099999.99999993 + -1.95867547892855e-05 0.965727672518262 1099999.99999958 + 5.75253652177273e-05 2.37076721113936 1099999.99999745 + 5.94770920837614e-05 5.80959562526249 1099999.99998466 + 5.91031427551902e-05 14.2317258401681 1099999.99990794 + -5.70648398426036e-05 34.8617558962100 1099999.99944757 + 4.80885788904610e-05 85.3959641338573 1099999.99668524 + 7.71839282703275e-05 209.179640897625 1099999.98011085 + 3.78016673146433e-05 512.374952927457 1099999.88066904 + -2.59139804675733e-05 1254.93892210727 1099999.28414900 + 3.53868890410612e-06 3073.08636863014 1099995.70732807 + 2.29160329054590e-05 7521.83809696305 1099974.28240466 + 5.36744866136153e-05 18389.5301794665 1099846.27343087 + -1.69442401598415e-05 44828.5184610904 1099086.16765592 + -5.05384503103714e-05 108456.751332471 1094640.18430277 + 0.000114558657640455 256943.719984330 1069569.97188618 + -2.07651110579158e-05 570452.767490176 940523.067267783 + 7.44533607296089e-05 -570452.767463757 940523.067283807 + -6.93894386499747e-05 -256943.719955658 1069569.97189307 + 7.77533339894444e-05 -108456.751311180 1094640.18430488 + 4.08681384410409e-05 -44828.5184558616 1099086.16765614 + -1.44129543020369e-05 -18389.5301896842 1099846.27343070 + 2.17569786823479e-05 -7521.83808581419 1099974.28240473 + 4.21226690463728e-05 -3073.08635312252 1099995.70732811 + 8.99198286459794e-05 -1254.93893443563 1099999.28414898 + 4.67063358270186e-05 -512.374965339523 1099999.88066904 + 1.17124490215539e-05 -209.179633490946 1099999.98011085 + 6.21674735225435e-05 -85.3959757850382 1099999.99668524 + 0.000173406774817754 -34.8617805177214 1099999.99944757 + 2.97549669718789e-05 -14.2317139356502 1099999.99990794 + 5.98488095885080e-05 -5.80961624994771 1099999.99998466 + 8.05757678601592e-05 -2.37083090047578 1099999.99999744 + 0.000216438837247780 -0.965821296615127 1099999.99999958 + 0.000473294021300535 -0.389101859116754 1099999.99999993 + 0.000910910135950842 -0.146116933702079 1099999.99999999 + 0.00265082352016436 -0.0283377305560162 1100000.00000000 + 0.00691894361214759 0.0669313113912465 1100000.00000000 + 0.0182818838556539 0.224046980456012 1099999.99999998 + 0.0484019254014137 0.584784101672513 1099999.99999984 + 0.128227291407421 1.47752424475252 1099999.99999900 + 0.341217508755061 3.71769087301992 1099999.99999366 + 0.912449445627775 9.35868667028137 1099999.99995981 + 2.45271891187508 23.5882899015127 1099999.99974435 + 6.63064593958213 59.5421174067742 1099999.99836853 + 18.0407995442280 150.543586974364 1099999.98955053 + 49.4451217170780 381.295484139522 1099999.93280406 + 136.633275954167 967.512676444277 1099999.56602290 + 381.102281223831 2459.44787009264 1099997.18448604 + 1074.31609898091 6261.55840681996 1099981.65381575 + 3065.10593837897 15950.8398811979 1099880.07338649 + 8862.94514098250 40550.3139723951 1099216.59387046 + 25982.6135524763 102129.723343038 1094940.37435965 + 76797.2888017159 249505.093717287 1068573.52795296 + 220879.672581252 552565.443154550 925139.773910847 + 525061.957333286 888533.274160355 380550.340521747 + 714809.156884212 714809.156884212 -433700.055878443 + 698385.654212178 238065.587118882 -815832.246371992 + 698385.654212178 -238065.587118883 -815832.246371992 + 714809.156884212 -714809.156884212 -433700.055878442 + 525061.957333285 -888533.274160355 380550.340521748 + 220879.672581252 -552565.443154550 925139.773910848 + 76797.2888017157 -249505.093717287 1068573.52795296 + 25982.6135524762 -102129.723343038 1094940.37435965 + 8862.94514098245 -40550.3139723951 1099216.59387046 + 3065.10593837898 -15950.8398811979 1099880.07338649 + 1074.31609898091 -6261.55840681996 1099981.65381575 + 381.102281223827 -2459.44787009263 1099997.18448604 + 136.633275954165 -967.512676444278 1099999.56602290 + 49.4451217170778 -381.295484139522 1099999.93280406 + 18.0407995442282 -150.543586974361 1099999.98955053 + 6.63064593958226 -59.5421174067752 1099999.99836853 + 2.45271891187507 -23.5882899015125 1099999.99974435 + 0.912449445627834 -9.35868667028145 1099999.99995981 + 0.341217508755057 -3.71769087302002 1099999.99999366 + 0.128227291407402 -1.47752424475236 1099999.99999900 + 0.0484019254014025 -0.584784101672542 1099999.99999984 + 0.0182818838556603 -0.224046980456034 1099999.99999998 + 0.00691894361215377 -0.0669313113912385 1100000.00000000 + 0.00265082352016400 0.0283377305560078 1100000.00000000 + 0.000910910135948160 0.146116933702087 1099999.99999999 + 0.000473294021295873 0.389101859116750 1099999.99999993 + 0.000216438837258939 0.965821296615080 1099999.99999958 + 8.05757678409296e-05 2.37083090047583 1099999.99999744 + 5.98488095771463e-05 5.80961624994764 1099999.99998466 + 2.97549669991022e-05 14.2317139356501 1099999.99990794 + 0.000173406774784407 34.8617805177215 1099999.99944757 + 6.21674735664580e-05 85.3959757850369 1099999.99668524 + 1.17124491681032e-05 209.179633490946 1099999.98011085 + 4.67063358719705e-05 512.374965339526 1099999.88066904 + 8.99198280273453e-05 1254.93893443563 1099999.28414898 + 4.21226725559364e-05 3073.08635312252 1099995.70732811 + 2.17569800170579e-05 7521.83808581418 1099974.28240473 + -1.44129442298758e-05 18389.5301896841 1099846.27343070 + 4.08681722557718e-05 44828.5184558616 1099086.16765614 + 7.77534457969630e-05 108456.751311180 1094640.18430488 + -6.93894709949611e-05 256943.719955658 1069569.97189307 + 7.44531326753095e-05 570452.767463757 940523.067283807 + -2.91244357964830e-05 -570452.767457596 940523.067287544 + 0.000106871702531506 -256943.719950937 1069569.97189421 + -5.65840168031150e-05 -108456.751307773 1094640.18430522 + -1.57301229707879e-05 -44828.5184531704 1099086.16765625 + 7.01274946913586e-05 -18389.5301687517 1099846.27343105 + 4.22513293965010e-05 -7521.83809766496 1099974.28240465 + 1.39168585451064e-05 -3073.08636523997 1099995.70732807 + 4.97333154391621e-06 -1254.93890754579 1099999.28414901 + 7.96342256872854e-05 -512.374962637531 1099999.88066904 + 0.000115962466115370 -209.179673929982 1099999.98011085 + 0.000112374330832970 -85.3959832382911 1099999.99668524 + 1.77247961548656e-05 -34.8617675242508 1099999.99944757 + 0.000121121077073205 -14.2317672342098 1099999.99990793 + 0.000135772460211965 -5.80964500108623 1099999.99998466 + 0.000146632132562911 -2.37087009712493 1099999.99999744 + 0.000146288235053915 -0.966057337483421 1099999.99999958 + 0.000584086006815139 -0.389688624085736 1099999.99999993 + 0.00168803442742189 -0.147503282479216 1099999.99999999 + 0.00392736841835048 -0.0320363792721781 1100000.00000000 + 0.0104516453248974 0.0571823863532814 1100000.00000000 + 0.0272048290580671 0.198349241074995 1099999.99999998 + 0.0711864937586548 0.516657509679682 1099999.99999988 + 0.187513815807188 1.29667208930900 1099999.99999922 + 0.494951293538184 3.23526726762763 1099999.99999513 + 1.31093931212887 8.06483529365448 1099999.99996965 + 3.48535066232206 20.1010669111287 1099999.99981082 + 9.30419554594996 50.0878872535373 1099999.99882029 + 24.9499880449848 124.745308315046 1099999.99264368 + 67.2302843316308 310.391436023112 1099999.95415329 + 182.107710180275 771.091449385343 1099999.71466122 + 496.033112581278 1910.61817485870 1099998.22885737 + 1359.04377459596 4714.17348254048 1099989.05884031 + 3745.70434025277 11550.5014486688 1099932.97778332 + 10380.5642785481 27963.8881448792 1099595.50055695 + 28868.9655442318 66250.7119016385 1097623.53564459 + 79989.3809573445 150435.261885618 1086724.86440472 + 215128.460438415 311216.560353483 1032891.08722611 + 513353.025453389 513353.025453389 826400.231434929 + 888533.274160355 525061.957333286 380550.340521747 + 1078245.49946157 217542.868071535 -7857.69954158717 + 1078245.49946157 -217542.868071536 -7857.69954158687 + 888533.274160355 -525061.957333286 380550.340521748 + 513353.025453388 -513353.025453389 826400.231434930 + 215128.460438415 -311216.560353483 1032891.08722611 + 79989.3809573445 -150435.261885617 1086724.86440472 + 28868.9655442317 -66250.7119016385 1097623.53564459 + 10380.5642785481 -27963.8881448791 1099595.50055695 + 3745.70434025275 -11550.5014486689 1099932.97778332 + 1359.04377459595 -4714.17348254049 1099989.05884031 + 496.033112581280 -1910.61817485871 1099998.22885737 + 182.107710180275 -771.091449385339 1099999.71466122 + 67.2302843316296 -310.391436023110 1099999.95415329 + 24.9499880449847 -124.745308315048 1099999.99264368 + 9.30419554595011 -50.0878872535362 1099999.99882029 + 3.48535066232235 -20.1010669111291 1099999.99981082 + 1.31093931212884 -8.06483529365461 1099999.99996965 + 0.494951293538110 -3.23526726762740 1099999.99999513 + 0.187513815807182 -1.29667208930905 1099999.99999922 + 0.0711864937586684 -0.516657509679676 1099999.99999988 + 0.0272048290580692 -0.198349241075000 1099999.99999998 + 0.0104516453248951 -0.0571823863532910 1100000.00000000 + 0.00392736841835103 0.0320363792721948 1100000.00000000 + 0.00168803442742578 0.147503282479206 1099999.99999999 + 0.000584086006818398 0.389688624085710 1099999.99999993 + 0.000146288235028248 0.966057337483455 1099999.99999958 + 0.000146632132573187 2.37087009712486 1099999.99999744 + 0.000135772460217832 5.80964500108624 1099999.99998466 + 0.000121121077027589 14.2317672342100 1099999.99990793 + 1.77247963207111e-05 34.8617675242503 1099999.99944757 + 0.000112374330658817 85.3959832382909 1099999.99668524 + 0.000115962465360296 209.179673929981 1099999.98011085 + 7.96342267171403e-05 512.374962637534 1099999.88066904 + 4.97333500117928e-06 1254.93890754579 1099999.28414901 + 1.39168563352439e-05 3073.08636523997 1099995.70732807 + 4.22513295580166e-05 7521.83809766495 1099974.28240465 + 7.01274881785944e-05 18389.5301687517 1099846.27343105 + -1.57301336389027e-05 44828.5184531704 1099086.16765625 + -5.65840756626186e-05 108456.751307773 1094640.18430522 + 0.000106871597108990 256943.719950937 1069569.97189421 + -2.91245806399398e-05 570452.767457596 940523.067287544 + 2.90191329941749e-06 -570452.767524369 940523.067247044 + -8.46792540181929e-05 -256943.719969604 1069569.97188972 + 6.11576897930227e-05 -108456.751298315 1094640.18430616 + 1.52134210661902e-05 -44828.5184626699 1099086.16765586 + -3.20370794585664e-05 -18389.5302080026 1099846.27343040 + 2.11787875048725e-06 -7521.83807277772 1099974.28240482 + 1.52378491071840e-05 -3073.08632455820 1099995.70732819 + 5.83024908974262e-05 -1254.93893351310 1099999.28414898 + 3.67694491632365e-05 -512.374994758461 1099999.88066902 + 4.57102359711795e-06 -209.179651520062 1099999.98011085 + 6.12048018963689e-05 -85.3960093291295 1099999.99668524 + 0.000187995549158321 -34.8618304395157 1099999.99944757 + 1.67588395127244e-05 -14.2317233329544 1099999.99990794 + 9.60524020585919e-05 -5.80969770173784 1099999.99998466 + 0.000163357122700497 -2.37103083224866 1099999.99999744 + 0.000303025627222518 -0.966268698635866 1099999.99999958 + 0.000811776052775164 -0.390376819469244 1099999.99999993 + 0.00180756610338896 -0.149418368423071 1099999.99999999 + 0.00477372925769046 -0.0368689586636645 1100000.00000000 + 0.0123661416600145 0.0445385268679884 1100000.00000000 + 0.0321121170527229 0.165346268034394 1099999.99999999 + 0.0833301060469848 0.430337686208124 1099999.99999991 + 0.216686523120247 1.06955966373831 1099999.99999946 + 0.564781116428143 2.63658743503185 1099999.99999669 + 1.47558193696036 6.48287830640936 1099999.99997991 + 3.86297926270571 15.9058379677092 1099999.99987822 + 10.1323811799515 38.9271481262935 1099999.99926455 + 26.6262676843027 94.9551380155293 1099999.99557935 + 70.0877467215686 230.616750614912 1099999.97359256 + 184.732910669416 556.828422814876 1099999.84355265 + 487.255329194349 1333.78032857858 1099999.08345974 + 1284.83831162124 3159.52703745349 1099994.71206884 + 3381.48924396509 7366.57104569069 1099970.13557711 + 8857.49932602489 16776.8648370099 1099836.38851964 + 22972.1281455670 36844.5379367166 1099142.73929854 + 58367.6699155737 76225.7055049975 1095802.38041761 + 141824.816435596 141824.816435596 1081559.72691573 + 311216.560353483 215128.460438415 1032891.08722611 + 552565.443154550 220879.672581252 925139.773910848 + 733667.208906257 96566.8782568275 813884.060907592 + 733667.208906257 -96566.8782568277 813884.060907592 + 552565.443154550 -220879.672581252 925139.773910848 + 311216.560353483 -215128.460438415 1032891.08722611 + 141824.816435596 -141824.816435596 1081559.72691573 + 58367.6699155737 -76225.7055049975 1095802.38041761 + 22972.1281455669 -36844.5379367165 1099142.73929854 + 8857.49932602491 -16776.8648370099 1099836.38851964 + 3381.48924396509 -7366.57104569070 1099970.13557711 + 1284.83831162125 -3159.52703745350 1099994.71206884 + 487.255329194347 -1333.78032857858 1099999.08345974 + 184.732910669413 -556.828422814875 1099999.84355265 + 70.0877467215686 -230.616750614913 1099999.97359256 + 26.6262676843028 -94.9551380155280 1099999.99557935 + 10.1323811799519 -38.9271481262942 1099999.99926455 + 3.86297926270565 -15.9058379677091 1099999.99987822 + 1.47558193696034 -6.48287830640930 1099999.99997991 + 0.564781116428159 -2.63658743503193 1099999.99999669 + 0.216686523120223 -1.06955966373820 1099999.99999946 + 0.0833301060469794 -0.430337686208151 1099999.99999991 + 0.0321121170527306 -0.165346268034419 1099999.99999999 + 0.0123661416600178 -0.0445385268679778 1100000.00000000 + 0.00477372925769217 0.0368689586636553 1100000.00000000 + 0.00180756610339029 0.149418368423074 1099999.99999999 + 0.000811776052761645 0.390376819469274 1099999.99999993 + 0.000303025627224436 0.966268698635802 1099999.99999958 + 0.000163357122700878 2.37103083224868 1099999.99999744 + 9.60524020535283e-05 5.80969770173787 1099999.99998466 + 1.67588395972393e-05 14.2317233329541 1099999.99990794 + 0.000187995549130655 34.8618304395159 1099999.99944757 + 6.12048015521348e-05 85.3960093291292 1099999.99668524 + 4.57102303763336e-06 209.179651520062 1099999.98011085 + 3.67694500683869e-05 512.374994758461 1099999.88066902 + 5.83024938862715e-05 1254.93893351310 1099999.28414898 + 1.52378498617359e-05 3073.08632455821 1099995.70732819 + 2.11786713668783e-06 7521.83807277772 1099974.28240482 + -3.20370895843036e-05 18389.5302080026 1099846.27343040 + 1.52133743928864e-05 44828.5184626700 1099086.16765586 + 6.11575904863077e-05 108456.751298315 1094640.18430616 + -8.46792577469284e-05 256943.719969604 1069569.97188972 + 2.90191507157064e-06 570452.767524369 940523.067247044 + -1.61833689545511e-05 -570452.767608032 940523.067196300 + 9.32059614940796e-05 -256943.720016387 1069569.97187848 + -7.51428158766288e-05 -108456.751320530 1094640.18430396 + -4.07695294025441e-05 -44828.5184712462 1099086.16765551 + 4.09670662892126e-05 -18389.5301777872 1099846.27343090 + 6.14212567322236e-06 -7521.83809132215 1099974.28240470 + -4.81561326093291e-05 -3073.08633863065 1099995.70732815 + -5.25959633821686e-05 -1254.93888757767 1099999.28414903 + 2.08280290122568e-05 -512.374979494197 1099999.88066903 + 4.54719128527261e-05 -209.179713898757 1099999.98011084 + 6.11713582568666e-05 -85.3960174100095 1099999.99668524 + -9.00295699701631e-06 -34.8618018224388 1099999.99944757 + 9.55322409993944e-05 -14.2318144001581 1099999.99990793 + 9.94222623617695e-05 -5.80972073598897 1099999.99998466 + 0.000140827243177521 -2.37108226676500 1099999.99999744 + 0.000191542115457079 -0.966647464586262 1099999.99999958 + 0.000776711676562471 -0.391238914697201 1099999.99999993 + 0.00218177835716901 -0.151430850839930 1099999.99999999 + 0.00500527786155261 -0.0421780577045297 1100000.00000000 + 0.0129413889870107 0.0308247649979283 1100000.00000000 + 0.0329954820552536 0.129890871312000 1099999.99999999 + 0.0844033508620338 0.338546784162390 1099999.99999994 + 0.216809189072317 0.832096708520140 1099999.99999966 + 0.556688263018099 2.02096645676919 1099999.99999800 + 1.42975413328683 4.88481073736364 1099999.99998822 + 3.67241156492777 11.7566249789384 1099999.99993104 + 9.42735471329751 28.1507443601713 1099999.99959939 + 24.1755446651162 66.9783303750509 1099999.99769520 + 61.8812981604577 158.079302147884 1099999.98690075 + 157.930466578725 369.245654704601 1099999.92668891 + 401.261207326284 850.915817789894 1099999.59769616 + 1012.71159396697 1926.03271727666 1099997.84764026 + 2530.69871433360 4254.56756138948 1099988.86095218 + 6231.09554750010 9083.75406832873 1099944.84355367 + 14999.2543621468 18462.8288695869 1099742.76370373 + 34835.4072396348 34835.4072396348 1098896.25934612 + 76225.7055049974 58367.6699155737 1095802.38041761 + 150435.261885618 79989.3809573445 1086724.86440472 + 249505.093717287 76797.2888017158 1068573.52795296 + 325348.130046100 32673.4759076165 1050276.64843489 + 325348.130046100 -32673.4759076166 1050276.64843489 + 249505.093717287 -76797.2888017157 1068573.52795296 + 150435.261885617 -79989.3809573445 1086724.86440472 + 76225.7055049975 -58367.6699155737 1095802.38041761 + 34835.4072396347 -34835.4072396347 1098896.25934612 + 14999.2543621469 -18462.8288695869 1099742.76370373 + 6231.09554750011 -9083.75406832872 1099944.84355367 + 2530.69871433362 -4254.56756138948 1099988.86095218 + 1012.71159396696 -1926.03271727666 1099997.84764026 + 401.261207326279 -850.915817789891 1099999.59769616 + 157.930466578725 -369.245654704600 1099999.92668891 + 61.8812981604583 -158.079302147885 1099999.98690075 + 24.1755446651168 -66.9783303750522 1099999.99769520 + 9.42735471329728 -28.1507443601703 1099999.99959939 + 3.67241156492790 -11.7566249789385 1099999.99993104 + 1.42975413328686 -4.88481073736377 1099999.99998822 + 0.556688263018007 -2.02096645676898 1099999.99999800 + 0.216809189072314 -0.832096708520183 1099999.99999966 + 0.0844033508620528 -0.338546784162413 1099999.99999994 + 0.0329954820552559 -0.129890871311998 1099999.99999999 + 0.0129413889870111 -0.0308247649979378 1100000.00000000 + 0.00500527786155389 0.0421780577045410 1100000.00000000 + 0.00218177835716479 0.151430850839941 1099999.99999999 + 0.000776711676561445 0.391238914697175 1099999.99999993 + 0.000191542115444336 0.966647464586302 1099999.99999958 + 0.000140827243190366 2.37108226676495 1099999.99999744 + 9.94222624276953e-05 5.80972073598877 1099999.99998466 + 9.55322409323612e-05 14.2318144001583 1099999.99990793 + -9.00295708223679e-06 34.8618018224388 1099999.99944757 + 6.11713582840955e-05 85.3960174100096 1099999.99668524 + 4.54719124220421e-05 209.179713898757 1099999.98011084 + 2.08280278669373e-05 512.374979494196 1099999.88066903 + -5.25959597310302e-05 1254.93888757767 1099999.28414903 + -4.81561307923355e-05 3073.08633863067 1099995.70732815 + 6.14211966753853e-06 7521.83809132215 1099974.28240470 + 4.09670595085565e-05 18389.5301777872 1099846.27343090 + -4.07695765268017e-05 44828.5184712462 1099086.16765551 + -7.51427515356597e-05 108456.751320530 1094640.18430396 + 9.32059896370420e-05 256943.720016387 1069569.97187848 + -1.61832556897079e-05 570452.767608032 940523.067196300 + 9.21872939796970e-05 -570452.767655811 940523.067167321 + 3.62049733713495e-06 -256943.720006852 1069569.97188077 + 9.14461318970152e-05 -108456.751271442 1094640.18430882 + -4.88066947658852e-06 -44828.5184596521 1099086.16765598 + -6.52251718251573e-05 -18389.5302193152 1099846.27343021 + -4.12784365913098e-05 -7521.83805699802 1099974.28240493 + -4.37187958908152e-05 -3073.08628223999 1099995.70732831 + -2.98445431097339e-05 -1254.93889635634 1099999.28414902 + -2.98689025239058e-05 -512.375025310194 1099999.88066901 + -5.99640192057216e-05 -209.179686502854 1099999.98011084 + -2.53215179765962e-05 -85.3960415519351 1099999.99668523 + 0.000123998473984984 -34.8618837021392 1099999.99944757 + -6.10360237993315e-05 -14.2317363502090 1099999.99990794 + 5.65122415442004e-05 -5.80979331428768 1099999.99998466 + 0.000171426863765553 -2.37126795402724 1099999.99999744 + 0.000239561441600545 -0.966836135726589 1099999.99999958 + 0.000778066115710034 -0.392030297138090 1099999.99999993 + 0.00190524118508574 -0.153578614959945 1099999.99999999 + 0.00480133795180677 -0.0473778723809133 1100000.00000000 + 0.0121238835484247 0.0175160712613629 1100000.00000000 + 0.0307491510616054 0.0960754292438434 1100000.00000000 + 0.0774090306907759 0.252545945341644 1099999.99999997 + 0.195293432822711 0.612928287321425 1099999.99999981 + 0.492654883359140 1.46346203875308 1099999.99999892 + 1.24104649415628 3.46951288488428 1099999.99999383 + 3.11936493141242 8.16965355229445 1099999.99996524 + 7.81625445680209 19.0885669790199 1099999.99980661 + 19.5048501521259 44.1799693874800 1099999.99893986 + 48.4121472696105 101.061060274643 1099999.99429224 + 119.308749723436 227.803959832355 1099999.96994126 + 291.263403044537 504.001148090848 1099999.84597657 + 702.131038195547 1088.53309994075 1099999.23732142 + 1663.99932039613 2277.70437189318 1099996.38325272 + 3852.61628200421 4567.17284830741 1099983.77182573 + 8633.60566482912 8633.60566482912 1099932.23505198 + 18462.8288695869 14999.2543621469 1099742.76370373 + 36844.5379367166 22972.1281455669 1099142.73929854 + 66250.7119016385 28868.9655442318 1097623.53564459 + 102129.723343038 25982.6135524763 1094940.37435965 + 128453.555723596 10694.4287535637 1092421.76526084 + 128453.555723596 -10694.4287535637 1092421.76526084 + 102129.723343038 -25982.6135524763 1094940.37435965 + 66250.7119016386 -28868.9655442318 1097623.53564459 + 36844.5379367166 -22972.1281455669 1099142.73929854 + 18462.8288695869 -14999.2543621469 1099742.76370373 + 8633.60566482911 -8633.60566482910 1099932.23505198 + 3852.61628200422 -4567.17284830739 1099983.77182573 + 1663.99932039613 -2277.70437189319 1099996.38325272 + 702.131038195540 -1088.53309994075 1099999.23732142 + 291.263403044536 -504.001148090845 1099999.84597657 + 119.308749723439 -227.803959832360 1099999.96994126 + 48.4121472696116 -101.061060274645 1099999.99429224 + 19.5048501521250 -44.1799693874780 1099999.99893986 + 7.81625445680223 -19.0885669790201 1099999.99980661 + 3.11936493141250 -8.16965355229457 1099999.99996524 + 1.24104649415619 -3.46951288488417 1099999.99999383 + 0.492654883359143 -1.46346203875311 1099999.99999892 + 0.195293432822711 -0.612928287321382 1099999.99999981 + 0.0774090306907793 -0.252545945341662 1099999.99999997 + 0.0307491510616096 -0.0960754292438653 1100000.00000000 + 0.0121238835484232 -0.0175160712613539 1100000.00000000 + 0.00480133795180735 0.0473778723809115 1100000.00000000 + 0.00190524118508668 0.153578614959945 1099999.99999999 + 0.000778066115701588 0.392030297138136 1099999.99999993 + 0.000239561441614233 0.966836135726536 1099999.99999958 + 0.000171426863777879 2.37126795402714 1099999.99999744 + 5.65122414647898e-05 5.80979331428775 1099999.99998466 + -6.10360237500269e-05 14.2317363502088 1099999.99990794 + 0.000123998474129292 34.8618837021393 1099999.99944757 + -2.53215180043051e-05 85.3960415519358 1099999.99668523 + -5.99640196841561e-05 209.179686502854 1099999.98011084 + -2.98689028819945e-05 512.375025310190 1099999.88066901 + -2.98445442034884e-05 1254.93889635634 1099999.28414902 + -4.37187959698260e-05 3073.08628223999 1099995.70732831 + -4.12784322725251e-05 7521.83805699804 1099974.28240493 + -6.52251810628100e-05 18389.5302193152 1099846.27343021 + -4.88070337580904e-06 44828.5184596521 1099086.16765598 + 9.14461468239990e-05 108456.751271442 1094640.18430882 + 3.62056851540714e-06 256943.720006852 1069569.97188077 + 9.21873475440094e-05 570452.767655811 940523.067167321 + 0.000147233922081452 -570452.767615753 940523.067191618 + 0.000159797732165404 -256943.719936965 1069569.97189756 + -4.05579227549886e-05 -108456.751224946 1094640.18431343 + -3.44391698101908e-05 -44828.5184348011 1099086.16765700 + 2.01740803493644e-05 -18389.5301668691 1099846.27343108 + -1.48870020888860e-05 -7521.83805896201 1099974.28240492 + -9.00091975463246e-05 -3073.08628469485 1099995.70732830 + -0.000107187539317505 -1254.93885714476 1099999.28414907 + -3.99362427460998e-05 -512.374983799948 1099999.88066903 + -2.15608277749335e-05 -209.179750588262 1099999.98011083 + -7.23564544831748e-06 -85.3960601023799 1099999.99668523 + -5.27419580811700e-05 -34.8618512442706 1099999.99944757 + 4.94663912484404e-05 -14.2318462720122 1099999.99990793 + -3.65808293821668e-06 -5.80977373419126 1099999.99998466 + 7.89307883258531e-05 -2.37132182354870 1099999.99999744 + 0.000133450817841891 -0.967238713385066 1099999.99999957 + 0.000620204577926328 -0.392784246892473 1099999.99999993 + 0.00191723607691721 -0.155377563836303 1099999.99999999 + 0.00422949547428971 -0.0520621629011632 1100000.00000000 + 0.0105348707942571 0.00580397223899349 1100000.00000000 + 0.0262662019264619 0.0666324192484432 1100000.00000000 + 0.0652368545863795 0.178886579999556 1099999.99999998 + 0.161842037823012 0.429341710259784 1099999.99999990 + 0.400366199222691 1.00646387200702 1099999.99999947 + 0.987180808502593 2.33569070280238 1099999.99999708 + 2.42386737391184 5.37218406824344 1099999.99998421 + 5.91763282539536 12.2278631944857 1099999.99991612 + 14.3470546068423 27.4886537815560 1099999.99956297 + 34.4810202399907 60.8662959375485 1099999.99777562 + 81.9658056889055 132.285292024451 1099999.98899191 + 192.153752223933 280.912552611205 1099999.94734776 + 442.540977947161 579.312792403904 1099999.75843369 + 996.098971283563 1150.63988702577 1099998.94718799 + 2175.84373442848 2175.84373442847 1099995.69608617 + 4567.17284830741 3852.61628200423 1099983.77182573 + 9083.75406832872 6231.09554750010 1099944.84355367 + 16776.8648370099 8857.49932602489 1099836.38851964 + 27963.8881448792 10380.5642785481 1099595.50055695 + 40550.3139723951 8862.94514098247 1099216.59387046 + 49342.6818445477 3548.25094091223 1098887.03225748 + 49342.6818445477 -3548.25094091221 1098887.03225748 + 40550.3139723951 -8862.94514098250 1099216.59387046 + 27963.8881448792 -10380.5642785481 1099595.50055695 + 16776.8648370099 -8857.49932602487 1099836.38851964 + 9083.75406832872 -6231.09554750009 1099944.84355367 + 4567.17284830740 -3852.61628200421 1099983.77182573 + 2175.84373442848 -2175.84373442848 1099995.69608617 + 996.098971283558 -1150.63988702578 1099998.94718799 + 442.540977947161 -579.312792403901 1099999.75843369 + 192.153752223938 -280.912552611211 1099999.94734776 + 81.9658056889066 -132.285292024451 1099999.98899191 + 34.4810202399892 -60.8662959375468 1099999.99777562 + 14.3470546068423 -27.4886537815562 1099999.99956297 + 5.91763282539544 -12.2278631944855 1099999.99991612 + 2.42386737391186 -5.37218406824358 1099999.99998421 + 0.987180808502602 -2.33569070280239 1099999.99999708 + 0.400366199222633 -1.00646387200686 1099999.99999947 + 0.161842037823018 -0.429341710259834 1099999.99999990 + 0.0652368545863957 -0.178886579999595 1099999.99999998 + 0.0262662019264608 -0.0666324192484316 1100000.00000000 + 0.0105348707942589 -0.00580397223899529 1100000.00000000 + 0.00422949547428894 0.0520621629011666 1100000.00000000 + 0.00191723607691122 0.155377563836321 1099999.99999999 + 0.000620204577932085 0.392784246892455 1099999.99999993 + 0.000133450817845639 0.967238713385065 1099999.99999957 + 7.89307882906736e-05 2.37132182354870 1099999.99999744 + -3.65808288534651e-06 5.80977373419110 1099999.99998466 + 4.94663913135564e-05 14.2318462720122 1099999.99990793 + -5.27419581764894e-05 34.8618512442707 1099999.99944757 + -7.23564565616124e-06 85.3960601023803 1099999.99668523 + -2.15608273320237e-05 209.179750588262 1099999.98011083 + -3.99362426935705e-05 512.374983799949 1099999.88066903 + -0.000107187543090090 1254.93885714475 1099999.28414907 + -9.00091967933816e-05 3073.08628469486 1099995.70732830 + -1.48869897254275e-05 7521.83805896201 1099974.28240492 + 2.01740905976054e-05 18389.5301668692 1099846.27343108 + -3.44391643837862e-05 44828.5184348011 1099086.16765700 + -4.05579094233485e-05 108456.751224946 1094640.18431343 + 0.000159797752665552 256943.719936966 1069569.97189756 + 0.000147233958805487 570452.767615753 940523.067191618 + 0.000128751068004045 -570452.767565427 940523.067222142 + 7.14689244613000e-05 -256943.719860223 1069569.97191600 + 0.000118310971891652 -108456.751106663 1094640.18432515 + -1.45935110278336e-05 -44828.5183735743 1099086.16765949 + -7.78374365667094e-05 -18389.5301877698 1099846.27343073 + -4.67669925836856e-05 -7521.83804017654 1099974.28240505 + -4.35127552661642e-05 -3073.08623908588 1099995.70732843 + -6.49449510334246e-05 -1254.93881751469 1099999.28414911 + -4.90789933862868e-05 -512.375052976121 1099999.88066900 + -6.03802536516582e-05 -209.179744752523 1099999.98011083 + -7.46950504351391e-05 -85.3960661916752 1099999.99668523 + 8.15941081239556e-05 -34.8619388107477 1099999.99944757 + -7.99819251987221e-05 -14.2317667441394 1099999.99990793 + 2.03820431611168e-05 -5.80986044782627 1099999.99998466 + 0.000132099948529244 -2.37144663541328 1099999.99999744 + 0.000103302939053724 -0.967321977333193 1099999.99999957 + 0.000451352597419784 -0.393455271845159 1099999.99999993 + 0.00140389951944161 -0.157066081184352 1099999.99999999 + 0.00353568714103975 -0.0559459207279239 1100000.00000000 + 0.00854222007825070 -0.00386507242496411 1100000.00000000 + 0.0210824881328949 0.0429679210084399 1100000.00000000 + 0.0513632590637298 0.120718722974793 1099999.99999999 + 0.125005329845522 0.286947074712230 1099999.99999996 + 0.302997294173751 0.660170892183138 1099999.99999976 + 0.730555621250677 1.49882328939104 1099999.99999874 + 1.75024242130611 3.36332238307461 1099999.99999347 + 4.16000926014131 7.45138708125933 1099999.99996690 + 9.79136963073362 16.2596825449733 1099999.99983625 + 22.7768835237276 34.8399222239579 1099999.99921245 + 52.2275071630886 73.0227925096022 1099999.99633635 + 117.655033212306 148.969050095317 1099999.98362069 + 259.277038887659 293.880975075374 1099999.93018608 + 555.825817421192 555.825817421197 1099999.71914329 + 1150.63988702577 996.098971283554 1099998.94718799 + 2277.70437189318 1663.99932039612 1099996.38325272 + 4254.56756138949 2530.69871433362 1099988.86095218 + 7366.57104569069 3381.48924396509 1099970.13557711 + 11550.5014486688 3745.70434025276 1099932.97778332 + 15950.8398811979 3065.10593837897 1099880.07338649 + 18893.2570721847 1199.81978248544 1099837.08123962 + 18893.2570721847 -1199.81978248546 1099837.08123962 + 15950.8398811979 -3065.10593837896 1099880.07338649 + 11550.5014486688 -3745.70434025276 1099932.97778332 + 7366.57104569069 -3381.48924396509 1099970.13557711 + 4254.56756138948 -2530.69871433361 1099988.86095218 + 2277.70437189319 -1663.99932039613 1099996.38325272 + 1150.63988702578 -996.098971283567 1099998.94718799 + 555.825817421193 -555.825817421192 1099999.71914329 + 259.277038887665 -293.880975075377 1099999.93018608 + 117.655033212306 -148.969050095315 1099999.98362069 + 52.2275071630873 -73.0227925096017 1099999.99633635 + 22.7768835237279 -34.8399222239585 1099999.99921245 + 9.79136963073338 -16.2596825449723 1099999.99983625 + 4.16000926014137 -7.45138708125961 1099999.99996690 + 1.75024242130616 -3.36332238307466 1099999.99999347 + 0.730555621250592 -1.49882328939084 1099999.99999874 + 0.302997294173746 -0.660170892183200 1099999.99999976 + 0.125005329845543 -0.286947074712260 1099999.99999996 + 0.0513632590637360 -0.120718722974784 1099999.99999999 + 0.0210824881328956 -0.0429679210084486 1100000.00000000 + 0.00854222007824763 0.00386507242496407 1100000.00000000 + 0.00353568714103713 0.0559459207279318 1100000.00000000 + 0.00140389951944117 0.157066081184355 1099999.99999999 + 0.000451352597423757 0.393455271845171 1099999.99999993 + 0.000103302939045202 0.967321977333189 1099999.99999957 + 0.000132099948548214 2.37144663541318 1099999.99999744 + 2.03820431754331e-05 5.80986044782622 1099999.99998466 + -7.99819251941514e-05 14.2317667441394 1099999.99990793 + 8.15941080276008e-05 34.8619388107480 1099999.99944757 + -7.46950504341196e-05 85.3960661916752 1099999.99668523 + -6.03802533084219e-05 209.179744752523 1099999.98011083 + -4.90789938642657e-05 512.375052976121 1099999.88066900 + -6.49449510834397e-05 1254.93881751469 1099999.28414911 + -4.35127565559713e-05 3073.08623908586 1099995.70732843 + -4.67669859738969e-05 7521.83804017654 1099974.28240505 + -7.78374078365274e-05 18389.5301877698 1099846.27343073 + -1.45934856157868e-05 44828.5183735743 1099086.16765949 + 0.000118310985101207 108456.751106663 1094640.18432515 + 7.14689035147502e-05 256943.719860223 1069569.97191600 + 0.000128751135266697 570452.767565427 940523.067222142 + 7.39605003035077e-05 -570452.767583868 940523.067210956 + 0.000101560289706916 -256943.719794789 1069569.97193172 + -4.40316540212596e-05 -108456.751065431 1094640.18432923 + -3.04524483154844e-05 -44828.5183622822 1099086.16765995 + 4.15995942112124e-07 -18389.5301458927 1099846.27343143 + -6.51318196501683e-06 -7521.83802075619 1099974.28240518 + -6.45634539512591e-05 -3073.08623801591 1099995.70732843 + -9.72184739812608e-05 -1254.93883349073 1099999.28414910 + -3.89234426879106e-05 -512.374967742978 1099999.88066904 + -7.62013565774243e-07 -209.179798533311 1099999.98011082 + -3.88794825458336e-06 -85.3961285919282 1099999.99668523 + -5.18552746996855e-05 -34.8619192905735 1099999.99944757 + 4.95912561755302e-05 -14.2318710923339 1099999.99990793 + -7.16130753701608e-05 -5.80980133989409 1099999.99998466 + 4.26863414920723e-05 -2.37153538241654 1099999.99999744 + 8.58096919591671e-05 -0.967653214279406 1099999.99999957 + 0.000302180387347943 -0.393882358961376 1099999.99999993 + 0.00122247595542591 -0.158259198053961 1099999.99999999 + 0.00273178266528837 -0.0590135033515789 1100000.00000000 + 0.00650541275723578 -0.0112859428819540 1100000.00000000 + 0.0158324730969943 0.0249499810017646 1100000.00000000 + 0.0381326983819159 0.0775717008453333 1100000.00000000 + 0.0909725644997288 0.183822356101508 1099999.99999998 + 0.215886894423090 0.415073684513859 1099999.99999990 + 0.508606405369579 0.921030811737288 1099999.99999950 + 1.18837247757811 2.01625292486780 1099999.99999751 + 2.74852422990463 4.34637788593380 1099999.99998798 + 6.28080600743657 9.20626636209753 1099999.99994354 + 14.1456126983188 19.0965061200801 1099999.99974328 + 31.3125682604429 38.6338667002463 1099999.99887589 + 67.8795488700817 75.8329364668623 1099999.99529170 + 143.456118430364 143.456118430364 1099999.98129122 + 293.880975075374 259.277038887661 1099999.93018608 + 579.312792403903 442.540977947166 1099999.75843369 + 1088.53309994075 702.131038195539 1099999.23732142 + 1926.03271727666 1012.71159396697 1099997.84764026 + 3159.52703745350 1284.83831162125 1099994.71206884 + 4714.17348254049 1359.04377459596 1099989.05884031 + 6261.55840681996 1074.31609898091 1099981.65381575 + 7259.13484749023 412.882815319622 1099975.96995982 + 7259.13484749022 -412.882815319635 1099975.96995982 + 6261.55840681996 -1074.31609898092 1099981.65381575 + 4714.17348254049 -1359.04377459595 1099989.05884031 + 3159.52703745349 -1284.83831162125 1099994.71206884 + 1926.03271727667 -1012.71159396696 1099997.84764026 + 1088.53309994075 -702.131038195548 1099999.23732142 + 579.312792403902 -442.540977947162 1099999.75843369 + 293.880975075378 -259.277038887661 1099999.93018608 + 143.456118430363 -143.456118430363 1099999.98129122 + 67.8795488700810 -75.8329364668622 1099999.99529170 + 31.3125682604438 -38.6338667002473 1099999.99887589 + 14.1456126983180 -19.0965061200786 1099999.99974328 + 6.28080600743650 -9.20626636209773 1099999.99994354 + 2.74852422990480 -4.34637788593395 1099999.99998798 + 1.18837247757809 -2.01625292486768 1099999.99999751 + 0.508606405369529 -0.921030811737320 1099999.99999950 + 0.215886894423087 -0.415073684513836 1099999.99999990 + 0.0909725644997577 -0.183822356101522 1099999.99999998 + 0.0381326983819172 -0.0775717008453574 1100000.00000000 + 0.0158324730969854 -0.0249499810017594 1100000.00000000 + 0.00650541275723949 0.0112859428819619 1100000.00000000 + 0.00273178266528823 0.0590135033515840 1100000.00000000 + 0.00122247595542183 0.158259198053963 1099999.99999999 + 0.000302180387339073 0.393882358961380 1099999.99999993 + 8.58096919889333e-05 0.967653214279369 1099999.99999957 + 4.26863414958766e-05 2.37153538241651 1099999.99999744 + -7.16130754227330e-05 5.80980133989400 1099999.99998466 + 4.95912562111647e-05 14.2318710923340 1099999.99990793 + -5.18552746177027e-05 34.8619192905737 1099999.99944757 + -3.88794834464464e-06 85.3961285919280 1099999.99668523 + -7.62013513851551e-07 209.179798533310 1099999.98011082 + -3.89234422648797e-05 512.374967742981 1099999.88066904 + -9.72184767914309e-05 1254.93883349073 1099999.28414910 + -6.45634538811392e-05 3073.08623801591 1099995.70732843 + -6.51317690043413e-06 7521.83802075617 1099974.28240518 + 4.16002695036509e-07 18389.5301458927 1099846.27343143 + -3.04524262328907e-05 44828.5183622822 1099086.16765995 + -4.40316084503010e-05 108456.751065431 1094640.18432923 + 0.000101560351796414 256943.719794789 1069569.97193172 + 7.39605977539152e-05 570452.767583868 940523.067210956 + -1.47969373948751e-05 -570452.767703931 940523.067138135 + 2.61061162447148e-05 -256943.719870012 1069569.97191365 + 9.41860695533372e-05 -108456.750998065 1094640.18433590 + -3.06518578136935e-05 -44828.5182936842 1099086.16766275 + -8.47828620553004e-05 -18389.5301556784 1099846.27343127 + -4.06976272839408e-05 -7521.83806184930 1099974.28240490 + 8.06150849527794e-06 -3073.08624078324 1099995.70732842 + -4.24711321473714e-05 -1254.93872658069 1099999.28414922 + -4.17995434204996e-05 -512.375071924178 1099999.88066899 + 1.76772706033317e-06 -209.179825945519 1099999.98011082 + -4.95797734982443e-05 -85.3960942411691 1099999.99668523 + 7.63248298895605e-05 -34.8620090378784 1099999.99944756 + -1.19785938737982e-05 -14.2318461153854 1099999.99990793 + 3.31471249097011e-05 -5.80988125200392 1099999.99998466 + 7.14069107568052e-05 -2.37153302656273 1099999.99999744 + 3.78999994102253e-05 -0.967677433927280 1099999.99999957 + 0.000137173105593089 -0.394392391246765 1099999.99999993 + 0.000745169574288883 -0.159284093171260 1099999.99999999 + 0.00209075832693914 -0.0612447553634715 1100000.00000000 + 0.00476093017264204 -0.0167041427817097 1100000.00000000 + 0.0113448872316898 0.0121576943745603 1100000.00000000 + 0.0268127597113567 0.0472692491525706 1100000.00000000 + 0.0629248278190133 0.113015031217648 1099999.99999999 + 0.146013047088880 0.251062579974169 1099999.99999996 + 0.336024355829300 0.544802120729970 1099999.99999981 + 0.765572768227340 1.16284491250657 1099999.99999912 + 1.72338181873724 2.44004931117854 1099999.99999594 + 3.82455143521013 5.01909798461657 1099999.99998190 + 8.34656046484573 10.0870832520903 1099999.99992208 + 17.8576322966855 19.7230905984803 1099999.99967823 + 37.3201534881998 37.3201534881996 1099999.99873382 + 75.8329364668625 67.8795488700822 1099999.99529170 + 148.969050095314 117.655033212305 1099999.98362069 + 280.912552611208 192.153752223936 1099999.94734776 + 504.001148090846 291.263403044539 1099999.84597657 + 850.915817789893 401.261207326280 1099999.59769616 + 1333.78032857858 487.255329194352 1099999.08345974 + 1910.61817485871 496.033112581284 1099998.22885737 + 2459.44787009265 381.102281223831 1099997.18448604 + 2802.80157083267 144.265555239821 1099996.41976272 + 2802.80157083267 -144.265555239829 1099996.41976272 + 2459.44787009264 -381.102281223828 1099997.18448604 + 1910.61817485870 -496.033112581283 1099998.22885737 + 1333.78032857858 -487.255329194348 1099999.08345974 + 850.915817789896 -401.261207326281 1099999.59769616 + 504.001148090846 -291.263403044539 1099999.84597657 + 280.912552611208 -192.153752223933 1099999.94734776 + 148.969050095314 -117.655033212305 1099999.98362069 + 75.8329364668617 -67.8795488700821 1099999.99529170 + 37.3201534882008 -37.3201534882003 1099999.99873382 + 17.8576322966842 -19.7230905984789 1099999.99967823 + 8.34656046484551 -10.0870832520905 1099999.99992208 + 3.82455143521041 -5.01909798461673 1099999.99998190 + 1.72338181873735 -2.44004931117856 1099999.99999594 + 0.765572768227233 -1.16284491250655 1099999.99999912 + 0.336024355829256 -0.544802120729867 1099999.99999981 + 0.146013047088939 -0.251062579974217 1099999.99999996 + 0.0629248278190190 -0.113015031217688 1099999.99999999 + 0.0268127597113380 -0.0472692491525545 1100000.00000000 + 0.0113448872316958 -0.0121576943745572 1100000.00000000 + 0.00476093017264497 0.0167041427817049 1100000.00000000 + 0.00209075832693458 0.0612447553634784 1100000.00000000 + 0.000745169574281579 0.159284093171286 1099999.99999999 + 0.000137173105607679 0.394392391246738 1099999.99999993 + 3.78999994076778e-05 0.967677433927245 1099999.99999957 + 7.14069107750251e-05 2.37153302656268 1099999.99999744 + 3.31471249588584e-05 5.80988125200389 1099999.99998466 + -1.19785940301115e-05 14.2318461153855 1099999.99990793 + 7.63248297846996e-05 34.8620090378785 1099999.99944756 + -4.95797731394497e-05 85.3960942411689 1099999.99668523 + 1.76772720954344e-06 209.179825945519 1099999.98011082 + -4.17995439768781e-05 512.375071924178 1099999.88066899 + -4.24711320775134e-05 1254.93872658070 1099999.28414922 + 8.06150561205323e-06 3073.08624078323 1099995.70732842 + -4.06976287832489e-05 7521.83806184929 1099974.28240490 + -8.47828642936060e-05 18389.5301556784 1099846.27343127 + -3.06518028155786e-05 44828.5182936841 1099086.16766275 + 9.41860779857719e-05 108456.750998065 1094640.18433590 + 2.61061979545909e-05 256943.719870012 1069569.97191365 + -1.47968895533970e-05 570452.767703931 940523.067138135 + 1.76953238362167e-05 -570452.767880440 940523.067031077 + 7.76868332586109e-05 -256943.719883077 1069569.97191051 + -7.19038271380513e-06 -108456.751014763 1094640.18433425 + -2.28840492764081e-06 -44828.5183189312 1099086.16766172 + -2.32968664958299e-05 -18389.5301370847 1099846.27343158 + -1.23058609138577e-05 -7521.83800469092 1099974.28240529 + -2.01324298241106e-05 -3073.08624011322 1099995.70732842 + -4.61583957179186e-05 -1254.93883182374 1099999.28414910 + -1.95957106225907e-05 -512.374920673215 1099999.88066906 + 4.24449061056227e-05 -209.179857367629 1099999.98011081 + 5.58524877797138e-05 -85.3962242667268 1099999.99668522 + -4.66180751828415e-05 -34.8619871202947 1099999.99944756 + 6.93519524778291e-05 -14.2319135884730 1099999.99990793 + -2.56780462598163e-05 -5.80985110617649 1099999.99998466 + 7.41704834758962e-05 -2.37168731931400 1099999.99999744 + 0.000112652589747822 -0.967843279865155 1099999.99999957 + 0.000105389484758864 -0.394490274175622 1099999.99999993 + 0.000583105156901210 -0.159950732554678 1099999.99999999 + 0.00146672736150577 -0.0628504522762684 1100000.00000000 + 0.00333239437313674 -0.0204886715185491 1100000.00000000 + 0.00775177097976049 0.00331909422394425 1100000.00000000 + 0.0180387770812015 0.0271363420367612 1100000.00000000 + 0.0414252557960424 0.0668520031342327 1100000.00000000 + 0.0944528098583411 0.146668071191033 1099999.99999999 + 0.212161304025471 0.311242933286747 1099999.99999994 + 0.471428164876101 0.648461382841203 1099999.99999971 + 1.03312810664543 1.32450768225960 1099999.99999872 + 2.22848586919768 2.64810458151177 1099999.99999456 + 4.71729116294091 5.16196688716956 1099999.99997777 + 9.76986982201750 9.76986982201737 1099999.99991323 + 19.7230905984803 17.8576322966849 1099999.99967823 + 38.6338667002471 31.3125682604431 1099999.99887589 + 73.0227925096030 52.2275071630886 1099999.99633635 + 132.285292024449 81.9658056889053 1099999.98899191 + 227.803959832359 119.308749723438 1099999.96994126 + 369.245654704598 157.930466578726 1099999.92668891 + 556.828422814879 184.732910669413 1099999.84355265 + 771.091449385339 182.107710180277 1099999.71466122 + 967.512676444287 136.633275954166 1099999.56602290 + 1087.40126805936 51.0755321474986 1099999.46134067 + 1087.40126805937 -51.0755321474976 1099999.46134067 + 967.512676444278 -136.633275954165 1099999.56602290 + 771.091449385341 -182.107710180277 1099999.71466122 + 556.828422814876 -184.732910669412 1099999.84355265 + 369.245654704600 -157.930466578728 1099999.92668891 + 227.803959832357 -119.308749723436 1099999.96994126 + 132.285292024450 -81.9658056889056 1099999.98899191 + 73.0227925096020 -52.2275071630887 1099999.99633635 + 38.6338667002479 -31.3125682604434 1099999.99887589 + 19.7230905984793 -17.8576322966842 1099999.99967823 + 9.76986982201728 -9.76986982201768 1099999.99991323 + 4.71729116294116 -5.16196688716954 1099999.99997777 + 2.22848586919787 -2.64810458151183 1099999.99999456 + 1.03312810664531 -1.32450768225958 1099999.99999872 + 0.471428164876048 -0.648461382841050 1099999.99999971 + 0.212161304025541 -0.311242933286825 1099999.99999994 + 0.0944528098583398 -0.146668071191084 1099999.99999999 + 0.0414252557960223 -0.0668520031342072 1100000.00000000 + 0.0180387770812096 -0.0271363420367588 1100000.00000000 + 0.00775177097976374 -0.00331909422395197 1100000.00000000 + 0.00333239437313318 0.0204886715185547 1100000.00000000 + 0.00146672736150004 0.0628504522762852 1100000.00000000 + 0.000583105156908602 0.159950732554661 1099999.99999999 + 0.000105389484762071 0.394490274175628 1099999.99999993 + 0.000112652589756630 0.967843279865091 1099999.99999957 + 7.41704834922511e-05 2.37168731931393 1099999.99999744 + -2.56780463037973e-05 5.80985110617669 1099999.99998466 + 6.93519524395134e-05 14.2319135884730 1099999.99990793 + -4.66180751912971e-05 34.8619871202942 1099999.99944756 + 5.58524877126277e-05 85.3962242667268 1099999.99668522 + 4.24449063504623e-05 209.179857367629 1099999.98011081 + -1.95957098169159e-05 512.374920673218 1099999.88066906 + -4.61583964587456e-05 1254.93883182373 1099999.28414910 + -2.01324321101927e-05 3073.08624011322 1099995.70732842 + -1.23058624891685e-05 7521.83800469091 1099974.28240529 + -2.32968469450174e-05 18389.5301370847 1099846.27343158 + -2.28839895157998e-06 44828.5183189312 1099086.16766172 + -7.19046571803526e-06 108456.751014763 1094640.18433425 + 7.76867993458792e-05 256943.719883077 1069569.97191051 + 1.76952598672170e-05 570452.767880441 940523.067031077 + 9.17833942968880e-05 -570452.767982027 940523.066969463 + 8.91981431093869e-05 -256943.719996882 1069569.97188317 + 0.000130779643523991 -108456.750941794 1094640.18434148 + 3.06718877955319e-06 -44828.5181958177 1099086.16766674 + -7.33058494299577e-05 -18389.5300878848 1099846.27343240 + -5.91364817810266e-05 -7521.83809688119 1099974.28240466 + 4.43242310227407e-05 -3073.08630413421 1099995.70732825 + -2.12790234495142e-06 -1254.93866223462 1099999.28414929 + -7.19679268099906e-05 -512.375041340045 1099999.88066900 + 4.22895945583597e-05 -209.179877531797 1099999.98011081 + 1.93220562618595e-05 -85.3961363255988 1099999.99668523 + 7.72898169925589e-05 -34.8620863095857 1099999.99944756 + 4.07292448848372e-05 -14.2319615104193 1099999.99990793 + 5.70238191144653e-05 -5.80986672873391 1099999.99998466 + 5.33369059893606e-05 -2.37158400528524 1099999.99999744 + 8.49942071758773e-05 -0.967960656702778 1099999.99999957 + 4.63413343832175e-05 -0.394866681154640 1099999.99999993 + 0.000271726975569287 -0.160421589595867 1099999.99999999 + 0.00107384276070707 -0.0638569249275328 1100000.00000000 + 0.00231182838432037 -0.0228920965817747 1100000.00000000 + 0.00514909396165753 -0.00241481668489872 1100000.00000000 + 0.0117196219514451 0.0141093513040104 1100000.00000000 + 0.0263006658640367 0.0379130454840553 1100000.00000000 + 0.0585266288367089 0.0828909896014922 1100000.00000000 + 0.128854953810845 0.172541633505047 1099999.99999998 + 0.279131166907938 0.350662475610197 1099999.99999991 + 0.595973697136052 0.698258736089632 1099999.99999962 + 1.25037183895586 1.35785074911339 1099999.99999845 + 2.57077729951319 2.57077729951331 1099999.99999399 + 5.16196688716944 4.71729116294121 1099999.99997777 + 10.0870832520901 8.34656046484545 1099999.99992208 + 19.0965061200794 14.1456126983182 1099999.99974328 + 34.8399222239585 22.7768835237273 1099999.99921245 + 60.8662959375485 34.4810202399902 1099999.99777562 + 101.061060274643 48.4121472696103 1099999.99429224 + 158.079302147886 61.8812981604579 1099999.98690075 + 230.616750614910 70.0877467215686 1099999.97359256 + 310.391436023113 67.2302843316288 1099999.95415329 + 381.295484139518 49.4451217170789 1099999.93280406 + 423.699510704692 18.2891138768320 1099999.91824738 + 423.699510704687 -18.2891138768309 1099999.91824738 + 381.295484139523 -49.4451217170795 1099999.93280406 + 310.391436023111 -67.2302843316284 1099999.95415329 + 230.616750614913 -70.0877467215699 1099999.97359256 + 158.079302147884 -61.8812981604571 1099999.98690075 + 101.061060274644 -48.4121472696105 1099999.99429224 + 60.8662959375478 -34.4810202399903 1099999.99777562 + 34.8399222239588 -22.7768835237275 1099999.99921245 + 19.0965061200790 -14.1456126983180 1099999.99974328 + 10.0870832520900 -8.34656046484582 1099999.99992208 + 5.16196688716949 -4.71729116294092 1099999.99997777 + 2.57077729951337 -2.57077729951326 1099999.99999399 + 1.25037183895581 -1.35785074911344 1099999.99999845 + 0.595973697136039 -0.698258736089512 1099999.99999962 + 0.279131166907978 -0.350662475610284 1099999.99999991 + 0.128854953810814 -0.172541633505088 1099999.99999998 + 0.0585266288367057 -0.0828909896014597 1100000.00000000 + 0.0263006658640496 -0.0379130454840528 1100000.00000000 + 0.0117196219514419 -0.0141093513040202 1100000.00000000 + 0.00514909396165739 0.00241481668489595 1100000.00000000 + 0.00231182838431792 0.0228920965817844 1100000.00000000 + 0.00107384276070921 0.0638569249275340 1100000.00000000 + 0.000271726975572077 0.160421589595878 1099999.99999999 + 4.63413343873118e-05 0.394866681154603 1099999.99999993 + 8.49942071828360e-05 0.967960656702761 1099999.99999957 + 5.33369059641275e-05 2.37158400528523 1099999.99999744 + 5.70238190999942e-05 5.80986672873381 1099999.99998466 + 4.07292448967268e-05 14.2319615104195 1099999.99990793 + 7.72898169925395e-05 34.8620863095860 1099999.99944756 + 1.93220563405419e-05 85.3961363255978 1099999.99668523 + 4.22895945426867e-05 209.179877531797 1099999.98011081 + -7.19679271879509e-05 512.375041340045 1099999.88066900 + -2.12790354851837e-06 1254.93866223463 1099999.28414929 + 4.43242365797836e-05 3073.08630413420 1099995.70732825 + -5.91364761740895e-05 7521.83809688115 1099974.28240466 + -7.33058533102954e-05 18389.5300878848 1099846.27343240 + 3.06719451979231e-06 44828.5181958177 1099086.16766674 + 0.000130779698638274 108456.750941794 1094640.18434148 + 8.91980423308859e-05 256943.719996882 1069569.97188317 + 9.17832777540387e-05 570452.767982027 940523.066969463 + 0.000132466424328115 -570452.768003082 940523.066956692 + 0.000182193545873246 -256943.719898121 1069569.97190690 + 9.87292011908165e-05 -108456.750920141 1094640.18434363 + 5.27267105413125e-05 -44828.5181797563 1099086.16766740 + -4.07727766139655e-05 -18389.5300518799 1099846.27343301 + -7.45412564750391e-05 -7521.83797664406 1099974.28240548 + -3.07992288233119e-05 -3073.08627862943 1099995.70732832 + 4.97740255601344e-06 -1254.93885281021 1099999.28414907 + -3.03340642503187e-05 -512.374842593702 1099999.88066909 + -1.76230725548954e-05 -209.179875630775 1099999.98011081 + 7.73532339317214e-05 -85.3962867239466 1099999.99668522 + -5.96125035730000e-05 -34.8620277632314 1099999.99944756 + 5.42916264355198e-06 -14.2319978586632 1099999.99990793 + 5.11766993615743e-05 -5.80995863394714 1099999.99998466 + 9.76962350182997e-05 -2.37173271679825 1099999.99999744 + 0.000143651580552045 -0.967874964525409 1099999.99999957 + 0.000105090380278296 -0.394821303529870 1099999.99999993 + 0.000196487847857673 -0.160871553912732 1099999.99999999 + 0.000640975233700373 -0.0646334248088793 1100000.00000000 + 0.00148394389144644 -0.0244276049261946 1100000.00000000 + 0.00324034445914185 -0.00594829057116400 1100000.00000000 + 0.00729316639373577 0.00622152078216174 1100000.00000000 + 0.0161066405457946 0.0205105408715240 1100000.00000000 + 0.0350914701930452 0.0453640760104224 1100000.00000000 + 0.0753921093630989 0.0929239129796478 1099999.99999999 + 0.159851959667043 0.184855037997845 1099999.99999997 + 0.332362219265257 0.358478623024946 1099999.99999989 + 0.679092684697151 0.679092684697144 1099999.99999958 + 1.35785074911348 1.25037183895571 1099999.99999845 + 2.64810458151183 2.22848586919793 1099999.99999456 + 5.01909798461663 3.82455143521041 1099999.99998190 + 9.20626636209734 6.28080600743653 1099999.99994354 + 16.2596825449726 9.79136963073345 1099999.99983625 + 27.4886537815560 14.3470546068419 1099999.99956297 + 44.1799693874790 19.5048501521257 1099999.99893986 + 66.9783303750513 24.1755446651158 1099999.99769520 + 94.9551380155284 26.6262676843030 1099999.99557935 + 124.745308315046 24.9499880449844 1099999.99264368 + 150.543586974362 18.0407995442279 1099999.98955053 + 165.712154476185 6.61389101010462 1099999.98749806 + 165.712154476187 -6.61389101010482 1099999.98749806 + 150.543586974362 -18.0407995442277 1099999.98955053 + 124.745308315047 -24.9499880449850 1099999.99264368 + 94.9551380155281 -26.6262676843026 1099999.99557935 + 66.9783303750514 -24.1755446651159 1099999.99769520 + 44.1799693874790 -19.5048501521256 1099999.99893986 + 27.4886537815559 -14.3470546068421 1099999.99956297 + 16.2596825449726 -9.79136963073335 1099999.99983625 + 9.20626636209724 -6.28080600743676 1099999.99994354 + 5.01909798461646 -3.82455143521003 1099999.99998190 + 2.64810458151201 -2.22848586919779 1099999.99999456 + 1.35785074911353 -1.25037183895588 1099999.99999845 + 0.679092684697184 -0.679092684697102 1099999.99999958 + 0.332362219265238 -0.358478623025011 1099999.99999989 + 0.159851959666971 -0.184855037997847 1099999.99999997 + 0.0753921093631245 -0.0929239129796107 1099999.99999999 + 0.0350914701930663 -0.0453640760104298 1100000.00000000 + 0.0161066405457795 -0.0205105408715390 1100000.00000000 + 0.00729316639373990 -0.00622152078216313 1100000.00000000 + 0.00324034445914572 0.00594829057117503 1100000.00000000 + 0.00148394389144389 0.0244276049261917 1100000.00000000 + 0.000640975233700328 0.0646334248088832 1100000.00000000 + 0.000196487847857493 0.160871553912723 1099999.99999999 + 0.000105090380276708 0.394821303529869 1099999.99999993 + 0.000143651580552254 0.967874964525374 1099999.99999957 + 9.76962350383945e-05 2.37173271679825 1099999.99999744 + 5.11766993307361e-05 5.80995863394721 1099999.99998466 + 5.42916255868121e-06 14.2319978586631 1099999.99990793 + -5.96125035052899e-05 34.8620277632312 1099999.99944756 + 7.73532341867299e-05 85.3962867239472 1099999.99668522 + -1.76230727476452e-05 209.179875630774 1099999.98011081 + -3.03340659141763e-05 512.374842593704 1099999.88066909 + 4.97740554153622e-06 1254.93885281020 1099999.28414907 + -3.07992271297201e-05 3073.08627862942 1099995.70732832 + -7.45412618239203e-05 7521.83797664406 1099974.28240548 + -4.07727718561025e-05 18389.5300518798 1099846.27343301 + 5.27267417037397e-05 44828.5181797562 1099086.16766740 + 9.87292711163811e-05 108456.750920141 1094640.18434363 + 0.000182193529778688 256943.719898121 1069569.97190689 + 0.000132466298929939 570452.768003082 940523.066956692 + 0.000156907072564658 -570452.767928161 940523.067002133 + 8.59063844933788e-05 -256943.719948721 1069569.97189474 + 0.000132732286093398 -108456.750819229 1094640.18435362 + 3.62778335900291e-05 -44828.5180112700 1099086.16767427 + -6.83884551269827e-05 -18389.5299072140 1099846.27343543 + -0.000117519855567183 -7521.83806878893 1099974.28240485 + -2.79547510640512e-05 -3073.08641178899 1099995.70732794 + -1.11786710445726e-05 -1254.93866710465 1099999.28414929 + -0.000119359267080643 -512.374943594692 1099999.88066905 + -4.31451171663149e-05 -209.179831692138 1099999.98011082 + 2.27712263874551e-05 -85.3961751234539 1099999.99668522 + 3.84587231444332e-05 -34.8621154447646 1099999.99944756 + -6.36304714302587e-05 -14.2320340348436 1099999.99990793 + -6.71612694060590e-05 -5.80989733492257 1099999.99998466 + 3.49931946560992e-06 -2.37171963902907 1099999.99999744 + 9.33188508785133e-05 -0.968192442170334 1099999.99999957 + 2.05831024863281e-05 -0.394911848272091 1099999.99999993 + 6.09290391671796e-05 -0.160901617443912 1099999.99999999 + 0.000474054442600560 -0.0651458601455801 1100000.00000000 + 0.00104805631524437 -0.0253882587908144 1100000.00000000 + 0.00195457293672315 -0.00810849172048321 1100000.00000000 + 0.00435661725922348 0.00146994623088115 1100000.00000000 + 0.00949809123330705 0.0103658891598675 1100000.00000000 + 0.0203052310544033 0.0240208091248400 1100000.00000000 + 0.0427944232624595 0.0487912911225859 1100000.00000000 + 0.0886408573299957 0.0950564544104873 1099999.99999999 + 0.180313152714687 0.180313152714666 1099999.99999997 + 0.358478623024959 0.332362219265273 1099999.99999989 + 0.698258736089543 0.595973697135961 1099999.99999962 + 1.32450768225966 1.03312810664527 1099999.99999872 + 2.44004931117864 1.72338181873743 1099999.99999594 + 4.34637788593394 2.74852422990473 1099999.99998798 + 7.45138708125943 4.16000926014151 1099999.99996690 + 12.2278631944853 5.91763282539537 1099999.99991612 + 19.0885669790198 7.81625445680200 1099999.99980661 + 28.1507443601705 9.42735471329766 1099999.99959939 + 38.9271481262937 10.1323811799512 1099999.99926455 + 50.0878872535362 9.30419554595039 1099999.99882029 + 59.5421174067745 6.63064593958192 1099999.99836853 + 65.0219784601473 2.41227910785784 1099999.99807560 + 65.0219784601475 -2.41227910785787 1099999.99807560 + 59.5421174067742 -6.63064593958204 1099999.99836853 + 50.0878872535365 -9.30419554595020 1099999.99882029 + 38.9271481262933 -10.1323811799513 1099999.99926455 + 28.1507443601708 -9.42735471329754 1099999.99959939 + 19.0885669790196 -7.81625445680213 1099999.99980661 + 12.2278631944854 -5.91763282539535 1099999.99991612 + 7.45138708125940 -4.16000926014154 1099999.99996690 + 4.34637788593368 -2.74852422990447 1099999.99998798 + 2.44004931117883 -1.72338181873729 1099999.99999594 + 1.32450768225978 -1.03312810664551 1099999.99999872 + 0.698258736089582 -0.595973697135968 1099999.99999962 + 0.358478623024882 -0.332362219265290 1099999.99999989 + 0.180313152714589 -0.180313152714630 1099999.99999997 + 0.0886408573300460 -0.0950564544104526 1099999.99999999 + 0.0427944232624888 -0.0487912911226106 1100000.00000000 + 0.0203052310543815 -0.0240208091248577 1100000.00000000 + 0.00949809123331368 -0.0103658891598662 1100000.00000000 + 0.00435661725923017 -0.00146994623087346 1100000.00000000 + 0.00195457293671651 0.00810849172047830 1100000.00000000 + 0.00104805631524219 0.0253882587908215 1100000.00000000 + 0.000474054442603957 0.0651458601455843 1100000.00000000 + 6.09290391718582e-05 0.160901617443912 1099999.99999999 + 2.05831024866328e-05 0.394911848272069 1099999.99999993 + 9.33188508672239e-05 0.968192442170311 1099999.99999957 + 3.49931943025068e-06 2.37171963902905 1099999.99999744 + -6.71612693845866e-05 5.80989733492261 1099999.99998466 + -6.36304713503641e-05 14.2320340348437 1099999.99990793 + 3.84587230988955e-05 34.8621154447646 1099999.99944756 + 2.27712261604631e-05 85.3961751234534 1099999.99668522 + -4.31451174514328e-05 209.179831692140 1099999.98011082 + -0.000119359265236566 512.374943594690 1099999.88066905 + -1.11786720537996e-05 1254.93866710465 1099999.28414929 + -2.79547544268886e-05 3073.08641178898 1099995.70732794 + -0.000117519853631848 7521.83806878889 1099974.28240485 + -6.83884711292467e-05 18389.5299072139 1099846.27343543 + 3.62778241040066e-05 44828.5180112699 1099086.16767427 + 0.000132732189265126 108456.750819229 1094640.18435362 + 8.59062845364391e-05 256943.719948721 1069569.97189474 + 0.000156907014379599 570452.767928161 940523.067002133 + -0.000102682538925383 -570452.767907618 940523.067014593 + 8.50751630269149e-05 -256943.719887713 1069569.97190940 + 7.45951456715228e-05 -108456.750862491 1094640.18434934 + 2.85896510113081e-05 -44828.5179645550 1099086.16767618 + -6.95317160798658e-05 -18389.5298752045 1099846.27343596 + -0.000184923710416635 -7521.83792818667 1099974.28240581 + -0.000172847107157194 -3073.08630859504 1099995.70732823 + -2.51126857560586e-05 -1254.93890929919 1099999.28414901 + -9.60724541315862e-05 -512.374800740058 1099999.88066911 + -0.000219144232114371 -209.179794777337 1099999.98011082 + -7.93448151627404e-05 -85.3962380399049 1099999.99668522 + -0.000120656715655992 -34.8620408987813 1099999.99944756 + -0.000134429931460622 -14.2321018129218 1099999.99990793 + -0.000115252906949364 -5.81001942388175 1099999.99998466 + -6.15662748964676e-05 -2.37165542880376 1099999.99999744 + 2.16014587431850e-05 -0.968045907606874 1099999.99999957 + 3.36579419834412e-05 -0.395138845869351 1099999.99999993 + -0.000175053600818410 -0.161092955347328 1099999.99999999 + 1.17810032340927e-05 -0.0653499778895861 1100000.00000000 + 0.000613161193185934 -0.0259772189442397 1100000.00000000 + 0.00120859837769547 -0.00930502552669959 1100000.00000000 + 0.00240925105527468 -0.00120847945792408 1100000.00000000 + 0.00533700168858045 0.00469204495468950 1100000.00000000 + 0.0113728824223976 0.0121524107815635 1100000.00000000 + 0.0234489420478760 0.0248427473330838 1100000.00000000 + 0.0477500184996558 0.0477500184996536 1100000.00000000 + 0.0950564544104319 0.0886408573300445 1099999.99999999 + 0.184855037997905 0.159851959667057 1099999.99999997 + 0.350662475610207 0.279131166907990 1099999.99999991 + 0.648461382841071 0.471428164875984 1099999.99999971 + 1.16284491250664 0.765572768227247 1099999.99999912 + 2.01625292486778 1.18837247757817 1099999.99999751 + 3.36332238307479 1.75024242130608 1099999.99999347 + 5.37218406824360 2.42386737391203 1099999.99998421 + 8.16965355229448 3.11936493141236 1099999.99996524 + 11.7566249789385 3.67241156492789 1099999.99993104 + 15.9058379677090 3.86297926270574 1099999.99987822 + 20.1010669111289 3.48535066232206 1099999.99981082 + 23.5882899015124 2.45271891187521 1099999.99974435 + 25.5851482736739 0.886564201705201 1099999.99970210 + 25.5851482736735 -0.886564201705183 1099999.99970210 + 23.5882899015127 -2.45271891187520 1099999.99974435 + 20.1010669111286 -3.48535066232204 1099999.99981082 + 15.9058379677092 -3.86297926270575 1099999.99987822 + 11.7566249789384 -3.67241156492787 1099999.99993104 + 8.16965355229444 -3.11936493141242 1099999.99996524 + 5.37218406824372 -2.42386737391195 1099999.99998421 + 3.36332238307453 -1.75024242130599 1099999.99999347 + 2.01625292486798 -1.18837247757806 1099999.99999751 + 1.16284491250674 -0.765572768227471 1099999.99999912 + 0.648461382841074 -0.471428164875994 1099999.99999971 + 0.350662475610105 -0.279131166907957 1099999.99999991 + 0.184855037997811 -0.159851959667015 1099999.99999997 + 0.0950564544104982 -0.0886408573300217 1099999.99999999 + 0.0477500184996866 -0.0477500184996925 1100000.00000000 + 0.0234489420478566 -0.0248427473331024 1100000.00000000 + 0.0113728824224050 -0.0121524107815590 1100000.00000000 + 0.00533700168858466 -0.00469204495468127 1100000.00000000 + 0.00240925105526744 0.00120847945792550 1100000.00000000 + 0.00120859837769151 0.00930502552670274 1100000.00000000 + 0.000613161193189337 0.0259772189442327 1100000.00000000 + 1.17810032403658e-05 0.0653499778895884 1100000.00000000 + -0.000175053600819121 0.161092955347330 1099999.99999999 + 3.36579419829480e-05 0.395138845869349 1099999.99999993 + 2.16014587332663e-05 0.968045907606877 1099999.99999957 + -6.15662749233103e-05 2.37165542880374 1099999.99999744 + -0.000115252906965490 5.81001942388163 1099999.99998466 + -0.000134429931449504 14.2321018129219 1099999.99990793 + -0.000120656715517918 34.8620408987816 1099999.99944756 + -7.93448150842231e-05 85.3962380399051 1099999.99668522 + -0.000219144232397439 209.179794777335 1099999.98011082 + -9.60724542582810e-05 512.374800740061 1099999.88066911 + -2.51126826721696e-05 1254.93890929919 1099999.28414901 + -0.000172847109710285 3073.08630859503 1099995.70732823 + -0.000184923720067021 7521.83792818667 1099974.28240581 + -6.95317293227534e-05 18389.5298752045 1099846.27343596 + 2.85895910061560e-05 44828.5179645550 1099086.16767618 + 7.45950823784103e-05 108456.750862491 1094640.18434934 + 8.50751980493032e-05 256943.719887713 1069569.97190940 + -0.000102682495502903 570452.767907618 940523.067014593 + -0.000322278266900253 -570452.767975874 940523.066973194 + -0.000244501589237853 -256943.720116263 1069569.97185449 + -3.78523650975232e-05 -108456.750941222 1094640.18434154 + -4.45651505079225e-05 -44828.5179218367 1099086.16767792 + -0.000120536289725788 -18389.5296773969 1099846.27343927 + -0.000231560333852022 -7521.83794400275 1099974.28240570 + -0.000283660895875360 -3073.08650059260 1099995.70732770 + -0.000234952156270676 -1254.93875110628 1099999.28414919 + -0.000238313156206994 -512.374838416436 1099999.88066910 + -0.000302313364593162 -209.179713121415 1099999.98011084 + -0.000313717121078912 -85.3961229518871 1099999.99668523 + -0.000209455384917808 -34.8620082643819 1099999.99944756 + -0.000390002572205391 -14.2320736107275 1099999.99990793 + -0.000479365133318744 -5.81011151292558 1099999.99998466 + -0.000390496382129114 -2.37179791312341 1099999.99999744 + -0.000193648902636129 -0.968145393398514 1099999.99999957 + -8.80809013001188e-05 -0.395041471530015 1099999.99999993 + -0.000214613738585863 -0.161211496104779 1099999.99999999 + -0.000292919786227880 -0.0656027800843267 1100000.00000000 + -9.96221816403419e-06 -0.0262653820599142 1100000.00000000 + 0.000539753282321234 -0.00999786528180443 1100000.00000000 + 0.00125175899008225 -0.00267726147589020 1100000.00000000 + 0.00266646015579185 0.00158500367487380 1100000.00000000 + 0.00596852438630032 0.00593767084896314 1100000.00000000 + 0.0124047654216919 0.0124047654216991 1100000.00000000 + 0.0248427473331121 0.0234489420478449 1100000.00000000 + 0.0487912911225772 0.0427944232624486 1100000.00000000 + 0.0929239129796012 0.0753921093631257 1099999.99999999 + 0.172541633505130 0.128854953810876 1099999.99999998 + 0.311242933286731 0.212161304025532 1099999.99999994 + 0.544802120729868 0.336024355829207 1099999.99999981 + 0.921030811737357 0.508606405369576 1099999.99999950 + 1.49882328939092 0.730555621250651 1099999.99999874 + 2.33569070280257 0.987180808502572 1099999.99999708 + 3.46951288488427 1.24104649415635 1099999.99999383 + 4.88481073736387 1.42975413328676 1099999.99998822 + 6.48287830640938 1.47558193696045 1099999.99997991 + 8.06483529365467 1.31093931212882 1099999.99996965 + 9.35868667028145 0.912449445627805 1099999.99995981 + 10.0918437734642 0.327955753951152 1099999.99995366 + 10.0918437734642 -0.327955753951143 1099999.99995366 + 9.35868667028147 -0.912449445627755 1099999.99995981 + 8.06483529365460 -1.31093931212887 1099999.99996965 + 6.48287830640951 -1.47558193696037 1099999.99997991 + 4.88481073736369 -1.42975413328683 1099999.99998822 + 3.46951288488448 -1.24104649415625 1099999.99999383 + 2.33569070280235 -0.987180808502578 1099999.99999708 + 1.49882328939105 -0.730555621250589 1099999.99999874 + 0.921030811737408 -0.508606405369712 1099999.99999950 + 0.544802120729832 -0.336024355829213 1099999.99999981 + 0.311242933286651 -0.212161304025475 1099999.99999994 + 0.172541633505061 -0.128854953810855 1099999.99999998 + 0.0929239129796753 -0.0753921093631211 1099999.99999999 + 0.0487912911226005 -0.0427944232624870 1100000.00000000 + 0.0248427473330987 -0.0234489420478603 1100000.00000000 + 0.0124047654217003 -0.0124047654216894 1100000.00000000 + 0.00596852438629725 -0.00593767084895423 1100000.00000000 + 0.00266646015578498 -0.00158500367487304 1100000.00000000 + 0.00125175899008047 0.00267726147589108 1100000.00000000 + 0.000539753282326464 0.00999786528179687 1100000.00000000 + -9.96221815955490e-06 0.0262653820599149 1100000.00000000 + -0.000292919786230999 0.0656027800843310 1100000.00000000 + -0.000214613738584586 0.161211496104782 1099999.99999999 + -8.80809013072466e-05 0.395041471530021 1099999.99999993 + -0.000193648902639942 0.968145393398505 1099999.99999957 + -0.000390496382112577 2.37179791312336 1099999.99999744 + -0.000479365133388231 5.81011151292567 1099999.99998466 + -0.000390002572211660 14.2320736107274 1099999.99990793 + -0.000209455384694334 34.8620082643816 1099999.99944756 + -0.000313717121022906 85.3961229518871 1099999.99668523 + -0.000302313364524854 209.179713121416 1099999.98011084 + -0.000238313156079285 512.374838416434 1099999.88066910 + -0.000234952156657328 1254.93875110628 1099999.28414919 + -0.000283660895941429 3073.08650059260 1099995.70732770 + -0.000231560338600132 7521.83794400274 1099974.28240570 + -0.000120536296967364 18389.5296773969 1099846.27343927 + -4.45651574507459e-05 44828.5179218367 1099086.16767792 + -3.78523323508091e-05 108456.750941222 1094640.18434154 + -0.000244501413375645 256943.720116263 1069569.97185449 + -0.000322278187494860 570452.767975874 940523.066973194 + -0.00100620734736633 -570452.768365276 940523.066737011 + -0.000439493682793811 -256943.720497019 1069569.97176302 + -0.000203149531368987 -108456.751258488 1094640.18431010 + -0.000129313575556263 -44828.5179379603 1099086.16767726 + -0.000210608469327750 -18389.5296977589 1099846.27343893 + -0.000417341705627442 -7521.83782178503 1099974.28240654 + -0.000596683597555932 -3073.08623827543 1099995.70732843 + -0.000543651611536408 -1254.93890239436 1099999.28414902 + -0.000534186622787712 -512.374840168636 1099999.88066909 + -0.000758085607507655 -209.179647604847 1099999.98011085 + -0.000771279716454689 -85.3960598183459 1099999.99668523 + -0.000720029752542764 -34.8619568419178 1099999.99944757 + -0.000646901883851309 -14.2319941912949 1099999.99990793 + -0.000792763814848639 -5.81009973933178 1099999.99998466 + -0.000981568732516518 -2.37178792120735 1099999.99999744 + -0.000852537850859036 -0.968163185899027 1099999.99999957 + -0.000615189447398012 -0.395217055652465 1099999.99999993 + -0.000646454386852915 -0.161200258755737 1099999.99999999 + -0.000762135572314294 -0.0657521851752478 1100000.00000000 + -0.000591891912559689 -0.0265420511635570 1100000.00000000 + -0.000343528795710317 -0.0103394968425272 1100000.00000000 + 0.000165646028202798 -0.00347636536722260 1100000.00000000 + 0.000998643807795651 -1.89381302485450e-05 1100000.00000000 + 0.00251927864160171 0.00251927864159959 1100000.00000000 + 0.00593767084896129 0.00596852438630498 1100000.00000000 + 0.0121524107815601 0.0113728824224081 1100000.00000000 + 0.0240208091248645 0.0203052310543763 1100000.00000000 + 0.0453640760104052 0.0350914701930325 1100000.00000000 + 0.0828909896014642 0.0585266288367101 1100000.00000000 + 0.146668071191112 0.0944528098583717 1099999.99999999 + 0.251062579974131 0.146013047088916 1099999.99999996 + 0.415073684513818 0.215886894423037 1099999.99999990 + 0.660170892183164 0.302997294173782 1099999.99999976 + 1.00646387200689 0.400366199222642 1099999.99999947 + 1.46346203875321 0.492654883359158 1099999.99999892 + 2.02096645676907 0.556688263018089 1099999.99999800 + 2.63658743503207 0.564781116428126 1099999.99999669 + 3.23526726762751 0.494951293538190 1099999.99999513 + 3.71769087302017 0.341217508755036 1099999.99999366 + 3.98876242675910 0.121987361341038 1099999.99999276 + 3.98876242675928 -0.121987361341035 1099999.99999276 + 3.71769087301998 -0.341217508755068 1099999.99999366 + 3.23526726762770 -0.494951293538156 1099999.99999513 + 2.63658743503187 -0.564781116428174 1099999.99999669 + 2.02096645676921 -0.556688263018043 1099999.99999800 + 1.46346203875307 -0.492654883359179 1099999.99999892 + 1.00646387200693 -0.400366199222623 1099999.99999947 + 0.660170892183195 -0.302997294173834 1099999.99999976 + 0.415073684513768 -0.215886894423051 1099999.99999990 + 0.251062579974101 -0.146013047088866 1099999.99999996 + 0.146668071191070 -0.0944528098583723 1099999.99999999 + 0.0828909896015323 -0.0585266288367208 1100000.00000000 + 0.0453640760104179 -0.0350914701930567 1100000.00000000 + 0.0240208091248517 -0.0203052310543847 1100000.00000000 + 0.0121524107815701 -0.0113728824223982 1100000.00000000 + 0.00593767084895290 -0.00596852438629675 1100000.00000000 + 0.00251927864159555 -0.00251927864160132 1100000.00000000 + 0.000998643807801010 1.89381302503630e-05 1100000.00000000 + 0.000165646028206071 0.00347636536721558 1100000.00000000 + -0.000343528795711049 0.0103394968425248 1100000.00000000 + -0.000591891912558816 0.0265420511635618 1100000.00000000 + -0.000762135572310236 0.0657521851752506 1100000.00000000 + -0.000646454386864056 0.161200258755743 1099999.99999999 + -0.000615189447392180 0.395217055652465 1099999.99999993 + -0.000852537850846327 0.968163185899007 1099999.99999957 + -0.000981568732569039 2.37178792120740 1099999.99999744 + -0.000792763814804088 5.81009973933173 1099999.99998466 + -0.000646901883727860 14.2319941912946 1099999.99990793 + -0.000720029752732328 34.8619568419178 1099999.99944757 + -0.000771279716433932 85.3960598183464 1099999.99668523 + -0.000758085607069221 209.179647604847 1099999.98011085 + -0.000534186623227036 512.374840168639 1099999.88066909 + -0.000543651612814661 1254.93890239436 1099999.28414902 + -0.000596683595477195 3073.08623827543 1099995.70732843 + -0.000417341704242187 7521.83782178504 1099974.28240654 + -0.000210608462150801 18389.5296977589 1099846.27343893 + -0.000129313582594023 44828.5179379603 1099086.16767726 + -0.000203149510229651 108456.751258488 1094640.18431010 + -0.000439493752792554 256943.720497019 1069569.97176302 + -0.00100620735718165 570452.768365276 940523.066737011 + -0.00191914936005865 -570452.769385412 940523.066118271 + -0.00108652461761341 -256943.721491919 1069569.97152402 + -0.000409843599467930 -108456.751868812 1094640.18424963 + -0.000321961384584695 -44828.5181770385 1099086.16766751 + -0.000499391107832602 -18389.5294366849 1099846.27344329 + -0.000750392060238534 -7521.83759116736 1099974.28240812 + -0.00119437171757464 -3073.08629608077 1099995.70732827 + -0.00141553000782880 -1254.93868736676 1099999.28414926 + -0.00140611300607151 -512.374689132977 1099999.88066917 + -0.00154613481566771 -209.179536701425 1099999.98011087 + -0.00178136275146757 -85.3959464521016 1099999.99668524 + -0.00185601895500977 -34.8617715387664 1099999.99944757 + -0.00188523543722450 -14.2319851255422 1099999.99990793 + -0.00183182462650684 -5.81021572334962 1099999.99998466 + -0.00188271894747761 -2.37193699636978 1099999.99999744 + -0.00200162977310010 -0.968113450374567 1099999.99999957 + -0.00179892812481290 -0.395092252012629 1099999.99999993 + -0.00166603937705344 -0.161286581286720 1099999.99999999 + -0.00188354867785081 -0.0657857900573386 1100000.00000000 + -0.00177999423562030 -0.0267784151990695 1100000.00000000 + -0.00158255712984154 -0.0106035049157051 1100000.00000000 + -0.00132411045203055 -0.00386893479922406 1100000.00000000 + -0.000847135914766458 -0.000847135914769389 1100000.00000000 + -1.89381302548944e-05 0.000998643807797115 1100000.00000000 + 0.00158500367487453 0.00266646015578819 1100000.00000000 + 0.00469204495468926 0.00533700168858690 1100000.00000000 + 0.0103658891598658 0.00949809123331791 1100000.00000000 + 0.0205105408715459 0.0161066405457779 1100000.00000000 + 0.0379130454840346 0.0263006658640284 1100000.00000000 + 0.0668520031342239 0.0414252557960309 1100000.00000000 + 0.113015031217708 0.0629248278190354 1099999.99999999 + 0.183822356101467 0.0909725644997346 1099999.99999998 + 0.286947074712239 0.125005329845502 1099999.99999996 + 0.429341710259762 0.161842037823027 1099999.99999990 + 0.612928287321360 0.195293432822679 1099999.99999981 + 0.832096708520175 0.216809189072330 1099999.99999966 + 1.06955966373820 0.216686523120228 1099999.99999946 + 1.29667208930909 0.187513815807179 1099999.99999922 + 1.47752424475238 0.128227291407414 1099999.99999900 + 1.57827751785781 0.0456034502092545 1099999.99999887 + 1.57827751785770 -0.0456034502092716 1099999.99999887 + 1.47752424475248 -0.128227291407419 1099999.99999900 + 1.29667208930900 -0.187513815807197 1099999.99999922 + 1.06955966373824 -0.216686523120227 1099999.99999946 + 0.832096708520142 -0.216809189072335 1099999.99999966 + 0.612928287321344 -0.195293432822690 1099999.99999981 + 0.429341710259806 -0.161842037823034 1099999.99999990 + 0.286947074712195 -0.125005329845521 1099999.99999996 + 0.183822356101481 -0.0909725644997064 1099999.99999998 + 0.113015031217682 -0.0629248278190418 1099999.99999999 + 0.0668520031342719 -0.0414252557960458 1100000.00000000 + 0.0379130454840418 -0.0263006658640378 1100000.00000000 + 0.0205105408715288 -0.0161066405457786 1100000.00000000 + 0.0103658891598784 -0.00949809123331386 1100000.00000000 + 0.00469204495468002 -0.00533700168858032 1100000.00000000 + 0.00158500367486879 -0.00266646015579122 1100000.00000000 + -1.89381302435756e-05 -0.000998643807796370 1100000.00000000 + -0.000847135914767746 0.000847135914766289 1100000.00000000 + -0.00132411045203107 0.00386893479922462 1100000.00000000 + -0.00158255712984271 0.0106035049157041 1100000.00000000 + -0.00177999423561812 0.0267784151990673 1100000.00000000 + -0.00188354867785349 0.0657857900573529 1100000.00000000 + -0.00166603937704978 0.161286581286717 1099999.99999999 + -0.00179892812482458 0.395092252012612 1099999.99999993 + -0.00200162977309496 0.968113450374614 1099999.99999957 + -0.00188271894741309 2.37193699636971 1099999.99999744 + -0.00183182462653759 5.81021572334948 1099999.99998466 + -0.00188523543737657 14.2319851255424 1099999.99990793 + -0.00185601895488560 34.8617715387662 1099999.99944757 + -0.00178136275112478 85.3959464521010 1099999.99668524 + -0.00154613481627666 209.179536701428 1099999.98011087 + -0.00140611300684944 512.374689132975 1099999.88066917 + -0.00141553000521960 1254.93868736676 1099999.28414926 + -0.00119437171591728 3073.08629608077 1099995.70732827 + -0.000750392055046088 7521.83759116734 1099974.28240812 + -0.000499391111890283 18389.5294366849 1099846.27344329 + -0.000321961394890727 44828.5181770385 1099086.16766751 + -0.000409843604674475 108456.751868812 1094640.18424963 + -0.00108652471539519 256943.721491919 1069569.97152402 + -0.00191914948098217 570452.769385412 940523.066118271 + -0.00370568910866763 -570452.772274352 940523.064366051 + -0.00167522058402431 -256943.723797008 1069569.97097026 + -0.000657961668588572 -108456.753057704 1094640.18413184 + -0.000536512896311212 -44828.5183157066 1099086.16766185 + -0.00106444305869061 -18389.5292727728 1099846.27344603 + -0.00190563025892251 -7521.83713691644 1099974.28241122 + -0.00269898399577207 -3073.08553123422 1099995.70733041 + -0.00333895264280615 -1254.93837658933 1099999.28414962 + -0.00368352600291491 -512.374585560717 1099999.88066921 + -0.00389573473030002 -209.179370149596 1099999.98011090 + -0.00415783321800382 -85.3957131703514 1099999.99668526 + -0.00428477802829732 -34.8616846286499 1099999.99944757 + -0.00438947778335639 -14.2316205191117 1099999.99990794 + -0.00457812601746418 -5.81000992738315 1099999.99998466 + -0.00458201200892438 -2.37213839199561 1099999.99999744 + -0.00463938768327479 -0.968389730320305 1099999.99999957 + -0.00452303512598728 -0.395165625004255 1099999.99999993 + -0.00432039560359957 -0.161144921699595 1099999.99999999 + -0.00439998121885270 -0.0657677205433499 1100000.00000000 + -0.00453032251003839 -0.0268188945244563 1100000.00000000 + -0.00436070481231288 -0.0108741091198911 1100000.00000000 + -0.00416682365638134 -0.00416682365638466 1100000.00000000 + -0.00386893479922451 -0.00132411045203005 1100000.00000000 + -0.00347636536721789 0.000165646028205235 1100000.00000000 + -0.00267726147589638 0.00125175899007878 1100000.00000000 + -0.00120847945792359 0.00240925105526908 1100000.00000000 + 0.00146994623087782 0.00435661725922874 1100000.00000000 + 0.00622152078216218 0.00729316639374390 1100000.00000000 + 0.0141093513040254 0.0117196219514394 1100000.00000000 + 0.0271363420367440 0.0180387770811986 1100000.00000000 + 0.0472692491525722 0.0268127597113474 1100000.00000000 + 0.0775717008453687 0.0381326983819290 1100000.00000000 + 0.120718722974764 0.0513632590637241 1099999.99999999 + 0.178886579999587 0.0652368545863782 1099999.99999998 + 0.252545945341607 0.0774090306907735 1099999.99999997 + 0.338546784162385 0.0844033508620274 1099999.99999994 + 0.430337686208101 0.0833301060469799 1099999.99999991 + 0.516657509679639 0.0711864937586561 1099999.99999988 + 0.584784101672508 0.0484019254013993 1099999.99999984 + 0.622405199001564 0.0170734009623028 1099999.99999982 + 0.622405199001562 -0.0170734009623074 1099999.99999982 + 0.584784101672515 -0.0484019254014004 1099999.99999984 + 0.516657509679621 -0.0711864937586648 1099999.99999988 + 0.430337686208132 -0.0833301060469737 1099999.99999991 + 0.338546784162350 -0.0844033508620412 1099999.99999994 + 0.252545945341655 -0.0774090306907671 1099999.99999997 + 0.178886579999554 -0.0652368545863916 1099999.99999998 + 0.120718722974789 -0.0513632590637138 1099999.99999999 + 0.0775717008453558 -0.0381326983819320 1100000.00000000 + 0.0472692491525963 -0.0268127597113577 1100000.00000000 + 0.0271363420367523 -0.0180387770812019 1100000.00000000 + 0.0141093513040087 -0.0117196219514342 1100000.00000000 + 0.00622152078217586 -0.00729316639374586 1100000.00000000 + 0.00146994623087217 -0.00435661725922410 1100000.00000000 + -0.00120847945792914 -0.00240925105527132 1100000.00000000 + -0.00267726147588776 -0.00125175899007950 1100000.00000000 + -0.00347636536722042 -0.000165646028203745 1100000.00000000 + -0.00386893479922517 0.00132411045203062 1100000.00000000 + -0.00416682365638496 0.00416682365638230 1100000.00000000 + -0.00436070481230948 0.0108741091198897 1100000.00000000 + -0.00453032251004104 0.0268188945244611 1100000.00000000 + -0.00439998121885225 0.0657677205433498 1100000.00000000 + -0.00432039560360337 0.161144921699608 1099999.99999999 + -0.00452303512598228 0.395165625004249 1099999.99999993 + -0.00463938768327184 0.968389730320215 1099999.99999957 + -0.00458201200891169 2.37213839199567 1099999.99999744 + -0.00457812601746531 5.81000992738334 1099999.99998466 + -0.00438947778335204 14.2316205191113 1099999.99990794 + -0.00428477802812571 34.8616846286494 1099999.99944757 + -0.00415783321866871 85.3957131703527 1099999.99668526 + -0.00389573473032041 209.179370149596 1099999.98011090 + -0.00368352599937725 512.374585560719 1099999.88066921 + -0.00333895264637873 1254.93837658933 1099999.28414962 + -0.00269898399544094 3073.08553123421 1099995.70733041 + -0.00190563025710726 7521.83713691646 1099974.28241122 + -0.00106444307819935 18389.5292727728 1099846.27344603 + -0.000536512890443987 44828.5183157066 1099086.16766185 + -0.000657961713530759 108456.753057704 1094640.18413184 + -0.00167522059221629 256943.723797009 1069569.97097026 + -0.00370568908899126 570452.772274352 940523.064366050 + -0.00584353848373737 -570452.779709082 940523.059856685 + -0.00196141562724551 -256943.729188222 1069569.96967513 + -0.000205391564787446 -108456.755351041 1094640.18390461 + -0.000832909152724614 -44828.5185413288 1099086.16765265 + -0.00264587834799652 -18389.5281418026 1099846.27346494 + -0.00460354709708553 -7521.83562478699 1099974.28242156 + -0.00658313040425051 -3073.08443040946 1099995.70733348 + -0.00818327419698648 -1254.93731063001 1099999.28415083 + -0.00909212255359285 -512.373756896710 1099999.88066960 + -0.00976499570446613 -209.178900960747 1099999.98011099 + -0.0102925879692442 -85.3954722825395 1099999.99668528 + -0.0105950328728631 -34.8614472829063 1099999.99944758 + -0.0107312274261476 -14.2316463206306 1099999.99990794 + -0.0107286593233476 -5.80974838515758 1099999.99998466 + -0.0109783507254763 -2.37185658749997 1099999.99999744 + -0.0111325995561160 -0.968483634633385 1099999.99999957 + -0.0111183470364219 -0.395358102809217 1099999.99999993 + -0.0108517230124613 -0.161258123864623 1099999.99999999 + -0.0107743250344901 -0.0656881120143705 1100000.00000000 + -0.0109534485180721 -0.0268089453768298 1100000.00000000 + -0.0109335187956217 -0.0109335187956281 1100000.00000000 + -0.0108741091198947 -0.00436070481230793 1100000.00000000 + -0.0106035049157038 -0.00158255712984016 1100000.00000000 + -0.0103394968425235 -0.000343528795710882 1100000.00000000 + -0.00999786528179956 0.000539753282324809 1100000.00000000 + -0.00930502552670846 0.00120859837769248 1100000.00000000 + -0.00810849172047848 0.00195457293671786 1100000.00000000 + -0.00594829057117617 0.00324034445914343 1100000.00000000 + -0.00241481668489335 0.00514909396166100 1100000.00000000 + 0.00331909422394791 0.00775177097976125 1100000.00000000 + 0.0121576943745510 0.0113448872316901 1100000.00000000 + 0.0249499810017673 0.0158324730969922 1100000.00000000 + 0.0429679210084577 0.0210824881329026 1100000.00000000 + 0.0666324192484310 0.0262662019264575 1100000.00000000 + 0.0960754292438705 0.0307491510616089 1100000.00000000 + 0.129890871311977 0.0329954820552503 1099999.99999999 + 0.165346268034415 0.0321121170527253 1099999.99999999 + 0.198349241074969 0.0272048290580645 1099999.99999998 + 0.224046980456027 0.0182818838556605 1099999.99999998 + 0.238204716796000 0.00649352844016078 1099999.99999997 + 0.238204716796033 -0.00649352844015786 1099999.99999997 + 0.224046980455997 -0.0182818838556613 1099999.99999998 + 0.198349241075005 -0.0272048290580585 1099999.99999998 + 0.165346268034385 -0.0321121170527314 1099999.99999999 + 0.129890871312010 -0.0329954820552451 1099999.99999999 + 0.0960754292438501 -0.0307491510616148 1100000.00000000 + 0.0666324192484472 -0.0262662019264554 1100000.00000000 + 0.0429679210084507 -0.0210824881329047 1100000.00000000 + 0.0249499810017740 -0.0158324730969958 1100000.00000000 + 0.0121576943745599 -0.0113448872316925 1100000.00000000 + 0.00331909422393751 -0.00775177097975388 1100000.00000000 + -0.00241481668488458 -0.00514909396166558 1100000.00000000 + -0.00594829057117364 -0.00324034445914101 1100000.00000000 + -0.00810849172048660 -0.00195457293671726 1100000.00000000 + -0.00930502552670247 -0.00120859837769211 1100000.00000000 + -0.00999786528180145 -0.000539753282322307 1100000.00000000 + -0.0103394968425312 0.000343528795708230 1100000.00000000 + -0.0106035049157022 0.00158255712984003 1100000.00000000 + -0.0108741091198929 0.00436070481231176 1100000.00000000 + -0.0109335187956208 0.0109335187956222 1100000.00000000 + -0.0109534485180757 0.0268089453768236 1100000.00000000 + -0.0107743250344938 0.0656881120143931 1100000.00000000 + -0.0108517230124513 0.161258123864622 1099999.99999999 + -0.0111183470364173 0.395358102809188 1099999.99999993 + -0.0111325995561351 0.968483634633407 1099999.99999957 + -0.0109783507254945 2.37185658749991 1099999.99999744 + -0.0107286593232892 5.80974838515744 1099999.99998466 + -0.0107312274260064 14.2316463206307 1099999.99990794 + -0.0105950328732056 34.8614472829068 1099999.99944758 + -0.0102925879690275 85.3954722825388 1099999.99668528 + -0.00976499570330160 209.178900960746 1099999.98011099 + -0.00909212255584867 512.373756896710 1099999.88066960 + -0.00818327419630614 1254.93731063001 1099999.28415083 + -0.00658313040927759 3073.08443040946 1099995.70733348 + -0.00460354710104073 7521.83562478698 1099974.28242156 + -0.00264587833565742 18389.5281418026 1099846.27346494 + -0.000832909168942400 44828.5185413288 1099086.16765265 + -0.000205391601095268 108456.755351041 1094640.18390461 + -0.00196141568272491 256943.729188222 1069569.96967513 + -0.00584353845003947 570452.779709082 940523.059856685 + -0.00544724769700811 -570452.797912932 940523.048815556 + 0.00119361041926446 -256943.741048133 1069569.96682601 + 0.00253776429855783 -108456.759136768 1094640.18352952 + -0.000753973379925260 -44828.5171470094 1099086.16770952 + -0.00631086694042004 -18389.5247623496 1099846.27352145 + -0.0119648702583984 -7521.83191686262 1099974.28244692 + -0.0165891457209417 -3073.08094620383 1099995.70734321 + -0.0202391909579670 -1254.93485348147 1099999.28415364 + -0.0227738060503960 -512.372178697859 1099999.88067033 + -0.0241963535937507 -209.177787864342 1099999.98011121 + -0.0252048276685894 -85.3946166376437 1099999.99668534 + -0.0259842575432408 -34.8609979489004 1099999.99944760 + -0.0263958338400133 -14.2312948943166 1099999.99990794 + -0.0266118101722484 -5.80969534709897 1099999.99998466 + -0.0265918327279476 -2.37175795167701 1099999.99999744 + -0.0268309419164273 -0.968343670447921 1099999.99999957 + -0.0270906644875241 -0.395447510514141 1099999.99999993 + -0.0269032695782697 -0.161362963993297 1099999.99999999 + -0.0266881404731083 -0.0657080491415326 1100000.00000000 + -0.0267081833543301 -0.0267081833543250 1100000.00000000 + -0.0268089453768259 -0.0109534485180709 1100000.00000000 + -0.0268188945244579 -0.00453032251004528 1100000.00000000 + -0.0267784151990665 -0.00177999423561845 1100000.00000000 + -0.0265420511635578 -0.000591891912558434 1100000.00000000 + -0.0262653820599121 -9.96221815906188e-06 1100000.00000000 + -0.0259772189442313 0.000613161193188740 1100000.00000000 + -0.0253882587908259 0.00104805631524276 1100000.00000000 + -0.0244276049261853 0.00148394389144460 1100000.00000000 + -0.0228920965817935 0.00231182838431805 1100000.00000000 + -0.0204886715185417 0.00333239437313727 1100000.00000000 + -0.0167041427817136 0.00476093017264363 1100000.00000000 + -0.0112859428819535 0.00650541275723580 1100000.00000000 + -0.00386507242496330 0.00854222007824939 1100000.00000000 + 0.00580397223900483 0.0105348707942620 1100000.00000000 + 0.0175160712613605 0.0121238835484228 1100000.00000000 + 0.0308247649979472 0.0129413889870123 1100000.00000000 + 0.0445385268679826 0.0123661416600160 1100000.00000000 + 0.0571823863533053 0.0104516453248966 1100000.00000000 + 0.0669313113912376 0.00691894361215191 1100000.00000000 + 0.0722736931260623 0.00248968832404588 1100000.00000000 + 0.0722736931260471 -0.00248968832404523 1100000.00000000 + 0.0669313113912501 -0.00691894361215022 1100000.00000000 + 0.0571823863532975 -0.0104516453248949 1100000.00000000 + 0.0445385268679897 -0.0123661416600143 1100000.00000000 + 0.0308247649979433 -0.0129413889870147 1100000.00000000 + 0.0175160712613648 -0.0121238835484227 1100000.00000000 + 0.00580397223900417 -0.0105348707942642 1100000.00000000 + -0.00386507242496250 -0.00854222007824865 1100000.00000000 + -0.0112859428819530 -0.00650541275724023 1100000.00000000 + -0.0167041427817201 -0.00476093017263696 1100000.00000000 + -0.0204886715185427 -0.00333239437313980 1100000.00000000 + -0.0228920965817857 -0.00231182838431873 1100000.00000000 + -0.0244276049261994 -0.00148394389144091 1100000.00000000 + -0.0253882587908187 -0.00104805631524248 1100000.00000000 + -0.0259772189442355 -0.000613161193188002 1100000.00000000 + -0.0262653820599181 9.96221815944000e-06 1100000.00000000 + -0.0265420511635548 0.000591891912558148 1100000.00000000 + -0.0267784151990744 0.00177999423561903 1100000.00000000 + -0.0268188945244520 0.00453032251003646 1100000.00000000 + -0.0268089453768302 0.0109534485180749 1100000.00000000 + -0.0267081833543289 0.0267081833543371 1100000.00000000 + -0.0266881404731052 0.0657080491415157 1100000.00000000 + -0.0269032695782660 0.161362963993308 1099999.99999999 + -0.0270906644875206 0.395447510514167 1099999.99999993 + -0.0268309419164286 0.968343670447851 1099999.99999957 + -0.0265918327279681 2.37175795167699 1099999.99999744 + -0.0266118101722115 5.80969534709900 1099999.99998466 + -0.0263958338400290 14.2312948943166 1099999.99990794 + -0.0259842575430335 34.8609979489000 1099999.99944760 + -0.0252048276684514 85.3946166376436 1099999.99668534 + -0.0241963535939173 209.177787864343 1099999.98011121 + -0.0227738060517612 512.372178697862 1099999.88067033 + -0.0202391909632922 1254.93485348146 1099999.28415364 + -0.0165891457155297 3073.08094620382 1099995.70734321 + -0.0119648702608493 7521.83191686262 1099974.28244692 + -0.00631086693780281 18389.5247623496 1099846.27352145 + -0.000753973388479433 44828.5171470094 1099086.16770952 + 0.00253776425794268 108456.759136769 1094640.18352952 + 0.00119361045510906 256943.741048133 1069569.96682601 + -0.00544724773162270 570452.797912931 940523.048815556 + 0.00968781518322582 -570452.838725872 940523.024061397 + 0.0174101550154840 -256943.764542599 1069569.96118191 + 0.0134874185155167 -108456.762970308 1094640.18314970 + 0.000248528929664563 -44828.5101687879 1099086.16799414 + -0.0159001552645978 -18389.5141975013 1099846.27369809 + -0.0306614335941988 -7521.82149127680 1099974.28251821 + -0.0423442638497301 -3073.07257293243 1099995.70736661 + -0.0507872284851738 -1254.92881726552 1099999.28416052 + -0.0565493276278832 -512.368138182793 1099999.88067222 + -0.0603100769064851 -209.175339630844 1099999.98011167 + -0.0624470584347065 -85.3932168395375 1099999.99668545 + -0.0637668152896223 -34.8599792682647 1099999.99944763 + -0.0646958003351642 -14.2307602622957 1099999.99990795 + -0.0651999180082595 -5.80923638053569 1099999.99998466 + -0.0654753349170708 -2.37154361694875 1099999.99999744 + -0.0655751282056022 -0.968223412255881 1099999.99999957 + -0.0658923618480987 -0.395369013098792 1099999.99999993 + -0.0660661717824386 -0.161534593319159 1099999.99999999 + -0.0658311046089111 -0.0658311046089002 1100000.00000000 + -0.0657080491415287 -0.0266881404731098 1100000.00000000 + -0.0656881120143804 -0.0107743250344958 1100000.00000000 + -0.0657677205433380 -0.00439998121885165 1100000.00000000 + -0.0657857900573458 -0.00188354867785505 1100000.00000000 + -0.0657521851752401 -0.000762135572310810 1100000.00000000 + -0.0656027800843305 -0.000292919786231132 1100000.00000000 + -0.0653499778895740 1.17810032419700e-05 1100000.00000000 + -0.0651458601455746 0.000474054442603526 1100000.00000000 + -0.0646334248088822 0.000640975233702002 1100000.00000000 + -0.0638569249275233 0.00107384276071030 1100000.00000000 + -0.0628504522762849 0.00146672736149906 1100000.00000000 + -0.0612447553634650 0.00209075832693828 1100000.00000000 + -0.0590135033515821 0.00273178266528554 1100000.00000000 + -0.0559459207279249 0.00353568714103742 1100000.00000000 + -0.0520621629011634 0.00422949547428899 1100000.00000000 + -0.0473778723809043 0.00480133795180872 1100000.00000000 + -0.0421780577045319 0.00500527786155163 1100000.00000000 + -0.0368689586636537 0.00477372925769098 1100000.00000000 + -0.0320363792721808 0.00392736841835118 1100000.00000000 + -0.0283377305560092 0.00265082352016271 1100000.00000000 + -0.0263207633762339 0.000889742140163531 1100000.00000000 + -0.0263207633762428 -0.000889742140163261 1100000.00000000 + -0.0283377305559987 -0.00265082352016318 1100000.00000000 + -0.0320363792721937 -0.00392736841835130 1100000.00000000 + -0.0368689586636317 -0.00477372925768951 1100000.00000000 + -0.0421780577045397 -0.00500527786155372 1100000.00000000 + -0.0473778723808916 -0.00480133795180846 1100000.00000000 + -0.0520621629011710 -0.00422949547428709 1100000.00000000 + -0.0559459207279177 -0.00353568714103735 1100000.00000000 + -0.0590135033515906 -0.00273178266528127 1100000.00000000 + -0.0612447553634694 -0.00209075832694131 1100000.00000000 + -0.0628504522762814 -0.00146672736150362 1100000.00000000 + -0.0638569249275366 -0.00107384276070227 1100000.00000000 + -0.0646334248088847 -0.000640975233700984 1100000.00000000 + -0.0651458601455757 -0.000474054442604660 1100000.00000000 + -0.0653499778895841 -1.17810032390681e-05 1100000.00000000 + -0.0656027800843275 0.000292919786228127 1100000.00000000 + -0.0657521851752455 0.000762135572312283 1100000.00000000 + -0.0657857900573486 0.00188354867785131 1100000.00000000 + -0.0657677205433532 0.00439998121885409 1100000.00000000 + -0.0656881120143840 0.0107743250344889 1100000.00000000 + -0.0657080491415343 0.0266881404731020 1100000.00000000 + -0.0658311046089106 0.0658311046089221 1100000.00000000 + -0.0660661717824335 0.161534593319145 1099999.99999999 + -0.0658923618481011 0.395369013098765 1099999.99999993 + -0.0655751282055906 0.968223412255945 1099999.99999957 + -0.0654753349170890 2.37154361694871 1099999.99999744 + -0.0651999180083007 5.80923638053550 1099999.99998466 + -0.0646958003349652 14.2307602622954 1099999.99990795 + -0.0637668152894588 34.8599792682652 1099999.99944763 + -0.0624470584349647 85.3932168395374 1099999.99668545 + -0.0603100769069850 209.175339630844 1099999.98011167 + -0.0565493276301200 512.368138182798 1099999.88067222 + -0.0507872284857179 1254.92881726552 1099999.28416052 + -0.0423442638464936 3073.07257293244 1099995.70736661 + -0.0306614335918743 7521.82149127679 1099974.28251821 + -0.0159001552782380 18389.5141975013 1099846.27369809 + 0.000248528936442094 44828.5101687880 1099086.16799414 + 0.0134874184760974 108456.762970308 1094640.18314970 + 0.0174101550862583 256943.764542599 1069569.96118191 + 0.00968781527551518 570452.838725871 940523.024061397 + 0.0800894918850227 -570452.921791802 940522.973679638 + 0.0751283250099137 -256943.803440492 1069569.95183743 + 0.0472310922343029 -108456.757792309 1094640.18366273 + 0.00341010140063175 -44828.4832533254 1099086.16909194 + -0.0416539093992993 -18389.4828139889 1099846.27422283 + -0.0795878529184552 -7521.79455632050 1099974.28270239 + -0.108004941695117 -3073.05222262519 1099995.70742345 + -0.127817158532675 -1254.91453055176 1099999.28417681 + -0.140969128647681 -512.358794347372 1099999.88067656 + -0.149197093005841 -209.169563626252 1099999.98011276 + -0.154334226172949 -85.3898316483610 1099999.99668571 + -0.157297208151596 -34.8581792072548 1099999.99944767 + -0.158971398569739 -14.2296747848056 1099999.99990795 + -0.160058300392780 -5.80869824475727 1099999.99998465 + -0.160567423044426 -2.37107838057928 1099999.99999743 + -0.160885348579822 -0.967921184966329 1099999.99999956 + -0.161114014775811 -0.395148592924903 1099999.99999992 + -0.161447538865135 -0.161447538865111 1099999.99999998 + -0.161534593319140 -0.0660661717824457 1099999.99999999 + -0.161362963993310 -0.0269032695782682 1099999.99999999 + -0.161258123864608 -0.0108517230124651 1099999.99999999 + -0.161144921699606 -0.00432039560360393 1099999.99999999 + -0.161286581286704 -0.00166603937705284 1099999.99999999 + -0.161200258755750 -0.000646454386855410 1099999.99999999 + -0.161211496104759 -0.000214613738585347 1099999.99999999 + -0.161092955347347 -0.000175053600823800 1099999.99999999 + -0.160901617443880 6.09290391810318e-05 1099999.99999999 + -0.160871553912738 0.000196487847856288 1099999.99999999 + -0.160421589595845 0.000271726975574425 1099999.99999999 + -0.159950732554672 0.000583105156907733 1099999.99999999 + -0.159284093171266 0.000745169574277555 1099999.99999999 + -0.158259198053975 0.00122247595542727 1099999.99999999 + -0.157066081184339 0.00140389951944136 1099999.99999999 + -0.155377563836325 0.00191723607691107 1099999.99999999 + -0.153578614959938 0.00190524118508729 1099999.99999999 + -0.151430850839943 0.00218177835717060 1099999.99999999 + -0.149418368423077 0.00180756610338648 1099999.99999999 + -0.147503282479229 0.00168803442742214 1099999.99999999 + -0.146116933702088 0.000910910135948895 1099999.99999999 + -0.145334338069859 0.000481648378068835 1099999.99999999 + -0.145334338069835 -0.000481648378070302 1099999.99999999 + -0.146116933702106 -0.000910910135947409 1099999.99999999 + -0.147503282479201 -0.00168803442742886 1099999.99999999 + -0.149418368423082 -0.00180756610339138 1099999.99999999 + -0.151430850839912 -0.00218177835716364 1099999.99999999 + -0.153578614959958 -0.00190524118508459 1099999.99999999 + -0.155377563836302 -0.00191723607690634 1099999.99999999 + -0.157066081184364 -0.00140389951943708 1099999.99999999 + -0.158259198053954 -0.00122247595542582 1099999.99999999 + -0.159284093171272 -0.000745169574287037 1099999.99999999 + -0.159950732554666 -0.000583105156899921 1099999.99999999 + -0.160421589595875 -0.000271726975571484 1099999.99999999 + -0.160871553912715 -0.000196487847860621 1099999.99999999 + -0.160901617443909 -6.09290391731002e-05 1099999.99999999 + -0.161092955347328 0.000175053600821261 1099999.99999999 + -0.161211496104770 0.000214613738588353 1099999.99999999 + -0.161200258755749 0.000646454386857718 1099999.99999999 + -0.161286581286715 0.00166603937705450 1099999.99999999 + -0.161144921699616 0.00432039560360068 1099999.99999999 + -0.161258123864636 0.0108517230124623 1099999.99999999 + -0.161362963993310 0.0269032695782686 1099999.99999999 + -0.161534593319172 0.0660661717824147 1099999.99999999 + -0.161447538865140 0.161447538865130 1099999.99999998 + -0.161114014775800 0.395148592924930 1099999.99999992 + -0.160885348579878 0.967921184966279 1099999.99999956 + -0.160567423044419 2.37107838057929 1099999.99999743 + -0.160058300392719 5.80869824475705 1099999.99998465 + -0.158971398569687 14.2296747848055 1099999.99990795 + -0.157297208151596 34.8581792072546 1099999.99944767 + -0.154334226173012 85.3898316483611 1099999.99668571 + -0.149197093006961 209.169563626256 1099999.98011276 + -0.140969128647777 512.358794347373 1099999.88067656 + -0.127817158527906 1254.91453055175 1099999.28417681 + -0.108004941695196 3073.05222262519 1099995.70742345 + -0.0795878529264512 7521.79455632051 1099974.28270239 + -0.0416539094093517 18389.4828139889 1099846.27422283 + 0.00341010138343689 44828.4832533254 1099086.16909194 + 0.0472310922537975 108456.757792309 1094640.18366273 + 0.0751283249921697 256943.803440492 1069569.95183743 + 0.0800894920083538 570452.921791802 940522.973679638 + 0.323033560174843 -570453.068534651 940522.884676017 + 0.251530963610422 -256943.844421398 1069569.94199252 + 0.139292731313076 -108456.706149029 1094640.18877953 + 0.00786448533930746 -44828.3954117150 1099086.17267474 + -0.112690211016548 -18389.3965182490 1099846.27566569 + -0.207846975235428 -7521.72505281549 1099974.28317765 + -0.275914882750733 -3073.00243637996 1099995.70756251 + -0.321764600796094 -1254.88168570015 1099999.28421424 + -0.351222065792906 -512.338188131433 1099999.88068611 + -0.369539971031823 -209.157020660499 1099999.98011509 + -0.380505544118783 -85.3825357817177 1099999.99668622 + -0.386902286413599 -34.8540178371022 1099999.99944775 + -0.390657205839905 -14.2274410317242 1099999.99990792 + -0.392722321693573 -5.80747678350358 1099999.99998460 + -0.393908349289192 -2.37050839249217 1099999.99999738 + -0.394497040750262 -0.967526328607127 1099999.99999950 + -0.394833891080298 -0.394833891080256 1099999.99999986 + -0.395148592924848 -0.161114014775834 1099999.99999992 + -0.395369013098824 -0.0658923618480843 1099999.99999993 + -0.395447510514119 -0.0270906644875319 1099999.99999993 + -0.395358102809238 -0.0111183470364268 1099999.99999993 + -0.395165625004269 -0.00452303512598345 1099999.99999993 + -0.395092252012631 -0.00179892812481619 1099999.99999993 + -0.395217055652484 -0.000615189447400093 1099999.99999993 + -0.395041471530021 -8.80809012913602e-05 1099999.99999993 + -0.395138845869354 3.36579419816506e-05 1099999.99999993 + -0.394911848272121 2.05831024753979e-05 1099999.99999993 + -0.394821303529815 0.000105090380291170 1099999.99999993 + -0.394866681154666 4.63413343727001e-05 1099999.99999993 + -0.394490274175566 0.000105389484771320 1099999.99999993 + -0.394392391246774 0.000137173105606050 1099999.99999993 + -0.393882358961353 0.000302180387338119 1099999.99999993 + -0.393455271845192 0.000451352597421858 1099999.99999993 + -0.392784246892432 0.000620204577932787 1099999.99999993 + -0.392030297138141 0.000778066115705132 1099999.99999993 + -0.391238914697174 0.000776711676569267 1099999.99999993 + -0.390376819469282 0.000811776052772840 1099999.99999993 + -0.389688624085728 0.000584086006814770 1099999.99999993 + -0.389101859116771 0.000473294021295754 1099999.99999993 + -0.388822758482057 9.00322106988559e-05 1099999.99999993 + -0.388822758482082 -9.00322107004046e-05 1099999.99999993 + -0.389101859116745 -0.000473294021303549 1099999.99999993 + -0.389688624085733 -0.000584086006822104 1099999.99999993 + -0.390376819469280 -0.000811776052773066 1099999.99999993 + -0.391238914697205 -0.000776711676558103 1099999.99999993 + -0.392030297138122 -0.000778066115698897 1099999.99999993 + -0.392784246892467 -0.000620204577928208 1099999.99999993 + -0.393455271845174 -0.000451352597422846 1099999.99999993 + -0.393882358961377 -0.000302180387349814 1099999.99999993 + -0.394392391246751 -0.000137173105592354 1099999.99999993 + -0.394490274175629 -0.000105389484759909 1099999.99999993 + -0.394866681154608 -4.63413343911806e-05 1099999.99999993 + -0.394821303529865 -0.000105090380286870 1099999.99999993 + -0.394911848272080 -2.05831024763323e-05 1099999.99999993 + -0.395138845869352 -3.36579419801061e-05 1099999.99999993 + -0.395041471530003 8.80809013010719e-05 1099999.99999993 + -0.395217055652473 0.000615189447407335 1099999.99999993 + -0.395092252012626 0.00179892812481963 1099999.99999993 + -0.395165625004250 0.00452303512599262 1099999.99999993 + -0.395358102809216 0.0111183470364201 1099999.99999993 + -0.395447510514138 0.0270906644875192 1099999.99999993 + -0.395369013098803 0.0658923618481218 1099999.99999993 + -0.395148592924912 0.161114014775784 1099999.99999992 + -0.394833891080300 0.394833891080256 1099999.99999986 + -0.394497040750237 0.967526328607202 1099999.99999950 + -0.393908349289268 2.37050839249204 1099999.99999738 + -0.392722321693651 5.80747678350344 1099999.99998460 + -0.390657205839793 14.2274410317237 1099999.99990792 + -0.386902286413472 34.8540178371029 1099999.99944775 + -0.380505544118954 85.3825357817190 1099999.99668622 + -0.369539971032116 209.157020660498 1099999.98011509 + -0.351222065791774 512.338188131434 1099999.88068611 + -0.321764600794713 1254.88168570015 1099999.28421424 + -0.275914882751372 3073.00243637996 1099995.70756251 + -0.207846975238717 7521.72505281550 1099974.28317765 + -0.112690211021950 18389.3965182490 1099846.27566569 + 0.00786448533476340 44828.3954117151 1099086.17267474 + 0.139292731344091 108456.706149029 1094640.18877953 + 0.251530963666825 256943.844421398 1069569.94199252 + 0.323033560152626 570453.068534651 940522.884676017 + 1.05395432610043 -570453.261672129 940522.767532248 + 0.739444714815015 -256943.799398595 1069569.95280817 + 0.368431315395298 -108456.486920500 1094640.21050057 + -0.00166972113321339 -44828.1325273356 1099086.18339697 + -0.312621098063467 -18389.1663407084 1099846.27951419 + -0.544592808287985 -7521.55283468679 1099974.28435517 + -0.704616306175881 -3072.88515921936 1099995.70788995 + -0.808902370271371 -1254.80645155924 1099999.28429982 + -0.874407757461017 -512.292212022459 1099999.88070723 + -0.914221273257108 -209.130178285146 1099999.98011988 + -0.937812461943248 -85.3672395420298 1099999.99668707 + -0.951374584789009 -34.8456185818569 1099999.99944767 + -0.958973161628439 -14.2229400288326 1099999.99990763 + -0.963278156159670 -5.80509655166466 1099999.99998426 + -0.965606898244580 -2.36915510390476 1099999.99999702 + -0.966888883141851 -0.966888883141795 1099999.99999915 + -0.967526328607102 -0.394497040750321 1099999.99999950 + -0.967921184966318 -0.160885348579829 1099999.99999956 + -0.968223412255886 -0.0655751282055822 1099999.99999957 + -0.968343670447925 -0.0268309419164254 1099999.99999957 + -0.968483634633415 -0.0111325995560910 1099999.99999957 + -0.968389730320288 -0.00463938768329437 1099999.99999957 + -0.968113450374687 -0.00200162977308191 1099999.99999957 + -0.968163185898996 -0.000852537850852456 1099999.99999957 + -0.968145393398616 -0.000193648902657836 1099999.99999957 + -0.968045907606825 2.16014587604889e-05 1099999.99999957 + -0.968192442170368 9.33188508401859e-05 1099999.99999957 + -0.967874964525417 0.000143651580543031 1099999.99999957 + -0.967960656702731 8.49942071887009e-05 1099999.99999957 + -0.967843279865186 0.000112652589719999 1099999.99999957 + -0.967677433927176 3.78999994348982e-05 1099999.99999957 + -0.967653214279388 8.58096919745706e-05 1099999.99999957 + -0.967321977333162 0.000103302939043265 1099999.99999957 + -0.967238713385080 0.000133450817850341 1099999.99999957 + -0.966836135726523 0.000239561441612999 1099999.99999958 + -0.966647464586296 0.000191542115447205 1099999.99999958 + -0.966268698635795 0.000303025627239627 1099999.99999958 + -0.966057337483436 0.000146288235051607 1099999.99999958 + -0.965821296615094 0.000216438837249763 1099999.99999958 + -0.965727672518258 -1.95867547857226e-05 1099999.99999958 + -0.965727672518246 1.95867547832208e-05 1099999.99999958 + -0.965821296615093 -0.000216438837259820 1099999.99999958 + -0.966057337483475 -0.000146288235034987 1099999.99999958 + -0.966268698635860 -0.000303025627217602 1099999.99999958 + -0.966647464586366 -0.000191542115455652 1099999.99999958 + -0.966836135726566 -0.000239561441611310 1099999.99999958 + -0.967238713385113 -0.000133450817854931 1099999.99999957 + -0.967321977333187 -0.000103302939058129 1099999.99999957 + -0.967653214279412 -8.58096919643955e-05 1099999.99999957 + -0.967677433927267 -3.78999994068279e-05 1099999.99999957 + -0.967843279865148 -0.000112652589759258 1099999.99999957 + -0.967960656702751 -8.49942071845951e-05 1099999.99999957 + -0.967874964525407 -0.000143651580536558 1099999.99999957 + -0.968192442170346 -9.33188508736827e-05 1099999.99999957 + -0.968045907606823 -2.16014587474722e-05 1099999.99999957 + -0.968145393398567 0.000193648902641789 1099999.99999957 + -0.968163185898974 0.000852537850865636 1099999.99999957 + -0.968113450374595 0.00200162977310347 1099999.99999957 + -0.968389730320247 0.00463938768327104 1099999.99999957 + -0.968483634633308 0.0111325995561151 1099999.99999957 + -0.968343670447893 0.0268309419164485 1099999.99999957 + -0.968223412255797 0.0655751282055791 1099999.99999957 + -0.967921184966266 0.160885348579863 1099999.99999956 + -0.967526328607105 0.394497040750265 1099999.99999950 + -0.966888883141814 0.966888883141799 1099999.99999915 + -0.965606898244610 2.36915510390490 1099999.99999702 + -0.963278156159690 5.80509655166429 1099999.99998426 + -0.958973161628597 14.2229400288325 1099999.99990763 + -0.951374584789082 34.8456185818566 1099999.99944767 + -0.937812461943292 85.3672395420305 1099999.99668707 + -0.914221273255780 209.130178285149 1099999.98011988 + -0.874407757460482 512.292212022457 1099999.88070723 + -0.808902370273889 1254.80645155923 1099999.28429982 + -0.704616306174323 3072.88515921936 1099995.70788995 + -0.544592808287393 7521.55283468683 1099974.28435517 + -0.312621098063905 18389.1663407084 1099846.27951419 + -0.00166972110293736 44828.1325273356 1099086.18339697 + 0.368431315435344 108456.486920500 1094640.21050057 + 0.739444714828463 256943.799398595 1069569.95280817 + 1.05395432606442 570453.261672129 940522.767532248 + 3.06389144004457 -570453.289974148 940522.750361884 + 1.99259428274522 -256943.328624854 1069570.06590088 + 0.887526174340739 -108455.739279648 1094640.28457595 + -0.100962191432218 -44827.3949016043 1099086.21348206 + -0.876726831780277 -18388.5772014527 1099846.28936399 + -1.42933924628913 -7521.13627868206 1099974.28720268 + -1.79715843077739 -3072.61329680702 1099995.70864813 + -2.03087347421085 -1254.63889224515 1099999.28448937 + -2.17409120346196 -512.193078943016 1099999.88075160 + -2.25952719697605 -209.073321762120 1099999.98012875 + -2.30937120737084 -85.3356732359935 1099999.99668750 + -2.33777778517581 -34.8283612745803 1099999.99944615 + -2.35354013136594 -14.2137440075176 1099999.99990565 + -2.36220105071627 -5.80047436712933 1099999.99998217 + -2.36679755612312 -2.36679755612314 1099999.99999491 + -2.36915510390482 -0.965606898244674 1099999.99999702 + -2.37050839249199 -0.393908349289205 1099999.99999738 + -2.37107838057941 -0.160567423044396 1099999.99999743 + -2.37154361694863 -0.0654753349170809 1099999.99999744 + -2.37175795167703 -0.0265918327279129 1099999.99999744 + -2.37185658749993 -0.0109783507254913 1099999.99999744 + -2.37213839199560 -0.00458201200884412 1099999.99999744 + -2.37193699636978 -0.00188271894747286 1099999.99999744 + -2.37178792120742 -0.000981568732540447 1099999.99999744 + -2.37179791312340 -0.000390496382156630 1099999.99999744 + -2.37165542880380 -6.15662749643140e-05 1099999.99999744 + -2.37171963902898 3.49931949485039e-06 1099999.99999744 + -2.37173271679836 9.76962349545388e-05 1099999.99999744 + -2.37158400528519 5.33369060016318e-05 1099999.99999744 + -2.37168731931400 7.41704834794507e-05 1099999.99999744 + -2.37153302656277 7.14069106991357e-05 1099999.99999744 + -2.37153538241647 4.26863415388883e-05 1099999.99999744 + -2.37144663541322 0.000132099948555721 1099999.99999744 + -2.37132182354872 7.89307882869063e-05 1099999.99999744 + -2.37126795402719 0.000171426863776180 1099999.99999744 + -2.37108226676497 0.000140827243182743 1099999.99999744 + -2.37103083224864 0.000163357122702958 1099999.99999744 + -2.37087009712488 0.000146632132592525 1099999.99999744 + -2.37083090047577 8.05757678728298e-05 1099999.99999744 + -2.37076721113946 5.75253652287019e-05 1099999.99999745 + -2.37076721113940 -5.75253652276945e-05 1099999.99999745 + -2.37083090047588 -8.05757678300350e-05 1099999.99999744 + -2.37087009712489 -0.000146632132544295 1099999.99999744 + -2.37103083224874 -0.000163357122690603 1099999.99999744 + -2.37108226676497 -0.000140827243202237 1099999.99999744 + -2.37126795402730 -0.000171426863792348 1099999.99999744 + -2.37132182354875 -7.89307883074786e-05 1099999.99999744 + -2.37144663541325 -0.000132099948563971 1099999.99999744 + -2.37153538241650 -4.26863414924453e-05 1099999.99999744 + -2.37153302656277 -7.14069107684744e-05 1099999.99999744 + -2.37168731931391 -7.41704834961513e-05 1099999.99999744 + -2.37158400528532 -5.33369059644905e-05 1099999.99999744 + -2.37173271679826 -9.76962349980193e-05 1099999.99999744 + -2.37171963902900 -3.49931948651123e-06 1099999.99999744 + -2.37165542880383 6.15662749188834e-05 1099999.99999744 + -2.37179791312335 0.000390496382157228 1099999.99999744 + -2.37178792120742 0.000981568732491265 1099999.99999744 + -2.37193699636962 0.00188271894746823 1099999.99999744 + -2.37213839199555 0.00458201200886339 1099999.99999744 + -2.37185658749988 0.0109783507254804 1099999.99999744 + -2.37175795167684 0.0265918327279235 1099999.99999744 + -2.37154361694862 0.0654753349170752 1099999.99999744 + -2.37107838057909 0.160567423044437 1099999.99999743 + -2.37050839249193 0.393908349289233 1099999.99999738 + -2.36915510390471 0.965606898244702 1099999.99999702 + -2.36679755612301 2.36679755612310 1099999.99999491 + -2.36220105071639 5.80047436712941 1099999.99998217 + -2.35354013136606 14.2137440075171 1099999.99990565 + -2.33777778517591 34.8283612745808 1099999.99944615 + -2.30937120737079 85.3356732359937 1099999.99668750 + -2.25952719697634 209.073321762118 1099999.98012875 + -2.17409120345960 512.193078943019 1099999.88075160 + -2.03087347420940 1254.63889224514 1099999.28448937 + -1.79715843077982 3072.61329680703 1099995.70864813 + -1.42933924628812 7521.13627868206 1099974.28720268 + -0.876726831778750 18388.5772014527 1099846.28936399 + -0.100962191420400 44827.3949016043 1099086.21348206 + 0.887526174367566 108455.739279648 1094640.28457595 + 1.99259428272221 256943.328624854 1069570.06590088 + 3.06389144011085 570453.289974148 940522.750361884 + 8.21517890263679 -570452.253234026 940523.379142025 + 5.00060429566189 -256941.339668686 1069570.54369698 + 1.94305220788066 -108453.470039913 1094640.50940595 + -0.586197366099970 -44825.4277947897 1099086.29371068 + -2.46220095016689 -18387.1187903352 1099846.31374412 + -3.74560421941236 -7520.15693892837 1099974.29389308 + -4.57511194804873 -3071.99907740516 1099995.71035561 + -5.08929982880562 -1254.27247274723 1099999.28489734 + -5.39849936753891 -511.982661665745 1099999.88083845 + -5.57967413250165 -208.955948864416 1099999.98013922 + -5.68342749936231 -85.2717632722982 1099999.99668019 + -5.74185532163144 -34.7943700604055 1099999.99943472 + -5.77385355598595 -14.1958527541373 1099999.99989325 + -5.79117591135845 -5.79117591135855 1099999.99996951 + -5.80047436712950 -2.36220105071627 1099999.99998217 + -5.80509655166435 -0.963278156159682 1099999.99998426 + -5.80747678350362 -0.392722321693554 1099999.99998460 + -5.80869824475714 -0.160058300392769 1099999.99998465 + -5.80923638053567 -0.0651999180083074 1099999.99998466 + -5.80969534709890 -0.0266118101721874 1099999.99998466 + -5.80974838515747 -0.0107286593233397 1099999.99998466 + -5.81000992738325 -0.00457812601743526 1099999.99998466 + -5.81021572334923 -0.00183182462650270 1099999.99998466 + -5.81009973933190 -0.000792763814875826 1099999.99998466 + -5.81011151292533 -0.000479365133335243 1099999.99998466 + -5.81001942388190 -0.000115252907033382 1099999.99998466 + -5.80989733492251 -6.71612693889593e-05 1099999.99998466 + -5.80995863394712 5.11766993939068e-05 1099999.99998466 + -5.80986672873398 5.70238190332875e-05 1099999.99998466 + -5.80985110617647 -2.56780461888125e-05 1099999.99998466 + -5.80988125200404 3.31471249167015e-05 1099999.99998466 + -5.80980133989413 -7.16130754553769e-05 1099999.99998466 + -5.80986044782630 2.03820432033040e-05 1099999.99998466 + -5.80977373419115 -3.65808290753228e-06 1099999.99998466 + -5.80979331428784 5.65122414693212e-05 1099999.99998466 + -5.80972073598882 9.94222624012168e-05 1099999.99998466 + -5.80969770173798 9.60524020422069e-05 1099999.99998466 + -5.80964500108615 0.000135772460213300 1099999.99998466 + -5.80961624994775 5.98488096414339e-05 1099999.99998466 + -5.80959562526236 5.94770920932067e-05 1099999.99998466 + -5.80959562526257 -5.94770920416953e-05 1099999.99998466 + -5.80961624994765 -5.98488095677458e-05 1099999.99998466 + -5.80964500108627 -0.000135772460204951 1099999.99998466 + -5.80969770173783 -9.60524020765514e-05 1099999.99998466 + -5.80972073598881 -9.94222623807932e-05 1099999.99998466 + -5.80979331428777 -5.65122414798051e-05 1099999.99998466 + -5.80977373419109 3.65808286290570e-06 1099999.99998466 + -5.80986044782628 -2.03820431841562e-05 1099999.99998466 + -5.80980133989408 7.16130753564687e-05 1099999.99998466 + -5.80988125200385 -3.31471249425322e-05 1099999.99998466 + -5.80985110617661 2.56780462917616e-05 1099999.99998466 + -5.80986672873392 -5.70238190873070e-05 1099999.99998466 + -5.80995863394706 -5.11766994681957e-05 1099999.99998466 + -5.80989733492264 6.71612694524099e-05 1099999.99998466 + -5.81001942388168 0.000115252906991678 1099999.99998466 + -5.81011151292560 0.000479365133314282 1099999.99998466 + -5.81009973933162 0.000792763814839697 1099999.99998466 + -5.81021572334952 0.00183182462635897 1099999.99998466 + -5.81000992738301 0.00457812601751482 1099999.99998466 + -5.80974838515750 0.0107286593232772 1099999.99998466 + -5.80969534709873 0.0266118101721944 1099999.99998466 + -5.80923638053562 0.0651999180082493 1099999.99998466 + -5.80869824475700 0.160058300392724 1099999.99998465 + -5.80747678350332 0.392722321693666 1099999.99998460 + -5.80509655166426 0.963278156159743 1099999.99998426 + -5.80047436712922 2.36220105071656 1099999.99998217 + -5.79117591135835 5.79117591135836 1099999.99996951 + -5.77385355598614 14.1958527541371 1099999.99989325 + -5.74185532163144 34.7943700604053 1099999.99943472 + -5.68342749936130 85.2717632722992 1099999.99668019 + -5.57967413250148 208.955948864416 1099999.98013922 + -5.39849936753975 511.982661665742 1099999.88083845 + -5.08929982880412 1254.27247274723 1099999.28489734 + -4.57511194805029 3071.99907740516 1099995.71035561 + -3.74560421940134 7520.15693892840 1099974.29389308 + -2.46220095016272 18387.1187903351 1099846.31374412 + -0.586197366091348 44825.4277947897 1099086.29371068 + 1.94305220787334 108453.470039913 1094640.50940595 + 5.00060429569581 256941.339668686 1069570.54369698 + 8.21517890264572 570452.253234026 940523.379142025 + 20.6056915515398 -570447.148291995 940526.475215310 + 11.7369821987627 -256934.674683846 1069572.14474169 + 3.75034838087158 -108447.095638244 1094641.14093778 + -2.46900180395141 -44820.4068029956 1099086.49847404 + -6.87230859107789 -18383.6233389771 1099846.37215645 + -9.78285835066643 -7517.91771627140 1099974.30916249 + -11.6150884671098 -3070.64645079339 1099995.71408050 + -12.7283641787935 -1253.49002743012 1099999.28572738 + -13.3858729044005 -511.545097613500 1099999.88097383 + -13.7650365509866 -208.717832177268 1099999.98011245 + -13.9791432801727 -85.1448592712736 1099999.99661588 + -14.0976028987886 -34.7280920484576 1099999.99936146 + -14.1618228502828 -14.1618228502828 1099999.99981768 + -14.1958527541375 -5.77385355598578 1099999.99989325 + -14.2137440075174 -2.35354013136609 1099999.99990565 + -14.2229400288324 -0.958973161628550 1099999.99990763 + -14.2274410317244 -0.390657205839775 1099999.99990792 + -14.2296747848052 -0.158971398569668 1099999.99990795 + -14.2307602622959 -0.0646958003350680 1099999.99990795 + -14.2312948943166 -0.0263958338401035 1099999.99990794 + -14.2316463206305 -0.0107312274260419 1099999.99990794 + -14.2316205191116 -0.00438947778364562 1099999.99990794 + -14.2319851255422 -0.00188523543721441 1099999.99990793 + -14.2319941912944 -0.000646901883745735 1099999.99990793 + -14.2320736107275 -0.000390002572205313 1099999.99990793 + -14.2321018129215 -0.000134429931332276 1099999.99990793 + -14.2320340348438 -6.36304715244966e-05 1099999.99990793 + -14.2319978586630 5.42916274581588e-06 1099999.99990793 + -14.2319615104193 4.07292448504884e-05 1099999.99990793 + -14.2319135884730 6.93519524182748e-05 1099999.99990793 + -14.2318461153851 -1.19785937277766e-05 1099999.99990793 + -14.2318710923341 4.95912561196348e-05 1099999.99990793 + -14.2317667441394 -7.99819252869356e-05 1099999.99990793 + -14.2318462720123 4.94663913596247e-05 1099999.99990793 + -14.2317363502088 -6.10360237949530e-05 1099999.99990794 + -14.2318144001583 9.55322409107786e-05 1099999.99990793 + -14.2317233329542 1.67588395392425e-05 1099999.99990794 + -14.2317672342100 0.000121121077046241 1099999.99990793 + -14.2317139356500 2.97549669446415e-05 1099999.99990794 + -14.2317258401680 5.91031428000508e-05 1099999.99990794 + -14.2317258401678 -5.91031427080536e-05 1099999.99990794 + -14.2317139356502 -2.97549669757861e-05 1099999.99990794 + -14.2317672342099 -0.000121121077107612 1099999.99990793 + -14.2317233329542 -1.67588395611030e-05 1099999.99990794 + -14.2318144001583 -9.55322408967622e-05 1099999.99990793 + -14.2317363502085 6.10360237474404e-05 1099999.99990794 + -14.2318462720122 -4.94663913249623e-05 1099999.99990793 + -14.2317667441393 7.99819252894517e-05 1099999.99990793 + -14.2318710923342 -4.95912562115169e-05 1099999.99990793 + -14.2318461153852 1.19785938658695e-05 1099999.99990793 + -14.2319135884733 -6.93519523674469e-05 1099999.99990793 + -14.2319615104188 -4.07292451025501e-05 1099999.99990793 + -14.2319978586635 -5.42916260206659e-06 1099999.99990793 + -14.2320340348435 6.36304713966406e-05 1099999.99990793 + -14.2321018129219 0.000134429931395317 1099999.99990793 + -14.2320736107272 0.000390002572166976 1099999.99990793 + -14.2319941912947 0.000646901883728736 1099999.99990793 + -14.2319851255423 0.00188523543728554 1099999.99990793 + -14.2316205191118 0.00438947778330687 1099999.99990794 + -14.2316463206302 0.0107312274261129 1099999.99990794 + -14.2312948943170 0.0263958338400621 1099999.99990794 + -14.2307602622954 0.0646958003351302 1099999.99990795 + -14.2296747848059 0.158971398569543 1099999.99990795 + -14.2274410317242 0.390657205839816 1099999.99990792 + -14.2229400288325 0.958973161628590 1099999.99990763 + -14.2137440075174 2.35354013136612 1099999.99990565 + -14.1958527541368 5.77385355598627 1099999.99989325 + -14.1618228502825 14.1618228502825 1099999.99981768 + -14.0976028987888 34.7280920484569 1099999.99936146 + -13.9791432801728 85.1448592712733 1099999.99661588 + -13.7650365509844 208.717832177269 1099999.98011245 + -13.3858729044010 511.545097613502 1099999.88097383 + -12.7283641787935 1253.49002743012 1099999.28572738 + -11.6150884671064 3070.64645079339 1099995.71408050 + -9.78285835067805 7517.91771627140 1099974.30916249 + -6.87230859106065 18383.6233389771 1099846.37215645 + -2.46900180398751 44820.4068029956 1099086.49847404 + 3.75034838084977 108447.095638244 1094641.14093778 + 11.7369821987812 256934.674683846 1069572.14474169 + 20.6056915515064 570447.148291995 940526.475215310 + 48.5427622714946 -570429.142008348 940537.395105171 + 25.6263539170856 -256914.861769172 1069576.90380141 + 5.78727848994338 -108430.226539643 1094642.81203462 + -8.94282210549860 -44808.0974825735 1099087.00034166 + -18.9788602294350 -18375.5133932775 1099846.50753973 + -25.4243065483782 -7512.93953589722 1099974.34292493 + -29.3946910864932 -3067.74324323106 1099995.72184956 + -31.7647494770653 -1251.86050718073 1099999.28719807 + -33.1436197090496 -510.656968115536 1099999.88096861 + -33.9275244898544 -208.245001218437 1099999.97976497 + -34.3634960400404 -84.8978572144917 1099999.99618705 + -34.6011159682790 -34.6011159682788 1099999.99891160 + -34.7280920484573 -14.0976028987884 1099999.99936146 + -34.7943700604051 -5.74185532163173 1099999.99943472 + -34.8283612745800 -2.33777778517599 1099999.99944615 + -34.8456185818573 -0.951374584788842 1099999.99944767 + -34.8540178371018 -0.386902286413679 1099999.99944775 + -34.8581792072549 -0.157297208151519 1099999.99944767 + -34.8599792682645 -0.0637668152893468 1099999.99944763 + -34.8609979489004 -0.0259842575433949 1099999.99944760 + -34.8614472829064 -0.0105950328730872 1099999.99944758 + -34.8616846286493 -0.00428477802819814 1099999.99944757 + -34.8617715387669 -0.00185601895523003 1099999.99944757 + -34.8619568419171 -0.000720029752452053 1099999.99944757 + -34.8620082643819 -0.000209455384722841 1099999.99944756 + -34.8620408987808 -0.000120656715541749 1099999.99944756 + -34.8621154447647 3.84587232035983e-05 1099999.99944756 + -34.8620277632311 -5.96125036433143e-05 1099999.99944756 + -34.8620863095860 7.72898171244536e-05 1099999.99944756 + -34.8619871202943 -4.66180752725591e-05 1099999.99944756 + -34.8620090378787 7.63248297003903e-05 1099999.99944756 + -34.8619192905731 -5.18552744560961e-05 1099999.99944757 + -34.8619388107478 8.15941080990718e-05 1099999.99944757 + -34.8618512442705 -5.27419581606907e-05 1099999.99944757 + -34.8618837021390 0.000123998474152982 1099999.99944757 + -34.8618018224387 -9.00295710632866e-06 1099999.99944757 + -34.8618304395157 0.000187995549157788 1099999.99944757 + -34.8617675242505 1.77247961881949e-05 1099999.99944757 + -34.8617805177215 0.000173406774719844 1099999.99944757 + -34.8617558962102 -5.70648398225989e-05 1099999.99944757 + -34.8617558962107 5.70648398127426e-05 1099999.99944757 + -34.8617805177213 -0.000173406774813665 1099999.99944757 + -34.8617675242506 -1.77247962250074e-05 1099999.99944757 + -34.8618304395158 -0.000187995548993357 1099999.99944757 + -34.8618018224386 9.00295679918335e-06 1099999.99944757 + -34.8618837021392 -0.000123998474188401 1099999.99944757 + -34.8618512442705 5.27419583300749e-05 1099999.99944757 + -34.8619388107481 -8.15941079328872e-05 1099999.99944757 + -34.8619192905727 5.18552747429386e-05 1099999.99944757 + -34.8620090378796 -7.63248298181016e-05 1099999.99944756 + -34.8619871202936 4.66180747857625e-05 1099999.99944756 + -34.8620863095866 -7.72898168066751e-05 1099999.99944756 + -34.8620277632307 5.96125037260299e-05 1099999.99944756 + -34.8621154447652 -3.84587233752526e-05 1099999.99944756 + -34.8620408987810 0.000120656715572418 1099999.99944756 + -34.8620082643821 0.000209455384725919 1099999.99944756 + -34.8619568419177 0.000720029752529824 1099999.99944757 + -34.8617715387667 0.00185601895520355 1099999.99944757 + -34.8616846286495 0.00428477802802280 1099999.99944757 + -34.8614472829075 0.0105950328730547 1099999.99944758 + -34.8609979489003 0.0259842575433666 1099999.99944760 + -34.8599792682651 0.0637668152894484 1099999.99944763 + -34.8581792072552 0.157297208151755 1099999.99944767 + -34.8540178371031 0.386902286413252 1099999.99944775 + -34.8456185818570 0.951374584788904 1099999.99944767 + -34.8283612745807 2.33777778517568 1099999.99944615 + -34.7943700604054 5.74185532163143 1099999.99943472 + -34.7280920484567 14.0976028987892 1099999.99936146 + -34.6011159682789 34.6011159682788 1099999.99891160 + -34.3634960400409 84.8978572144901 1099999.99618705 + -33.9275244898550 208.245001218437 1099999.97976497 + -33.1436197090484 510.656968115537 1099999.88096861 + -31.7647494770657 1251.86050718073 1099999.28719807 + -29.3946910864927 3067.74324323107 1099995.72184956 + -25.4243065483810 7512.93953589722 1099974.34292493 + -18.9788602294181 18375.5133932775 1099846.50753973 + -8.94282210549002 44808.0974825736 1099087.00034166 + 5.78727848995652 108430.226539643 1094642.81203462 + 25.6263539170449 256914.861769172 1069576.90380141 + 48.5427622714852 570429.142008348 940537.395105171 + 107.002763239264 -570374.377066122 940570.602632700 + 51.1178374457310 -256860.542415963 1069589.94906307 + 4.10119021009956 -108387.805300713 1094647.01326285 + -29.5213944465832 -44779.0664053628 1099088.18315017 + -51.7376885649507 -18357.3071756004 1099846.81051339 + -65.6846653005737 -7502.19913700918 1099974.41456319 + -74.1286461294701 -3061.68166096842 1099995.73663281 + -79.0978230567982 -1248.55148146854 1099999.28857374 + -81.9504518485293 -508.896305511010 1099999.87923121 + -83.5503621762100 -207.327151460813 1099999.97728854 + -84.4275618185993 -84.4275618185985 1099999.99351999 + -84.8978572144906 -34.3634960400409 1099999.99618705 + -85.1448592712722 -13.9791432801733 1099999.99661588 + -85.2717632722982 -5.68342749936201 1099999.99668019 + -85.3356732359933 -2.30937120737057 1099999.99668750 + -85.3672395420308 -0.937812461943226 1099999.99668707 + -85.3825357817169 -0.380505544119002 1099999.99668622 + -85.3898316483615 -0.154334226173143 1099999.99668571 + -85.3932168395363 -0.0624470584347372 1099999.99668545 + -85.3946166376435 -0.0252048276684012 1099999.99668534 + -85.3954722825393 -0.0102925879693903 1099999.99668528 + -85.3957131703519 -0.00415783321758320 1099999.99668526 + -85.3959464521008 -0.00178136275152446 1099999.99668524 + -85.3960598183468 -0.000771279716898520 1099999.99668523 + -85.3961229518861 -0.000313717120841233 1099999.99668523 + -85.3962380399053 -7.93448150713000e-05 1099999.99668522 + -85.3961751234532 2.27712264074954e-05 1099999.99668522 + -85.3962867239470 7.73532340140015e-05 1099999.99668522 + -85.3961363255983 1.93220564296056e-05 1099999.99668523 + -85.3962242667272 5.58524877498766e-05 1099999.99668522 + -85.3960942411695 -4.95797735482100e-05 1099999.99668523 + -85.3961285919282 -3.88794848851408e-06 1099999.99668523 + -85.3960661916751 -7.46950502209773e-05 1099999.99668523 + -85.3960601023797 -7.23564564414146e-06 1099999.99668523 + -85.3960415519354 -2.53215179283327e-05 1099999.99668523 + -85.3960174100092 6.11713586424438e-05 1099999.99668524 + -85.3960093291296 6.12048016378112e-05 1099999.99668524 + -85.3959832382904 0.000112374330685182 1099999.99668524 + -85.3959757850376 6.21674734364103e-05 1099999.99668524 + -85.3959641338575 4.80885788355860e-05 1099999.99668524 + -85.3959641338576 -4.80885788170001e-05 1099999.99668524 + -85.3959757850377 -6.21674736381804e-05 1099999.99668524 + -85.3959832382910 -0.000112374330493971 1099999.99668524 + -85.3960093291288 -6.12048020648158e-05 1099999.99668524 + -85.3960174100089 -6.11713584719158e-05 1099999.99668524 + -85.3960415519357 2.53215179388258e-05 1099999.99668523 + -85.3960601023801 7.23564580606278e-06 1099999.99668523 + -85.3960661916746 7.46950500093238e-05 1099999.99668523 + -85.3961285919285 3.88794893659939e-06 1099999.99668523 + -85.3960942411676 4.95797734776639e-05 1099999.99668523 + -85.3962242667289 -5.58524879224767e-05 1099999.99668522 + -85.3961363255983 -1.93220560132619e-05 1099999.99668523 + -85.3962867239474 -7.73532341868745e-05 1099999.99668522 + -85.3961751234529 -2.27712259405065e-05 1099999.99668522 + -85.3962380399058 7.93448148397833e-05 1099999.99668522 + -85.3961229518866 0.000313717120961723 1099999.99668523 + -85.3960598183465 0.000771279716720361 1099999.99668523 + -85.3959464521007 0.00178136275116355 1099999.99668524 + -85.3957131703531 0.00415783321869931 1099999.99668526 + -85.3954722825394 0.0102925879692451 1099999.99668528 + -85.3946166376436 0.0252048276678146 1099999.99668534 + -85.3932168395383 0.0624470584350642 1099999.99668545 + -85.3898316483605 0.154334226173330 1099999.99668571 + -85.3825357817185 0.380505544118653 1099999.99668622 + -85.3672395420305 0.937812461943083 1099999.99668707 + -85.3356732359939 2.30937120737068 1099999.99668750 + -85.2717632722997 5.68342749936136 1099999.99668019 + -85.1448592712738 13.9791432801729 1099999.99661588 + -84.8978572144903 34.3634960400414 1099999.99618705 + -84.4275618185993 84.4275618185987 1099999.99351999 + -83.5503621762118 207.327151460812 1099999.97728854 + -81.9504518485275 508.896305511012 1099999.87923121 + -79.0978230567960 1248.55148146854 1099999.28857374 + -74.1286461294764 3061.68166096842 1099995.73663281 + -65.6846653005649 7502.19913700917 1099974.41456319 + -51.7376885649581 18357.3071756004 1099846.81051339 + -29.5213944465602 44779.0664053628 1099088.18315017 + 4.10119021007014 108387.805300713 1094647.01326285 + 51.1178374457170 256860.542415963 1069589.94906307 + 107.002763239268 570374.377066122 940570.602632701 + 217.741985564815 -570222.732312852 940662.526170833 + 88.9307143681655 -256720.860500675 1069623.48135927 + -17.3905824857668 -108286.045381449 1094657.08423835 + -91.3273197147540 -44713.2167355994 1099090.86062458 + -139.102642976008 -18317.8248410918 1099847.46121612 + -168.617238872915 -7479.74809503945 1099974.55649513 + -186.266829635256 -3049.39293889751 1099995.75749517 + -196.536593854354 -1242.01282575483 1099999.28126227 + -202.362238800962 -505.492490817103 1099999.86523948 + -205.586222273590 -205.586222273591 1099999.96157664 + -207.327151460814 -83.5503621762111 1099999.97728854 + -208.245001218435 -33.9275244898554 1099999.97976497 + -208.717832177268 -13.7650365509859 1099999.98011245 + -208.955948864415 -5.57967413250135 1099999.98013922 + -209.073321762122 -2.25952719697519 1099999.98012875 + -209.130178285144 -0.914221273257155 1099999.98011988 + -209.157020660501 -0.369539971032295 1099999.98011509 + -209.169563626251 -0.149197093006467 1099999.98011276 + -209.175339630845 -0.0603100769072501 1099999.98011167 + -209.177787864340 -0.0241963535926184 1099999.98011121 + -209.178900960748 -0.00976499570365682 1099999.98011099 + -209.179370149596 -0.00389573473076377 1099999.98011090 + -209.179536701426 -0.00154613481554433 1099999.98011087 + -209.179647604847 -0.000758085607641955 1099999.98011085 + -209.179713121416 -0.000302313364959735 1099999.98011084 + -209.179794777336 -0.000219144231846262 1099999.98011082 + -209.179831692139 -4.31451172320814e-05 1099999.98011082 + -209.179875630776 -1.76230724292698e-05 1099999.98011081 + -209.179877531795 4.22895946727185e-05 1099999.98011081 + -209.179857367630 4.24449062605540e-05 1099999.98011081 + -209.179825945518 1.76772746789589e-06 1099999.98011082 + -209.179798533312 -7.62013715033538e-07 1099999.98011082 + -209.179744752523 -6.03802541596352e-05 1099999.98011083 + -209.179750588262 -2.15608275838819e-05 1099999.98011083 + -209.179686502854 -5.99640192395846e-05 1099999.98011084 + -209.179713898758 4.54719128660811e-05 1099999.98011084 + -209.179651520061 4.57102336292490e-06 1099999.98011085 + -209.179673929982 0.000115962465361215 1099999.98011085 + -209.179633490945 1.17124494101634e-05 1099999.98011085 + -209.179640897627 7.71839282231057e-05 1099999.98011085 + -209.179640897624 -7.71839281555116e-05 1099999.98011085 + -209.179633490947 -1.17124488037514e-05 1099999.98011085 + -209.179673929981 -0.000115962466575364 1099999.98011085 + -209.179651520061 -4.57102421852435e-06 1099999.98011085 + -209.179713898757 -4.54719119428651e-05 1099999.98011084 + -209.179686502854 5.99640198936496e-05 1099999.98011084 + -209.179750588262 2.15608265588411e-05 1099999.98011083 + -209.179744752524 6.03802542308974e-05 1099999.98011083 + -209.179798533313 7.62012683342282e-07 1099999.98011082 + -209.179825945518 -1.76772576127520e-06 1099999.98011082 + -209.179857367629 -4.24449045733206e-05 1099999.98011081 + -209.179877531797 -4.22895960070834e-05 1099999.98011081 + -209.179875630776 1.76230726621583e-05 1099999.98011081 + -209.179831692138 4.31451174743813e-05 1099999.98011082 + -209.179794777336 0.000219144231837207 1099999.98011082 + -209.179713121416 0.000302313364257315 1099999.98011084 + -209.179647604845 0.000758085607518873 1099999.98011085 + -209.179536701427 0.00154613481665818 1099999.98011087 + -209.179370149595 0.00389573473084940 1099999.98011090 + -209.178900960746 0.00976499570285891 1099999.98011099 + -209.177787864342 0.0241963535944441 1099999.98011121 + -209.175339630846 0.0603100769066541 1099999.98011167 + -209.169563626253 0.149197093005984 1099999.98011276 + -209.157020660499 0.369539971032865 1099999.98011509 + -209.130178285149 0.914221273256489 1099999.98011988 + -209.073321762120 2.25952719697642 1099999.98012875 + -208.955948864416 5.57967413250119 1099999.98013922 + -208.717832177269 13.7650365509845 1099999.98011245 + -208.245001218437 33.9275244898544 1099999.97976497 + -207.327151460813 83.5503621762119 1099999.97728854 + -205.586222273591 205.586222273590 1099999.96157664 + -202.362238800966 505.492490817098 1099999.86523948 + -196.536593854349 1242.01282575483 1099999.28126227 + -186.266829635253 3049.39293889751 1099995.75749517 + -168.617238872920 7479.74809503945 1099974.55649513 + -139.102642976007 18317.8248410918 1099847.46121612 + -91.3273197147432 44713.2167355994 1099090.86062458 + -17.3905824857415 108286.045381449 1094657.08423835 + 88.9307143681916 256720.860500675 1069623.48135927 + 217.741985564764 570222.732312852 940662.526170833 + 395.921001599463 -569832.132164313 940899.136145651 + 116.345960734581 -256381.555507232 1069704.85857516 + -112.528684697003 -108053.081875462 1094680.09885743 + -269.018938909730 -44569.8404238174 1099096.65496416 + -368.887740803559 -18235.3275489743 1099848.77903783 + -430.070831721998 -7434.39528870540 1099974.79280471 + -466.388198580889 -3025.24967884862 1099995.74105831 + -487.334800894270 -1229.45962989244 1099999.20496963 + -499.082829673216 -499.082829673218 1099999.77356028 + -505.492490817101 -202.362238800962 1099999.86523948 + -508.896305511006 -81.9504518485299 1099999.87923121 + -510.656968115538 -33.1436197090506 1099999.88096861 + -511.545097613501 -13.3858729044004 1099999.88097383 + -511.982661665745 -5.39849936753627 1099999.88083845 + -512.193078943015 -2.17409120346162 1099999.88075160 + -512.292212022457 -0.874407757461422 1099999.88070723 + -512.338188131433 -0.351222065792327 1099999.88068611 + -512.358794347374 -0.140969128648692 1099999.88067656 + -512.368138182794 -0.0565493276290290 1099999.88067222 + -512.372178697862 -0.0227738060504201 1099999.88067033 + -512.373756896706 -0.00909212255303895 1099999.88066960 + -512.374585560718 -0.00368352600284051 1099999.88066921 + -512.374689132976 -0.00140611300649903 1099999.88066917 + -512.374840168639 -0.000534186621539853 1099999.88066909 + -512.374838416436 -0.000238313156352368 1099999.88066910 + -512.374800740061 -9.60724549394203e-05 1099999.88066911 + -512.374943594691 -0.000119359265678484 1099999.88066905 + -512.374842593703 -3.03340660782271e-05 1099999.88066909 + -512.375041340044 -7.19679270420608e-05 1099999.88066900 + -512.374920673214 -1.95957096229903e-05 1099999.88066906 + -512.375071924177 -4.17995434141696e-05 1099999.88066899 + -512.374967742978 -3.89234415408782e-05 1099999.88066904 + -512.375052976123 -4.90789938832342e-05 1099999.88066900 + -512.374983799950 -3.99362427099599e-05 1099999.88066903 + -512.375025310193 -2.98689027947742e-05 1099999.88066901 + -512.374979494196 2.08280269378739e-05 1099999.88066903 + -512.374994758462 3.67694492249899e-05 1099999.88066902 + -512.374962637533 7.96342270751961e-05 1099999.88066904 + -512.374965339527 4.67063368648846e-05 1099999.88066904 + -512.374952927455 3.78016673789686e-05 1099999.88066904 + -512.374952927457 -3.78016673631949e-05 1099999.88066904 + -512.374965339524 -4.67063358357963e-05 1099999.88066904 + -512.374962637534 -7.96342273343680e-05 1099999.88066904 + -512.374994758463 -3.67694490475710e-05 1099999.88066902 + -512.374979494199 -2.08280280851824e-05 1099999.88066903 + -512.375025310192 2.98689026079410e-05 1099999.88066901 + -512.374983799951 3.99362434027465e-05 1099999.88066903 + -512.375052976123 4.90789940424008e-05 1099999.88066900 + -512.374967742979 3.89234413802334e-05 1099999.88066904 + -512.375071924183 4.17995420792689e-05 1099999.88066899 + -512.374920673211 1.95957114906377e-05 1099999.88066906 + -512.375041340045 7.19679289225806e-05 1099999.88066900 + -512.374842593702 3.03340640364369e-05 1099999.88066909 + -512.374943594694 0.000119359263824382 1099999.88066905 + -512.374800740058 9.60724555018436e-05 1099999.88066911 + -512.374838416436 0.000238313155667129 1099999.88066910 + -512.374840168640 0.000534186622364309 1099999.88066909 + -512.374689132977 0.00140611300729010 1099999.88066917 + -512.374585560715 0.00368352600044336 1099999.88066921 + -512.373756896712 0.00909212255638100 1099999.88066960 + -512.372178697866 0.0227738060531426 1099999.88067033 + -512.368138182792 0.0565493276292304 1099999.88067222 + -512.358794347378 0.140969128646324 1099999.88067656 + -512.338188131434 0.351222065793316 1099999.88068611 + -512.292212022460 0.874407757461116 1099999.88070723 + -512.193078943017 2.17409120345878 1099999.88075160 + -511.982661665743 5.39849936753909 1099999.88083845 + -511.545097613499 13.3858729044001 1099999.88097383 + -510.656968115540 33.1436197090488 1099999.88096861 + -508.896305511009 81.9504518485289 1099999.87923121 + -505.492490817102 202.362238800965 1099999.86523948 + -499.082829673220 499.082829673218 1099999.77356028 + -487.334800894277 1229.45962989243 1099999.20496963 + -466.388198580885 3025.24967884863 1099995.74105831 + -430.070831721988 7434.39528870539 1099974.79280471 + -368.887740803541 18235.3275489743 1099848.77903783 + -269.018938909683 44569.8404238173 1099096.65496416 + -112.528684696998 108053.081875461 1094680.09885743 + 116.345960734552 256381.555507232 1069704.85857516 + 395.921001599491 569832.132164313 940899.136145651 + 588.657343514823 -568888.587560200 941469.823428395 + 22.9064743700189 -255602.001129300 1069891.40406585 + -443.838727320590 -107545.321553494 1094730.01549201 + -762.325386479127 -44271.2963916638 1099108.48926564 + -965.599590628943 -18069.8786288911 1099851.14770307 + -1090.15583623455 -7346.14932022947 1099974.92955540 + -1163.87503059401 -2979.39420810521 1099995.34935611 + -1206.07639274124 -1206.07639274125 1099998.67761715 + -1229.45962989244 -487.334800894272 1099999.20496963 + -1242.01282575483 -196.536593854354 1099999.28126227 + -1248.55148146854 -79.0978230567960 1099999.28857374 + -1251.86050718073 -31.7647494770626 1099999.28719807 + -1253.49002743012 -12.7283641787928 1099999.28572738 + -1254.27247274723 -5.08929982880588 1099999.28489734 + -1254.63889224514 -2.03087347421160 1099999.28448937 + -1254.80645155924 -0.808902370269970 1099999.28429982 + -1254.88168570015 -0.321764600793653 1099999.28421424 + -1254.91453055175 -0.127817158530699 1099999.28417681 + -1254.92881726553 -0.0507872284852007 1099999.28416052 + -1254.93485348147 -0.0202391909635739 1099999.28415364 + -1254.93731063001 -0.00818327419774118 1099999.28415083 + -1254.93837658933 -0.00333895264187187 1099999.28414962 + -1254.93868736676 -0.00141553000357413 1099999.28414926 + -1254.93890239436 -0.000543651611702934 1099999.28414902 + -1254.93875110628 -0.000234952156222824 1099999.28414919 + -1254.93890929919 -2.51126854630323e-05 1099999.28414901 + -1254.93866710465 -1.11786732804217e-05 1099999.28414929 + -1254.93885281020 4.97740348039707e-06 1099999.28414907 + -1254.93866223464 -2.12790507116348e-06 1099999.28414929 + -1254.93883182373 -4.61583947567718e-05 1099999.28414910 + -1254.93872658070 -4.24711319194528e-05 1099999.28414922 + -1254.93883349073 -9.72184739356707e-05 1099999.28414910 + -1254.93881751469 -6.49449485469655e-05 1099999.28414911 + -1254.93885714476 -0.000107187542087848 1099999.28414907 + -1254.93889635634 -2.98445452711595e-05 1099999.28414902 + -1254.93888757767 -5.25959624905134e-05 1099999.28414903 + -1254.93893351311 5.83024936220221e-05 1099999.28414898 + -1254.93890754579 4.97333537826418e-06 1099999.28414901 + -1254.93893443564 8.99198272811583e-05 1099999.28414898 + -1254.93892210727 -2.59139794971729e-05 1099999.28414900 + -1254.93892210727 2.59139795694312e-05 1099999.28414900 + -1254.93893443563 -8.99198283428344e-05 1099999.28414898 + -1254.93890754579 -4.97333145030813e-06 1099999.28414901 + -1254.93893351311 -5.83024913119774e-05 1099999.28414898 + -1254.93888757767 5.25959591708055e-05 1099999.28414903 + -1254.93889635634 2.98445438800198e-05 1099999.28414902 + -1254.93885714475 0.000107187542936170 1099999.28414907 + -1254.93881751469 6.49449481397240e-05 1099999.28414911 + -1254.93883349072 9.72184782422006e-05 1099999.28414910 + -1254.93872658069 4.24711278003016e-05 1099999.28414922 + -1254.93883182373 4.61583917513068e-05 1099999.28414910 + -1254.93866223462 2.12790714762230e-06 1099999.28414929 + -1254.93885281020 -4.97740350035963e-06 1099999.28414907 + -1254.93866710465 1.11786727171270e-05 1099999.28414929 + -1254.93890929920 2.51126830958260e-05 1099999.28414901 + -1254.93875110627 0.000234952158447403 1099999.28414919 + -1254.93890239436 0.000543651612515975 1099999.28414902 + -1254.93868736675 0.00141553000162026 1099999.28414926 + -1254.93837658934 0.00333895264666395 1099999.28414962 + -1254.93731063001 0.00818327420278739 1099999.28415083 + -1254.93485348146 0.0202391909571652 1099999.28415364 + -1254.92881726552 0.0507872284844404 1099999.28416052 + -1254.91453055176 0.127817158534101 1099999.28417681 + -1254.88168570015 0.321764600792705 1099999.28421424 + -1254.80645155923 0.808902370269960 1099999.28429982 + -1254.63889224515 2.03087347420846 1099999.28448937 + -1254.27247274723 5.08929982880382 1099999.28489734 + -1253.49002743012 12.7283641787964 1099999.28572738 + -1251.86050718072 31.7647494770652 1099999.28719807 + -1248.55148146854 79.0978230567966 1099999.28857374 + -1242.01282575483 196.536593854354 1099999.28126227 + -1229.45962989244 487.334800894272 1099999.20496963 + -1206.07639274124 1206.07639274124 1099998.67761715 + -1163.87503059402 2979.39420810519 1099995.34935611 + -1090.15583623454 7346.14932022947 1099974.92955540 + -965.599590628958 18069.8786288911 1099851.14770307 + -762.325386479125 44271.2963916639 1099108.48926564 + -443.838727320607 107545.321553494 1094730.01549201 + 22.9064743700444 255602.001129300 1069891.40406585 + 588.657343514882 568888.587560200 941469.823428395 + 471.546013533176 -566750.382164375 942758.602167539 + -574.895803710443 -253914.206521398 1070293.06510947 + -1469.98000518296 -106497.758089553 1094831.52433636 + -2093.33964182292 -43680.4641211038 1099130.39944463 + -2497.62248956473 -17753.1341047373 1099853.89398381 + -2747.52292922445 -7181.43718923534 1099973.12607066 + -2895.41805100655 -2895.41805100656 1099992.37865933 + -2979.39420810520 -1163.87503059401 1099995.34935611 + -3025.24967884862 -466.388198580889 1099995.74105831 + -3049.39293889751 -186.266829635258 1099995.75749517 + -3061.68166096842 -74.1286461294710 1099995.73663281 + -3067.74324323106 -29.3946910864878 1099995.72184956 + -3070.64645079339 -11.6150884671059 1099995.71408050 + -3071.99907740516 -4.57511194805648 1099995.71035561 + -3072.61329680703 -1.79715843077699 1099995.70864813 + -3072.88515921936 -0.704616306173000 1099995.70788995 + -3073.00243637996 -0.275914882753524 1099995.70756251 + -3073.05222262518 -0.108004941689038 1099995.70742345 + -3073.07257293243 -0.0423442638450795 1099995.70736661 + -3073.08094620383 -0.0165891457223376 1099995.70734321 + -3073.08443040946 -0.00658313040935892 1099995.70733348 + -3073.08553123421 -0.00269898399151680 1099995.70733041 + -3073.08629608077 -0.00119437171273607 1099995.70732827 + -3073.08623827542 -0.000596683596979518 1099995.70732843 + -3073.08650059260 -0.000283660896828886 1099995.70732770 + -3073.08630859503 -0.000172847108811925 1099995.70732823 + -3073.08641178899 -2.79547569777770e-05 1099995.70732794 + -3073.08627862943 -3.07992229595720e-05 1099995.70732832 + -3073.08630413420 4.43242362968019e-05 1099995.70732825 + -3073.08624011323 -2.01324361323416e-05 1099995.70732842 + -3073.08624078323 8.06150925701523e-06 1099995.70732842 + -3073.08623801592 -6.45634554743127e-05 1099995.70732843 + -3073.08623908586 -4.35127556528643e-05 1099995.70732843 + -3073.08628469485 -9.00091969020141e-05 1099995.70732830 + -3073.08628223999 -4.37188004106840e-05 1099995.70732831 + -3073.08633863067 -4.81561209223023e-05 1099995.70732815 + -3073.08632455820 1.52378525760885e-05 1099995.70732819 + -3073.08636523999 1.39168523325566e-05 1099995.70732807 + -3073.08635312251 4.21226697790621e-05 1099995.70732811 + -3073.08636863015 3.53868607070960e-06 1099995.70732807 + -3073.08636863015 -3.53868419235839e-06 1099995.70732807 + -3073.08635312251 -4.21226751993949e-05 1099995.70732811 + -3073.08636523998 -1.39168561195888e-05 1099995.70732807 + -3073.08632455819 -1.52378488023147e-05 1099995.70732819 + -3073.08633863067 4.81561272586474e-05 1099995.70732815 + -3073.08628223999 4.37187959239136e-05 1099995.70732831 + -3073.08628469485 9.00091954498634e-05 1099995.70732830 + -3073.08623908586 4.35127561290343e-05 1099995.70732843 + -3073.08623801591 6.45634499658555e-05 1099995.70732843 + -3073.08624078322 -8.06150342406403e-06 1099995.70732842 + -3073.08624011321 2.01324297447859e-05 1099995.70732842 + -3073.08630413421 -4.43242388436638e-05 1099995.70732825 + -3073.08627862942 3.07992350096914e-05 1099995.70732832 + -3073.08641178898 2.79547594090096e-05 1099995.70732794 + -3073.08630859502 0.000172847102638682 1099995.70732823 + -3073.08650059259 0.000283660894725263 1099995.70732770 + -3073.08623827541 0.000596683599331778 1099995.70732843 + -3073.08629608077 0.00119437171938973 1099995.70732827 + -3073.08553123421 0.00269898399405669 1099995.70733041 + -3073.08443040946 0.00658313040009123 1099995.70733348 + -3073.08094620381 0.0165891457191332 1099995.70734321 + -3073.07257293245 0.0423442638496077 1099995.70736661 + -3073.05222262518 0.108004941697965 1099995.70742345 + -3073.00243637995 0.275914882745641 1099995.70756251 + -3072.88515921936 0.704616306171996 1099995.70788995 + -3072.61329680702 1.79715843078329 1099995.70864813 + -3071.99907740517 4.57511194805397 1099995.71035561 + -3070.64645079339 11.6150884671074 1099995.71408050 + -3067.74324323107 29.3946910864927 1099995.72184956 + -3061.68166096841 74.1286461294714 1099995.73663281 + -3049.39293889751 186.266829635255 1099995.75749517 + -3025.24967884861 466.388198580888 1099995.74105831 + -2979.39420810520 1163.87503059401 1099995.34935611 + -2895.41805100654 2895.41805100655 1099992.37865933 + -2747.52292922446 7181.43718923533 1099973.12607066 + -2497.62248956473 17753.1341047372 1099853.89398381 + -2093.33964182298 43680.4641211038 1099130.39944463 + -1469.98000518293 106497.758089553 1094831.52433636 + -574.895803710379 253914.206521399 1070293.06510947 + 471.546013533140 566750.382164375 942758.602167539 + -1126.59101024916 -562234.669096170 945458.041194328 + -2825.13615953082 -250503.081515335 1071093.00471854 + -4424.17130346562 -104473.437198664 1095018.59693257 + -5601.54225063802 -42579.9203490207 1099161.30440781 + -6391.96817318858 -17178.6942981202 1099847.27812778 + -6887.99975762096 -6887.99975762098 1099956.86775377 + -7181.43718923534 -2747.52292922445 1099973.12607066 + -7346.14932022947 -1090.15583623455 1099974.92955540 + -7434.39528870539 -430.070831722001 1099974.79280471 + -7479.74809503944 -168.617238872915 1099974.55649513 + -7502.19913700918 -65.6846653005675 1099974.41456319 + -7512.93953589722 -25.4243065483797 1099974.34292493 + -7517.91771627139 -9.78285835067389 1099974.30916249 + -7520.15693892838 -3.74560421940000 1099974.29389308 + -7521.13627868205 -1.42933924628811 1099974.28720268 + -7521.55283468681 -0.544592808294491 1099974.28435517 + -7521.72505281549 -0.207846975237442 1099974.28317765 + -7521.79455632052 -0.0795878529247381 1099974.28270239 + -7521.82149127678 -0.0306614335916187 1099974.28251821 + -7521.83191686263 -0.0119648702516790 1099974.28244692 + -7521.83562478699 -0.00460354709647526 1099974.28242156 + -7521.83713691646 -0.00190563025888923 1099974.28241122 + -7521.83759116734 -0.000750392065222572 1099974.28240812 + -7521.83782178503 -0.000417341702727320 1099974.28240654 + -7521.83794400273 -0.000231560336824167 1099974.28240570 + -7521.83792818668 -0.000184923713616437 1099974.28240581 + -7521.83806878889 -0.000117519845859367 1099974.28240485 + -7521.83797664408 -7.45412599325334e-05 1099974.28240548 + -7521.83809688116 -5.91364702442851e-05 1099974.28240466 + -7521.83800469092 -1.23058637886087e-05 1099974.28240529 + -7521.83806184931 -4.06976330628431e-05 1099974.28240490 + -7521.83802075618 -6.51318165543351e-06 1099974.28240518 + -7521.83804017656 -4.67669971031760e-05 1099974.28240505 + -7521.83805896200 -1.48869958595523e-05 1099974.28240492 + -7521.83805699803 -4.12784201320708e-05 1099974.28240493 + -7521.83809132215 6.14212128086484e-06 1099974.28240470 + -7521.83807277773 2.11787291538253e-06 1099974.28240482 + -7521.83809766501 4.22513237066149e-05 1099974.28240465 + -7521.83808581419 2.17569714931158e-05 1099974.28240473 + -7521.83809696304 2.29160335265243e-05 1099974.28240466 + -7521.83809696304 -2.29160324801595e-05 1099974.28240466 + -7521.83808581419 -2.17569773990289e-05 1099974.28240473 + -7521.83809766501 -4.22513322952147e-05 1099974.28240465 + -7521.83807277774 -2.11787121894216e-06 1099974.28240482 + -7521.83809132215 -6.14211896821709e-06 1099974.28240470 + -7521.83805699804 4.12784283722120e-05 1099974.28240493 + -7521.83805896200 1.48869982323538e-05 1099974.28240492 + -7521.83804017655 4.67669866844911e-05 1099974.28240505 + -7521.83802075618 6.51317518133492e-06 1099974.28240518 + -7521.83806184929 4.06976252402150e-05 1099974.28240490 + -7521.83800469092 1.23058682348265e-05 1099974.28240529 + -7521.83809688117 5.91364802967197e-05 1099974.28240466 + -7521.83797664406 7.45412576981985e-05 1099974.28240548 + -7521.83806878889 0.000117519844825874 1099974.28240485 + -7521.83792818665 0.000184923707606260 1099974.28240581 + -7521.83794400275 0.000231560335456639 1099974.28240570 + -7521.83782178503 0.000417341715884554 1099974.28240654 + -7521.83759116735 0.000750392068053158 1099974.28240812 + -7521.83713691646 0.00190563025694438 1099974.28241122 + -7521.83562478699 0.00460354709237718 1099974.28242156 + -7521.83191686264 0.0119648702643703 1099974.28244692 + -7521.82149127678 0.0306614336005614 1099974.28251821 + -7521.79455632050 0.0795878529096527 1099974.28270239 + -7521.72505281549 0.207846975241968 1099974.28317765 + -7521.55283468680 0.544592808291655 1099974.28435517 + -7521.13627868206 1.42933924629220 1099974.28720268 + -7520.15693892837 3.74560421940771 1099974.29389308 + -7517.91771627142 9.78285835067284 1099974.30916249 + -7512.93953589723 25.4243065483778 1099974.34292493 + -7502.19913700920 65.6846653005636 1099974.41456319 + -7479.74809503944 168.617238872909 1099974.55649513 + -7434.39528870540 430.070831721999 1099974.79280471 + -7346.14932022947 1090.15583623456 1099974.92955540 + -7181.43718923534 2747.52292922445 1099973.12607066 + -6887.99975762096 6887.99975762096 1099956.86775377 + -6391.96817318858 17178.6942981202 1099847.27812778 + -5601.54225063805 42579.9203490208 1099161.30440781 + -4424.17130346562 104473.437198664 1095018.59693257 + -2825.13615953087 250503.081515335 1071093.00471855 + -1126.59101024918 562234.669096170 945458.041194328 + -7679.48436393384 -553484.353991109 950576.717265339 + -9864.65797286756 -244186.948710263 1072508.93823905 + -12503.2699354470 -100877.045482482 1095293.33510966 + -14670.8263299042 -40680.3052457967 1099149.61657634 + -16202.3778895249 -16202.3778895249 1099761.32224290 + -17178.6942981202 -6391.96817318857 1099847.27812778 + -17753.1341047373 -2497.62248956474 1099853.89398381 + -18069.8786288911 -965.599590628962 1099851.14770307 + -18235.3275489743 -368.887740803550 1099848.77903783 + -18317.8248410918 -139.102642975994 1099847.46121612 + -18357.3071756004 -51.7376885649534 1099846.81051339 + -18375.5133932775 -18.9788602294402 1099846.50753973 + -18383.6233389771 -6.87230859106693 1099846.37215645 + -18387.1187903351 -2.46220095015970 1099846.31374412 + -18388.5772014527 -0.876726831768373 1099846.28936399 + -18389.1663407084 -0.312621098057492 1099846.27951419 + -18389.3965182490 -0.112690211010161 1099846.27566569 + -18389.4828139889 -0.0416539094132042 1099846.27422283 + -18389.5141975013 -0.0159001552776110 1099846.27369809 + -18389.5247623496 -0.00631086693251758 1099846.27352145 + -18389.5281418026 -0.00264587834899762 1099846.27346494 + -18389.5292727728 -0.00106444308280439 1099846.27344603 + -18389.5294366849 -0.000499391112758795 1099846.27344329 + -18389.5296977589 -0.000210608464230416 1099846.27343893 + -18389.5296773969 -0.000120536286201565 1099846.27343927 + -18389.5298752045 -6.95317247721225e-05 1099846.27343596 + -18389.5299072139 -6.83884530099563e-05 1099846.27343543 + -18389.5300518798 -4.07727640455750e-05 1099846.27343301 + -18389.5300878848 -7.33058648447535e-05 1099846.27343240 + -18389.5301370847 -2.32968381686285e-05 1099846.27343158 + -18389.5301556784 -8.47828657837264e-05 1099846.27343127 + -18389.5301458927 4.15993651449236e-07 1099846.27343143 + -18389.5301877698 -7.78374309825768e-05 1099846.27343073 + -18389.5301668692 2.01740809856786e-05 1099846.27343108 + -18389.5302193152 -6.52251695763189e-05 1099846.27343021 + -18389.5301777872 4.09670676104705e-05 1099846.27343090 + -18389.5302080027 -3.20370265171759e-05 1099846.27343040 + -18389.5301687517 7.01274890741788e-05 1099846.27343105 + -18389.5301896842 -1.44130110149437e-05 1099846.27343070 + -18389.5301794665 5.36744751943706e-05 1099846.27343087 + -18389.5301794665 -5.36744832564335e-05 1099846.27343087 + -18389.5301896842 1.44130047196386e-05 1099846.27343070 + -18389.5301687517 -7.01274673241782e-05 1099846.27343105 + -18389.5302080027 3.20370296203244e-05 1099846.27343040 + -18389.5301777872 -4.09670770598822e-05 1099846.27343090 + -18389.5302193153 6.52251792239703e-05 1099846.27343021 + -18389.5301668692 -2.01740950527476e-05 1099846.27343108 + -18389.5301877698 7.78374250181240e-05 1099846.27343073 + -18389.5301458927 -4.15995881686919e-07 1099846.27343143 + -18389.5301556784 8.47828703683741e-05 1099846.27343127 + -18389.5301370847 2.32968552559983e-05 1099846.27343158 + -18389.5300878848 7.33058428197828e-05 1099846.27343240 + -18389.5300518799 4.07727571187927e-05 1099846.27343301 + -18389.5299072140 6.83884423478595e-05 1099846.27343543 + -18389.5298752045 6.95317390112681e-05 1099846.27343596 + -18389.5296773969 0.000120536303789511 1099846.27343927 + -18389.5296977589 0.000210608465072291 1099846.27343893 + -18389.5294366849 0.000499391126690291 1099846.27344329 + -18389.5292727728 0.00106444306971038 1099846.27344603 + -18389.5281418026 0.00264587834409370 1099846.27346494 + -18389.5247623496 0.00631086692478080 1099846.27352145 + -18389.5141975013 0.0159001552622724 1099846.27369809 + -18389.4828139889 0.0416539094142243 1099846.27422283 + -18389.3965182490 0.112690211022522 1099846.27566569 + -18389.1663407084 0.312621098069064 1099846.27951419 + -18388.5772014527 0.876726831771427 1099846.28936399 + -18387.1187903351 2.46220095017163 1099846.31374412 + -18383.6233389771 6.87230859108205 1099846.37215645 + -18375.5133932775 18.9788602294329 1099846.50753973 + -18357.3071756004 51.7376885649418 1099846.81051339 + -18317.8248410919 139.102642975988 1099847.46121612 + -18235.3275489743 368.887740803550 1099848.77903783 + -18069.8786288911 965.599590628958 1099851.14770307 + -17753.1341047373 2497.62248956473 1099853.89398381 + -17178.6942981202 6391.96817318858 1099847.27812778 + -16202.3778895249 16202.3778895249 1099761.32224290 + -14670.8263299042 40680.3052457967 1099149.61657634 + -12503.2699354470 100877.045482482 1095293.33510966 + -9864.65797286763 244186.948710263 1072508.93823905 + -7679.48436393389 553484.353991109 950576.717265339 + -28309.9242985238 -538415.140513552 958805.342419401 + -29717.4414855357 -233869.415338371 1074440.30557348 + -33756.2468813961 -95205.3037104729 1095352.21090838 + -37720.4360593449 -37720.4360593449 1098705.75560838 + -40680.3052457967 -14670.8263299042 1099149.61657634 + -42579.9203490207 -5601.54225063804 1099161.30440781 + -43680.4641211038 -2093.33964182298 1099130.39944463 + -44271.2963916639 -762.325386479132 1099108.48926564 + -44569.8404238173 -269.018938909688 1099096.65496416 + -44713.2167355994 -91.3273197147522 1099090.86062458 + -44779.0664053628 -29.5213944465607 1099088.18315017 + -44808.0974825736 -8.94282210548864 1099087.00034166 + -44820.4068029956 -2.46900180398875 1099086.49847404 + -44825.4277947897 -0.586197366108541 1099086.29371068 + -44827.3949016043 -0.100962191417027 1099086.21348206 + -44828.1325273356 -0.00166972109319102 1099086.18339697 + -44828.3954117151 0.00786448533917980 1099086.17267474 + -44828.4832533254 0.00341010140964615 1099086.16909194 + -44828.5101687880 0.000248528971771836 1099086.16799414 + -44828.5171470094 -0.000753973399618939 1099086.16770952 + -44828.5185413288 -0.000832909199209245 1099086.16765265 + -44828.5183157066 -0.000536512886220324 1099086.16766185 + -44828.5181770385 -0.000321961391522516 1099086.16766751 + -44828.5179379603 -0.000129313594517727 1099086.16767726 + -44828.5179218368 -4.45651612476081e-05 1099086.16767792 + -44828.5179645549 2.85896103749237e-05 1099086.16767618 + -44828.5180112699 3.62778325411592e-05 1099086.16767427 + -44828.5181797562 5.27267647316884e-05 1099086.16766740 + -44828.5181958177 3.06721204718714e-06 1099086.16766674 + -44828.5183189313 -2.28841473410592e-06 1099086.16766172 + -44828.5182936841 -3.06518416350721e-05 1099086.16766275 + -44828.5183622822 -3.04524453856312e-05 1099086.16765995 + -44828.5183735744 -1.45935051870524e-05 1099086.16765949 + -44828.5184348011 -3.44391895371013e-05 1099086.16765700 + -44828.5184596521 -4.88071085275705e-06 1099086.16765598 + -44828.5184712462 -4.07695026951670e-05 1099086.16765551 + -44828.5184626699 1.52134510882360e-05 1099086.16765586 + -44828.5184531703 -1.57301484259149e-05 1099086.16765625 + -44828.5184558616 4.08681432369207e-05 1099086.16765614 + -44828.5184610903 -1.69442717476923e-05 1099086.16765592 + -44828.5184610904 1.69442588400309e-05 1099086.16765592 + -44828.5184558616 -4.08681390003797e-05 1099086.16765614 + -44828.5184531703 1.57301779326153e-05 1099086.16765625 + -44828.5184626699 -1.52133905716009e-05 1099086.16765586 + -44828.5184712462 4.07695128082681e-05 1099086.16765551 + -44828.5184596521 4.88067348284336e-06 1099086.16765598 + -44828.5184348012 3.44391617350401e-05 1099086.16765700 + -44828.5183735744 1.45934753346789e-05 1099086.16765949 + -44828.5183622821 3.04524362332935e-05 1099086.16765995 + -44828.5182936841 3.06518367603701e-05 1099086.16766275 + -44828.5183189312 2.28838762341542e-06 1099086.16766172 + -44828.5181958177 -3.06716737533565e-06 1099086.16766674 + -44828.5181797562 -5.27267011678127e-05 1099086.16766740 + -44828.5180112699 -3.62778797716170e-05 1099086.16767427 + -44828.5179645549 -2.85896452266298e-05 1099086.16767618 + -44828.5179218367 4.45651825930857e-05 1099086.16767792 + -44828.5179379603 0.000129313591929180 1099086.16767726 + -44828.5181770386 0.000321961405958422 1099086.16766751 + -44828.5183157066 0.000536512887607054 1099086.16766185 + -44828.5185413288 0.000832909142271078 1099086.16765265 + -44828.5171470094 0.000753973397835249 1099086.16770952 + -44828.5101687880 -0.000248528934779466 1099086.16799414 + -44828.4832533255 -0.00341010139004595 1099086.16909194 + -44828.3954117151 -0.00786448534061900 1099086.17267474 + -44828.1325273356 0.00166972110370799 1099086.18339697 + -44827.3949016043 0.100962191388997 1099086.21348206 + -44825.4277947897 0.586197366108018 1099086.29371068 + -44820.4068029956 2.46900180401265 1099086.49847404 + -44808.0974825736 8.94282210548163 1099087.00034166 + -44779.0664053628 29.5213944465932 1099088.18315017 + -44713.2167355994 91.3273197147422 1099090.86062458 + -44569.8404238173 269.018938909659 1099096.65496416 + -44271.2963916638 762.325386479111 1099108.48926564 + -43680.4641211038 2093.33964182301 1099130.39944463 + -42579.9203490207 5601.54225063805 1099161.30440781 + -40680.3052457967 14670.8263299042 1099149.61657634 + -37720.4360593449 37720.4360593449 1098705.75560838 + -33756.2468813960 95205.3037104730 1095352.21090838 + -29717.4414855357 233869.415338371 1074440.30557348 + -28309.9242985238 538415.140513552 958805.342419400 + -84686.4238610590 -516972.831146086 967247.280415110 + -81823.6791898418 -220293.145110201 1074604.95799214 + -87858.2023851795 -87858.2023851794 1092960.14225007 + -95205.3037104730 -33756.2468813961 1095352.21090838 + -100877.045482482 -12503.2699354471 1095293.33510966 + -104473.437198664 -4424.17130346562 1095018.59693257 + -106497.758089553 -1469.98000518291 1094831.52433636 + -107545.321553494 -443.838727320634 1094730.01549201 + -108053.081875462 -112.528684697025 1094680.09885743 + -108286.045381449 -17.3905824857187 1094657.08423835 + -108387.805300713 4.10119021008201 1094647.01326285 + -108430.226539643 5.78727848992395 1094642.81203462 + -108447.095638244 3.75034838084095 1094641.14093778 + -108453.470039913 1.94305220793759 1094640.50940595 + -108455.739279648 0.887526174368942 1094640.28457595 + -108456.486920500 0.368431315396080 1094640.21050057 + -108456.706149029 0.139292731343793 1094640.18877953 + -108456.757792309 0.0472310922635120 1094640.18366273 + -108456.762970308 0.0134874184886208 1094640.18314970 + -108456.759136768 0.00253776426259973 1094640.18352952 + -108456.755351041 -0.000205391607148134 1094640.18390461 + -108456.753057704 -0.000657961718134897 1094640.18413184 + -108456.751868812 -0.000409843596938008 1094640.18424963 + -108456.751258488 -0.000203149464533308 1094640.18431010 + -108456.750941222 -3.78523936838860e-05 1094640.18434154 + -108456.750862491 7.45950180698199e-05 1094640.18434934 + -108456.750819229 0.000132732313730951 1094640.18435362 + -108456.750920141 9.87292968854282e-05 1094640.18434363 + -108456.750941794 0.000130779756360325 1094640.18434148 + -108456.751014763 -7.19045683088447e-06 1094640.18433425 + -108456.750998065 9.41860087419445e-05 1094640.18433590 + -108456.751065431 -4.40315571046477e-05 1094640.18432923 + -108456.751106663 0.000118310899651198 1094640.18432514 + -108456.751224946 -4.05579955584141e-05 1094640.18431343 + -108456.751271442 9.14461655096941e-05 1094640.18430882 + -108456.751320530 -7.51427166731202e-05 1094640.18430396 + -108456.751298315 6.11576410740266e-05 1094640.18430616 + -108456.751307773 -5.65840804430736e-05 1094640.18430522 + -108456.751311180 7.77533837971170e-05 1094640.18430488 + -108456.751332471 -5.05384085657354e-05 1094640.18430277 + -108456.751332471 5.05384641509994e-05 1094640.18430277 + -108456.751311180 -7.77534300554250e-05 1094640.18430488 + -108456.751307773 5.65840946276868e-05 1094640.18430522 + -108456.751298315 -6.11576503027029e-05 1094640.18430616 + -108456.751320530 7.51427482014044e-05 1094640.18430396 + -108456.751271442 -9.14460893182550e-05 1094640.18430882 + -108456.751224946 4.05579364401753e-05 1094640.18431343 + -108456.751106663 -0.000118311041881446 1094640.18432514 + -108456.751065431 4.40315563513216e-05 1094640.18432923 + -108456.750998065 -9.41860043643045e-05 1094640.18433590 + -108456.751014763 7.19042541393148e-06 1094640.18433425 + -108456.750941794 -0.000130779712686133 1094640.18434148 + -108456.750920141 -9.87292324529149e-05 1094640.18434363 + -108456.750819229 -0.000132732266606763 1094640.18435362 + -108456.750862491 -7.45950963539855e-05 1094640.18434934 + -108456.750941222 3.78523552240388e-05 1094640.18434154 + -108456.751258488 0.000203149595398129 1094640.18431010 + -108456.751868812 0.000409843653215593 1094640.18424963 + -108456.753057704 0.000657961640118821 1094640.18413184 + -108456.755351041 0.000205391539206120 1094640.18390461 + -108456.759136769 -0.00253776425581646 1094640.18352952 + -108456.762970308 -0.0134874184188453 1094640.18314970 + -108456.757792309 -0.0472310922733659 1094640.18366273 + -108456.706149029 -0.139292731391098 1094640.18877953 + -108456.486920500 -0.368431315418369 1094640.21050057 + -108455.739279648 -0.887526174323976 1094640.28457595 + -108453.470039913 -1.94305220785442 1094640.50940595 + -108447.095638244 -3.75034838088639 1094641.14093778 + -108430.226539643 -5.78727848998368 1094642.81203462 + -108387.805300713 -4.10119021010638 1094647.01326285 + -108286.045381449 17.3905824857572 1094657.08423835 + -108053.081875462 112.528684696967 1094680.09885743 + -107545.321553494 443.838727320583 1094730.01549201 + -106497.758089553 1469.98000518295 1094831.52433636 + -104473.437198664 4424.17130346562 1095018.59693257 + -100877.045482482 12503.2699354471 1095293.33510966 + -95205.3037104729 33756.2468813961 1095352.21090838 + -87858.2023851794 87858.2023851794 1092960.14225007 + -81823.6791898417 220293.145110201 1074604.95799214 + -84686.4238610590 516972.831146086 967247.280415110 + -222091.369095226 -497208.517514553 955750.550030911 + -210241.427832465 -210241.427832465 1059054.80691319 + -220293.145110201 -81823.6791898418 1074604.95799214 + -233869.415338371 -29717.4414855357 1074440.30557348 + -244186.948710263 -9864.65797286762 1072508.93823905 + -250503.081515335 -2825.13615953087 1071093.00471855 + -253914.206521399 -574.895803710366 1070293.06510947 + -255602.001129300 22.9064743700556 1069891.40406585 + -256381.555507232 116.345960734636 1069704.85857516 + -256720.860500675 88.9307143682385 1069623.48135927 + -256860.542415963 51.1178374456154 1069589.94906307 + -256914.861769172 25.6263539170026 1069576.90380141 + -256934.674683846 11.7369821987874 1069572.14474169 + -256941.339668686 5.00060429566825 1069570.54369698 + -256943.328624854 1.99259428275092 1069570.06590088 + -256943.799398595 0.739444714803086 1069569.95280817 + -256943.844421398 0.251530963643523 1069569.94199252 + -256943.803440492 0.0751283250858101 1069569.95183743 + -256943.764542599 0.0174101550848660 1069569.96118191 + -256943.741048133 0.00119361042077872 1069569.96682601 + -256943.729188222 -0.00196141567726416 1069569.96967513 + -256943.723797009 -0.00167522063051018 1069569.97097026 + -256943.721491919 -0.00108652469460305 1069569.97152402 + -256943.720497019 -0.000439493665836543 1069569.97176302 + -256943.720116263 -0.000244501468085293 1069569.97185449 + -256943.719887713 8.50751705251900e-05 1069569.97190940 + -256943.719948721 8.59063469845788e-05 1069569.97189474 + -256943.719898121 0.000182193538128058 1069569.97190690 + -256943.719996882 8.91980592768033e-05 1069569.97188317 + -256943.719883077 7.76867496849365e-05 1069569.97191051 + -256943.719870012 2.61062165924236e-05 1069569.97191365 + -256943.719794789 0.000101560392510732 1069569.97193172 + -256943.719860223 7.14689145187526e-05 1069569.97191600 + -256943.719936966 0.000159797671208973 1069569.97189756 + -256943.720006852 3.62042654091838e-06 1069569.97188077 + -256943.720016387 9.32059829742800e-05 1069569.97187848 + -256943.719969604 -8.46791997047073e-05 1069569.97188972 + -256943.719950937 0.000106871665905821 1069569.97189421 + -256943.719955658 -6.93893703295249e-05 1069569.97189307 + -256943.719984330 0.000114558783470816 1069569.97188618 + -256943.719984330 -0.000114558748592395 1069569.97188618 + -256943.719955658 6.93893750225545e-05 1069569.97189307 + -256943.719950937 -0.000106871645645036 1069569.97189421 + -256943.719969604 8.46792532777207e-05 1069569.97188972 + -256943.720016387 -9.32060047171561e-05 1069569.97187848 + -256943.720006852 -3.62052136673380e-06 1069569.97188077 + -256943.719936965 -0.000159797787323940 1069569.97189756 + -256943.719860222 -7.14688904054843e-05 1069569.97191600 + -256943.719794789 -0.000101560276124279 1069569.97193172 + -256943.719870012 -2.61061633313291e-05 1069569.97191365 + -256943.719883077 -7.76868258069665e-05 1069569.97191051 + -256943.719996882 -8.91980962191960e-05 1069569.97188317 + -256943.719898121 -0.000182193510437255 1069569.97190690 + -256943.719948721 -8.59063518452471e-05 1069569.97189474 + -256943.719887713 -8.50751653400378e-05 1069569.97190940 + -256943.720116263 0.000244501467011533 1069569.97185449 + -256943.720497019 0.000439493671095054 1069569.97176302 + -256943.721491919 0.00108652476327888 1069569.97152402 + -256943.723797008 0.00167522064316247 1069569.97097026 + -256943.729188222 0.00196141562731634 1069569.96967513 + -256943.741048133 -0.00119361048450114 1069569.96682601 + -256943.764542599 -0.0174101551352738 1069569.96118191 + -256943.803440492 -0.0751283249962608 1069569.95183743 + -256943.844421398 -0.251530963609083 1069569.94199252 + -256943.799398595 -0.739444714822032 1069569.95280817 + -256943.328624854 -1.99259428275025 1069570.06590088 + -256941.339668686 -5.00060429571671 1069570.54369698 + -256934.674683846 -11.7369821987428 1069572.14474170 + -256914.861769172 -25.6263539170431 1069576.90380141 + -256860.542415963 -51.1178374457370 1069589.94906307 + -256720.860500675 -88.9307143681359 1069623.48135927 + -256381.555507232 -116.345960734596 1069704.85857516 + -255602.001129300 -22.9064743701242 1069891.40406585 + -253914.206521399 574.895803710433 1070293.06510947 + -250503.081515335 2825.13615953092 1071093.00471854 + -244186.948710263 9864.65797286761 1072508.93823905 + -233869.415338371 29717.4414855357 1074440.30557348 + -220293.145110201 81823.6791898418 1074604.95799214 + -210241.427832465 210241.427832465 1059054.80691319 + -222091.369095226 497208.517514553 955750.550030911 + -505613.032564973 -505613.032564973 835889.300446479 + -497208.517514553 -222091.369095226 955750.550030911 + -516972.831146086 -84686.4238610590 967247.280415110 + -538415.140513552 -28309.9242985237 958805.342419401 + -553484.353991109 -7679.48436393385 950576.717265339 + -562234.669096170 -1126.59101024917 945458.041194328 + -566750.382164375 471.546013533102 942758.602167539 + -568888.587560200 588.657343514829 941469.823428395 + -569832.132164313 395.921001599580 940899.136145651 + -570222.732312852 217.741985564821 940662.526170833 + -570374.377066122 107.002763239174 940570.602632701 + -570429.142008348 48.5427622713961 940537.395105171 + -570447.148291995 20.6056915515340 940526.475215311 + -570452.253234026 8.21517890262163 940523.379142025 + -570453.289974148 3.06389144006712 940522.750361884 + -570453.261672129 1.05395432618041 940522.767532248 + -570453.068534651 0.323033560195013 940522.884676017 + -570452.921791802 0.0800894918990325 940522.973679638 + -570452.838725871 0.00968781529783367 940523.024061397 + -570452.797912931 -0.00544724763891898 940523.048815556 + -570452.779709082 -0.00584353850980288 940523.059856685 + -570452.772274352 -0.00370568917116545 940523.064366051 + -570452.769385412 -0.00191914941094333 940523.066118271 + -570452.768365276 -0.00100620735046369 940523.066737011 + -570452.767975874 -0.000322278164535521 940523.066973194 + -570452.767907618 -0.000102682429986459 940523.067014593 + -570452.767928161 0.000156907080366927 940523.067002133 + -570452.768003082 0.000132466400451557 940523.066956692 + -570452.767982027 9.17832325925725e-05 940523.066969462 + -570452.767880441 1.76952579435487e-05 940523.067031077 + -570452.767703931 -1.47968905398399e-05 940523.067138135 + -570452.767583868 7.39605507238066e-05 940523.067210956 + -570452.767565427 0.000128751105835816 940523.067222142 + -570452.767615753 0.000147233813339521 940523.067191618 + -570452.767655811 9.21872432553443e-05 940523.067167322 + -570452.767608032 -1.61832356284123e-05 940523.067196300 + -570452.767524369 2.90195471111493e-06 940523.067247044 + -570452.767457596 -2.91244970663702e-05 940523.067287544 + -570452.767463757 7.44533230304384e-05 940523.067283807 + -570452.767490176 -2.07649880208657e-05 940523.067267783 + -570452.767490176 2.07649986580724e-05 940523.067267783 + -570452.767463757 -7.44532956578000e-05 940523.067283807 + -570452.767457596 2.91244929636725e-05 940523.067287544 + -570452.767524369 -2.90197378458438e-06 940523.067247044 + -570452.767608032 1.61832111091559e-05 940523.067196300 + -570452.767655811 -9.21872724487832e-05 940523.067167322 + -570452.767615753 -0.000147233934085830 940523.067191618 + -570452.767565427 -0.000128751123102545 940523.067222142 + -570452.767583868 -7.39605144803312e-05 940523.067210956 + -570452.767703931 1.47969008537746e-05 940523.067138135 + -570452.767880440 -1.76951922413307e-05 940523.067031077 + -570452.767982027 -9.17832581793743e-05 940523.066969462 + -570452.768003082 -0.000132466405083781 940523.066956692 + -570452.767928161 -0.000156907028432735 940523.067002133 + -570452.767907618 0.000102682485704415 940523.067014593 + -570452.767975874 0.000322278122308257 940523.066973194 + -570452.768365276 0.00100620739536462 940523.066737012 + -570452.769385412 0.00191914951407662 940523.066118271 + -570452.772274352 0.00370568907750419 940523.064366050 + -570452.779709082 0.00584353837551665 940523.059856685 + -570452.797912931 0.00544724766947914 940523.048815556 + -570452.838725872 -0.00968781524650377 940523.024061397 + -570452.921791802 -0.0800894919547850 940522.973679638 + -570453.068534651 -0.323033560198259 940522.884676017 + -570453.261672129 -1.05395432611811 940522.767532248 + -570453.289974148 -3.06389144008977 940522.750361884 + -570452.253234026 -8.21517890261862 940523.379142026 + -570447.148291995 -20.6056915514649 940526.475215310 + -570429.142008348 -48.5427622714826 940537.395105171 + -570374.377066123 -107.002763239208 940570.602632701 + -570222.732312852 -217.741985564742 940662.526170833 + -569832.132164313 -395.921001599528 940899.136145651 + -568888.587560200 -588.657343514883 941469.823428395 + -566750.382164375 -471.546013533145 942758.602167539 + -562234.669096170 1126.59101024920 945458.041194328 + -553484.353991109 7679.48436393397 950576.717265339 + -538415.140513552 28309.9242985238 958805.342419400 + -516972.831146086 84686.4238610589 967247.280415110 + -497208.517514553 222091.369095226 955750.550030911 + -505613.032564973 505613.032564973 835889.300446479 +# End: Data Text +# End: Segment diff --git a/test/sascalculator/utest_sas_gen.py b/test/sascalculator/utest_sas_gen.py index c35bffddfd..1dd3c1745f 100644 --- a/test/sascalculator/utest_sas_gen.py +++ b/test/sascalculator/utest_sas_gen.py @@ -14,6 +14,8 @@ from sas.sascalc.calculator import sas_gen +MFACTOR_AM = 2.90636E-12 + def find(filename): return os.path.join(os.path.dirname(__file__), 'data', filename) @@ -66,18 +68,33 @@ def test_pdbreader(self): self.assertEqual(f.pos_y[0], -1.008) self.assertEqual(f.pos_z[0], 3.326) - def test_omfreader(self): + def test_omfreader_V1(self): """ Test .omf file loaded """ - f = self.omfloader.read(find("A_Raw_Example-1.omf")) + f = self.omfloader.read(find("isolated_skyrmion_V1.omf")) - self.assertEqual(f.sld_mx[0], 0) - self.assertEqual(f.sld_my[0], 0) - self.assertEqual(f.sld_mz[0], 0) + + self.assertEqual(f.sld_mx[0], MFACTOR_AM * 505613.032564973) + self.assertEqual(f.sld_my[0], - MFACTOR_AM * 505613.032564973) + self.assertEqual(f.sld_mz[0], MFACTOR_AM * 835889.300446479) self.assertEqual(f.pos_x[0], 0.0) self.assertEqual(f.pos_y[0], 0.0) self.assertEqual(f.pos_z[0], 0.0) + + def test_omfreader_V2(self): + """ + Test .omf file loaded + """ + f = self.omfloader.read(find("isolated_skyrmion_V2.omf")) + + + self.assertEqual(f.sld_mx[0], MFACTOR_AM * 505613.032564973) + self.assertEqual(f.sld_my[0], - MFACTOR_AM * 505613.032564973) + self.assertEqual(f.sld_mz[0], MFACTOR_AM * 835889.300446479) + self.assertEqual(f.pos_x[0], 0.0) + self.assertEqual(f.pos_y[0], 0.0) + self.assertEqual(f.pos_z[0], 0.0) def test_rotations(self): pos_x = np.array([1, 0, 0]) From 501fd12137224526f16fef0c19d62f4061e716f4 Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 28 Mar 2024 14:40:29 -0400 Subject: [PATCH 21/36] Avoid deleting slicers with potentially important children (addresses comment in review) --- src/sas/qtgui/Plotting/Plotter2D.py | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/src/sas/qtgui/Plotting/Plotter2D.py b/src/sas/qtgui/Plotting/Plotter2D.py index f1e678d798..c3f7af0f14 100644 --- a/src/sas/qtgui/Plotting/Plotter2D.py +++ b/src/sas/qtgui/Plotting/Plotter2D.py @@ -433,6 +433,7 @@ def setSlicer(self, slicer, reset=True): # as GuiUtils.deleteRedundantPlots (which this takes a lot from). Will this cause problems? # Primary concern is the check (plot_data.plot_role == DataRole.ROLE_DELETABLE) as I don't # know what it does. The other checks seem to be related to keeping the new plots for that function + # TODO: generalize this and put it in GuiUtils so that we can use it elsewhere tempPlotsToRemove = [] slicer_type_id = 'Slicer' + self.data0.name for itemIndex in range(item.rowCount()): @@ -442,9 +443,18 @@ def setSlicer(self, slicer, reset=True): # First take care of this item, then we'll take care of its children if hasattr(item.child(itemIndex).data(), 'type_id'): if slicer_type_id in item.child(itemIndex).data().type_id: - # Store this plot to be removed later. Removing now - # will cause the next plot to be skipped - tempPlotsToRemove.append(item.child(itemIndex)) + # At the time of writing, this should never be the case, but at some point the slicers may + # have relevant children (e.g. plots). We don't want to delete these slicers. + tempHasImportantChildren = False + for tempChildCheck in range(item.child(itemIndex).rowCount()): + # The data explorer uses the "text" attribute to set the name. If this has text='' then + # it can be deleted. + if item.child(itemIndex).child(tempChildCheck).text(): + tempHasImportantChildren = True + if not tempHasImportantChildren: + # Store this plot to be removed later. Removing now + # will cause the next plot to be skipped + tempPlotsToRemove.append(item.child(itemIndex)) # It looks like the slicers are children of items that do not have data of instance Data1D or Data2D. # Now do the children (1 level deep as is done in GuiUtils.plotsFromModel). Note that the slicers always # seem to be the first entry (index2 == 0) @@ -455,8 +465,16 @@ def setSlicer(self, slicer, reset=True): if isinstance(item.child(itemIndex).child(itemIndex2).data(), (Data1D, Data2D)): if hasattr(item.child(itemIndex).child(itemIndex2).data(), 'type_id'): if slicer_type_id in item.child(itemIndex).child(itemIndex2).data().type_id: - # Remove the parent since each slicer seems to generate a new entry in item - tempPlotsToRemove.append(item.child(itemIndex)) + # Check for children we might want to keep (see the above loop) + tempHasImportantChildren = False + for tempChildCheck in range(item.child(itemIndex).child(itemIndex2).rowCount()): + # The data explorer uses the "text" attribute to set the name. If this has text='' + # then it can be deleted. + if item.child(itemIndex).child(itemIndex2).child(tempChildCheck).text(): + tempHasImportantChildren = True + if not tempHasImportantChildren: + # Remove the parent since each slicer seems to generate a new entry in item + tempPlotsToRemove.append(item.child(itemIndex)) # Remove all the parent plots with matching criteria for plot in tempPlotsToRemove: item.removeRow(plot.row()) From 9871d6784920c74ea90425caaeb71f0ee9ae240c Mon Sep 17 00:00:00 2001 From: butlerpd Date: Thu, 28 Mar 2024 20:55:30 +0000 Subject: [PATCH 22/36] Tweaks based on review * Fixed numerous typos in comments * Deleted unused (commented out) code * Fixed issue regarding question of default for fold param * Fixed issue of if statement not capturing incorrect value being passed for self.direction (added elif) * Fixed an unreported problem in numbper of parameters in a remove function (def restore(self, ev) instead of def restore(self) --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 74 +++++++++++---------- 1 file changed, 39 insertions(+), 35 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 51cface3bc..d87d9a2cce 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -13,11 +13,11 @@ class BoxInteractor(BaseInteractor, SlicerModel): by manipulations.py This class uses two other classes, HorizontalLines and VerticalLines, - to define the rectangle area: -x, x ,y, -y. It is subclassed by + to define the rectangle area: x1, x2 ,y1, y2. It is subclassed by BoxInteractorX and BoxInteracgtorY which define the direction of the - average. BoxInteractorX averages all the points from -y to +y as a + average. BoxInteractorX averages all the points from y1 to y2 as a function of Q_x and BoxInteractorY averages all the points from - -x to +x as a function of Q_y + x1 to x2 as a function of Q_y """ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=None): @@ -37,18 +37,22 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non self.ywidth = 1.0 * (self.data.ymax - self.data.ymin) / 2 # when reach qmax reset the graph self.qmax = max(numpy.fabs(self.data.ymax), numpy.fabs(self.data.ymin)) - else: + elif self.direction == "X": self.xwidth = 1.0 * (self.data.xmax - self.data.xmin) / 2 self.ywidth = 0.1 * (self.data.ymax - self.data.ymin) / 2 # when reach qmax reset the graph self.qmax = max(numpy.fabs(self.data.xmax), numpy.fabs(self.data.xmin)) + else: + msg = "post data:no Box Average direction was supplied" + raise ValueError(msg) + # set the minimum of the box width (x) and height (y) to be + # 0.5% of the data2D range in that direction self.width_min = 0.005 * (self.data.xmax - self.data.xmin) self.height_min = 0.005 * (self.data.ymax - self.data.ymin) # center of the box # puts the center of box at the middle of the data q-range - self.center_x = (self.data.xmin + self.data.xmax) /2 self.center_y = (self.data.ymin + self.data.ymax) /2 @@ -56,14 +60,15 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non self.nbins = 100 # If True, I(|Q|) will be return, otherwise, # negative q-values are allowed - # Should this be set to True?? + # Default to true on initialize self.fold = True # reference of the current Slab averaging self.averager = None # Flag to determine if the current figure has moved # set to False == no motion , set to True== motion + # Default to False at initialize (nothing has moved yet) self.has_move = False - # Create vertical and horizaontal lines for the rectangle + # Create vertical and horizontal lines for the rectangle self.horizontal_lines = HorizontalDoubleLine(self, self.axes, color='blue', @@ -84,7 +89,7 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non center_y=self.center_y) self.vertical_lines.qmax = self.qmax - # PointINteractor determins the center of the box + # PointInteractor determines the center of the box self.center = PointInteractor(self, self.axes, color='grey', zorder=zorder, @@ -92,10 +97,10 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non center_y=self.center_y) # draw the rectangle and plot the data 1D resulting - # of averaging data2D - self.update() - self._post_data() - self.draw() + # from averaging of the data2D + self.update_and_post() + # Set up the default slicer parameters for the parameter editor + # window (in SlicerModel.py) self.setModelFromParams() def update_and_post(self): @@ -175,7 +180,6 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): if self.direction is None: self.direction = direction - x_min = self.horizontal_lines.x2 x_max = self.horizontal_lines.x1 self.xwidth = numpy.fabs(x_max - x_min)/2 @@ -205,12 +209,13 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): else: msg = "post data:no Box Average direction was supplied" raise ValueError(msg) - # # Average data2D given Qx or Qy + + # Average data2D given Qx or Qy box = self.averager(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max, bin_width=bin_width) box.fold = self.fold boxavg = box(self.data) - # 3 Create Data1D to plot + # Create Data1D to plot if hasattr(boxavg, "dxl"): dxl = boxavg.dxl else: @@ -246,7 +251,9 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): #new_plot. = "2daverage" + self.data.name new_plot.id = (self.averager.__name__) + self.data.name - new_plot.type_id = "Slicer" + self.data.name # Used to remove plots after changing slicer so they don't keep showing up after closed + # Create id to remove plots after changing slicer so they don't keep + # showing up after being closed + new_plot.type_id = "Slicer" + self.data.name new_plot.is_data = True item = self._item if self._item.parent() is not None: @@ -318,12 +325,8 @@ def setParams(self, params): width=self.xwidth, height=self.ywidth) self.vertical_lines.update(center=self.center, width=self.xwidth, height=self.ywidth) - # compute the new error and sum given values of params + # Compute and plot the 1D average based on these parameters self._post_data() - - #self.horizontal_lines.update(x=self.x, y=self.y) - #self.vertical_lines.update(x=self.x, y=self.y) - #self.post_data(nbins=None) self.draw() def draw(self): @@ -364,9 +367,9 @@ def __init__(self, base, axes, color='black', zorder=5, center_x=0.0, linestyle='-', marker='', color=self.color, visible=True)[0] - # Flag to determine the motion this point + # Flag to determine if this point has moved self.has_move = False - # connecting the marker to allow them to move + # connecting the marker to allow it to be moved self.connect_markers([self.center_marker]) # Update the figure self.update() @@ -438,12 +441,12 @@ def setCursor(self, x, y): class VerticalDoubleLine(BaseInteractor): """ Draw 2 vertical lines that can move symmetrically in opposite directions in x and centered on - a point (PointInteractor). It also defines the left and right y positions of a box. + a point (PointInteractor). It also defines the top and bottom y positions of a box. """ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, center_x=0.0, center_y=0.0): BaseInteractor.__init__(self, base, axes, color=color) - # Initialization the class + # Initialization of the class self.markers = [] self.axes = axes # Center coordinates @@ -463,12 +466,12 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, delta = self.x1 - self.center_x self.x2 = self.center_x - delta self.save_x2 = self.x2 - # # save the color of the line + # save the color of the line self.color = color # the height of the rectangle self.half_height = numpy.fabs(y) self.save_half_height = numpy.fabs(y) - # the with of the rectangle + # the width of the rectangle self.half_width = numpy.fabs(self.x1 - self.x2) / 2 self.save_half_width = numpy.fabs(self.x1 - self.x2) / 2 # Create marker @@ -487,7 +490,7 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, color=self.color, visible=True)[0] # Flag to determine if the lines have moved self.has_move = False - # Connection the marker and draw the pictures + # Connect the marker and draw the picture self.connect_markers([self.right_marker]) self.update() @@ -520,12 +523,12 @@ def update(self, x1=None, x2=None, y1=None, y2=None, width=None, :param height: is the height of the new rectangle :param center: provided x, y coordinates of the center point """ - # Save the new height, witdh of the rectangle if given as a param + # Save the new height, width of the rectangle if given as a param if width is not None: self.half_width = width if height is not None: self.half_height = height - # If new center coordinates are given draw the rectangle + # If new center coordinates are given draw the rectangle # given these value if center is not None: self.center_x = center.x @@ -614,7 +617,7 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, center_x=0.0, center_y=0.0): BaseInteractor.__init__(self, base, axes, color=color) - # Initialization the class + # Initialization of the class self.markers = [] self.axes = axes # Center coordinates @@ -641,7 +644,7 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, pickradius=5, label="pick", zorder=zorder, visible=True)[0] - # Define 2 horizotnal lines + # Define 2 horizontal lines self.top_line = self.axes.plot([self.x1, -self.x1], [self.y1, self.y1], linestyle='-', marker='', color=self.color, visible=True)[0] @@ -651,7 +654,7 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, color=self.color, visible=True)[0] # Flag to determine if the lines have moved self.has_move = False - # connection the marker and draw the pictures + # connect the marker and draw the picture self.connect_markers([self.top_marker]) self.update() @@ -684,7 +687,7 @@ def update(self, x1=None, x2=None, y1=None, y2=None, :param height: is the height of the new rectangle :param center: provided x, y coordinates of the center point """ - # Save the new height, witdh of the rectangle if given as a param + # Save the new height, width of the rectangle if given as a param if width is not None: self.half_width = width if height is not None: @@ -739,7 +742,7 @@ def moveend(self, ev): self.has_move = False self.base.moveend(ev) - def restore(self): + def restore(self, ev): """ Restore the roughness for this layer. """ @@ -760,6 +763,7 @@ def move(self, x, y, ev): self.half_height = numpy.fabs(self.y1) - self.center_y self.has_move = True self.base.update() + self.base.draw() def setCursor(self, x, y): """ From 9f7706e499c55a940ef298373bb676b283b28eef Mon Sep 17 00:00:00 2001 From: butlerpd Date: Mon, 1 Apr 2024 17:47:18 +0000 Subject: [PATCH 23/36] Fixes problem with binwidth calculation leading to errors. The _post_data method calculates the bin widths to pass to manipulations.py. This probably should not be how it is done but is currently. This was still using the simple calculation based on a fixed center at 0,0 and thus caused havoc when moving the center around. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 27 ++++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index d87d9a2cce..49ea1c5676 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -194,18 +194,33 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): msg = "post data:cannot average , averager is empty" raise ValueError(msg) self.averager = new_slab + # Calculate the bin width from number of points. The only tricky part + # is when the box stradles 0 but 0 is not the center. + # + # todo: This should probably NOT be calculated here. Instead it should + # be calculated as part of manipulations.py which already does + # almost the same math to calculate the bins anyway. See for + # example under "Build array of Q intervals" in the _avg method + # of the _Slab class. Moreover, scripts would more likely prefer + # to pass number of points than bin width anyway. This will + # however be an API change! + # Added by PDB -- 3/31/2024 if self.direction == "X": - if self.fold: + if self.fold and (x_max * x_min <= 0): x_low = 0 + x_high = max(abs(x_min),abs(x_max)) else: - x_low = numpy.fabs(x_min) - bin_width = (x_max + x_low) / self.nbins + x_low = x_min + x_high = x_max + bin_width = (x_high - x_low) / self.nbins elif self.direction == "Y": - if self.fold: + if self.fold and (y_max * y_min >= 0): y_low = 0 + y_high = max(abs(y_min),abs(y_max)) else: - y_low = numpy.fabs(y_min) - bin_width = (y_max + y_low) / self.nbins + y_low = y_min + y_high = y_max + bin_width = (y_high + y_low) / self.nbins else: msg = "post data:no Box Average direction was supplied" raise ValueError(msg) From 71d6a643d51ead0970a01e18bb9ff8016d2753a9 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Mon, 1 Apr 2024 17:56:10 +0000 Subject: [PATCH 24/36] Fixes issues with empty ROI and duplicate code * The validate function was done twice. It has been moved from BoxInteractorX(Y) to BoxInteractor. * The validate function was expanded to minimize the chance of creating an ROI with no data in it (which would throw an error) * Added/simplified code in the move(ev) method of both horizontal and vertical lines interactor to prevent negative widths (which leads to no points in the ROI and thus throws an error) --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 146 +++++++++++++------- 1 file changed, 98 insertions(+), 48 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 49ea1c5676..b2873180ed 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -47,9 +47,9 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non raise ValueError(msg) # set the minimum of the box width (x) and height (y) to be - # 0.5% of the data2D range in that direction - self.width_min = 0.005 * (self.data.xmax - self.data.xmin) - self.height_min = 0.005 * (self.data.ymax - self.data.ymin) + # 2% of the data2D range in that direction + self.width_min = 0.02 * (self.data.xmax - self.data.xmin) + self.height_min = 0.02 * (self.data.ymax - self.data.ymin) # center of the box # puts the center of box at the middle of the data q-range @@ -344,6 +344,51 @@ def setParams(self, params): self._post_data() self.draw() + def validate(self, param_name, param_value): + """ + Validate input from user. + Values get checked at apply time. + NOTE: If the width becomes arbitrarily small, which a user could in + fact type into the box will cause an error here in a way that is + difficult to achieve graphically. Thus we use a min width + instead, based on a percentage of the total q range of the + detector. For sanity we also make sure nobody made those limits + negative. This does pose some arbitrary limitations - see to do + below + + ..todo:: In principle simply restricting the width to be greater than + 0 is not enough to guarantee points will exist in the ROI, + particularly if a future detector has "holes" in it with no + data. Note that a min width parameter is also almost + impossible to define universally given the difference between + detectors (particularly X-ray and neutron). Ideally there + needs to be a boolean function to test if the ROI contains + data points. + + """ + isValid = True + + if param_name =='x_width': + # Can't be negative or smaller than self.width_min if a reasonable + # min is provided. NOTE: this is actually the half width or width + # to or from the center + if param_value <= 0 or param_value <= self.width_min: + print("The box width is too small. Please adjust.") + isValid = False + if param_name =='y_width': + # Can't be negative or smaller than self.height_min if a reasonable + # min is provided. NOTE: this is actually the half height or height + # to or from the center + if param_value <= 0 or param_value <= self.height_min: + print("The box height is too small. Please adjust.") + isValid = False + elif param_name == 'nbins': + # Can't be negative or 0 + if param_value < 1: + print("Number of bins cannot be less than or equal to 0. Please adjust.") + isValid = False + return isValid + def draw(self): """ Draws the Canvas using the canvas.draw from the calling class @@ -588,6 +633,7 @@ def save(self, ev): def moveend(self, ev): """ After a dragging motion reset the flag self.has_move to False + and update the 1D average plot """ self.has_move = False self.base.moveend(ev) @@ -606,15 +652,30 @@ def restore(self, ev): def move(self, x, y, ev): """ Process move to a new position, making sure that the move is allowed. - """ - self.x1 = x - delta = self.x1 - self.center_x - self.x2 = self.center_x - delta - self.half_width = numpy.fabs(self.x1 - self.x2) / 2 - self.has_move = True - self.x = x - self.base.update() - self.base.draw() + In principle, the move must not create a box without any data points + in it. For now (see to do below), the move cannot create a negative + delta. This seems to be sufficient for now. It is not clear why this + is not true in the case when entering data manually from the editor. + + ..todo:: In principle simply restricting the width to be greater than + 0 is not enough to guarantee points will exist in the ROI, + particularly if a future detector has "holes" in it with no + data. Note that a min width parameter is also almost + impossible to define universally given the difference between + detectors (particularly X-ray and neutron). Ideally there + needs to be a boolean function to test if the ROI contains + data points. + """ + if x - self.center_x <= 0: + self.restore(ev) + else: + self.x1 = x + delta = self.x1 - self.center_x + self.x2 = self.center_x - delta + self.half_width = delta + self.has_move = True + self.base.update() + self.base.draw() def setCursor(self, x, y): """ @@ -753,6 +814,7 @@ def save(self, ev): def moveend(self, ev): """ After a dragging motion reset the flag self.has_move to False + and update the 1D average plot """ self.has_move = False self.base.moveend(ev) @@ -771,14 +833,30 @@ def restore(self, ev): def move(self, x, y, ev): """ Process move to a new position, making sure that the move is allowed. - """ - self.y1 = y - delta = self.y1 - self.center_y - self.y2 = self.center_y - delta - self.half_height = numpy.fabs(self.y1) - self.center_y - self.has_move = True - self.base.update() - self.base.draw() + In principle, the move must not create a box without any data points + in it. For now (see to do below), the move cannot create a negative + delta. This seems to be sufficient for now. It is not clear why this + is not true in the case when entering data manually from the editor. + + ..todo:: In principle simply restricting the width to be greater than + 0 is not enough to guarantee points will exist in the ROI, + particularly if a future detector has "holes" in it with no + data. Note that a min width parameter is also almost + impossible to define universally given the difference between + detectors (particularly X-ray and neutron). Ideally there + needs to be a boolean function to test if the ROI contains + data points. + """ + if y - self.center_y <=0: + self.restore(ev) + else: + self.y1 = y + delta = self.y1 - self.center_y + self.y2 = self.center_y - delta + self.half_height = delta + self.has_move = True + self.base.update() + self.base.draw() def setCursor(self, x, y): """ @@ -808,20 +886,6 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): from sasdata.data_util.manipulations import SlabX super()._post_data(SlabX, direction="X") - def validate(self, param_name, param_value): - """ - Validate input from user. - Values get checked at apply time. - """ - isValid = True - - if param_name == 'nbins': - # Can't be 0 - if param_value < 1: - print("Number of bins cannot be less than or equal to 0. Please adjust.") - isValid = False - return isValid - class BoxInteractorY(BoxInteractor): """ @@ -841,17 +905,3 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): """ from sasdata.data_util.manipulations import SlabY super()._post_data(SlabY, direction="Y") - - def validate(self, param_name, param_value): - """ - Validate input from user. - Values get checked at apply time. - """ - isValid = True - - if param_name == 'nbins': - # Can't be 0 - if param_value < 1: - print("Number of bins cannot be less than or equal to 0. Please adjust.") - isValid = False - return isValid From 162cd5687ec23bebe99080e6ce3d0a715b49e3f9 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Fri, 5 Apr 2024 20:41:56 +0000 Subject: [PATCH 25/36] Remove abs(width) from set params As suggested by reviewer. The values should never be negative but it is unclear whether if they end up negative (should not be possible at this point) that absoluting them will yield the correct answer. Thus better for it to fail. Also fixed a couple more typos --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index b2873180ed..11c28cf119 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -249,7 +249,6 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): new_plot.source = self.data.source new_plot.interactive = True new_plot.detector = self.data.detector - # # If the data file does not tell us what the axes are, just assume... if self.direction == "X": new_plot.xaxis("\\rm{Q_x}", "A^{-1}") elif self.direction == "Y": @@ -264,7 +263,6 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): new_plot.ytransform = 'y' new_plot.yaxis("\\rm{Residuals} ", "/") - #new_plot. = "2daverage" + self.data.name new_plot.id = (self.averager.__name__) + self.data.name # Create id to remove plots after changing slicer so they don't keep # showing up after being closed @@ -328,8 +326,8 @@ def setParams(self, params): :param params: a dictionary containing name of slicer parameters and values the user assigned to the slicer. """ - self.xwidth = float(numpy.fabs(params["x_width"])) - self.ywidth = float(numpy.fabs(params["y_width"])) + self.xwidth = params["x_width"] + self.ywidth = params["y_width"] self.nbins = params["nbins"] self.fold = params["fold"] self.center_x = params["center_x"] @@ -391,8 +389,8 @@ def validate(self, param_name, param_value): def draw(self): """ - Draws the Canvas using the canvas.draw from the calling class - that instatiated this object. + Draws the Canvas using the canvas.Draw from the calling class + that instantiated this object. """ self.base.draw() From a464ebb7b721319bc5a847b1700bf870e78c8668 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Sat, 6 Apr 2024 00:51:47 +0000 Subject: [PATCH 26/36] several doc string and comment fixes --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 11c28cf119..b07350b5e3 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -66,7 +66,10 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non self.averager = None # Flag to determine if the current figure has moved # set to False == no motion , set to True== motion - # Default to False at initialize (nothing has moved yet) + # NOTE: This is not currently ever used. All moves happen in the + # individual interactors not the whole slicker. Thus the move(ev) + # currently does a pass. Default to False at initialize anyway + # (nothing has moved yet) for possible future implementation. self.has_move = False # Create vertical and horizontal lines for the rectangle self.horizontal_lines = HorizontalDoubleLine(self, @@ -492,6 +495,8 @@ def move(self, x, y, ev): def setCursor(self, x, y): """ + ..todo:: the cursor moves are currently being captured somewhere upstream + of BaseInteractor so this never gets called. """ self.move(x, y, None) self.update() @@ -602,7 +607,7 @@ def update(self, x1=None, x2=None, y1=None, y2=None, width=None, self.left_line.set(xdata=[self.x2, self.x2], ydata=[self.y1, self.y2]) return - # if x1, y1, y2, y3 are given draw the rectangle with this value + # if x1, y1, x2, y2 are given draw the rectangle with these values if x1 is not None: self.x1 = x1 if x2 is not None: @@ -707,6 +712,7 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, delta = self.x1 - self.center_x self.x2 = self.center_x - delta self.save_x2 = self.x2 + # Color self.color = color self.half_height = numpy.fabs(y) self.save_half_height = numpy.fabs(y) @@ -783,7 +789,7 @@ def update(self, x1=None, x2=None, y1=None, y2=None, self.bottom_line.set(xdata=[self.x1, self.x2], ydata=[self.y2, self.y2]) return - # if x1, y1, y2, y3 are given draw the rectangle with this value + # if x1, y1, x2, y2 are given draw the rectangle with these values if x1 is not None: self.x1 = x1 if x2 is not None: From cdfc12b5a697281ceff1459ef7930cebd62ff384 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Sat, 6 Apr 2024 01:01:00 +0000 Subject: [PATCH 27/36] Clean up the width nomenclature and simplify width calc code. The review comments asked for the dictionary set params for x and y widths be standardized. In fact it turned out that a) the widths were actually half widths and b) there was a variety of words used. The entire BoxSlicer.py code now uses half_width and half_height (and half_width_min etc). Also as per review, the abs(half_width/height) from set params was removed. It turns out the values should never be negative but it is unclear whether absoluting them if they end up negative (which should not be possible at this point) will yield the correct answer. Thus better for it to fail. also corrected the nbins calculation in _post_data for direction="Y" (the plus should have been a minus) --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 167 ++++++++++---------- 1 file changed, 80 insertions(+), 87 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index b07350b5e3..330cedd491 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -33,13 +33,13 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non self.direction = direction # determine x y values if self.direction == "Y": - self.xwidth = 0.1 * (self.data.xmax - self.data.xmin) / 2 - self.ywidth = 1.0 * (self.data.ymax - self.data.ymin) / 2 + self.half_width = 0.1 * (self.data.xmax - self.data.xmin) / 2 + self.half_height = 0.9 * (self.data.ymax - self.data.ymin) / 2 # when reach qmax reset the graph self.qmax = max(numpy.fabs(self.data.ymax), numpy.fabs(self.data.ymin)) elif self.direction == "X": - self.xwidth = 1.0 * (self.data.xmax - self.data.xmin) / 2 - self.ywidth = 0.1 * (self.data.ymax - self.data.ymin) / 2 + self.half_width = 1.0 * (self.data.xmax - self.data.xmin) / 2 + self.half_height = 0.1 * (self.data.ymax - self.data.ymin) / 2 # when reach qmax reset the graph self.qmax = max(numpy.fabs(self.data.xmax), numpy.fabs(self.data.xmin)) else: @@ -47,9 +47,10 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non raise ValueError(msg) # set the minimum of the box width (x) and height (y) to be - # 2% of the data2D range in that direction - self.width_min = 0.02 * (self.data.xmax - self.data.xmin) - self.height_min = 0.02 * (self.data.ymax - self.data.ymin) + # 4% of the data2D range in that direction (2% of the range + # for each half) + self.half_width_min = 0.02 * (self.data.xmax - self.data.xmin) + self.half_height_min = 0.02 * (self.data.ymax - self.data.ymin) # center of the box # puts the center of box at the middle of the data q-range @@ -76,8 +77,8 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non self.axes, color='blue', zorder=zorder, - y=self.ywidth, - x=self.xwidth, + half_height=self.half_height, + half_width=self.half_width, center_x=self.center_x, center_y=self.center_y) self.horizontal_lines.qmax = self.qmax @@ -86,8 +87,8 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non self.axes, color='black', zorder=zorder, - y=self.ywidth, - x=self.xwidth, + half_height=self.half_height, + half_width=self.half_width, center_x=self.center_x, center_y=self.center_y) self.vertical_lines.qmax = self.qmax @@ -153,14 +154,14 @@ def update(self): self.horizontal_lines.update() self.vertical_lines.update(y1=self.horizontal_lines.y1, y2=self.horizontal_lines.y2, - height=self.horizontal_lines.half_height) + half_height=self.horizontal_lines.half_height) # check if the vertical lines have moved and # update the figure accordingly if self.vertical_lines.has_move: self.vertical_lines.update() self.horizontal_lines.update(x1=self.vertical_lines.x1, x2=self.vertical_lines.x2, - width=self.vertical_lines.half_width) + half_width=self.vertical_lines.half_width) def save(self, ev): """ @@ -185,10 +186,10 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): x_min = self.horizontal_lines.x2 x_max = self.horizontal_lines.x1 - self.xwidth = numpy.fabs(x_max - x_min)/2 + self.half_width = numpy.fabs(x_max - x_min)/2 y_min = self.vertical_lines.y2 y_max = self.vertical_lines.y1 - self.ywidth = numpy.fabs(y_max - y_min)/2 + self.half_height = numpy.fabs(y_max - y_min)/2 if nbins is not None: self.nbins = nbins @@ -223,7 +224,7 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): else: y_low = y_min y_high = y_max - bin_width = (y_high + y_low) / self.nbins + bin_width = (y_high - y_low) / self.nbins else: msg = "post data:no Box Average direction was supplied" raise ValueError(msg) @@ -313,8 +314,8 @@ def getParams(self): """ params = {} - params["x_width"] = self.xwidth - params["y_width"] = self.ywidth + params["half_width"] = self.vertical_lines.half_width + params["half_height"] = self.horizontal_lines.half_height params["nbins"] = self.nbins params["center_x"] = self.center.x params["center_y"] = self.center.y @@ -329,8 +330,8 @@ def setParams(self, params): :param params: a dictionary containing name of slicer parameters and values the user assigned to the slicer. """ - self.xwidth = params["x_width"] - self.ywidth = params["y_width"] + self.half_width = params["half_width"] + self.half_height = params["half_height"] self.nbins = params["nbins"] self.fold = params["fold"] self.center_x = params["center_x"] @@ -338,9 +339,9 @@ def setParams(self, params): self.center.update(center_x=self.center_x, center_y=self.center_y) self.horizontal_lines.update(center=self.center, - width=self.xwidth, height=self.ywidth) + half_width=self.half_width, half_height=self.half_height) self.vertical_lines.update(center=self.center, - width=self.xwidth, height=self.ywidth) + half_width=self.half_width, half_height=self.half_height) # Compute and plot the 1D average based on these parameters self._post_data() self.draw() @@ -369,18 +370,18 @@ def validate(self, param_name, param_value): """ isValid = True - if param_name =='x_width': - # Can't be negative or smaller than self.width_min if a reasonable - # min is provided. NOTE: this is actually the half width or width + if param_name =='half_width': + # Can't be negative or smaller than self.half_width_min if a + # reasonable min is provided. NOTE: half_width is the width # to or from the center - if param_value <= 0 or param_value <= self.width_min: + if param_value <= 0 or param_value <= self.half_width_min: print("The box width is too small. Please adjust.") isValid = False - if param_name =='y_width': - # Can't be negative or smaller than self.height_min if a reasonable - # min is provided. NOTE: this is actually the half height or height + if param_name =='half_height': + # Can't be negative or smaller than self.half_height_min if a + # reasonable min is provided. NOTE: half_height is the height # to or from the center - if param_value <= 0 or param_value <= self.height_min: + if param_value <= 0 or param_value <= self.half_height_min: print("The box height is too small. Please adjust.") isValid = False elif param_name == 'nbins': @@ -506,37 +507,32 @@ class VerticalDoubleLine(BaseInteractor): Draw 2 vertical lines that can move symmetrically in opposite directions in x and centered on a point (PointInteractor). It also defines the top and bottom y positions of a box. """ - def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, + def __init__(self, base, axes, color='black', zorder=5, half_width=0.5, half_height=0.5, center_x=0.0, center_y=0.0): BaseInteractor.__init__(self, base, axes, color=color) # Initialization of the class self.markers = [] self.axes = axes + # the height of the rectangle + self.half_height = half_height + self.save_half_height = self.half_height + # the width of the rectangle + self.half_width = half_width + self.save_half_width = self.half_width # Center coordinates self.center_x = center_x self.center_y = center_y - # defined end points vertical lines and their saved values - self.y1 = y + self.center_y + # defined end points vertical and horizontal lines and their saved values + self.y1 = self.center_y + self.half_height self.save_y1 = self.y1 - - delta = self.y1 - self.center_y - self.y2 = self.center_y - delta + self.y2 = self.center_y - self.half_height self.save_y2 = self.y2 - - self.x1 = x + self.center_x + self.x1 = self.center_x + self.half_width self.save_x1 = self.x1 - - delta = self.x1 - self.center_x - self.x2 = self.center_x - delta + self.x2 = self.center_x - self.half_width self.save_x2 = self.x2 # save the color of the line self.color = color - # the height of the rectangle - self.half_height = numpy.fabs(y) - self.save_half_height = numpy.fabs(y) - # the width of the rectangle - self.half_width = numpy.fabs(self.x1 - self.x2) / 2 - self.save_half_width = numpy.fabs(self.x1 - self.x2) / 2 # Create marker self.right_marker = self.axes.plot([self.x1], [0], linestyle='', marker='s', markersize=10, @@ -574,32 +570,32 @@ def clear(self): self.right_line.remove() self.left_line.remove() - def update(self, x1=None, x2=None, y1=None, y2=None, width=None, - height=None, center=None): + def update(self, x1=None, x2=None, y1=None, y2=None, half_width=None, + half_height=None, center=None): """ Draw the new roughness on the graph. :param x1: new maximum value of x coordinates :param x2: new minimum value of x coordinates :param y1: new maximum value of y coordinates :param y2: new minimum value of y coordinates - :param width: is the width of the new rectangle - :param height: is the height of the new rectangle + :param half_ width: is the half width of the new rectangle + :param half_height: is the half height of the new rectangle :param center: provided x, y coordinates of the center point """ # Save the new height, width of the rectangle if given as a param - if width is not None: - self.half_width = width - if height is not None: - self.half_height = height + if half_width is not None: + self.half_width = half_width + if half_height is not None: + self.half_height = half_height # If new center coordinates are given draw the rectangle # given these value if center is not None: self.center_x = center.x self.center_y = center.y - self.x1 = self.half_width + self.center_x - self.x2 = -self.half_width + self.center_x - self.y1 = self.half_height + self.center_y - self.y2 = -self.half_height + self.center_y + self.x1 = self.center_x + self.half_width + self.x2 = self.center_x - self.half_width + self.y1 = self.center_y + self.half_height + self.y2 = self.center_y - self.half_height self.right_marker.set(xdata=[self.x1], ydata=[self.center_y]) self.right_line.set(xdata=[self.x1, self.x1], @@ -673,9 +669,8 @@ def move(self, x, y, ev): self.restore(ev) else: self.x1 = x - delta = self.x1 - self.center_x - self.x2 = self.center_x - delta - self.half_width = delta + self.half_width = self.x1 - self.center_x + self.x2 = self.center_x - self.half_width self.has_move = True self.base.update() self.base.draw() @@ -692,7 +687,7 @@ class HorizontalDoubleLine(BaseInteractor): Draw 2 vertical lines that can move symmetrically in opposite directions in y and centered on a point (PointInteractor). It also defines the left and right x positions of a box. """ - def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, + def __init__(self, base, axes, color='black', zorder=5, half_width=0.5, half_height=0.5, center_x=0.0, center_y=0.0): BaseInteractor.__init__(self, base, axes, color=color) @@ -702,22 +697,21 @@ def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5, # Center coordinates self.center_x = center_x self.center_y = center_y - self.y1 = y + self.center_y + # Box half width and height and horizontal and vertical limits + self.half_height = half_height + self.save_half_height = self.half_height + self.half_width = half_width + self.save_half_width = self.half_width + self.y1 = self.center_y + half_height self.save_y1 = self.y1 - delta = self.y1 - self.center_y - self.y2 = self.center_y - delta + self.y2 = self.center_y - half_height self.save_y2 = self.y2 - self.x1 = x + self.center_x + self.x1 = self.center_x + self.half_width self.save_x1 = self.x1 - delta = self.x1 - self.center_x - self.x2 = self.center_x - delta + self.x2 = self.center_x - self.half_width self.save_x2 = self.x2 # Color self.color = color - self.half_height = numpy.fabs(y) - self.save_half_height = numpy.fabs(y) - self.half_width = numpy.fabs(x) - self.save_half_width = numpy.fabs(x) self.top_marker = self.axes.plot([0], [self.y1], linestyle='', marker='s', markersize=10, color=self.color, alpha=0.6, @@ -756,32 +750,32 @@ def clear(self): self.top_line.remove() def update(self, x1=None, x2=None, y1=None, y2=None, - width=None, height=None, center=None): + half_width=None, half_height=None, center=None): """ Draw the new roughness on the graph. :param x1: new maximum value of x coordinates :param x2: new minimum value of x coordinates :param y1: new maximum value of y coordinates :param y2: new minimum value of y coordinates - :param width: is the width of the new rectangle - :param height: is the height of the new rectangle + :param half_width: is the half width of the new rectangle + :param half_height: is the half height of the new rectangle :param center: provided x, y coordinates of the center point """ # Save the new height, width of the rectangle if given as a param - if width is not None: - self.half_width = width - if height is not None: - self.half_height = height + if half_width is not None: + self.half_width = half_width + if half_height is not None: + self.half_height = half_height # If new center coordinates are given draw the rectangle # given these value if center is not None: self.center_x = center.x self.center_y = center.y - self.x1 = self.half_width + self.center_x - self.x2 = -self.half_width + self.center_x + self.x1 = self.center_x + self.half_width + self.x2 = self.center_x - self.half_width - self.y1 = self.half_height + self.center_y - self.y2 = -self.half_height + self.center_y + self.y1 = self.center_y + self.half_height + self.y2 = self.center_y - self.half_height self.top_marker.set(xdata=[self.center_x], ydata=[self.y1]) self.top_line.set(xdata=[self.x1, self.x2], @@ -855,9 +849,8 @@ def move(self, x, y, ev): self.restore(ev) else: self.y1 = y - delta = self.y1 - self.center_y - self.y2 = self.center_y - delta - self.half_height = delta + self.half_height = self.y1 - self.center_y + self.y2 = self.center_y - self.half_height self.has_move = True self.base.update() self.base.draw() From 71dcb1bdbfed4d777b07fe37fe70346e6db98ed9 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Tue, 9 Apr 2024 01:26:33 +0000 Subject: [PATCH 28/36] make graphical changes to ROI more robust ROI has no data error is impossible to catch without checking to see if any of the data are in the ROI. This is effectively done in manipulations.py as part of deciding what to average. Rather than check twice, use a try except to capture the ValueError that manipulations.py raises and report it in the log then negate the move. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 114 ++++++++++++-------- 1 file changed, 68 insertions(+), 46 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 330cedd491..6b1478f664 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -4,6 +4,7 @@ from sas.qtgui.Plotting.PlotterData import Data1D import sas.qtgui.Utilities.GuiUtils as GuiUtils from sas.qtgui.Plotting.SlicerModel import SlicerModel +import logging class BoxInteractor(BaseInteractor, SlicerModel): @@ -186,10 +187,8 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): x_min = self.horizontal_lines.x2 x_max = self.horizontal_lines.x1 - self.half_width = numpy.fabs(x_max - x_min)/2 y_min = self.vertical_lines.y2 y_max = self.vertical_lines.y1 - self.half_height = numpy.fabs(y_max - y_min)/2 if nbins is not None: self.nbins = nbins @@ -233,7 +232,27 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): box = self.averager(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max, bin_width=bin_width) box.fold = self.fold - boxavg = box(self.data) + # Check for data inside ROI. A bit of a kludge but faster than + # checking twice: once to check and once to do the calculation + # Adding a function to manipulations.py that returns the maksed data + # set as an object which can then be checked for not being empty before + # being passed back to the calculation in manipulations.py? + # + # Note that it no simple way to ensure that data is in the ROI without + # checking (unless one can guarantee a perfect grid in x,y). + try: + boxavg = box(self.data) + except ValueError as ve: + logging.error(str(ve)) + self.restore(ev=None) + self.update() + self.draw() + return + + # Now that we know the move valid, update the half_width and half_height + self.half_width = numpy.fabs(x_max - x_min)/2 + self.half_height = numpy.fabs(y_max - y_min)/2 + # Create Data1D to plot if hasattr(boxavg, "dxl"): dxl = boxavg.dxl @@ -291,11 +310,19 @@ def moveend(self, ev): def restore(self, ev): """ - Restore the roughness for this layer. + Restore the roughness for this layer. Only restores things that have + moved. Otherwise you are restoring too far back. + + Save is only done when the mouse is clicked not when it is released. + Thus, if vertical lines have changed, they will move horizontal lines + also, but the original state of those horizontal lines has not been + saved (there was no click event on the horizontal lines). However, + restoring the vertical lines and then doing an updated will take care + of the related values in horizontal lines. """ - self.horizontal_lines.restore(ev) - self.vertical_lines.restore(ev) - self.center.restore(ev) + if self.horizontal_lines.has_move: self.horizontal_lines.restore(ev) + if self.vertical_lines.has_move: self.vertical_lines.restore(ev) + if self.center.has_move: self.center.restore(ev) def move(self, x, y, ev): """ @@ -486,7 +513,16 @@ def restore(self, ev): def move(self, x, y, ev): """ - Process move to a new position, making sure that the move is allowed. + Process move to a new position. The move being allowed here is done + by BaseInteractor's drag function which first checks that the x,y + cursor resides within the bounds of the plot. This does mean that half + the box can still be outside the plot. Restricting this would require + Changing the API to pass the width and height values. + + ..todo:: pass the width and heigth and restict the move so that the + entirety of the ROI resides within the plot. This is not a + huge issue as the other half the ROI resides in the plot + and an average for that data given. """ self.x = x self.y = y @@ -620,7 +656,8 @@ def update(self, x1=None, x2=None, y1=None, y2=None, half_width=None, def save(self, ev): """ Remember the roughness for this layer and the next so that we - can restore on Esc. + can restore on Esc. This save is run on mouse click (not a drag event) + by BaseInteractor """ self.save_x2 = self.x2 self.save_y2 = self.y2 @@ -631,11 +668,11 @@ def save(self, ev): def moveend(self, ev): """ - After a dragging motion reset the flag self.has_move to False - and update the 1D average plot + After a dragging motion update the 1D average plot and then reset the + flag self.has_move to False. """ - self.has_move = False self.base.moveend(ev) + self.has_move = False def restore(self, ev): """ @@ -652,28 +689,20 @@ def move(self, x, y, ev): """ Process move to a new position, making sure that the move is allowed. In principle, the move must not create a box without any data points - in it. For now (see to do below), the move cannot create a negative - delta. This seems to be sufficient for now. It is not clear why this - is not true in the case when entering data manually from the editor. - - ..todo:: In principle simply restricting the width to be greater than - 0 is not enough to guarantee points will exist in the ROI, - particularly if a future detector has "holes" in it with no - data. Note that a min width parameter is also almost - impossible to define universally given the difference between - detectors (particularly X-ray and neutron). Ideally there - needs to be a boolean function to test if the ROI contains - data points. + in it. For the dragging (continuous move), we make sure that the width + or height are not negative. We leave the check of whether there are + any data in the ROI to the moveend(). This is currently done in + _post_data(). """ - if x - self.center_x <= 0: - self.restore(ev) - else: + if x - self.center_x > 0: self.x1 = x self.half_width = self.x1 - self.center_x self.x2 = self.center_x - self.half_width self.has_move = True self.base.update() self.base.draw() + else: + logging.warning("you cannot go negative") def setCursor(self, x, y): """ @@ -800,7 +829,8 @@ def update(self, x1=None, x2=None, y1=None, y2=None, def save(self, ev): """ Remember the roughness for this layer and the next so that we - can restore on Esc. + can restore on Esc. This save is run on mouse click (not a drag event) + by BaseInteractor """ self.save_x2 = self.x2 self.save_y2 = self.y2 @@ -811,11 +841,11 @@ def save(self, ev): def moveend(self, ev): """ - After a dragging motion reset the flag self.has_move to False - and update the 1D average plot + After a dragging motion update the 1D average plot and then reset the + flag self.has_move to False. """ - self.has_move = False self.base.moveend(ev) + self.has_move = False def restore(self, ev): """ @@ -832,28 +862,20 @@ def move(self, x, y, ev): """ Process move to a new position, making sure that the move is allowed. In principle, the move must not create a box without any data points - in it. For now (see to do below), the move cannot create a negative - delta. This seems to be sufficient for now. It is not clear why this - is not true in the case when entering data manually from the editor. - - ..todo:: In principle simply restricting the width to be greater than - 0 is not enough to guarantee points will exist in the ROI, - particularly if a future detector has "holes" in it with no - data. Note that a min width parameter is also almost - impossible to define universally given the difference between - detectors (particularly X-ray and neutron). Ideally there - needs to be a boolean function to test if the ROI contains - data points. + in it. For the dragging (continuous move), we make sure that the width + or height are not negative. We leave the check of whether there are + any data in the ROI to the moveend(). This is currently done in + _post_data(). """ - if y - self.center_y <=0: - self.restore(ev) - else: + if y - self.center_y > 0: self.y1 = y self.half_height = self.y1 - self.center_y self.y2 = self.center_y - self.half_height self.has_move = True self.base.update() self.base.draw() + else: + logging.warning("you cannot go negative") def setCursor(self, x, y): """ From 969d92d45c582344480f715cc42f5efea9b00d23 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Tue, 9 Apr 2024 19:09:14 +0000 Subject: [PATCH 29/36] hardern error checking for slicer parameter editor box Apply same checks to the Parameter editor data entry as is applied when entering slicer parameters graphically. * Make the validate function fully robust * As for the graphical interface, let manipulations.py check for no data in ROI and negate the entry if the error is flagged. * Note, we have added that the full ROI must remain on the plot not just the center point as was done originally and still is the case graphically. This might be something to fix graphically as well. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 85 ++++++++++++--------- 1 file changed, 50 insertions(+), 35 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 6b1478f664..d50dd43039 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -47,12 +47,6 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non msg = "post data:no Box Average direction was supplied" raise ValueError(msg) - # set the minimum of the box width (x) and height (y) to be - # 4% of the data2D range in that direction (2% of the range - # for each half) - self.half_width_min = 0.02 * (self.data.xmax - self.data.xmin) - self.half_height_min = 0.02 * (self.data.ymax - self.data.ymin) - # center of the box # puts the center of box at the middle of the data q-range self.center_x = (self.data.xmin + self.data.xmax) /2 @@ -247,6 +241,7 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): self.restore(ev=None) self.update() self.draw() + self.setModelFromParams() return # Now that we know the move valid, update the half_width and half_height @@ -364,6 +359,14 @@ def setParams(self, params): self.center_x = params["center_x"] self.center_y = params["center_y"] + # save current state of the ROI in case the change leaves no data in + # the ROI and thus a disallowed move. Also set the has_move flags to + # true in case we have to restore this saved state. + self.save(ev=None) + self.center.has_move = True + self.horizontal_lines.has_move = True + self.vertical_lines.has_move = True + # Now update the ROI based on the change self.center.update(center_x=self.center_x, center_y=self.center_y) self.horizontal_lines.update(center=self.center, half_width=self.half_width, half_height=self.half_height) @@ -371,50 +374,62 @@ def setParams(self, params): half_width=self.half_width, half_height=self.half_height) # Compute and plot the 1D average based on these parameters self._post_data() + # Now move is over so turn off flags + self.center.has_move = False + self.horizontal_lines.has_move = False + self.vertical_lines.has_move = False self.draw() def validate(self, param_name, param_value): """ Validate input from user. Values get checked at apply time. - NOTE: If the width becomes arbitrarily small, which a user could in - fact type into the box will cause an error here in a way that is - difficult to achieve graphically. Thus we use a min width - instead, based on a percentage of the total q range of the - detector. For sanity we also make sure nobody made those limits - negative. This does pose some arbitrary limitations - see to do - below - - ..todo:: In principle simply restricting the width to be greater than - 0 is not enough to guarantee points will exist in the ROI, - particularly if a future detector has "holes" in it with no - data. Note that a min width parameter is also almost - impossible to define universally given the difference between - detectors (particularly X-ray and neutron). Ideally there - needs to be a boolean function to test if the ROI contains - data points. - + * nbins cannot be zero or samller + * The full ROI should stay within the data. thus center_x and center_y + are restricted such that the center +/- width (or height) cannot be + greate or smaller than data max/min. + * The width/height should not be set so small as to leave no data in + the ROI. Here we only make sure that the width/height is not zero + as done when dragging the vertical or horizontal lines. We let the + call to _post_data capture the ValueError of no points in ROI + raised by manipulations.py, log the message and negate the entry + at that point. """ isValid = True if param_name =='half_width': - # Can't be negative or smaller than self.half_width_min if a - # reasonable min is provided. NOTE: half_width is the width - # to or from the center - if param_value <= 0 or param_value <= self.half_width_min: - print("The box width is too small. Please adjust.") + # Can't be negative for sure. Also, it should not be so small that + # there remains no points to average in the ROI. We leave this + # second check to manipulations.py + if param_value <= 0: + logging.warning("The box width is too small. Please adjust.") isValid = False - if param_name =='half_height': - # Can't be negative or smaller than self.half_height_min if a - # reasonable min is provided. NOTE: half_height is the height - # to or from the center - if param_value <= 0 or param_value <= self.half_height_min: - print("The box height is too small. Please adjust.") + elif param_name =='half_height': + # Can't be negative for sure. Also, it should not be so small that + # there remains no points to average in the ROI. We leave this + # second check to manipulations.py + if param_value <= 0: + logging.warning("The box height is too small. Please adjust.") isValid = False elif param_name == 'nbins': # Can't be negative or 0 if param_value < 1: - print("Number of bins cannot be less than or equal to 0. Please adjust.") + logging.warning("Number of bins cannot be less than or equal"\ + "to 0. Please adjust.") + isValid = False + elif param_name == 'center_x': + # Keep the full ROI box within the data (only moving x here) + if (param_value + self.half_width) >= self.data.xmax or \ + (param_value- self.half_width) <= self.data.xmin: + logging.warning("The ROI must be fully contained within the"\ + "2D data. Please adjust") + isValid = False + elif param_name == 'center_y': + # Keep the full ROI box within the data (only moving y here) + if (param_value + self.half_height) >= self.data.ymax or \ + (param_value - self.half_height) <= self.data.ymin: + logging.warning("The ROI must be fully contained within the"\ + "2D data. Please adjust") isValid = False return isValid From 701706a3cd7bf3a209b99eb2005eca8aaa1c1163 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Wed, 10 Apr 2024 01:10:17 +0000 Subject: [PATCH 30/36] mostly cleanup and some final bug fixes * Removed "restore" from onDrag in baseinteractor. It should never be needed since the illegal move is never recorded. Replaced it with a log message that attempt was made to go out of bounds. * Removed unused qmax variables from BoxInteractor where they do not seem to ever have been used. * In BoxInteractor, changed default self.half_height to 1.0 instead of 0.9 when direction = Y to match default self.half_width when direction = X (was leftover from old testing). * Removed super()._post_data from the inialization of the BoxInteractorX/Y. It was duplicating what was done in BaseInteractor (and didn't fail only because BaseInteractor had already run it properly). * Fixed bug in BoxInteractor._post_data that reversed the limits (ymin is from horizontal_lines not vertical_lines). Mostly OK due to redundancy but not totally robust. --- .../qtgui/Plotting/Slicers/BaseInteractor.py | 5 ++++- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 17 +++++------------ 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py b/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py index 5d23996837..1e73b6e710 100755 --- a/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py +++ b/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py @@ -1,3 +1,5 @@ +import logging + interface_color = 'black' disable_color = 'gray' active_color = 'red' @@ -139,7 +141,8 @@ def onDrag(self, ev): self.clickx, self.clicky = ev.xdata, ev.ydata self.move(ev.xdata, ev.ydata, ev) else: - self.restore(ev) + logging.warning("the handle cannot be moved outside the data") + #self.restore(ev) return True def onKey(self, ev): diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index d50dd43039..16475025e6 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -35,14 +35,10 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non # determine x y values if self.direction == "Y": self.half_width = 0.1 * (self.data.xmax - self.data.xmin) / 2 - self.half_height = 0.9 * (self.data.ymax - self.data.ymin) / 2 - # when reach qmax reset the graph - self.qmax = max(numpy.fabs(self.data.ymax), numpy.fabs(self.data.ymin)) + self.half_height = 1.0 * (self.data.ymax - self.data.ymin) / 2 elif self.direction == "X": self.half_width = 1.0 * (self.data.xmax - self.data.xmin) / 2 self.half_height = 0.1 * (self.data.ymax - self.data.ymin) / 2 - # when reach qmax reset the graph - self.qmax = max(numpy.fabs(self.data.xmax), numpy.fabs(self.data.xmin)) else: msg = "post data:no Box Average direction was supplied" raise ValueError(msg) @@ -76,7 +72,6 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non half_width=self.half_width, center_x=self.center_x, center_y=self.center_y) - self.horizontal_lines.qmax = self.qmax self.vertical_lines = VerticalDoubleLine(self, self.axes, @@ -86,7 +81,6 @@ def __init__(self, base, axes, item=None, color='black', zorder=3, direction=Non half_width=self.half_width, center_x=self.center_x, center_y=self.center_y) - self.vertical_lines.qmax = self.qmax # PointInteractor determines the center of the box self.center = PointInteractor(self, @@ -179,10 +173,10 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): if self.direction is None: self.direction = direction - x_min = self.horizontal_lines.x2 - x_max = self.horizontal_lines.x1 - y_min = self.vertical_lines.y2 - y_max = self.vertical_lines.y1 + x_min = self.vertical_lines.x2 + x_max = self.vertical_lines.x1 + y_min = self.horizontal_lines.y2 + y_max = self.horizontal_lines.y1 if nbins is not None: self.nbins = nbins @@ -931,7 +925,6 @@ class BoxInteractorY(BoxInteractor): def __init__(self, base, axes, item=None, color='black', zorder=3): BoxInteractor.__init__(self, base, axes, item=item, color=color, direction="Y") self.base = base - super()._post_data() def _post_data(self, new_slab=None, nbins=None, direction=None): """ From cde0d2da134710f4bc8db656825f4303f97ae762 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Wed, 10 Apr 2024 01:12:36 +0000 Subject: [PATCH 31/36] missed cleanup One of the super()._post_data from the inialization of the BoxInteractorX/Y was accidentally ommitted in the previous commit. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 16475025e6..fa3114ea9e 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -905,7 +905,6 @@ class BoxInteractorX(BoxInteractor): def __init__(self, base, axes, item=None, color='black', zorder=3): BoxInteractor.__init__(self, base, axes, item=item, color=color, direction="X") self.base = base - super()._post_data() def _post_data(self, new_slab=None, nbins=None, direction=None): """ From 6f74525edd7c3c5297b0e5a7a25284e5b38ce8a1 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Wed, 10 Apr 2024 01:16:04 +0000 Subject: [PATCH 32/36] Add Final validation on grahpical interaction of BoxSlicer. Added code in the mov(ev) methods for all three objects (vertical and horizontal lines and the center point) to check that the move does not cause any part of the ROI to exit the data window. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 75 +++++++++++---------- 1 file changed, 41 insertions(+), 34 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index fa3114ea9e..5af08f5bf8 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -522,22 +522,21 @@ def restore(self, ev): def move(self, x, y, ev): """ - Process move to a new position. The move being allowed here is done - by BaseInteractor's drag function which first checks that the x,y - cursor resides within the bounds of the plot. This does mean that half - the box can still be outside the plot. Restricting this would require - Changing the API to pass the width and height values. - - ..todo:: pass the width and heigth and restict the move so that the - entirety of the ROI resides within the plot. This is not a - huge issue as the other half the ROI resides in the plot - and an average for that data given. - """ - self.x = x - self.y = y - self.has_move = True - self.base.update() - self.base.draw() + Process move to a new position. BaseInteractor checks that the center + is within the data. Here we check to make sure that the center move + does not cause any part of the ROI box to move outside the data. + """ + if x - self.base.half_width >= self.base.data.xmin and\ + y - self.base.half_height >= self.base.data.ymin and\ + x + self.base.half_width <= self.base.data.xmax and\ + y + self.base.half_height <= self.base.data.ymax: + self.x = x + self.y = y + self.has_move = True + self.base.update() + self.base.draw() + else: + logging.warning("The ROI must stay within the data please") def setCursor(self, x, y): """ @@ -699,17 +698,21 @@ def move(self, x, y, ev): Process move to a new position, making sure that the move is allowed. In principle, the move must not create a box without any data points in it. For the dragging (continuous move), we make sure that the width - or height are not negative. We leave the check of whether there are - any data in the ROI to the moveend(). This is currently done in - _post_data(). + or height are not negative and that the entire ROI resides withing the + data. We leave the check of whether there are any data in that ROI to + the manipulations.py which is called from _post_data, itself being + called on moveend(ev). """ if x - self.center_x > 0: - self.x1 = x - self.half_width = self.x1 - self.center_x - self.x2 = self.center_x - self.half_width - self.has_move = True - self.base.update() - self.base.draw() + if self.center_x - (x - self.center_x) >= self.base.data.xmin: + self.x1 = x + self.half_width = self.x1 - self.center_x + self.x2 = self.center_x - self.half_width + self.has_move = True + self.base.update() + self.base.draw() + else: + logging.warning("The ROI must stay within the data please") else: logging.warning("you cannot go negative") @@ -872,17 +875,21 @@ def move(self, x, y, ev): Process move to a new position, making sure that the move is allowed. In principle, the move must not create a box without any data points in it. For the dragging (continuous move), we make sure that the width - or height are not negative. We leave the check of whether there are - any data in the ROI to the moveend(). This is currently done in - _post_data(). + or height are not negative and that the entire ROI resides withing the + data. We leave the check of whether there are any data in that ROI to + the manipulations.py which is called from _post_data, itself being + called on moveend(ev). """ if y - self.center_y > 0: - self.y1 = y - self.half_height = self.y1 - self.center_y - self.y2 = self.center_y - self.half_height - self.has_move = True - self.base.update() - self.base.draw() + if self.center_y - (y - self.center_y) >= self.base.data.ymin: + self.y1 = y + self.half_height = self.y1 - self.center_y + self.y2 = self.center_y - self.half_height + self.has_move = True + self.base.update() + self.base.draw() + else: + logging.warning("The ROI must stay within the data please") else: logging.warning("you cannot go negative") From 861e35ab521c24213cc25dfa19206a8065d84795 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Thu, 11 Apr 2024 19:56:57 +0000 Subject: [PATCH 33/36] One Final bon bon for box Slicer connect the top and right lines (those with the markers) so they can be moved without "catching" the marker. Particularly useful if the box becomes very narrow so that the center marker and line marker are on top of each other. This also matches the behavior of the sector slicer so also part of making slicers consistent. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 5af08f5bf8..59db648aa7 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -594,7 +594,7 @@ def __init__(self, base, axes, color='black', zorder=5, half_width=0.5, half_hei # Flag to determine if the lines have moved self.has_move = False # Connect the marker and draw the picture - self.connect_markers([self.right_marker]) + self.connect_markers([self.right_marker, self.right_line]) self.update() def setLayer(self, n): @@ -770,7 +770,7 @@ def __init__(self, base, axes, color='black', zorder=5, half_width=0.5, half_hei # Flag to determine if the lines have moved self.has_move = False # connect the marker and draw the picture - self.connect_markers([self.top_marker]) + self.connect_markers([self.top_marker, self.top_line]) self.update() def setLayer(self, n): From 28f293031f4368c3ae32e0e92a0b06aeb2f715f1 Mon Sep 17 00:00:00 2001 From: Paul Butler Date: Mon, 15 Apr 2024 18:15:48 -0400 Subject: [PATCH 34/36] Update ci.yml Testing if latest PyInstaller fixes startup problem --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3407f02e1c..2f64ab70c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -197,7 +197,7 @@ jobs: - name: Install utilities to build installer if: ${{ matrix.installer }} run: | - python -m pip install pyinstaller==5.13.2 + python -m pip install pyinstaller==6.6.0 - name: Build sasview with pyinstaller if: ${{ matrix.installer }} From b856ded484071336a751abd74b8f3ef982063842 Mon Sep 17 00:00:00 2001 From: butlerpd Date: Mon, 22 Apr 2024 21:56:31 +0000 Subject: [PATCH 35/36] limit log.warning to one for each drag error Implemented a self.move_valid flag in order to only throw 1 logging.warning message until a valid move occurs to reset the flag. Unfortuantely this cannot be implemented yet in the onDrag of BaseInteractor as that would change the interface for all other classes deriving from BaseInteractor. Instead have removed the logging for now. In fact this check is no longer necessary for box interactor and not sure any other interactor except boxsum perhaps? So probably eventually remove that check from BaseInteractor.py altogether. Also changed the logging.error to logging.warning on the try except catch. TODO: either change all to loggin.error, lower the leve at which it starts the console log ... or decide not telling the user is OK. --- .../qtgui/Plotting/Slicers/BaseInteractor.py | 3 -- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 31 +++++++++++++++---- 2 files changed, 25 insertions(+), 9 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py b/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py index 1e73b6e710..20f9279e67 100755 --- a/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py +++ b/src/sas/qtgui/Plotting/Slicers/BaseInteractor.py @@ -140,9 +140,6 @@ def onDrag(self, ev): if inside: self.clickx, self.clicky = ev.xdata, ev.ydata self.move(ev.xdata, ev.ydata, ev) - else: - logging.warning("the handle cannot be moved outside the data") - #self.restore(ev) return True def onKey(self, ev): diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 59db648aa7..4f5d57fb7f 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -231,7 +231,7 @@ def _post_data(self, new_slab=None, nbins=None, direction=None): try: boxavg = box(self.data) except ValueError as ve: - logging.error(str(ve)) + logging.warning(str(ve)) self.restore(ev=None) self.update() self.draw() @@ -467,6 +467,8 @@ def __init__(self, base, axes, color='black', zorder=5, center_x=0.0, visible=True)[0] # Flag to determine if this point has moved self.has_move = False + # Flag to verify if the last move was valid + self.valid_move = True # connecting the marker to allow it to be moved self.connect_markers([self.center_marker]) # Update the figure @@ -530,13 +532,16 @@ def move(self, x, y, ev): y - self.base.half_height >= self.base.data.ymin and\ x + self.base.half_width <= self.base.data.xmax and\ y + self.base.half_height <= self.base.data.ymax: + self.valid_move = True self.x = x self.y = y self.has_move = True self.base.update() self.base.draw() else: - logging.warning("The ROI must stay within the data please") + if self.valid_move == True: + self.valid_move = False + logging.warning("The ROI must stay within the data please") def setCursor(self, x, y): """ @@ -593,6 +598,8 @@ def __init__(self, base, axes, color='black', zorder=5, half_width=0.5, half_hei color=self.color, visible=True)[0] # Flag to determine if the lines have moved self.has_move = False + # Flag to verify if the last move was valid + self.valid_move = True # Connect the marker and draw the picture self.connect_markers([self.right_marker, self.right_line]) self.update() @@ -705,6 +712,7 @@ def move(self, x, y, ev): """ if x - self.center_x > 0: if self.center_x - (x - self.center_x) >= self.base.data.xmin: + self.valid_move = True self.x1 = x self.half_width = self.x1 - self.center_x self.x2 = self.center_x - self.half_width @@ -712,9 +720,13 @@ def move(self, x, y, ev): self.base.update() self.base.draw() else: - logging.warning("The ROI must stay within the data please") + if self.valid_move == True: + self.valid_move = False + logging.warning("The ROI must stay within the data please") else: - logging.warning("you cannot go negative") + if self.valid_move == True: + self.valid_move = False + logging.warning("the ROI cannot be negative") def setCursor(self, x, y): """ @@ -769,6 +781,8 @@ def __init__(self, base, axes, color='black', zorder=5, half_width=0.5, half_hei color=self.color, visible=True)[0] # Flag to determine if the lines have moved self.has_move = False + # Flag to verify if the last move was valid + self.valid_move = True # connect the marker and draw the picture self.connect_markers([self.top_marker, self.top_line]) self.update() @@ -882,6 +896,7 @@ def move(self, x, y, ev): """ if y - self.center_y > 0: if self.center_y - (y - self.center_y) >= self.base.data.ymin: + self.valid_move = True self.y1 = y self.half_height = self.y1 - self.center_y self.y2 = self.center_y - self.half_height @@ -889,9 +904,13 @@ def move(self, x, y, ev): self.base.update() self.base.draw() else: - logging.warning("The ROI must stay within the data please") + if self.valid_move == True: + self.valid_move = False + logging.warning("The ROI must stay within the data please") else: - logging.warning("you cannot go negative") + if self.valid_move == True: + self.valid_move = False + logging.warning("the ROI cannot be negative") def setCursor(self, x, y): """ From 978fadf0a16441b96510446d08ef97dbba5ec29c Mon Sep 17 00:00:00 2001 From: butlerpd Date: Fri, 26 Apr 2024 04:12:01 +0000 Subject: [PATCH 36/36] Change behavior of moving ROI box outside of data Instead of ignoring moves that move an edge of the ROI box outside the data, reset the edge to the datamin or datamax as appropriate. This makes it easier to move a box to the edge of the data box and also makes it possible to vertically move a horizontal strip going from xmin to xmax etc. --- src/sas/qtgui/Plotting/Slicers/BoxSlicer.py | 65 ++++++++++----------- 1 file changed, 31 insertions(+), 34 deletions(-) diff --git a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py index 4f5d57fb7f..c047765561 100644 --- a/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py +++ b/src/sas/qtgui/Plotting/Slicers/BoxSlicer.py @@ -528,20 +528,21 @@ def move(self, x, y, ev): is within the data. Here we check to make sure that the center move does not cause any part of the ROI box to move outside the data. """ - if x - self.base.half_width >= self.base.data.xmin and\ - y - self.base.half_height >= self.base.data.ymin and\ - x + self.base.half_width <= self.base.data.xmax and\ - y + self.base.half_height <= self.base.data.ymax: - self.valid_move = True + if x - self.base.half_width < self.base.data.xmin: + self.x = self.base.data.xmin + self.base.half_width + elif x + self.base.half_width > self.base.data.xmax: + self.x = self.base.data.xmax - self.base.half_width + else: self.x = x - self.y = y - self.has_move = True - self.base.update() - self.base.draw() + if y - self.base.half_height < self.base.data.ymin: + self.y = self.base.data.ymin + self.base.half_height + elif y + self.base.half_height > self.base.data.ymax: + self.y = self.base.data.ymax - self.base.half_height else: - if self.valid_move == True: - self.valid_move = False - logging.warning("The ROI must stay within the data please") + self.y = y + self.has_move = True + self.base.update() + self.base.draw() def setCursor(self, x, y): """ @@ -711,18 +712,16 @@ def move(self, x, y, ev): called on moveend(ev). """ if x - self.center_x > 0: - if self.center_x - (x - self.center_x) >= self.base.data.xmin: - self.valid_move = True - self.x1 = x - self.half_width = self.x1 - self.center_x - self.x2 = self.center_x - self.half_width - self.has_move = True - self.base.update() - self.base.draw() + self.valid_move = True + if self.center_x - (x - self.center_x) < self.base.data.xmin: + self.x1 = self.center_x - (self.base.data.xmin - self.center_x) else: - if self.valid_move == True: - self.valid_move = False - logging.warning("The ROI must stay within the data please") + self.x1 = x + self.half_width = self.x1 - self.center_x + self.x2 = self.center_x - self.half_width + self.has_move = True + self.base.update() + self.base.draw() else: if self.valid_move == True: self.valid_move = False @@ -895,18 +894,16 @@ def move(self, x, y, ev): called on moveend(ev). """ if y - self.center_y > 0: - if self.center_y - (y - self.center_y) >= self.base.data.ymin: - self.valid_move = True - self.y1 = y - self.half_height = self.y1 - self.center_y - self.y2 = self.center_y - self.half_height - self.has_move = True - self.base.update() - self.base.draw() + self.valid_move = True + if self.center_y - (y - self.center_y) < self.base.data.ymin: + self.y1 = self.center_y - (self.base.data.ymin - self.center_y) else: - if self.valid_move == True: - self.valid_move = False - logging.warning("The ROI must stay within the data please") + self.y1 = y + self.half_height = self.y1 - self.center_y + self.y2 = self.center_y - self.half_height + self.has_move = True + self.base.update() + self.base.draw() else: if self.valid_move == True: self.valid_move = False